2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program 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
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <common/common.h>
26 #include <common/consumer.h>
27 #include <common/defaults.h>
30 #include "ust-consumer.h"
33 * Send a single channel to the consumer using command ADD_CHANNEL.
35 static int send_channel(int sock
, struct ust_app_channel
*uchan
)
38 struct lttcomm_consumer_msg msg
;
48 DBG2("Sending channel %s to UST consumer", uchan
->name
);
50 consumer_init_channel_comm_msg(&msg
,
51 LTTNG_CONSUMER_ADD_CHANNEL
,
53 uchan
->attr
.subbuf_size
,
54 uchan
->obj
->memory_map_size
,
56 uchan
->streams
.count
);
58 ret
= consumer_send_channel(sock
, &msg
);
63 fd
= uchan
->obj
->shm_fd
;
64 ret
= consumer_send_fds(sock
, &fd
, 1);
74 * Send a single stream to the consumer using ADD_STREAM command.
76 static int send_channel_stream(int sock
, struct ust_app_channel
*uchan
,
77 struct ust_app_session
*usess
, struct ltt_ust_stream
*stream
,
78 struct consumer_output
*consumer
, const char *pathname
)
81 struct lttcomm_consumer_msg msg
;
89 DBG2("Sending stream %d of channel %s to kernel consumer",
90 stream
->obj
->shm_fd
, uchan
->name
);
92 consumer_init_stream_comm_msg(&msg
,
93 LTTNG_CONSUMER_ADD_STREAM
,
96 LTTNG_CONSUMER_ACTIVE_STREAM
,
97 DEFAULT_UST_CHANNEL_OUTPUT
,
98 stream
->obj
->memory_map_size
,
101 consumer
->net_seq_index
,
102 0, /* Metadata flag unset */
107 /* Send stream and file descriptor */
108 fds
[0] = stream
->obj
->shm_fd
;
109 fds
[1] = stream
->obj
->wait_fd
;
110 ret
= consumer_send_stream(sock
, consumer
, &msg
, fds
, 2);
120 * Send all stream fds of UST channel to the consumer.
122 static int send_channel_streams(int sock
,
123 struct ust_app_channel
*uchan
, struct ust_app_session
*usess
,
124 struct consumer_output
*consumer
)
127 char tmp_path
[PATH_MAX
];
128 const char *pathname
;
129 struct ltt_ust_stream
*stream
, *tmp
;
131 DBG("Sending streams of channel %s to UST consumer", uchan
->name
);
133 ret
= send_channel(sock
, uchan
);
138 /* Get the right path name destination */
139 if (consumer
->type
== CONSUMER_DST_LOCAL
) {
140 /* Set application path to the destination path */
141 ret
= snprintf(tmp_path
, sizeof(tmp_path
), "%s/%s/%s",
142 consumer
->dst
.trace_path
, consumer
->subdir
, usess
->path
);
144 PERROR("snprintf stream path");
148 DBG3("UST local consumer tracefile path: %s", pathname
);
150 ret
= snprintf(tmp_path
, sizeof(tmp_path
), "%s/%s",
151 consumer
->subdir
, usess
->path
);
153 PERROR("snprintf stream path");
157 DBG3("UST network consumer subdir path: %s", pathname
);
160 cds_list_for_each_entry_safe(stream
, tmp
, &uchan
->streams
.head
, list
) {
161 if (!stream
->obj
->shm_fd
) {
165 ret
= send_channel_stream(sock
, uchan
, usess
, stream
, consumer
,
172 DBG("UST consumer channel streams sent");
181 * Sending metadata to the consumer with command ADD_CHANNEL and ADD_STREAM.
183 static int send_metadata(int sock
, struct ust_app_session
*usess
,
184 struct consumer_output
*consumer
)
187 char tmp_path
[PATH_MAX
];
188 const char *pathname
;
189 struct lttcomm_consumer_msg msg
;
196 ERR("Consumer socket is negative (%d)", sock
);
200 if (usess
->metadata
->obj
->shm_fd
== 0) {
201 ERR("Metadata obj shm_fd is 0");
206 DBG("UST consumer sending metadata stream fd");
208 consumer_init_channel_comm_msg(&msg
,
209 LTTNG_CONSUMER_ADD_CHANNEL
,
210 usess
->metadata
->obj
->shm_fd
,
211 usess
->metadata
->attr
.subbuf_size
,
212 usess
->metadata
->obj
->memory_map_size
,
216 ret
= consumer_send_channel(sock
, &msg
);
221 /* Sending metadata shared memory fd */
222 fd
= usess
->metadata
->obj
->shm_fd
;
223 ret
= consumer_send_fds(sock
, &fd
, 1);
228 /* Get correct path name destination */
229 if (consumer
->type
== CONSUMER_DST_LOCAL
) {
230 /* Set application path to the destination path */
231 ret
= snprintf(tmp_path
, sizeof(tmp_path
), "%s/%s/%s",
232 consumer
->dst
.trace_path
, consumer
->subdir
, usess
->path
);
234 PERROR("snprintf stream path");
239 /* Create directory */
240 ret
= run_as_mkdir_recursive(pathname
, S_IRWXU
| S_IRWXG
,
241 usess
->uid
, usess
->gid
);
243 if (ret
!= -EEXIST
) {
244 ERR("Trace directory creation error");
249 ret
= snprintf(tmp_path
, sizeof(tmp_path
), "%s/%s",
250 consumer
->subdir
, usess
->path
);
252 PERROR("snprintf metadata path");
258 consumer_init_stream_comm_msg(&msg
,
259 LTTNG_CONSUMER_ADD_STREAM
,
260 usess
->metadata
->obj
->shm_fd
,
261 usess
->metadata
->stream_obj
->shm_fd
,
262 LTTNG_CONSUMER_ACTIVE_STREAM
,
263 DEFAULT_UST_CHANNEL_OUTPUT
,
264 usess
->metadata
->stream_obj
->memory_map_size
,
267 consumer
->net_seq_index
,
268 1, /* Flag metadata set */
273 /* Send stream and file descriptor */
274 fds
[0] = usess
->metadata
->stream_obj
->shm_fd
;
275 fds
[1] = usess
->metadata
->stream_obj
->wait_fd
;
276 ret
= consumer_send_stream(sock
, consumer
, &msg
, fds
, 2);
286 * Send all stream fds of the UST session to the consumer.
288 int ust_consumer_send_session(struct ust_app_session
*usess
,
289 struct consumer_output
*consumer
, struct consumer_socket
*sock
)
292 struct lttng_ht_iter iter
;
293 struct ust_app_channel
*ua_chan
;
297 if (consumer
== NULL
|| sock
== NULL
) {
298 /* There is no consumer so just ignoring the command. */
299 DBG("UST consumer does not exist. Not sending streams");
303 DBG("Sending metadata stream fd to consumer on %d", sock
->fd
);
305 pthread_mutex_lock(sock
->lock
);
307 /* Sending metadata information to the consumer */
308 ret
= send_metadata(sock
->fd
, usess
, consumer
);
313 /* Send each channel fd streams of session */
315 cds_lfht_for_each_entry(usess
->channels
->ht
, &iter
.iter
, ua_chan
,
318 * Indicate that the channel was not created on the tracer side so skip
319 * sending unexisting streams.
321 if (ua_chan
->obj
== NULL
) {
325 ret
= send_channel_streams(sock
->fd
, ua_chan
, usess
, consumer
);
333 DBG("consumer fds (metadata and channel streams) sent");
339 pthread_mutex_unlock(sock
->lock
);