blob: c38adb38906406b977a8d41288709c976f020c84 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * @file event_buffer.c
3 *
4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
6 *
7 * @author John Levon <levon@movementarian.org>
8 *
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.
13 */
14
15#include <linux/vmalloc.h>
16#include <linux/oprofile.h>
17#include <linux/sched.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080018#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/dcookies.h>
20#include <linux/fs.h>
21#include <asm/uaccess.h>
Robert Richter6a180372008-10-16 15:01:40 +020022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "oprof.h"
24#include "event_buffer.h"
25#include "oprofile_stats.h"
26
Markus Armbruster59cc1852006-06-25 05:47:33 -070027DEFINE_MUTEX(buffer_mutex);
Robert Richter6a180372008-10-16 15:01:40 +020028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static unsigned long buffer_opened;
30static DECLARE_WAIT_QUEUE_HEAD(buffer_wait);
Robert Richter25ad2912008-09-05 17:12:36 +020031static unsigned long *event_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static unsigned long buffer_size;
33static unsigned long buffer_watershed;
34static size_t buffer_pos;
Markus Armbruster59cc1852006-06-25 05:47:33 -070035/* atomic_t because wait_event checks it outside of buffer_mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static atomic_t buffer_ready = ATOMIC_INIT(0);
37
38/* Add an entry to the event buffer. When we
39 * get near to the end we wake up the process
40 * sleeping on the read() of the file.
41 */
42void add_event_entry(unsigned long value)
43{
David Rientjes066b3aa2009-09-09 15:02:33 +020044 /*
45 * catch potential error
46 */
47 if (!event_buffer)
48 return;
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 if (buffer_pos == buffer_size) {
51 atomic_inc(&oprofile_stats.event_lost_overflow);
52 return;
53 }
54
55 event_buffer[buffer_pos] = value;
56 if (++buffer_pos == buffer_size - buffer_watershed) {
57 atomic_set(&buffer_ready, 1);
58 wake_up(&buffer_wait);
59 }
60}
61
62
63/* Wake up the waiting process if any. This happens
64 * on "echo 0 >/dev/oprofile/enable" so the daemon
65 * processes the data remaining in the event buffer.
66 */
67void wake_up_buffer_waiter(void)
68{
Markus Armbruster59cc1852006-06-25 05:47:33 -070069 mutex_lock(&buffer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 atomic_set(&buffer_ready, 1);
71 wake_up(&buffer_wait);
Markus Armbruster59cc1852006-06-25 05:47:33 -070072 mutex_unlock(&buffer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Robert Richter6a180372008-10-16 15:01:40 +020075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076int alloc_event_buffer(void)
77{
78 int err = -ENOMEM;
Jiri Kosina4dfc8962007-03-28 18:12:34 +020079 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Jiri Kosina4dfc8962007-03-28 18:12:34 +020081 spin_lock_irqsave(&oprofilefs_lock, flags);
Robert Richterbd2172f2008-12-16 16:19:54 +010082 buffer_size = oprofile_buffer_size;
83 buffer_watershed = oprofile_buffer_watershed;
Jiri Kosina4dfc8962007-03-28 18:12:34 +020084 spin_unlock_irqrestore(&oprofilefs_lock, flags);
Robert Richter6a180372008-10-16 15:01:40 +020085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 if (buffer_watershed >= buffer_size)
87 return -EINVAL;
Robert Richter6a180372008-10-16 15:01:40 +020088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 event_buffer = vmalloc(sizeof(unsigned long) * buffer_size);
90 if (!event_buffer)
Robert Richter6a180372008-10-16 15:01:40 +020091 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 err = 0;
94out:
95 return err;
96}
97
98
99void free_event_buffer(void)
100{
David Rientjes066b3aa2009-09-09 15:02:33 +0200101 mutex_lock(&buffer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 vfree(event_buffer);
Carl Lovef4156d12008-08-11 17:25:43 +1000103 event_buffer = NULL;
David Rientjes066b3aa2009-09-09 15:02:33 +0200104 mutex_unlock(&buffer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Robert Richter6a180372008-10-16 15:01:40 +0200107
Robert Richter25ad2912008-09-05 17:12:36 +0200108static int event_buffer_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 int err = -EPERM;
111
112 if (!capable(CAP_SYS_ADMIN))
113 return -EPERM;
114
Nick Piggincae042a2008-10-23 16:25:54 +0200115 if (test_and_set_bit_lock(0, &buffer_opened))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return -EBUSY;
117
118 /* Register as a user of dcookies
119 * to ensure they persist for the lifetime of
120 * the open event file
121 */
122 err = -EINVAL;
123 file->private_data = dcookie_register();
124 if (!file->private_data)
125 goto out;
Robert Richter6a180372008-10-16 15:01:40 +0200126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if ((err = oprofile_setup()))
128 goto fail;
129
130 /* NB: the actual start happens from userspace
131 * echo 1 >/dev/oprofile/enable
132 */
Robert Richter6a180372008-10-16 15:01:40 +0200133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return 0;
135
136fail:
137 dcookie_unregister(file->private_data);
138out:
Nick Piggincae042a2008-10-23 16:25:54 +0200139 __clear_bit_unlock(0, &buffer_opened);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return err;
141}
142
143
Robert Richter25ad2912008-09-05 17:12:36 +0200144static int event_buffer_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 oprofile_stop();
147 oprofile_shutdown();
148 dcookie_unregister(file->private_data);
149 buffer_pos = 0;
150 atomic_set(&buffer_ready, 0);
Nick Piggincae042a2008-10-23 16:25:54 +0200151 __clear_bit_unlock(0, &buffer_opened);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 return 0;
153}
154
155
Robert Richter25ad2912008-09-05 17:12:36 +0200156static ssize_t event_buffer_read(struct file *file, char __user *buf,
157 size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 int retval = -EINVAL;
160 size_t const max = buffer_size * sizeof(unsigned long);
161
162 /* handling partial reads is more trouble than it's worth */
163 if (count != max || *offset)
164 return -EINVAL;
165
166 wait_event_interruptible(buffer_wait, atomic_read(&buffer_ready));
167
168 if (signal_pending(current))
169 return -EINTR;
170
171 /* can't currently happen */
172 if (!atomic_read(&buffer_ready))
173 return -EAGAIN;
174
Markus Armbruster59cc1852006-06-25 05:47:33 -0700175 mutex_lock(&buffer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
David Rientjes066b3aa2009-09-09 15:02:33 +0200177 if (!event_buffer) {
178 retval = -EINTR;
179 goto out;
180 }
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 atomic_set(&buffer_ready, 0);
183
184 retval = -EFAULT;
185
186 count = buffer_pos * sizeof(unsigned long);
Robert Richter6a180372008-10-16 15:01:40 +0200187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (copy_to_user(buf, event_buffer, count))
189 goto out;
190
191 retval = count;
192 buffer_pos = 0;
Robert Richter6a180372008-10-16 15:01:40 +0200193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194out:
Markus Armbruster59cc1852006-06-25 05:47:33 -0700195 mutex_unlock(&buffer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return retval;
197}
Robert Richter6a180372008-10-16 15:01:40 +0200198
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800199const struct file_operations event_buffer_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 .open = event_buffer_open,
201 .release = event_buffer_release,
202 .read = event_buffer_read,
203};