2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
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.
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
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.
26 #include <common/common.h>
27 #include <common/defaults.h>
28 #include <common/compat/endian.h>
29 #include <common/compat/string.h>
30 #include <common/sessiond-comm/relayd.h>
31 #include <common/index/ctf-index.h>
36 * Send command. Fill up the header and append the data.
38 static int send_command(struct lttcomm_relayd_sock
*rsock
,
39 enum lttcomm_relayd_command cmd
, const void *data
, size_t size
,
43 struct lttcomm_relayd_hdr header
;
45 uint64_t buf_size
= sizeof(header
);
47 if (rsock
->sock
.fd
< 0) {
55 buf
= zmalloc(buf_size
);
57 PERROR("zmalloc relayd send command buf");
62 memset(&header
, 0, sizeof(header
));
63 header
.cmd
= htobe32(cmd
);
64 header
.data_size
= htobe64(size
);
66 /* Zeroed for now since not used. */
67 header
.cmd_version
= 0;
68 header
.circuit_id
= 0;
70 /* Prepare buffer to send. */
71 memcpy(buf
, &header
, sizeof(header
));
73 memcpy(buf
+ sizeof(header
), data
, size
);
76 DBG3("Relayd sending command %d of size %" PRIu64
, (int) cmd
, buf_size
);
77 ret
= rsock
->sock
.ops
->sendmsg(&rsock
->sock
, buf
, buf_size
, flags
);
79 PERROR("Failed to send command %d of size %" PRIu64
,
91 * Receive reply data on socket. This MUST be call after send_command or else
92 * could result in unexpected behavior(s).
94 static int recv_reply(struct lttcomm_relayd_sock
*rsock
, void *data
, size_t size
)
98 if (rsock
->sock
.fd
< 0) {
102 DBG3("Relayd waiting for reply of size %zu", size
);
104 ret
= rsock
->sock
.ops
->recvmsg(&rsock
->sock
, data
, size
, 0);
105 if (ret
<= 0 || ret
!= size
) {
107 /* Orderly shutdown. */
108 DBG("Socket %d has performed an orderly shutdown", rsock
->sock
.fd
);
110 DBG("Receiving reply failed on sock %d for size %zu with ret %d",
111 rsock
->sock
.fd
, size
, ret
);
113 /* Always return -1 here and the caller can use errno. */
123 * Starting from 2.11, RELAYD_CREATE_SESSION payload (session_name & hostname)
124 * have no length restriction on the sender side.
125 * Length for both payloads is stored in the msg struct. A new dynamic size
126 * payload size is introduced.
128 static int relayd_create_session_2_11(struct lttcomm_relayd_sock
*rsock
,
129 char *session_name
, char *hostname
,
130 int session_live_timer
, unsigned int snapshot
,
131 uint64_t sessiond_session_id
, const lttng_uuid sessiond_uuid
)
134 struct lttcomm_relayd_create_session_2_11
*msg
= NULL
;
135 size_t session_name_len
;
139 /* The two names are sent with a '\0' delimiter between them. */
140 session_name_len
= strlen(session_name
) + 1;
141 hostname_len
= strlen(hostname
) + 1;
143 msg_length
= sizeof(*msg
) + session_name_len
+ hostname_len
;
144 msg
= zmalloc(msg_length
);
146 PERROR("zmalloc create_session_2_11 command message");
151 assert(session_name_len
<= UINT32_MAX
);
152 msg
->session_name_len
= htobe32(session_name_len
);
154 assert(hostname_len
<= UINT32_MAX
);
155 msg
->hostname_len
= htobe32(hostname_len
);
157 if (lttng_strncpy(msg
->names
, session_name
, session_name_len
)) {
161 if (lttng_strncpy(msg
->names
+ session_name_len
, hostname
, hostname_len
)) {
166 msg
->live_timer
= htobe32(session_live_timer
);
167 msg
->snapshot
= !!snapshot
;
169 lttng_uuid_copy(msg
->sessiond_uuid
, sessiond_uuid
);
170 msg
->session_id
= htobe64(sessiond_session_id
);
173 ret
= send_command(rsock
, RELAYD_CREATE_SESSION
, msg
, msg_length
, 0);
182 * From 2.4 to 2.10, RELAYD_CREATE_SESSION takes additional parameters to
183 * support the live reading capability.
185 static int relayd_create_session_2_4(struct lttcomm_relayd_sock
*rsock
,
186 char *session_name
, char *hostname
, int session_live_timer
,
187 unsigned int snapshot
)
190 struct lttcomm_relayd_create_session_2_4 msg
;
192 if (lttng_strncpy(msg
.session_name
, session_name
,
193 sizeof(msg
.session_name
))) {
197 if (lttng_strncpy(msg
.hostname
, hostname
, sizeof(msg
.hostname
))) {
201 msg
.live_timer
= htobe32(session_live_timer
);
202 msg
.snapshot
= htobe32(snapshot
);
205 ret
= send_command(rsock
, RELAYD_CREATE_SESSION
, &msg
, sizeof(msg
), 0);
215 * RELAYD_CREATE_SESSION from 2.1 to 2.3.
217 static int relayd_create_session_2_1(struct lttcomm_relayd_sock
*rsock
)
222 ret
= send_command(rsock
, RELAYD_CREATE_SESSION
, NULL
, 0, 0);
232 * Send a RELAYD_CREATE_SESSION command to the relayd with the given socket and
233 * set session_id of the relayd if we have a successful reply from the relayd.
235 * On success, return 0 else a negative value which is either an errno error or
236 * a lttng error code from the relayd.
238 int relayd_create_session(struct lttcomm_relayd_sock
*rsock
, uint64_t *relayd_session_id
,
239 char *session_name
, char *hostname
, int session_live_timer
,
240 unsigned int snapshot
, uint64_t sessiond_session_id
,
241 const lttng_uuid sessiond_uuid
)
244 struct lttcomm_relayd_status_session reply
;
247 assert(relayd_session_id
);
249 DBG("Relayd create session");
251 if (rsock
->minor
< 4) {
252 /* From 2.1 to 2.3 */
253 ret
= relayd_create_session_2_1(rsock
);
254 } else if (rsock
->minor
>= 4 && rsock
->minor
< 11) {
255 /* From 2.4 to 2.10 */
256 ret
= relayd_create_session_2_4(rsock
, session_name
,
257 hostname
, session_live_timer
, snapshot
);
259 /* From 2.11 to ... */
260 ret
= relayd_create_session_2_11(rsock
, session_name
,
261 hostname
, session_live_timer
, snapshot
,
262 sessiond_session_id
, sessiond_uuid
);
269 /* Receive response */
270 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
275 reply
.session_id
= be64toh(reply
.session_id
);
276 reply
.ret_code
= be32toh(reply
.ret_code
);
278 /* Return session id or negative ret code. */
279 if (reply
.ret_code
!= LTTNG_OK
) {
281 ERR("Relayd create session replied error %d", reply
.ret_code
);
285 *relayd_session_id
= reply
.session_id
;
288 DBG("Relayd session created with id %" PRIu64
, reply
.session_id
);
294 static int relayd_add_stream_2_1(struct lttcomm_relayd_sock
*rsock
,
295 const char *channel_name
, const char *pathname
)
298 struct lttcomm_relayd_add_stream msg
;
300 memset(&msg
, 0, sizeof(msg
));
301 if (lttng_strncpy(msg
.channel_name
, channel_name
,
302 sizeof(msg
.channel_name
))) {
307 if (lttng_strncpy(msg
.pathname
, pathname
,
308 sizeof(msg
.pathname
))) {
314 ret
= send_command(rsock
, RELAYD_ADD_STREAM
, (void *) &msg
, sizeof(msg
), 0);
324 static int relayd_add_stream_2_2(struct lttcomm_relayd_sock
*rsock
,
325 const char *channel_name
, const char *pathname
,
326 uint64_t tracefile_size
, uint64_t tracefile_count
)
329 struct lttcomm_relayd_add_stream_2_2 msg
;
331 memset(&msg
, 0, sizeof(msg
));
332 /* Compat with relayd 2.2 to 2.10 */
333 if (lttng_strncpy(msg
.channel_name
, channel_name
,
334 sizeof(msg
.channel_name
))) {
338 if (lttng_strncpy(msg
.pathname
, pathname
,
339 sizeof(msg
.pathname
))) {
343 msg
.tracefile_size
= htobe64(tracefile_size
);
344 msg
.tracefile_count
= htobe64(tracefile_count
);
347 ret
= send_command(rsock
, RELAYD_ADD_STREAM
, (void *) &msg
, sizeof(msg
), 0);
356 static int relayd_add_stream_2_11(struct lttcomm_relayd_sock
*rsock
,
357 const char *channel_name
, const char *pathname
,
358 uint64_t tracefile_size
, uint64_t tracefile_count
,
359 uint64_t trace_archive_id
)
362 struct lttcomm_relayd_add_stream_2_11
*msg
= NULL
;
363 size_t channel_name_len
;
367 /* The two names are sent with a '\0' delimiter between them. */
368 channel_name_len
= strlen(channel_name
) + 1;
369 pathname_len
= strlen(pathname
) + 1;
371 msg_length
= sizeof(*msg
) + channel_name_len
+ pathname_len
;
372 msg
= zmalloc(msg_length
);
374 PERROR("zmalloc add_stream_2_11 command message");
379 assert(channel_name_len
<= UINT32_MAX
);
380 msg
->channel_name_len
= htobe32(channel_name_len
);
382 assert(pathname_len
<= UINT32_MAX
);
383 msg
->pathname_len
= htobe32(pathname_len
);
385 if (lttng_strncpy(msg
->names
, channel_name
, channel_name_len
)) {
389 if (lttng_strncpy(msg
->names
+ channel_name_len
, pathname
, pathname_len
)) {
394 msg
->tracefile_size
= htobe64(tracefile_size
);
395 msg
->tracefile_count
= htobe64(tracefile_count
);
396 msg
->trace_archive_id
= htobe64(trace_archive_id
);
399 ret
= send_command(rsock
, RELAYD_ADD_STREAM
, (void *) msg
, msg_length
, 0);
410 * Add stream on the relayd and assign stream handle to the stream_id argument.
412 * On success return 0 else return ret_code negative value.
414 int relayd_add_stream(struct lttcomm_relayd_sock
*rsock
, const char *channel_name
,
415 const char *pathname
, uint64_t *stream_id
,
416 uint64_t tracefile_size
, uint64_t tracefile_count
,
417 uint64_t trace_archive_id
)
420 struct lttcomm_relayd_status_stream reply
;
422 /* Code flow error. Safety net. */
424 assert(channel_name
);
427 DBG("Relayd adding stream for channel name %s", channel_name
);
429 /* Compat with relayd 2.1 */
430 if (rsock
->minor
== 1) {
432 ret
= relayd_add_stream_2_1(rsock
, channel_name
, pathname
);
434 } else if (rsock
->minor
> 1 && rsock
->minor
< 11) {
435 /* From 2.2 to 2.10 */
436 ret
= relayd_add_stream_2_2(rsock
, channel_name
, pathname
,
437 tracefile_size
, tracefile_count
);
439 /* From 2.11 to ...*/
440 ret
= relayd_add_stream_2_11(rsock
, channel_name
, pathname
,
441 tracefile_size
, tracefile_count
,
450 /* Waiting for reply */
451 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
456 /* Back to host bytes order. */
457 reply
.handle
= be64toh(reply
.handle
);
458 reply
.ret_code
= be32toh(reply
.ret_code
);
460 /* Return session id or negative ret code. */
461 if (reply
.ret_code
!= LTTNG_OK
) {
463 ERR("Relayd add stream replied error %d", reply
.ret_code
);
467 *stream_id
= reply
.handle
;
470 DBG("Relayd stream added successfully with handle %" PRIu64
,
478 * Inform the relay that all the streams for the current channel has been sent.
480 * On success return 0 else return ret_code negative value.
482 int relayd_streams_sent(struct lttcomm_relayd_sock
*rsock
)
485 struct lttcomm_relayd_generic_reply reply
;
487 /* Code flow error. Safety net. */
490 DBG("Relayd sending streams sent.");
492 /* This feature was introduced in 2.4, ignore it for earlier versions. */
493 if (rsock
->minor
< 4) {
499 ret
= send_command(rsock
, RELAYD_STREAMS_SENT
, NULL
, 0, 0);
504 /* Waiting for reply */
505 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
510 /* Back to host bytes order. */
511 reply
.ret_code
= be32toh(reply
.ret_code
);
513 /* Return session id or negative ret code. */
514 if (reply
.ret_code
!= LTTNG_OK
) {
516 ERR("Relayd streams sent replied error %d", reply
.ret_code
);
523 DBG("Relayd streams sent success");
531 * Check version numbers on the relayd.
532 * If major versions are compatible, we assign minor_to_use to the
533 * minor version of the procotol we are going to use for this session.
535 * Return 0 if the two daemons are compatible, LTTNG_ERR_RELAYD_VERSION_FAIL
536 * otherwise, or a negative value on network errors.
538 int relayd_version_check(struct lttcomm_relayd_sock
*rsock
)
541 struct lttcomm_relayd_version msg
;
543 /* Code flow error. Safety net. */
546 DBG("Relayd version check for major.minor %u.%u", rsock
->major
,
549 memset(&msg
, 0, sizeof(msg
));
550 /* Prepare network byte order before transmission. */
551 msg
.major
= htobe32(rsock
->major
);
552 msg
.minor
= htobe32(rsock
->minor
);
555 ret
= send_command(rsock
, RELAYD_VERSION
, (void *) &msg
, sizeof(msg
), 0);
560 /* Receive response */
561 ret
= recv_reply(rsock
, (void *) &msg
, sizeof(msg
));
566 /* Set back to host bytes order */
567 msg
.major
= be32toh(msg
.major
);
568 msg
.minor
= be32toh(msg
.minor
);
571 * Only validate the major version. If the other side is higher,
572 * communication is not possible. Only major version equal can talk to each
573 * other. If the minor version differs, the lowest version is used by both
576 if (msg
.major
!= rsock
->major
) {
578 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
579 DBG2("Relayd version is NOT compatible. Relayd version %u != %u (us)",
580 msg
.major
, rsock
->major
);
585 * If the relayd's minor version is higher, it will adapt to our version so
586 * we can continue to use the latest relayd communication data structure.
587 * If the received minor version is higher, the relayd should adapt to us.
589 if (rsock
->minor
> msg
.minor
) {
590 rsock
->minor
= msg
.minor
;
593 /* Version number compatible */
594 DBG2("Relayd version is compatible, using protocol version %u.%u",
595 rsock
->major
, rsock
->minor
);
603 * Add stream on the relayd and assign stream handle to the stream_id argument.
605 * On success return 0 else return ret_code negative value.
607 int relayd_send_metadata(struct lttcomm_relayd_sock
*rsock
, size_t len
)
611 /* Code flow error. Safety net. */
614 DBG("Relayd sending metadata of size %zu", len
);
617 ret
= send_command(rsock
, RELAYD_SEND_METADATA
, NULL
, len
, 0);
622 DBG2("Relayd metadata added successfully");
625 * After that call, the metadata data MUST be sent to the relayd so the
626 * receive size on the other end matches the len of the metadata packet
627 * header. This is why we don't wait for a reply here.
635 * Connect to relay daemon with an allocated lttcomm_relayd_sock.
637 int relayd_connect(struct lttcomm_relayd_sock
*rsock
)
639 /* Code flow error. Safety net. */
642 if (!rsock
->sock
.ops
) {
644 * Attempting a connect on a non-initialized socket.
649 DBG3("Relayd connect ...");
651 return rsock
->sock
.ops
->connect(&rsock
->sock
);
655 * Close relayd socket with an allocated lttcomm_relayd_sock.
657 * If no socket operations are found, simply return 0 meaning that everything
658 * is fine. Without operations, the socket can not possibly be opened or used.
659 * This is possible if the socket was allocated but not created. However, the
660 * caller could simply use it to store a valid file descriptor for instance
661 * passed over a Unix socket and call this to cleanup but still without a valid
664 * Return the close returned value. On error, a negative value is usually
665 * returned back from close(2).
667 int relayd_close(struct lttcomm_relayd_sock
*rsock
)
671 /* Code flow error. Safety net. */
674 /* An invalid fd is fine, return success. */
675 if (rsock
->sock
.fd
< 0) {
680 DBG3("Relayd closing socket %d", rsock
->sock
.fd
);
682 if (rsock
->sock
.ops
) {
683 ret
= rsock
->sock
.ops
->close(&rsock
->sock
);
685 /* Default call if no specific ops found. */
686 ret
= close(rsock
->sock
.fd
);
688 PERROR("relayd_close default close");
698 * Send data header structure to the relayd.
700 int relayd_send_data_hdr(struct lttcomm_relayd_sock
*rsock
,
701 struct lttcomm_relayd_data_hdr
*hdr
, size_t size
)
705 /* Code flow error. Safety net. */
709 if (rsock
->sock
.fd
< 0) {
713 DBG3("Relayd sending data header of size %zu", size
);
715 /* Again, safety net */
717 size
= sizeof(struct lttcomm_relayd_data_hdr
);
720 /* Only send data header. */
721 ret
= rsock
->sock
.ops
->sendmsg(&rsock
->sock
, hdr
, size
, 0);
728 * The data MUST be sent right after that command for the receive on the
729 * other end to match the size in the header.
737 * Send close stream command to the relayd.
739 int relayd_send_close_stream(struct lttcomm_relayd_sock
*rsock
, uint64_t stream_id
,
740 uint64_t last_net_seq_num
)
743 struct lttcomm_relayd_close_stream msg
;
744 struct lttcomm_relayd_generic_reply reply
;
746 /* Code flow error. Safety net. */
749 DBG("Relayd closing stream id %" PRIu64
, stream_id
);
751 memset(&msg
, 0, sizeof(msg
));
752 msg
.stream_id
= htobe64(stream_id
);
753 msg
.last_net_seq_num
= htobe64(last_net_seq_num
);
756 ret
= send_command(rsock
, RELAYD_CLOSE_STREAM
, (void *) &msg
, sizeof(msg
), 0);
761 /* Receive response */
762 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
767 reply
.ret_code
= be32toh(reply
.ret_code
);
769 /* Return session id or negative ret code. */
770 if (reply
.ret_code
!= LTTNG_OK
) {
772 ERR("Relayd close stream replied error %d", reply
.ret_code
);
778 DBG("Relayd close stream id %" PRIu64
" successfully", stream_id
);
785 * Check for data availability for a given stream id.
787 * Return 0 if NOT pending, 1 if so and a negative value on error.
789 int relayd_data_pending(struct lttcomm_relayd_sock
*rsock
, uint64_t stream_id
,
790 uint64_t last_net_seq_num
)
793 struct lttcomm_relayd_data_pending msg
;
794 struct lttcomm_relayd_generic_reply reply
;
796 /* Code flow error. Safety net. */
799 DBG("Relayd data pending for stream id %" PRIu64
, stream_id
);
801 memset(&msg
, 0, sizeof(msg
));
802 msg
.stream_id
= htobe64(stream_id
);
803 msg
.last_net_seq_num
= htobe64(last_net_seq_num
);
806 ret
= send_command(rsock
, RELAYD_DATA_PENDING
, (void *) &msg
,
812 /* Receive response */
813 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
818 reply
.ret_code
= be32toh(reply
.ret_code
);
820 /* Return session id or negative ret code. */
821 if (reply
.ret_code
>= LTTNG_OK
) {
822 ERR("Relayd data pending replied error %d", reply
.ret_code
);
825 /* At this point, the ret code is either 1 or 0 */
826 ret
= reply
.ret_code
;
828 DBG("Relayd data is %s pending for stream id %" PRIu64
,
829 ret
== 1 ? "" : "NOT", stream_id
);
836 * Check on the relayd side for a quiescent state on the control socket.
838 int relayd_quiescent_control(struct lttcomm_relayd_sock
*rsock
,
839 uint64_t metadata_stream_id
)
842 struct lttcomm_relayd_quiescent_control msg
;
843 struct lttcomm_relayd_generic_reply reply
;
845 /* Code flow error. Safety net. */
848 DBG("Relayd checking quiescent control state");
850 memset(&msg
, 0, sizeof(msg
));
851 msg
.stream_id
= htobe64(metadata_stream_id
);
854 ret
= send_command(rsock
, RELAYD_QUIESCENT_CONTROL
, &msg
, sizeof(msg
), 0);
859 /* Receive response */
860 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
865 reply
.ret_code
= be32toh(reply
.ret_code
);
867 /* Return session id or negative ret code. */
868 if (reply
.ret_code
!= LTTNG_OK
) {
870 ERR("Relayd quiescent control replied error %d", reply
.ret_code
);
874 /* Control socket is quiescent */
882 * Begin a data pending command for a specific session id.
884 int relayd_begin_data_pending(struct lttcomm_relayd_sock
*rsock
, uint64_t id
)
887 struct lttcomm_relayd_begin_data_pending msg
;
888 struct lttcomm_relayd_generic_reply reply
;
890 /* Code flow error. Safety net. */
893 DBG("Relayd begin data pending");
895 memset(&msg
, 0, sizeof(msg
));
896 msg
.session_id
= htobe64(id
);
899 ret
= send_command(rsock
, RELAYD_BEGIN_DATA_PENDING
, &msg
, sizeof(msg
), 0);
904 /* Receive response */
905 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
910 reply
.ret_code
= be32toh(reply
.ret_code
);
912 /* Return session id or negative ret code. */
913 if (reply
.ret_code
!= LTTNG_OK
) {
915 ERR("Relayd begin data pending replied error %d", reply
.ret_code
);
926 * End a data pending command for a specific session id.
928 * Return 0 on success and set is_data_inflight to 0 if no data is being
929 * streamed or 1 if it is the case.
931 int relayd_end_data_pending(struct lttcomm_relayd_sock
*rsock
, uint64_t id
,
932 unsigned int *is_data_inflight
)
935 struct lttcomm_relayd_end_data_pending msg
;
936 struct lttcomm_relayd_generic_reply reply
;
938 /* Code flow error. Safety net. */
941 DBG("Relayd end data pending");
943 memset(&msg
, 0, sizeof(msg
));
944 msg
.session_id
= htobe64(id
);
947 ret
= send_command(rsock
, RELAYD_END_DATA_PENDING
, &msg
, sizeof(msg
), 0);
952 /* Receive response */
953 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
958 recv_ret
= be32toh(reply
.ret_code
);
964 *is_data_inflight
= recv_ret
;
966 DBG("Relayd end data pending is data inflight: %d", recv_ret
);
975 * Send index to the relayd.
977 int relayd_send_index(struct lttcomm_relayd_sock
*rsock
,
978 struct ctf_packet_index
*index
, uint64_t relay_stream_id
,
979 uint64_t net_seq_num
)
982 struct lttcomm_relayd_index msg
;
983 struct lttcomm_relayd_generic_reply reply
;
985 /* Code flow error. Safety net. */
988 if (rsock
->minor
< 4) {
989 DBG("Not sending indexes before protocol 2.4");
994 DBG("Relayd sending index for stream ID %" PRIu64
, relay_stream_id
);
996 memset(&msg
, 0, sizeof(msg
));
997 msg
.relay_stream_id
= htobe64(relay_stream_id
);
998 msg
.net_seq_num
= htobe64(net_seq_num
);
1000 /* The index is already in big endian. */
1001 msg
.packet_size
= index
->packet_size
;
1002 msg
.content_size
= index
->content_size
;
1003 msg
.timestamp_begin
= index
->timestamp_begin
;
1004 msg
.timestamp_end
= index
->timestamp_end
;
1005 msg
.events_discarded
= index
->events_discarded
;
1006 msg
.stream_id
= index
->stream_id
;
1008 if (rsock
->minor
>= 8) {
1009 msg
.stream_instance_id
= index
->stream_instance_id
;
1010 msg
.packet_seq_num
= index
->packet_seq_num
;
1014 ret
= send_command(rsock
, RELAYD_SEND_INDEX
, &msg
,
1015 lttcomm_relayd_index_len(lttng_to_index_major(rsock
->major
,
1017 lttng_to_index_minor(rsock
->major
, rsock
->minor
)),
1023 /* Receive response */
1024 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
1029 reply
.ret_code
= be32toh(reply
.ret_code
);
1031 /* Return session id or negative ret code. */
1032 if (reply
.ret_code
!= LTTNG_OK
) {
1034 ERR("Relayd send index replied error %d", reply
.ret_code
);
1045 * Ask the relay to reset the metadata trace file (regeneration).
1047 int relayd_reset_metadata(struct lttcomm_relayd_sock
*rsock
,
1048 uint64_t stream_id
, uint64_t version
)
1051 struct lttcomm_relayd_reset_metadata msg
;
1052 struct lttcomm_relayd_generic_reply reply
;
1054 /* Code flow error. Safety net. */
1057 /* Should have been prevented by the sessiond. */
1058 if (rsock
->minor
< 8) {
1059 ERR("Metadata regeneration unsupported before 2.8");
1064 DBG("Relayd reset metadata stream id %" PRIu64
, stream_id
);
1066 memset(&msg
, 0, sizeof(msg
));
1067 msg
.stream_id
= htobe64(stream_id
);
1068 msg
.version
= htobe64(version
);
1071 ret
= send_command(rsock
, RELAYD_RESET_METADATA
, (void *) &msg
, sizeof(msg
), 0);
1076 /* Receive response */
1077 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
1082 reply
.ret_code
= be32toh(reply
.ret_code
);
1084 /* Return session id or negative ret code. */
1085 if (reply
.ret_code
!= LTTNG_OK
) {
1087 ERR("Relayd reset metadata replied error %d", reply
.ret_code
);
1093 DBG("Relayd reset metadata stream id %" PRIu64
" successfully", stream_id
);
1099 int relayd_rotate_stream(struct lttcomm_relayd_sock
*rsock
, uint64_t stream_id
,
1100 const char *new_pathname
, uint64_t new_chunk_id
,
1104 struct lttcomm_relayd_rotate_stream
*msg
= NULL
;
1105 struct lttcomm_relayd_generic_reply reply
;
1109 /* Code flow error. Safety net. */
1112 DBG("Sending rotate stream id %" PRIu64
" command to relayd", stream_id
);
1114 /* Account for the trailing NULL. */
1115 len
= lttng_strnlen(new_pathname
, LTTNG_PATH_MAX
) + 1;
1116 if (len
> LTTNG_PATH_MAX
) {
1117 ERR("Path used in relayd rotate stream command exceeds the maximal allowed length");
1122 msg_len
= offsetof(struct lttcomm_relayd_rotate_stream
, new_pathname
) + len
;
1123 msg
= zmalloc(msg_len
);
1125 PERROR("Failed to allocate relayd rotate stream command of %d bytes",
1131 if (lttng_strncpy(msg
->new_pathname
, new_pathname
, len
)) {
1133 ERR("Failed to copy relayd rotate stream command's new path name");
1137 msg
->pathname_length
= htobe32(len
);
1138 msg
->stream_id
= htobe64(stream_id
);
1139 msg
->new_chunk_id
= htobe64(new_chunk_id
);
1141 * The seq_num is invalid for metadata streams, but it is ignored on
1144 msg
->rotate_at_seq_num
= htobe64(seq_num
);
1147 ret
= send_command(rsock
, RELAYD_ROTATE_STREAM
, (void *) msg
, msg_len
, 0);
1149 ERR("Send rotate command");
1153 /* Receive response. */
1154 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
1156 ERR("Receive rotate reply");
1160 reply
.ret_code
= be32toh(reply
.ret_code
);
1162 /* Return session id or negative ret code. */
1163 if (reply
.ret_code
!= LTTNG_OK
) {
1165 ERR("Relayd rotate stream replied error %d", reply
.ret_code
);
1169 DBG("Relayd rotated stream id %" PRIu64
" successfully", stream_id
);
1177 int relayd_rotate_rename(struct lttcomm_relayd_sock
*rsock
,
1178 const char *old_path
, const char *new_path
)
1181 struct lttcomm_relayd_rotate_rename
*msg
= NULL
;
1182 struct lttcomm_relayd_generic_reply reply
;
1183 size_t old_path_length
, new_path_length
;
1186 /* Code flow error. Safety net. */
1189 DBG("Relayd rename chunk %s to %s", old_path
, new_path
);
1191 /* The two paths are sent with a '\0' delimiter between them. */
1192 old_path_length
= strlen(old_path
) + 1;
1193 new_path_length
= strlen(new_path
) + 1;
1195 msg_length
= sizeof(*msg
) + old_path_length
+ new_path_length
;
1196 msg
= zmalloc(msg_length
);
1198 PERROR("zmalloc rotate-rename command message");
1203 assert(old_path_length
<= UINT32_MAX
);
1204 msg
->old_path_length
= htobe32(old_path_length
);
1206 assert(new_path_length
<= UINT32_MAX
);
1207 msg
->new_path_length
= htobe32(new_path_length
);
1209 strcpy(msg
->paths
, old_path
);
1210 strcpy(msg
->paths
+ old_path_length
, new_path
);
1213 ret
= send_command(rsock
, RELAYD_ROTATE_RENAME
, (const void *) msg
,
1219 /* Receive response */
1220 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
1225 reply
.ret_code
= be32toh(reply
.ret_code
);
1227 /* Return session id or negative ret code. */
1228 if (reply
.ret_code
!= LTTNG_OK
) {
1230 ERR("Relayd rotate rename replied error %d", reply
.ret_code
);
1236 DBG("Relayd rotate rename completed successfully");
1243 int relayd_rotate_pending(struct lttcomm_relayd_sock
*rsock
, uint64_t chunk_id
)
1246 struct lttcomm_relayd_rotate_pending msg
;
1247 struct lttcomm_relayd_rotate_pending_reply reply
;
1249 /* Code flow error. Safety net. */
1252 DBG("Querying relayd for rotate pending with chunk_id %" PRIu64
,
1255 memset(&msg
, 0, sizeof(msg
));
1256 msg
.chunk_id
= htobe64(chunk_id
);
1259 ret
= send_command(rsock
, RELAYD_ROTATE_PENDING
, (void *) &msg
,
1265 /* Receive response */
1266 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
1271 reply
.generic
.ret_code
= be32toh(reply
.generic
.ret_code
);
1273 /* Return session id or negative ret code. */
1274 if (reply
.generic
.ret_code
!= LTTNG_OK
) {
1275 ret
= -reply
.generic
.ret_code
;
1276 ERR("Relayd rotate pending replied with error %d", ret
);
1279 /* No error, just rotate pending state */
1280 if (reply
.is_pending
== 0 || reply
.is_pending
== 1) {
1281 ret
= reply
.is_pending
;
1282 DBG("Relayd rotate pending command completed successfully with result \"%s\"",
1283 ret
? "rotation pending" : "rotation NOT pending");
1285 ret
= -LTTNG_ERR_UNK
;
1293 int relayd_mkdir(struct lttcomm_relayd_sock
*rsock
, const char *path
)
1296 struct lttcomm_relayd_mkdir
*msg
;
1297 struct lttcomm_relayd_generic_reply reply
;
1300 /* Code flow error. Safety net. */
1303 DBG("Relayd mkdir path %s", path
);
1305 len
= strlen(path
) + 1;
1306 msg
= zmalloc(sizeof(msg
->length
) + len
);
1308 PERROR("Alloc mkdir msg");
1312 msg
->length
= htobe32((uint32_t) len
);
1314 if (lttng_strncpy(msg
->path
, path
, len
)) {
1320 ret
= send_command(rsock
, RELAYD_MKDIR
, (void *) msg
,
1321 sizeof(msg
->length
) + len
, 0);
1326 /* Receive response */
1327 ret
= recv_reply(rsock
, (void *) &reply
, sizeof(reply
));
1332 reply
.ret_code
= be32toh(reply
.ret_code
);
1334 /* Return session id or negative ret code. */
1335 if (reply
.ret_code
!= LTTNG_OK
) {
1337 ERR("Relayd mkdir replied error %d", reply
.ret_code
);
1343 DBG("Relayd mkdir completed successfully");