remove mutex_lock, mutex_unlock macros
[ust.git] / libust / buffers.c
CommitLineData
b5b073e2
PMF
1/*
2 * buffers.c
3 * LTTng userspace tracer buffering system
4 *
5 * Copyright (C) 2009 - Pierre-Marc Fournier (pierre-marc dot fournier at polymtl dot ca)
6 * Copyright (C) 2008 - Mathieu Desnoyers (mathieu.desnoyers@polymtl.ca)
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
204141ee 23#include <unistd.h>
b5b073e2
PMF
24#include <sys/mman.h>
25#include <sys/ipc.h>
26#include <sys/shm.h>
27#include <fcntl.h>
909bc43f 28#include <stdlib.h>
518d7abb
PMF
29
30#include <ust/clock.h>
31
b5b073e2
PMF
32#include "buffers.h"
33#include "channels.h"
34#include "tracer.h"
35#include "tracercore.h"
36#include "usterr.h"
37
b73a4c47
PMF
38struct ltt_reserve_switch_offsets {
39 long begin, end, old;
40 long begin_switch, end_switch_current, end_switch_old;
41 size_t before_hdr_pad, size;
42};
43
44
b5b073e2
PMF
45static DEFINE_MUTEX(ust_buffers_channels_mutex);
46static LIST_HEAD(ust_buffers_channels);
47
204141ee
PMF
48static int get_n_cpus(void)
49{
50 int result;
51 static int n_cpus = 0;
52
c7dc133c
PMF
53 if(!n_cpus) {
54 /* On Linux, when some processors are offline
55 * _SC_NPROCESSORS_CONF counts the offline
56 * processors, whereas _SC_NPROCESSORS_ONLN
57 * does not. If we used _SC_NPROCESSORS_ONLN,
58 * getcpu() could return a value greater than
59 * this sysconf, in which case the arrays
60 * indexed by processor would overflow.
61 */
62 result = sysconf(_SC_NPROCESSORS_CONF);
63 if(result == -1) {
64 return -1;
65 }
66
67 n_cpus = result;
204141ee
PMF
68 }
69
c7dc133c 70 return n_cpus;
204141ee
PMF
71}
72
b73a4c47
PMF
73/* _ust_buffers_write()
74 *
75 * @buf: destination buffer
76 * @offset: offset in destination
77 * @src: source buffer
78 * @len: length of source
79 * @cpy: already copied
80 */
81
82void _ust_buffers_write(struct ust_buffer *buf, size_t offset,
83 const void *src, size_t len, ssize_t cpy)
84{
85 do {
86 len -= cpy;
87 src += cpy;
88 offset += cpy;
89
90 WARN_ON(offset >= buf->buf_size);
91
92 cpy = min_t(size_t, len, buf->buf_size - offset);
93 ust_buffers_do_copy(buf->buf_data + offset, src, cpy);
94 } while (unlikely(len != cpy));
95}
96
97static int ust_buffers_init_buffer(struct ust_trace *trace,
b5b073e2
PMF
98 struct ust_channel *ltt_chan,
99 struct ust_buffer *buf,
100 unsigned int n_subbufs);
101
102static int ust_buffers_alloc_buf(struct ust_buffer *buf, size_t *size)
103{
104 void *ptr;
105 int result;
106
107 *size = PAGE_ALIGN(*size);
108
109 result = buf->shmid = shmget(getpid(), *size, IPC_CREAT | IPC_EXCL | 0700);
110 if(result == -1 && errno == EINVAL) {
111 ERR("shmget() returned EINVAL; maybe /proc/sys/kernel/shmmax should be increased.");
112 return -1;
113 }
114 else if(result == -1) {
115 PERROR("shmget");
116 return -1;
117 }
118
204141ee 119 /* FIXME: should have matching call to shmdt */
b5b073e2
PMF
120 ptr = shmat(buf->shmid, NULL, 0);
121 if(ptr == (void *) -1) {
122 perror("shmat");
123 goto destroy_shmem;
124 }
125
126 /* Already mark the shared memory for destruction. This will occur only
127 * when all users have detached.
128 */
129 result = shmctl(buf->shmid, IPC_RMID, NULL);
130 if(result == -1) {
131 perror("shmctl");
132 return -1;
133 }
134
135 buf->buf_data = ptr;
136 buf->buf_size = *size;
137
138 return 0;
139
140 destroy_shmem:
141 result = shmctl(buf->shmid, IPC_RMID, NULL);
142 if(result == -1) {
143 perror("shmctl");
144 }
145
146 return -1;
147}
148
204141ee 149int ust_buffers_create_buf(struct ust_channel *channel, int cpu)
b5b073e2
PMF
150{
151 int result;
204141ee 152 struct ust_buffer *buf = channel->buf[cpu];
b5b073e2 153
204141ee
PMF
154 buf->cpu = cpu;
155 result = ust_buffers_alloc_buf(buf, &channel->alloc_size);
b5b073e2 156 if(result)
204141ee 157 return -1;
b5b073e2 158
204141ee 159 buf->chan = channel;
b5b073e2 160 kref_get(&channel->kref);
204141ee 161 return 0;
b5b073e2
PMF
162}
163
164static void ust_buffers_destroy_channel(struct kref *kref)
165{
166 struct ust_channel *chan = container_of(kref, struct ust_channel, kref);
167 free(chan);
168}
169
170static void ust_buffers_destroy_buf(struct ust_buffer *buf)
171{
172 struct ust_channel *chan = buf->chan;
173 int result;
174
175 result = munmap(buf->buf_data, buf->buf_size);
176 if(result == -1) {
177 PERROR("munmap");
178 }
179
204141ee 180//ust// chan->buf[buf->cpu] = NULL;
b5b073e2
PMF
181 free(buf);
182 kref_put(&chan->kref, ust_buffers_destroy_channel);
183}
184
185/* called from kref_put */
186static void ust_buffers_remove_buf(struct kref *kref)
187{
188 struct ust_buffer *buf = container_of(kref, struct ust_buffer, kref);
189 ust_buffers_destroy_buf(buf);
190}
191
204141ee 192int ust_buffers_open_buf(struct ust_channel *chan, int cpu)
b5b073e2 193{
204141ee 194 int result;
b5b073e2 195
204141ee
PMF
196 result = ust_buffers_create_buf(chan, cpu);
197 if (result == -1)
198 return -1;
b5b073e2 199
204141ee 200 kref_init(&chan->buf[cpu]->kref);
b5b073e2 201
204141ee
PMF
202 result = ust_buffers_init_buffer(chan->trace, chan, chan->buf[cpu], chan->subbuf_cnt);
203 if(result == -1)
204 return -1;
b5b073e2 205
204141ee 206 return 0;
b5b073e2
PMF
207
208 /* FIXME: decrementally destroy on error? */
209}
210
211/**
212 * ust_buffers_close_buf - close a channel buffer
213 * @buf: buffer
214 */
215static void ust_buffers_close_buf(struct ust_buffer *buf)
216{
217 kref_put(&buf->kref, ust_buffers_remove_buf);
218}
219
220int ust_buffers_channel_open(struct ust_channel *chan, size_t subbuf_size, size_t subbuf_cnt)
221{
204141ee
PMF
222 int i;
223 int result;
224
b5b073e2
PMF
225 if(subbuf_size == 0 || subbuf_cnt == 0)
226 return -1;
227
b73a4c47
PMF
228 /* Check that the subbuffer size is larger than a page. */
229 WARN_ON_ONCE(subbuf_size < PAGE_SIZE);
230
231 /*
232 * Make sure the number of subbuffers and subbuffer size are power of 2.
233 */
234 WARN_ON_ONCE(hweight32(subbuf_size) != 1);
235 WARN_ON(hweight32(subbuf_cnt) != 1);
236
b5b073e2
PMF
237 chan->version = UST_CHANNEL_VERSION;
238 chan->subbuf_cnt = subbuf_cnt;
239 chan->subbuf_size = subbuf_size;
240 chan->subbuf_size_order = get_count_order(subbuf_size);
b73a4c47 241 chan->alloc_size = subbuf_size * subbuf_cnt;
204141ee 242
b5b073e2
PMF
243 kref_init(&chan->kref);
244
f7b16408 245 pthread_mutex_lock(&ust_buffers_channels_mutex);
204141ee
PMF
246 for(i=0; i<chan->n_cpus; i++) {
247 result = ust_buffers_open_buf(chan, i);
248 if (result == -1)
249 goto error;
250 }
b5b073e2 251 list_add(&chan->list, &ust_buffers_channels);
f7b16408 252 pthread_mutex_unlock(&ust_buffers_channels_mutex);
b5b073e2
PMF
253
254 return 0;
255
204141ee
PMF
256 /* Jump directly inside the loop to close the buffers that were already
257 * opened. */
258 for(; i>=0; i--) {
259 ust_buffers_close_buf(chan->buf[i]);
260error:
120b0ec3 261 do {} while(0);
204141ee
PMF
262 }
263
b5b073e2 264 kref_put(&chan->kref, ust_buffers_destroy_channel);
f7b16408 265 pthread_mutex_unlock(&ust_buffers_channels_mutex);
b5b073e2
PMF
266 return -1;
267}
268
269void ust_buffers_channel_close(struct ust_channel *chan)
270{
204141ee
PMF
271 int i;
272 if(!chan)
b5b073e2
PMF
273 return;
274
f7b16408 275 pthread_mutex_lock(&ust_buffers_channels_mutex);
204141ee
PMF
276 for(i=0; i<chan->n_cpus; i++) {
277 /* FIXME: if we make it here, then all buffers were necessarily allocated. Moreover, we don't
278 * initialize to NULL so we cannot use this check. Should we? */
279//ust// if (chan->buf[i])
280 ust_buffers_close_buf(chan->buf[i]);
281 }
b5b073e2
PMF
282
283 list_del(&chan->list);
284 kref_put(&chan->kref, ust_buffers_destroy_channel);
f7b16408 285 pthread_mutex_unlock(&ust_buffers_channels_mutex);
b5b073e2
PMF
286}
287
b5b073e2
PMF
288/*
289 * -------
290 */
291
204141ee 292static void ust_buffers_destroy_buffer(struct ust_channel *ltt_chan, int cpu);
b5b073e2
PMF
293
294static void ltt_force_switch(struct ust_buffer *buf,
295 enum force_switch_mode mode);
296
297/*
298 * Trace callbacks
299 */
b73a4c47 300static void ltt_buffer_begin(struct ust_buffer *buf,
b5b073e2
PMF
301 u64 tsc, unsigned int subbuf_idx)
302{
303 struct ust_channel *channel = buf->chan;
304 struct ltt_subbuffer_header *header =
305 (struct ltt_subbuffer_header *)
b73a4c47 306 ust_buffers_offset_address(buf,
b5b073e2
PMF
307 subbuf_idx * buf->chan->subbuf_size);
308
309 header->cycle_count_begin = tsc;
02af3e60
PMF
310 header->data_size = 0xFFFFFFFF; /* for recognizing crashed buffers */
311 header->sb_size = 0xFFFFFFFF; /* for recognizing crashed buffers */
312 /* FIXME: add memory barrier? */
b5b073e2
PMF
313 ltt_write_trace_header(channel->trace, header);
314}
315
316/*
317 * offset is assumed to never be 0 here : never deliver a completely empty
318 * subbuffer. The lost size is between 0 and subbuf_size-1.
319 */
b73a4c47 320static notrace void ltt_buffer_end(struct ust_buffer *buf,
b5b073e2
PMF
321 u64 tsc, unsigned int offset, unsigned int subbuf_idx)
322{
323 struct ltt_subbuffer_header *header =
324 (struct ltt_subbuffer_header *)
b73a4c47 325 ust_buffers_offset_address(buf,
b5b073e2 326 subbuf_idx * buf->chan->subbuf_size);
8c36d1ee 327 u32 data_size = SUBBUF_OFFSET(offset - 1, buf->chan) + 1;
b5b073e2 328
8c36d1ee
PMF
329 header->data_size = data_size;
330 header->sb_size = PAGE_ALIGN(data_size);
b5b073e2 331 header->cycle_count_end = tsc;
b102c2b0
PMF
332 header->events_lost = uatomic_read(&buf->events_lost);
333 header->subbuf_corrupt = uatomic_read(&buf->corrupted_subbuffers);
719569e4
PMF
334 if(unlikely(header->events_lost > 0)) {
335 DBG("Some events (%d) were lost in %s_%d", header->events_lost, buf->chan->channel_name, buf->cpu);
336 }
b5b073e2
PMF
337}
338
339/*
340 * This function should not be called from NMI interrupt context
341 */
342static notrace void ltt_buf_unfull(struct ust_buffer *buf,
343 unsigned int subbuf_idx,
344 long offset)
345{
b5b073e2
PMF
346}
347
b73a4c47
PMF
348/*
349 * Promote compiler barrier to a smp_mb().
350 * For the specific LTTng case, this IPI call should be removed if the
351 * architecture does not reorder writes. This should eventually be provided by
352 * a separate architecture-specific infrastructure.
353 */
e17571a5
PMF
354//ust// static void remote_mb(void *info)
355//ust// {
356//ust// smp_mb();
357//ust// }
b73a4c47
PMF
358
359int ust_buffers_get_subbuf(struct ust_buffer *buf, long *consumed)
b5b073e2
PMF
360{
361 struct ust_channel *channel = buf->chan;
362 long consumed_old, consumed_idx, commit_count, write_offset;
b73a4c47
PMF
363//ust// int retval;
364
b102c2b0 365 consumed_old = uatomic_read(&buf->consumed);
b5b073e2 366 consumed_idx = SUBBUF_INDEX(consumed_old, buf->chan);
b102c2b0 367 commit_count = uatomic_read(&buf->commit_count[consumed_idx].cc_sb);
b5b073e2
PMF
368 /*
369 * Make sure we read the commit count before reading the buffer
370 * data and the write offset. Correct consumed offset ordering
371 * wrt commit count is insured by the use of cmpxchg to update
372 * the consumed offset.
b73a4c47
PMF
373 * smp_call_function_single can fail if the remote CPU is offline,
374 * this is OK because then there is no wmb to execute there.
375 * If our thread is executing on the same CPU as the on the buffers
376 * belongs to, we don't have to synchronize it at all. If we are
377 * migrated, the scheduler will take care of the memory barriers.
378 * Normally, smp_call_function_single() should ensure program order when
379 * executing the remote function, which implies that it surrounds the
380 * function execution with :
381 * smp_mb()
382 * send IPI
383 * csd_lock_wait
384 * recv IPI
385 * smp_mb()
386 * exec. function
387 * smp_mb()
388 * csd unlock
389 * smp_mb()
390 *
391 * However, smp_call_function_single() does not seem to clearly execute
392 * such barriers. It depends on spinlock semantic to provide the barrier
393 * before executing the IPI and, when busy-looping, csd_lock_wait only
394 * executes smp_mb() when it has to wait for the other CPU.
395 *
396 * I don't trust this code. Therefore, let's add the smp_mb() sequence
397 * required ourself, even if duplicated. It has no performance impact
398 * anyway.
399 *
400 * smp_mb() is needed because smp_rmb() and smp_wmb() only order read vs
401 * read and write vs write. They do not ensure core synchronization. We
402 * really have to ensure total order between the 3 barriers running on
403 * the 2 CPUs.
404 */
405//ust// #ifdef LTT_NO_IPI_BARRIER
406 /*
407 * Local rmb to match the remote wmb to read the commit count before the
408 * buffer data and the write offset.
b5b073e2
PMF
409 */
410 smp_rmb();
b73a4c47
PMF
411//ust// #else
412//ust// if (raw_smp_processor_id() != buf->cpu) {
413//ust// smp_mb(); /* Total order with IPI handler smp_mb() */
414//ust// smp_call_function_single(buf->cpu, remote_mb, NULL, 1);
415//ust// smp_mb(); /* Total order with IPI handler smp_mb() */
416//ust// }
417//ust// #endif
418
b102c2b0 419 write_offset = uatomic_read(&buf->offset);
b5b073e2
PMF
420 /*
421 * Check that the subbuffer we are trying to consume has been
422 * already fully committed.
423 */
424 if (((commit_count - buf->chan->subbuf_size)
425 & channel->commit_count_mask)
426 - (BUFFER_TRUNC(consumed_old, buf->chan)
427 >> channel->n_subbufs_order)
428 != 0) {
429 return -EAGAIN;
430 }
431 /*
432 * Check that we are not about to read the same subbuffer in
433 * which the writer head is.
434 */
435 if ((SUBBUF_TRUNC(write_offset, buf->chan)
436 - SUBBUF_TRUNC(consumed_old, buf->chan))
437 == 0) {
438 return -EAGAIN;
439 }
440
b73a4c47
PMF
441 /* FIXME: is this ok to disable the reading feature? */
442//ust// retval = update_read_sb_index(buf, consumed_idx);
443//ust// if (retval)
444//ust// return retval;
445
446 *consumed = consumed_old;
447
b5b073e2
PMF
448 return 0;
449}
450
b73a4c47 451int ust_buffers_put_subbuf(struct ust_buffer *buf, unsigned long uconsumed_old)
b5b073e2
PMF
452{
453 long consumed_new, consumed_old;
454
b102c2b0 455 consumed_old = uatomic_read(&buf->consumed);
b5b073e2
PMF
456 consumed_old = consumed_old & (~0xFFFFFFFFL);
457 consumed_old = consumed_old | uconsumed_old;
458 consumed_new = SUBBUF_ALIGN(consumed_old, buf->chan);
459
460//ust// spin_lock(&ltt_buf->full_lock);
b102c2b0 461 if (uatomic_cmpxchg(&buf->consumed, consumed_old,
b5b073e2
PMF
462 consumed_new)
463 != consumed_old) {
464 /* We have been pushed by the writer : the last
465 * buffer read _is_ corrupted! It can also
466 * happen if this is a buffer we never got. */
467//ust// spin_unlock(&ltt_buf->full_lock);
468 return -EIO;
469 } else {
470 /* tell the client that buffer is now unfull */
471 int index;
472 long data;
473 index = SUBBUF_INDEX(consumed_old, buf->chan);
474 data = BUFFER_OFFSET(consumed_old, buf->chan);
475 ltt_buf_unfull(buf, index, data);
476//ust// spin_unlock(&ltt_buf->full_lock);
477 }
478 return 0;
479}
480
481static void ltt_relay_print_subbuffer_errors(
482 struct ust_channel *channel,
204141ee 483 long cons_off, int cpu)
b5b073e2 484{
204141ee 485 struct ust_buffer *ltt_buf = channel->buf[cpu];
b73a4c47 486 long cons_idx, commit_count, commit_count_sb, write_offset;
b5b073e2
PMF
487
488 cons_idx = SUBBUF_INDEX(cons_off, channel);
b102c2b0
PMF
489 commit_count = uatomic_read(&ltt_buf->commit_count[cons_idx].cc);
490 commit_count_sb = uatomic_read(&ltt_buf->commit_count[cons_idx].cc_sb);
b73a4c47 491
b5b073e2
PMF
492 /*
493 * No need to order commit_count and write_offset reads because we
494 * execute after trace is stopped when there are no readers left.
495 */
b102c2b0 496 write_offset = uatomic_read(&ltt_buf->offset);
b5b073e2 497 WARN( "LTT : unread channel %s offset is %ld "
b73a4c47
PMF
498 "and cons_off : %ld (cpu %d)\n",
499 channel->channel_name, write_offset, cons_off, cpu);
b5b073e2
PMF
500 /* Check each sub-buffer for non filled commit count */
501 if (((commit_count - channel->subbuf_size) & channel->commit_count_mask)
502 - (BUFFER_TRUNC(cons_off, channel) >> channel->n_subbufs_order) != 0) {
503 ERR("LTT : %s : subbuffer %lu has non filled "
b73a4c47
PMF
504 "commit count [cc, cc_sb] [%lu,%lu].\n",
505 channel->channel_name, cons_idx, commit_count, commit_count_sb);
b5b073e2
PMF
506 }
507 ERR("LTT : %s : commit count : %lu, subbuf size %zd\n",
508 channel->channel_name, commit_count,
509 channel->subbuf_size);
510}
511
b73a4c47 512static void ltt_relay_print_errors(struct ust_trace *trace,
204141ee 513 struct ust_channel *channel, int cpu)
b5b073e2 514{
204141ee 515 struct ust_buffer *ltt_buf = channel->buf[cpu];
b5b073e2
PMF
516 long cons_off;
517
4292ed8a
PMF
518 /*
519 * Can be called in the error path of allocation when
520 * trans_channel_data is not yet set.
521 */
522 if (!channel)
523 return;
524
e17571a5
PMF
525//ust// for (cons_off = 0; cons_off < rchan->alloc_size;
526//ust// cons_off = SUBBUF_ALIGN(cons_off, rchan))
527//ust// ust_buffers_print_written(ltt_chan, cons_off, cpu);
b102c2b0
PMF
528 for (cons_off = uatomic_read(&ltt_buf->consumed);
529 (SUBBUF_TRUNC(uatomic_read(&ltt_buf->offset),
b5b073e2
PMF
530 channel)
531 - cons_off) > 0;
532 cons_off = SUBBUF_ALIGN(cons_off, channel))
204141ee 533 ltt_relay_print_subbuffer_errors(channel, cons_off, cpu);
b5b073e2
PMF
534}
535
204141ee 536static void ltt_relay_print_buffer_errors(struct ust_channel *channel, int cpu)
b5b073e2 537{
b73a4c47 538 struct ust_trace *trace = channel->trace;
204141ee 539 struct ust_buffer *ltt_buf = channel->buf[cpu];
b5b073e2 540
b102c2b0 541 if (uatomic_read(&ltt_buf->events_lost))
b73a4c47 542 ERR("channel %s: %ld events lost (cpu %d)",
b5b073e2 543 channel->channel_name,
b102c2b0
PMF
544 uatomic_read(&ltt_buf->events_lost), cpu);
545 if (uatomic_read(&ltt_buf->corrupted_subbuffers))
b73a4c47 546 ERR("channel %s : %ld corrupted subbuffers (cpu %d)",
b5b073e2 547 channel->channel_name,
b102c2b0 548 uatomic_read(&ltt_buf->corrupted_subbuffers), cpu);
b5b073e2 549
204141ee 550 ltt_relay_print_errors(trace, channel, cpu);
b5b073e2
PMF
551}
552
553static void ltt_relay_release_channel(struct kref *kref)
554{
555 struct ust_channel *ltt_chan = container_of(kref,
556 struct ust_channel, kref);
557 free(ltt_chan->buf);
558}
559
560/*
561 * Create ltt buffer.
562 */
b73a4c47 563//ust// static int ltt_relay_create_buffer(struct ust_trace *trace,
b5b073e2
PMF
564//ust// struct ltt_channel_struct *ltt_chan, struct rchan_buf *buf,
565//ust// unsigned int cpu, unsigned int n_subbufs)
566//ust// {
567//ust// struct ltt_channel_buf_struct *ltt_buf =
568//ust// percpu_ptr(ltt_chan->buf, cpu);
569//ust// unsigned int j;
b73a4c47 570//ust//
b5b073e2
PMF
571//ust// ltt_buf->commit_count =
572//ust// kzalloc_node(sizeof(ltt_buf->commit_count) * n_subbufs,
573//ust// GFP_KERNEL, cpu_to_node(cpu));
574//ust// if (!ltt_buf->commit_count)
575//ust// return -ENOMEM;
576//ust// kref_get(&trace->kref);
577//ust// kref_get(&trace->ltt_transport_kref);
578//ust// kref_get(&ltt_chan->kref);
b102c2b0
PMF
579//ust// uatomic_set(&ltt_buf->offset, ltt_subbuffer_header_size());
580//ust// uatomic_set(&ltt_buf->consumed, 0);
581//ust// uatomic_set(&ltt_buf->active_readers, 0);
b5b073e2 582//ust// for (j = 0; j < n_subbufs; j++)
b102c2b0 583//ust// uatomic_set(&ltt_buf->commit_count[j], 0);
b5b073e2 584//ust// init_waitqueue_head(&ltt_buf->write_wait);
b102c2b0 585//ust// uatomic_set(&ltt_buf->wakeup_readers, 0);
b5b073e2 586//ust// spin_lock_init(&ltt_buf->full_lock);
b73a4c47 587//ust//
b5b073e2
PMF
588//ust// ltt_buffer_begin_callback(buf, trace->start_tsc, 0);
589//ust// /* atomic_add made on local variable on data that belongs to
590//ust// * various CPUs : ok because tracing not started (for this cpu). */
b102c2b0 591//ust// uatomic_add(&ltt_buf->commit_count[0], ltt_subbuffer_header_size());
b73a4c47 592//ust//
b102c2b0
PMF
593//ust// uatomic_set(&ltt_buf->events_lost, 0);
594//ust// uatomic_set(&ltt_buf->corrupted_subbuffers, 0);
b73a4c47 595//ust//
b5b073e2
PMF
596//ust// return 0;
597//ust// }
598
b73a4c47 599static int ust_buffers_init_buffer(struct ust_trace *trace,
b5b073e2
PMF
600 struct ust_channel *ltt_chan, struct ust_buffer *buf,
601 unsigned int n_subbufs)
602{
603 unsigned int j;
604 int fds[2];
605 int result;
606
607 buf->commit_count =
b73a4c47 608 zmalloc(sizeof(*buf->commit_count) * n_subbufs);
b5b073e2
PMF
609 if (!buf->commit_count)
610 return -ENOMEM;
611 kref_get(&trace->kref);
612 kref_get(&trace->ltt_transport_kref);
613 kref_get(&ltt_chan->kref);
b102c2b0
PMF
614 uatomic_set(&buf->offset, ltt_subbuffer_header_size());
615 uatomic_set(&buf->consumed, 0);
616 uatomic_set(&buf->active_readers, 0);
b73a4c47 617 for (j = 0; j < n_subbufs; j++) {
b102c2b0
PMF
618 uatomic_set(&buf->commit_count[j].cc, 0);
619 uatomic_set(&buf->commit_count[j].cc_sb, 0);
b73a4c47 620 }
b5b073e2 621//ust// init_waitqueue_head(&buf->write_wait);
b102c2b0 622//ust// uatomic_set(&buf->wakeup_readers, 0);
b5b073e2
PMF
623//ust// spin_lock_init(&buf->full_lock);
624
b73a4c47 625 ltt_buffer_begin(buf, trace->start_tsc, 0);
b5b073e2 626
b102c2b0 627 uatomic_add(&buf->commit_count[0].cc, ltt_subbuffer_header_size());
b5b073e2 628
b102c2b0
PMF
629 uatomic_set(&buf->events_lost, 0);
630 uatomic_set(&buf->corrupted_subbuffers, 0);
b5b073e2
PMF
631
632 result = pipe(fds);
633 if(result == -1) {
634 PERROR("pipe");
635 return -1;
636 }
637 buf->data_ready_fd_read = fds[0];
638 buf->data_ready_fd_write = fds[1];
639
b5b073e2
PMF
640//ust// buf->commit_seq = malloc(sizeof(buf->commit_seq) * n_subbufs);
641//ust// if(!ltt_buf->commit_seq) {
642//ust// return -1;
643//ust// }
37315729 644 memset(buf->commit_seq, 0, sizeof(buf->commit_seq[0]) * n_subbufs);
b5b073e2
PMF
645
646 /* FIXME: decrementally destroy on error */
647
648 return 0;
649}
650
651/* FIXME: use this function */
204141ee 652static void ust_buffers_destroy_buffer(struct ust_channel *ltt_chan, int cpu)
b5b073e2 653{
b73a4c47 654 struct ust_trace *trace = ltt_chan->trace;
204141ee 655 struct ust_buffer *ltt_buf = ltt_chan->buf[cpu];
b5b073e2
PMF
656
657 kref_put(&ltt_chan->trace->ltt_transport_kref,
658 ltt_release_transport);
204141ee 659 ltt_relay_print_buffer_errors(ltt_chan, cpu);
b5b073e2 660//ust// free(ltt_buf->commit_seq);
909bc43f 661 free(ltt_buf->commit_count);
b5b073e2
PMF
662 ltt_buf->commit_count = NULL;
663 kref_put(&ltt_chan->kref, ltt_relay_release_channel);
664 kref_put(&trace->kref, ltt_release_trace);
665//ust// wake_up_interruptible(&trace->kref_wq);
666}
667
204141ee 668static int ust_buffers_alloc_channel_buf_structs(struct ust_channel *chan)
b5b073e2
PMF
669{
670 void *ptr;
671 int result;
204141ee
PMF
672 size_t size;
673 int i;
b5b073e2 674
204141ee 675 size = PAGE_ALIGN(1);
b5b073e2 676
204141ee 677 for(i=0; i<chan->n_cpus; i++) {
b5b073e2 678
204141ee
PMF
679 result = chan->buf_struct_shmids[i] = shmget(getpid(), size, IPC_CREAT | IPC_EXCL | 0700);
680 if(result == -1) {
681 PERROR("shmget");
682 goto destroy_previous;
683 }
b5b073e2 684
204141ee
PMF
685 /* FIXME: should have matching call to shmdt */
686 ptr = shmat(chan->buf_struct_shmids[i], NULL, 0);
687 if(ptr == (void *) -1) {
688 perror("shmat");
689 goto destroy_shm;
690 }
691
692 /* Already mark the shared memory for destruction. This will occur only
693 * when all users have detached.
694 */
695 result = shmctl(chan->buf_struct_shmids[i], IPC_RMID, NULL);
696 if(result == -1) {
697 perror("shmctl");
698 goto destroy_previous;
699 }
700
701 chan->buf[i] = ptr;
b5b073e2
PMF
702 }
703
204141ee 704 return 0;
b5b073e2 705
204141ee
PMF
706 /* Jumping inside this loop occurs from within the other loop above with i as
707 * counter, so it unallocates the structures for the cpu = current_i down to
708 * zero. */
709 for(; i>=0; i--) {
710 destroy_shm:
711 result = shmctl(chan->buf_struct_shmids[i], IPC_RMID, NULL);
712 if(result == -1) {
713 perror("shmctl");
714 }
b5b073e2 715
204141ee
PMF
716 destroy_previous:
717 continue;
b5b073e2
PMF
718 }
719
204141ee 720 return -1;
b5b073e2
PMF
721}
722
723/*
724 * Create channel.
725 */
b73a4c47 726static int ust_buffers_create_channel(const char *trace_name, struct ust_trace *trace,
b5b073e2
PMF
727 const char *channel_name, struct ust_channel *ltt_chan,
728 unsigned int subbuf_size, unsigned int n_subbufs, int overwrite)
729{
b5b073e2
PMF
730 int result;
731
732 kref_init(&ltt_chan->kref);
733
734 ltt_chan->trace = trace;
b5b073e2
PMF
735 ltt_chan->overwrite = overwrite;
736 ltt_chan->n_subbufs_order = get_count_order(n_subbufs);
737 ltt_chan->commit_count_mask = (~0UL >> ltt_chan->n_subbufs_order);
204141ee 738 ltt_chan->n_cpus = get_n_cpus();
b5b073e2 739//ust// ltt_chan->buf = percpu_alloc_mask(sizeof(struct ltt_channel_buf_struct), GFP_KERNEL, cpu_possible_map);
204141ee
PMF
740 ltt_chan->buf = (void *) malloc(ltt_chan->n_cpus * sizeof(void *));
741 if(ltt_chan->buf == NULL) {
742 goto error;
743 }
744 ltt_chan->buf_struct_shmids = (int *) malloc(ltt_chan->n_cpus * sizeof(int));
745 if(ltt_chan->buf_struct_shmids == NULL)
746 goto free_buf;
b5b073e2 747
204141ee
PMF
748 result = ust_buffers_alloc_channel_buf_structs(ltt_chan);
749 if(result != 0) {
750 goto free_buf_struct_shmids;
751 }
b5b073e2 752
b5b073e2 753 result = ust_buffers_channel_open(ltt_chan, subbuf_size, n_subbufs);
204141ee 754 if (result != 0) {
c1f20530 755 ERR("Cannot open channel for trace %s", trace_name);
204141ee 756 goto unalloc_buf_structs;
b5b073e2
PMF
757 }
758
204141ee
PMF
759 return 0;
760
761unalloc_buf_structs:
762 /* FIXME: put a call here to unalloc the buf structs! */
763
764free_buf_struct_shmids:
765 free(ltt_chan->buf_struct_shmids);
b5b073e2 766
204141ee
PMF
767free_buf:
768 free(ltt_chan->buf);
769
770error:
771 return -1;
b5b073e2
PMF
772}
773
774/*
775 * LTTng channel flush function.
776 *
777 * Must be called when no tracing is active in the channel, because of
778 * accesses across CPUs.
779 */
780static notrace void ltt_relay_buffer_flush(struct ust_buffer *buf)
781{
782 int result;
783
784//ust// buf->finalized = 1;
785 ltt_force_switch(buf, FORCE_FLUSH);
786
787 result = write(buf->data_ready_fd_write, "1", 1);
788 if(result == -1) {
789 PERROR("write (in ltt_relay_buffer_flush)");
790 ERR("this should never happen!");
791 }
792}
793
794static void ltt_relay_async_wakeup_chan(struct ust_channel *ltt_channel)
795{
796//ust// unsigned int i;
797//ust// struct rchan *rchan = ltt_channel->trans_channel_data;
798//ust//
799//ust// for_each_possible_cpu(i) {
800//ust// struct ltt_channel_buf_struct *ltt_buf =
801//ust// percpu_ptr(ltt_channel->buf, i);
802//ust//
b102c2b0
PMF
803//ust// if (uatomic_read(&ltt_buf->wakeup_readers) == 1) {
804//ust// uatomic_set(&ltt_buf->wakeup_readers, 0);
b5b073e2
PMF
805//ust// wake_up_interruptible(&rchan->buf[i]->read_wait);
806//ust// }
807//ust// }
808}
809
204141ee 810static void ltt_relay_finish_buffer(struct ust_channel *channel, unsigned int cpu)
b5b073e2
PMF
811{
812// int result;
813
204141ee
PMF
814 if (channel->buf[cpu]) {
815 struct ust_buffer *buf = channel->buf[cpu];
b5b073e2
PMF
816 ltt_relay_buffer_flush(buf);
817//ust// ltt_relay_wake_writers(ltt_buf);
818 /* closing the pipe tells the consumer the buffer is finished */
819
820 //result = write(ltt_buf->data_ready_fd_write, "D", 1);
821 //if(result == -1) {
822 // PERROR("write (in ltt_relay_finish_buffer)");
823 // ERR("this should never happen!");
824 //}
825 close(buf->data_ready_fd_write);
826 }
827}
828
829
830static void ltt_relay_finish_channel(struct ust_channel *channel)
831{
204141ee 832 unsigned int i;
b5b073e2 833
204141ee
PMF
834 for(i=0; i<channel->n_cpus; i++) {
835 ltt_relay_finish_buffer(channel, i);
836 }
b5b073e2
PMF
837}
838
839static void ltt_relay_remove_channel(struct ust_channel *channel)
840{
841 ust_buffers_channel_close(channel);
842 kref_put(&channel->kref, ltt_relay_release_channel);
843}
844
b5b073e2 845/*
b73a4c47
PMF
846 * ltt_reserve_switch_old_subbuf: switch old subbuffer
847 *
848 * Concurrency safe because we are the last and only thread to alter this
849 * sub-buffer. As long as it is not delivered and read, no other thread can
850 * alter the offset, alter the reserve_count or call the
851 * client_buffer_end_callback on this sub-buffer.
852 *
853 * The only remaining threads could be the ones with pending commits. They will
854 * have to do the deliver themselves. Not concurrency safe in overwrite mode.
855 * We detect corrupted subbuffers with commit and reserve counts. We keep a
856 * corrupted sub-buffers count and push the readers across these sub-buffers.
857 *
858 * Not concurrency safe if a writer is stalled in a subbuffer and another writer
859 * switches in, finding out it's corrupted. The result will be than the old
860 * (uncommited) subbuffer will be declared corrupted, and that the new subbuffer
861 * will be declared corrupted too because of the commit count adjustment.
862 *
863 * Note : offset_old should never be 0 here.
b5b073e2 864 */
b73a4c47
PMF
865static void ltt_reserve_switch_old_subbuf(
866 struct ust_channel *chan, struct ust_buffer *buf,
867 struct ltt_reserve_switch_offsets *offsets, u64 *tsc)
b5b073e2 868{
b73a4c47
PMF
869 long oldidx = SUBBUF_INDEX(offsets->old - 1, chan);
870 long commit_count, padding_size;
b5b073e2 871
b73a4c47
PMF
872 padding_size = chan->subbuf_size
873 - (SUBBUF_OFFSET(offsets->old - 1, chan) + 1);
874 ltt_buffer_end(buf, *tsc, offsets->old, oldidx);
b5b073e2 875
b73a4c47
PMF
876 /*
877 * Must write slot data before incrementing commit count.
878 * This compiler barrier is upgraded into a smp_wmb() by the IPI
879 * sent by get_subbuf() when it does its smp_rmb().
880 */
881 barrier();
b102c2b0
PMF
882 uatomic_add(&buf->commit_count[oldidx].cc, padding_size);
883 commit_count = uatomic_read(&buf->commit_count[oldidx].cc);
b73a4c47 884 ltt_check_deliver(chan, buf, offsets->old - 1, commit_count, oldidx);
1e8c9e7b 885 ltt_write_commit_counter(chan, buf, oldidx,
b73a4c47
PMF
886 offsets->old, commit_count, padding_size);
887}
b5b073e2 888
b73a4c47
PMF
889/*
890 * ltt_reserve_switch_new_subbuf: Populate new subbuffer.
891 *
892 * This code can be executed unordered : writers may already have written to the
893 * sub-buffer before this code gets executed, caution. The commit makes sure
894 * that this code is executed before the deliver of this sub-buffer.
895 */
896static void ltt_reserve_switch_new_subbuf(
897 struct ust_channel *chan, struct ust_buffer *buf,
898 struct ltt_reserve_switch_offsets *offsets, u64 *tsc)
899{
900 long beginidx = SUBBUF_INDEX(offsets->begin, chan);
901 long commit_count;
b5b073e2 902
b73a4c47 903 ltt_buffer_begin(buf, *tsc, beginidx);
b5b073e2 904
b73a4c47
PMF
905 /*
906 * Must write slot data before incrementing commit count.
907 * This compiler barrier is upgraded into a smp_wmb() by the IPI
908 * sent by get_subbuf() when it does its smp_rmb().
909 */
910 barrier();
b102c2b0
PMF
911 uatomic_add(&buf->commit_count[beginidx].cc, ltt_subbuffer_header_size());
912 commit_count = uatomic_read(&buf->commit_count[beginidx].cc);
b73a4c47
PMF
913 /* Check if the written buffer has to be delivered */
914 ltt_check_deliver(chan, buf, offsets->begin, commit_count, beginidx);
1e8c9e7b 915 ltt_write_commit_counter(chan, buf, beginidx,
b73a4c47
PMF
916 offsets->begin, commit_count, ltt_subbuffer_header_size());
917}
b5b073e2 918
b73a4c47
PMF
919/*
920 * ltt_reserve_end_switch_current: finish switching current subbuffer
921 *
922 * Concurrency safe because we are the last and only thread to alter this
923 * sub-buffer. As long as it is not delivered and read, no other thread can
924 * alter the offset, alter the reserve_count or call the
925 * client_buffer_end_callback on this sub-buffer.
926 *
927 * The only remaining threads could be the ones with pending commits. They will
928 * have to do the deliver themselves. Not concurrency safe in overwrite mode.
929 * We detect corrupted subbuffers with commit and reserve counts. We keep a
930 * corrupted sub-buffers count and push the readers across these sub-buffers.
931 *
932 * Not concurrency safe if a writer is stalled in a subbuffer and another writer
933 * switches in, finding out it's corrupted. The result will be than the old
934 * (uncommited) subbuffer will be declared corrupted, and that the new subbuffer
935 * will be declared corrupted too because of the commit count adjustment.
936 */
937static void ltt_reserve_end_switch_current(
938 struct ust_channel *chan,
939 struct ust_buffer *buf,
940 struct ltt_reserve_switch_offsets *offsets, u64 *tsc)
941{
942 long endidx = SUBBUF_INDEX(offsets->end - 1, chan);
943 long commit_count, padding_size;
944
945 padding_size = chan->subbuf_size
946 - (SUBBUF_OFFSET(offsets->end - 1, chan) + 1);
947
948 ltt_buffer_end(buf, *tsc, offsets->end, endidx);
949
950 /*
951 * Must write slot data before incrementing commit count.
952 * This compiler barrier is upgraded into a smp_wmb() by the IPI
953 * sent by get_subbuf() when it does its smp_rmb().
954 */
955 barrier();
b102c2b0
PMF
956 uatomic_add(&buf->commit_count[endidx].cc, padding_size);
957 commit_count = uatomic_read(&buf->commit_count[endidx].cc);
b73a4c47
PMF
958 ltt_check_deliver(chan, buf,
959 offsets->end - 1, commit_count, endidx);
1e8c9e7b 960 ltt_write_commit_counter(chan, buf, endidx,
b73a4c47 961 offsets->end, commit_count, padding_size);
b5b073e2
PMF
962}
963
964/*
965 * Returns :
966 * 0 if ok
967 * !0 if execution must be aborted.
968 */
b73a4c47 969static int ltt_relay_try_switch_slow(
b5b073e2 970 enum force_switch_mode mode,
b73a4c47 971 struct ust_channel *chan,
b5b073e2
PMF
972 struct ust_buffer *buf,
973 struct ltt_reserve_switch_offsets *offsets,
974 u64 *tsc)
975{
976 long subbuf_index;
b73a4c47 977 long reserve_commit_diff;
b5b073e2 978
b102c2b0 979 offsets->begin = uatomic_read(&buf->offset);
b5b073e2
PMF
980 offsets->old = offsets->begin;
981 offsets->begin_switch = 0;
982 offsets->end_switch_old = 0;
983
984 *tsc = trace_clock_read64();
985
986 if (SUBBUF_OFFSET(offsets->begin, buf->chan) != 0) {
987 offsets->begin = SUBBUF_ALIGN(offsets->begin, buf->chan);
988 offsets->end_switch_old = 1;
989 } else {
990 /* we do not have to switch : buffer is empty */
991 return -1;
992 }
993 if (mode == FORCE_ACTIVE)
994 offsets->begin += ltt_subbuffer_header_size();
995 /*
996 * Always begin_switch in FORCE_ACTIVE mode.
997 * Test new buffer integrity
998 */
999 subbuf_index = SUBBUF_INDEX(offsets->begin, buf->chan);
b73a4c47 1000 reserve_commit_diff =
b5b073e2 1001 (BUFFER_TRUNC(offsets->begin, buf->chan)
b73a4c47 1002 >> chan->n_subbufs_order)
b102c2b0 1003 - (uatomic_read(&buf->commit_count[subbuf_index].cc_sb)
b73a4c47
PMF
1004 & chan->commit_count_mask);
1005 if (reserve_commit_diff == 0) {
b5b073e2
PMF
1006 /* Next buffer not corrupted. */
1007 if (mode == FORCE_ACTIVE
b73a4c47 1008 && !chan->overwrite
b102c2b0 1009 && offsets->begin - uatomic_read(&buf->consumed)
b73a4c47 1010 >= chan->alloc_size) {
b5b073e2
PMF
1011 /*
1012 * We do not overwrite non consumed buffers and we are
1013 * full : ignore switch while tracing is active.
1014 */
1015 return -1;
1016 }
1017 } else {
1018 /*
1019 * Next subbuffer corrupted. Force pushing reader even in normal
1020 * mode
1021 */
1022 }
1023 offsets->end = offsets->begin;
1024 return 0;
1025}
1026
b5b073e2 1027/*
b73a4c47
PMF
1028 * Force a sub-buffer switch for a per-cpu buffer. This operation is
1029 * completely reentrant : can be called while tracing is active with
1030 * absolutely no lock held.
b5b073e2 1031 */
b73a4c47
PMF
1032void ltt_force_switch_lockless_slow(struct ust_buffer *buf,
1033 enum force_switch_mode mode)
b5b073e2 1034{
b73a4c47 1035 struct ust_channel *chan = buf->chan;
b5b073e2 1036 struct ltt_reserve_switch_offsets offsets;
b73a4c47 1037 u64 tsc;
b5b073e2 1038
b5b073e2
PMF
1039 offsets.size = 0;
1040
10dd3941 1041 DBG("Switching (forced) %s_%d", chan->channel_name, buf->cpu);
b5b073e2
PMF
1042 /*
1043 * Perform retryable operations.
1044 */
b5b073e2 1045 do {
b73a4c47
PMF
1046 if (ltt_relay_try_switch_slow(mode, chan, buf,
1047 &offsets, &tsc))
1048 return;
b102c2b0 1049 } while (uatomic_cmpxchg(&buf->offset, offsets.old,
b5b073e2
PMF
1050 offsets.end) != offsets.old);
1051
1052 /*
1053 * Atomically update last_tsc. This update races against concurrent
1054 * atomic updates, but the race will always cause supplementary full TSC
1055 * events, never the opposite (missing a full TSC event when it would be
1056 * needed).
1057 */
b73a4c47 1058 save_last_tsc(buf, tsc);
b5b073e2
PMF
1059
1060 /*
1061 * Push the reader if necessary
1062 */
b73a4c47
PMF
1063 if (mode == FORCE_ACTIVE) {
1064 ltt_reserve_push_reader(chan, buf, offsets.end - 1);
1065//ust// ltt_clear_noref_flag(chan, buf, SUBBUF_INDEX(offsets.end - 1, chan));
1066 }
b5b073e2
PMF
1067
1068 /*
1069 * Switch old subbuffer if needed.
1070 */
b73a4c47
PMF
1071 if (offsets.end_switch_old) {
1072//ust// ltt_clear_noref_flag(rchan, buf, SUBBUF_INDEX(offsets.old - 1, rchan));
1073 ltt_reserve_switch_old_subbuf(chan, buf, &offsets, &tsc);
1074 }
b5b073e2
PMF
1075
1076 /*
1077 * Populate new subbuffer.
1078 */
b73a4c47
PMF
1079 if (mode == FORCE_ACTIVE)
1080 ltt_reserve_switch_new_subbuf(chan, buf, &offsets, &tsc);
1081}
b5b073e2 1082
b73a4c47
PMF
1083/*
1084 * Returns :
1085 * 0 if ok
1086 * !0 if execution must be aborted.
1087 */
1088static int ltt_relay_try_reserve_slow(struct ust_channel *chan, struct ust_buffer *buf,
1089 struct ltt_reserve_switch_offsets *offsets, size_t data_size,
1090 u64 *tsc, unsigned int *rflags, int largest_align)
1091{
1092 long reserve_commit_diff;
b5b073e2 1093
b102c2b0 1094 offsets->begin = uatomic_read(&buf->offset);
b73a4c47
PMF
1095 offsets->old = offsets->begin;
1096 offsets->begin_switch = 0;
1097 offsets->end_switch_current = 0;
1098 offsets->end_switch_old = 0;
1099
1100 *tsc = trace_clock_read64();
1101 if (last_tsc_overflow(buf, *tsc))
1102 *rflags = LTT_RFLAG_ID_SIZE_TSC;
1103
1104 if (unlikely(SUBBUF_OFFSET(offsets->begin, buf->chan) == 0)) {
1105 offsets->begin_switch = 1; /* For offsets->begin */
1106 } else {
1107 offsets->size = ust_get_header_size(chan,
1108 offsets->begin, data_size,
1109 &offsets->before_hdr_pad, *rflags);
1110 offsets->size += ltt_align(offsets->begin + offsets->size,
1111 largest_align)
1112 + data_size;
1113 if (unlikely((SUBBUF_OFFSET(offsets->begin, buf->chan) +
1114 offsets->size) > buf->chan->subbuf_size)) {
1115 offsets->end_switch_old = 1; /* For offsets->old */
1116 offsets->begin_switch = 1; /* For offsets->begin */
1117 }
1118 }
1119 if (unlikely(offsets->begin_switch)) {
1120 long subbuf_index;
1121
1122 /*
1123 * We are typically not filling the previous buffer completely.
1124 */
1125 if (likely(offsets->end_switch_old))
1126 offsets->begin = SUBBUF_ALIGN(offsets->begin,
1127 buf->chan);
1128 offsets->begin = offsets->begin + ltt_subbuffer_header_size();
1129 /* Test new buffer integrity */
1130 subbuf_index = SUBBUF_INDEX(offsets->begin, buf->chan);
1131 reserve_commit_diff =
1132 (BUFFER_TRUNC(offsets->begin, buf->chan)
1133 >> chan->n_subbufs_order)
b102c2b0 1134 - (uatomic_read(&buf->commit_count[subbuf_index].cc_sb)
b73a4c47
PMF
1135 & chan->commit_count_mask);
1136 if (likely(reserve_commit_diff == 0)) {
1137 /* Next buffer not corrupted. */
1138 if (unlikely(!chan->overwrite &&
1139 (SUBBUF_TRUNC(offsets->begin, buf->chan)
b102c2b0 1140 - SUBBUF_TRUNC(uatomic_read(
b73a4c47
PMF
1141 &buf->consumed),
1142 buf->chan))
1143 >= chan->alloc_size)) {
1144 /*
1145 * We do not overwrite non consumed buffers
1146 * and we are full : event is lost.
1147 */
b102c2b0 1148 uatomic_inc(&buf->events_lost);
b73a4c47
PMF
1149 return -1;
1150 } else {
1151 /*
1152 * next buffer not corrupted, we are either in
1153 * overwrite mode or the buffer is not full.
1154 * It's safe to write in this new subbuffer.
1155 */
1156 }
1157 } else {
1158 /*
1159 * Next subbuffer corrupted. Drop event in normal and
1160 * overwrite mode. Caused by either a writer OOPS or
1161 * too many nested writes over a reserve/commit pair.
1162 */
b102c2b0 1163 uatomic_inc(&buf->events_lost);
b73a4c47
PMF
1164 return -1;
1165 }
1166 offsets->size = ust_get_header_size(chan,
1167 offsets->begin, data_size,
1168 &offsets->before_hdr_pad, *rflags);
1169 offsets->size += ltt_align(offsets->begin + offsets->size,
1170 largest_align)
1171 + data_size;
1172 if (unlikely((SUBBUF_OFFSET(offsets->begin, buf->chan)
1173 + offsets->size) > buf->chan->subbuf_size)) {
1174 /*
1175 * Event too big for subbuffers, report error, don't
1176 * complete the sub-buffer switch.
1177 */
b102c2b0 1178 uatomic_inc(&buf->events_lost);
b73a4c47
PMF
1179 return -1;
1180 } else {
1181 /*
1182 * We just made a successful buffer switch and the event
1183 * fits in the new subbuffer. Let's write.
1184 */
1185 }
1186 } else {
1187 /*
1188 * Event fits in the current buffer and we are not on a switch
1189 * boundary. It's safe to write.
1190 */
1191 }
1192 offsets->end = offsets->begin + offsets->size;
1193
1194 if (unlikely((SUBBUF_OFFSET(offsets->end, buf->chan)) == 0)) {
1195 /*
1196 * The offset_end will fall at the very beginning of the next
1197 * subbuffer.
1198 */
1199 offsets->end_switch_current = 1; /* For offsets->begin */
1200 }
b5b073e2
PMF
1201 return 0;
1202}
1203
b73a4c47
PMF
1204/**
1205 * ltt_relay_reserve_slot_lockless_slow - Atomic slot reservation in a buffer.
1206 * @trace: the trace structure to log to.
1207 * @ltt_channel: channel structure
1208 * @transport_data: data structure specific to ltt relay
1209 * @data_size: size of the variable length data to log.
1210 * @slot_size: pointer to total size of the slot (out)
1211 * @buf_offset : pointer to reserved buffer offset (out)
1212 * @tsc: pointer to the tsc at the slot reservation (out)
1213 * @cpu: cpuid
b5b073e2 1214 *
b73a4c47
PMF
1215 * Return : -ENOSPC if not enough space, else returns 0.
1216 * It will take care of sub-buffer switching.
b5b073e2 1217 */
12e81b07
PMF
1218int ltt_reserve_slot_lockless_slow(struct ust_channel *chan,
1219 struct ust_trace *trace, size_t data_size,
1220 int largest_align, int cpu,
1221 struct ust_buffer **ret_buf,
1222 size_t *slot_size, long *buf_offset,
1223 u64 *tsc, unsigned int *rflags)
b5b073e2 1224{
12e81b07 1225 struct ust_buffer *buf = *ret_buf = chan->buf[cpu];
b5b073e2 1226 struct ltt_reserve_switch_offsets offsets;
b5b073e2 1227
b5b073e2
PMF
1228 offsets.size = 0;
1229
b5b073e2 1230 do {
b73a4c47
PMF
1231 if (unlikely(ltt_relay_try_reserve_slow(chan, buf, &offsets,
1232 data_size, tsc, rflags, largest_align)))
1233 return -ENOSPC;
b102c2b0 1234 } while (unlikely(uatomic_cmpxchg(&buf->offset, offsets.old,
b73a4c47 1235 offsets.end) != offsets.old));
b5b073e2
PMF
1236
1237 /*
1238 * Atomically update last_tsc. This update races against concurrent
1239 * atomic updates, but the race will always cause supplementary full TSC
1240 * events, never the opposite (missing a full TSC event when it would be
1241 * needed).
1242 */
b73a4c47 1243 save_last_tsc(buf, *tsc);
b5b073e2
PMF
1244
1245 /*
1246 * Push the reader if necessary
1247 */
b73a4c47
PMF
1248 ltt_reserve_push_reader(chan, buf, offsets.end - 1);
1249
1250 /*
1251 * Clear noref flag for this subbuffer.
1252 */
1253//ust// ltt_clear_noref_flag(chan, buf, SUBBUF_INDEX(offsets.end - 1, chan));
b5b073e2
PMF
1254
1255 /*
1256 * Switch old subbuffer if needed.
1257 */
b73a4c47
PMF
1258 if (unlikely(offsets.end_switch_old)) {
1259//ust// ltt_clear_noref_flag(chan, buf, SUBBUF_INDEX(offsets.old - 1, chan));
1260 ltt_reserve_switch_old_subbuf(chan, buf, &offsets, tsc);
10dd3941 1261 DBG("Switching %s_%d", chan->channel_name, cpu);
b73a4c47 1262 }
b5b073e2
PMF
1263
1264 /*
1265 * Populate new subbuffer.
1266 */
b73a4c47
PMF
1267 if (unlikely(offsets.begin_switch))
1268 ltt_reserve_switch_new_subbuf(chan, buf, &offsets, tsc);
1269
1270 if (unlikely(offsets.end_switch_current))
1271 ltt_reserve_end_switch_current(chan, buf, &offsets, tsc);
1272
1273 *slot_size = offsets.size;
1274 *buf_offset = offsets.begin + offsets.before_hdr_pad;
1275 return 0;
b5b073e2
PMF
1276}
1277
b5b073e2
PMF
1278static struct ltt_transport ust_relay_transport = {
1279 .name = "ustrelay",
1280 .ops = {
1281 .create_channel = ust_buffers_create_channel,
1282 .finish_channel = ltt_relay_finish_channel,
1283 .remove_channel = ltt_relay_remove_channel,
1284 .wakeup_channel = ltt_relay_async_wakeup_chan,
b5b073e2
PMF
1285 },
1286};
1287
b5b073e2
PMF
1288static char initialized = 0;
1289
1290void __attribute__((constructor)) init_ustrelay_transport(void)
1291{
1292 if(!initialized) {
1293 ltt_transport_register(&ust_relay_transport);
1294 initialized = 1;
1295 }
1296}
1297
b73a4c47 1298static void __attribute__((destructor)) ust_buffers_exit(void)
b5b073e2
PMF
1299{
1300 ltt_transport_unregister(&ust_relay_transport);
1301}
b73a4c47 1302
12e81b07 1303size_t ltt_write_event_header_slow(struct ust_channel *channel,
b73a4c47
PMF
1304 struct ust_buffer *buf, long buf_offset,
1305 u16 eID, u32 event_size,
1306 u64 tsc, unsigned int rflags)
1307{
1308 struct ltt_event_header header;
1309 u16 small_size;
1310
1311 switch (rflags) {
1312 case LTT_RFLAG_ID_SIZE_TSC:
1313 header.id_time = 29 << LTT_TSC_BITS;
1314 break;
1315 case LTT_RFLAG_ID_SIZE:
1316 header.id_time = 30 << LTT_TSC_BITS;
1317 break;
1318 case LTT_RFLAG_ID:
1319 header.id_time = 31 << LTT_TSC_BITS;
1320 break;
1321 }
1322
1323 header.id_time |= (u32)tsc & LTT_TSC_MASK;
1324 ust_buffers_write(buf, buf_offset, &header, sizeof(header));
1325 buf_offset += sizeof(header);
1326
1327 switch (rflags) {
1328 case LTT_RFLAG_ID_SIZE_TSC:
1329 small_size = (u16)min_t(u32, event_size, LTT_MAX_SMALL_SIZE);
1330 ust_buffers_write(buf, buf_offset,
1331 &eID, sizeof(u16));
1332 buf_offset += sizeof(u16);
1333 ust_buffers_write(buf, buf_offset,
1334 &small_size, sizeof(u16));
1335 buf_offset += sizeof(u16);
1336 if (small_size == LTT_MAX_SMALL_SIZE) {
1337 ust_buffers_write(buf, buf_offset,
1338 &event_size, sizeof(u32));
1339 buf_offset += sizeof(u32);
1340 }
1341 buf_offset += ltt_align(buf_offset, sizeof(u64));
1342 ust_buffers_write(buf, buf_offset,
1343 &tsc, sizeof(u64));
1344 buf_offset += sizeof(u64);
1345 break;
1346 case LTT_RFLAG_ID_SIZE:
1347 small_size = (u16)min_t(u32, event_size, LTT_MAX_SMALL_SIZE);
1348 ust_buffers_write(buf, buf_offset,
1349 &eID, sizeof(u16));
1350 buf_offset += sizeof(u16);
1351 ust_buffers_write(buf, buf_offset,
1352 &small_size, sizeof(u16));
1353 buf_offset += sizeof(u16);
1354 if (small_size == LTT_MAX_SMALL_SIZE) {
1355 ust_buffers_write(buf, buf_offset,
1356 &event_size, sizeof(u32));
1357 buf_offset += sizeof(u32);
1358 }
1359 break;
1360 case LTT_RFLAG_ID:
1361 ust_buffers_write(buf, buf_offset,
1362 &eID, sizeof(u16));
1363 buf_offset += sizeof(u16);
1364 break;
1365 }
1366
1367 return buf_offset;
1368}
This page took 0.090153 seconds and 4 git commands to generate.