blob: 3cffce90f82a9693999bb16c5741b6c2e4e842c2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * @file oprof.c
3 *
4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
6 *
7 * @author John Levon <levon@movementarian.org>
8 */
9
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/oprofile.h>
14#include <linux/moduleparam.h>
Markus Armbruster59cc1852006-06-25 05:47:33 -070015#include <asm/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#include "oprof.h"
18#include "event_buffer.h"
19#include "cpu_buffer.h"
20#include "buffer_sync.h"
21#include "oprofile_stats.h"
Robert Richterc92960f2008-09-05 17:12:36 +020022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023struct oprofile_operations oprofile_ops;
24
25unsigned long oprofile_started;
Robert Richterbd2172f2008-12-16 16:19:54 +010026unsigned long oprofile_backtrace_depth;
Robert Richter4c168ea2008-09-24 11:08:52 +020027static unsigned long is_setup;
28static DEFINE_MUTEX(start_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/* timer
31 0 - use performance monitoring hardware if available
32 1 - use the timer int mechanism regardless
33 */
34static int timer = 0;
35
36int oprofile_setup(void)
37{
38 int err;
Robert Richterc92960f2008-09-05 17:12:36 +020039
Markus Armbruster59cc1852006-06-25 05:47:33 -070040 mutex_lock(&start_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42 if ((err = alloc_cpu_buffers()))
43 goto out;
44
45 if ((err = alloc_event_buffer()))
46 goto out1;
Robert Richterc92960f2008-09-05 17:12:36 +020047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 if (oprofile_ops.setup && (err = oprofile_ops.setup()))
49 goto out2;
Robert Richterc92960f2008-09-05 17:12:36 +020050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 /* Note even though this starts part of the
52 * profiling overhead, it's necessary to prevent
53 * us missing task deaths and eventually oopsing
54 * when trying to process the event buffer.
55 */
Bob Nelson14748552007-07-20 21:39:53 +020056 if (oprofile_ops.sync_start) {
57 int sync_ret = oprofile_ops.sync_start();
58 switch (sync_ret) {
59 case 0:
60 goto post_sync;
61 case 1:
62 goto do_generic;
63 case -1:
64 goto out3;
65 default:
66 goto out3;
67 }
68 }
69do_generic:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if ((err = sync_start()))
71 goto out3;
72
Bob Nelson14748552007-07-20 21:39:53 +020073post_sync:
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 is_setup = 1;
Markus Armbruster59cc1852006-06-25 05:47:33 -070075 mutex_unlock(&start_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return 0;
Robert Richterc92960f2008-09-05 17:12:36 +020077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078out3:
79 if (oprofile_ops.shutdown)
80 oprofile_ops.shutdown();
81out2:
82 free_event_buffer();
83out1:
84 free_cpu_buffers();
85out:
Markus Armbruster59cc1852006-06-25 05:47:33 -070086 mutex_unlock(&start_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return err;
88}
89
90
91/* Actually start profiling (echo 1>/dev/oprofile/enable) */
92int oprofile_start(void)
93{
94 int err = -EINVAL;
Robert Richterc92960f2008-09-05 17:12:36 +020095
Markus Armbruster59cc1852006-06-25 05:47:33 -070096 mutex_lock(&start_mutex);
Robert Richter6a180372008-10-16 15:01:40 +020097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (!is_setup)
99 goto out;
100
Robert Richterc92960f2008-09-05 17:12:36 +0200101 err = 0;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (oprofile_started)
104 goto out;
Robert Richterc92960f2008-09-05 17:12:36 +0200105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 oprofile_reset_stats();
107
108 if ((err = oprofile_ops.start()))
109 goto out;
110
111 oprofile_started = 1;
112out:
Markus Armbruster59cc1852006-06-25 05:47:33 -0700113 mutex_unlock(&start_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return err;
115}
116
Robert Richterc92960f2008-09-05 17:12:36 +0200117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/* echo 0>/dev/oprofile/enable */
119void oprofile_stop(void)
120{
Markus Armbruster59cc1852006-06-25 05:47:33 -0700121 mutex_lock(&start_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 if (!oprofile_started)
123 goto out;
124 oprofile_ops.stop();
125 oprofile_started = 0;
126 /* wake up the daemon to read what remains */
127 wake_up_buffer_waiter();
128out:
Markus Armbruster59cc1852006-06-25 05:47:33 -0700129 mutex_unlock(&start_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132
133void oprofile_shutdown(void)
134{
Markus Armbruster59cc1852006-06-25 05:47:33 -0700135 mutex_lock(&start_mutex);
Bob Nelson14748552007-07-20 21:39:53 +0200136 if (oprofile_ops.sync_stop) {
137 int sync_ret = oprofile_ops.sync_stop();
138 switch (sync_ret) {
139 case 0:
140 goto post_sync;
141 case 1:
142 goto do_generic;
143 default:
144 goto post_sync;
145 }
146 }
147do_generic:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 sync_stop();
Bob Nelson14748552007-07-20 21:39:53 +0200149post_sync:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (oprofile_ops.shutdown)
151 oprofile_ops.shutdown();
152 is_setup = 0;
153 free_event_buffer();
154 free_cpu_buffers();
Markus Armbruster59cc1852006-06-25 05:47:33 -0700155 mutex_unlock(&start_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158
159int oprofile_set_backtrace(unsigned long val)
160{
161 int err = 0;
162
Markus Armbruster59cc1852006-06-25 05:47:33 -0700163 mutex_lock(&start_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 if (oprofile_started) {
166 err = -EBUSY;
167 goto out;
168 }
169
170 if (!oprofile_ops.backtrace) {
171 err = -EINVAL;
172 goto out;
173 }
174
Robert Richterbd2172f2008-12-16 16:19:54 +0100175 oprofile_backtrace_depth = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177out:
Markus Armbruster59cc1852006-06-25 05:47:33 -0700178 mutex_unlock(&start_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return err;
180}
181
182static int __init oprofile_init(void)
183{
184 int err;
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 err = oprofile_arch_init(&oprofile_ops);
187
188 if (err < 0 || timer) {
189 printk(KERN_INFO "oprofile: using timer interrupt.\n");
190 oprofile_timer_init(&oprofile_ops);
191 }
192
193 err = oprofilefs_register();
Robert Richter4c50d9e2009-01-22 14:14:14 +0100194 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 oprofile_arch_exit();
196
197 return err;
198}
199
200
201static void __exit oprofile_exit(void)
202{
203 oprofilefs_unregister();
204 oprofile_arch_exit();
205}
206
Robert Richterc92960f2008-09-05 17:12:36 +0200207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208module_init(oprofile_init);
209module_exit(oprofile_exit);
210
211module_param_named(timer, timer, int, 0644);
212MODULE_PARM_DESC(timer, "force use of timer interrupt");
Robert Richterc92960f2008-09-05 17:12:36 +0200213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214MODULE_LICENSE("GPL");
215MODULE_AUTHOR("John Levon <levon@movementarian.org>");
216MODULE_DESCRIPTION("OProfile system profiler");