Commit | Line | Data |
---|---|---|
c39c72ee PMF |
1 | /* Copyright (C) 2009 Pierre-Marc Fournier |
2 | * | |
3 | * This library is free software; you can redistribute it and/or | |
4 | * modify it under the terms of the GNU Lesser General Public | |
5 | * License as published by the Free Software Foundation; either | |
6 | * version 2.1 of the License, or (at your option) any later version. | |
7 | * | |
8 | * This library is distributed in the hope that it will be useful, | |
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
11 | * Lesser General Public License for more details. | |
12 | * | |
13 | * You should have received a copy of the GNU Lesser General Public | |
14 | * License along with this library; if not, write to the Free Software | |
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
16 | */ | |
17 | ||
872037bb | 18 | #define _GNU_SOURCE |
68c1021b PMF |
19 | #include <stdio.h> |
20 | #include <stdint.h> | |
21 | #include <signal.h> | |
22 | #include <sys/types.h> | |
23 | #include <sys/socket.h> | |
24 | #include <sys/un.h> | |
98963de4 | 25 | #include <sched.h> |
a584bc4e | 26 | #include <fcntl.h> |
3a7b90de | 27 | #include <poll.h> |
ef290fca | 28 | #include <regex.h> |
fbd8191b | 29 | |
b7ea1a1c | 30 | #include <urcu-bp.h> |
26cc7017 | 31 | |
93d0f2ea | 32 | #include <ust/marker.h> |
616ed36a | 33 | #include <ust/tracectl.h> |
c93858f1 | 34 | #include "tracer.h" |
6af64c43 | 35 | #include "usterr.h" |
d0b5f2b9 | 36 | #include "ustcomm.h" |
b73a4c47 | 37 | #include "buffers.h" |
9160b4e4 | 38 | #include "marker-control.h" |
fbd8191b | 39 | |
b02e31e5 | 40 | //#define USE_CLONE |
3847c3ba | 41 | |
68c1021b PMF |
42 | #define USTSIGNAL SIGIO |
43 | ||
98963de4 PMF |
44 | #define MAX_MSG_SIZE (100) |
45 | #define MSG_NOTIF 1 | |
46 | #define MSG_REGISTER_NOTIF 2 | |
47 | ||
a584bc4e PMF |
48 | char consumer_stack[10000]; |
49 | ||
ed1317e7 PMF |
50 | /* This should only be accessed by the constructor, before the creation |
51 | * of the listener, and then only by the listener. | |
52 | */ | |
53 | s64 pidunique = -1LL; | |
54 | ||
3a7b90de PMF |
55 | struct list_head blocked_consumers = LIST_HEAD_INIT(blocked_consumers); |
56 | ||
d0b5f2b9 PMF |
57 | static struct ustcomm_app ustcomm_app; |
58 | ||
68c1021b PMF |
59 | struct tracecmd { /* no padding */ |
60 | uint32_t size; | |
61 | uint16_t command; | |
62 | }; | |
63 | ||
f293009f PMF |
64 | /* volatile because shared between the listener and the main thread */ |
65 | volatile sig_atomic_t buffers_to_export = 0; | |
66 | ||
98963de4 PMF |
67 | struct trctl_msg { |
68 | /* size: the size of all the fields except size itself */ | |
69 | uint32_t size; | |
70 | uint16_t type; | |
71 | /* Only the necessary part of the payload is transferred. It | |
72 | * may even be none of it. | |
73 | */ | |
74 | char payload[94]; | |
75 | }; | |
68c1021b | 76 | |
a584bc4e PMF |
77 | struct consumer_channel { |
78 | int fd; | |
79 | struct ltt_channel_struct *chan; | |
80 | }; | |
81 | ||
3a7b90de PMF |
82 | struct blocked_consumer { |
83 | int fd_consumer; | |
84 | int fd_producer; | |
85 | int tmp_poll_idx; | |
86 | ||
87 | /* args to ustcomm_send_reply */ | |
88 | struct ustcomm_server server; | |
89 | struct ustcomm_source src; | |
90 | ||
b73a4c47 | 91 | /* args to ust_buffers_get_subbuf */ |
b5b073e2 | 92 | struct ust_buffer *buf; |
3a7b90de PMF |
93 | |
94 | struct list_head list; | |
95 | }; | |
96 | ||
ed1317e7 PMF |
97 | static long long make_pidunique(void) |
98 | { | |
99 | s64 retval; | |
100 | struct timeval tv; | |
101 | ||
102 | gettimeofday(&tv, NULL); | |
103 | ||
104 | retval = tv.tv_sec; | |
105 | retval <<= 32; | |
106 | retval |= tv.tv_usec; | |
107 | ||
108 | return retval; | |
109 | } | |
110 | ||
52c51a47 | 111 | static void print_markers(FILE *fp) |
fbd8191b PMF |
112 | { |
113 | struct marker_iter iter; | |
114 | ||
d0b5f2b9 | 115 | lock_markers(); |
fbd8191b PMF |
116 | marker_iter_reset(&iter); |
117 | marker_iter_start(&iter); | |
118 | ||
119 | while(iter.marker) { | |
3ea1e2fc | 120 | fprintf(fp, "marker: %s/%s %d \"%s\" %p\n", iter.marker->channel, iter.marker->name, (int)imv_read(iter.marker->state), iter.marker->format, iter.marker->location); |
fbd8191b PMF |
121 | marker_iter_next(&iter); |
122 | } | |
d0b5f2b9 | 123 | unlock_markers(); |
fbd8191b PMF |
124 | } |
125 | ||
4440ebcb | 126 | static int init_socket(void); |
68c1021b | 127 | |
26cc7017 PMF |
128 | /* This needs to be called whenever a new thread is created. It notifies |
129 | * liburcu of the new thread. | |
130 | */ | |
131 | ||
132 | void ust_register_thread(void) | |
68c1021b | 133 | { |
26cc7017 | 134 | rcu_register_thread(); |
68c1021b PMF |
135 | } |
136 | ||
98963de4 PMF |
137 | int fd_notif = -1; |
138 | void notif_cb(void) | |
139 | { | |
140 | int result; | |
141 | struct trctl_msg msg; | |
142 | ||
143 | /* FIXME: fd_notif should probably be protected by a spinlock */ | |
144 | ||
145 | if(fd_notif == -1) | |
146 | return; | |
147 | ||
148 | msg.type = MSG_NOTIF; | |
149 | msg.size = sizeof(msg.type); | |
150 | ||
151 | /* FIXME: don't block here */ | |
152 | result = write(fd_notif, &msg, msg.size+sizeof(msg.size)); | |
153 | if(result == -1) { | |
154 | PERROR("write"); | |
155 | return; | |
156 | } | |
157 | } | |
158 | ||
ad45e833 PMF |
159 | /* Ask the daemon to collect a trace called trace_name and being |
160 | * produced by this pid. | |
161 | * | |
162 | * The trace must be at least allocated. (It can also be started.) | |
163 | * This is because _ltt_trace_find is used. | |
164 | */ | |
165 | ||
166 | static void inform_consumer_daemon(const char *trace_name) | |
d0b5f2b9 | 167 | { |
204141ee | 168 | int i,j; |
b73a4c47 | 169 | struct ust_trace *trace; |
ad45e833 PMF |
170 | pid_t pid = getpid(); |
171 | int result; | |
172 | ||
173 | ltt_lock_traces(); | |
174 | ||
175 | trace = _ltt_trace_find(trace_name); | |
176 | if(trace == NULL) { | |
177 | WARN("inform_consumer_daemon: could not find trace \"%s\"; it is probably already destroyed", trace_name); | |
178 | goto finish; | |
179 | } | |
180 | ||
181 | for(i=0; i < trace->nr_channels; i++) { | |
204141ee PMF |
182 | /* iterate on all cpus */ |
183 | for(j=0; j<trace->channels[i].n_cpus; j++) { | |
184 | char *buf; | |
185 | asprintf(&buf, "%s_%d", trace->channels[i].channel_name, j); | |
186 | result = ustcomm_request_consumer(pid, buf); | |
187 | if(result == -1) { | |
188 | WARN("Failed to request collection for channel %s. Is the daemon available?", trace->channels[i].channel_name); | |
189 | /* continue even if fail */ | |
190 | } | |
191 | free(buf); | |
192 | buffers_to_export++; | |
ad45e833 PMF |
193 | } |
194 | } | |
195 | ||
196 | finish: | |
197 | ltt_unlock_traces(); | |
d0b5f2b9 | 198 | } |
fbd8191b | 199 | |
3a7b90de PMF |
200 | void process_blocked_consumers(void) |
201 | { | |
202 | int n_fds = 0; | |
203 | struct pollfd *fds; | |
204 | struct blocked_consumer *bc; | |
205 | int idx = 0; | |
206 | char inbuf; | |
207 | int result; | |
208 | ||
209 | list_for_each_entry(bc, &blocked_consumers, list) { | |
210 | n_fds++; | |
211 | } | |
212 | ||
213 | fds = (struct pollfd *) malloc(n_fds * sizeof(struct pollfd)); | |
214 | if(fds == NULL) { | |
215 | ERR("malloc returned NULL"); | |
216 | return; | |
217 | } | |
218 | ||
219 | list_for_each_entry(bc, &blocked_consumers, list) { | |
220 | fds[idx].fd = bc->fd_producer; | |
221 | fds[idx].events = POLLIN; | |
222 | bc->tmp_poll_idx = idx; | |
223 | idx++; | |
224 | } | |
225 | ||
69ba0156 PMF |
226 | while((result = poll(fds, n_fds, 0)) == -1 && errno == EINTR) |
227 | /* nothing */; | |
3a7b90de PMF |
228 | if(result == -1) { |
229 | PERROR("poll"); | |
872037bb | 230 | return; |
3a7b90de PMF |
231 | } |
232 | ||
233 | list_for_each_entry(bc, &blocked_consumers, list) { | |
234 | if(fds[bc->tmp_poll_idx].revents) { | |
235 | long consumed_old = 0; | |
236 | char *reply; | |
237 | ||
238 | result = read(bc->fd_producer, &inbuf, 1); | |
239 | if(result == -1) { | |
240 | PERROR("read"); | |
241 | continue; | |
242 | } | |
243 | if(result == 0) { | |
244 | DBG("PRODUCER END"); | |
245 | ||
246 | close(bc->fd_producer); | |
247 | ||
769d0157 | 248 | list_del(&bc->list); |
3a7b90de PMF |
249 | |
250 | result = ustcomm_send_reply(&bc->server, "END", &bc->src); | |
251 | if(result < 0) { | |
252 | ERR("ustcomm_send_reply failed"); | |
253 | continue; | |
254 | } | |
255 | ||
256 | continue; | |
257 | } | |
258 | ||
b73a4c47 | 259 | result = ust_buffers_get_subbuf(bc->buf, &consumed_old); |
3a7b90de PMF |
260 | if(result == -EAGAIN) { |
261 | WARN("missed buffer?"); | |
262 | continue; | |
263 | } | |
264 | else if(result < 0) { | |
b73a4c47 | 265 | DBG("ust_buffers_get_subbuf: error: %s", strerror(-result)); |
3a7b90de PMF |
266 | } |
267 | asprintf(&reply, "%s %ld", "OK", consumed_old); | |
268 | result = ustcomm_send_reply(&bc->server, reply, &bc->src); | |
269 | if(result < 0) { | |
270 | ERR("ustcomm_send_reply failed"); | |
271 | free(reply); | |
272 | continue; | |
273 | } | |
274 | free(reply); | |
275 | ||
769d0157 | 276 | list_del(&bc->list); |
3a7b90de PMF |
277 | } |
278 | } | |
279 | ||
280 | } | |
281 | ||
204141ee PMF |
282 | void seperate_channel_cpu(const char *channel_and_cpu, char **channel, int *cpu) |
283 | { | |
284 | const char *sep; | |
285 | ||
286 | sep = rindex(channel_and_cpu, '_'); | |
287 | if(sep == NULL) { | |
288 | *cpu = -1; | |
289 | sep = channel_and_cpu + strlen(channel_and_cpu); | |
290 | } | |
291 | else { | |
292 | *cpu = atoi(sep+1); | |
293 | } | |
294 | ||
295 | asprintf(channel, "%.*s", (int)(sep-channel_and_cpu), channel_and_cpu); | |
296 | } | |
297 | ||
298 | static int do_cmd_get_shmid(const char *recvbuf, struct ustcomm_source *src) | |
299 | { | |
300 | int retval = 0; | |
b73a4c47 | 301 | struct ust_trace *trace; |
204141ee PMF |
302 | char trace_name[] = "auto"; |
303 | int i; | |
304 | char *channel_and_cpu; | |
305 | int found = 0; | |
306 | int result; | |
307 | char *ch_name; | |
308 | int ch_cpu; | |
309 | ||
310 | DBG("get_shmid"); | |
311 | ||
312 | channel_and_cpu = nth_token(recvbuf, 1); | |
313 | if(channel_and_cpu == NULL) { | |
314 | ERR("get_shmid: cannot parse channel"); | |
315 | goto end; | |
316 | } | |
317 | ||
318 | seperate_channel_cpu(channel_and_cpu, &ch_name, &ch_cpu); | |
319 | if(ch_cpu == -1) { | |
320 | ERR("Problem parsing channel name"); | |
321 | goto free_short_chan_name; | |
322 | } | |
323 | ||
324 | ltt_lock_traces(); | |
325 | trace = _ltt_trace_find(trace_name); | |
326 | ltt_unlock_traces(); | |
327 | ||
328 | if(trace == NULL) { | |
329 | ERR("cannot find trace!"); | |
330 | retval = -1; | |
331 | goto free_short_chan_name; | |
332 | } | |
333 | ||
334 | for(i=0; i<trace->nr_channels; i++) { | |
335 | struct ust_channel *channel = &trace->channels[i]; | |
336 | struct ust_buffer *buf = channel->buf[ch_cpu]; | |
337 | ||
338 | if(!strcmp(trace->channels[i].channel_name, ch_name)) { | |
339 | char *reply; | |
340 | ||
341 | // DBG("the shmid for the requested channel is %d", buf->shmid); | |
342 | // DBG("the shmid for its buffer structure is %d", channel->buf_struct_shmids); | |
343 | asprintf(&reply, "%d %d", buf->shmid, channel->buf_struct_shmids[ch_cpu]); | |
344 | ||
345 | result = ustcomm_send_reply(&ustcomm_app.server, reply, src); | |
346 | if(result) { | |
347 | ERR("listener: get_shmid: ustcomm_send_reply failed"); | |
348 | free(reply); | |
349 | retval = -1; | |
350 | goto free_short_chan_name; | |
351 | } | |
352 | ||
353 | free(reply); | |
354 | ||
355 | found = 1; | |
356 | break; | |
357 | } | |
358 | } | |
359 | ||
360 | if(found) { | |
361 | buffers_to_export--; | |
362 | } | |
363 | else { | |
364 | ERR("get_shmid: channel not found (%s)", channel_and_cpu); | |
365 | } | |
366 | ||
367 | free_short_chan_name: | |
368 | free(ch_name); | |
369 | ||
370 | end: | |
371 | return retval; | |
372 | } | |
373 | ||
374 | static int do_cmd_get_n_subbufs(const char *recvbuf, struct ustcomm_source *src) | |
375 | { | |
376 | int retval = 0; | |
b73a4c47 | 377 | struct ust_trace *trace; |
204141ee PMF |
378 | char trace_name[] = "auto"; |
379 | int i; | |
380 | char *channel_and_cpu; | |
381 | int found = 0; | |
382 | int result; | |
383 | char *ch_name; | |
384 | int ch_cpu; | |
385 | ||
386 | DBG("get_n_subbufs"); | |
387 | ||
388 | channel_and_cpu = nth_token(recvbuf, 1); | |
389 | if(channel_and_cpu == NULL) { | |
390 | ERR("get_n_subbufs: cannot parse channel"); | |
391 | goto end; | |
392 | } | |
393 | ||
394 | seperate_channel_cpu(channel_and_cpu, &ch_name, &ch_cpu); | |
395 | if(ch_cpu == -1) { | |
396 | ERR("Problem parsing channel name"); | |
397 | goto free_short_chan_name; | |
398 | } | |
399 | ||
400 | ltt_lock_traces(); | |
401 | trace = _ltt_trace_find(trace_name); | |
402 | ltt_unlock_traces(); | |
403 | ||
404 | if(trace == NULL) { | |
405 | ERR("cannot find trace!"); | |
406 | retval = -1; | |
407 | goto free_short_chan_name; | |
408 | } | |
409 | ||
410 | for(i=0; i<trace->nr_channels; i++) { | |
411 | struct ust_channel *channel = &trace->channels[i]; | |
412 | ||
413 | if(!strcmp(trace->channels[i].channel_name, ch_name)) { | |
414 | char *reply; | |
415 | ||
416 | DBG("the n_subbufs for the requested channel is %d", channel->subbuf_cnt); | |
417 | asprintf(&reply, "%d", channel->subbuf_cnt); | |
418 | ||
419 | result = ustcomm_send_reply(&ustcomm_app.server, reply, src); | |
420 | if(result) { | |
421 | ERR("listener: get_n_subbufs: ustcomm_send_reply failed"); | |
422 | free(reply); | |
423 | retval = -1; | |
424 | goto free_short_chan_name; | |
425 | } | |
426 | ||
427 | free(reply); | |
428 | found = 1; | |
429 | break; | |
430 | } | |
431 | } | |
432 | if(found == 0) { | |
433 | ERR("get_n_subbufs: unable to find channel"); | |
434 | } | |
435 | ||
436 | free_short_chan_name: | |
437 | free(ch_name); | |
438 | ||
439 | end: | |
440 | return retval; | |
441 | } | |
442 | ||
443 | static int do_cmd_get_subbuf_size(const char *recvbuf, struct ustcomm_source *src) | |
444 | { | |
445 | int retval = 0; | |
b73a4c47 | 446 | struct ust_trace *trace; |
204141ee PMF |
447 | char trace_name[] = "auto"; |
448 | int i; | |
449 | char *channel_and_cpu; | |
450 | int found = 0; | |
451 | int result; | |
452 | char *ch_name; | |
453 | int ch_cpu; | |
454 | ||
455 | DBG("get_subbuf_size"); | |
456 | ||
457 | channel_and_cpu = nth_token(recvbuf, 1); | |
458 | if(channel_and_cpu == NULL) { | |
459 | ERR("get_subbuf_size: cannot parse channel"); | |
460 | goto end; | |
461 | } | |
462 | ||
463 | seperate_channel_cpu(channel_and_cpu, &ch_name, &ch_cpu); | |
464 | if(ch_cpu == -1) { | |
465 | ERR("Problem parsing channel name"); | |
466 | goto free_short_chan_name; | |
467 | } | |
468 | ||
469 | ltt_lock_traces(); | |
470 | trace = _ltt_trace_find(trace_name); | |
471 | ltt_unlock_traces(); | |
472 | ||
473 | if(trace == NULL) { | |
474 | ERR("cannot find trace!"); | |
475 | retval = -1; | |
476 | goto free_short_chan_name; | |
477 | } | |
478 | ||
479 | for(i=0; i<trace->nr_channels; i++) { | |
480 | struct ust_channel *channel = &trace->channels[i]; | |
481 | ||
482 | if(!strcmp(trace->channels[i].channel_name, ch_name)) { | |
483 | char *reply; | |
484 | ||
485 | DBG("the subbuf_size for the requested channel is %zd", channel->subbuf_size); | |
486 | asprintf(&reply, "%zd", channel->subbuf_size); | |
487 | ||
488 | result = ustcomm_send_reply(&ustcomm_app.server, reply, src); | |
489 | if(result) { | |
490 | ERR("listener: get_subbuf_size: ustcomm_send_reply failed"); | |
491 | free(reply); | |
492 | retval = -1; | |
493 | goto free_short_chan_name; | |
494 | } | |
495 | ||
496 | free(reply); | |
497 | found = 1; | |
498 | break; | |
499 | } | |
500 | } | |
501 | if(found == 0) { | |
502 | ERR("get_subbuf_size: unable to find channel"); | |
503 | } | |
504 | ||
505 | free_short_chan_name: | |
506 | free(ch_name); | |
507 | ||
508 | end: | |
509 | return retval; | |
510 | } | |
511 | ||
512 | static int do_cmd_get_subbuffer(const char *recvbuf, struct ustcomm_source *src) | |
513 | { | |
514 | int retval = 0; | |
b73a4c47 | 515 | struct ust_trace *trace; |
204141ee PMF |
516 | char trace_name[] = "auto"; |
517 | int i; | |
518 | char *channel_and_cpu; | |
519 | int found = 0; | |
520 | char *ch_name; | |
521 | int ch_cpu; | |
522 | ||
523 | DBG("get_subbuf"); | |
524 | ||
525 | channel_and_cpu = nth_token(recvbuf, 1); | |
526 | if(channel_and_cpu == NULL) { | |
527 | ERR("get_subbuf: cannot parse channel"); | |
528 | goto end; | |
529 | } | |
530 | ||
531 | seperate_channel_cpu(channel_and_cpu, &ch_name, &ch_cpu); | |
532 | if(ch_cpu == -1) { | |
533 | ERR("Problem parsing channel name"); | |
534 | goto free_short_chan_name; | |
535 | } | |
536 | ||
537 | ltt_lock_traces(); | |
538 | trace = _ltt_trace_find(trace_name); | |
539 | ltt_unlock_traces(); | |
540 | ||
541 | if(trace == NULL) { | |
542 | ERR("cannot find trace!"); | |
543 | retval = -1; | |
544 | goto free_short_chan_name; | |
545 | } | |
546 | ||
547 | for(i=0; i<trace->nr_channels; i++) { | |
548 | struct ust_channel *channel = &trace->channels[i]; | |
549 | ||
550 | if(!strcmp(trace->channels[i].channel_name, ch_name)) { | |
551 | struct ust_buffer *buf = channel->buf[ch_cpu]; | |
552 | struct blocked_consumer *bc; | |
553 | ||
554 | found = 1; | |
555 | ||
556 | bc = (struct blocked_consumer *) malloc(sizeof(struct blocked_consumer)); | |
557 | if(bc == NULL) { | |
558 | ERR("malloc returned NULL"); | |
559 | goto free_short_chan_name; | |
560 | } | |
561 | bc->fd_consumer = src->fd; | |
562 | bc->fd_producer = buf->data_ready_fd_read; | |
563 | bc->buf = buf; | |
564 | bc->src = *src; | |
565 | bc->server = ustcomm_app.server; | |
566 | ||
567 | list_add(&bc->list, &blocked_consumers); | |
568 | ||
569 | break; | |
570 | } | |
571 | } | |
572 | if(found == 0) { | |
573 | ERR("get_subbuf: unable to find channel"); | |
574 | } | |
575 | ||
576 | free_short_chan_name: | |
577 | free(ch_name); | |
578 | ||
579 | end: | |
580 | return retval; | |
581 | } | |
582 | ||
583 | static int do_cmd_put_subbuffer(const char *recvbuf, struct ustcomm_source *src) | |
584 | { | |
585 | int retval = 0; | |
b73a4c47 | 586 | struct ust_trace *trace; |
204141ee PMF |
587 | char trace_name[] = "auto"; |
588 | int i; | |
589 | char *channel_and_cpu; | |
590 | int found = 0; | |
591 | int result; | |
592 | char *ch_name; | |
593 | int ch_cpu; | |
594 | long consumed_old; | |
595 | char *consumed_old_str; | |
596 | char *endptr; | |
597 | ||
598 | DBG("put_subbuf"); | |
599 | ||
600 | channel_and_cpu = strdup_malloc(nth_token(recvbuf, 1)); | |
601 | if(channel_and_cpu == NULL) { | |
602 | ERR("put_subbuf_size: cannot parse channel"); | |
603 | retval = -1; | |
604 | goto end; | |
605 | } | |
606 | ||
607 | consumed_old_str = strdup_malloc(nth_token(recvbuf, 2)); | |
608 | if(consumed_old_str == NULL) { | |
609 | ERR("put_subbuf: cannot parse consumed_old"); | |
610 | retval = -1; | |
611 | goto free_channel_and_cpu; | |
612 | } | |
613 | consumed_old = strtol(consumed_old_str, &endptr, 10); | |
614 | if(*endptr != '\0') { | |
615 | ERR("put_subbuf: invalid value for consumed_old"); | |
616 | retval = -1; | |
617 | goto free_consumed_old_str; | |
618 | } | |
619 | ||
620 | seperate_channel_cpu(channel_and_cpu, &ch_name, &ch_cpu); | |
621 | if(ch_cpu == -1) { | |
622 | ERR("Problem parsing channel name"); | |
623 | retval = -1; | |
624 | goto free_short_chan_name; | |
625 | } | |
626 | ||
627 | ltt_lock_traces(); | |
628 | trace = _ltt_trace_find(trace_name); | |
629 | ltt_unlock_traces(); | |
630 | ||
631 | if(trace == NULL) { | |
632 | ERR("cannot find trace!"); | |
633 | retval = -1; | |
634 | goto free_short_chan_name; | |
635 | } | |
636 | ||
637 | for(i=0; i<trace->nr_channels; i++) { | |
638 | struct ust_channel *channel = &trace->channels[i]; | |
639 | ||
640 | if(!strcmp(trace->channels[i].channel_name, ch_name)) { | |
641 | struct ust_buffer *buf = channel->buf[ch_cpu]; | |
642 | char *reply; | |
643 | long consumed_old=0; | |
644 | ||
645 | found = 1; | |
646 | ||
b73a4c47 | 647 | result = ust_buffers_put_subbuf(buf, consumed_old); |
204141ee | 648 | if(result < 0) { |
b73a4c47 | 649 | WARN("ust_buffers_put_subbuf: error (subbuf=%s)", channel_and_cpu); |
204141ee PMF |
650 | asprintf(&reply, "%s", "ERROR"); |
651 | } | |
652 | else { | |
b73a4c47 | 653 | DBG("ust_buffers_put_subbuf: success (subbuf=%s)", channel_and_cpu); |
204141ee PMF |
654 | asprintf(&reply, "%s", "OK"); |
655 | } | |
656 | ||
657 | result = ustcomm_send_reply(&ustcomm_app.server, reply, src); | |
658 | if(result) { | |
659 | ERR("listener: put_subbuf: ustcomm_send_reply failed"); | |
660 | free(reply); | |
661 | retval = -1; | |
662 | goto free_channel_and_cpu; | |
663 | } | |
664 | ||
665 | free(reply); | |
666 | break; | |
667 | } | |
668 | } | |
669 | if(found == 0) { | |
670 | ERR("get_subbuf_size: unable to find channel"); | |
671 | } | |
672 | ||
673 | free_channel_and_cpu: | |
674 | free(channel_and_cpu); | |
675 | free_consumed_old_str: | |
676 | free(consumed_old_str); | |
677 | free_short_chan_name: | |
678 | free(ch_name); | |
679 | ||
680 | end: | |
681 | return retval; | |
682 | } | |
683 | ||
872037bb | 684 | void *listener_main(void *p) |
98963de4 PMF |
685 | { |
686 | int result; | |
687 | ||
26cc7017 PMF |
688 | ust_register_thread(); |
689 | ||
b0540e11 PMF |
690 | DBG("LISTENER"); |
691 | ||
98963de4 | 692 | for(;;) { |
aafb1650 PMF |
693 | char trace_name[] = "auto"; |
694 | char trace_type[] = "ustrelay"; | |
d0b5f2b9 PMF |
695 | char *recvbuf; |
696 | int len; | |
b02e31e5 | 697 | struct ustcomm_source src; |
98963de4 | 698 | |
3a7b90de PMF |
699 | process_blocked_consumers(); |
700 | ||
701 | result = ustcomm_app_recv_message(&ustcomm_app, &recvbuf, &src, 5); | |
702 | if(result < 0) { | |
d0b5f2b9 PMF |
703 | WARN("error in ustcomm_app_recv_message"); |
704 | continue; | |
705 | } | |
3a7b90de PMF |
706 | else if(result == 0) { |
707 | /* no message */ | |
708 | continue; | |
709 | } | |
98963de4 | 710 | |
08230db7 | 711 | DBG("received a message! it's: %s", recvbuf); |
d0b5f2b9 | 712 | len = strlen(recvbuf); |
98963de4 | 713 | |
d0b5f2b9 | 714 | if(!strcmp(recvbuf, "print_markers")) { |
52c51a47 PMF |
715 | print_markers(stderr); |
716 | } | |
717 | else if(!strcmp(recvbuf, "list_markers")) { | |
718 | char *ptr; | |
719 | size_t size; | |
720 | FILE *fp; | |
721 | ||
722 | fp = open_memstream(&ptr, &size); | |
723 | print_markers(fp); | |
724 | fclose(fp); | |
725 | ||
726 | result = ustcomm_send_reply(&ustcomm_app.server, ptr, &src); | |
727 | ||
728 | free(ptr); | |
729 | } | |
730 | else if(!strcmp(recvbuf, "start")) { | |
731 | /* start is an operation that setups the trace, allocates it and starts it */ | |
732 | result = ltt_trace_setup(trace_name); | |
733 | if(result < 0) { | |
734 | ERR("ltt_trace_setup failed"); | |
872037bb | 735 | return (void *)1; |
52c51a47 PMF |
736 | } |
737 | ||
738 | result = ltt_trace_set_type(trace_name, trace_type); | |
739 | if(result < 0) { | |
740 | ERR("ltt_trace_set_type failed"); | |
872037bb | 741 | return (void *)1; |
52c51a47 PMF |
742 | } |
743 | ||
744 | result = ltt_trace_alloc(trace_name); | |
745 | if(result < 0) { | |
746 | ERR("ltt_trace_alloc failed"); | |
872037bb | 747 | return (void *)1; |
52c51a47 PMF |
748 | } |
749 | ||
ad45e833 | 750 | inform_consumer_daemon(trace_name); |
52c51a47 PMF |
751 | |
752 | result = ltt_trace_start(trace_name); | |
753 | if(result < 0) { | |
754 | ERR("ltt_trace_start failed"); | |
755 | continue; | |
756 | } | |
d0b5f2b9 PMF |
757 | } |
758 | else if(!strcmp(recvbuf, "trace_setup")) { | |
759 | DBG("trace setup"); | |
fbd8191b | 760 | |
d0b5f2b9 PMF |
761 | result = ltt_trace_setup(trace_name); |
762 | if(result < 0) { | |
763 | ERR("ltt_trace_setup failed"); | |
872037bb | 764 | return (void *)1; |
fbd8191b | 765 | } |
d0b5f2b9 PMF |
766 | |
767 | result = ltt_trace_set_type(trace_name, trace_type); | |
768 | if(result < 0) { | |
769 | ERR("ltt_trace_set_type failed"); | |
872037bb | 770 | return (void *)1; |
fbd8191b | 771 | } |
d0b5f2b9 PMF |
772 | } |
773 | else if(!strcmp(recvbuf, "trace_alloc")) { | |
774 | DBG("trace alloc"); | |
775 | ||
776 | result = ltt_trace_alloc(trace_name); | |
777 | if(result < 0) { | |
778 | ERR("ltt_trace_alloc failed"); | |
872037bb | 779 | return (void *)1; |
fbd8191b | 780 | } |
d0b5f2b9 | 781 | } |
62ec620f PMF |
782 | else if(!strcmp(recvbuf, "trace_create")) { |
783 | DBG("trace create"); | |
784 | ||
785 | result = ltt_trace_setup(trace_name); | |
786 | if(result < 0) { | |
787 | ERR("ltt_trace_setup failed"); | |
788 | return (void *)1; | |
789 | } | |
790 | ||
791 | result = ltt_trace_set_type(trace_name, trace_type); | |
792 | if(result < 0) { | |
793 | ERR("ltt_trace_set_type failed"); | |
794 | return (void *)1; | |
795 | } | |
796 | ||
797 | result = ltt_trace_alloc(trace_name); | |
798 | if(result < 0) { | |
799 | ERR("ltt_trace_alloc failed"); | |
800 | return (void *)1; | |
801 | } | |
802 | ||
803 | inform_consumer_daemon(trace_name); | |
804 | } | |
d0b5f2b9 PMF |
805 | else if(!strcmp(recvbuf, "trace_start")) { |
806 | DBG("trace start"); | |
807 | ||
808 | result = ltt_trace_start(trace_name); | |
809 | if(result < 0) { | |
810 | ERR("ltt_trace_start failed"); | |
811 | continue; | |
fbd8191b | 812 | } |
d0b5f2b9 PMF |
813 | } |
814 | else if(!strcmp(recvbuf, "trace_stop")) { | |
815 | DBG("trace stop"); | |
816 | ||
817 | result = ltt_trace_stop(trace_name); | |
818 | if(result < 0) { | |
819 | ERR("ltt_trace_stop failed"); | |
872037bb | 820 | return (void *)1; |
aafb1650 | 821 | } |
d0b5f2b9 PMF |
822 | } |
823 | else if(!strcmp(recvbuf, "trace_destroy")) { | |
aafb1650 | 824 | |
d0b5f2b9 | 825 | DBG("trace destroy"); |
aafb1650 | 826 | |
d0b5f2b9 PMF |
827 | result = ltt_trace_destroy(trace_name); |
828 | if(result < 0) { | |
829 | ERR("ltt_trace_destroy failed"); | |
872037bb | 830 | return (void *)1; |
fbd8191b | 831 | } |
98963de4 | 832 | } |
b02e31e5 | 833 | else if(nth_token_is(recvbuf, "get_shmid", 0) == 1) { |
204141ee | 834 | do_cmd_get_shmid(recvbuf, &src); |
811e4b93 PMF |
835 | } |
836 | else if(nth_token_is(recvbuf, "get_n_subbufs", 0) == 1) { | |
204141ee | 837 | do_cmd_get_n_subbufs(recvbuf, &src); |
811e4b93 PMF |
838 | } |
839 | else if(nth_token_is(recvbuf, "get_subbuf_size", 0) == 1) { | |
204141ee | 840 | do_cmd_get_subbuf_size(recvbuf, &src); |
3847c3ba | 841 | } |
b02e31e5 PMF |
842 | else if(nth_token_is(recvbuf, "load_probe_lib", 0) == 1) { |
843 | char *libfile; | |
844 | ||
845 | libfile = nth_token(recvbuf, 1); | |
846 | ||
847 | DBG("load_probe_lib loading %s", libfile); | |
204141ee PMF |
848 | |
849 | free(libfile); | |
b02e31e5 | 850 | } |
688760ef | 851 | else if(nth_token_is(recvbuf, "get_subbuffer", 0) == 1) { |
204141ee | 852 | do_cmd_get_subbuffer(recvbuf, &src); |
688760ef PMF |
853 | } |
854 | else if(nth_token_is(recvbuf, "put_subbuffer", 0) == 1) { | |
204141ee | 855 | do_cmd_put_subbuffer(recvbuf, &src); |
688760ef | 856 | } |
52c51a47 PMF |
857 | else if(nth_token_is(recvbuf, "enable_marker", 0) == 1) { |
858 | char *channel_slash_name = nth_token(recvbuf, 1); | |
859 | char channel_name[256]=""; | |
860 | char marker_name[256]=""; | |
52c51a47 PMF |
861 | |
862 | result = sscanf(channel_slash_name, "%255[^/]/%255s", channel_name, marker_name); | |
863 | ||
864 | if(channel_name == NULL || marker_name == NULL) { | |
865 | WARN("invalid marker name"); | |
866 | goto next_cmd; | |
867 | } | |
52c51a47 PMF |
868 | |
869 | result = ltt_marker_connect(channel_name, marker_name, "default"); | |
870 | if(result < 0) { | |
871 | WARN("could not enable marker; channel=%s, name=%s", channel_name, marker_name); | |
872 | } | |
873 | } | |
874 | else if(nth_token_is(recvbuf, "disable_marker", 0) == 1) { | |
875 | char *channel_slash_name = nth_token(recvbuf, 1); | |
876 | char *marker_name; | |
877 | char *channel_name; | |
52c51a47 PMF |
878 | |
879 | result = sscanf(channel_slash_name, "%a[^/]/%as", &channel_name, &marker_name); | |
880 | ||
881 | if(marker_name == NULL) { | |
882 | } | |
52c51a47 PMF |
883 | |
884 | result = ltt_marker_disconnect(channel_name, marker_name, "default"); | |
885 | if(result < 0) { | |
886 | WARN("could not disable marker; channel=%s, name=%s", channel_name, marker_name); | |
887 | } | |
888 | } | |
ed1317e7 PMF |
889 | else if(nth_token_is(recvbuf, "get_pidunique", 0) == 1) { |
890 | char *reply; | |
891 | ||
892 | asprintf(&reply, "%lld", pidunique); | |
893 | ||
894 | result = ustcomm_send_reply(&ustcomm_app.server, reply, &src); | |
895 | if(result) { | |
896 | ERR("listener: get_pidunique: ustcomm_send_reply failed"); | |
897 | goto next_cmd; | |
898 | } | |
899 | ||
900 | free(reply); | |
901 | } | |
3a7b90de | 902 | // else if(nth_token_is(recvbuf, "get_notifications", 0) == 1) { |
b73a4c47 | 903 | // struct ust_trace *trace; |
3a7b90de PMF |
904 | // char trace_name[] = "auto"; |
905 | // int i; | |
906 | // char *channel_name; | |
907 | // | |
908 | // DBG("get_notifications"); | |
909 | // | |
910 | // channel_name = strdup_malloc(nth_token(recvbuf, 1)); | |
911 | // if(channel_name == NULL) { | |
912 | // ERR("put_subbuf_size: cannot parse channel"); | |
913 | // goto next_cmd; | |
914 | // } | |
915 | // | |
916 | // ltt_lock_traces(); | |
917 | // trace = _ltt_trace_find(trace_name); | |
918 | // ltt_unlock_traces(); | |
919 | // | |
920 | // if(trace == NULL) { | |
63fe14e5 | 921 | // ERR("cannot find trace!"); |
872037bb | 922 | // return (void *)1; |
3a7b90de PMF |
923 | // } |
924 | // | |
925 | // for(i=0; i<trace->nr_channels; i++) { | |
926 | // struct rchan *rchan = trace->channels[i].trans_channel_data; | |
927 | // int fd; | |
928 | // | |
929 | // if(!strcmp(trace->channels[i].channel_name, channel_name)) { | |
930 | // struct rchan_buf *rbuf = rchan->buf; | |
931 | // struct ltt_channel_buf_struct *lttbuf = trace->channels[i].buf; | |
932 | // | |
933 | // result = fd = ustcomm_app_detach_client(&ustcomm_app, &src); | |
934 | // if(result == -1) { | |
935 | // ERR("ustcomm_app_detach_client failed"); | |
936 | // goto next_cmd; | |
937 | // } | |
938 | // | |
939 | // lttbuf->wake_consumer_arg = (void *) fd; | |
940 | // | |
941 | // smp_wmb(); | |
942 | // | |
943 | // lttbuf->call_wake_consumer = 1; | |
944 | // | |
945 | // break; | |
946 | // } | |
947 | // } | |
948 | // | |
949 | // free(channel_name); | |
950 | // } | |
688760ef PMF |
951 | else { |
952 | ERR("unable to parse message: %s", recvbuf); | |
953 | } | |
d0b5f2b9 | 954 | |
811e4b93 | 955 | next_cmd: |
d0b5f2b9 | 956 | free(recvbuf); |
98963de4 PMF |
957 | } |
958 | } | |
959 | ||
7958de40 | 960 | volatile sig_atomic_t have_listener = 0; |
4440ebcb | 961 | |
98963de4 PMF |
962 | void create_listener(void) |
963 | { | |
9160b4e4 | 964 | #ifdef USE_CLONE |
98963de4 | 965 | static char listener_stack[16384]; |
c5fdc888 | 966 | int result; |
4440ebcb PMF |
967 | #else |
968 | pthread_t thread; | |
9160b4e4 | 969 | #endif |
98963de4 | 970 | |
c5fdc888 PMF |
971 | if(have_listener) { |
972 | WARN("not creating listener because we already had one"); | |
4440ebcb | 973 | return; |
c5fdc888 | 974 | } |
4440ebcb | 975 | |
3847c3ba | 976 | #ifdef USE_CLONE |
c5fdc888 | 977 | result = clone((int (*)(void *)) listener_main, listener_stack+sizeof(listener_stack)-1, CLONE_FS | CLONE_FILES | CLONE_VM | CLONE_SIGHAND | CLONE_THREAD, NULL); |
98963de4 PMF |
978 | if(result == -1) { |
979 | perror("clone"); | |
4440ebcb | 980 | return; |
98963de4 | 981 | } |
3847c3ba | 982 | #else |
b0540e11 | 983 | |
3847c3ba PMF |
984 | pthread_create(&thread, NULL, listener_main, NULL); |
985 | #endif | |
4440ebcb PMF |
986 | |
987 | have_listener = 1; | |
98963de4 PMF |
988 | } |
989 | ||
98963de4 | 990 | static int init_socket(void) |
68c1021b | 991 | { |
d0b5f2b9 | 992 | return ustcomm_init_app(getpid(), &ustcomm_app); |
68c1021b PMF |
993 | } |
994 | ||
5de74e51 PMF |
995 | #define AUTOPROBE_DISABLED 0 |
996 | #define AUTOPROBE_ENABLE_ALL 1 | |
997 | #define AUTOPROBE_ENABLE_REGEX 2 | |
998 | static int autoprobe_method = AUTOPROBE_DISABLED; | |
999 | static regex_t autoprobe_regex; | |
ef290fca | 1000 | |
20b37a31 | 1001 | static void auto_probe_connect(struct marker *m) |
68c1021b PMF |
1002 | { |
1003 | int result; | |
1004 | ||
5de74e51 PMF |
1005 | char* concat_name = NULL; |
1006 | const char *probe_name = "default"; | |
ef290fca | 1007 | |
5de74e51 | 1008 | if(autoprobe_method == AUTOPROBE_DISABLED) { |
ef290fca PMF |
1009 | return; |
1010 | } | |
5de74e51 PMF |
1011 | else if(autoprobe_method == AUTOPROBE_ENABLE_REGEX) { |
1012 | result = asprintf(&concat_name, "%s/%s", m->channel, m->name); | |
1013 | if(result == -1) { | |
1014 | ERR("auto_probe_connect: asprintf failed (marker %s/%s)", | |
1015 | m->channel, m->name); | |
1016 | return; | |
1017 | } | |
1018 | if (regexec(&autoprobe_regex, concat_name, 0, NULL, 0)) { | |
1019 | free(concat_name); | |
1020 | return; | |
1021 | } | |
1022 | free(concat_name); | |
ef290fca PMF |
1023 | } |
1024 | ||
5de74e51 | 1025 | result = ltt_marker_connect(m->channel, m->name, probe_name); |
acbf228b PMF |
1026 | if(result && result != -EEXIST) |
1027 | ERR("ltt_marker_connect (marker = %s/%s, errno = %d)", m->channel, m->name, -result); | |
20b37a31 | 1028 | |
3ea1e2fc | 1029 | DBG("auto connected marker %s (addr: %p) %s to probe default", m->channel, m, m->name); |
ef290fca | 1030 | |
20b37a31 PMF |
1031 | } |
1032 | ||
c1083aa8 | 1033 | static void __attribute__((constructor)) init() |
20b37a31 PMF |
1034 | { |
1035 | int result; | |
5de74e51 | 1036 | char* autoprobe_val = NULL; |
20b37a31 | 1037 | |
ed1317e7 PMF |
1038 | /* Assign the pidunique, to be able to differentiate the processes with same |
1039 | * pid, (before and after an exec). | |
1040 | */ | |
1041 | pidunique = make_pidunique(); | |
1042 | ||
4440ebcb | 1043 | /* Initialize RCU in case the constructor order is not good. */ |
5a66a1f2 | 1044 | rcu_init(); |
4440ebcb PMF |
1045 | |
1046 | /* It is important to do this before events start to be generated. */ | |
1047 | ust_register_thread(); | |
1048 | ||
5de74e51 | 1049 | DBG("Tracectl constructor"); |
20b37a31 | 1050 | |
3847c3ba PMF |
1051 | /* Must create socket before signal handler to prevent races. |
1052 | */ | |
1053 | result = init_socket(); | |
1054 | if(result == -1) { | |
1055 | ERR("init_socket error"); | |
1056 | return; | |
1057 | } | |
2944a629 PMF |
1058 | |
1059 | create_listener(); | |
68c1021b | 1060 | |
5de74e51 PMF |
1061 | autoprobe_val = getenv("UST_AUTOPROBE"); |
1062 | if(autoprobe_val) { | |
4440ebcb PMF |
1063 | struct marker_iter iter; |
1064 | ||
08230db7 | 1065 | DBG("Autoprobe enabled."); |
4440ebcb PMF |
1066 | |
1067 | /* Ensure markers are initialized */ | |
1068 | //init_markers(); | |
1069 | ||
1070 | /* Ensure marker control is initialized, for the probe */ | |
1071 | init_marker_control(); | |
1072 | ||
1073 | /* first, set the callback that will connect the | |
1074 | * probe on new markers | |
1075 | */ | |
5de74e51 PMF |
1076 | if(autoprobe_val[0] == '/') { |
1077 | result = regcomp(&autoprobe_regex, autoprobe_val+1, 0); | |
1078 | if (result) { | |
1079 | char regexerr[150]; | |
1080 | ||
1081 | regerror(result, &autoprobe_regex, regexerr, sizeof(regexerr)); | |
1082 | ERR("cannot parse regex %s (%s), will ignore UST_AUTOPROBE", autoprobe_val, regexerr); | |
1083 | /* don't crash the application just for this */ | |
1084 | } | |
1085 | else { | |
1086 | autoprobe_method = AUTOPROBE_ENABLE_REGEX; | |
1087 | } | |
ef290fca | 1088 | } |
5de74e51 PMF |
1089 | else { |
1090 | /* just enable all instrumentation */ | |
1091 | autoprobe_method = AUTOPROBE_ENABLE_ALL; | |
1092 | } | |
1093 | ||
1094 | marker_set_new_marker_cb(auto_probe_connect); | |
1095 | ||
4440ebcb PMF |
1096 | /* Now, connect the probes that were already registered. */ |
1097 | marker_iter_reset(&iter); | |
1098 | marker_iter_start(&iter); | |
1099 | ||
08230db7 | 1100 | DBG("now iterating on markers already registered"); |
4440ebcb | 1101 | while(iter.marker) { |
08230db7 | 1102 | DBG("now iterating on marker %s", iter.marker->name); |
4440ebcb PMF |
1103 | auto_probe_connect(iter.marker); |
1104 | marker_iter_next(&iter); | |
1105 | } | |
1106 | } | |
1107 | ||
4db647c5 PMF |
1108 | if(getenv("UST_TRACE")) { |
1109 | char trace_name[] = "auto"; | |
1110 | char trace_type[] = "ustrelay"; | |
1111 | ||
1112 | DBG("starting early tracing"); | |
1113 | ||
1114 | /* Ensure marker control is initialized */ | |
1115 | init_marker_control(); | |
1116 | ||
4db647c5 PMF |
1117 | /* Ensure markers are initialized */ |
1118 | init_markers(); | |
1119 | ||
027ffc9d PMF |
1120 | /* FIXME: When starting early tracing (here), depending on the |
1121 | * order of constructors, it is very well possible some marker | |
1122 | * sections are not yet registered. Because of this, some | |
1123 | * channels may not be registered. Yet, we are about to ask the | |
1124 | * daemon to collect the channels. Channels which are not yet | |
1125 | * registered will not be collected. | |
1126 | * | |
1127 | * Currently, in LTTng, there is no way to add a channel after | |
1128 | * trace start. The reason for this is that it induces complex | |
1129 | * concurrency issues on the trace structures, which can only | |
1130 | * be resolved using RCU. This has not been done yet. As a | |
1131 | * workaround, we are forcing the registration of the "ust" | |
1132 | * channel here. This is the only channel (apart from metadata) | |
1133 | * that can be reliably used in early tracing. | |
1134 | * | |
1135 | * Non-early tracing does not have this problem and can use | |
1136 | * arbitrary channel names. | |
1137 | */ | |
20b37a31 | 1138 | ltt_channels_register("ust"); |
4db647c5 PMF |
1139 | |
1140 | result = ltt_trace_setup(trace_name); | |
1141 | if(result < 0) { | |
1142 | ERR("ltt_trace_setup failed"); | |
1143 | return; | |
1144 | } | |
1145 | ||
1146 | result = ltt_trace_set_type(trace_name, trace_type); | |
1147 | if(result < 0) { | |
1148 | ERR("ltt_trace_set_type failed"); | |
1149 | return; | |
1150 | } | |
1151 | ||
1152 | result = ltt_trace_alloc(trace_name); | |
1153 | if(result < 0) { | |
1154 | ERR("ltt_trace_alloc failed"); | |
1155 | return; | |
1156 | } | |
1157 | ||
1158 | result = ltt_trace_start(trace_name); | |
1159 | if(result < 0) { | |
1160 | ERR("ltt_trace_start failed"); | |
1161 | return; | |
1162 | } | |
60e57148 PMF |
1163 | |
1164 | /* Do this after the trace is started in order to avoid creating confusion | |
1165 | * if the trace fails to start. */ | |
1166 | inform_consumer_daemon(trace_name); | |
4db647c5 PMF |
1167 | } |
1168 | ||
68c1021b PMF |
1169 | |
1170 | return; | |
1171 | ||
1172 | /* should decrementally destroy stuff if error */ | |
1173 | ||
1174 | } | |
1175 | ||
1176 | /* This is only called if we terminate normally, not with an unhandled signal, | |
6d45c11a PMF |
1177 | * so we cannot rely on it. However, for now, LTTV requires that the header of |
1178 | * the last sub-buffer contain a valid end time for the trace. This is done | |
1179 | * automatically only when the trace is properly stopped. | |
1180 | * | |
1181 | * If the traced program crashed, it is always possible to manually add the | |
1182 | * right value in the header, or to open the trace in text mode. | |
1183 | * | |
1184 | * FIXME: Fix LTTV so it doesn't need this. | |
1185 | */ | |
68c1021b | 1186 | |
6d45c11a | 1187 | static void destroy_traces(void) |
68c1021b | 1188 | { |
6d45c11a | 1189 | int result; |
a584bc4e PMF |
1190 | |
1191 | /* if trace running, finish it */ | |
1192 | ||
6d45c11a | 1193 | DBG("destructor stopping traces"); |
a584bc4e | 1194 | |
6d45c11a PMF |
1195 | result = ltt_trace_stop("auto"); |
1196 | if(result == -1) { | |
1197 | ERR("ltt_trace_stop error"); | |
1198 | } | |
1199 | ||
1200 | result = ltt_trace_destroy("auto"); | |
1201 | if(result == -1) { | |
1202 | ERR("ltt_trace_destroy error"); | |
1203 | } | |
68c1021b | 1204 | } |
1e2944cb | 1205 | |
97d9b88b PMF |
1206 | static int trace_recording(void) |
1207 | { | |
1208 | int retval = 0; | |
b73a4c47 | 1209 | struct ust_trace *trace; |
97d9b88b PMF |
1210 | |
1211 | ltt_lock_traces(); | |
1212 | ||
1213 | list_for_each_entry(trace, <t_traces.head, list) { | |
1214 | if(trace->active) { | |
1215 | retval = 1; | |
1216 | break; | |
1217 | } | |
1218 | } | |
1219 | ||
1220 | ltt_unlock_traces(); | |
1221 | ||
1222 | return retval; | |
1223 | } | |
1224 | ||
f293009f | 1225 | #if 0 |
97d9b88b PMF |
1226 | static int have_consumer(void) |
1227 | { | |
1228 | return !list_empty(&blocked_consumers); | |
1229 | } | |
f293009f | 1230 | #endif |
97d9b88b | 1231 | |
f293009f | 1232 | int restarting_usleep(useconds_t usecs) |
97d9b88b PMF |
1233 | { |
1234 | struct timespec tv; | |
1235 | int result; | |
1236 | ||
f293009f PMF |
1237 | tv.tv_sec = 0; |
1238 | tv.tv_nsec = usecs * 1000; | |
97d9b88b PMF |
1239 | |
1240 | do { | |
1241 | result = nanosleep(&tv, &tv); | |
1242 | } while(result == -1 && errno == EINTR); | |
1243 | ||
1244 | return result; | |
1245 | } | |
1246 | ||
f293009f PMF |
1247 | /* This destructor keeps the process alive for a few seconds in order |
1248 | * to leave time to ustd to connect to its buffers. This is necessary | |
1249 | * for programs whose execution is very short. It is also useful in all | |
1250 | * programs when tracing is started close to the end of the program | |
1251 | * execution. | |
1252 | * | |
1253 | * FIXME: For now, this only works for the first trace created in a | |
1254 | * process. | |
1255 | */ | |
1256 | ||
97d9b88b PMF |
1257 | static void __attribute__((destructor)) keepalive() |
1258 | { | |
f293009f | 1259 | if(trace_recording() && buffers_to_export) { |
c472cce0 | 1260 | int total = 0; |
f293009f PMF |
1261 | DBG("Keeping process alive for consumer daemon..."); |
1262 | while(buffers_to_export) { | |
1263 | const int interv = 200000; | |
c472cce0 | 1264 | restarting_usleep(interv); |
f293009f PMF |
1265 | total += interv; |
1266 | ||
1267 | if(total >= 3000000) { | |
c472cce0 | 1268 | WARN("non-consumed buffers remaining after wait limit; not waiting anymore"); |
f293009f PMF |
1269 | break; |
1270 | } | |
1271 | } | |
1272 | DBG("Finally dying..."); | |
1273 | } | |
6d45c11a PMF |
1274 | |
1275 | destroy_traces(); | |
1276 | ||
1277 | ustcomm_fini_app(&ustcomm_app); | |
97d9b88b | 1278 | } |
97d9b88b | 1279 | |
775c8a3f | 1280 | void ust_potential_exec(void) |
c396a841 PMF |
1281 | { |
1282 | trace_mark(ust, potential_exec, MARK_NOARGS); | |
1283 | ||
775c8a3f PMF |
1284 | DBG("test"); |
1285 | ||
c396a841 PMF |
1286 | keepalive(); |
1287 | } | |
1288 | ||
1e2944cb PMF |
1289 | /* Notify ust that there was a fork. This needs to be called inside |
1290 | * the new process, anytime a process whose memory is not shared with | |
1291 | * the parent is created. If this function is not called, the events | |
1292 | * of the new process will not be collected. | |
616ed36a PMF |
1293 | * |
1294 | * Signals should be disabled before the fork and reenabled only after | |
1295 | * this call in order to guarantee tracing is not started before ust_fork() | |
1296 | * sanitizes the new process. | |
1e2944cb PMF |
1297 | */ |
1298 | ||
616ed36a | 1299 | static void ust_fork(void) |
1e2944cb | 1300 | { |
99b72dc0 PMF |
1301 | struct blocked_consumer *bc; |
1302 | struct blocked_consumer *deletable_bc = NULL; | |
1303 | int result; | |
1304 | ||
1e2944cb PMF |
1305 | DBG("ust: forking"); |
1306 | ltt_trace_stop("auto"); | |
1307 | ltt_trace_destroy("auto"); | |
99b72dc0 PMF |
1308 | /* Delete all active connections */ |
1309 | ustcomm_close_all_connections(&ustcomm_app.server); | |
1310 | ||
1311 | /* Delete all blocked consumers */ | |
1312 | list_for_each_entry(bc, &blocked_consumers, list) { | |
d9ce395d PMF |
1313 | close(bc->fd_producer); |
1314 | close(bc->fd_consumer); | |
99b72dc0 PMF |
1315 | free(deletable_bc); |
1316 | deletable_bc = bc; | |
1317 | list_del(&bc->list); | |
1318 | } | |
1319 | ||
1e2944cb PMF |
1320 | have_listener = 0; |
1321 | create_listener(); | |
99b72dc0 PMF |
1322 | init_socket(); |
1323 | ltt_trace_setup("auto"); | |
1324 | result = ltt_trace_set_type("auto", "ustrelay"); | |
1325 | if(result < 0) { | |
1326 | ERR("ltt_trace_set_type failed"); | |
036db133 | 1327 | return; |
99b72dc0 PMF |
1328 | } |
1329 | ||
1330 | ltt_trace_alloc("auto"); | |
1331 | ltt_trace_start("auto"); | |
ad45e833 | 1332 | inform_consumer_daemon("auto"); |
1e2944cb PMF |
1333 | } |
1334 | ||
616ed36a PMF |
1335 | void ust_before_fork(ust_fork_info_t *fork_info) |
1336 | { | |
1337 | /* Disable signals. This is to avoid that the child | |
1338 | * intervenes before it is properly setup for tracing. It is | |
1339 | * safer to disable all signals, because then we know we are not | |
1340 | * breaking anything by restoring the original mask. | |
1341 | */ | |
1342 | sigset_t all_sigs; | |
1343 | int result; | |
1344 | ||
1345 | /* FIXME: | |
1346 | - only do this if tracing is active | |
1347 | */ | |
1348 | ||
1349 | /* Disable signals */ | |
1350 | sigfillset(&all_sigs); | |
1351 | result = sigprocmask(SIG_BLOCK, &all_sigs, &fork_info->orig_sigs); | |
1352 | if(result == -1) { | |
1353 | PERROR("sigprocmask"); | |
1354 | return; | |
1355 | } | |
1356 | } | |
1357 | ||
1358 | /* Don't call this function directly in a traced program */ | |
1359 | static void ust_after_fork_common(ust_fork_info_t *fork_info) | |
1360 | { | |
1361 | int result; | |
616ed36a PMF |
1362 | |
1363 | /* Restore signals */ | |
1364 | result = sigprocmask(SIG_SETMASK, &fork_info->orig_sigs, NULL); | |
1365 | if(result == -1) { | |
1366 | PERROR("sigprocmask"); | |
1367 | return; | |
1368 | } | |
1369 | } | |
1370 | ||
1371 | void ust_after_fork_parent(ust_fork_info_t *fork_info) | |
1372 | { | |
1373 | /* Reenable signals */ | |
1374 | ust_after_fork_common(fork_info); | |
1375 | } | |
1376 | ||
1377 | void ust_after_fork_child(ust_fork_info_t *fork_info) | |
1378 | { | |
1379 | /* First sanitize the child */ | |
1380 | ust_fork(); | |
1381 | ||
1382 | /* Then reenable interrupts */ | |
1383 | ust_after_fork_common(fork_info); | |
1384 | } | |
1385 |