1 /* SPDX-License-Identifier: GPL-2.0 */
3 * linux/include/linux/relay.h
5 * Copyright (C) 2002, 2003 - Tom Zanussi (zanussi@us.ibm.com), IBM Corp
6 * Copyright (C) 1999, 2000, 2001, 2002 - Karim Yaghmour (karim@opersys.com)
8 * CONFIG_RELAY definitions and declarations
11 #ifndef _LINUX_RELAY_H
12 #define _LINUX_RELAY_H
14 #include <linux/types.h>
15 #include <linux/sched.h>
16 #include <linux/timer.h>
17 #include <linux/wait.h>
18 #include <linux/list.h>
19 #include <linux/irq_work.h>
20 #include <linux/bug.h>
22 #include <linux/poll.h>
23 #include <linux/kref.h>
24 #include <linux/percpu.h>
27 * Tracks changes to rchan/rchan_buf structs
29 #define RELAYFS_CHANNEL_VERSION 7
32 * Per-cpu relay channel buffer
36 void *start
; /* start of channel buffer */
37 void *data
; /* start of current sub-buffer */
38 size_t offset
; /* current offset into sub-buffer */
39 size_t subbufs_produced
; /* count of sub-buffers produced */
40 size_t subbufs_consumed
; /* count of sub-buffers consumed */
41 struct rchan
*chan
; /* associated channel */
42 wait_queue_head_t read_wait
; /* reader wait queue */
43 struct irq_work wakeup_work
; /* reader wakeup */
44 struct dentry
*dentry
; /* channel file dentry */
45 struct kref kref
; /* channel buffer refcount */
46 struct page
**page_array
; /* array of current buffer pages */
47 unsigned int page_count
; /* number of current buffer pages */
48 unsigned int finalized
; /* buffer has been finalized */
49 size_t *padding
; /* padding counts per sub-buffer */
50 size_t prev_padding
; /* temporary variable */
51 size_t bytes_consumed
; /* bytes consumed in cur read subbuf */
52 size_t early_bytes
; /* bytes consumed before VFS inited */
53 unsigned int cpu
; /* this buf's cpu */
54 } ____cacheline_aligned
;
57 * Relay channel data structure
61 u32 version
; /* the version of this struct */
62 size_t subbuf_size
; /* sub-buffer size */
63 size_t n_subbufs
; /* number of sub-buffers per buffer */
64 size_t alloc_size
; /* total buffer size allocated */
65 const struct rchan_callbacks
*cb
; /* client callbacks */
66 struct kref kref
; /* channel refcount */
67 void *private_data
; /* for user-defined data */
68 size_t last_toobig
; /* tried to log event > subbuf size */
69 struct rchan_buf
* __percpu
*buf
; /* per-cpu channel buffers */
70 int is_global
; /* One global buffer ? */
71 struct list_head list
; /* for channel list */
72 struct dentry
*parent
; /* parent dentry passed to open */
73 int has_base_filename
; /* has a filename associated? */
74 char base_filename
[NAME_MAX
]; /* saved base filename */
78 * Relay channel client callbacks
80 struct rchan_callbacks
83 * subbuf_start - called on buffer-switch to a new sub-buffer
84 * @buf: the channel buffer containing the new sub-buffer
85 * @subbuf: the start of the new sub-buffer
86 * @prev_subbuf: the start of the previous sub-buffer
87 * @prev_padding: unused space at the end of previous sub-buffer
89 * The client should return 1 to continue logging, 0 to stop
92 * This callback is optional.
94 * NOTE: subbuf_start will also be invoked when the buffer is
95 * created, so that the first sub-buffer can be initialized
96 * if necessary. In this case, prev_subbuf will be NULL.
98 * NOTE: the client can reserve bytes at the beginning of the new
99 * sub-buffer by calling subbuf_start_reserve() in this callback.
101 int (*subbuf_start
) (struct rchan_buf
*buf
,
104 size_t prev_padding
);
107 * create_buf_file - create file to represent a relay channel buffer
108 * @filename: the name of the file to create
109 * @parent: the parent of the file to create
110 * @mode: the mode of the file to create
111 * @buf: the channel buffer
112 * @is_global: outparam - set non-zero if the buffer should be global
114 * Called during relay_open(), once for each per-cpu buffer,
115 * to allow the client to create a file to be used to
116 * represent the corresponding channel buffer. If the file is
117 * created outside of relay, the parent must also exist in
120 * The callback should return the dentry of the file created
121 * to represent the relay buffer.
123 * Setting the is_global outparam to a non-zero value will
124 * cause relay_open() to create a single global buffer rather
125 * than the default set of per-cpu buffers.
127 * This callback is mandatory.
129 * See Documentation/filesystems/relay.rst for more info.
131 struct dentry
*(*create_buf_file
)(const char *filename
,
132 struct dentry
*parent
,
134 struct rchan_buf
*buf
,
138 * remove_buf_file - remove file representing a relay channel buffer
139 * @dentry: the dentry of the file to remove
141 * Called during relay_close(), once for each per-cpu buffer,
142 * to allow the client to remove a file used to represent a
145 * The callback should return 0 if successful, negative if not.
147 * This callback is mandatory.
149 int (*remove_buf_file
)(struct dentry
*dentry
);
153 * CONFIG_RELAY kernel API, kernel/relay.c
156 struct rchan
*relay_open(const char *base_filename
,
157 struct dentry
*parent
,
160 const struct rchan_callbacks
*cb
,
162 extern int relay_late_setup_files(struct rchan
*chan
,
163 const char *base_filename
,
164 struct dentry
*parent
);
165 extern void relay_close(struct rchan
*chan
);
166 extern void relay_flush(struct rchan
*chan
);
167 extern void relay_subbufs_consumed(struct rchan
*chan
,
170 extern void relay_reset(struct rchan
*chan
);
171 extern int relay_buf_full(struct rchan_buf
*buf
);
173 extern size_t relay_switch_subbuf(struct rchan_buf
*buf
,
177 * relay_write - write data into the channel
178 * @chan: relay channel
179 * @data: data to be written
180 * @length: number of bytes to write
182 * Writes data into the current cpu's channel buffer.
184 * Protects the buffer by disabling interrupts. Use this
185 * if you might be logging from interrupt context. Try
186 * __relay_write() if you know you won't be logging from
189 static inline void relay_write(struct rchan
*chan
,
194 struct rchan_buf
*buf
;
196 local_irq_save(flags
);
197 buf
= *this_cpu_ptr(chan
->buf
);
198 if (unlikely(buf
->offset
+ length
> chan
->subbuf_size
))
199 length
= relay_switch_subbuf(buf
, length
);
200 memcpy(buf
->data
+ buf
->offset
, data
, length
);
201 buf
->offset
+= length
;
202 local_irq_restore(flags
);
206 * __relay_write - write data into the channel
207 * @chan: relay channel
208 * @data: data to be written
209 * @length: number of bytes to write
211 * Writes data into the current cpu's channel buffer.
213 * Protects the buffer by disabling preemption. Use
214 * relay_write() if you might be logging from interrupt
217 static inline void __relay_write(struct rchan
*chan
,
221 struct rchan_buf
*buf
;
223 buf
= *get_cpu_ptr(chan
->buf
);
224 if (unlikely(buf
->offset
+ length
> buf
->chan
->subbuf_size
))
225 length
= relay_switch_subbuf(buf
, length
);
226 memcpy(buf
->data
+ buf
->offset
, data
, length
);
227 buf
->offset
+= length
;
228 put_cpu_ptr(chan
->buf
);
232 * relay_reserve - reserve slot in channel buffer
233 * @chan: relay channel
234 * @length: number of bytes to reserve
236 * Returns pointer to reserved slot, NULL if full.
238 * Reserves a slot in the current cpu's channel buffer.
239 * Does not protect the buffer at all - caller must provide
240 * appropriate synchronization.
242 static inline void *relay_reserve(struct rchan
*chan
, size_t length
)
244 void *reserved
= NULL
;
245 struct rchan_buf
*buf
= *get_cpu_ptr(chan
->buf
);
247 if (unlikely(buf
->offset
+ length
> buf
->chan
->subbuf_size
)) {
248 length
= relay_switch_subbuf(buf
, length
);
252 reserved
= buf
->data
+ buf
->offset
;
253 buf
->offset
+= length
;
256 put_cpu_ptr(chan
->buf
);
261 * subbuf_start_reserve - reserve bytes at the start of a sub-buffer
262 * @buf: relay channel buffer
263 * @length: number of bytes to reserve
265 * Helper function used to reserve bytes at the beginning of
266 * a sub-buffer in the subbuf_start() callback.
268 static inline void subbuf_start_reserve(struct rchan_buf
*buf
,
271 BUG_ON(length
>= buf
->chan
->subbuf_size
- 1);
272 buf
->offset
= length
;
276 * exported relay file operations, kernel/relay.c
278 extern const struct file_operations relay_file_operations
;
281 int relay_prepare_cpu(unsigned int cpu
);
283 #define relay_prepare_cpu NULL
286 #endif /* _LINUX_RELAY_H */