Blame view

include/linux/relay.h 8.68 KB
b86ff981a   Jens Axboe   [PATCH] relay: mi...
1
2
3
4
5
6
7
8
9
10
11
  /*
   * linux/include/linux/relay.h
   *
   * Copyright (C) 2002, 2003 - Tom Zanussi (zanussi@us.ibm.com), IBM Corp
   * Copyright (C) 1999, 2000, 2001, 2002 - Karim Yaghmour (karim@opersys.com)
   *
   * CONFIG_RELAY definitions and declarations
   */
  
  #ifndef _LINUX_RELAY_H
  #define _LINUX_RELAY_H
b86ff981a   Jens Axboe   [PATCH] relay: mi...
12
13
  #include <linux/types.h>
  #include <linux/sched.h>
7c9cb3830   Tom Zanussi   relay: use plain ...
14
  #include <linux/timer.h>
b86ff981a   Jens Axboe   [PATCH] relay: mi...
15
16
17
18
19
20
21
22
23
24
25
26
  #include <linux/wait.h>
  #include <linux/list.h>
  #include <linux/fs.h>
  #include <linux/poll.h>
  #include <linux/kref.h>
  
  /* Needs a _much_ better name... */
  #define FIX_SIZE(x) ((((x) - 1) & PAGE_MASK) + PAGE_SIZE)
  
  /*
   * Tracks changes to rchan/rchan_buf structs
   */
23c887522   Mathieu Desnoyers   [PATCH] Relay: ad...
27
  #define RELAYFS_CHANNEL_VERSION		7
b86ff981a   Jens Axboe   [PATCH] relay: mi...
28
29
30
31
32
33
34
35
36
37
38
39
40
  
  /*
   * Per-cpu relay channel buffer
   */
  struct rchan_buf
  {
  	void *start;			/* start of channel buffer */
  	void *data;			/* start of current sub-buffer */
  	size_t offset;			/* current offset into sub-buffer */
  	size_t subbufs_produced;	/* count of sub-buffers produced */
  	size_t subbufs_consumed;	/* count of sub-buffers consumed */
  	struct rchan *chan;		/* associated channel */
  	wait_queue_head_t read_wait;	/* reader wait queue */
7c9cb3830   Tom Zanussi   relay: use plain ...
41
  	struct timer_list timer; 	/* reader wake-up timer */
b86ff981a   Jens Axboe   [PATCH] relay: mi...
42
43
44
45
46
47
48
49
  	struct dentry *dentry;		/* channel file dentry */
  	struct kref kref;		/* channel buffer refcount */
  	struct page **page_array;	/* array of current buffer pages */
  	unsigned int page_count;	/* number of current buffer pages */
  	unsigned int finalized;		/* buffer has been finalized */
  	size_t *padding;		/* padding counts per sub-buffer */
  	size_t prev_padding;		/* temporary variable */
  	size_t bytes_consumed;		/* bytes consumed in cur read subbuf */
20d8b67c0   Eduard - Gabriel Munteanu   relay: add buffer...
50
  	size_t early_bytes;		/* bytes consumed before VFS inited */
b86ff981a   Jens Axboe   [PATCH] relay: mi...
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
  	unsigned int cpu;		/* this buf's cpu */
  } ____cacheline_aligned;
  
  /*
   * Relay channel data structure
   */
  struct rchan
  {
  	u32 version;			/* the version of this struct */
  	size_t subbuf_size;		/* sub-buffer size */
  	size_t n_subbufs;		/* number of sub-buffers per buffer */
  	size_t alloc_size;		/* total buffer size allocated */
  	struct rchan_callbacks *cb;	/* client callbacks */
  	struct kref kref;		/* channel refcount */
  	void *private_data;		/* for user-defined data */
  	size_t last_toobig;		/* tried to log event > subbuf size */
  	struct rchan_buf *buf[NR_CPUS]; /* per-cpu channel buffers */
23c887522   Mathieu Desnoyers   [PATCH] Relay: ad...
68
69
70
  	int is_global;			/* One global buffer ? */
  	struct list_head list;		/* for channel list */
  	struct dentry *parent;		/* parent dentry passed to open */
20d8b67c0   Eduard - Gabriel Munteanu   relay: add buffer...
71
  	int has_base_filename;		/* has a filename associated? */
23c887522   Mathieu Desnoyers   [PATCH] Relay: ad...
72
  	char base_filename[NAME_MAX];	/* saved base filename */
b86ff981a   Jens Axboe   [PATCH] relay: mi...
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
  };
  
  /*
   * Relay channel client callbacks
   */
  struct rchan_callbacks
  {
  	/*
  	 * subbuf_start - called on buffer-switch to a new sub-buffer
  	 * @buf: the channel buffer containing the new sub-buffer
  	 * @subbuf: the start of the new sub-buffer
  	 * @prev_subbuf: the start of the previous sub-buffer
  	 * @prev_padding: unused space at the end of previous sub-buffer
  	 *
  	 * The client should return 1 to continue logging, 0 to stop
  	 * logging.
  	 *
  	 * NOTE: subbuf_start will also be invoked when the buffer is
  	 *       created, so that the first sub-buffer can be initialized
  	 *       if necessary.  In this case, prev_subbuf will be NULL.
  	 *
  	 * NOTE: the client can reserve bytes at the beginning of the new
  	 *       sub-buffer by calling subbuf_start_reserve() in this callback.
  	 */
  	int (*subbuf_start) (struct rchan_buf *buf,
  			     void *subbuf,
  			     void *prev_subbuf,
  			     size_t prev_padding);
  
  	/*
  	 * buf_mapped - relay buffer mmap notification
  	 * @buf: the channel buffer
  	 * @filp: relay file pointer
  	 *
  	 * Called when a relay file is successfully mmapped
  	 */
          void (*buf_mapped)(struct rchan_buf *buf,
  			   struct file *filp);
  
  	/*
  	 * buf_unmapped - relay buffer unmap notification
  	 * @buf: the channel buffer
  	 * @filp: relay file pointer
  	 *
  	 * Called when a relay file is successfully unmapped
  	 */
          void (*buf_unmapped)(struct rchan_buf *buf,
  			     struct file *filp);
  	/*
  	 * create_buf_file - create file to represent a relay channel buffer
  	 * @filename: the name of the file to create
  	 * @parent: the parent of the file to create
  	 * @mode: the mode of the file to create
  	 * @buf: the channel buffer
  	 * @is_global: outparam - set non-zero if the buffer should be global
  	 *
  	 * Called during relay_open(), once for each per-cpu buffer,
  	 * to allow the client to create a file to be used to
  	 * represent the corresponding channel buffer.  If the file is
  	 * created outside of relay, the parent must also exist in
  	 * that filesystem.
  	 *
  	 * The callback should return the dentry of the file created
  	 * to represent the relay buffer.
  	 *
  	 * Setting the is_global outparam to a non-zero value will
  	 * cause relay_open() to create a single global buffer rather
  	 * than the default set of per-cpu buffers.
  	 *
55dff4954   Randy Dunlap   docs: fix various...
142
  	 * See Documentation/filesystems/relay.txt for more info.
b86ff981a   Jens Axboe   [PATCH] relay: mi...
143
144
145
  	 */
  	struct dentry *(*create_buf_file)(const char *filename,
  					  struct dentry *parent,
f4ae40a6a   Al Viro   switch debugfs to...
146
  					  umode_t mode,
b86ff981a   Jens Axboe   [PATCH] relay: mi...
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
  					  struct rchan_buf *buf,
  					  int *is_global);
  
  	/*
  	 * remove_buf_file - remove file representing a relay channel buffer
  	 * @dentry: the dentry of the file to remove
  	 *
  	 * Called during relay_close(), once for each per-cpu buffer,
  	 * to allow the client to remove a file used to represent a
  	 * channel buffer.
  	 *
  	 * The callback should return 0 if successful, negative if not.
  	 */
  	int (*remove_buf_file)(struct dentry *dentry);
  };
  
  /*
   * CONFIG_RELAY kernel API, kernel/relay.c
   */
  
  struct rchan *relay_open(const char *base_filename,
  			 struct dentry *parent,
  			 size_t subbuf_size,
  			 size_t n_subbufs,
23c887522   Mathieu Desnoyers   [PATCH] Relay: ad...
171
172
  			 struct rchan_callbacks *cb,
  			 void *private_data);
20d8b67c0   Eduard - Gabriel Munteanu   relay: add buffer...
173
174
175
  extern int relay_late_setup_files(struct rchan *chan,
  				  const char *base_filename,
  				  struct dentry *parent);
b86ff981a   Jens Axboe   [PATCH] relay: mi...
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
  extern void relay_close(struct rchan *chan);
  extern void relay_flush(struct rchan *chan);
  extern void relay_subbufs_consumed(struct rchan *chan,
  				   unsigned int cpu,
  				   size_t consumed);
  extern void relay_reset(struct rchan *chan);
  extern int relay_buf_full(struct rchan_buf *buf);
  
  extern size_t relay_switch_subbuf(struct rchan_buf *buf,
  				  size_t length);
  
  /**
   *	relay_write - write data into the channel
   *	@chan: relay channel
   *	@data: data to be written
   *	@length: number of bytes to write
   *
   *	Writes data into the current cpu's channel buffer.
   *
   *	Protects the buffer by disabling interrupts.  Use this
   *	if you might be logging from interrupt context.  Try
   *	__relay_write() if you know you	won't be logging from
   *	interrupt context.
   */
  static inline void relay_write(struct rchan *chan,
  			       const void *data,
  			       size_t length)
  {
  	unsigned long flags;
  	struct rchan_buf *buf;
  
  	local_irq_save(flags);
  	buf = chan->buf[smp_processor_id()];
  	if (unlikely(buf->offset + length > chan->subbuf_size))
  		length = relay_switch_subbuf(buf, length);
  	memcpy(buf->data + buf->offset, data, length);
  	buf->offset += length;
  	local_irq_restore(flags);
  }
  
  /**
   *	__relay_write - write data into the channel
   *	@chan: relay channel
   *	@data: data to be written
   *	@length: number of bytes to write
   *
   *	Writes data into the current cpu's channel buffer.
   *
   *	Protects the buffer by disabling preemption.  Use
   *	relay_write() if you might be logging from interrupt
   *	context.
   */
  static inline void __relay_write(struct rchan *chan,
  				 const void *data,
  				 size_t length)
  {
  	struct rchan_buf *buf;
  
  	buf = chan->buf[get_cpu()];
  	if (unlikely(buf->offset + length > buf->chan->subbuf_size))
  		length = relay_switch_subbuf(buf, length);
  	memcpy(buf->data + buf->offset, data, length);
  	buf->offset += length;
  	put_cpu();
  }
  
  /**
   *	relay_reserve - reserve slot in channel buffer
   *	@chan: relay channel
   *	@length: number of bytes to reserve
   *
   *	Returns pointer to reserved slot, NULL if full.
   *
   *	Reserves a slot in the current cpu's channel buffer.
   *	Does not protect the buffer at all - caller must provide
   *	appropriate synchronization.
   */
  static inline void *relay_reserve(struct rchan *chan, size_t length)
  {
  	void *reserved;
  	struct rchan_buf *buf = chan->buf[smp_processor_id()];
  
  	if (unlikely(buf->offset + length > buf->chan->subbuf_size)) {
  		length = relay_switch_subbuf(buf, length);
  		if (!length)
  			return NULL;
  	}
  	reserved = buf->data + buf->offset;
  	buf->offset += length;
  
  	return reserved;
  }
  
  /**
   *	subbuf_start_reserve - reserve bytes at the start of a sub-buffer
   *	@buf: relay channel buffer
   *	@length: number of bytes to reserve
   *
   *	Helper function used to reserve bytes at the beginning of
   *	a sub-buffer in the subbuf_start() callback.
   */
  static inline void subbuf_start_reserve(struct rchan_buf *buf,
  					size_t length)
  {
  	BUG_ON(length >= buf->chan->subbuf_size - 1);
  	buf->offset = length;
  }
  
  /*
   * exported relay file operations, kernel/relay.c
   */
15ad7cdcf   Helge Deller   [PATCH] struct se...
287
  extern const struct file_operations relay_file_operations;
b86ff981a   Jens Axboe   [PATCH] relay: mi...
288
289
  
  #endif /* _LINUX_RELAY_H */