Implements `lttng_event_notifier_notification_{create,destroy}()`
[lttng-tools.git] / src / bin / lttng-sessiond / agent-thread.c
1 /*
2 * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8 #define _LGPL_SOURCE
9 #include <assert.h>
10
11 #include <common/common.h>
12 #include <common/sessiond-comm/sessiond-comm.h>
13 #include <common/uri.h>
14 #include <common/utils.h>
15
16 #include <common/compat/endian.h>
17
18 #include "fd-limit.h"
19 #include "agent-thread.h"
20 #include "agent.h"
21 #include "lttng-sessiond.h"
22 #include "session.h"
23 #include "utils.h"
24 #include "thread.h"
25
26 struct thread_notifiers {
27 struct lttng_pipe *quit_pipe;
28 sem_t ready;
29 };
30
31 struct agent_app_id {
32 pid_t pid;
33 enum lttng_domain_type domain;
34 };
35
36 struct agent_protocol_version {
37 unsigned int major, minor;
38 };
39
40 static int agent_tracing_enabled = -1;
41
42 /*
43 * Note that there is not port here. It's set after this URI is parsed so we
44 * can let the user define a custom one. However, localhost is ALWAYS the
45 * default listening address.
46 */
47 static const char *default_reg_uri =
48 "tcp://" DEFAULT_NETWORK_VIEWER_BIND_ADDRESS;
49
50 /*
51 * Update agent application using the given socket. This is done just after
52 * registration was successful.
53 *
54 * This will acquire the various sessions' lock; none must be held by the
55 * caller.
56 * The caller must hold the session list lock.
57 */
58 static void update_agent_app(const struct agent_app *app)
59 {
60 struct ltt_session *session, *stmp;
61 struct ltt_session_list *list;
62 struct agent *trigger_agent;
63 struct lttng_ht_iter iter;
64
65 list = session_get_list();
66 assert(list);
67
68 cds_list_for_each_entry_safe(session, stmp, &list->head, list) {
69 if (!session_get(session)) {
70 continue;
71 }
72
73 session_lock(session);
74 if (session->ust_session) {
75 const struct agent *agt;
76
77 rcu_read_lock();
78 agt = trace_ust_find_agent(session->ust_session, app->domain);
79 if (agt) {
80 agent_update(agt, app);
81 }
82 rcu_read_unlock();
83 }
84 session_unlock(session);
85 session_put(session);
86 }
87
88 rcu_read_lock();
89 /*
90 * We are protected against the addition of new events by the session
91 * list lock being held.
92 */
93 cds_lfht_for_each_entry (trigger_agents_ht_by_domain->ht, &iter.iter,
94 trigger_agent, node.node) {
95 agent_update(trigger_agent, app);
96 }
97 rcu_read_unlock();
98 }
99
100 /*
101 * Create and init socket from uri.
102 */
103 static struct lttcomm_sock *init_tcp_socket(void)
104 {
105 int ret;
106 struct lttng_uri *uri = NULL;
107 struct lttcomm_sock *sock = NULL;
108 unsigned int port;
109 bool bind_succeeded = false;
110
111 /*
112 * This should never fail since the URI is hardcoded and the port is set
113 * before this thread is launched.
114 */
115 ret = uri_parse(default_reg_uri, &uri);
116 assert(ret);
117 assert(config.agent_tcp_port.begin > 0);
118 uri->port = config.agent_tcp_port.begin;
119
120 sock = lttcomm_alloc_sock_from_uri(uri);
121 uri_free(uri);
122 if (sock == NULL) {
123 ERR("[agent-thread] agent allocating TCP socket");
124 goto error;
125 }
126
127 ret = lttcomm_create_sock(sock);
128 if (ret < 0) {
129 goto error;
130 }
131
132 for (port = config.agent_tcp_port.begin;
133 port <= config.agent_tcp_port.end; port++) {
134 ret = lttcomm_sock_set_port(sock, (uint16_t) port);
135 if (ret) {
136 ERR("[agent-thread] Failed to set port %u on socket",
137 port);
138 goto error;
139 }
140 DBG3("[agent-thread] Trying to bind on port %u", port);
141 ret = sock->ops->bind(sock);
142 if (!ret) {
143 bind_succeeded = true;
144 break;
145 }
146
147 if (errno == EADDRINUSE) {
148 DBG("Failed to bind to port %u since it is already in use",
149 port);
150 } else {
151 PERROR("Failed to bind to port %u", port);
152 goto error;
153 }
154 }
155
156 if (!bind_succeeded) {
157 if (config.agent_tcp_port.begin == config.agent_tcp_port.end) {
158 WARN("Another process is already using the agent port %i. "
159 "Agent support will be deactivated.",
160 config.agent_tcp_port.begin);
161 goto error;
162 } else {
163 WARN("All ports in the range [%i, %i] are already in use. "
164 "Agent support will be deactivated.",
165 config.agent_tcp_port.begin,
166 config.agent_tcp_port.end);
167 goto error;
168 }
169 }
170
171 ret = sock->ops->listen(sock, -1);
172 if (ret < 0) {
173 goto error;
174 }
175
176 DBG("[agent-thread] Listening on TCP port %u and socket %d",
177 port, sock->fd);
178
179 return sock;
180
181 error:
182 if (sock) {
183 lttcomm_destroy_sock(sock);
184 }
185 return NULL;
186 }
187
188 /*
189 * Close and destroy the given TCP socket.
190 */
191 static void destroy_tcp_socket(struct lttcomm_sock *sock)
192 {
193 int ret;
194 uint16_t port;
195
196 assert(sock);
197
198 ret = lttcomm_sock_get_port(sock, &port);
199 if (ret) {
200 ERR("[agent-thread] Failed to get port of agent TCP socket");
201 port = 0;
202 }
203
204 DBG3("[agent-thread] Destroy TCP socket on port %" PRIu16,
205 port);
206
207 /* This will return gracefully if fd is invalid. */
208 sock->ops->close(sock);
209 lttcomm_destroy_sock(sock);
210 }
211
212 static const char *domain_type_str(enum lttng_domain_type domain_type)
213 {
214 switch (domain_type) {
215 case LTTNG_DOMAIN_NONE:
216 return "none";
217 case LTTNG_DOMAIN_KERNEL:
218 return "kernel";
219 case LTTNG_DOMAIN_UST:
220 return "ust";
221 case LTTNG_DOMAIN_JUL:
222 return "jul";
223 case LTTNG_DOMAIN_LOG4J:
224 return "log4j";
225 case LTTNG_DOMAIN_PYTHON:
226 return "python";
227 default:
228 return "unknown";
229 }
230 }
231
232 static bool is_agent_protocol_version_supported(
233 const struct agent_protocol_version *version)
234 {
235 const bool is_supported = version->major == AGENT_MAJOR_VERSION &&
236 version->minor == AGENT_MINOR_VERSION;
237
238 if (!is_supported) {
239 WARN("Refusing agent connection: unsupported protocol version %ui.%ui, expected %i.%i",
240 version->major, version->minor,
241 AGENT_MAJOR_VERSION, AGENT_MINOR_VERSION);
242 }
243
244 return is_supported;
245 }
246
247 /*
248 * Handle a new agent connection on the registration socket.
249 *
250 * Returns 0 on success, or else a negative errno value.
251 * On success, the resulting socket is returned through `agent_app_socket`
252 * and the application's reported id is updated through `agent_app_id`.
253 */
254 static int accept_agent_connection(
255 struct lttcomm_sock *reg_sock,
256 struct agent_app_id *agent_app_id,
257 struct lttcomm_sock **agent_app_socket)
258 {
259 int ret;
260 struct agent_protocol_version agent_version;
261 ssize_t size;
262 struct agent_register_msg msg;
263 struct lttcomm_sock *new_sock;
264
265 assert(reg_sock);
266
267 new_sock = reg_sock->ops->accept(reg_sock);
268 if (!new_sock) {
269 ret = -ENOTCONN;
270 goto end;
271 }
272
273 size = new_sock->ops->recvmsg(new_sock, &msg, sizeof(msg), 0);
274 if (size < sizeof(msg)) {
275 if (size < 0) {
276 PERROR("Failed to register new agent application");
277 } else if (size != 0) {
278 ERR("Failed to register new agent application: invalid registration message length: expected length = %zu, message length = %zd",
279 sizeof(msg), size);
280 } else {
281 DBG("Failed to register new agent application: connection closed");
282 }
283 ret = -EINVAL;
284 goto error_close_socket;
285 }
286
287 agent_version = (struct agent_protocol_version) {
288 be32toh(msg.major_version),
289 be32toh(msg.minor_version),
290 };
291
292 /* Test communication protocol version of the registering agent. */
293 if (!is_agent_protocol_version_supported(&agent_version)) {
294 ret = -EINVAL;
295 goto error_close_socket;
296 }
297
298 *agent_app_id = (struct agent_app_id) {
299 .domain = (enum lttng_domain_type) be32toh(msg.domain),
300 .pid = (pid_t) be32toh(msg.pid),
301 };
302
303 DBG2("New registration for agent application: pid = %ld, domain = %s, socket fd = %d",
304 (long) agent_app_id->pid,
305 domain_type_str(agent_app_id->domain), new_sock->fd);
306
307 *agent_app_socket = new_sock;
308 new_sock = NULL;
309 ret = 0;
310 goto end;
311
312 error_close_socket:
313 new_sock->ops->close(new_sock);
314 lttcomm_destroy_sock(new_sock);
315 end:
316 return ret;
317 }
318
319 bool agent_tracing_is_enabled(void)
320 {
321 int enabled;
322
323 enabled = uatomic_read(&agent_tracing_enabled);
324 assert(enabled != -1);
325 return enabled == 1;
326 }
327
328 /*
329 * Write agent TCP port using the rundir.
330 */
331 static int write_agent_port(uint16_t port)
332 {
333 return utils_create_pid_file((pid_t) port,
334 config.agent_port_file_path.value);
335 }
336
337 static
338 void mark_thread_as_ready(struct thread_notifiers *notifiers)
339 {
340 DBG("Marking agent management thread as ready");
341 sem_post(&notifiers->ready);
342 }
343
344 static
345 void wait_until_thread_is_ready(struct thread_notifiers *notifiers)
346 {
347 DBG("Waiting for agent management thread to be ready");
348 sem_wait(&notifiers->ready);
349 DBG("Agent management thread is ready");
350 }
351
352 /*
353 * This thread manage application notify communication.
354 */
355 static void *thread_agent_management(void *data)
356 {
357 int i, ret, pollfd;
358 uint32_t revents, nb_fd;
359 struct lttng_poll_event events;
360 struct lttcomm_sock *reg_sock;
361 struct thread_notifiers *notifiers = data;
362 const int quit_pipe_read_fd = lttng_pipe_get_readfd(
363 notifiers->quit_pipe);
364
365 DBG("[agent-thread] Manage agent application registration.");
366
367 rcu_register_thread();
368 rcu_thread_online();
369
370 /* Agent initialization call MUST be called before starting the thread. */
371 assert(agent_apps_ht_by_sock);
372
373 /* Create pollset with size 2, quit pipe and registration socket. */
374 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
375 if (ret < 0) {
376 goto error_poll_create;
377 }
378
379 ret = lttng_poll_add(&events, quit_pipe_read_fd,
380 LPOLLIN | LPOLLERR);
381 if (ret < 0) {
382 goto error_tcp_socket;
383 }
384
385 reg_sock = init_tcp_socket();
386 if (reg_sock) {
387 uint16_t port;
388
389 assert(lttcomm_sock_get_port(reg_sock, &port) == 0);
390
391 ret = write_agent_port(port);
392 if (ret) {
393 ERR("[agent-thread] Failed to create agent port file: agent tracing will be unavailable");
394 /* Don't prevent the launch of the sessiond on error. */
395 mark_thread_as_ready(notifiers);
396 goto error;
397 }
398 } else {
399 /* Don't prevent the launch of the sessiond on error. */
400 mark_thread_as_ready(notifiers);
401 goto error_tcp_socket;
402 }
403
404 /*
405 * Signal that the agent thread is ready. The command thread
406 * may start to query whether or not agent tracing is enabled.
407 */
408 uatomic_set(&agent_tracing_enabled, 1);
409 mark_thread_as_ready(notifiers);
410
411 /* Add TCP socket to the poll set. */
412 ret = lttng_poll_add(&events, reg_sock->fd,
413 LPOLLIN | LPOLLERR | LPOLLHUP | LPOLLRDHUP);
414 if (ret < 0) {
415 goto error;
416 }
417
418 while (1) {
419 DBG3("[agent-thread] Manage agent polling");
420
421 /* Inifinite blocking call, waiting for transmission */
422 restart:
423 ret = lttng_poll_wait(&events, -1);
424 DBG3("[agent-thread] Manage agent return from poll on %d fds",
425 LTTNG_POLL_GETNB(&events));
426 if (ret < 0) {
427 /*
428 * Restart interrupted system call.
429 */
430 if (errno == EINTR) {
431 goto restart;
432 }
433 goto error;
434 }
435 nb_fd = ret;
436 DBG3("[agent-thread] %d fd ready", nb_fd);
437
438 for (i = 0; i < nb_fd; i++) {
439 /* Fetch once the poll data */
440 revents = LTTNG_POLL_GETEV(&events, i);
441 pollfd = LTTNG_POLL_GETFD(&events, i);
442
443 /* Thread quit pipe has been closed. Killing thread. */
444 if (pollfd == quit_pipe_read_fd) {
445 goto exit;
446 }
447
448 /* Activity on the registration socket. */
449 if (revents & LPOLLIN) {
450 struct agent_app_id new_app_id;
451 struct agent_app *new_app = NULL;
452 struct lttcomm_sock *new_app_socket;
453 int new_app_socket_fd;
454
455 assert(pollfd == reg_sock->fd);
456
457 ret = accept_agent_connection(
458 reg_sock, &new_app_id, &new_app_socket);
459 if (ret < 0) {
460 /* Errors are already logged. */
461 continue;
462 }
463
464 /*
465 * new_app_socket's ownership has been
466 * transferred to the new agent app.
467 */
468 new_app = agent_create_app(new_app_id.pid,
469 new_app_id.domain,
470 new_app_socket);
471 if (!new_app) {
472 new_app_socket->ops->close(
473 new_app_socket);
474 continue;
475 }
476 new_app_socket_fd = new_app_socket->fd;
477 new_app_socket = NULL;
478
479 /*
480 * Since this is a command socket (write then
481 * read), only add poll error event to only
482 * detect shutdown.
483 */
484 ret = lttng_poll_add(&events, new_app_socket_fd,
485 LPOLLERR | LPOLLHUP | LPOLLRDHUP);
486 if (ret < 0) {
487 agent_destroy_app(new_app);
488 continue;
489 }
490
491 /*
492 * Prevent sessions from being modified while
493 * the agent application's configuration is
494 * updated.
495 */
496 session_lock_list();
497
498 /*
499 * Update the newly registered applications's
500 * configuration.
501 */
502 update_agent_app(new_app);
503
504 ret = agent_send_registration_done(new_app);
505 if (ret < 0) {
506 agent_destroy_app(new_app);
507 /* Removing from the poll set. */
508 ret = lttng_poll_del(&events,
509 new_app_socket_fd);
510 if (ret < 0) {
511 session_unlock_list();
512 goto error;
513 }
514 continue;
515 }
516
517 /* Publish the new agent app. */
518 agent_add_app(new_app);
519
520 session_unlock_list();
521 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
522 /* Removing from the poll set */
523 ret = lttng_poll_del(&events, pollfd);
524 if (ret < 0) {
525 goto error;
526 }
527 agent_destroy_app_by_sock(pollfd);
528 } else {
529 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
530 goto error;
531 }
532 }
533 }
534
535 exit:
536 /* Whatever happens, try to delete it and exit. */
537 (void) lttng_poll_del(&events, reg_sock->fd);
538 error:
539 destroy_tcp_socket(reg_sock);
540 error_tcp_socket:
541 lttng_poll_clean(&events);
542 error_poll_create:
543 uatomic_set(&agent_tracing_enabled, 0);
544 DBG("[agent-thread] Cleaning up and stopping.");
545 rcu_thread_offline();
546 rcu_unregister_thread();
547 return NULL;
548 }
549
550 static bool shutdown_agent_management_thread(void *data)
551 {
552 struct thread_notifiers *notifiers = data;
553 const int write_fd = lttng_pipe_get_writefd(notifiers->quit_pipe);
554
555 return notify_thread_pipe(write_fd) == 1;
556 }
557
558 static void cleanup_agent_management_thread(void *data)
559 {
560 struct thread_notifiers *notifiers = data;
561
562 lttng_pipe_destroy(notifiers->quit_pipe);
563 sem_destroy(&notifiers->ready);
564 free(notifiers);
565 }
566
567 bool launch_agent_management_thread(void)
568 {
569 struct thread_notifiers *notifiers;
570 struct lttng_thread *thread;
571
572 notifiers = zmalloc(sizeof(*notifiers));
573 if (!notifiers) {
574 goto error_alloc;
575 }
576
577 sem_init(&notifiers->ready, 0, 0);
578 notifiers->quit_pipe = lttng_pipe_open(FD_CLOEXEC);
579 if (!notifiers->quit_pipe) {
580 goto error;
581 }
582 thread = lttng_thread_create("Agent management",
583 thread_agent_management,
584 shutdown_agent_management_thread,
585 cleanup_agent_management_thread,
586 notifiers);
587 if (!thread) {
588 goto error;
589 }
590 wait_until_thread_is_ready(notifiers);
591 lttng_thread_put(thread);
592 return true;
593 error:
594 cleanup_agent_management_thread(notifiers);
595 error_alloc:
596 return false;
597 }
This page took 0.041779 seconds and 4 git commands to generate.