Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @file buffer_sync.c |
| 3 | * |
| 4 | * @remark Copyright 2002 OProfile authors |
| 5 | * @remark Read the file COPYING |
| 6 | * |
| 7 | * @author John Levon <levon@movementarian.org> |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 8 | * @author Barry Kasindorf |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 10 | * This is the core of the buffer management. Each |
| 11 | * CPU buffer is processed and entered into the |
| 12 | * global event buffer. Such processing is necessary |
| 13 | * in several circumstances, mentioned below. |
| 14 | * |
| 15 | * The processing does the job of converting the |
| 16 | * transitory EIP value into a persistent dentry/offset |
| 17 | * value that the profiler can record at its leisure. |
| 18 | * |
| 19 | * See fs/dcookies.c for a description of the dentry/offset |
| 20 | * objects. |
| 21 | */ |
| 22 | |
| 23 | #include <linux/mm.h> |
| 24 | #include <linux/workqueue.h> |
| 25 | #include <linux/notifier.h> |
| 26 | #include <linux/dcookies.h> |
| 27 | #include <linux/profile.h> |
| 28 | #include <linux/module.h> |
| 29 | #include <linux/fs.h> |
Bob Nelson | 1474855 | 2007-07-20 21:39:53 +0200 | [diff] [blame] | 30 | #include <linux/oprofile.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 31 | #include <linux/sched.h> |
Bob Nelson | 1474855 | 2007-07-20 21:39:53 +0200 | [diff] [blame] | 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include "oprofile_stats.h" |
| 34 | #include "event_buffer.h" |
| 35 | #include "cpu_buffer.h" |
| 36 | #include "buffer_sync.h" |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | static LIST_HEAD(dying_tasks); |
| 39 | static LIST_HEAD(dead_tasks); |
| 40 | static cpumask_t marked_cpus = CPU_MASK_NONE; |
| 41 | static DEFINE_SPINLOCK(task_mortuary); |
| 42 | static void process_task_mortuary(void); |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* Take ownership of the task struct and place it on the |
| 45 | * list for processing. Only after two full buffer syncs |
| 46 | * does the task eventually get freed, because by then |
| 47 | * we are sure we will not reference it again. |
Paul E. McKenney | 4369ef3 | 2006-01-08 01:01:35 -0800 | [diff] [blame] | 48 | * Can be invoked from softirq via RCU callback due to |
| 49 | * call_rcu() of the task struct, hence the _irqsave. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | */ |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 51 | static int |
| 52 | task_free_notify(struct notifier_block *self, unsigned long val, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | { |
Paul E. McKenney | 4369ef3 | 2006-01-08 01:01:35 -0800 | [diff] [blame] | 54 | unsigned long flags; |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 55 | struct task_struct *task = data; |
Paul E. McKenney | 4369ef3 | 2006-01-08 01:01:35 -0800 | [diff] [blame] | 56 | spin_lock_irqsave(&task_mortuary, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | list_add(&task->tasks, &dying_tasks); |
Paul E. McKenney | 4369ef3 | 2006-01-08 01:01:35 -0800 | [diff] [blame] | 58 | spin_unlock_irqrestore(&task_mortuary, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | return NOTIFY_OK; |
| 60 | } |
| 61 | |
| 62 | |
| 63 | /* The task is on its way out. A sync of the buffer means we can catch |
| 64 | * any remaining samples for this task. |
| 65 | */ |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 66 | static int |
| 67 | task_exit_notify(struct notifier_block *self, unsigned long val, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
| 69 | /* To avoid latency problems, we only process the current CPU, |
| 70 | * hoping that most samples for the task are on this CPU |
| 71 | */ |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 72 | sync_buffer(raw_smp_processor_id()); |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 73 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | |
| 77 | /* The task is about to try a do_munmap(). We peek at what it's going to |
| 78 | * do, and if it's an executable region, process the samples first, so |
| 79 | * we don't lose any. This does not have to be exact, it's a QoI issue |
| 80 | * only. |
| 81 | */ |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 82 | static int |
| 83 | munmap_notify(struct notifier_block *self, unsigned long val, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { |
| 85 | unsigned long addr = (unsigned long)data; |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 86 | struct mm_struct *mm = current->mm; |
| 87 | struct vm_area_struct *mpnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 89 | down_read(&mm->mmap_sem); |
| 90 | |
| 91 | mpnt = find_vma(mm, addr); |
| 92 | if (mpnt && mpnt->vm_file && (mpnt->vm_flags & VM_EXEC)) { |
| 93 | up_read(&mm->mmap_sem); |
| 94 | /* To avoid latency problems, we only process the current CPU, |
| 95 | * hoping that most samples for the task are on this CPU |
| 96 | */ |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 97 | sync_buffer(raw_smp_processor_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | return 0; |
| 99 | } |
| 100 | |
| 101 | up_read(&mm->mmap_sem); |
| 102 | return 0; |
| 103 | } |
| 104 | |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | /* We need to be told about new modules so we don't attribute to a previously |
| 107 | * loaded module, or drop the samples on the floor. |
| 108 | */ |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 109 | static int |
| 110 | module_load_notify(struct notifier_block *self, unsigned long val, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
| 112 | #ifdef CONFIG_MODULES |
| 113 | if (val != MODULE_STATE_COMING) |
| 114 | return 0; |
| 115 | |
| 116 | /* FIXME: should we process all CPU buffers ? */ |
Markus Armbruster | 59cc185 | 2006-06-25 05:47:33 -0700 | [diff] [blame] | 117 | mutex_lock(&buffer_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | add_event_entry(ESCAPE_CODE); |
| 119 | add_event_entry(MODULE_LOADED_CODE); |
Markus Armbruster | 59cc185 | 2006-06-25 05:47:33 -0700 | [diff] [blame] | 120 | mutex_unlock(&buffer_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | #endif |
| 122 | return 0; |
| 123 | } |
| 124 | |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | static struct notifier_block task_free_nb = { |
| 127 | .notifier_call = task_free_notify, |
| 128 | }; |
| 129 | |
| 130 | static struct notifier_block task_exit_nb = { |
| 131 | .notifier_call = task_exit_notify, |
| 132 | }; |
| 133 | |
| 134 | static struct notifier_block munmap_nb = { |
| 135 | .notifier_call = munmap_notify, |
| 136 | }; |
| 137 | |
| 138 | static struct notifier_block module_load_nb = { |
| 139 | .notifier_call = module_load_notify, |
| 140 | }; |
| 141 | |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | static void end_sync(void) |
| 144 | { |
| 145 | end_cpu_work(); |
| 146 | /* make sure we don't leak task structs */ |
| 147 | process_task_mortuary(); |
| 148 | process_task_mortuary(); |
| 149 | } |
| 150 | |
| 151 | |
| 152 | int sync_start(void) |
| 153 | { |
| 154 | int err; |
| 155 | |
| 156 | start_cpu_work(); |
| 157 | |
| 158 | err = task_handoff_register(&task_free_nb); |
| 159 | if (err) |
| 160 | goto out1; |
| 161 | err = profile_event_register(PROFILE_TASK_EXIT, &task_exit_nb); |
| 162 | if (err) |
| 163 | goto out2; |
| 164 | err = profile_event_register(PROFILE_MUNMAP, &munmap_nb); |
| 165 | if (err) |
| 166 | goto out3; |
| 167 | err = register_module_notifier(&module_load_nb); |
| 168 | if (err) |
| 169 | goto out4; |
| 170 | |
| 171 | out: |
| 172 | return err; |
| 173 | out4: |
| 174 | profile_event_unregister(PROFILE_MUNMAP, &munmap_nb); |
| 175 | out3: |
| 176 | profile_event_unregister(PROFILE_TASK_EXIT, &task_exit_nb); |
| 177 | out2: |
| 178 | task_handoff_unregister(&task_free_nb); |
| 179 | out1: |
| 180 | end_sync(); |
| 181 | goto out; |
| 182 | } |
| 183 | |
| 184 | |
| 185 | void sync_stop(void) |
| 186 | { |
| 187 | unregister_module_notifier(&module_load_nb); |
| 188 | profile_event_unregister(PROFILE_MUNMAP, &munmap_nb); |
| 189 | profile_event_unregister(PROFILE_TASK_EXIT, &task_exit_nb); |
| 190 | task_handoff_unregister(&task_free_nb); |
| 191 | end_sync(); |
| 192 | } |
| 193 | |
Jan Blunck | 448678a | 2008-02-14 19:38:36 -0800 | [diff] [blame] | 194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | /* Optimisation. We can manage without taking the dcookie sem |
| 196 | * because we cannot reach this code without at least one |
| 197 | * dcookie user still being registered (namely, the reader |
| 198 | * of the event buffer). */ |
Jan Blunck | 448678a | 2008-02-14 19:38:36 -0800 | [diff] [blame] | 199 | static inline unsigned long fast_get_dcookie(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
| 201 | unsigned long cookie; |
Jan Blunck | 448678a | 2008-02-14 19:38:36 -0800 | [diff] [blame] | 202 | |
| 203 | if (path->dentry->d_cookie) |
| 204 | return (unsigned long)path->dentry; |
| 205 | get_dcookie(path, &cookie); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | return cookie; |
| 207 | } |
| 208 | |
Jan Blunck | 448678a | 2008-02-14 19:38:36 -0800 | [diff] [blame] | 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | /* Look up the dcookie for the task's first VM_EXECUTABLE mapping, |
| 211 | * which corresponds loosely to "application name". This is |
| 212 | * not strictly necessary but allows oprofile to associate |
| 213 | * shared-library samples with particular applications |
| 214 | */ |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 215 | static unsigned long get_exec_dcookie(struct mm_struct *mm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | { |
John Levon | 0c0a400 | 2005-06-23 22:02:47 -0700 | [diff] [blame] | 217 | unsigned long cookie = NO_COOKIE; |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 218 | struct vm_area_struct *vma; |
| 219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | if (!mm) |
| 221 | goto out; |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | for (vma = mm->mmap; vma; vma = vma->vm_next) { |
| 224 | if (!vma->vm_file) |
| 225 | continue; |
| 226 | if (!(vma->vm_flags & VM_EXECUTABLE)) |
| 227 | continue; |
Jan Blunck | 448678a | 2008-02-14 19:38:36 -0800 | [diff] [blame] | 228 | cookie = fast_get_dcookie(&vma->vm_file->f_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | break; |
| 230 | } |
| 231 | |
| 232 | out: |
| 233 | return cookie; |
| 234 | } |
| 235 | |
| 236 | |
| 237 | /* Convert the EIP value of a sample into a persistent dentry/offset |
| 238 | * pair that can then be added to the global event buffer. We make |
| 239 | * sure to do this lookup before a mm->mmap modification happens so |
| 240 | * we don't lose track. |
| 241 | */ |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 242 | static unsigned long |
| 243 | lookup_dcookie(struct mm_struct *mm, unsigned long addr, off_t *offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | { |
John Levon | 0c0a400 | 2005-06-23 22:02:47 -0700 | [diff] [blame] | 245 | unsigned long cookie = NO_COOKIE; |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 246 | struct vm_area_struct *vma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
| 248 | for (vma = find_vma(mm, addr); vma; vma = vma->vm_next) { |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | if (addr < vma->vm_start || addr >= vma->vm_end) |
| 251 | continue; |
| 252 | |
John Levon | 0c0a400 | 2005-06-23 22:02:47 -0700 | [diff] [blame] | 253 | if (vma->vm_file) { |
Jan Blunck | 448678a | 2008-02-14 19:38:36 -0800 | [diff] [blame] | 254 | cookie = fast_get_dcookie(&vma->vm_file->f_path); |
John Levon | 0c0a400 | 2005-06-23 22:02:47 -0700 | [diff] [blame] | 255 | *offset = (vma->vm_pgoff << PAGE_SHIFT) + addr - |
| 256 | vma->vm_start; |
| 257 | } else { |
| 258 | /* must be an anonymous map */ |
| 259 | *offset = addr; |
| 260 | } |
| 261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | break; |
| 263 | } |
| 264 | |
John Levon | 0c0a400 | 2005-06-23 22:02:47 -0700 | [diff] [blame] | 265 | if (!vma) |
| 266 | cookie = INVALID_COOKIE; |
| 267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | return cookie; |
| 269 | } |
| 270 | |
John Levon | 0c0a400 | 2005-06-23 22:02:47 -0700 | [diff] [blame] | 271 | static unsigned long last_cookie = INVALID_COOKIE; |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | static void add_cpu_switch(int i) |
| 274 | { |
| 275 | add_event_entry(ESCAPE_CODE); |
| 276 | add_event_entry(CPU_SWITCH_CODE); |
| 277 | add_event_entry(i); |
John Levon | 0c0a400 | 2005-06-23 22:02:47 -0700 | [diff] [blame] | 278 | last_cookie = INVALID_COOKIE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | static void add_kernel_ctx_switch(unsigned int in_kernel) |
| 282 | { |
| 283 | add_event_entry(ESCAPE_CODE); |
| 284 | if (in_kernel) |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 285 | add_event_entry(KERNEL_ENTER_SWITCH_CODE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | else |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 287 | add_event_entry(KERNEL_EXIT_SWITCH_CODE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | static void |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 291 | add_user_ctx_switch(struct task_struct const *task, unsigned long cookie) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | { |
| 293 | add_event_entry(ESCAPE_CODE); |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 294 | add_event_entry(CTX_SWITCH_CODE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | add_event_entry(task->pid); |
| 296 | add_event_entry(cookie); |
| 297 | /* Another code for daemon back-compat */ |
| 298 | add_event_entry(ESCAPE_CODE); |
| 299 | add_event_entry(CTX_TGID_CODE); |
| 300 | add_event_entry(task->tgid); |
| 301 | } |
| 302 | |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | static void add_cookie_switch(unsigned long cookie) |
| 305 | { |
| 306 | add_event_entry(ESCAPE_CODE); |
| 307 | add_event_entry(COOKIE_SWITCH_CODE); |
| 308 | add_event_entry(cookie); |
| 309 | } |
| 310 | |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | static void add_trace_begin(void) |
| 313 | { |
| 314 | add_event_entry(ESCAPE_CODE); |
| 315 | add_event_entry(TRACE_BEGIN_CODE); |
| 316 | } |
| 317 | |
Robert Richter | 852402c | 2008-07-22 21:09:06 +0200 | [diff] [blame] | 318 | #ifdef CONFIG_OPROFILE_IBS |
| 319 | |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 320 | #define IBS_FETCH_CODE_SIZE 2 |
| 321 | #define IBS_OP_CODE_SIZE 5 |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 322 | |
| 323 | /* |
| 324 | * Add IBS fetch and op entries to event buffer |
| 325 | */ |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 326 | static void add_ibs_begin(int cpu, int code, struct mm_struct *mm) |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 327 | { |
| 328 | unsigned long rip; |
| 329 | int i, count; |
| 330 | unsigned long ibs_cookie = 0; |
| 331 | off_t offset; |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 332 | struct op_sample *sample; |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 333 | |
Robert Richter | 6d2c53f | 2008-12-24 16:53:53 +0100 | [diff] [blame] | 334 | sample = op_cpu_buffer_read_entry(cpu); |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 335 | if (!sample) |
Robert Richter | dbe6e28 | 2008-12-16 11:01:18 +0100 | [diff] [blame] | 336 | return; |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 337 | rip = sample->eip; |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 338 | |
| 339 | #ifdef __LP64__ |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 340 | rip += sample->event << 32; |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 341 | #endif |
| 342 | |
| 343 | if (mm) { |
| 344 | ibs_cookie = lookup_dcookie(mm, rip, &offset); |
| 345 | |
| 346 | if (ibs_cookie == NO_COOKIE) |
| 347 | offset = rip; |
| 348 | if (ibs_cookie == INVALID_COOKIE) { |
| 349 | atomic_inc(&oprofile_stats.sample_lost_no_mapping); |
| 350 | offset = rip; |
| 351 | } |
| 352 | if (ibs_cookie != last_cookie) { |
| 353 | add_cookie_switch(ibs_cookie); |
| 354 | last_cookie = ibs_cookie; |
| 355 | } |
| 356 | } else |
| 357 | offset = rip; |
| 358 | |
| 359 | add_event_entry(ESCAPE_CODE); |
| 360 | add_event_entry(code); |
| 361 | add_event_entry(offset); /* Offset from Dcookie */ |
| 362 | |
| 363 | /* we send the Dcookie offset, but send the raw Linear Add also*/ |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 364 | add_event_entry(sample->eip); |
| 365 | add_event_entry(sample->event); |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 366 | |
| 367 | if (code == IBS_FETCH_CODE) |
| 368 | count = IBS_FETCH_CODE_SIZE; /*IBS FETCH is 2 int64s*/ |
| 369 | else |
| 370 | count = IBS_OP_CODE_SIZE; /*IBS OP is 5 int64s*/ |
| 371 | |
| 372 | for (i = 0; i < count; i++) { |
Robert Richter | 6d2c53f | 2008-12-24 16:53:53 +0100 | [diff] [blame] | 373 | sample = op_cpu_buffer_read_entry(cpu); |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 374 | if (!sample) |
Robert Richter | dbe6e28 | 2008-12-16 11:01:18 +0100 | [diff] [blame] | 375 | return; |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 376 | add_event_entry(sample->eip); |
| 377 | add_event_entry(sample->event); |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 378 | } |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 379 | |
| 380 | return; |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 381 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
Robert Richter | 852402c | 2008-07-22 21:09:06 +0200 | [diff] [blame] | 383 | #endif |
| 384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | static void add_sample_entry(unsigned long offset, unsigned long event) |
| 386 | { |
| 387 | add_event_entry(offset); |
| 388 | add_event_entry(event); |
| 389 | } |
| 390 | |
| 391 | |
Robert Richter | 9741b30 | 2008-12-18 19:44:20 +0100 | [diff] [blame] | 392 | /* |
| 393 | * Add a sample to the global event buffer. If possible the |
| 394 | * sample is converted into a persistent dentry/offset pair |
| 395 | * for later lookup from userspace. Return 0 on failure. |
| 396 | */ |
| 397 | static int |
| 398 | add_sample(struct mm_struct *mm, struct op_sample *s, int in_kernel) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { |
| 400 | unsigned long cookie; |
| 401 | off_t offset; |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 402 | |
Robert Richter | 9741b30 | 2008-12-18 19:44:20 +0100 | [diff] [blame] | 403 | if (in_kernel) { |
| 404 | add_sample_entry(s->eip, s->event); |
| 405 | return 1; |
| 406 | } |
| 407 | |
| 408 | /* add userspace sample */ |
| 409 | |
| 410 | if (!mm) { |
| 411 | atomic_inc(&oprofile_stats.sample_lost_no_mm); |
| 412 | return 0; |
| 413 | } |
| 414 | |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 415 | cookie = lookup_dcookie(mm, s->eip, &offset); |
| 416 | |
John Levon | 0c0a400 | 2005-06-23 22:02:47 -0700 | [diff] [blame] | 417 | if (cookie == INVALID_COOKIE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | atomic_inc(&oprofile_stats.sample_lost_no_mapping); |
| 419 | return 0; |
| 420 | } |
| 421 | |
| 422 | if (cookie != last_cookie) { |
| 423 | add_cookie_switch(cookie); |
| 424 | last_cookie = cookie; |
| 425 | } |
| 426 | |
| 427 | add_sample_entry(offset, s->event); |
| 428 | |
| 429 | return 1; |
| 430 | } |
| 431 | |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 432 | |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 433 | static void release_mm(struct mm_struct *mm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { |
| 435 | if (!mm) |
| 436 | return; |
| 437 | up_read(&mm->mmap_sem); |
| 438 | mmput(mm); |
| 439 | } |
| 440 | |
| 441 | |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 442 | static struct mm_struct *take_tasks_mm(struct task_struct *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | { |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 444 | struct mm_struct *mm = get_task_mm(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | if (mm) |
| 446 | down_read(&mm->mmap_sem); |
| 447 | return mm; |
| 448 | } |
| 449 | |
| 450 | |
| 451 | static inline int is_code(unsigned long val) |
| 452 | { |
| 453 | return val == ESCAPE_CODE; |
| 454 | } |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 455 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | /* Move tasks along towards death. Any tasks on dead_tasks |
| 458 | * will definitely have no remaining references in any |
| 459 | * CPU buffers at this point, because we use two lists, |
| 460 | * and to have reached the list, it must have gone through |
| 461 | * one full sync already. |
| 462 | */ |
| 463 | static void process_task_mortuary(void) |
| 464 | { |
Paul E. McKenney | 4369ef3 | 2006-01-08 01:01:35 -0800 | [diff] [blame] | 465 | unsigned long flags; |
| 466 | LIST_HEAD(local_dead_tasks); |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 467 | struct task_struct *task; |
| 468 | struct task_struct *ttask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | |
Paul E. McKenney | 4369ef3 | 2006-01-08 01:01:35 -0800 | [diff] [blame] | 470 | spin_lock_irqsave(&task_mortuary, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
Paul E. McKenney | 4369ef3 | 2006-01-08 01:01:35 -0800 | [diff] [blame] | 472 | list_splice_init(&dead_tasks, &local_dead_tasks); |
| 473 | list_splice_init(&dying_tasks, &dead_tasks); |
| 474 | |
| 475 | spin_unlock_irqrestore(&task_mortuary, flags); |
| 476 | |
| 477 | list_for_each_entry_safe(task, ttask, &local_dead_tasks, tasks) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | list_del(&task->tasks); |
| 479 | free_task(task); |
| 480 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | |
| 484 | static void mark_done(int cpu) |
| 485 | { |
| 486 | int i; |
| 487 | |
| 488 | cpu_set(cpu, marked_cpus); |
| 489 | |
| 490 | for_each_online_cpu(i) { |
| 491 | if (!cpu_isset(i, marked_cpus)) |
| 492 | return; |
| 493 | } |
| 494 | |
| 495 | /* All CPUs have been processed at least once, |
| 496 | * we can process the mortuary once |
| 497 | */ |
| 498 | process_task_mortuary(); |
| 499 | |
| 500 | cpus_clear(marked_cpus); |
| 501 | } |
| 502 | |
| 503 | |
| 504 | /* FIXME: this is not sufficient if we implement syscall barrier backtrace |
| 505 | * traversal, the code switch to sb_sample_start at first kernel enter/exit |
| 506 | * switch so we need a fifth state and some special handling in sync_buffer() |
| 507 | */ |
| 508 | typedef enum { |
| 509 | sb_bt_ignore = -2, |
| 510 | sb_buffer_start, |
| 511 | sb_bt_start, |
| 512 | sb_sample_start, |
| 513 | } sync_buffer_state; |
| 514 | |
| 515 | /* Sync one of the CPU's buffers into the global event buffer. |
| 516 | * Here we need to go through each batch of samples punctuated |
| 517 | * by context switch notes, taking the task's mmap_sem and doing |
| 518 | * lookup in task->mm->mmap to convert EIP into dcookie/offset |
| 519 | * value. |
| 520 | */ |
| 521 | void sync_buffer(int cpu) |
| 522 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | struct mm_struct *mm = NULL; |
Robert Richter | fd7826d | 2008-09-26 17:50:31 -0400 | [diff] [blame] | 524 | struct mm_struct *oldmm; |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 525 | struct task_struct *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | unsigned long cookie = 0; |
| 527 | int in_kernel = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | sync_buffer_state state = sb_buffer_start; |
Barry Kasindorf | 9b1f261 | 2008-07-15 00:10:36 +0200 | [diff] [blame] | 529 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | unsigned long available; |
| 531 | |
Markus Armbruster | 59cc185 | 2006-06-25 05:47:33 -0700 | [diff] [blame] | 532 | mutex_lock(&buffer_mutex); |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | add_cpu_switch(cpu); |
| 535 | |
Robert Richter | 6d2c53f | 2008-12-24 16:53:53 +0100 | [diff] [blame] | 536 | op_cpu_buffer_reset(cpu); |
| 537 | available = op_cpu_buffer_entries(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
| 539 | for (i = 0; i < available; ++i) { |
Robert Richter | 6d2c53f | 2008-12-24 16:53:53 +0100 | [diff] [blame] | 540 | struct op_sample *s = op_cpu_buffer_read_entry(cpu); |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 541 | if (!s) |
| 542 | break; |
Robert Richter | 73185e0 | 2008-07-22 21:08:51 +0200 | [diff] [blame] | 543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | if (is_code(s->eip)) { |
Robert Richter | fd7826d | 2008-09-26 17:50:31 -0400 | [diff] [blame] | 545 | switch (s->event) { |
| 546 | case 0: |
| 547 | case CPU_IS_KERNEL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | /* kernel/userspace switch */ |
| 549 | in_kernel = s->event; |
| 550 | if (state == sb_buffer_start) |
| 551 | state = sb_sample_start; |
| 552 | add_kernel_ctx_switch(s->event); |
Robert Richter | fd7826d | 2008-09-26 17:50:31 -0400 | [diff] [blame] | 553 | break; |
| 554 | case CPU_TRACE_BEGIN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | state = sb_bt_start; |
| 556 | add_trace_begin(); |
Robert Richter | fd7826d | 2008-09-26 17:50:31 -0400 | [diff] [blame] | 557 | break; |
Robert Richter | 852402c | 2008-07-22 21:09:06 +0200 | [diff] [blame] | 558 | #ifdef CONFIG_OPROFILE_IBS |
Robert Richter | fd7826d | 2008-09-26 17:50:31 -0400 | [diff] [blame] | 559 | case IBS_FETCH_BEGIN: |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 560 | add_ibs_begin(cpu, IBS_FETCH_CODE, mm); |
Robert Richter | fd7826d | 2008-09-26 17:50:31 -0400 | [diff] [blame] | 561 | break; |
| 562 | case IBS_OP_BEGIN: |
Robert Richter | 6dad828 | 2008-12-09 01:21:32 +0100 | [diff] [blame] | 563 | add_ibs_begin(cpu, IBS_OP_CODE, mm); |
Robert Richter | fd7826d | 2008-09-26 17:50:31 -0400 | [diff] [blame] | 564 | break; |
Robert Richter | 852402c | 2008-07-22 21:09:06 +0200 | [diff] [blame] | 565 | #endif |
Robert Richter | fd7826d | 2008-09-26 17:50:31 -0400 | [diff] [blame] | 566 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | /* userspace context switch */ |
Robert Richter | fd7826d | 2008-09-26 17:50:31 -0400 | [diff] [blame] | 568 | oldmm = mm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | new = (struct task_struct *)s->event; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | release_mm(oldmm); |
| 571 | mm = take_tasks_mm(new); |
| 572 | if (mm != oldmm) |
| 573 | cookie = get_exec_dcookie(mm); |
| 574 | add_user_ctx_switch(new, cookie); |
Robert Richter | fd7826d | 2008-09-26 17:50:31 -0400 | [diff] [blame] | 575 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | } |
Robert Richter | 317f33b | 2008-12-18 19:44:20 +0100 | [diff] [blame] | 577 | continue; |
| 578 | } |
| 579 | |
| 580 | if (state < sb_bt_start) |
| 581 | /* ignore sample */ |
| 582 | continue; |
| 583 | |
| 584 | if (add_sample(mm, s, in_kernel)) |
| 585 | continue; |
| 586 | |
| 587 | /* ignore backtraces if failed to add a sample */ |
| 588 | if (state == sb_bt_start) { |
| 589 | state = sb_bt_ignore; |
| 590 | atomic_inc(&oprofile_stats.bt_lost_no_mapping); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | } |
| 593 | release_mm(mm); |
| 594 | |
| 595 | mark_done(cpu); |
| 596 | |
Markus Armbruster | 59cc185 | 2006-06-25 05:47:33 -0700 | [diff] [blame] | 597 | mutex_unlock(&buffer_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
Carl Love | a5598ca | 2008-10-14 23:37:01 +0000 | [diff] [blame] | 599 | |
| 600 | /* The function can be used to add a buffer worth of data directly to |
| 601 | * the kernel buffer. The buffer is assumed to be a circular buffer. |
| 602 | * Take the entries from index start and end at index end, wrapping |
| 603 | * at max_entries. |
| 604 | */ |
| 605 | void oprofile_put_buff(unsigned long *buf, unsigned int start, |
| 606 | unsigned int stop, unsigned int max) |
| 607 | { |
| 608 | int i; |
| 609 | |
| 610 | i = start; |
| 611 | |
| 612 | mutex_lock(&buffer_mutex); |
| 613 | while (i != stop) { |
| 614 | add_event_entry(buf[i++]); |
| 615 | |
| 616 | if (i >= max) |
| 617 | i = 0; |
| 618 | } |
| 619 | |
| 620 | mutex_unlock(&buffer_mutex); |
| 621 | } |
| 622 | |