27e7d029c9e452bccd5874239fcb68c7767f6364
[lttng-tools.git] / src / bin / lttng-sessiond / agent.c
1 /*
2 * Copyright (C) 2013 - David Goulet <dgoulet@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18 #define _GNU_SOURCE
19 #define _LGPL_SOURCE
20 #include <assert.h>
21 #include <urcu/uatomic.h>
22
23 #include <common/common.h>
24 #include <common/sessiond-comm/agent.h>
25
26 #include <common/compat/endian.h>
27
28 #include "agent.h"
29 #include "ust-app.h"
30 #include "utils.h"
31
32 /*
33 * Match function for the events hash table lookup by name.
34 */
35 static int ht_match_event_by_name(struct cds_lfht_node *node,
36 const void *_key)
37 {
38 struct agent_event *event;
39 const struct agent_ht_key *key;
40
41 assert(node);
42 assert(_key);
43
44 event = caa_container_of(node, struct agent_event, node.node);
45 key = _key;
46
47 /* Match 1 elements of the key: name. */
48
49 /* Event name */
50 if (strncmp(event->name, key->name, sizeof(event->name)) != 0) {
51 goto no_match;
52 }
53 /* Match. */
54 return 1;
55
56 no_match:
57 return 0;
58 }
59
60 /*
61 * Match function for the events hash table lookup by name and loglevel.
62 */
63 static int ht_match_event(struct cds_lfht_node *node,
64 const void *_key)
65 {
66 struct agent_event *event;
67 const struct agent_ht_key *key;
68 int ll_match;
69
70 assert(node);
71 assert(_key);
72
73 event = caa_container_of(node, struct agent_event, node.node);
74 key = _key;
75
76 /* Match 2 elements of the key: name and loglevel. */
77
78 /* Event name */
79 if (strncmp(event->name, key->name, sizeof(event->name)) != 0) {
80 goto no_match;
81 }
82
83 /* Event loglevel value and type. */
84 ll_match = loglevels_match(event->loglevel_type,
85 event->loglevel_value, key->loglevel_type,
86 key->loglevel_value, LTTNG_EVENT_LOGLEVEL_ALL);
87
88 if (!ll_match) {
89 goto no_match;
90 }
91
92 /* Filter expression */
93 if (strncmp(event->filter_expression, key->filter_expression,
94 strlen(event->filter_expression)) != 0) {
95 goto no_match;
96 }
97
98 return 1;
99
100 no_match:
101 return 0;
102 }
103
104 /*
105 * Add unique agent event based on the event name and loglevel.
106 */
107 static void add_unique_agent_event(struct lttng_ht *ht,
108 struct agent_event *event)
109 {
110 struct cds_lfht_node *node_ptr;
111 struct agent_ht_key key;
112
113 assert(ht);
114 assert(ht->ht);
115 assert(event);
116
117 key.name = event->name;
118 key.loglevel_value = event->loglevel_value;
119 key.loglevel_type = event->loglevel_type;
120 key.filter_expression = event->filter_expression;
121
122 node_ptr = cds_lfht_add_unique(ht->ht,
123 ht->hash_fct(event->node.key, lttng_ht_seed),
124 ht_match_event, &key, &event->node.node);
125 assert(node_ptr == &event->node.node);
126 }
127
128 /*
129 * URCU delayed agent event reclaim.
130 */
131 static void destroy_event_agent_rcu(struct rcu_head *head)
132 {
133 struct lttng_ht_node_str *node =
134 caa_container_of(head, struct lttng_ht_node_str, head);
135 struct agent_event *event =
136 caa_container_of(node, struct agent_event, node);
137
138 agent_destroy_event(event);
139 }
140
141 /*
142 * URCU delayed agent app reclaim.
143 */
144 static void destroy_app_agent_rcu(struct rcu_head *head)
145 {
146 struct lttng_ht_node_ulong *node =
147 caa_container_of(head, struct lttng_ht_node_ulong, head);
148 struct agent_app *app =
149 caa_container_of(node, struct agent_app, node);
150
151 free(app);
152 }
153
154 /*
155 * Communication with the agent. Send the message header to the given socket in
156 * big endian.
157 *
158 * Return 0 on success or else a negative errno message of sendmsg() op.
159 */
160 static int send_header(struct lttcomm_sock *sock, uint64_t data_size,
161 uint32_t cmd, uint32_t cmd_version)
162 {
163 int ret;
164 ssize_t size;
165 struct lttcomm_agent_hdr msg;
166
167 assert(sock);
168
169 memset(&msg, 0, sizeof(msg));
170 msg.data_size = htobe64(data_size);
171 msg.cmd = htobe32(cmd);
172 msg.cmd_version = htobe32(cmd_version);
173
174 size = sock->ops->sendmsg(sock, &msg, sizeof(msg), 0);
175 if (size < sizeof(msg)) {
176 ret = -errno;
177 goto error;
178 }
179 ret = 0;
180
181 error:
182 return ret;
183 }
184
185 /*
186 * Communication call with the agent. Send the payload to the given socket. The
187 * header MUST be sent prior to this call.
188 *
189 * Return 0 on success or else a negative errno value of sendmsg() op.
190 */
191 static int send_payload(struct lttcomm_sock *sock, void *data,
192 size_t size)
193 {
194 int ret;
195 ssize_t len;
196
197 assert(sock);
198 assert(data);
199
200 len = sock->ops->sendmsg(sock, data, size, 0);
201 if (len < size) {
202 ret = -errno;
203 goto error;
204 }
205 ret = 0;
206
207 error:
208 return ret;
209 }
210
211 /*
212 * Communication call with the agent. Receive reply from the agent using the
213 * given socket.
214 *
215 * Return 0 on success or else a negative errno value from recvmsg() op.
216 */
217 static int recv_reply(struct lttcomm_sock *sock, void *buf, size_t size)
218 {
219 int ret;
220 ssize_t len;
221
222 assert(sock);
223 assert(buf);
224
225 len = sock->ops->recvmsg(sock, buf, size, 0);
226 if (len < size) {
227 ret = -errno;
228 goto error;
229 }
230 ret = 0;
231
232 error:
233 return ret;
234 }
235
236 /*
237 * Internal event listing for a given app. Populate events.
238 *
239 * Return number of element in the list or else a negative LTTNG_ERR* code.
240 * On success, the caller is responsible for freeing the memory
241 * allocated for "events".
242 */
243 static ssize_t list_events(struct agent_app *app, struct lttng_event **events)
244 {
245 int ret, i, len = 0, offset = 0;
246 uint32_t nb_event;
247 size_t data_size;
248 struct lttng_event *tmp_events = NULL;
249 struct lttcomm_agent_list_reply *reply = NULL;
250 struct lttcomm_agent_list_reply_hdr reply_hdr;
251
252 assert(app);
253 assert(app->sock);
254 assert(events);
255
256 DBG2("Agent listing events for app pid: %d and socket %d", app->pid,
257 app->sock->fd);
258
259 ret = send_header(app->sock, 0, AGENT_CMD_LIST, 0);
260 if (ret < 0) {
261 goto error_io;
262 }
263
264 /* Get list header so we know how much we'll receive. */
265 ret = recv_reply(app->sock, &reply_hdr, sizeof(reply_hdr));
266 if (ret < 0) {
267 goto error_io;
268 }
269
270 switch (be32toh(reply_hdr.ret_code)) {
271 case AGENT_RET_CODE_SUCCESS:
272 data_size = be32toh(reply_hdr.data_size) + sizeof(*reply);
273 break;
274 default:
275 ERR("Agent returned an unknown code: %" PRIu32,
276 be32toh(reply_hdr.ret_code));
277 ret = LTTNG_ERR_FATAL;
278 goto error;
279 }
280
281 reply = zmalloc(data_size);
282 if (!reply) {
283 ret = LTTNG_ERR_NOMEM;
284 goto error;
285 }
286
287 /* Get the list with the appropriate data size. */
288 ret = recv_reply(app->sock, reply, data_size);
289 if (ret < 0) {
290 goto error_io;
291 }
292
293 nb_event = be32toh(reply->nb_event);
294 tmp_events = zmalloc(sizeof(*tmp_events) * nb_event);
295 if (!tmp_events) {
296 ret = LTTNG_ERR_NOMEM;
297 goto error;
298 }
299
300 for (i = 0; i < nb_event; i++) {
301 offset += len;
302 if (lttng_strncpy(tmp_events[i].name, reply->payload + offset,
303 sizeof(tmp_events[i].name))) {
304 ret = LTTNG_ERR_INVALID;
305 goto error;
306 }
307 tmp_events[i].pid = app->pid;
308 tmp_events[i].enabled = -1;
309 len = strlen(reply->payload + offset) + 1;
310 }
311
312 *events = tmp_events;
313
314 free(reply);
315 return nb_event;
316
317 error_io:
318 ret = LTTNG_ERR_UST_LIST_FAIL;
319 error:
320 free(reply);
321 free(tmp_events);
322 return -ret;
323
324 }
325
326 /*
327 * Internal enable agent event on a agent application. This function
328 * communicates with the agent to enable a given event.
329 *
330 * Return LTTNG_OK on success or else a LTTNG_ERR* code.
331 */
332 static int enable_event(struct agent_app *app, struct agent_event *event)
333 {
334 int ret;
335 uint64_t data_size;
336 struct lttcomm_agent_enable msg;
337 struct lttcomm_agent_generic_reply reply;
338
339 assert(app);
340 assert(app->sock);
341 assert(event);
342
343 DBG2("Agent enabling event %s for app pid: %d and socket %d", event->name,
344 app->pid, app->sock->fd);
345
346 data_size = sizeof(msg);
347
348 ret = send_header(app->sock, data_size, AGENT_CMD_ENABLE, 0);
349 if (ret < 0) {
350 goto error_io;
351 }
352
353 memset(&msg, 0, sizeof(msg));
354 msg.loglevel_value = event->loglevel_value;
355 msg.loglevel_type = event->loglevel_type;
356 strncpy(msg.name, event->name, sizeof(msg.name));
357 ret = send_payload(app->sock, &msg, sizeof(msg));
358 if (ret < 0) {
359 goto error_io;
360 }
361
362 ret = recv_reply(app->sock, &reply, sizeof(reply));
363 if (ret < 0) {
364 goto error_io;
365 }
366
367 switch (be32toh(reply.ret_code)) {
368 case AGENT_RET_CODE_SUCCESS:
369 break;
370 case AGENT_RET_CODE_UNKNOWN_NAME:
371 ret = LTTNG_ERR_UST_EVENT_NOT_FOUND;
372 goto error;
373 default:
374 ERR("Agent returned an unknown code: %" PRIu32,
375 be32toh(reply.ret_code));
376 ret = LTTNG_ERR_FATAL;
377 goto error;
378 }
379
380 return LTTNG_OK;
381
382 error_io:
383 ret = LTTNG_ERR_UST_ENABLE_FAIL;
384 error:
385 return ret;
386 }
387
388 /*
389 * Internal disable agent event call on a agent application. This function
390 * communicates with the agent to disable a given event.
391 *
392 * Return LTTNG_OK on success or else a LTTNG_ERR* code.
393 */
394 static int disable_event(struct agent_app *app, struct agent_event *event)
395 {
396 int ret;
397 uint64_t data_size;
398 struct lttcomm_agent_disable msg;
399 struct lttcomm_agent_generic_reply reply;
400
401 assert(app);
402 assert(app->sock);
403 assert(event);
404
405 DBG2("Agent disabling event %s for app pid: %d and socket %d", event->name,
406 app->pid, app->sock->fd);
407
408 data_size = sizeof(msg);
409 memset(&msg, 0, sizeof(msg));
410 if (lttng_strncpy(msg.name, event->name, sizeof(msg.name))) {
411 ret = LTTNG_ERR_INVALID;
412 goto error;
413 }
414
415 ret = send_header(app->sock, data_size, AGENT_CMD_DISABLE, 0);
416 if (ret < 0) {
417 goto error_io;
418 }
419
420 ret = send_payload(app->sock, &msg, sizeof(msg));
421 if (ret < 0) {
422 goto error_io;
423 }
424
425 ret = recv_reply(app->sock, &reply, sizeof(reply));
426 if (ret < 0) {
427 goto error_io;
428 }
429
430 switch (be32toh(reply.ret_code)) {
431 case AGENT_RET_CODE_SUCCESS:
432 break;
433 case AGENT_RET_CODE_UNKNOWN_NAME:
434 ret = LTTNG_ERR_UST_EVENT_NOT_FOUND;
435 goto error;
436 default:
437 ERR("Agent returned an unknown code: %" PRIu32,
438 be32toh(reply.ret_code));
439 ret = LTTNG_ERR_FATAL;
440 goto error;
441 }
442
443 return LTTNG_OK;
444
445 error_io:
446 ret = LTTNG_ERR_UST_DISABLE_FAIL;
447 error:
448 return ret;
449 }
450
451 /*
452 * Send back the registration DONE command to a given agent application.
453 *
454 * Return 0 on success or else a negative value.
455 */
456 int agent_send_registration_done(struct agent_app *app)
457 {
458 assert(app);
459 assert(app->sock);
460
461 DBG("Agent sending registration done to app socket %d", app->sock->fd);
462
463 return send_header(app->sock, 0, AGENT_CMD_REG_DONE, 0);
464 }
465
466 /*
467 * Enable agent event on every agent applications registered with the session
468 * daemon.
469 *
470 * Return LTTNG_OK on success or else a LTTNG_ERR* code.
471 */
472 int agent_enable_event(struct agent_event *event,
473 enum lttng_domain_type domain)
474 {
475 int ret;
476 struct agent_app *app;
477 struct lttng_ht_iter iter;
478
479 assert(event);
480
481 rcu_read_lock();
482
483 cds_lfht_for_each_entry(agent_apps_ht_by_sock->ht, &iter.iter, app,
484 node.node) {
485 if (app->domain != domain) {
486 continue;
487 }
488
489 /* Enable event on agent application through TCP socket. */
490 ret = enable_event(app, event);
491 if (ret != LTTNG_OK) {
492 goto error;
493 }
494 }
495
496 event->enabled = 1;
497 ret = LTTNG_OK;
498
499 error:
500 rcu_read_unlock();
501 return ret;
502 }
503
504 /*
505 * Disable agent event on every agent applications registered with the session
506 * daemon.
507 *
508 * Return LTTNG_OK on success or else a LTTNG_ERR* code.
509 */
510 int agent_disable_event(struct agent_event *event,
511 enum lttng_domain_type domain)
512 {
513 int ret = LTTNG_OK;
514 struct agent_app *app;
515 struct lttng_ht_iter iter;
516
517 assert(event);
518 if (!event->enabled) {
519 goto end;
520 }
521
522 rcu_read_lock();
523
524 cds_lfht_for_each_entry(agent_apps_ht_by_sock->ht, &iter.iter, app,
525 node.node) {
526 if (app->domain != domain) {
527 continue;
528 }
529
530 /* Enable event on agent application through TCP socket. */
531 ret = disable_event(app, event);
532 if (ret != LTTNG_OK) {
533 goto error;
534 }
535 }
536
537 event->enabled = 0;
538
539 error:
540 rcu_read_unlock();
541 end:
542 return ret;
543 }
544
545 /*
546 * Ask every agent for the list of possible event. Events is allocated with the
547 * events of every agent application.
548 *
549 * Return the number of events or else a negative value.
550 */
551 int agent_list_events(struct lttng_event **events,
552 enum lttng_domain_type domain)
553 {
554 int ret;
555 size_t nbmem, count = 0;
556 struct agent_app *app;
557 struct lttng_event *tmp_events = NULL;
558 struct lttng_ht_iter iter;
559
560 assert(events);
561
562 DBG2("Agent listing events for domain %d", domain);
563
564 nbmem = UST_APP_EVENT_LIST_SIZE;
565 tmp_events = zmalloc(nbmem * sizeof(*tmp_events));
566 if (!tmp_events) {
567 PERROR("zmalloc agent list events");
568 ret = -ENOMEM;
569 goto error;
570 }
571
572 rcu_read_lock();
573 cds_lfht_for_each_entry(agent_apps_ht_by_sock->ht, &iter.iter, app,
574 node.node) {
575 ssize_t nb_ev;
576 struct lttng_event *agent_events;
577
578 /* Skip domain not asked by the list. */
579 if (app->domain != domain) {
580 continue;
581 }
582
583 nb_ev = list_events(app, &agent_events);
584 if (nb_ev < 0) {
585 ret = nb_ev;
586 goto error_unlock;
587 }
588
589 if (count + nb_ev > nbmem) {
590 /* In case the realloc fails, we free the memory */
591 struct lttng_event *new_tmp_events;
592 size_t new_nbmem;
593
594 new_nbmem = max_t(size_t, count + nb_ev, nbmem << 1);
595 DBG2("Reallocating agent event list from %zu to %zu entries",
596 nbmem, new_nbmem);
597 new_tmp_events = realloc(tmp_events,
598 new_nbmem * sizeof(*new_tmp_events));
599 if (!new_tmp_events) {
600 PERROR("realloc agent events");
601 ret = -ENOMEM;
602 free(agent_events);
603 goto error_unlock;
604 }
605 /* Zero the new memory */
606 memset(new_tmp_events + nbmem, 0,
607 (new_nbmem - nbmem) * sizeof(*new_tmp_events));
608 nbmem = new_nbmem;
609 tmp_events = new_tmp_events;
610 }
611 memcpy(tmp_events + count, agent_events,
612 nb_ev * sizeof(*tmp_events));
613 free(agent_events);
614 count += nb_ev;
615 }
616 rcu_read_unlock();
617
618 ret = count;
619 *events = tmp_events;
620 return ret;
621
622 error_unlock:
623 rcu_read_unlock();
624 error:
625 free(tmp_events);
626 return ret;
627 }
628
629 /*
630 * Create a agent app object using the given PID.
631 *
632 * Return newly allocated object or else NULL on error.
633 */
634 struct agent_app *agent_create_app(pid_t pid, enum lttng_domain_type domain,
635 struct lttcomm_sock *sock)
636 {
637 struct agent_app *app;
638
639 assert(sock);
640
641 app = zmalloc(sizeof(*app));
642 if (!app) {
643 PERROR("zmalloc agent create");
644 goto error;
645 }
646
647 app->pid = pid;
648 app->domain = domain;
649 app->sock = sock;
650 lttng_ht_node_init_ulong(&app->node, (unsigned long) app->sock->fd);
651
652 error:
653 return app;
654 }
655
656 /*
657 * Lookup agent app by socket in the global hash table.
658 *
659 * RCU read side lock MUST be acquired.
660 *
661 * Return object if found else NULL.
662 */
663 struct agent_app *agent_find_app_by_sock(int sock)
664 {
665 struct lttng_ht_node_ulong *node;
666 struct lttng_ht_iter iter;
667 struct agent_app *app;
668
669 assert(sock >= 0);
670
671 lttng_ht_lookup(agent_apps_ht_by_sock, (void *)((unsigned long) sock), &iter);
672 node = lttng_ht_iter_get_node_ulong(&iter);
673 if (node == NULL) {
674 goto error;
675 }
676 app = caa_container_of(node, struct agent_app, node);
677
678 DBG3("Agent app pid %d found by sock %d.", app->pid, sock);
679 return app;
680
681 error:
682 DBG3("Agent app NOT found by sock %d.", sock);
683 return NULL;
684 }
685
686 /*
687 * Add agent application object to the global hash table.
688 */
689 void agent_add_app(struct agent_app *app)
690 {
691 assert(app);
692
693 DBG3("Agent adding app sock: %d and pid: %d to ht", app->sock->fd, app->pid);
694
695 rcu_read_lock();
696 lttng_ht_add_unique_ulong(agent_apps_ht_by_sock, &app->node);
697 rcu_read_unlock();
698 }
699
700 /*
701 * Delete agent application from the global hash table.
702 *
703 * rcu_read_lock() must be held by the caller.
704 */
705 void agent_delete_app(struct agent_app *app)
706 {
707 int ret;
708 struct lttng_ht_iter iter;
709
710 assert(app);
711
712 DBG3("Agent deleting app pid: %d and sock: %d", app->pid, app->sock->fd);
713
714 iter.iter.node = &app->node.node;
715 ret = lttng_ht_del(agent_apps_ht_by_sock, &iter);
716 assert(!ret);
717 }
718
719 /*
720 * Destroy a agent application object by detaching it from its corresponding
721 * UST app if one is connected by closing the socket. Finally, perform a
722 * delayed memory reclaim.
723 */
724 void agent_destroy_app(struct agent_app *app)
725 {
726 assert(app);
727
728 if (app->sock) {
729 app->sock->ops->close(app->sock);
730 lttcomm_destroy_sock(app->sock);
731 }
732
733 call_rcu(&app->node.head, destroy_app_agent_rcu);
734 }
735
736 /*
737 * Initialize an already allocated agent object.
738 *
739 * Return 0 on success or else a negative errno value.
740 */
741 int agent_init(struct agent *agt)
742 {
743 int ret;
744
745 assert(agt);
746
747 agt->events = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
748 if (!agt->events) {
749 ret = -ENOMEM;
750 goto error;
751 }
752 lttng_ht_node_init_u64(&agt->node, agt->domain);
753
754 return 0;
755
756 error:
757 return ret;
758 }
759
760 /*
761 * Add agent object to the given hash table.
762 */
763 void agent_add(struct agent *agt, struct lttng_ht *ht)
764 {
765 assert(agt);
766 assert(ht);
767
768 DBG3("Agent adding from domain %d", agt->domain);
769
770 rcu_read_lock();
771 lttng_ht_add_unique_u64(ht, &agt->node);
772 rcu_read_unlock();
773 }
774
775 /*
776 * Create an agent object for the given domain.
777 *
778 * Return the allocated agent or NULL on error.
779 */
780 struct agent *agent_create(enum lttng_domain_type domain)
781 {
782 int ret;
783 struct agent *agt;
784
785 agt = zmalloc(sizeof(*agt));
786 if (!agt) {
787 goto error;
788 }
789 agt->domain = domain;
790
791 ret = agent_init(agt);
792 if (ret < 0) {
793 free(agt);
794 agt = NULL;
795 goto error;
796 }
797
798 error:
799 return agt;
800 }
801
802 /*
803 * Create a newly allocated agent event data structure.
804 * Ownership of filter_expression is taken.
805 *
806 * Return a new object else NULL on error.
807 */
808 struct agent_event *agent_create_event(const char *name,
809 enum lttng_loglevel_type loglevel_type, int loglevel_value,
810 struct lttng_filter_bytecode *filter, char *filter_expression)
811 {
812 struct agent_event *event = NULL;
813
814 DBG3("Agent create new event with name %s, loglevel type %d, \
815 loglevel value %d and filter %s",
816 name, loglevel_type, loglevel_value,
817 filter_expression ? filter_expression : "NULL");
818
819 if (!name) {
820 ERR("Failed to create agent event; no name provided.");
821 goto error;
822 }
823
824 event = zmalloc(sizeof(*event));
825 if (!event) {
826 goto error;
827 }
828
829 strncpy(event->name, name, sizeof(event->name));
830 event->name[sizeof(event->name) - 1] = '\0';
831 lttng_ht_node_init_str(&event->node, event->name);
832
833 event->loglevel_value = loglevel_value;
834 event->loglevel_type = loglevel_type;
835 event->filter = filter;
836 event->filter_expression = filter_expression;
837 error:
838 return event;
839 }
840
841 /*
842 * Unique add of a agent event to an agent object.
843 */
844 void agent_add_event(struct agent_event *event, struct agent *agt)
845 {
846 assert(event);
847 assert(agt);
848 assert(agt->events);
849
850 DBG3("Agent adding event %s", event->name);
851
852 rcu_read_lock();
853 add_unique_agent_event(agt->events, event);
854 rcu_read_unlock();
855 agt->being_used = 1;
856 }
857
858 /*
859 * Find multiple agent events sharing the given name.
860 *
861 * RCU read side lock MUST be acquired. It must be held for the
862 * duration of the iteration.
863 *
864 * Sets the given iterator.
865 */
866 void agent_find_events_by_name(const char *name, struct agent *agt,
867 struct lttng_ht_iter* iter)
868 {
869 struct lttng_ht *ht;
870 struct agent_ht_key key;
871
872 assert(name);
873 assert(agt);
874 assert(agt->events);
875 assert(iter);
876
877 ht = agt->events;
878 key.name = name;
879
880 cds_lfht_lookup(ht->ht, ht->hash_fct((void *) name, lttng_ht_seed),
881 ht_match_event_by_name, &key, &iter->iter);
882 }
883
884 /*
885 * Get the next agent event duplicate by name. This should be called
886 * after a call to agent_find_events_by_name() to iterate on events.
887 *
888 * The RCU read lock must be held during the iteration and for as long
889 * as the object the iterator points to remains in use.
890 */
891 void agent_event_next_duplicate(const char *name,
892 struct agent *agt, struct lttng_ht_iter* iter)
893 {
894 struct agent_ht_key key;
895
896 key.name = name;
897
898 cds_lfht_next_duplicate(agt->events->ht, ht_match_event_by_name,
899 &key, &iter->iter);
900 }
901
902 /*
903 * Find a agent event in the given agent using name, loglevel and filter.
904 *
905 * RCU read side lock MUST be acquired.
906 *
907 * Return object if found else NULL.
908 */
909 struct agent_event *agent_find_event(const char *name,
910 enum lttng_loglevel_type loglevel_type, int loglevel_value,
911 char *filter_expression, struct agent *agt)
912 {
913 struct lttng_ht_node_str *node;
914 struct lttng_ht_iter iter;
915 struct lttng_ht *ht;
916 struct agent_ht_key key;
917
918 assert(name);
919 assert(agt);
920 assert(agt->events);
921
922 ht = agt->events;
923 key.name = name;
924 key.loglevel_value = loglevel_value;
925 key.loglevel_type = loglevel_type;
926 key.filter_expression = filter_expression;
927
928 cds_lfht_lookup(ht->ht, ht->hash_fct((void *) name, lttng_ht_seed),
929 ht_match_event, &key, &iter.iter);
930 node = lttng_ht_iter_get_node_str(&iter);
931 if (node == NULL) {
932 goto error;
933 }
934
935 DBG3("Agent event found %s.", name);
936 return caa_container_of(node, struct agent_event, node);
937
938 error:
939 DBG3("Agent event NOT found %s.", name);
940 return NULL;
941 }
942
943 /*
944 * Free given agent event. This event must not be globally visible at this
945 * point (only expected to be used on failure just after event creation). After
946 * this call, the pointer is not usable anymore.
947 */
948 void agent_destroy_event(struct agent_event *event)
949 {
950 assert(event);
951
952 free(event->filter);
953 free(event->filter_expression);
954 free(event->exclusion);
955 free(event);
956 }
957
958 /*
959 * Destroy an agent completely.
960 */
961 void agent_destroy(struct agent *agt)
962 {
963 struct lttng_ht_node_str *node;
964 struct lttng_ht_iter iter;
965
966 assert(agt);
967
968 DBG3("Agent destroy");
969
970 /*
971 * Just ignore if no events hash table exists. This is possible if for
972 * instance an agent object was allocated but not initialized.
973 */
974 if (!agt->events) {
975 return;
976 }
977
978 rcu_read_lock();
979 cds_lfht_for_each_entry(agt->events->ht, &iter.iter, node, node) {
980 int ret;
981 struct agent_event *event;
982
983 /*
984 * When destroying an event, we have to try to disable it on the agent
985 * side so the event stops generating data. The return value is not
986 * important since we have to continue anyway destroying the object.
987 */
988 event = caa_container_of(node, struct agent_event, node);
989 (void) agent_disable_event(event, agt->domain);
990
991 ret = lttng_ht_del(agt->events, &iter);
992 assert(!ret);
993 call_rcu(&node->head, destroy_event_agent_rcu);
994 }
995 rcu_read_unlock();
996
997 ht_cleanup_push(agt->events);
998 free(agt);
999 }
1000
1001 /*
1002 * Allocate agent_apps_ht_by_sock.
1003 */
1004 int agent_app_ht_alloc(void)
1005 {
1006 int ret = 0;
1007
1008 agent_apps_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
1009 if (!agent_apps_ht_by_sock) {
1010 ret = -1;
1011 }
1012
1013 return ret;
1014 }
1015
1016 /*
1017 * Destroy a agent application by socket.
1018 */
1019 void agent_destroy_app_by_sock(int sock)
1020 {
1021 struct agent_app *app;
1022
1023 assert(sock >= 0);
1024
1025 /*
1026 * Not finding an application is a very important error that should NEVER
1027 * happen. The hash table deletion is ONLY done through this call when the
1028 * main sessiond thread is torn down.
1029 */
1030 rcu_read_lock();
1031 app = agent_find_app_by_sock(sock);
1032 assert(app);
1033
1034 /* RCU read side lock is assumed to be held by this function. */
1035 agent_delete_app(app);
1036
1037 /* The application is freed in a RCU call but the socket is closed here. */
1038 agent_destroy_app(app);
1039 rcu_read_unlock();
1040 }
1041
1042 /*
1043 * Clean-up the agent app hash table and destroy it.
1044 */
1045 void agent_app_ht_clean(void)
1046 {
1047 struct lttng_ht_node_ulong *node;
1048 struct lttng_ht_iter iter;
1049
1050 if (!agent_apps_ht_by_sock) {
1051 return;
1052 }
1053 rcu_read_lock();
1054 cds_lfht_for_each_entry(agent_apps_ht_by_sock->ht, &iter.iter, node, node) {
1055 struct agent_app *app;
1056
1057 app = caa_container_of(node, struct agent_app, node);
1058 agent_destroy_app_by_sock(app->sock->fd);
1059 }
1060 rcu_read_unlock();
1061
1062 lttng_ht_destroy(agent_apps_ht_by_sock);
1063 }
1064
1065 /*
1066 * Update a agent application (given socket) using the given agent.
1067 *
1068 * Note that this function is most likely to be used with a tracing session
1069 * thus the caller should make sure to hold the appropriate lock(s).
1070 */
1071 void agent_update(struct agent *agt, int sock)
1072 {
1073 int ret;
1074 struct agent_app *app;
1075 struct agent_event *event;
1076 struct lttng_ht_iter iter;
1077
1078 assert(agt);
1079 assert(sock >= 0);
1080
1081 DBG("Agent updating app socket %d", sock);
1082
1083 rcu_read_lock();
1084 cds_lfht_for_each_entry(agt->events->ht, &iter.iter, event, node.node) {
1085 /* Skip event if disabled. */
1086 if (!event->enabled) {
1087 continue;
1088 }
1089
1090 app = agent_find_app_by_sock(sock);
1091 /*
1092 * We are in the registration path thus if the application is gone,
1093 * there is a serious code flow error.
1094 */
1095 assert(app);
1096
1097 ret = enable_event(app, event);
1098 if (ret != LTTNG_OK) {
1099 DBG2("Agent update unable to enable event %s on app pid: %d sock %d",
1100 event->name, app->pid, app->sock->fd);
1101 /* Let's try the others here and don't assume the app is dead. */
1102 continue;
1103 }
1104 }
1105 rcu_read_unlock();
1106 }
This page took 0.048713 seconds and 3 git commands to generate.