Commit | Line | Data |
---|---|---|
852c2936 MD |
1 | /* |
2 | * ring_buffer_backend.c | |
3 | * | |
4 | * Copyright (C) 2005-2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
5 | * | |
6 | * Dual LGPL v2.1/GPL v2 license. | |
7 | */ | |
8 | ||
14641deb MD |
9 | #include <urcu/arch.h> |
10 | ||
11 | #include "ust/core.h" | |
12 | ||
8d8a24c8 | 13 | #include <ust/ringbuffer-config.h> |
4931a13e MD |
14 | #include "backend.h" |
15 | #include "frontend.h" | |
a6352fd4 | 16 | #include "smp.h" |
431d5cf0 | 17 | #include "shm.h" |
852c2936 MD |
18 | |
19 | /** | |
20 | * lib_ring_buffer_backend_allocate - allocate a channel buffer | |
21 | * @config: ring buffer instance configuration | |
22 | * @buf: the buffer struct | |
23 | * @size: total size of the buffer | |
24 | * @num_subbuf: number of subbuffers | |
25 | * @extra_reader_sb: need extra subbuffer for reader | |
26 | */ | |
27 | static | |
28 | int lib_ring_buffer_backend_allocate(const struct lib_ring_buffer_config *config, | |
29 | struct lib_ring_buffer_backend *bufb, | |
30 | size_t size, size_t num_subbuf, | |
a6352fd4 | 31 | int extra_reader_sb, |
1d498196 MD |
32 | struct shm_handle *handle, |
33 | struct shm_object *shmobj) | |
852c2936 | 34 | { |
1d498196 | 35 | struct channel_backend *chanb = &shmp(handle, bufb->chan)->backend; |
852c2936 MD |
36 | unsigned long subbuf_size, mmap_offset = 0; |
37 | unsigned long num_subbuf_alloc; | |
852c2936 MD |
38 | unsigned long i; |
39 | ||
852c2936 MD |
40 | subbuf_size = chanb->subbuf_size; |
41 | num_subbuf_alloc = num_subbuf; | |
42 | ||
a6352fd4 | 43 | if (extra_reader_sb) |
852c2936 | 44 | num_subbuf_alloc++; |
852c2936 | 45 | |
1d498196 MD |
46 | align_shm(shmobj, __alignof__(struct lib_ring_buffer_backend_pages_shmp)); |
47 | set_shmp(bufb->array, zalloc_shm(shmobj, | |
48 | sizeof(struct lib_ring_buffer_backend_pages_shmp) * num_subbuf_alloc)); | |
49 | if (unlikely(!shmp(handle, bufb->array))) | |
852c2936 MD |
50 | goto array_error; |
51 | ||
431d5cf0 MD |
52 | /* |
53 | * This is the largest element (the buffer pages) which needs to | |
54 | * be aligned on PAGE_SIZE. | |
55 | */ | |
1d498196 MD |
56 | align_shm(shmobj, PAGE_SIZE); |
57 | set_shmp(bufb->memory_map, zalloc_shm(shmobj, | |
a6352fd4 | 58 | subbuf_size * num_subbuf_alloc)); |
1d498196 | 59 | if (unlikely(!shmp(handle, bufb->memory_map))) |
a6352fd4 | 60 | goto memory_map_error; |
852c2936 MD |
61 | |
62 | /* Allocate backend pages array elements */ | |
63 | for (i = 0; i < num_subbuf_alloc; i++) { | |
1d498196 MD |
64 | align_shm(shmobj, __alignof__(struct lib_ring_buffer_backend_pages)); |
65 | set_shmp(shmp(handle, bufb->array)[i].shmp, | |
66 | zalloc_shm(shmobj, | |
431d5cf0 | 67 | sizeof(struct lib_ring_buffer_backend_pages))); |
1d498196 | 68 | if (!shmp(handle, shmp(handle, bufb->array)[i].shmp)) |
852c2936 MD |
69 | goto free_array; |
70 | } | |
71 | ||
72 | /* Allocate write-side subbuffer table */ | |
1d498196 MD |
73 | align_shm(shmobj, __alignof__(struct lib_ring_buffer_backend_subbuffer)); |
74 | set_shmp(bufb->buf_wsb, zalloc_shm(shmobj, | |
852c2936 | 75 | sizeof(struct lib_ring_buffer_backend_subbuffer) |
1d498196 MD |
76 | * num_subbuf)); |
77 | if (unlikely(!shmp(handle, bufb->buf_wsb))) | |
852c2936 MD |
78 | goto free_array; |
79 | ||
80 | for (i = 0; i < num_subbuf; i++) | |
1d498196 | 81 | shmp(handle, bufb->buf_wsb)[i].id = subbuffer_id(config, 0, 1, i); |
852c2936 MD |
82 | |
83 | /* Assign read-side subbuffer table */ | |
84 | if (extra_reader_sb) | |
85 | bufb->buf_rsb.id = subbuffer_id(config, 0, 1, | |
86 | num_subbuf_alloc - 1); | |
87 | else | |
88 | bufb->buf_rsb.id = subbuffer_id(config, 0, 1, 0); | |
89 | ||
90 | /* Assign pages to page index */ | |
91 | for (i = 0; i < num_subbuf_alloc; i++) { | |
1d498196 MD |
92 | struct shm_ref ref; |
93 | ||
94 | ref.index = bufb->memory_map._ref.index; | |
95 | ref.offset = bufb->memory_map._ref.offset; | |
96 | ref.offset += i * subbuf_size; | |
97 | ||
98 | set_shmp(shmp(handle, shmp(handle, bufb->array)[i].shmp)->p, | |
99 | ref); | |
852c2936 | 100 | if (config->output == RING_BUFFER_MMAP) { |
1d498196 | 101 | shmp(handle, shmp(handle, bufb->array)[i].shmp)->mmap_offset = mmap_offset; |
852c2936 MD |
102 | mmap_offset += subbuf_size; |
103 | } | |
104 | } | |
105 | ||
852c2936 MD |
106 | return 0; |
107 | ||
108 | free_array: | |
a6352fd4 MD |
109 | /* bufb->array[i] will be freed by shm teardown */ |
110 | memory_map_error: | |
111 | /* bufb->array will be freed by shm teardown */ | |
852c2936 | 112 | array_error: |
852c2936 MD |
113 | return -ENOMEM; |
114 | } | |
115 | ||
116 | int lib_ring_buffer_backend_create(struct lib_ring_buffer_backend *bufb, | |
a6352fd4 | 117 | struct channel_backend *chanb, int cpu, |
1d498196 MD |
118 | struct shm_handle *handle, |
119 | struct shm_object *shmobj) | |
852c2936 MD |
120 | { |
121 | const struct lib_ring_buffer_config *config = chanb->config; | |
122 | ||
1d498196 | 123 | set_shmp(bufb->chan, handle->chan._ref); |
852c2936 MD |
124 | bufb->cpu = cpu; |
125 | ||
126 | return lib_ring_buffer_backend_allocate(config, bufb, chanb->buf_size, | |
127 | chanb->num_subbuf, | |
a6352fd4 | 128 | chanb->extra_reader_sb, |
1d498196 | 129 | handle, shmobj); |
852c2936 MD |
130 | } |
131 | ||
132 | void lib_ring_buffer_backend_free(struct lib_ring_buffer_backend *bufb) | |
133 | { | |
a6352fd4 MD |
134 | /* bufb->buf_wsb will be freed by shm teardown */ |
135 | /* bufb->array[i] will be freed by shm teardown */ | |
136 | /* bufb->array will be freed by shm teardown */ | |
852c2936 MD |
137 | bufb->allocated = 0; |
138 | } | |
139 | ||
1d498196 MD |
140 | void lib_ring_buffer_backend_reset(struct lib_ring_buffer_backend *bufb, |
141 | struct shm_handle *handle) | |
852c2936 | 142 | { |
1d498196 | 143 | struct channel_backend *chanb = &shmp(handle, bufb->chan)->backend; |
852c2936 MD |
144 | const struct lib_ring_buffer_config *config = chanb->config; |
145 | unsigned long num_subbuf_alloc; | |
146 | unsigned int i; | |
147 | ||
148 | num_subbuf_alloc = chanb->num_subbuf; | |
149 | if (chanb->extra_reader_sb) | |
150 | num_subbuf_alloc++; | |
151 | ||
152 | for (i = 0; i < chanb->num_subbuf; i++) | |
1d498196 | 153 | shmp(handle, bufb->buf_wsb)[i].id = subbuffer_id(config, 0, 1, i); |
852c2936 MD |
154 | if (chanb->extra_reader_sb) |
155 | bufb->buf_rsb.id = subbuffer_id(config, 0, 1, | |
156 | num_subbuf_alloc - 1); | |
157 | else | |
158 | bufb->buf_rsb.id = subbuffer_id(config, 0, 1, 0); | |
159 | ||
160 | for (i = 0; i < num_subbuf_alloc; i++) { | |
161 | /* Don't reset mmap_offset */ | |
1d498196 MD |
162 | v_set(config, &shmp(handle, shmp(handle, bufb->array)[i].shmp)->records_commit, 0); |
163 | v_set(config, &shmp(handle, shmp(handle, bufb->array)[i].shmp)->records_unread, 0); | |
164 | shmp(handle, shmp(handle, bufb->array)[i].shmp)->data_size = 0; | |
852c2936 MD |
165 | /* Don't reset backend page and virt addresses */ |
166 | } | |
167 | /* Don't reset num_pages_per_subbuf, cpu, allocated */ | |
168 | v_set(config, &bufb->records_read, 0); | |
169 | } | |
170 | ||
171 | /* | |
172 | * The frontend is responsible for also calling ring_buffer_backend_reset for | |
173 | * each buffer when calling channel_backend_reset. | |
174 | */ | |
175 | void channel_backend_reset(struct channel_backend *chanb) | |
176 | { | |
14641deb | 177 | struct channel *chan = caa_container_of(chanb, struct channel, backend); |
852c2936 MD |
178 | const struct lib_ring_buffer_config *config = chanb->config; |
179 | ||
180 | /* | |
181 | * Don't reset buf_size, subbuf_size, subbuf_size_order, | |
182 | * num_subbuf_order, buf_size_order, extra_reader_sb, num_subbuf, | |
183 | * priv, notifiers, config, cpumask and name. | |
184 | */ | |
185 | chanb->start_tsc = config->cb.ring_buffer_clock_read(chan); | |
186 | } | |
187 | ||
852c2936 MD |
188 | /** |
189 | * channel_backend_init - initialize a channel backend | |
190 | * @chanb: channel backend | |
191 | * @name: channel name | |
192 | * @config: client ring buffer configuration | |
193 | * @priv: client private data | |
194 | * @parent: dentry of parent directory, %NULL for root directory | |
195 | * @subbuf_size: size of sub-buffers (> PAGE_SIZE, power of 2) | |
196 | * @num_subbuf: number of sub-buffers (power of 2) | |
1d498196 | 197 | * @shm_handle: shared memory handle |
852c2936 MD |
198 | * |
199 | * Returns channel pointer if successful, %NULL otherwise. | |
200 | * | |
201 | * Creates per-cpu channel buffers using the sizes and attributes | |
202 | * specified. The created channel buffer files will be named | |
203 | * name_0...name_N-1. File permissions will be %S_IRUSR. | |
204 | * | |
205 | * Called with CPU hotplug disabled. | |
206 | */ | |
207 | int channel_backend_init(struct channel_backend *chanb, | |
208 | const char *name, | |
209 | const struct lib_ring_buffer_config *config, | |
a6352fd4 | 210 | void *priv, size_t subbuf_size, size_t num_subbuf, |
1d498196 | 211 | struct shm_handle *handle) |
852c2936 | 212 | { |
14641deb | 213 | struct channel *chan = caa_container_of(chanb, struct channel, backend); |
852c2936 MD |
214 | unsigned int i; |
215 | int ret; | |
1d498196 | 216 | size_t shmsize = 0, bufshmsize = 0, num_subbuf_alloc; |
852c2936 MD |
217 | |
218 | if (!name) | |
219 | return -EPERM; | |
220 | ||
221 | if (!(subbuf_size && num_subbuf)) | |
222 | return -EPERM; | |
223 | ||
224 | /* Check that the subbuffer size is larger than a page. */ | |
225 | if (subbuf_size < PAGE_SIZE) | |
226 | return -EINVAL; | |
227 | ||
228 | /* | |
229 | * Make sure the number of subbuffers and subbuffer size are power of 2. | |
230 | */ | |
231 | CHAN_WARN_ON(chanb, hweight32(subbuf_size) != 1); | |
232 | CHAN_WARN_ON(chanb, hweight32(num_subbuf) != 1); | |
233 | ||
234 | ret = subbuffer_id_check_index(config, num_subbuf); | |
235 | if (ret) | |
236 | return ret; | |
237 | ||
238 | chanb->priv = priv; | |
239 | chanb->buf_size = num_subbuf * subbuf_size; | |
240 | chanb->subbuf_size = subbuf_size; | |
241 | chanb->buf_size_order = get_count_order(chanb->buf_size); | |
242 | chanb->subbuf_size_order = get_count_order(subbuf_size); | |
243 | chanb->num_subbuf_order = get_count_order(num_subbuf); | |
244 | chanb->extra_reader_sb = | |
245 | (config->mode == RING_BUFFER_OVERWRITE) ? 1 : 0; | |
246 | chanb->num_subbuf = num_subbuf; | |
a6352fd4 MD |
247 | strncpy(chanb->name, name, NAME_MAX); |
248 | chanb->name[NAME_MAX - 1] = '\0'; | |
852c2936 MD |
249 | chanb->config = config; |
250 | ||
1d498196 MD |
251 | /* Per-cpu buffer size: control (prior to backend) */ |
252 | shmsize = offset_align(shmsize, __alignof__(struct lib_ring_buffer)); | |
253 | shmsize += sizeof(struct lib_ring_buffer); | |
254 | ||
255 | /* Per-cpu buffer size: backend */ | |
256 | /* num_subbuf + 1 is the worse case */ | |
257 | num_subbuf_alloc = num_subbuf + 1; | |
258 | shmsize += offset_align(shmsize, __alignof__(struct lib_ring_buffer_backend_pages_shmp)); | |
259 | shmsize += sizeof(struct lib_ring_buffer_backend_pages_shmp) * num_subbuf_alloc; | |
260 | shmsize += offset_align(bufshmsize, PAGE_SIZE); | |
261 | shmsize += subbuf_size * num_subbuf_alloc; | |
262 | shmsize += offset_align(bufshmsize, __alignof__(struct lib_ring_buffer_backend_pages)); | |
263 | shmsize += sizeof(struct lib_ring_buffer_backend_pages) * num_subbuf_alloc; | |
264 | shmsize += offset_align(bufshmsize, __alignof__(struct lib_ring_buffer_backend_subbuffer)); | |
265 | shmsize += sizeof(struct lib_ring_buffer_backend_subbuffer) * num_subbuf; | |
266 | /* Per-cpu buffer size: control (after backend) */ | |
267 | shmsize += offset_align(shmsize, __alignof__(struct commit_counters_hot)); | |
268 | shmsize += sizeof(struct commit_counters_hot) * num_subbuf; | |
269 | shmsize += offset_align(shmsize, __alignof__(struct commit_counters_cold)); | |
270 | shmsize += sizeof(struct commit_counters_cold) * num_subbuf; | |
271 | ||
852c2936 | 272 | if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) { |
a6352fd4 | 273 | struct lib_ring_buffer *buf; |
852c2936 | 274 | /* |
a6352fd4 | 275 | * We need to allocate for all possible cpus. |
852c2936 | 276 | */ |
852c2936 | 277 | for_each_possible_cpu(i) { |
1d498196 MD |
278 | struct shm_object *shmobj; |
279 | ||
280 | shmobj = shm_object_table_append(handle->table, shmsize); | |
281 | align_shm(shmobj, __alignof__(struct lib_ring_buffer)); | |
282 | set_shmp(chanb->buf[i].shmp, zalloc_shm(shmobj, sizeof(struct lib_ring_buffer))); | |
283 | buf = shmp(handle, chanb->buf[i].shmp); | |
284 | if (!buf) | |
285 | goto end; | |
5d61a504 | 286 | set_shmp(buf->self, chanb->buf[i].shmp._ref); |
1d498196 MD |
287 | ret = lib_ring_buffer_create(buf, chanb, i, |
288 | handle, shmobj); | |
852c2936 MD |
289 | if (ret) |
290 | goto free_bufs; /* cpu hotplug locked */ | |
291 | } | |
852c2936 | 292 | } else { |
1d498196 | 293 | struct shm_object *shmobj; |
a6352fd4 | 294 | struct lib_ring_buffer *buf; |
a6352fd4 | 295 | |
1d498196 MD |
296 | shmobj = shm_object_table_append(handle->table, shmsize); |
297 | align_shm(shmobj, __alignof__(struct lib_ring_buffer)); | |
298 | set_shmp(chanb->buf[0].shmp, zalloc_shm(shmobj, sizeof(struct lib_ring_buffer))); | |
299 | buf = shmp(handle, chanb->buf[0].shmp); | |
a6352fd4 MD |
300 | if (!buf) |
301 | goto end; | |
1d498196 MD |
302 | ret = lib_ring_buffer_create(buf, chanb, -1, |
303 | handle, shmobj); | |
852c2936 MD |
304 | if (ret) |
305 | goto free_bufs; | |
306 | } | |
307 | chanb->start_tsc = config->cb.ring_buffer_clock_read(chan); | |
308 | ||
309 | return 0; | |
310 | ||
311 | free_bufs: | |
312 | if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) { | |
313 | for_each_possible_cpu(i) { | |
1d498196 | 314 | struct lib_ring_buffer *buf = shmp(handle, chanb->buf[i].shmp); |
852c2936 MD |
315 | |
316 | if (!buf->backend.allocated) | |
317 | continue; | |
1d498196 | 318 | lib_ring_buffer_free(buf, handle); |
852c2936 | 319 | } |
a6352fd4 MD |
320 | } |
321 | /* We only free the buffer data upon shm teardown */ | |
322 | end: | |
852c2936 MD |
323 | return -ENOMEM; |
324 | } | |
325 | ||
852c2936 MD |
326 | /** |
327 | * channel_backend_free - destroy the channel | |
328 | * @chan: the channel | |
329 | * | |
330 | * Destroy all channel buffers and frees the channel. | |
331 | */ | |
1d498196 MD |
332 | void channel_backend_free(struct channel_backend *chanb, |
333 | struct shm_handle *handle) | |
852c2936 MD |
334 | { |
335 | const struct lib_ring_buffer_config *config = chanb->config; | |
336 | unsigned int i; | |
337 | ||
338 | if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) { | |
339 | for_each_possible_cpu(i) { | |
1d498196 | 340 | struct lib_ring_buffer *buf = shmp(handle, chanb->buf[i].shmp); |
852c2936 MD |
341 | |
342 | if (!buf->backend.allocated) | |
343 | continue; | |
1d498196 | 344 | lib_ring_buffer_free(buf, handle); |
852c2936 | 345 | } |
852c2936 | 346 | } else { |
1d498196 | 347 | struct lib_ring_buffer *buf = shmp(handle, chanb->buf[0].shmp); |
852c2936 MD |
348 | |
349 | CHAN_WARN_ON(chanb, !buf->backend.allocated); | |
1d498196 | 350 | lib_ring_buffer_free(buf, handle); |
852c2936 | 351 | } |
a6352fd4 | 352 | /* We only free the buffer data upon shm teardown */ |
852c2936 MD |
353 | } |
354 | ||
852c2936 MD |
355 | /** |
356 | * lib_ring_buffer_read - read data from ring_buffer_buffer. | |
357 | * @bufb : buffer backend | |
358 | * @offset : offset within the buffer | |
359 | * @dest : destination address | |
360 | * @len : length to copy to destination | |
361 | * | |
362 | * Should be protected by get_subbuf/put_subbuf. | |
363 | * Returns the length copied. | |
364 | */ | |
365 | size_t lib_ring_buffer_read(struct lib_ring_buffer_backend *bufb, size_t offset, | |
1d498196 | 366 | void *dest, size_t len, struct shm_handle *handle) |
852c2936 | 367 | { |
1d498196 | 368 | struct channel_backend *chanb = &shmp(handle, bufb->chan)->backend; |
852c2936 | 369 | const struct lib_ring_buffer_config *config = chanb->config; |
a6352fd4 | 370 | ssize_t orig_len; |
1d498196 | 371 | struct lib_ring_buffer_backend_pages_shmp *rpages; |
852c2936 MD |
372 | unsigned long sb_bindex, id; |
373 | ||
374 | orig_len = len; | |
375 | offset &= chanb->buf_size - 1; | |
a6352fd4 | 376 | |
852c2936 MD |
377 | if (unlikely(!len)) |
378 | return 0; | |
a6352fd4 MD |
379 | id = bufb->buf_rsb.id; |
380 | sb_bindex = subbuffer_id_get_index(config, id); | |
1d498196 | 381 | rpages = &shmp(handle, bufb->array)[sb_bindex]; |
a6352fd4 MD |
382 | /* |
383 | * Underlying layer should never ask for reads across | |
384 | * subbuffers. | |
385 | */ | |
386 | CHAN_WARN_ON(chanb, offset >= chanb->buf_size); | |
387 | CHAN_WARN_ON(chanb, config->mode == RING_BUFFER_OVERWRITE | |
388 | && subbuffer_id_is_noref(config, id)); | |
1d498196 | 389 | memcpy(dest, shmp(handle, shmp(handle, rpages->shmp)->p) + (offset & ~(chanb->subbuf_size - 1)), len); |
852c2936 MD |
390 | return orig_len; |
391 | } | |
852c2936 | 392 | |
852c2936 MD |
393 | /** |
394 | * lib_ring_buffer_read_cstr - read a C-style string from ring_buffer. | |
395 | * @bufb : buffer backend | |
396 | * @offset : offset within the buffer | |
397 | * @dest : destination address | |
398 | * @len : destination's length | |
399 | * | |
400 | * return string's length | |
401 | * Should be protected by get_subbuf/put_subbuf. | |
402 | */ | |
403 | int lib_ring_buffer_read_cstr(struct lib_ring_buffer_backend *bufb, size_t offset, | |
1d498196 | 404 | void *dest, size_t len, struct shm_handle *handle) |
852c2936 | 405 | { |
1d498196 | 406 | struct channel_backend *chanb = &shmp(handle, bufb->chan)->backend; |
852c2936 | 407 | const struct lib_ring_buffer_config *config = chanb->config; |
a6352fd4 | 408 | ssize_t string_len, orig_offset; |
852c2936 | 409 | char *str; |
1d498196 | 410 | struct lib_ring_buffer_backend_pages_shmp *rpages; |
852c2936 MD |
411 | unsigned long sb_bindex, id; |
412 | ||
413 | offset &= chanb->buf_size - 1; | |
852c2936 | 414 | orig_offset = offset; |
852c2936 MD |
415 | id = bufb->buf_rsb.id; |
416 | sb_bindex = subbuffer_id_get_index(config, id); | |
1d498196 | 417 | rpages = &shmp(handle, bufb->array)[sb_bindex]; |
a6352fd4 MD |
418 | /* |
419 | * Underlying layer should never ask for reads across | |
420 | * subbuffers. | |
421 | */ | |
422 | CHAN_WARN_ON(chanb, offset >= chanb->buf_size); | |
852c2936 MD |
423 | CHAN_WARN_ON(chanb, config->mode == RING_BUFFER_OVERWRITE |
424 | && subbuffer_id_is_noref(config, id)); | |
1d498196 | 425 | str = (char *)shmp(handle, shmp(handle, rpages->shmp)->p) + (offset & ~(chanb->subbuf_size - 1)); |
a6352fd4 MD |
426 | string_len = strnlen(str, len); |
427 | if (dest && len) { | |
428 | memcpy(dest, str, string_len); | |
429 | ((char *)dest)[0] = 0; | |
430 | } | |
431 | return offset - orig_offset; | |
852c2936 | 432 | } |
852c2936 MD |
433 | |
434 | /** | |
435 | * lib_ring_buffer_read_offset_address - get address of a buffer location | |
436 | * @bufb : buffer backend | |
437 | * @offset : offset within the buffer. | |
438 | * | |
439 | * Return the address where a given offset is located (for read). | |
440 | * Should be used to get the current subbuffer header pointer. Given we know | |
441 | * it's never on a page boundary, it's safe to write directly to this address, | |
442 | * as long as the write is never bigger than a page size. | |
443 | */ | |
444 | void *lib_ring_buffer_read_offset_address(struct lib_ring_buffer_backend *bufb, | |
1d498196 MD |
445 | size_t offset, |
446 | struct shm_handle *handle) | |
852c2936 | 447 | { |
1d498196 MD |
448 | struct lib_ring_buffer_backend_pages_shmp *rpages; |
449 | struct channel_backend *chanb = &shmp(handle, bufb->chan)->backend; | |
852c2936 MD |
450 | const struct lib_ring_buffer_config *config = chanb->config; |
451 | unsigned long sb_bindex, id; | |
452 | ||
453 | offset &= chanb->buf_size - 1; | |
852c2936 MD |
454 | id = bufb->buf_rsb.id; |
455 | sb_bindex = subbuffer_id_get_index(config, id); | |
1d498196 | 456 | rpages = &shmp(handle, bufb->array)[sb_bindex]; |
852c2936 MD |
457 | CHAN_WARN_ON(chanb, config->mode == RING_BUFFER_OVERWRITE |
458 | && subbuffer_id_is_noref(config, id)); | |
1d498196 | 459 | return shmp(handle, shmp(handle, rpages->shmp)->p) + (offset & ~(chanb->subbuf_size - 1)); |
852c2936 | 460 | } |
852c2936 MD |
461 | |
462 | /** | |
463 | * lib_ring_buffer_offset_address - get address of a location within the buffer | |
464 | * @bufb : buffer backend | |
465 | * @offset : offset within the buffer. | |
466 | * | |
467 | * Return the address where a given offset is located. | |
468 | * Should be used to get the current subbuffer header pointer. Given we know | |
469 | * it's always at the beginning of a page, it's safe to write directly to this | |
470 | * address, as long as the write is never bigger than a page size. | |
471 | */ | |
472 | void *lib_ring_buffer_offset_address(struct lib_ring_buffer_backend *bufb, | |
1d498196 MD |
473 | size_t offset, |
474 | struct shm_handle *handle) | |
852c2936 | 475 | { |
a6352fd4 | 476 | size_t sbidx; |
1d498196 MD |
477 | struct lib_ring_buffer_backend_pages_shmp *rpages; |
478 | struct channel_backend *chanb = &shmp(handle, bufb->chan)->backend; | |
852c2936 MD |
479 | const struct lib_ring_buffer_config *config = chanb->config; |
480 | unsigned long sb_bindex, id; | |
481 | ||
482 | offset &= chanb->buf_size - 1; | |
483 | sbidx = offset >> chanb->subbuf_size_order; | |
1d498196 | 484 | id = shmp(handle, bufb->buf_wsb)[sbidx].id; |
852c2936 | 485 | sb_bindex = subbuffer_id_get_index(config, id); |
1d498196 | 486 | rpages = &shmp(handle, bufb->array)[sb_bindex]; |
852c2936 MD |
487 | CHAN_WARN_ON(chanb, config->mode == RING_BUFFER_OVERWRITE |
488 | && subbuffer_id_is_noref(config, id)); | |
1d498196 | 489 | return shmp(handle, shmp(handle, rpages->shmp)->p) + (offset & ~(chanb->subbuf_size - 1)); |
852c2936 | 490 | } |