4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
7 * @author John Levon <levon@movementarian.org>
9 * This is the global event buffer that the user-space
10 * daemon reads from. The event buffer is an untyped array
11 * of unsigned longs. Entries are prefixed by the
12 * escape value ESCAPE_CODE followed by an identifying code.
15 #include <linux/vmalloc.h>
16 #include <linux/oprofile.h>
17 #include <linux/sched.h>
18 #include <linux/dcookies.h>
20 #include <asm/uaccess.h>
23 #include "event_buffer.h"
24 #include "oprofile_stats.h"
26 DECLARE_MUTEX(buffer_sem);
28 static unsigned long buffer_opened;
29 static DECLARE_WAIT_QUEUE_HEAD(buffer_wait);
30 static unsigned long * event_buffer;
31 static unsigned long buffer_size;
32 static unsigned long buffer_watershed;
33 static size_t buffer_pos;
34 /* atomic_t because wait_event checks it outside of buffer_sem */
35 static atomic_t buffer_ready = ATOMIC_INIT(0);
37 /* Add an entry to the event buffer. When we
38 * get near to the end we wake up the process
39 * sleeping on the read() of the file.
41 void add_event_entry(unsigned long value)
43 if (buffer_pos == buffer_size) {
44 atomic_inc(&oprofile_stats.event_lost_overflow);
48 event_buffer[buffer_pos] = value;
49 if (++buffer_pos == buffer_size - buffer_watershed) {
50 atomic_set(&buffer_ready, 1);
51 wake_up(&buffer_wait);
56 /* Wake up the waiting process if any. This happens
57 * on "echo 0 >/dev/oprofile/enable" so the daemon
58 * processes the data remaining in the event buffer.
60 void wake_up_buffer_waiter(void)
63 atomic_set(&buffer_ready, 1);
64 wake_up(&buffer_wait);
69 int alloc_event_buffer(void)
73 spin_lock(&oprofilefs_lock);
74 buffer_size = fs_buffer_size;
75 buffer_watershed = fs_buffer_watershed;
76 spin_unlock(&oprofilefs_lock);
78 if (buffer_watershed >= buffer_size)
81 event_buffer = vmalloc(sizeof(unsigned long) * buffer_size);
91 void free_event_buffer(void)
97 static int event_buffer_open(struct inode * inode, struct file * file)
101 if (!capable(CAP_SYS_ADMIN))
104 if (test_and_set_bit(0, &buffer_opened))
107 /* Register as a user of dcookies
108 * to ensure they persist for the lifetime of
109 * the open event file
112 file->private_data = dcookie_register();
113 if (!file->private_data)
116 if ((err = oprofile_setup()))
119 /* NB: the actual start happens from userspace
120 * echo 1 >/dev/oprofile/enable
126 dcookie_unregister(file->private_data);
128 clear_bit(0, &buffer_opened);
133 static int event_buffer_release(struct inode * inode, struct file * file)
137 dcookie_unregister(file->private_data);
139 atomic_set(&buffer_ready, 0);
140 clear_bit(0, &buffer_opened);
145 static ssize_t event_buffer_read(struct file * file, char __user * buf,
146 size_t count, loff_t * offset)
148 int retval = -EINVAL;
149 size_t const max = buffer_size * sizeof(unsigned long);
151 /* handling partial reads is more trouble than it's worth */
152 if (count != max || *offset)
155 wait_event_interruptible(buffer_wait, atomic_read(&buffer_ready));
157 if (signal_pending(current))
160 /* can't currently happen */
161 if (!atomic_read(&buffer_ready))
166 atomic_set(&buffer_ready, 0);
170 count = buffer_pos * sizeof(unsigned long);
172 if (copy_to_user(buf, event_buffer, count))
183 struct file_operations event_buffer_fops = {
184 .open = event_buffer_open,
185 .release = event_buffer_release,
186 .read = event_buffer_read,