2 * ring_buffer_backend.c
4 * Copyright (C) 2005-2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * Dual LGPL v2.1/GPL v2 license.
10 #include <urcu/arch.h>
13 #include <lttng/ringbuffer-config.h>
21 * lib_ring_buffer_backend_allocate - allocate a channel buffer
22 * @config: ring buffer instance configuration
23 * @buf: the buffer struct
24 * @size: total size of the buffer
25 * @num_subbuf: number of subbuffers
26 * @extra_reader_sb: need extra subbuffer for reader
29 int lib_ring_buffer_backend_allocate(const struct lttng_ust_lib_ring_buffer_config
*config
,
30 struct lttng_ust_lib_ring_buffer_backend
*bufb
,
31 size_t size
, size_t num_subbuf
,
33 struct lttng_ust_shm_handle
*handle
,
34 struct shm_object
*shmobj
)
36 struct channel_backend
*chanb
= &shmp(handle
, bufb
->chan
)->backend
;
37 unsigned long subbuf_size
, mmap_offset
= 0;
38 unsigned long num_subbuf_alloc
;
41 subbuf_size
= chanb
->subbuf_size
;
42 num_subbuf_alloc
= num_subbuf
;
47 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_pages_shmp
));
48 set_shmp(bufb
->array
, zalloc_shm(shmobj
,
49 sizeof(struct lttng_ust_lib_ring_buffer_backend_pages_shmp
) * num_subbuf_alloc
));
50 if (caa_unlikely(!shmp(handle
, bufb
->array
)))
54 * This is the largest element (the buffer pages) which needs to
55 * be aligned on PAGE_SIZE.
57 align_shm(shmobj
, PAGE_SIZE
);
58 set_shmp(bufb
->memory_map
, zalloc_shm(shmobj
,
59 subbuf_size
* num_subbuf_alloc
));
60 if (caa_unlikely(!shmp(handle
, bufb
->memory_map
)))
61 goto memory_map_error
;
63 /* Allocate backend pages array elements */
64 for (i
= 0; i
< num_subbuf_alloc
; i
++) {
65 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_pages
));
66 set_shmp(shmp_index(handle
, bufb
->array
, i
)->shmp
,
68 sizeof(struct lttng_ust_lib_ring_buffer_backend_pages
)));
69 if (!shmp(handle
, shmp_index(handle
, bufb
->array
, i
)->shmp
))
73 /* Allocate write-side subbuffer table */
74 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_subbuffer
));
75 set_shmp(bufb
->buf_wsb
, zalloc_shm(shmobj
,
76 sizeof(struct lttng_ust_lib_ring_buffer_backend_subbuffer
)
78 if (caa_unlikely(!shmp(handle
, bufb
->buf_wsb
)))
81 for (i
= 0; i
< num_subbuf
; i
++)
82 shmp_index(handle
, bufb
->buf_wsb
, i
)->id
= subbuffer_id(config
, 0, 1, i
);
84 /* Assign read-side subbuffer table */
86 bufb
->buf_rsb
.id
= subbuffer_id(config
, 0, 1,
87 num_subbuf_alloc
- 1);
89 bufb
->buf_rsb
.id
= subbuffer_id(config
, 0, 1, 0);
91 /* Assign pages to page index */
92 for (i
= 0; i
< num_subbuf_alloc
; i
++) {
95 ref
.index
= bufb
->memory_map
._ref
.index
;
96 ref
.offset
= bufb
->memory_map
._ref
.offset
;
97 ref
.offset
+= i
* subbuf_size
;
99 set_shmp(shmp(handle
, shmp_index(handle
, bufb
->array
, i
)->shmp
)->p
,
101 if (config
->output
== RING_BUFFER_MMAP
) {
102 shmp(handle
, shmp_index(handle
, bufb
->array
, i
)->shmp
)->mmap_offset
= mmap_offset
;
103 mmap_offset
+= subbuf_size
;
110 /* bufb->array[i] will be freed by shm teardown */
112 /* bufb->array will be freed by shm teardown */
117 int lib_ring_buffer_backend_create(struct lttng_ust_lib_ring_buffer_backend
*bufb
,
118 struct channel_backend
*chanb
, int cpu
,
119 struct lttng_ust_shm_handle
*handle
,
120 struct shm_object
*shmobj
)
122 const struct lttng_ust_lib_ring_buffer_config
*config
= &chanb
->config
;
124 set_shmp(bufb
->chan
, handle
->chan
._ref
);
127 return lib_ring_buffer_backend_allocate(config
, bufb
, chanb
->buf_size
,
129 chanb
->extra_reader_sb
,
133 void lib_ring_buffer_backend_reset(struct lttng_ust_lib_ring_buffer_backend
*bufb
,
134 struct lttng_ust_shm_handle
*handle
)
136 struct channel_backend
*chanb
= &shmp(handle
, bufb
->chan
)->backend
;
137 const struct lttng_ust_lib_ring_buffer_config
*config
= &chanb
->config
;
138 unsigned long num_subbuf_alloc
;
141 num_subbuf_alloc
= chanb
->num_subbuf
;
142 if (chanb
->extra_reader_sb
)
145 for (i
= 0; i
< chanb
->num_subbuf
; i
++)
146 shmp_index(handle
, bufb
->buf_wsb
, i
)->id
= subbuffer_id(config
, 0, 1, i
);
147 if (chanb
->extra_reader_sb
)
148 bufb
->buf_rsb
.id
= subbuffer_id(config
, 0, 1,
149 num_subbuf_alloc
- 1);
151 bufb
->buf_rsb
.id
= subbuffer_id(config
, 0, 1, 0);
153 for (i
= 0; i
< num_subbuf_alloc
; i
++) {
154 /* Don't reset mmap_offset */
155 v_set(config
, &shmp(handle
, shmp_index(handle
, bufb
->array
, i
)->shmp
)->records_commit
, 0);
156 v_set(config
, &shmp(handle
, shmp_index(handle
, bufb
->array
, i
)->shmp
)->records_unread
, 0);
157 shmp(handle
, shmp_index(handle
, bufb
->array
, i
)->shmp
)->data_size
= 0;
158 /* Don't reset backend page and virt addresses */
160 /* Don't reset num_pages_per_subbuf, cpu, allocated */
161 v_set(config
, &bufb
->records_read
, 0);
165 * The frontend is responsible for also calling ring_buffer_backend_reset for
166 * each buffer when calling channel_backend_reset.
168 void channel_backend_reset(struct channel_backend
*chanb
)
170 struct channel
*chan
= caa_container_of(chanb
, struct channel
, backend
);
171 const struct lttng_ust_lib_ring_buffer_config
*config
= &chanb
->config
;
174 * Don't reset buf_size, subbuf_size, subbuf_size_order,
175 * num_subbuf_order, buf_size_order, extra_reader_sb, num_subbuf,
176 * priv, notifiers, config, cpumask and name.
178 chanb
->start_tsc
= config
->cb
.ring_buffer_clock_read(chan
);
182 * channel_backend_init - initialize a channel backend
183 * @chanb: channel backend
184 * @name: channel name
185 * @config: client ring buffer configuration
186 * @parent: dentry of parent directory, %NULL for root directory
187 * @subbuf_size: size of sub-buffers (> PAGE_SIZE, power of 2)
188 * @num_subbuf: number of sub-buffers (power of 2)
189 * @lttng_ust_shm_handle: shared memory handle
191 * Returns channel pointer if successful, %NULL otherwise.
193 * Creates per-cpu channel buffers using the sizes and attributes
194 * specified. The created channel buffer files will be named
195 * name_0...name_N-1. File permissions will be %S_IRUSR.
197 * Called with CPU hotplug disabled.
199 int channel_backend_init(struct channel_backend
*chanb
,
201 const struct lttng_ust_lib_ring_buffer_config
*config
,
202 size_t subbuf_size
, size_t num_subbuf
,
203 struct lttng_ust_shm_handle
*handle
)
205 struct channel
*chan
= caa_container_of(chanb
, struct channel
, backend
);
208 size_t shmsize
= 0, num_subbuf_alloc
;
213 if (!(subbuf_size
&& num_subbuf
))
216 /* Check that the subbuffer size is larger than a page. */
217 if (subbuf_size
< PAGE_SIZE
)
221 * Make sure the number of subbuffers and subbuffer size are power of 2.
223 if (hweight32(subbuf_size
) != 1)
225 if (hweight32(num_subbuf
) != 1)
228 ret
= subbuffer_id_check_index(config
, num_subbuf
);
232 chanb
->buf_size
= num_subbuf
* subbuf_size
;
233 chanb
->subbuf_size
= subbuf_size
;
234 chanb
->buf_size_order
= get_count_order(chanb
->buf_size
);
235 chanb
->subbuf_size_order
= get_count_order(subbuf_size
);
236 chanb
->num_subbuf_order
= get_count_order(num_subbuf
);
237 chanb
->extra_reader_sb
=
238 (config
->mode
== RING_BUFFER_OVERWRITE
) ? 1 : 0;
239 chanb
->num_subbuf
= num_subbuf
;
240 strncpy(chanb
->name
, name
, NAME_MAX
);
241 chanb
->name
[NAME_MAX
- 1] = '\0';
242 memcpy(&chanb
->config
, config
, sizeof(*config
));
244 /* Per-cpu buffer size: control (prior to backend) */
245 shmsize
= offset_align(shmsize
, __alignof__(struct lttng_ust_lib_ring_buffer
));
246 shmsize
+= sizeof(struct lttng_ust_lib_ring_buffer
);
248 /* Per-cpu buffer size: backend */
249 /* num_subbuf + 1 is the worse case */
250 num_subbuf_alloc
= num_subbuf
+ 1;
251 shmsize
+= offset_align(shmsize
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_pages_shmp
));
252 shmsize
+= sizeof(struct lttng_ust_lib_ring_buffer_backend_pages_shmp
) * num_subbuf_alloc
;
253 shmsize
+= offset_align(shmsize
, PAGE_SIZE
);
254 shmsize
+= subbuf_size
* num_subbuf_alloc
;
255 shmsize
+= offset_align(shmsize
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_pages
));
256 shmsize
+= sizeof(struct lttng_ust_lib_ring_buffer_backend_pages
) * num_subbuf_alloc
;
257 shmsize
+= offset_align(shmsize
, __alignof__(struct lttng_ust_lib_ring_buffer_backend_subbuffer
));
258 shmsize
+= sizeof(struct lttng_ust_lib_ring_buffer_backend_subbuffer
) * num_subbuf
;
259 /* Per-cpu buffer size: control (after backend) */
260 shmsize
+= offset_align(shmsize
, __alignof__(struct commit_counters_hot
));
261 shmsize
+= sizeof(struct commit_counters_hot
) * num_subbuf
;
262 shmsize
+= offset_align(shmsize
, __alignof__(struct commit_counters_cold
));
263 shmsize
+= sizeof(struct commit_counters_cold
) * num_subbuf
;
265 if (config
->alloc
== RING_BUFFER_ALLOC_PER_CPU
) {
266 struct lttng_ust_lib_ring_buffer
*buf
;
268 * We need to allocate for all possible cpus.
270 for_each_possible_cpu(i
) {
271 struct shm_object
*shmobj
;
273 shmobj
= shm_object_table_append(handle
->table
, shmsize
);
276 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer
));
277 set_shmp(chanb
->buf
[i
].shmp
, zalloc_shm(shmobj
, sizeof(struct lttng_ust_lib_ring_buffer
)));
278 buf
= shmp(handle
, chanb
->buf
[i
].shmp
);
281 set_shmp(buf
->self
, chanb
->buf
[i
].shmp
._ref
);
282 ret
= lib_ring_buffer_create(buf
, chanb
, i
,
285 goto free_bufs
; /* cpu hotplug locked */
288 struct shm_object
*shmobj
;
289 struct lttng_ust_lib_ring_buffer
*buf
;
291 shmobj
= shm_object_table_append(handle
->table
, shmsize
);
294 align_shm(shmobj
, __alignof__(struct lttng_ust_lib_ring_buffer
));
295 set_shmp(chanb
->buf
[0].shmp
, zalloc_shm(shmobj
, sizeof(struct lttng_ust_lib_ring_buffer
)));
296 buf
= shmp(handle
, chanb
->buf
[0].shmp
);
299 set_shmp(buf
->self
, chanb
->buf
[0].shmp
._ref
);
300 ret
= lib_ring_buffer_create(buf
, chanb
, -1,
305 chanb
->start_tsc
= config
->cb
.ring_buffer_clock_read(chan
);
310 /* We only free the buffer data upon shm teardown */
316 * channel_backend_free - destroy the channel
319 * Destroy all channel buffers and frees the channel.
321 void channel_backend_free(struct channel_backend
*chanb
,
322 struct lttng_ust_shm_handle
*handle
)
324 /* SHM teardown takes care of everything */
328 * lib_ring_buffer_read - read data from ring_buffer_buffer.
329 * @bufb : buffer backend
330 * @offset : offset within the buffer
331 * @dest : destination address
332 * @len : length to copy to destination
334 * Should be protected by get_subbuf/put_subbuf.
335 * Returns the length copied.
337 size_t lib_ring_buffer_read(struct lttng_ust_lib_ring_buffer_backend
*bufb
, size_t offset
,
338 void *dest
, size_t len
, struct lttng_ust_shm_handle
*handle
)
340 struct channel_backend
*chanb
= &shmp(handle
, bufb
->chan
)->backend
;
341 const struct lttng_ust_lib_ring_buffer_config
*config
= &chanb
->config
;
343 struct lttng_ust_lib_ring_buffer_backend_pages_shmp
*rpages
;
344 unsigned long sb_bindex
, id
;
347 offset
&= chanb
->buf_size
- 1;
349 if (caa_unlikely(!len
))
351 id
= bufb
->buf_rsb
.id
;
352 sb_bindex
= subbuffer_id_get_index(config
, id
);
353 rpages
= shmp_index(handle
, bufb
->array
, sb_bindex
);
355 * Underlying layer should never ask for reads across
358 CHAN_WARN_ON(chanb
, offset
>= chanb
->buf_size
);
359 CHAN_WARN_ON(chanb
, config
->mode
== RING_BUFFER_OVERWRITE
360 && subbuffer_id_is_noref(config
, id
));
361 memcpy(dest
, shmp_index(handle
, shmp(handle
, rpages
->shmp
)->p
, offset
& (chanb
->subbuf_size
- 1)), len
);
366 * lib_ring_buffer_read_cstr - read a C-style string from ring_buffer.
367 * @bufb : buffer backend
368 * @offset : offset within the buffer
369 * @dest : destination address
370 * @len : destination's length
372 * return string's length
373 * Should be protected by get_subbuf/put_subbuf.
375 int lib_ring_buffer_read_cstr(struct lttng_ust_lib_ring_buffer_backend
*bufb
, size_t offset
,
376 void *dest
, size_t len
, struct lttng_ust_shm_handle
*handle
)
378 struct channel_backend
*chanb
= &shmp(handle
, bufb
->chan
)->backend
;
379 const struct lttng_ust_lib_ring_buffer_config
*config
= &chanb
->config
;
380 ssize_t string_len
, orig_offset
;
382 struct lttng_ust_lib_ring_buffer_backend_pages_shmp
*rpages
;
383 unsigned long sb_bindex
, id
;
385 offset
&= chanb
->buf_size
- 1;
386 orig_offset
= offset
;
387 id
= bufb
->buf_rsb
.id
;
388 sb_bindex
= subbuffer_id_get_index(config
, id
);
389 rpages
= shmp_index(handle
, bufb
->array
, sb_bindex
);
391 * Underlying layer should never ask for reads across
394 CHAN_WARN_ON(chanb
, offset
>= chanb
->buf_size
);
395 CHAN_WARN_ON(chanb
, config
->mode
== RING_BUFFER_OVERWRITE
396 && subbuffer_id_is_noref(config
, id
));
397 str
= shmp_index(handle
, shmp(handle
, rpages
->shmp
)->p
, offset
& (chanb
->subbuf_size
- 1));
398 string_len
= strnlen(str
, len
);
400 memcpy(dest
, str
, string_len
);
401 ((char *)dest
)[0] = 0;
403 return offset
- orig_offset
;
407 * lib_ring_buffer_read_offset_address - get address of a buffer location
408 * @bufb : buffer backend
409 * @offset : offset within the buffer.
411 * Return the address where a given offset is located (for read).
412 * Should be used to get the current subbuffer header pointer. Given we know
413 * it's never on a page boundary, it's safe to write directly to this address,
414 * as long as the write is never bigger than a page size.
416 void *lib_ring_buffer_read_offset_address(struct lttng_ust_lib_ring_buffer_backend
*bufb
,
418 struct lttng_ust_shm_handle
*handle
)
420 struct lttng_ust_lib_ring_buffer_backend_pages_shmp
*rpages
;
421 struct channel_backend
*chanb
= &shmp(handle
, bufb
->chan
)->backend
;
422 const struct lttng_ust_lib_ring_buffer_config
*config
= &chanb
->config
;
423 unsigned long sb_bindex
, id
;
425 offset
&= chanb
->buf_size
- 1;
426 id
= bufb
->buf_rsb
.id
;
427 sb_bindex
= subbuffer_id_get_index(config
, id
);
428 rpages
= shmp_index(handle
, bufb
->array
, sb_bindex
);
429 CHAN_WARN_ON(chanb
, config
->mode
== RING_BUFFER_OVERWRITE
430 && subbuffer_id_is_noref(config
, id
));
431 return shmp_index(handle
, shmp(handle
, rpages
->shmp
)->p
, offset
& (chanb
->subbuf_size
- 1));
435 * lib_ring_buffer_offset_address - get address of a location within the buffer
436 * @bufb : buffer backend
437 * @offset : offset within the buffer.
439 * Return the address where a given offset is located.
440 * Should be used to get the current subbuffer header pointer. Given we know
441 * it's always at the beginning of a page, it's safe to write directly to this
442 * address, as long as the write is never bigger than a page size.
444 void *lib_ring_buffer_offset_address(struct lttng_ust_lib_ring_buffer_backend
*bufb
,
446 struct lttng_ust_shm_handle
*handle
)
449 struct lttng_ust_lib_ring_buffer_backend_pages_shmp
*rpages
;
450 struct channel_backend
*chanb
= &shmp(handle
, bufb
->chan
)->backend
;
451 const struct lttng_ust_lib_ring_buffer_config
*config
= &chanb
->config
;
452 unsigned long sb_bindex
, id
;
454 offset
&= chanb
->buf_size
- 1;
455 sbidx
= offset
>> chanb
->subbuf_size_order
;
456 id
= shmp_index(handle
, bufb
->buf_wsb
, sbidx
)->id
;
457 sb_bindex
= subbuffer_id_get_index(config
, id
);
458 rpages
= shmp_index(handle
, bufb
->array
, sb_bindex
);
459 CHAN_WARN_ON(chanb
, config
->mode
== RING_BUFFER_OVERWRITE
460 && subbuffer_id_is_noref(config
, id
));
461 return shmp_index(handle
, shmp(handle
, rpages
->shmp
)->p
, offset
& (chanb
->subbuf_size
- 1));