[PATCH] relayfs: export relayfs_create_file() with fileops param
[linux-2.6/sactl.git] / fs / relayfs / relay.c
bloba9cd5585c45ca33133dda7a31b64e5681d4175eb
1 /*
2 * Public API and common code for RelayFS.
4 * See Documentation/filesystems/relayfs.txt for an overview of relayfs.
6 * Copyright (C) 2002-2005 - Tom Zanussi (zanussi@us.ibm.com), IBM Corp
7 * Copyright (C) 1999-2005 - Karim Yaghmour (karim@opersys.com)
9 * This file is released under the GPL.
12 #include <linux/errno.h>
13 #include <linux/stddef.h>
14 #include <linux/slab.h>
15 #include <linux/module.h>
16 #include <linux/string.h>
17 #include <linux/relayfs_fs.h>
18 #include "relay.h"
19 #include "buffers.h"
21 /**
22 * relay_buf_empty - boolean, is the channel buffer empty?
23 * @buf: channel buffer
25 * Returns 1 if the buffer is empty, 0 otherwise.
27 int relay_buf_empty(struct rchan_buf *buf)
29 return (buf->subbufs_produced - buf->subbufs_consumed) ? 0 : 1;
32 /**
33 * relay_buf_full - boolean, is the channel buffer full?
34 * @buf: channel buffer
36 * Returns 1 if the buffer is full, 0 otherwise.
38 int relay_buf_full(struct rchan_buf *buf)
40 size_t ready = buf->subbufs_produced - buf->subbufs_consumed;
41 return (ready >= buf->chan->n_subbufs) ? 1 : 0;
45 * High-level relayfs kernel API and associated functions.
49 * rchan_callback implementations defining default channel behavior. Used
50 * in place of corresponding NULL values in client callback struct.
54 * subbuf_start() default callback. Does nothing.
56 static int subbuf_start_default_callback (struct rchan_buf *buf,
57 void *subbuf,
58 void *prev_subbuf,
59 size_t prev_padding)
61 if (relay_buf_full(buf))
62 return 0;
64 return 1;
68 * buf_mapped() default callback. Does nothing.
70 static void buf_mapped_default_callback(struct rchan_buf *buf,
71 struct file *filp)
76 * buf_unmapped() default callback. Does nothing.
78 static void buf_unmapped_default_callback(struct rchan_buf *buf,
79 struct file *filp)
83 /* relay channel default callbacks */
84 static struct rchan_callbacks default_channel_callbacks = {
85 .subbuf_start = subbuf_start_default_callback,
86 .buf_mapped = buf_mapped_default_callback,
87 .buf_unmapped = buf_unmapped_default_callback,
90 /**
91 * wakeup_readers - wake up readers waiting on a channel
92 * @private: the channel buffer
94 * This is the work function used to defer reader waking. The
95 * reason waking is deferred is that calling directly from write
96 * causes problems if you're writing from say the scheduler.
98 static void wakeup_readers(void *private)
100 struct rchan_buf *buf = private;
101 wake_up_interruptible(&buf->read_wait);
105 * __relay_reset - reset a channel buffer
106 * @buf: the channel buffer
107 * @init: 1 if this is a first-time initialization
109 * See relay_reset for description of effect.
111 static inline void __relay_reset(struct rchan_buf *buf, unsigned int init)
113 size_t i;
115 if (init) {
116 init_waitqueue_head(&buf->read_wait);
117 kref_init(&buf->kref);
118 INIT_WORK(&buf->wake_readers, NULL, NULL);
119 } else {
120 cancel_delayed_work(&buf->wake_readers);
121 flush_scheduled_work();
124 buf->subbufs_produced = 0;
125 buf->subbufs_consumed = 0;
126 buf->bytes_consumed = 0;
127 buf->finalized = 0;
128 buf->data = buf->start;
129 buf->offset = 0;
131 for (i = 0; i < buf->chan->n_subbufs; i++)
132 buf->padding[i] = 0;
134 buf->chan->cb->subbuf_start(buf, buf->data, NULL, 0);
138 * relay_reset - reset the channel
139 * @chan: the channel
141 * This has the effect of erasing all data from all channel buffers
142 * and restarting the channel in its initial state. The buffers
143 * are not freed, so any mappings are still in effect.
145 * NOTE: Care should be taken that the channel isn't actually
146 * being used by anything when this call is made.
148 void relay_reset(struct rchan *chan)
150 unsigned int i;
152 if (!chan)
153 return;
155 for (i = 0; i < NR_CPUS; i++) {
156 if (!chan->buf[i])
157 continue;
158 __relay_reset(chan->buf[i], 0);
163 * relay_open_buf - create a new channel buffer in relayfs
165 * Internal - used by relay_open().
167 static struct rchan_buf *relay_open_buf(struct rchan *chan,
168 const char *filename,
169 struct dentry *parent)
171 struct rchan_buf *buf;
172 struct dentry *dentry;
174 buf = relay_create_buf(chan);
175 if (!buf)
176 return NULL;
178 /* Create file in fs */
179 dentry = relayfs_create_file(filename, parent, S_IRUSR,
180 &relayfs_file_operations, buf);
181 if (!dentry) {
182 relay_destroy_buf(buf);
183 return NULL;
186 buf->dentry = dentry;
187 __relay_reset(buf, 1);
189 return buf;
193 * relay_close_buf - close a channel buffer
194 * @buf: channel buffer
196 * Marks the buffer finalized and restores the default callbacks.
197 * The channel buffer and channel buffer data structure are then freed
198 * automatically when the last reference is given up.
200 static inline void relay_close_buf(struct rchan_buf *buf)
202 buf->finalized = 1;
203 buf->chan->cb = &default_channel_callbacks;
204 cancel_delayed_work(&buf->wake_readers);
205 flush_scheduled_work();
206 kref_put(&buf->kref, relay_remove_buf);
209 static inline void setup_callbacks(struct rchan *chan,
210 struct rchan_callbacks *cb)
212 if (!cb) {
213 chan->cb = &default_channel_callbacks;
214 return;
217 if (!cb->subbuf_start)
218 cb->subbuf_start = subbuf_start_default_callback;
219 if (!cb->buf_mapped)
220 cb->buf_mapped = buf_mapped_default_callback;
221 if (!cb->buf_unmapped)
222 cb->buf_unmapped = buf_unmapped_default_callback;
223 chan->cb = cb;
227 * relay_open - create a new relayfs channel
228 * @base_filename: base name of files to create
229 * @parent: dentry of parent directory, NULL for root directory
230 * @subbuf_size: size of sub-buffers
231 * @n_subbufs: number of sub-buffers
232 * @cb: client callback functions
234 * Returns channel pointer if successful, NULL otherwise.
236 * Creates a channel buffer for each cpu using the sizes and
237 * attributes specified. The created channel buffer files
238 * will be named base_filename0...base_filenameN-1. File
239 * permissions will be S_IRUSR.
241 struct rchan *relay_open(const char *base_filename,
242 struct dentry *parent,
243 size_t subbuf_size,
244 size_t n_subbufs,
245 struct rchan_callbacks *cb)
247 unsigned int i;
248 struct rchan *chan;
249 char *tmpname;
251 if (!base_filename)
252 return NULL;
254 if (!(subbuf_size && n_subbufs))
255 return NULL;
257 chan = kcalloc(1, sizeof(struct rchan), GFP_KERNEL);
258 if (!chan)
259 return NULL;
261 chan->version = RELAYFS_CHANNEL_VERSION;
262 chan->n_subbufs = n_subbufs;
263 chan->subbuf_size = subbuf_size;
264 chan->alloc_size = FIX_SIZE(subbuf_size * n_subbufs);
265 setup_callbacks(chan, cb);
266 kref_init(&chan->kref);
268 tmpname = kmalloc(NAME_MAX + 1, GFP_KERNEL);
269 if (!tmpname)
270 goto free_chan;
272 for_each_online_cpu(i) {
273 sprintf(tmpname, "%s%d", base_filename, i);
274 chan->buf[i] = relay_open_buf(chan, tmpname, parent);
275 chan->buf[i]->cpu = i;
276 if (!chan->buf[i])
277 goto free_bufs;
280 kfree(tmpname);
281 return chan;
283 free_bufs:
284 for (i = 0; i < NR_CPUS; i++) {
285 if (!chan->buf[i])
286 break;
287 relay_close_buf(chan->buf[i]);
289 kfree(tmpname);
291 free_chan:
292 kref_put(&chan->kref, relay_destroy_channel);
293 return NULL;
297 * relay_switch_subbuf - switch to a new sub-buffer
298 * @buf: channel buffer
299 * @length: size of current event
301 * Returns either the length passed in or 0 if full.
303 * Performs sub-buffer-switch tasks such as invoking callbacks,
304 * updating padding counts, waking up readers, etc.
306 size_t relay_switch_subbuf(struct rchan_buf *buf, size_t length)
308 void *old, *new;
309 size_t old_subbuf, new_subbuf;
311 if (unlikely(length > buf->chan->subbuf_size))
312 goto toobig;
314 if (buf->offset != buf->chan->subbuf_size + 1) {
315 buf->prev_padding = buf->chan->subbuf_size - buf->offset;
316 old_subbuf = buf->subbufs_produced % buf->chan->n_subbufs;
317 buf->padding[old_subbuf] = buf->prev_padding;
318 buf->subbufs_produced++;
319 if (waitqueue_active(&buf->read_wait)) {
320 PREPARE_WORK(&buf->wake_readers, wakeup_readers, buf);
321 schedule_delayed_work(&buf->wake_readers, 1);
325 old = buf->data;
326 new_subbuf = buf->subbufs_produced % buf->chan->n_subbufs;
327 new = buf->start + new_subbuf * buf->chan->subbuf_size;
328 buf->offset = 0;
329 if (!buf->chan->cb->subbuf_start(buf, new, old, buf->prev_padding)) {
330 buf->offset = buf->chan->subbuf_size + 1;
331 return 0;
333 buf->data = new;
334 buf->padding[new_subbuf] = 0;
336 if (unlikely(length + buf->offset > buf->chan->subbuf_size))
337 goto toobig;
339 return length;
341 toobig:
342 buf->chan->last_toobig = length;
343 return 0;
347 * relay_subbufs_consumed - update the buffer's sub-buffers-consumed count
348 * @chan: the channel
349 * @cpu: the cpu associated with the channel buffer to update
350 * @subbufs_consumed: number of sub-buffers to add to current buf's count
352 * Adds to the channel buffer's consumed sub-buffer count.
353 * subbufs_consumed should be the number of sub-buffers newly consumed,
354 * not the total consumed.
356 * NOTE: kernel clients don't need to call this function if the channel
357 * mode is 'overwrite'.
359 void relay_subbufs_consumed(struct rchan *chan,
360 unsigned int cpu,
361 size_t subbufs_consumed)
363 struct rchan_buf *buf;
365 if (!chan)
366 return;
368 if (cpu >= NR_CPUS || !chan->buf[cpu])
369 return;
371 buf = chan->buf[cpu];
372 buf->subbufs_consumed += subbufs_consumed;
373 if (buf->subbufs_consumed > buf->subbufs_produced)
374 buf->subbufs_consumed = buf->subbufs_produced;
378 * relay_destroy_channel - free the channel struct
380 * Should only be called from kref_put().
382 void relay_destroy_channel(struct kref *kref)
384 struct rchan *chan = container_of(kref, struct rchan, kref);
385 kfree(chan);
389 * relay_close - close the channel
390 * @chan: the channel
392 * Closes all channel buffers and frees the channel.
394 void relay_close(struct rchan *chan)
396 unsigned int i;
398 if (!chan)
399 return;
401 for (i = 0; i < NR_CPUS; i++) {
402 if (!chan->buf[i])
403 continue;
404 relay_close_buf(chan->buf[i]);
407 if (chan->last_toobig)
408 printk(KERN_WARNING "relayfs: one or more items not logged "
409 "[item size (%Zd) > sub-buffer size (%Zd)]\n",
410 chan->last_toobig, chan->subbuf_size);
412 kref_put(&chan->kref, relay_destroy_channel);
416 * relay_flush - close the channel
417 * @chan: the channel
419 * Flushes all channel buffers i.e. forces buffer switch.
421 void relay_flush(struct rchan *chan)
423 unsigned int i;
425 if (!chan)
426 return;
428 for (i = 0; i < NR_CPUS; i++) {
429 if (!chan->buf[i])
430 continue;
431 relay_switch_subbuf(chan->buf[i], 0);
435 EXPORT_SYMBOL_GPL(relay_open);
436 EXPORT_SYMBOL_GPL(relay_close);
437 EXPORT_SYMBOL_GPL(relay_flush);
438 EXPORT_SYMBOL_GPL(relay_reset);
439 EXPORT_SYMBOL_GPL(relay_subbufs_consumed);
440 EXPORT_SYMBOL_GPL(relay_switch_subbuf);
441 EXPORT_SYMBOL_GPL(relay_buf_full);