blob: ed982273fb8b1d9311aba68a3b2a42de5d174e78 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
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 Kasindorf345c2572008-07-22 21:08:54 +02008 * @author Barry Kasindorf
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
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 Nelson14748552007-07-20 21:39:53 +020030#include <linux/oprofile.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040031#include <linux/sched.h>
Bob Nelson14748552007-07-20 21:39:53 +020032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "oprofile_stats.h"
34#include "event_buffer.h"
35#include "cpu_buffer.h"
36#include "buffer_sync.h"
Robert Richter73185e02008-07-22 21:08:51 +020037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static LIST_HEAD(dying_tasks);
39static LIST_HEAD(dead_tasks);
40static cpumask_t marked_cpus = CPU_MASK_NONE;
41static DEFINE_SPINLOCK(task_mortuary);
42static void process_task_mortuary(void);
43
44
45/* Take ownership of the task struct and place it on the
46 * list for processing. Only after two full buffer syncs
47 * does the task eventually get freed, because by then
48 * we are sure we will not reference it again.
Paul E. McKenney4369ef32006-01-08 01:01:35 -080049 * Can be invoked from softirq via RCU callback due to
50 * call_rcu() of the task struct, hence the _irqsave.
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
Robert Richter73185e02008-07-22 21:08:51 +020052static int
53task_free_notify(struct notifier_block *self, unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Paul E. McKenney4369ef32006-01-08 01:01:35 -080055 unsigned long flags;
Robert Richter73185e02008-07-22 21:08:51 +020056 struct task_struct *task = data;
Paul E. McKenney4369ef32006-01-08 01:01:35 -080057 spin_lock_irqsave(&task_mortuary, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 list_add(&task->tasks, &dying_tasks);
Paul E. McKenney4369ef32006-01-08 01:01:35 -080059 spin_unlock_irqrestore(&task_mortuary, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return NOTIFY_OK;
61}
62
63
64/* The task is on its way out. A sync of the buffer means we can catch
65 * any remaining samples for this task.
66 */
Robert Richter73185e02008-07-22 21:08:51 +020067static int
68task_exit_notify(struct notifier_block *self, unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 /* To avoid latency problems, we only process the current CPU,
71 * hoping that most samples for the task are on this CPU
72 */
Ingo Molnar39c715b2005-06-21 17:14:34 -070073 sync_buffer(raw_smp_processor_id());
Robert Richter73185e02008-07-22 21:08:51 +020074 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77
78/* The task is about to try a do_munmap(). We peek at what it's going to
79 * do, and if it's an executable region, process the samples first, so
80 * we don't lose any. This does not have to be exact, it's a QoI issue
81 * only.
82 */
Robert Richter73185e02008-07-22 21:08:51 +020083static int
84munmap_notify(struct notifier_block *self, unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 unsigned long addr = (unsigned long)data;
Robert Richter73185e02008-07-22 21:08:51 +020087 struct mm_struct *mm = current->mm;
88 struct vm_area_struct *mpnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 down_read(&mm->mmap_sem);
91
92 mpnt = find_vma(mm, addr);
93 if (mpnt && mpnt->vm_file && (mpnt->vm_flags & VM_EXEC)) {
94 up_read(&mm->mmap_sem);
95 /* To avoid latency problems, we only process the current CPU,
96 * hoping that most samples for the task are on this CPU
97 */
Ingo Molnar39c715b2005-06-21 17:14:34 -070098 sync_buffer(raw_smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return 0;
100 }
101
102 up_read(&mm->mmap_sem);
103 return 0;
104}
105
Robert Richter73185e02008-07-22 21:08:51 +0200106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* We need to be told about new modules so we don't attribute to a previously
108 * loaded module, or drop the samples on the floor.
109 */
Robert Richter73185e02008-07-22 21:08:51 +0200110static int
111module_load_notify(struct notifier_block *self, unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113#ifdef CONFIG_MODULES
114 if (val != MODULE_STATE_COMING)
115 return 0;
116
117 /* FIXME: should we process all CPU buffers ? */
Markus Armbruster59cc1852006-06-25 05:47:33 -0700118 mutex_lock(&buffer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 add_event_entry(ESCAPE_CODE);
120 add_event_entry(MODULE_LOADED_CODE);
Markus Armbruster59cc1852006-06-25 05:47:33 -0700121 mutex_unlock(&buffer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#endif
123 return 0;
124}
125
Robert Richter73185e02008-07-22 21:08:51 +0200126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static struct notifier_block task_free_nb = {
128 .notifier_call = task_free_notify,
129};
130
131static struct notifier_block task_exit_nb = {
132 .notifier_call = task_exit_notify,
133};
134
135static struct notifier_block munmap_nb = {
136 .notifier_call = munmap_notify,
137};
138
139static struct notifier_block module_load_nb = {
140 .notifier_call = module_load_notify,
141};
142
Robert Richter73185e02008-07-22 21:08:51 +0200143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static void end_sync(void)
145{
146 end_cpu_work();
147 /* make sure we don't leak task structs */
148 process_task_mortuary();
149 process_task_mortuary();
150}
151
152
153int sync_start(void)
154{
155 int err;
156
157 start_cpu_work();
158
159 err = task_handoff_register(&task_free_nb);
160 if (err)
161 goto out1;
162 err = profile_event_register(PROFILE_TASK_EXIT, &task_exit_nb);
163 if (err)
164 goto out2;
165 err = profile_event_register(PROFILE_MUNMAP, &munmap_nb);
166 if (err)
167 goto out3;
168 err = register_module_notifier(&module_load_nb);
169 if (err)
170 goto out4;
171
172out:
173 return err;
174out4:
175 profile_event_unregister(PROFILE_MUNMAP, &munmap_nb);
176out3:
177 profile_event_unregister(PROFILE_TASK_EXIT, &task_exit_nb);
178out2:
179 task_handoff_unregister(&task_free_nb);
180out1:
181 end_sync();
182 goto out;
183}
184
185
186void sync_stop(void)
187{
188 unregister_module_notifier(&module_load_nb);
189 profile_event_unregister(PROFILE_MUNMAP, &munmap_nb);
190 profile_event_unregister(PROFILE_TASK_EXIT, &task_exit_nb);
191 task_handoff_unregister(&task_free_nb);
192 end_sync();
193}
194
Jan Blunck448678a2008-02-14 19:38:36 -0800195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/* Optimisation. We can manage without taking the dcookie sem
197 * because we cannot reach this code without at least one
198 * dcookie user still being registered (namely, the reader
199 * of the event buffer). */
Jan Blunck448678a2008-02-14 19:38:36 -0800200static inline unsigned long fast_get_dcookie(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 unsigned long cookie;
Jan Blunck448678a2008-02-14 19:38:36 -0800203
204 if (path->dentry->d_cookie)
205 return (unsigned long)path->dentry;
206 get_dcookie(path, &cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return cookie;
208}
209
Jan Blunck448678a2008-02-14 19:38:36 -0800210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/* Look up the dcookie for the task's first VM_EXECUTABLE mapping,
212 * which corresponds loosely to "application name". This is
213 * not strictly necessary but allows oprofile to associate
214 * shared-library samples with particular applications
215 */
Robert Richter73185e02008-07-22 21:08:51 +0200216static unsigned long get_exec_dcookie(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
John Levon0c0a4002005-06-23 22:02:47 -0700218 unsigned long cookie = NO_COOKIE;
Robert Richter73185e02008-07-22 21:08:51 +0200219 struct vm_area_struct *vma;
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (!mm)
222 goto out;
Robert Richter73185e02008-07-22 21:08:51 +0200223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 for (vma = mm->mmap; vma; vma = vma->vm_next) {
225 if (!vma->vm_file)
226 continue;
227 if (!(vma->vm_flags & VM_EXECUTABLE))
228 continue;
Jan Blunck448678a2008-02-14 19:38:36 -0800229 cookie = fast_get_dcookie(&vma->vm_file->f_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
231 }
232
233out:
234 return cookie;
235}
236
237
238/* Convert the EIP value of a sample into a persistent dentry/offset
239 * pair that can then be added to the global event buffer. We make
240 * sure to do this lookup before a mm->mmap modification happens so
241 * we don't lose track.
242 */
Robert Richter73185e02008-07-22 21:08:51 +0200243static unsigned long
244lookup_dcookie(struct mm_struct *mm, unsigned long addr, off_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
John Levon0c0a4002005-06-23 22:02:47 -0700246 unsigned long cookie = NO_COOKIE;
Robert Richter73185e02008-07-22 21:08:51 +0200247 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 for (vma = find_vma(mm, addr); vma; vma = vma->vm_next) {
Robert Richter73185e02008-07-22 21:08:51 +0200250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (addr < vma->vm_start || addr >= vma->vm_end)
252 continue;
253
John Levon0c0a4002005-06-23 22:02:47 -0700254 if (vma->vm_file) {
Jan Blunck448678a2008-02-14 19:38:36 -0800255 cookie = fast_get_dcookie(&vma->vm_file->f_path);
John Levon0c0a4002005-06-23 22:02:47 -0700256 *offset = (vma->vm_pgoff << PAGE_SHIFT) + addr -
257 vma->vm_start;
258 } else {
259 /* must be an anonymous map */
260 *offset = addr;
261 }
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
264 }
265
John Levon0c0a4002005-06-23 22:02:47 -0700266 if (!vma)
267 cookie = INVALID_COOKIE;
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return cookie;
270}
271
Robert Richter5e11f982008-07-22 21:08:52 +0200272static void increment_tail(struct oprofile_cpu_buffer *b)
273{
274 unsigned long new_tail = b->tail_pos + 1;
275
Barry Kasindorf345c2572008-07-22 21:08:54 +0200276 rmb(); /* be sure fifo pointers are synchromized */
Robert Richter5e11f982008-07-22 21:08:52 +0200277
278 if (new_tail < b->buffer_size)
279 b->tail_pos = new_tail;
280 else
281 b->tail_pos = 0;
282}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
John Levon0c0a4002005-06-23 22:02:47 -0700284static unsigned long last_cookie = INVALID_COOKIE;
Robert Richter73185e02008-07-22 21:08:51 +0200285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static void add_cpu_switch(int i)
287{
288 add_event_entry(ESCAPE_CODE);
289 add_event_entry(CPU_SWITCH_CODE);
290 add_event_entry(i);
John Levon0c0a4002005-06-23 22:02:47 -0700291 last_cookie = INVALID_COOKIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294static void add_kernel_ctx_switch(unsigned int in_kernel)
295{
296 add_event_entry(ESCAPE_CODE);
297 if (in_kernel)
Robert Richter73185e02008-07-22 21:08:51 +0200298 add_event_entry(KERNEL_ENTER_SWITCH_CODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 else
Robert Richter73185e02008-07-22 21:08:51 +0200300 add_event_entry(KERNEL_EXIT_SWITCH_CODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
Robert Richter73185e02008-07-22 21:08:51 +0200302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303static void
Robert Richter73185e02008-07-22 21:08:51 +0200304add_user_ctx_switch(struct task_struct const *task, unsigned long cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 add_event_entry(ESCAPE_CODE);
Robert Richter73185e02008-07-22 21:08:51 +0200307 add_event_entry(CTX_SWITCH_CODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 add_event_entry(task->pid);
309 add_event_entry(cookie);
310 /* Another code for daemon back-compat */
311 add_event_entry(ESCAPE_CODE);
312 add_event_entry(CTX_TGID_CODE);
313 add_event_entry(task->tgid);
314}
315
Robert Richter73185e02008-07-22 21:08:51 +0200316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317static void add_cookie_switch(unsigned long cookie)
318{
319 add_event_entry(ESCAPE_CODE);
320 add_event_entry(COOKIE_SWITCH_CODE);
321 add_event_entry(cookie);
322}
323
Robert Richter73185e02008-07-22 21:08:51 +0200324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static void add_trace_begin(void)
326{
327 add_event_entry(ESCAPE_CODE);
328 add_event_entry(TRACE_BEGIN_CODE);
329}
330
Robert Richter852402c2008-07-22 21:09:06 +0200331#ifdef CONFIG_OPROFILE_IBS
332
Barry Kasindorf345c2572008-07-22 21:08:54 +0200333#define IBS_FETCH_CODE_SIZE 2
334#define IBS_OP_CODE_SIZE 5
335#define IBS_EIP(offset) \
336 (((struct op_sample *)&cpu_buf->buffer[(offset)])->eip)
337#define IBS_EVENT(offset) \
338 (((struct op_sample *)&cpu_buf->buffer[(offset)])->event)
339
340/*
341 * Add IBS fetch and op entries to event buffer
342 */
343static void add_ibs_begin(struct oprofile_cpu_buffer *cpu_buf, int code,
344 int in_kernel, struct mm_struct *mm)
345{
346 unsigned long rip;
347 int i, count;
348 unsigned long ibs_cookie = 0;
349 off_t offset;
350
351 increment_tail(cpu_buf); /* move to RIP entry */
352
353 rip = IBS_EIP(cpu_buf->tail_pos);
354
355#ifdef __LP64__
356 rip += IBS_EVENT(cpu_buf->tail_pos) << 32;
357#endif
358
359 if (mm) {
360 ibs_cookie = lookup_dcookie(mm, rip, &offset);
361
362 if (ibs_cookie == NO_COOKIE)
363 offset = rip;
364 if (ibs_cookie == INVALID_COOKIE) {
365 atomic_inc(&oprofile_stats.sample_lost_no_mapping);
366 offset = rip;
367 }
368 if (ibs_cookie != last_cookie) {
369 add_cookie_switch(ibs_cookie);
370 last_cookie = ibs_cookie;
371 }
372 } else
373 offset = rip;
374
375 add_event_entry(ESCAPE_CODE);
376 add_event_entry(code);
377 add_event_entry(offset); /* Offset from Dcookie */
378
379 /* we send the Dcookie offset, but send the raw Linear Add also*/
380 add_event_entry(IBS_EIP(cpu_buf->tail_pos));
381 add_event_entry(IBS_EVENT(cpu_buf->tail_pos));
382
383 if (code == IBS_FETCH_CODE)
384 count = IBS_FETCH_CODE_SIZE; /*IBS FETCH is 2 int64s*/
385 else
386 count = IBS_OP_CODE_SIZE; /*IBS OP is 5 int64s*/
387
388 for (i = 0; i < count; i++) {
389 increment_tail(cpu_buf);
390 add_event_entry(IBS_EIP(cpu_buf->tail_pos));
391 add_event_entry(IBS_EVENT(cpu_buf->tail_pos));
392 }
393}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Robert Richter852402c2008-07-22 21:09:06 +0200395#endif
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397static void add_sample_entry(unsigned long offset, unsigned long event)
398{
399 add_event_entry(offset);
400 add_event_entry(event);
401}
402
403
Robert Richter73185e02008-07-22 21:08:51 +0200404static int add_us_sample(struct mm_struct *mm, struct op_sample *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 unsigned long cookie;
407 off_t offset;
Robert Richter73185e02008-07-22 21:08:51 +0200408
409 cookie = lookup_dcookie(mm, s->eip, &offset);
410
John Levon0c0a4002005-06-23 22:02:47 -0700411 if (cookie == INVALID_COOKIE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 atomic_inc(&oprofile_stats.sample_lost_no_mapping);
413 return 0;
414 }
415
416 if (cookie != last_cookie) {
417 add_cookie_switch(cookie);
418 last_cookie = cookie;
419 }
420
421 add_sample_entry(offset, s->event);
422
423 return 1;
424}
425
Robert Richter73185e02008-07-22 21:08:51 +0200426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/* Add a sample to the global event buffer. If possible the
428 * sample is converted into a persistent dentry/offset pair
429 * for later lookup from userspace.
430 */
431static int
Robert Richter73185e02008-07-22 21:08:51 +0200432add_sample(struct mm_struct *mm, struct op_sample *s, int in_kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 if (in_kernel) {
435 add_sample_entry(s->eip, s->event);
436 return 1;
437 } else if (mm) {
438 return add_us_sample(mm, s);
439 } else {
440 atomic_inc(&oprofile_stats.sample_lost_no_mm);
441 }
442 return 0;
443}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Robert Richter73185e02008-07-22 21:08:51 +0200445
446static void release_mm(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 if (!mm)
449 return;
450 up_read(&mm->mmap_sem);
451 mmput(mm);
452}
453
454
Robert Richter73185e02008-07-22 21:08:51 +0200455static struct mm_struct *take_tasks_mm(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Robert Richter73185e02008-07-22 21:08:51 +0200457 struct mm_struct *mm = get_task_mm(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (mm)
459 down_read(&mm->mmap_sem);
460 return mm;
461}
462
463
464static inline int is_code(unsigned long val)
465{
466 return val == ESCAPE_CODE;
467}
Robert Richter73185e02008-07-22 21:08:51 +0200468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470/* "acquire" as many cpu buffer slots as we can */
Robert Richter73185e02008-07-22 21:08:51 +0200471static unsigned long get_slots(struct oprofile_cpu_buffer *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 unsigned long head = b->head_pos;
474 unsigned long tail = b->tail_pos;
475
476 /*
477 * Subtle. This resets the persistent last_task
478 * and in_kernel values used for switching notes.
479 * BUT, there is a small window between reading
480 * head_pos, and this call, that means samples
481 * can appear at the new head position, but not
482 * be prefixed with the notes for switching
483 * kernel mode or a task switch. This small hole
484 * can lead to mis-attribution or samples where
485 * we don't know if it's in the kernel or not,
486 * at the start of an event buffer.
487 */
488 cpu_buffer_reset(b);
489
490 if (head >= tail)
491 return head - tail;
492
493 return head + (b->buffer_size - tail);
494}
495
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497/* Move tasks along towards death. Any tasks on dead_tasks
498 * will definitely have no remaining references in any
499 * CPU buffers at this point, because we use two lists,
500 * and to have reached the list, it must have gone through
501 * one full sync already.
502 */
503static void process_task_mortuary(void)
504{
Paul E. McKenney4369ef32006-01-08 01:01:35 -0800505 unsigned long flags;
506 LIST_HEAD(local_dead_tasks);
Robert Richter73185e02008-07-22 21:08:51 +0200507 struct task_struct *task;
508 struct task_struct *ttask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Paul E. McKenney4369ef32006-01-08 01:01:35 -0800510 spin_lock_irqsave(&task_mortuary, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Paul E. McKenney4369ef32006-01-08 01:01:35 -0800512 list_splice_init(&dead_tasks, &local_dead_tasks);
513 list_splice_init(&dying_tasks, &dead_tasks);
514
515 spin_unlock_irqrestore(&task_mortuary, flags);
516
517 list_for_each_entry_safe(task, ttask, &local_dead_tasks, tasks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 list_del(&task->tasks);
519 free_task(task);
520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
523
524static void mark_done(int cpu)
525{
526 int i;
527
528 cpu_set(cpu, marked_cpus);
529
530 for_each_online_cpu(i) {
531 if (!cpu_isset(i, marked_cpus))
532 return;
533 }
534
535 /* All CPUs have been processed at least once,
536 * we can process the mortuary once
537 */
538 process_task_mortuary();
539
540 cpus_clear(marked_cpus);
541}
542
543
544/* FIXME: this is not sufficient if we implement syscall barrier backtrace
545 * traversal, the code switch to sb_sample_start at first kernel enter/exit
546 * switch so we need a fifth state and some special handling in sync_buffer()
547 */
548typedef enum {
549 sb_bt_ignore = -2,
550 sb_buffer_start,
551 sb_bt_start,
552 sb_sample_start,
553} sync_buffer_state;
554
555/* Sync one of the CPU's buffers into the global event buffer.
556 * Here we need to go through each batch of samples punctuated
557 * by context switch notes, taking the task's mmap_sem and doing
558 * lookup in task->mm->mmap to convert EIP into dcookie/offset
559 * value.
560 */
561void sync_buffer(int cpu)
562{
Mike Travis608dfdd2008-04-28 02:14:15 -0700563 struct oprofile_cpu_buffer *cpu_buf = &per_cpu(cpu_buffer, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 struct mm_struct *mm = NULL;
Robert Richter73185e02008-07-22 21:08:51 +0200565 struct task_struct *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 unsigned long cookie = 0;
567 int in_kernel = 1;
568 unsigned int i;
569 sync_buffer_state state = sb_buffer_start;
570 unsigned long available;
571
Markus Armbruster59cc1852006-06-25 05:47:33 -0700572 mutex_lock(&buffer_mutex);
Robert Richter73185e02008-07-22 21:08:51 +0200573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 add_cpu_switch(cpu);
575
576 /* Remember, only we can modify tail_pos */
577
578 available = get_slots(cpu_buf);
579
580 for (i = 0; i < available; ++i) {
Robert Richter73185e02008-07-22 21:08:51 +0200581 struct op_sample *s = &cpu_buf->buffer[cpu_buf->tail_pos];
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (is_code(s->eip)) {
584 if (s->event <= CPU_IS_KERNEL) {
585 /* kernel/userspace switch */
586 in_kernel = s->event;
587 if (state == sb_buffer_start)
588 state = sb_sample_start;
589 add_kernel_ctx_switch(s->event);
590 } else if (s->event == CPU_TRACE_BEGIN) {
591 state = sb_bt_start;
592 add_trace_begin();
Robert Richter852402c2008-07-22 21:09:06 +0200593#ifdef CONFIG_OPROFILE_IBS
Barry Kasindorf345c2572008-07-22 21:08:54 +0200594 } else if (s->event == IBS_FETCH_BEGIN) {
595 state = sb_bt_start;
596 add_ibs_begin(cpu_buf,
597 IBS_FETCH_CODE, in_kernel, mm);
598 } else if (s->event == IBS_OP_BEGIN) {
599 state = sb_bt_start;
600 add_ibs_begin(cpu_buf,
601 IBS_OP_CODE, in_kernel, mm);
Robert Richter852402c2008-07-22 21:09:06 +0200602#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 } else {
Robert Richter73185e02008-07-22 21:08:51 +0200604 struct mm_struct *oldmm = mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 /* userspace context switch */
607 new = (struct task_struct *)s->event;
608
609 release_mm(oldmm);
610 mm = take_tasks_mm(new);
611 if (mm != oldmm)
612 cookie = get_exec_dcookie(mm);
613 add_user_ctx_switch(new, cookie);
614 }
Robert Richter73185e02008-07-22 21:08:51 +0200615 } else if (state >= sb_bt_start &&
616 !add_sample(mm, s, in_kernel)) {
617 if (state == sb_bt_start) {
618 state = sb_bt_ignore;
619 atomic_inc(&oprofile_stats.bt_lost_no_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621 }
622
623 increment_tail(cpu_buf);
624 }
625 release_mm(mm);
626
627 mark_done(cpu);
628
Markus Armbruster59cc1852006-06-25 05:47:33 -0700629 mutex_unlock(&buffer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}