2 * ring_buffer_backend.c
4 * Copyright (C) 2005-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; only
9 * version 2.1 of the License.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include <urcu/arch.h>
27 #include <lttng/ringbuffer-config.h>
35 * lib_ring_buffer_backend_allocate - allocate a channel buffer
36 * @config: ring buffer instance configuration
37 * @buf: the buffer struct
38 * @size: total size of the buffer
39 * @num_subbuf: number of subbuffers
40 * @extra_reader_sb: need extra subbuffer for reader
43 int lib_ring_buffer_backend_allocate(const struct lttng_ust_lib_ring_buffer_config
*config
,
44 struct lttng_ust_lib_ring_buffer_backend
*bufb
,
45 size_t size
, size_t num_subbuf
,
47 struct lttng_ust_shm_handle
*handle
,
48 struct shm_object
*shmobj
)
50 struct channel_backend
*chanb
;
51 unsigned long subbuf_size
, mmap_offset
= 0;
52 unsigned long num_subbuf_alloc
;
56 chanb
= &shmp(handle
, bufb
->chan
)->backend
;
60 subbuf_size
= chanb
->subbuf_size
;
61 num_subbuf_alloc
= num_subbuf
;
66 page_size
= sysconf(_SC_PAGE_SIZE
);
71 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_pages_shmp
));
72 set_shmp(bufb
->array
, zalloc_shm(shmobj
,
73 sizeof(struct lttng_ust_lib_ring_buffer_backend_pages_shmp
) * num_subbuf_alloc
));
74 if (caa_unlikely(!shmp(handle
, bufb
->array
)))
78 * This is the largest element (the buffer pages) which needs to
79 * be aligned on page size.
81 align_shm(shmobj
, page_size
);
82 set_shmp(bufb
->memory_map
, zalloc_shm(shmobj
,
83 subbuf_size
* num_subbuf_alloc
));
84 if (caa_unlikely(!shmp(handle
, bufb
->memory_map
)))
85 goto memory_map_error
;
87 /* Allocate backend pages array elements */
88 for (i
= 0; i
< num_subbuf_alloc
; i
++) {
89 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_pages
));
90 set_shmp(shmp_index(handle
, bufb
->array
, i
)->shmp
,
92 sizeof(struct lttng_ust_lib_ring_buffer_backend_pages
)));
93 if (!shmp(handle
, shmp_index(handle
, bufb
->array
, i
)->shmp
))
97 /* Allocate write-side subbuffer table */
98 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_subbuffer
));
99 set_shmp(bufb
->buf_wsb
, zalloc_shm(shmobj
,
100 sizeof(struct lttng_ust_lib_ring_buffer_backend_subbuffer
)
102 if (caa_unlikely(!shmp(handle
, bufb
->buf_wsb
)))
105 for (i
= 0; i
< num_subbuf
; i
++) {
106 struct lttng_ust_lib_ring_buffer_backend_subbuffer
*sb
;
108 sb
= shmp_index(handle
, bufb
->buf_wsb
, i
);
111 sb
->id
= subbuffer_id(config
, 0, 1, i
);
114 /* Assign read-side subbuffer table */
116 bufb
->buf_rsb
.id
= subbuffer_id(config
, 0, 1,
117 num_subbuf_alloc
- 1);
119 bufb
->buf_rsb
.id
= subbuffer_id(config
, 0, 1, 0);
121 /* Allocate subbuffer packet counter table */
122 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_counts
));
123 set_shmp(bufb
->buf_cnt
, zalloc_shm(shmobj
,
124 sizeof(struct lttng_ust_lib_ring_buffer_backend_counts
)
126 if (caa_unlikely(!shmp(handle
, bufb
->buf_cnt
)))
129 /* Assign pages to page index */
130 for (i
= 0; i
< num_subbuf_alloc
; i
++) {
131 struct lttng_ust_lib_ring_buffer_backend_pages_shmp
*sbp
;
132 struct lttng_ust_lib_ring_buffer_backend_pages
*pages
;
135 ref
.index
= bufb
->memory_map
._ref
.index
;
136 ref
.offset
= bufb
->memory_map
._ref
.offset
;
137 ref
.offset
+= i
* subbuf_size
;
139 sbp
= shmp_index(handle
, bufb
->array
, i
);
142 pages
= shmp(handle
, sbp
->shmp
);
145 set_shmp(pages
->p
, ref
);
146 if (config
->output
== RING_BUFFER_MMAP
) {
147 pages
->mmap_offset
= mmap_offset
;
148 mmap_offset
+= subbuf_size
;
154 /* bufb->buf_wsb will be freed by shm teardown */
156 /* bufb->array[i] will be freed by shm teardown */
158 /* bufb->array will be freed by shm teardown */
164 int lib_ring_buffer_backend_create(struct lttng_ust_lib_ring_buffer_backend
*bufb
,
165 struct channel_backend
*chanb
, int cpu
,
166 struct lttng_ust_shm_handle
*handle
,
167 struct shm_object
*shmobj
)
169 const struct lttng_ust_lib_ring_buffer_config
*config
= &chanb
->config
;
171 set_shmp(bufb
->chan
, handle
->chan
._ref
);
174 return lib_ring_buffer_backend_allocate(config
, bufb
, chanb
->buf_size
,
176 chanb
->extra_reader_sb
,
180 void lib_ring_buffer_backend_reset(struct lttng_ust_lib_ring_buffer_backend
*bufb
,
181 struct lttng_ust_shm_handle
*handle
)
183 struct channel_backend
*chanb
;
184 const struct lttng_ust_lib_ring_buffer_config
*config
;
185 unsigned long num_subbuf_alloc
;
188 chanb
= &shmp(handle
, bufb
->chan
)->backend
;
191 config
= &chanb
->config
;
193 num_subbuf_alloc
= chanb
->num_subbuf
;
194 if (chanb
->extra_reader_sb
)
197 for (i
= 0; i
< chanb
->num_subbuf
; i
++) {
198 struct lttng_ust_lib_ring_buffer_backend_subbuffer
*sb
;
200 sb
= shmp_index(handle
, bufb
->buf_wsb
, i
);
203 sb
->id
= subbuffer_id(config
, 0, 1, i
);
205 if (chanb
->extra_reader_sb
)
206 bufb
->buf_rsb
.id
= subbuffer_id(config
, 0, 1,
207 num_subbuf_alloc
- 1);
209 bufb
->buf_rsb
.id
= subbuffer_id(config
, 0, 1, 0);
211 for (i
= 0; i
< num_subbuf_alloc
; i
++) {
212 struct lttng_ust_lib_ring_buffer_backend_pages_shmp
*sbp
;
213 struct lttng_ust_lib_ring_buffer_backend_pages
*pages
;
215 sbp
= shmp_index(handle
, bufb
->array
, i
);
218 pages
= shmp(handle
, sbp
->shmp
);
221 /* Don't reset mmap_offset */
222 v_set(config
, &pages
->records_commit
, 0);
223 v_set(config
, &pages
->records_unread
, 0);
224 pages
->data_size
= 0;
225 /* Don't reset backend page and virt addresses */
227 /* Don't reset num_pages_per_subbuf, cpu, allocated */
228 v_set(config
, &bufb
->records_read
, 0);
232 * The frontend is responsible for also calling ring_buffer_backend_reset for
233 * each buffer when calling channel_backend_reset.
235 void channel_backend_reset(struct channel_backend
*chanb
)
237 struct channel
*chan
= caa_container_of(chanb
, struct channel
, backend
);
238 const struct lttng_ust_lib_ring_buffer_config
*config
= &chanb
->config
;
241 * Don't reset buf_size, subbuf_size, subbuf_size_order,
242 * num_subbuf_order, buf_size_order, extra_reader_sb, num_subbuf,
243 * priv, notifiers, config, cpumask and name.
245 chanb
->start_tsc
= config
->cb
.ring_buffer_clock_read(chan
);
249 * channel_backend_init - initialize a channel backend
250 * @chanb: channel backend
251 * @name: channel name
252 * @config: client ring buffer configuration
253 * @parent: dentry of parent directory, %NULL for root directory
254 * @subbuf_size: size of sub-buffers (> page size, power of 2)
255 * @num_subbuf: number of sub-buffers (power of 2)
256 * @lttng_ust_shm_handle: shared memory handle
257 * @stream_fds: stream file descriptors.
259 * Returns channel pointer if successful, %NULL otherwise.
261 * Creates per-cpu channel buffers using the sizes and attributes
262 * specified. The created channel buffer files will be named
263 * name_0...name_N-1. File permissions will be %S_IRUSR.
265 * Called with CPU hotplug disabled.
267 int channel_backend_init(struct channel_backend
*chanb
,
269 const struct lttng_ust_lib_ring_buffer_config
*config
,
270 size_t subbuf_size
, size_t num_subbuf
,
271 struct lttng_ust_shm_handle
*handle
,
272 const int *stream_fds
)
274 struct channel
*chan
= caa_container_of(chanb
, struct channel
, backend
);
277 size_t shmsize
= 0, num_subbuf_alloc
;
283 page_size
= sysconf(_SC_PAGE_SIZE
);
284 if (page_size
<= 0) {
287 /* Check that the subbuffer size is larger than a page. */
288 if (subbuf_size
< page_size
)
292 * Make sure the number of subbuffers and subbuffer size are
293 * power of 2, and nonzero.
295 if (!subbuf_size
|| (subbuf_size
& (subbuf_size
- 1)))
297 if (!num_subbuf
|| (num_subbuf
& (num_subbuf
- 1)))
300 * Overwrite mode buffers require at least 2 subbuffers per
303 if (config
->mode
== RING_BUFFER_OVERWRITE
&& num_subbuf
< 2)
306 ret
= subbuffer_id_check_index(config
, num_subbuf
);
310 chanb
->buf_size
= num_subbuf
* subbuf_size
;
311 chanb
->subbuf_size
= subbuf_size
;
312 chanb
->buf_size_order
= get_count_order(chanb
->buf_size
);
313 chanb
->subbuf_size_order
= get_count_order(subbuf_size
);
314 chanb
->num_subbuf_order
= get_count_order(num_subbuf
);
315 chanb
->extra_reader_sb
=
316 (config
->mode
== RING_BUFFER_OVERWRITE
) ? 1 : 0;
317 chanb
->num_subbuf
= num_subbuf
;
318 strncpy(chanb
->name
, name
, NAME_MAX
);
319 chanb
->name
[NAME_MAX
- 1] = '\0';
320 memcpy(&chanb
->config
, config
, sizeof(*config
));
322 /* Per-cpu buffer size: control (prior to backend) */
323 shmsize
= offset_align(shmsize
, __alignof__(struct lttng_ust_lib_ring_buffer
));
324 shmsize
+= sizeof(struct lttng_ust_lib_ring_buffer
);
325 shmsize
+= offset_align(shmsize
, __alignof__(struct commit_counters_hot
));
326 shmsize
+= sizeof(struct commit_counters_hot
) * num_subbuf
;
327 shmsize
+= offset_align(shmsize
, __alignof__(struct commit_counters_cold
));
328 shmsize
+= sizeof(struct commit_counters_cold
) * num_subbuf
;
329 /* Sampled timestamp end */
330 shmsize
+= offset_align(shmsize
, __alignof__(uint64_t));
331 shmsize
+= sizeof(uint64_t) * num_subbuf
;
333 /* Per-cpu buffer size: backend */
334 /* num_subbuf + 1 is the worse case */
335 num_subbuf_alloc
= num_subbuf
+ 1;
336 shmsize
+= offset_align(shmsize
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_pages_shmp
));
337 shmsize
+= sizeof(struct lttng_ust_lib_ring_buffer_backend_pages_shmp
) * num_subbuf_alloc
;
338 shmsize
+= offset_align(shmsize
, page_size
);
339 shmsize
+= subbuf_size
* num_subbuf_alloc
;
340 shmsize
+= offset_align(shmsize
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_pages
));
341 shmsize
+= sizeof(struct lttng_ust_lib_ring_buffer_backend_pages
) * num_subbuf_alloc
;
342 shmsize
+= offset_align(shmsize
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_subbuffer
));
343 shmsize
+= sizeof(struct lttng_ust_lib_ring_buffer_backend_subbuffer
) * num_subbuf
;
344 shmsize
+= offset_align(shmsize
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_counts
));
345 shmsize
+= sizeof(struct lttng_ust_lib_ring_buffer_backend_counts
) * num_subbuf
;
347 if (config
->alloc
== RING_BUFFER_ALLOC_PER_CPU
) {
348 struct lttng_ust_lib_ring_buffer
*buf
;
350 * We need to allocate for all possible cpus.
352 for_each_possible_cpu(i
) {
353 struct shm_object
*shmobj
;
355 shmobj
= shm_object_table_alloc(handle
->table
, shmsize
,
356 SHM_OBJECT_SHM
, stream_fds
[i
], i
);
359 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer
));
360 set_shmp(chanb
->buf
[i
].shmp
, zalloc_shm(shmobj
, sizeof(struct lttng_ust_lib_ring_buffer
)));
361 buf
= shmp(handle
, chanb
->buf
[i
].shmp
);
364 set_shmp(buf
->self
, chanb
->buf
[i
].shmp
._ref
);
365 ret
= lib_ring_buffer_create(buf
, chanb
, i
,
368 goto free_bufs
; /* cpu hotplug locked */
371 struct shm_object
*shmobj
;
372 struct lttng_ust_lib_ring_buffer
*buf
;
374 shmobj
= shm_object_table_alloc(handle
->table
, shmsize
,
375 SHM_OBJECT_SHM
, stream_fds
[0], -1);
378 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer
));
379 set_shmp(chanb
->buf
[0].shmp
, zalloc_shm(shmobj
, sizeof(struct lttng_ust_lib_ring_buffer
)));
380 buf
= shmp(handle
, chanb
->buf
[0].shmp
);
383 set_shmp(buf
->self
, chanb
->buf
[0].shmp
._ref
);
384 ret
= lib_ring_buffer_create(buf
, chanb
, -1,
389 chanb
->start_tsc
= config
->cb
.ring_buffer_clock_read(chan
);
394 /* We only free the buffer data upon shm teardown */
400 * channel_backend_free - destroy the channel
403 * Destroy all channel buffers and frees the channel.
405 void channel_backend_free(struct channel_backend
*chanb
,
406 struct lttng_ust_shm_handle
*handle
)
408 /* SHM teardown takes care of everything */
412 * lib_ring_buffer_read - read data from ring_buffer_buffer.
413 * @bufb : buffer backend
414 * @offset : offset within the buffer
415 * @dest : destination address
416 * @len : length to copy to destination
418 * Should be protected by get_subbuf/put_subbuf.
419 * Returns the length copied.
421 size_t lib_ring_buffer_read(struct lttng_ust_lib_ring_buffer_backend
*bufb
, size_t offset
,
422 void *dest
, size_t len
, struct lttng_ust_shm_handle
*handle
)
424 struct channel_backend
*chanb
;
425 const struct lttng_ust_lib_ring_buffer_config
*config
;
427 struct lttng_ust_lib_ring_buffer_backend_pages_shmp
*rpages
;
428 struct lttng_ust_lib_ring_buffer_backend_pages
*backend_pages
;
429 unsigned long sb_bindex
, id
;
432 chanb
= &shmp(handle
, bufb
->chan
)->backend
;
435 config
= &chanb
->config
;
437 offset
&= chanb
->buf_size
- 1;
439 if (caa_unlikely(!len
))
441 id
= bufb
->buf_rsb
.id
;
442 sb_bindex
= subbuffer_id_get_index(config
, id
);
443 rpages
= shmp_index(handle
, bufb
->array
, sb_bindex
);
447 * Underlying layer should never ask for reads across
450 CHAN_WARN_ON(chanb
, offset
>= chanb
->buf_size
);
451 CHAN_WARN_ON(chanb
, config
->mode
== RING_BUFFER_OVERWRITE
452 && subbuffer_id_is_noref(config
, id
));
453 backend_pages
= shmp(handle
, rpages
->shmp
);
456 src
= shmp_index(handle
, backend_pages
->p
, offset
& (chanb
->subbuf_size
- 1));
457 if (caa_unlikely(!src
))
459 memcpy(dest
, src
, len
);
464 * lib_ring_buffer_read_cstr - read a C-style string from ring_buffer.
465 * @bufb : buffer backend
466 * @offset : offset within the buffer
467 * @dest : destination address
468 * @len : destination's length
470 * Return string's length, or -EINVAL on error.
471 * Should be protected by get_subbuf/put_subbuf.
472 * Destination length should be at least 1 to hold '\0'.
474 int lib_ring_buffer_read_cstr(struct lttng_ust_lib_ring_buffer_backend
*bufb
, size_t offset
,
475 void *dest
, size_t len
, struct lttng_ust_shm_handle
*handle
)
477 struct channel_backend
*chanb
;
478 const struct lttng_ust_lib_ring_buffer_config
*config
;
479 ssize_t string_len
, orig_offset
;
481 struct lttng_ust_lib_ring_buffer_backend_pages_shmp
*rpages
;
482 struct lttng_ust_lib_ring_buffer_backend_pages
*backend_pages
;
483 unsigned long sb_bindex
, id
;
485 chanb
= &shmp(handle
, bufb
->chan
)->backend
;
488 config
= &chanb
->config
;
489 if (caa_unlikely(!len
))
491 offset
&= chanb
->buf_size
- 1;
492 orig_offset
= offset
;
493 id
= bufb
->buf_rsb
.id
;
494 sb_bindex
= subbuffer_id_get_index(config
, id
);
495 rpages
= shmp_index(handle
, bufb
->array
, sb_bindex
);
499 * Underlying layer should never ask for reads across
502 CHAN_WARN_ON(chanb
, offset
>= chanb
->buf_size
);
503 CHAN_WARN_ON(chanb
, config
->mode
== RING_BUFFER_OVERWRITE
504 && subbuffer_id_is_noref(config
, id
));
505 backend_pages
= shmp(handle
, rpages
->shmp
);
508 str
= shmp_index(handle
, backend_pages
->p
, offset
& (chanb
->subbuf_size
- 1));
509 if (caa_unlikely(!str
))
511 string_len
= strnlen(str
, len
);
513 memcpy(dest
, str
, string_len
);
514 ((char *)dest
)[0] = 0;
516 return offset
- orig_offset
;
520 * lib_ring_buffer_read_offset_address - get address of a buffer location
521 * @bufb : buffer backend
522 * @offset : offset within the buffer.
524 * Return the address where a given offset is located (for read).
525 * Should be used to get the current subbuffer header pointer. Given we know
526 * it's never on a page boundary, it's safe to read/write directly
527 * from/to this address, as long as the read/write is never bigger than
530 void *lib_ring_buffer_read_offset_address(struct lttng_ust_lib_ring_buffer_backend
*bufb
,
532 struct lttng_ust_shm_handle
*handle
)
534 struct lttng_ust_lib_ring_buffer_backend_pages_shmp
*rpages
;
535 struct lttng_ust_lib_ring_buffer_backend_pages
*backend_pages
;
536 struct channel_backend
*chanb
;
537 const struct lttng_ust_lib_ring_buffer_config
*config
;
538 unsigned long sb_bindex
, id
;
540 chanb
= &shmp(handle
, bufb
->chan
)->backend
;
543 config
= &chanb
->config
;
544 offset
&= chanb
->buf_size
- 1;
545 id
= bufb
->buf_rsb
.id
;
546 sb_bindex
= subbuffer_id_get_index(config
, id
);
547 rpages
= shmp_index(handle
, bufb
->array
, sb_bindex
);
550 CHAN_WARN_ON(chanb
, config
->mode
== RING_BUFFER_OVERWRITE
551 && subbuffer_id_is_noref(config
, id
));
552 backend_pages
= shmp(handle
, rpages
->shmp
);
555 return shmp_index(handle
, backend_pages
->p
, offset
& (chanb
->subbuf_size
- 1));
559 * lib_ring_buffer_offset_address - get address of a location within the buffer
560 * @bufb : buffer backend
561 * @offset : offset within the buffer.
563 * Return the address where a given offset is located.
564 * Should be used to get the current subbuffer header pointer. Given we know
565 * it's always at the beginning of a page, it's safe to write directly to this
566 * address, as long as the write is never bigger than a page size.
568 void *lib_ring_buffer_offset_address(struct lttng_ust_lib_ring_buffer_backend
*bufb
,
570 struct lttng_ust_shm_handle
*handle
)
573 struct lttng_ust_lib_ring_buffer_backend_pages_shmp
*rpages
;
574 struct lttng_ust_lib_ring_buffer_backend_pages
*backend_pages
;
575 struct channel_backend
*chanb
;
576 const struct lttng_ust_lib_ring_buffer_config
*config
;
577 unsigned long sb_bindex
, id
;
578 struct lttng_ust_lib_ring_buffer_backend_subbuffer
*sb
;
580 chanb
= &shmp(handle
, bufb
->chan
)->backend
;
583 config
= &chanb
->config
;
584 offset
&= chanb
->buf_size
- 1;
585 sbidx
= offset
>> chanb
->subbuf_size_order
;
586 sb
= shmp_index(handle
, bufb
->buf_wsb
, sbidx
);
590 sb_bindex
= subbuffer_id_get_index(config
, id
);
591 rpages
= shmp_index(handle
, bufb
->array
, sb_bindex
);
594 CHAN_WARN_ON(chanb
, config
->mode
== RING_BUFFER_OVERWRITE
595 && subbuffer_id_is_noref(config
, id
));
596 backend_pages
= shmp(handle
, rpages
->shmp
);
599 return shmp_index(handle
, backend_pages
->p
, offset
& (chanb
->subbuf_size
- 1));