LCOV - code coverage report
Current view: top level - kernel/events - callchain.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 65 0.0 %
Date: 2014-02-18 Functions: 0 8 0.0 %
Branches: 0 52 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Performance events callchain code, extracted from core.c:
       3                 :            :  *
       4                 :            :  *  Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
       5                 :            :  *  Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar
       6                 :            :  *  Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
       7                 :            :  *  Copyright  ©  2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
       8                 :            :  *
       9                 :            :  * For licensing details see kernel-base/COPYING
      10                 :            :  */
      11                 :            : 
      12                 :            : #include <linux/perf_event.h>
      13                 :            : #include <linux/slab.h>
      14                 :            : #include "internal.h"
      15                 :            : 
      16                 :            : struct callchain_cpus_entries {
      17                 :            :         struct rcu_head                 rcu_head;
      18                 :            :         struct perf_callchain_entry     *cpu_entries[0];
      19                 :            : };
      20                 :            : 
      21                 :            : static DEFINE_PER_CPU(int, callchain_recursion[PERF_NR_CONTEXTS]);
      22                 :            : static atomic_t nr_callchain_events;
      23                 :            : static DEFINE_MUTEX(callchain_mutex);
      24                 :            : static struct callchain_cpus_entries *callchain_cpus_entries;
      25                 :            : 
      26                 :            : 
      27                 :          0 : __weak void perf_callchain_kernel(struct perf_callchain_entry *entry,
      28                 :            :                                   struct pt_regs *regs)
      29                 :            : {
      30                 :          0 : }
      31                 :            : 
      32                 :          0 : __weak void perf_callchain_user(struct perf_callchain_entry *entry,
      33                 :            :                                 struct pt_regs *regs)
      34                 :            : {
      35                 :          0 : }
      36                 :            : 
      37                 :          0 : static void release_callchain_buffers_rcu(struct rcu_head *head)
      38                 :            : {
      39                 :            :         struct callchain_cpus_entries *entries;
      40                 :            :         int cpu;
      41                 :            : 
      42                 :            :         entries = container_of(head, struct callchain_cpus_entries, rcu_head);
      43                 :            : 
      44         [ #  # ]:          0 :         for_each_possible_cpu(cpu)
      45                 :          0 :                 kfree(entries->cpu_entries[cpu]);
      46                 :            : 
      47                 :          0 :         kfree(entries);
      48                 :          0 : }
      49                 :            : 
      50                 :            : static void release_callchain_buffers(void)
      51                 :            : {
      52                 :            :         struct callchain_cpus_entries *entries;
      53                 :            : 
      54                 :          0 :         entries = callchain_cpus_entries;
      55                 :          0 :         rcu_assign_pointer(callchain_cpus_entries, NULL);
      56                 :          0 :         call_rcu(&entries->rcu_head, release_callchain_buffers_rcu);
      57                 :            : }
      58                 :            : 
      59                 :          0 : static int alloc_callchain_buffers(void)
      60                 :            : {
      61                 :            :         int cpu;
      62                 :            :         int size;
      63                 :            :         struct callchain_cpus_entries *entries;
      64                 :            : 
      65                 :            :         /*
      66                 :            :          * We can't use the percpu allocation API for data that can be
      67                 :            :          * accessed from NMI. Use a temporary manual per cpu allocation
      68                 :            :          * until that gets sorted out.
      69                 :            :          */
      70                 :          0 :         size = offsetof(struct callchain_cpus_entries, cpu_entries[nr_cpu_ids]);
      71                 :            : 
      72                 :          0 :         entries = kzalloc(size, GFP_KERNEL);
      73         [ #  # ]:          0 :         if (!entries)
      74                 :            :                 return -ENOMEM;
      75                 :            : 
      76                 :            :         size = sizeof(struct perf_callchain_entry) * PERF_NR_CONTEXTS;
      77                 :            : 
      78         [ #  # ]:          0 :         for_each_possible_cpu(cpu) {
      79                 :          0 :                 entries->cpu_entries[cpu] = kmalloc_node(size, GFP_KERNEL,
      80                 :            :                                                          cpu_to_node(cpu));
      81         [ #  # ]:          0 :                 if (!entries->cpu_entries[cpu])
      82                 :            :                         goto fail;
      83                 :            :         }
      84                 :            : 
      85                 :          0 :         rcu_assign_pointer(callchain_cpus_entries, entries);
      86                 :            : 
      87                 :          0 :         return 0;
      88                 :            : 
      89                 :            : fail:
      90         [ #  # ]:          0 :         for_each_possible_cpu(cpu)
      91                 :          0 :                 kfree(entries->cpu_entries[cpu]);
      92                 :          0 :         kfree(entries);
      93                 :            : 
      94                 :          0 :         return -ENOMEM;
      95                 :            : }
      96                 :            : 
      97                 :          0 : int get_callchain_buffers(void)
      98                 :            : {
      99                 :            :         int err = 0;
     100                 :            :         int count;
     101                 :            : 
     102                 :          0 :         mutex_lock(&callchain_mutex);
     103                 :            : 
     104                 :            :         count = atomic_inc_return(&nr_callchain_events);
     105 [ #  # ][ #  # ]:          0 :         if (WARN_ON_ONCE(count < 1)) {
         [ #  # ][ #  # ]
     106                 :            :                 err = -EINVAL;
     107                 :            :                 goto exit;
     108                 :            :         }
     109                 :            : 
     110         [ #  # ]:          0 :         if (count > 1) {
     111                 :            :                 /* If the allocation failed, give up */
     112         [ #  # ]:          0 :                 if (!callchain_cpus_entries)
     113                 :            :                         err = -ENOMEM;
     114                 :            :                 goto exit;
     115                 :            :         }
     116                 :            : 
     117                 :          0 :         err = alloc_callchain_buffers();
     118                 :            : exit:
     119         [ #  # ]:          0 :         if (err)
     120                 :            :                 atomic_dec(&nr_callchain_events);
     121                 :            : 
     122                 :          0 :         mutex_unlock(&callchain_mutex);
     123                 :            : 
     124                 :          0 :         return err;
     125                 :            : }
     126                 :            : 
     127                 :          0 : void put_callchain_buffers(void)
     128                 :            : {
     129         [ #  # ]:          0 :         if (atomic_dec_and_mutex_lock(&nr_callchain_events, &callchain_mutex)) {
     130                 :            :                 release_callchain_buffers();
     131                 :          0 :                 mutex_unlock(&callchain_mutex);
     132                 :            :         }
     133                 :          0 : }
     134                 :            : 
     135                 :          0 : static struct perf_callchain_entry *get_callchain_entry(int *rctx)
     136                 :            : {
     137                 :            :         int cpu;
     138                 :            :         struct callchain_cpus_entries *entries;
     139                 :            : 
     140                 :          0 :         *rctx = get_recursion_context(__get_cpu_var(callchain_recursion));
     141         [ #  # ]:          0 :         if (*rctx == -1)
     142                 :            :                 return NULL;
     143                 :            : 
     144                 :          0 :         entries = rcu_dereference(callchain_cpus_entries);
     145         [ #  # ]:          0 :         if (!entries)
     146                 :            :                 return NULL;
     147                 :            : 
     148                 :          0 :         cpu = smp_processor_id();
     149                 :            : 
     150                 :          0 :         return &entries->cpu_entries[cpu][*rctx];
     151                 :            : }
     152                 :            : 
     153                 :            : static void
     154                 :            : put_callchain_entry(int rctx)
     155                 :            : {
     156                 :          0 :         put_recursion_context(__get_cpu_var(callchain_recursion), rctx);
     157                 :            : }
     158                 :            : 
     159                 :            : struct perf_callchain_entry *
     160                 :          0 : perf_callchain(struct perf_event *event, struct pt_regs *regs)
     161                 :            : {
     162                 :            :         int rctx;
     163                 :            :         struct perf_callchain_entry *entry;
     164                 :            : 
     165                 :          0 :         int kernel = !event->attr.exclude_callchain_kernel;
     166                 :          0 :         int user   = !event->attr.exclude_callchain_user;
     167                 :            : 
     168         [ #  # ]:          0 :         if (!kernel && !user)
     169                 :            :                 return NULL;
     170                 :            : 
     171                 :          0 :         entry = get_callchain_entry(&rctx);
     172         [ #  # ]:          0 :         if (rctx == -1)
     173                 :            :                 return NULL;
     174                 :            : 
     175         [ #  # ]:          0 :         if (!entry)
     176                 :            :                 goto exit_put;
     177                 :            : 
     178                 :          0 :         entry->nr = 0;
     179                 :            : 
     180 [ #  # ][ #  # ]:          0 :         if (kernel && !user_mode(regs)) {
     181                 :            :                 perf_callchain_store(entry, PERF_CONTEXT_KERNEL);
     182                 :          0 :                 perf_callchain_kernel(entry, regs);
     183                 :            :         }
     184                 :            : 
     185         [ #  # ]:          0 :         if (user) {
     186         [ #  # ]:          0 :                 if (!user_mode(regs)) {
     187         [ #  # ]:          0 :                         if  (current->mm)
     188                 :          0 :                                 regs = task_pt_regs(current);
     189                 :            :                         else
     190                 :            :                                 regs = NULL;
     191                 :            :                 }
     192                 :            : 
     193         [ #  # ]:          0 :                 if (regs) {
     194                 :            :                         /*
     195                 :            :                          * Disallow cross-task user callchains.
     196                 :            :                          */
     197 [ #  # ][ #  # ]:          0 :                         if (event->ctx->task && event->ctx->task != current)
     198                 :            :                                 goto exit_put;
     199                 :            : 
     200                 :            :                         perf_callchain_store(entry, PERF_CONTEXT_USER);
     201                 :          0 :                         perf_callchain_user(entry, regs);
     202                 :            :                 }
     203                 :            :         }
     204                 :            : 
     205                 :            : exit_put:
     206                 :          0 :         put_callchain_entry(rctx);
     207                 :            : 
     208                 :          0 :         return entry;
     209                 :            : }

Generated by: LCOV version 1.9