Rename "tsc" to "timestamp"
[lttng-ust.git] / src / common / ringbuffer / ring_buffer_backend.c
CommitLineData
852c2936 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
852c2936 3 *
e92f3e28 4 * Copyright (C) 2005-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
852c2936
MD
5 */
6
3fbec7dc 7#define _LGPL_SOURCE
b4051ad8 8#include <stddef.h>
fb31eb73 9#include <stdint.h>
2657d1ba 10#include <unistd.h>
14641deb 11#include <urcu/arch.h>
96e80018 12#include <limits.h>
14641deb 13
eae3c729 14#include <lttng/ust-utils.h>
0b4b8811 15#include <lttng/ust-ringbuffer-context.h>
3d3a2bb8 16
0466ac28 17#include "ringbuffer-config.h"
2fed87ae 18#include "vatomic.h"
4931a13e
MD
19#include "backend.h"
20#include "frontend.h"
74cc1f59 21#include "common/smp.h"
431d5cf0 22#include "shm.h"
9d315d6d 23#include "common/align.h"
97572c04 24#include "common/populate.h"
852c2936
MD
25
26/**
27 * lib_ring_buffer_backend_allocate - allocate a channel buffer
28 * @config: ring buffer instance configuration
29 * @buf: the buffer struct
30 * @size: total size of the buffer
31 * @num_subbuf: number of subbuffers
32 * @extra_reader_sb: need extra subbuffer for reader
33 */
34static
b5457df5
MD
35int lib_ring_buffer_backend_allocate(const struct lttng_ust_ring_buffer_config *config,
36 struct lttng_ust_ring_buffer_backend *bufb,
2208d8b5 37 size_t size __attribute__((unused)), size_t num_subbuf,
a6352fd4 38 int extra_reader_sb,
38fae1d3 39 struct lttng_ust_shm_handle *handle,
1d498196 40 struct shm_object *shmobj)
852c2936 41{
34daae3e 42 struct channel_backend *chanb;
852c2936
MD
43 unsigned long subbuf_size, mmap_offset = 0;
44 unsigned long num_subbuf_alloc;
852c2936 45 unsigned long i;
2657d1ba 46 long page_size;
852c2936 47
34daae3e
MD
48 chanb = &shmp(handle, bufb->chan)->backend;
49 if (!chanb)
50 return -EINVAL;
51
852c2936
MD
52 subbuf_size = chanb->subbuf_size;
53 num_subbuf_alloc = num_subbuf;
54
a6352fd4 55 if (extra_reader_sb)
852c2936 56 num_subbuf_alloc++;
852c2936 57
b72687b8 58 page_size = LTTNG_UST_PAGE_SIZE;
2657d1ba
MD
59 if (page_size <= 0) {
60 goto page_size_error;
61 }
62
b5457df5 63 align_shm(shmobj, __alignof__(struct lttng_ust_ring_buffer_backend_pages_shmp));
1d498196 64 set_shmp(bufb->array, zalloc_shm(shmobj,
b5457df5 65 sizeof(struct lttng_ust_ring_buffer_backend_pages_shmp) * num_subbuf_alloc));
b5a3dfa5 66 if (caa_unlikely(!shmp(handle, bufb->array)))
852c2936
MD
67 goto array_error;
68
431d5cf0
MD
69 /*
70 * This is the largest element (the buffer pages) which needs to
2657d1ba 71 * be aligned on page size.
431d5cf0 72 */
2657d1ba 73 align_shm(shmobj, page_size);
1d498196 74 set_shmp(bufb->memory_map, zalloc_shm(shmobj,
a6352fd4 75 subbuf_size * num_subbuf_alloc));
b5a3dfa5 76 if (caa_unlikely(!shmp(handle, bufb->memory_map)))
a6352fd4 77 goto memory_map_error;
852c2936
MD
78
79 /* Allocate backend pages array elements */
80 for (i = 0; i < num_subbuf_alloc; i++) {
b5457df5 81 align_shm(shmobj, __alignof__(struct lttng_ust_ring_buffer_backend_pages));
aead2025 82 set_shmp(shmp_index(handle, bufb->array, i)->shmp,
1d498196 83 zalloc_shm(shmobj,
b5457df5 84 sizeof(struct lttng_ust_ring_buffer_backend_pages)));
4746ae29 85 if (!shmp(handle, shmp_index(handle, bufb->array, i)->shmp))
852c2936
MD
86 goto free_array;
87 }
88
89 /* Allocate write-side subbuffer table */
b5457df5 90 align_shm(shmobj, __alignof__(struct lttng_ust_ring_buffer_backend_subbuffer));
1d498196 91 set_shmp(bufb->buf_wsb, zalloc_shm(shmobj,
b5457df5 92 sizeof(struct lttng_ust_ring_buffer_backend_subbuffer)
1d498196 93 * num_subbuf));
b5a3dfa5 94 if (caa_unlikely(!shmp(handle, bufb->buf_wsb)))
852c2936
MD
95 goto free_array;
96
34daae3e 97 for (i = 0; i < num_subbuf; i++) {
b5457df5 98 struct lttng_ust_ring_buffer_backend_subbuffer *sb;
34daae3e
MD
99
100 sb = shmp_index(handle, bufb->buf_wsb, i);
101 if (!sb)
102 goto free_array;
103 sb->id = subbuffer_id(config, 0, 1, i);
104 }
852c2936
MD
105
106 /* Assign read-side subbuffer table */
107 if (extra_reader_sb)
108 bufb->buf_rsb.id = subbuffer_id(config, 0, 1,
109 num_subbuf_alloc - 1);
110 else
111 bufb->buf_rsb.id = subbuffer_id(config, 0, 1, 0);
112
1ff31389 113 /* Allocate subbuffer packet counter table */
b5457df5 114 align_shm(shmobj, __alignof__(struct lttng_ust_ring_buffer_backend_counts));
1ff31389 115 set_shmp(bufb->buf_cnt, zalloc_shm(shmobj,
b5457df5 116 sizeof(struct lttng_ust_ring_buffer_backend_counts)
1ff31389
JD
117 * num_subbuf));
118 if (caa_unlikely(!shmp(handle, bufb->buf_cnt)))
119 goto free_wsb;
120
852c2936
MD
121 /* Assign pages to page index */
122 for (i = 0; i < num_subbuf_alloc; i++) {
b5457df5
MD
123 struct lttng_ust_ring_buffer_backend_pages_shmp *sbp;
124 struct lttng_ust_ring_buffer_backend_pages *pages;
1d498196
MD
125 struct shm_ref ref;
126
127 ref.index = bufb->memory_map._ref.index;
128 ref.offset = bufb->memory_map._ref.offset;
129 ref.offset += i * subbuf_size;
130
34daae3e
MD
131 sbp = shmp_index(handle, bufb->array, i);
132 if (!sbp)
133 goto free_array;
134 pages = shmp(handle, sbp->shmp);
135 if (!pages)
136 goto free_array;
137 set_shmp(pages->p, ref);
852c2936 138 if (config->output == RING_BUFFER_MMAP) {
34daae3e 139 pages->mmap_offset = mmap_offset;
852c2936
MD
140 mmap_offset += subbuf_size;
141 }
142 }
852c2936
MD
143 return 0;
144
1ff31389
JD
145free_wsb:
146 /* bufb->buf_wsb will be freed by shm teardown */
852c2936 147free_array:
a6352fd4
MD
148 /* bufb->array[i] will be freed by shm teardown */
149memory_map_error:
150 /* bufb->array will be freed by shm teardown */
852c2936 151array_error:
2657d1ba 152page_size_error:
852c2936
MD
153 return -ENOMEM;
154}
155
b5457df5 156int lib_ring_buffer_backend_create(struct lttng_ust_ring_buffer_backend *bufb,
a6352fd4 157 struct channel_backend *chanb, int cpu,
38fae1d3 158 struct lttng_ust_shm_handle *handle,
1d498196 159 struct shm_object *shmobj)
852c2936 160{
b5457df5 161 const struct lttng_ust_ring_buffer_config *config = &chanb->config;
852c2936 162
1d498196 163 set_shmp(bufb->chan, handle->chan._ref);
852c2936
MD
164 bufb->cpu = cpu;
165
166 return lib_ring_buffer_backend_allocate(config, bufb, chanb->buf_size,
167 chanb->num_subbuf,
a6352fd4 168 chanb->extra_reader_sb,
1d498196 169 handle, shmobj);
852c2936
MD
170}
171
b5457df5 172void lib_ring_buffer_backend_reset(struct lttng_ust_ring_buffer_backend *bufb,
38fae1d3 173 struct lttng_ust_shm_handle *handle)
852c2936 174{
34daae3e 175 struct channel_backend *chanb;
b5457df5 176 const struct lttng_ust_ring_buffer_config *config;
852c2936
MD
177 unsigned long num_subbuf_alloc;
178 unsigned int i;
179
34daae3e
MD
180 chanb = &shmp(handle, bufb->chan)->backend;
181 if (!chanb)
15500a1b 182 return;
34daae3e
MD
183 config = &chanb->config;
184
852c2936
MD
185 num_subbuf_alloc = chanb->num_subbuf;
186 if (chanb->extra_reader_sb)
187 num_subbuf_alloc++;
188
34daae3e 189 for (i = 0; i < chanb->num_subbuf; i++) {
b5457df5 190 struct lttng_ust_ring_buffer_backend_subbuffer *sb;
34daae3e
MD
191
192 sb = shmp_index(handle, bufb->buf_wsb, i);
193 if (!sb)
15500a1b 194 return;
34daae3e
MD
195 sb->id = subbuffer_id(config, 0, 1, i);
196 }
852c2936
MD
197 if (chanb->extra_reader_sb)
198 bufb->buf_rsb.id = subbuffer_id(config, 0, 1,
199 num_subbuf_alloc - 1);
200 else
201 bufb->buf_rsb.id = subbuffer_id(config, 0, 1, 0);
202
203 for (i = 0; i < num_subbuf_alloc; i++) {
b5457df5
MD
204 struct lttng_ust_ring_buffer_backend_pages_shmp *sbp;
205 struct lttng_ust_ring_buffer_backend_pages *pages;
34daae3e
MD
206
207 sbp = shmp_index(handle, bufb->array, i);
208 if (!sbp)
15500a1b 209 return;
34daae3e
MD
210 pages = shmp(handle, sbp->shmp);
211 if (!pages)
15500a1b 212 return;
852c2936 213 /* Don't reset mmap_offset */
34daae3e
MD
214 v_set(config, &pages->records_commit, 0);
215 v_set(config, &pages->records_unread, 0);
216 pages->data_size = 0;
852c2936
MD
217 /* Don't reset backend page and virt addresses */
218 }
219 /* Don't reset num_pages_per_subbuf, cpu, allocated */
220 v_set(config, &bufb->records_read, 0);
221}
222
223/*
224 * The frontend is responsible for also calling ring_buffer_backend_reset for
225 * each buffer when calling channel_backend_reset.
226 */
227void channel_backend_reset(struct channel_backend *chanb)
228{
b5457df5
MD
229 struct lttng_ust_ring_buffer_channel *chan = caa_container_of(chanb,
230 struct lttng_ust_ring_buffer_channel, backend);
231 const struct lttng_ust_ring_buffer_config *config = &chanb->config;
852c2936
MD
232
233 /*
234 * Don't reset buf_size, subbuf_size, subbuf_size_order,
235 * num_subbuf_order, buf_size_order, extra_reader_sb, num_subbuf,
236 * priv, notifiers, config, cpumask and name.
237 */
373ea80a 238 chanb->start_timestamp = config->cb.ring_buffer_clock_read(chan);
852c2936
MD
239}
240
852c2936
MD
241/**
242 * channel_backend_init - initialize a channel backend
243 * @chanb: channel backend
244 * @name: channel name
245 * @config: client ring buffer configuration
852c2936 246 * @parent: dentry of parent directory, %NULL for root directory
2657d1ba 247 * @subbuf_size: size of sub-buffers (> page size, power of 2)
852c2936 248 * @num_subbuf: number of sub-buffers (power of 2)
38fae1d3 249 * @lttng_ust_shm_handle: shared memory handle
5ea386c3 250 * @stream_fds: stream file descriptors.
852c2936
MD
251 *
252 * Returns channel pointer if successful, %NULL otherwise.
253 *
254 * Creates per-cpu channel buffers using the sizes and attributes
255 * specified. The created channel buffer files will be named
256 * name_0...name_N-1. File permissions will be %S_IRUSR.
257 *
258 * Called with CPU hotplug disabled.
259 */
260int channel_backend_init(struct channel_backend *chanb,
261 const char *name,
b5457df5 262 const struct lttng_ust_ring_buffer_config *config,
a3f61e7f 263 size_t subbuf_size, size_t num_subbuf,
a9ff648c 264 struct lttng_ust_shm_handle *handle,
5ea386c3 265 const int *stream_fds)
852c2936 266{
b5457df5
MD
267 struct lttng_ust_ring_buffer_channel *chan = caa_container_of(chanb,
268 struct lttng_ust_ring_buffer_channel, backend);
852c2936
MD
269 unsigned int i;
270 int ret;
6c1f7d8b 271 size_t shmsize = 0, num_subbuf_alloc;
2657d1ba 272 long page_size;
852c2936
MD
273
274 if (!name)
275 return -EPERM;
276
b72687b8 277 page_size = LTTNG_UST_PAGE_SIZE;
2657d1ba
MD
278 if (page_size <= 0) {
279 return -ENOMEM;
280 }
852c2936 281 /* Check that the subbuffer size is larger than a page. */
2657d1ba 282 if (subbuf_size < page_size)
852c2936
MD
283 return -EINVAL;
284
285 /*
12bcbbdb
MD
286 * Make sure the number of subbuffers and subbuffer size are
287 * power of 2, and nonzero.
852c2936 288 */
12bcbbdb 289 if (!subbuf_size || (subbuf_size & (subbuf_size - 1)))
e52b0723 290 return -EINVAL;
12bcbbdb 291 if (!num_subbuf || (num_subbuf & (num_subbuf - 1)))
e52b0723 292 return -EINVAL;
3d8e9399
MD
293 /*
294 * Overwrite mode buffers require at least 2 subbuffers per
295 * buffer.
296 */
297 if (config->mode == RING_BUFFER_OVERWRITE && num_subbuf < 2)
298 return -EINVAL;
852c2936
MD
299
300 ret = subbuffer_id_check_index(config, num_subbuf);
301 if (ret)
302 return ret;
303
852c2936
MD
304 chanb->buf_size = num_subbuf * subbuf_size;
305 chanb->subbuf_size = subbuf_size;
306 chanb->buf_size_order = get_count_order(chanb->buf_size);
307 chanb->subbuf_size_order = get_count_order(subbuf_size);
308 chanb->num_subbuf_order = get_count_order(num_subbuf);
309 chanb->extra_reader_sb =
310 (config->mode == RING_BUFFER_OVERWRITE) ? 1 : 0;
311 chanb->num_subbuf = num_subbuf;
a6352fd4
MD
312 strncpy(chanb->name, name, NAME_MAX);
313 chanb->name[NAME_MAX - 1] = '\0';
193183fb 314 memcpy(&chanb->config, config, sizeof(*config));
852c2936 315
1d498196 316 /* Per-cpu buffer size: control (prior to backend) */
b5457df5
MD
317 shmsize = lttng_ust_offset_align(shmsize, __alignof__(struct lttng_ust_ring_buffer));
318 shmsize += sizeof(struct lttng_ust_ring_buffer);
b72687b8 319 shmsize += lttng_ust_offset_align(shmsize, __alignof__(struct commit_counters_hot));
d2f09c1c 320 shmsize += sizeof(struct commit_counters_hot) * num_subbuf;
b72687b8 321 shmsize += lttng_ust_offset_align(shmsize, __alignof__(struct commit_counters_cold));
d2f09c1c
MD
322 shmsize += sizeof(struct commit_counters_cold) * num_subbuf;
323 /* Sampled timestamp end */
b72687b8 324 shmsize += lttng_ust_offset_align(shmsize, __alignof__(uint64_t));
d2f09c1c 325 shmsize += sizeof(uint64_t) * num_subbuf;
1d498196
MD
326
327 /* Per-cpu buffer size: backend */
328 /* num_subbuf + 1 is the worse case */
329 num_subbuf_alloc = num_subbuf + 1;
b5457df5
MD
330 shmsize += lttng_ust_offset_align(shmsize, __alignof__(struct lttng_ust_ring_buffer_backend_pages_shmp));
331 shmsize += sizeof(struct lttng_ust_ring_buffer_backend_pages_shmp) * num_subbuf_alloc;
b72687b8 332 shmsize += lttng_ust_offset_align(shmsize, page_size);
1d498196 333 shmsize += subbuf_size * num_subbuf_alloc;
b5457df5
MD
334 shmsize += lttng_ust_offset_align(shmsize, __alignof__(struct lttng_ust_ring_buffer_backend_pages));
335 shmsize += sizeof(struct lttng_ust_ring_buffer_backend_pages) * num_subbuf_alloc;
336 shmsize += lttng_ust_offset_align(shmsize, __alignof__(struct lttng_ust_ring_buffer_backend_subbuffer));
337 shmsize += sizeof(struct lttng_ust_ring_buffer_backend_subbuffer) * num_subbuf;
338 shmsize += lttng_ust_offset_align(shmsize, __alignof__(struct lttng_ust_ring_buffer_backend_counts));
339 shmsize += sizeof(struct lttng_ust_ring_buffer_backend_counts) * num_subbuf;
1d498196 340
852c2936 341 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
b5457df5 342 struct lttng_ust_ring_buffer *buf;
852c2936 343 /*
a6352fd4 344 * We need to allocate for all possible cpus.
852c2936 345 */
852c2936 346 for_each_possible_cpu(i) {
1d498196 347 struct shm_object *shmobj;
5ea386c3 348
74d81a6c 349 shmobj = shm_object_table_alloc(handle->table, shmsize,
97572c04
MD
350 SHM_OBJECT_SHM, stream_fds[i], i,
351 lttng_ust_map_populate_cpu_is_enabled(i));
afdf9825
MD
352 if (!shmobj)
353 goto end;
b5457df5
MD
354 align_shm(shmobj, __alignof__(struct lttng_ust_ring_buffer));
355 set_shmp(chanb->buf[i].shmp, zalloc_shm(shmobj, sizeof(struct lttng_ust_ring_buffer)));
1d498196
MD
356 buf = shmp(handle, chanb->buf[i].shmp);
357 if (!buf)
358 goto end;
5d61a504 359 set_shmp(buf->self, chanb->buf[i].shmp._ref);
1d498196
MD
360 ret = lib_ring_buffer_create(buf, chanb, i,
361 handle, shmobj);
852c2936
MD
362 if (ret)
363 goto free_bufs; /* cpu hotplug locked */
364 }
852c2936 365 } else {
1d498196 366 struct shm_object *shmobj;
b5457df5 367 struct lttng_ust_ring_buffer *buf;
a6352fd4 368
74d81a6c 369 shmobj = shm_object_table_alloc(handle->table, shmsize,
97572c04
MD
370 SHM_OBJECT_SHM, stream_fds[0], -1,
371 lttng_ust_map_populate_is_enabled());
afdf9825
MD
372 if (!shmobj)
373 goto end;
b5457df5
MD
374 align_shm(shmobj, __alignof__(struct lttng_ust_ring_buffer));
375 set_shmp(chanb->buf[0].shmp, zalloc_shm(shmobj, sizeof(struct lttng_ust_ring_buffer)));
1d498196 376 buf = shmp(handle, chanb->buf[0].shmp);
a6352fd4
MD
377 if (!buf)
378 goto end;
cb14bae9 379 set_shmp(buf->self, chanb->buf[0].shmp._ref);
1d498196
MD
380 ret = lib_ring_buffer_create(buf, chanb, -1,
381 handle, shmobj);
852c2936
MD
382 if (ret)
383 goto free_bufs;
384 }
373ea80a 385 chanb->start_timestamp = config->cb.ring_buffer_clock_read(chan);
852c2936
MD
386
387 return 0;
388
389free_bufs:
a6352fd4
MD
390 /* We only free the buffer data upon shm teardown */
391end:
852c2936
MD
392 return -ENOMEM;
393}
394
852c2936
MD
395/**
396 * channel_backend_free - destroy the channel
397 * @chan: the channel
398 *
399 * Destroy all channel buffers and frees the channel.
400 */
2208d8b5
MJ
401void channel_backend_free(struct channel_backend *chanb __attribute__((unused)),
402 struct lttng_ust_shm_handle *handle __attribute__((unused)))
852c2936 403{
45e9e699 404 /* SHM teardown takes care of everything */
852c2936
MD
405}
406
852c2936
MD
407/**
408 * lib_ring_buffer_read - read data from ring_buffer_buffer.
409 * @bufb : buffer backend
410 * @offset : offset within the buffer
411 * @dest : destination address
412 * @len : length to copy to destination
413 *
414 * Should be protected by get_subbuf/put_subbuf.
415 * Returns the length copied.
416 */
b5457df5 417size_t lib_ring_buffer_read(struct lttng_ust_ring_buffer_backend *bufb, size_t offset,
38fae1d3 418 void *dest, size_t len, struct lttng_ust_shm_handle *handle)
852c2936 419{
34daae3e 420 struct channel_backend *chanb;
b5457df5 421 const struct lttng_ust_ring_buffer_config *config;
a6352fd4 422 ssize_t orig_len;
b5457df5
MD
423 struct lttng_ust_ring_buffer_backend_pages_shmp *rpages;
424 struct lttng_ust_ring_buffer_backend_pages *backend_pages;
852c2936 425 unsigned long sb_bindex, id;
99b99b47 426 void *src;
852c2936 427
34daae3e
MD
428 chanb = &shmp(handle, bufb->chan)->backend;
429 if (!chanb)
430 return 0;
431 config = &chanb->config;
852c2936
MD
432 orig_len = len;
433 offset &= chanb->buf_size - 1;
a6352fd4 434
b5a3dfa5 435 if (caa_unlikely(!len))
852c2936 436 return 0;
a6352fd4
MD
437 id = bufb->buf_rsb.id;
438 sb_bindex = subbuffer_id_get_index(config, id);
4746ae29 439 rpages = shmp_index(handle, bufb->array, sb_bindex);
15500a1b
MD
440 if (!rpages)
441 return 0;
a6352fd4
MD
442 /*
443 * Underlying layer should never ask for reads across
444 * subbuffers.
445 */
446 CHAN_WARN_ON(chanb, offset >= chanb->buf_size);
447 CHAN_WARN_ON(chanb, config->mode == RING_BUFFER_OVERWRITE
448 && subbuffer_id_is_noref(config, id));
15500a1b
MD
449 backend_pages = shmp(handle, rpages->shmp);
450 if (!backend_pages)
451 return 0;
452 src = shmp_index(handle, backend_pages->p, offset & (chanb->subbuf_size - 1));
99b99b47
MD
453 if (caa_unlikely(!src))
454 return 0;
455 memcpy(dest, src, len);
852c2936
MD
456 return orig_len;
457}
852c2936 458
852c2936
MD
459/**
460 * lib_ring_buffer_read_cstr - read a C-style string from ring_buffer.
461 * @bufb : buffer backend
462 * @offset : offset within the buffer
463 * @dest : destination address
464 * @len : destination's length
465 *
0bf3c920 466 * Return string's length, or -EINVAL on error.
852c2936 467 * Should be protected by get_subbuf/put_subbuf.
0bf3c920 468 * Destination length should be at least 1 to hold '\0'.
852c2936 469 */
b5457df5 470int lib_ring_buffer_read_cstr(struct lttng_ust_ring_buffer_backend *bufb, size_t offset,
38fae1d3 471 void *dest, size_t len, struct lttng_ust_shm_handle *handle)
852c2936 472{
34daae3e 473 struct channel_backend *chanb;
b5457df5 474 const struct lttng_ust_ring_buffer_config *config;
a6352fd4 475 ssize_t string_len, orig_offset;
852c2936 476 char *str;
b5457df5
MD
477 struct lttng_ust_ring_buffer_backend_pages_shmp *rpages;
478 struct lttng_ust_ring_buffer_backend_pages *backend_pages;
852c2936
MD
479 unsigned long sb_bindex, id;
480
34daae3e
MD
481 chanb = &shmp(handle, bufb->chan)->backend;
482 if (!chanb)
483 return -EINVAL;
484 config = &chanb->config;
0bf3c920
MD
485 if (caa_unlikely(!len))
486 return -EINVAL;
852c2936 487 offset &= chanb->buf_size - 1;
852c2936 488 orig_offset = offset;
852c2936
MD
489 id = bufb->buf_rsb.id;
490 sb_bindex = subbuffer_id_get_index(config, id);
4746ae29 491 rpages = shmp_index(handle, bufb->array, sb_bindex);
15500a1b
MD
492 if (!rpages)
493 return -EINVAL;
a6352fd4
MD
494 /*
495 * Underlying layer should never ask for reads across
496 * subbuffers.
497 */
498 CHAN_WARN_ON(chanb, offset >= chanb->buf_size);
852c2936
MD
499 CHAN_WARN_ON(chanb, config->mode == RING_BUFFER_OVERWRITE
500 && subbuffer_id_is_noref(config, id));
15500a1b
MD
501 backend_pages = shmp(handle, rpages->shmp);
502 if (!backend_pages)
503 return -EINVAL;
504 str = shmp_index(handle, backend_pages->p, offset & (chanb->subbuf_size - 1));
99b99b47
MD
505 if (caa_unlikely(!str))
506 return -EINVAL;
a6352fd4
MD
507 string_len = strnlen(str, len);
508 if (dest && len) {
509 memcpy(dest, str, string_len);
510 ((char *)dest)[0] = 0;
511 }
512 return offset - orig_offset;
852c2936 513}
852c2936
MD
514
515/**
516 * lib_ring_buffer_read_offset_address - get address of a buffer location
517 * @bufb : buffer backend
518 * @offset : offset within the buffer.
519 *
520 * Return the address where a given offset is located (for read).
521 * Should be used to get the current subbuffer header pointer. Given we know
22b22ce9
MD
522 * it's never on a page boundary, it's safe to read/write directly
523 * from/to this address, as long as the read/write is never bigger than
524 * a page size.
852c2936 525 */
b5457df5 526void *lib_ring_buffer_read_offset_address(struct lttng_ust_ring_buffer_backend *bufb,
1d498196 527 size_t offset,
38fae1d3 528 struct lttng_ust_shm_handle *handle)
852c2936 529{
b5457df5
MD
530 struct lttng_ust_ring_buffer_backend_pages_shmp *rpages;
531 struct lttng_ust_ring_buffer_backend_pages *backend_pages;
34daae3e 532 struct channel_backend *chanb;
b5457df5 533 const struct lttng_ust_ring_buffer_config *config;
852c2936
MD
534 unsigned long sb_bindex, id;
535
34daae3e
MD
536 chanb = &shmp(handle, bufb->chan)->backend;
537 if (!chanb)
538 return NULL;
539 config = &chanb->config;
852c2936 540 offset &= chanb->buf_size - 1;
852c2936
MD
541 id = bufb->buf_rsb.id;
542 sb_bindex = subbuffer_id_get_index(config, id);
4746ae29 543 rpages = shmp_index(handle, bufb->array, sb_bindex);
15500a1b
MD
544 if (!rpages)
545 return NULL;
852c2936
MD
546 CHAN_WARN_ON(chanb, config->mode == RING_BUFFER_OVERWRITE
547 && subbuffer_id_is_noref(config, id));
15500a1b
MD
548 backend_pages = shmp(handle, rpages->shmp);
549 if (!backend_pages)
550 return NULL;
551 return shmp_index(handle, backend_pages->p, offset & (chanb->subbuf_size - 1));
852c2936 552}
852c2936
MD
553
554/**
555 * lib_ring_buffer_offset_address - get address of a location within the buffer
556 * @bufb : buffer backend
557 * @offset : offset within the buffer.
558 *
559 * Return the address where a given offset is located.
560 * Should be used to get the current subbuffer header pointer. Given we know
561 * it's always at the beginning of a page, it's safe to write directly to this
562 * address, as long as the write is never bigger than a page size.
563 */
b5457df5 564void *lib_ring_buffer_offset_address(struct lttng_ust_ring_buffer_backend *bufb,
1d498196 565 size_t offset,
38fae1d3 566 struct lttng_ust_shm_handle *handle)
852c2936 567{
a6352fd4 568 size_t sbidx;
b5457df5
MD
569 struct lttng_ust_ring_buffer_backend_pages_shmp *rpages;
570 struct lttng_ust_ring_buffer_backend_pages *backend_pages;
34daae3e 571 struct channel_backend *chanb;
b5457df5 572 const struct lttng_ust_ring_buffer_config *config;
852c2936 573 unsigned long sb_bindex, id;
b5457df5 574 struct lttng_ust_ring_buffer_backend_subbuffer *sb;
852c2936 575
34daae3e
MD
576 chanb = &shmp(handle, bufb->chan)->backend;
577 if (!chanb)
578 return NULL;
579 config = &chanb->config;
852c2936
MD
580 offset &= chanb->buf_size - 1;
581 sbidx = offset >> chanb->subbuf_size_order;
34daae3e
MD
582 sb = shmp_index(handle, bufb->buf_wsb, sbidx);
583 if (!sb)
584 return NULL;
585 id = sb->id;
852c2936 586 sb_bindex = subbuffer_id_get_index(config, id);
4746ae29 587 rpages = shmp_index(handle, bufb->array, sb_bindex);
15500a1b
MD
588 if (!rpages)
589 return NULL;
852c2936
MD
590 CHAN_WARN_ON(chanb, config->mode == RING_BUFFER_OVERWRITE
591 && subbuffer_id_is_noref(config, id));
15500a1b
MD
592 backend_pages = shmp(handle, rpages->shmp);
593 if (!backend_pages)
594 return NULL;
595 return shmp_index(handle, backend_pages->p, offset & (chanb->subbuf_size - 1));
852c2936 596}
This page took 0.070571 seconds and 4 git commands to generate.