Commit | Line | Data |
---|---|---|
48842b30 DG |
1 | /* |
2 | * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca> | |
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 as published by the Free | |
6 | * Software Foundation; only version 2 of the License. | |
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., 59 Temple | |
15 | * Place - Suite 330, Boston, MA 02111-1307, USA. | |
16 | */ | |
17 | ||
18 | #define _GNU_SOURCE | |
19 | #include <errno.h> | |
20 | #include <stdio.h> | |
21 | #include <stdlib.h> | |
22 | #include <string.h> | |
23 | #include <unistd.h> | |
24 | ||
25 | #include <lttngerr.h> | |
26 | #include <lttng-share.h> | |
27 | #include <lttng-sessiond-comm.h> | |
28 | #include <lttng/lttng-consumer.h> | |
29 | ||
30 | #include "hashtable.h" | |
31 | #include "ust-consumer.h" | |
32 | ||
33 | /* | |
34 | * Send all stream fds of UST channel to the consumer. | |
35 | */ | |
36 | static int send_channel_streams(int sock, | |
37 | struct ust_app_channel *uchan) | |
38 | { | |
8010679a | 39 | int ret, fd; |
48842b30 | 40 | struct lttcomm_consumer_msg lum; |
d80a6244 | 41 | struct ltt_ust_stream *stream, *tmp; |
48842b30 DG |
42 | |
43 | DBG("Sending streams of channel %s to UST consumer", uchan->name); | |
44 | ||
45 | /* Send channel */ | |
46 | lum.cmd_type = LTTNG_CONSUMER_ADD_CHANNEL; | |
47 | ||
48 | /* | |
7ad0a0cb MD |
49 | * We need to keep shm_fd open while we transfer the stream file |
50 | * descriptors to make sure this key stays unique within the | |
51 | * session daemon. We can free the channel shm_fd without | |
52 | * problem after we finished sending stream fds for that | |
53 | * channel. | |
48842b30 DG |
54 | */ |
55 | lum.u.channel.channel_key = uchan->obj->shm_fd; | |
56 | lum.u.channel.max_sb_size = uchan->attr.subbuf_size; | |
57 | lum.u.channel.mmap_len = uchan->obj->memory_map_size; | |
58 | DBG("Sending channel %d to consumer", lum.u.channel.channel_key); | |
59 | ret = lttcomm_send_unix_sock(sock, &lum, sizeof(lum)); | |
60 | if (ret < 0) { | |
61 | perror("send consumer channel"); | |
62 | goto error; | |
63 | } | |
8010679a MD |
64 | fd = uchan->obj->shm_fd; |
65 | ret = lttcomm_send_fds_unix_sock(sock, &fd, 1); | |
48842b30 DG |
66 | if (ret < 0) { |
67 | perror("send consumer channel ancillary data"); | |
68 | goto error; | |
69 | } | |
70 | ||
d80a6244 | 71 | cds_list_for_each_entry_safe(stream, tmp, &uchan->streams.head, list) { |
48842b30 DG |
72 | int fds[2]; |
73 | ||
74 | if (!stream->obj->shm_fd) { | |
5af2f756 | 75 | continue; |
48842b30 | 76 | } |
48842b30 DG |
77 | lum.cmd_type = LTTNG_CONSUMER_ADD_STREAM; |
78 | lum.u.stream.channel_key = uchan->obj->shm_fd; | |
79 | lum.u.stream.stream_key = stream->obj->shm_fd; | |
80 | lum.u.stream.state = LTTNG_CONSUMER_ACTIVE_STREAM; | |
d41f73b7 MD |
81 | /* |
82 | * FIXME Hack alert! we force MMAP for now. Mixup | |
83 | * between EVENT and UST enums elsewhere. | |
84 | */ | |
85 | lum.u.stream.output = DEFAULT_UST_CHANNEL_OUTPUT; | |
48842b30 DG |
86 | lum.u.stream.mmap_len = stream->obj->memory_map_size; |
87 | strncpy(lum.u.stream.path_name, stream->pathname, PATH_MAX - 1); | |
88 | lum.u.stream.path_name[PATH_MAX - 1] = '\0'; | |
89 | DBG("Sending stream %d to consumer", lum.u.stream.stream_key); | |
90 | ret = lttcomm_send_unix_sock(sock, &lum, sizeof(lum)); | |
91 | if (ret < 0) { | |
92 | perror("send consumer stream"); | |
93 | goto error; | |
94 | } | |
95 | ||
96 | fds[0] = stream->obj->shm_fd; | |
97 | fds[1] = stream->obj->wait_fd; | |
98 | ret = lttcomm_send_fds_unix_sock(sock, fds, 2); | |
99 | if (ret < 0) { | |
100 | perror("send consumer stream ancillary data"); | |
101 | goto error; | |
102 | } | |
48842b30 | 103 | } |
48842b30 DG |
104 | |
105 | DBG("consumer channel streams sent"); | |
106 | ||
107 | return 0; | |
108 | ||
109 | error: | |
110 | return ret; | |
111 | } | |
112 | ||
113 | /* | |
114 | * Send all stream fds of the UST session to the consumer. | |
115 | */ | |
116 | int ust_consumer_send_session(int consumer_fd, struct ust_app_session *usess) | |
117 | { | |
118 | int ret = 0; | |
119 | int sock = consumer_fd; | |
120 | struct cds_lfht_iter iter; | |
121 | struct cds_lfht_node *node; | |
122 | struct lttcomm_consumer_msg lum; | |
123 | struct ust_app_channel *uchan; | |
124 | ||
125 | DBG("Sending metadata stream fd"); | |
126 | ||
7753dea8 MD |
127 | if (consumer_fd < 0) { |
128 | ERR("Consumer has negative file descriptor"); | |
129 | return -EINVAL; | |
130 | } | |
131 | ||
48842b30 | 132 | if (usess->metadata->obj->shm_fd != 0) { |
8010679a | 133 | int fd; |
48842b30 DG |
134 | int fds[2]; |
135 | ||
136 | /* Send metadata channel fd */ | |
137 | lum.cmd_type = LTTNG_CONSUMER_ADD_CHANNEL; | |
138 | lum.u.channel.channel_key = usess->metadata->obj->shm_fd; | |
139 | lum.u.channel.max_sb_size = usess->metadata->attr.subbuf_size; | |
3ee75e9c | 140 | lum.u.channel.mmap_len = usess->metadata->obj->memory_map_size; |
ee6b7fb2 | 141 | DBG("Sending metadata channel %d to consumer", lum.u.channel.channel_key); |
48842b30 DG |
142 | ret = lttcomm_send_unix_sock(sock, &lum, sizeof(lum)); |
143 | if (ret < 0) { | |
144 | perror("send consumer channel"); | |
145 | goto error; | |
146 | } | |
8010679a MD |
147 | fd = usess->metadata->obj->shm_fd; |
148 | ret = lttcomm_send_fds_unix_sock(sock, &fd, 1); | |
48842b30 DG |
149 | if (ret < 0) { |
150 | perror("send consumer metadata channel"); | |
151 | goto error; | |
152 | } | |
153 | ||
154 | /* Send metadata stream fd */ | |
155 | lum.cmd_type = LTTNG_CONSUMER_ADD_STREAM; | |
156 | lum.u.stream.channel_key = usess->metadata->obj->shm_fd; | |
157 | lum.u.stream.stream_key = usess->metadata->stream_obj->shm_fd; | |
158 | lum.u.stream.state = LTTNG_CONSUMER_ACTIVE_STREAM; | |
159 | lum.u.stream.output = DEFAULT_UST_CHANNEL_OUTPUT; | |
160 | lum.u.stream.mmap_len = usess->metadata->stream_obj->memory_map_size; | |
161 | strncpy(lum.u.stream.path_name, usess->metadata->pathname, PATH_MAX - 1); | |
162 | lum.u.stream.path_name[PATH_MAX - 1] = '\0'; | |
163 | DBG("Sending metadata stream %d to consumer", lum.u.stream.stream_key); | |
164 | ret = lttcomm_send_unix_sock(sock, &lum, sizeof(lum)); | |
165 | if (ret < 0) { | |
166 | perror("send consumer metadata stream"); | |
167 | goto error; | |
168 | } | |
169 | fds[0] = usess->metadata->stream_obj->shm_fd; | |
170 | fds[1] = usess->metadata->stream_obj->wait_fd; | |
171 | ret = lttcomm_send_fds_unix_sock(sock, fds, 2); | |
172 | if (ret < 0) { | |
173 | perror("send consumer stream"); | |
174 | goto error; | |
175 | } | |
176 | } | |
177 | ||
178 | /* Send each channel fd streams of session */ | |
179 | rcu_read_lock(); | |
180 | hashtable_get_first(usess->channels, &iter); | |
181 | while ((node = hashtable_iter_get_node(&iter)) != NULL) { | |
182 | uchan = caa_container_of(node, struct ust_app_channel, node); | |
183 | ||
184 | ret = send_channel_streams(sock, uchan); | |
185 | if (ret < 0) { | |
5485f822 | 186 | rcu_read_unlock(); |
48842b30 DG |
187 | goto error; |
188 | } | |
189 | hashtable_get_next(usess->channels, &iter); | |
190 | } | |
191 | rcu_read_unlock(); | |
192 | ||
193 | DBG("consumer fds (metadata and channel streams) sent"); | |
194 | ||
195 | return 0; | |
196 | ||
197 | error: | |
198 | return ret; | |
199 | } |