Commit | Line | Data |
---|---|---|
3a5713da DG |
1 | /* |
2 | * Copyright (C) 2012 - 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 | |
13083fa6 | 19 | #include <assert.h> |
3a5713da DG |
20 | #include <arpa/inet.h> |
21 | #include <netdb.h> | |
22 | #include <stdlib.h> | |
23 | #include <string.h> | |
24 | #include <sys/socket.h> | |
25 | ||
26 | #include <common/common.h> | |
27 | #include <common/defaults.h> | |
a4b92340 | 28 | #include <common/utils.h> |
3a5713da DG |
29 | |
30 | #include "uri.h" | |
31 | ||
32 | enum uri_proto_code { | |
33 | P_NET, P_NET6, P_FILE, P_TCP, P_TCP6, | |
34 | }; | |
35 | ||
36 | struct uri_proto { | |
a4b92340 DG |
37 | const char *name; |
38 | const char *leading_string; | |
3a5713da DG |
39 | enum uri_proto_code code; |
40 | enum lttng_proto_type type; | |
41 | enum lttng_dst_type dtype; | |
42 | }; | |
43 | ||
44 | /* Supported protocols */ | |
45 | static const struct uri_proto proto_uri[] = { | |
a4b92340 DG |
46 | { .name = "file", .leading_string = "file://", .code = P_FILE, .type = 0, .dtype = LTTNG_DST_PATH }, |
47 | { .name = "net", .leading_string = "net://", .code = P_NET, .type = LTTNG_TCP, .dtype = LTTNG_DST_IPV4 }, | |
48 | { .name = "net6", .leading_string = "net6://", .code = P_NET6, .type = LTTNG_TCP, .dtype = LTTNG_DST_IPV6 }, | |
49 | { .name = "tcp", .leading_string = "tcp://", .code = P_TCP, .type = LTTNG_TCP, .dtype = LTTNG_DST_IPV4 }, | |
50 | { .name = "tcp6", .leading_string = "tcp6://", .code = P_TCP6, .type = LTTNG_TCP, .dtype = LTTNG_DST_IPV6 }, | |
51 | /* Invalid proto marking the end of the array. */ | |
52 | { NULL, NULL, 0, 0, 0 } | |
3a5713da DG |
53 | }; |
54 | ||
a4b92340 DG |
55 | /* |
56 | * Return pointer to the character in s matching one of the characters in | |
57 | * accept. If nothing is found, return pointer to the end of string (eos). | |
58 | */ | |
32dd26fb | 59 | static const inline char *strpbrk_or_eos(const char *s, const char *accept) |
a4b92340 DG |
60 | { |
61 | char *p = strpbrk(s, accept); | |
62 | if (p == NULL) { | |
63 | p = strchr(s, '\0'); | |
64 | } | |
65 | ||
66 | return p; | |
67 | } | |
68 | ||
69 | ||
3a5713da DG |
70 | /* |
71 | * Validate if proto is a supported protocol from proto_uri array. | |
72 | */ | |
a4b92340 | 73 | static const struct uri_proto *get_uri_proto(const char *uri_str) |
3a5713da | 74 | { |
a4b92340 | 75 | const struct uri_proto *supported = NULL; |
3a5713da DG |
76 | |
77 | /* Safety net */ | |
a4b92340 | 78 | if (uri_str == NULL) { |
3a5713da DG |
79 | goto end; |
80 | } | |
81 | ||
82 | for (supported = &proto_uri[0]; | |
a4b92340 DG |
83 | supported->leading_string != NULL; ++supported) { |
84 | if (strncasecmp(uri_str, supported->leading_string, | |
85 | strlen(supported->leading_string)) == 0) { | |
3a5713da DG |
86 | goto end; |
87 | } | |
88 | } | |
89 | ||
90 | /* Proto not found */ | |
91 | return NULL; | |
92 | ||
93 | end: | |
94 | return supported; | |
95 | } | |
96 | ||
00e2e675 DG |
97 | /* |
98 | * Set network address from string into dst. Supports both IP string and | |
99 | * hostname. | |
100 | */ | |
101 | static int set_ip_address(const char *addr, int af, char *dst, size_t size) | |
102 | { | |
103 | int ret; | |
104 | unsigned char buf[sizeof(struct in6_addr)]; | |
105 | struct hostent *record; | |
106 | ||
13083fa6 DG |
107 | assert(addr); |
108 | assert(dst); | |
109 | ||
110 | memset(dst, 0, size); | |
111 | ||
00e2e675 DG |
112 | /* Network protocol */ |
113 | ret = inet_pton(af, addr, buf); | |
114 | if (ret < 1) { | |
115 | /* We consider the dst to be an hostname or an invalid IP char */ | |
116 | record = gethostbyname2(addr, af); | |
117 | if (record == NULL) { | |
118 | /* At this point, the IP or the hostname is bad */ | |
b3e12287 | 119 | ERR("URI parse bad hostname %s for af %d", addr, af); |
00e2e675 DG |
120 | goto error; |
121 | } | |
122 | ||
123 | /* Translate IP to string */ | |
124 | (void) inet_ntop(af, record->h_addr_list[0], dst, size); | |
125 | } else { | |
13083fa6 DG |
126 | if (size > 0) { |
127 | strncpy(dst, addr, size); | |
128 | dst[size - 1] = '\0'; | |
129 | } | |
00e2e675 DG |
130 | } |
131 | ||
a4b92340 DG |
132 | DBG2("IP address resolved to %s", dst); |
133 | ||
00e2e675 DG |
134 | return 0; |
135 | ||
136 | error: | |
137 | return -1; | |
138 | } | |
139 | ||
ad20f474 DG |
140 | /* |
141 | * Build a string URL from a lttng_uri object. | |
142 | */ | |
32dd26fb | 143 | __attribute__((visibility("hidden"))) |
ad20f474 DG |
144 | int uri_to_str_url(struct lttng_uri *uri, char *dst, size_t size) |
145 | { | |
146 | int ipver, ret; | |
147 | const char *addr; | |
148 | char proto[4], port[7]; | |
149 | ||
150 | assert(uri); | |
151 | assert(dst); | |
152 | ||
153 | if (uri->dtype == LTTNG_DST_PATH) { | |
154 | ipver = 0; | |
155 | addr = uri->dst.path; | |
156 | (void) snprintf(proto, sizeof(proto), "file"); | |
157 | (void) snprintf(port, sizeof(port), "%s", ""); | |
158 | } else { | |
159 | ipver = (uri->dtype == LTTNG_DST_IPV4) ? 4 : 6; | |
160 | addr = (ipver == 4) ? uri->dst.ipv4 : uri->dst.ipv6; | |
161 | (void) snprintf(proto, sizeof(proto), "net%d", ipver); | |
162 | (void) snprintf(port, sizeof(port), ":%d", uri->port); | |
163 | } | |
164 | ||
165 | ret = snprintf(dst, size, "%s://%s%s%s%s/%s", proto, | |
166 | (ipver == 6) ? "[" : "", addr, (ipver == 6) ? "]" : "", | |
167 | port, uri->subdir); | |
168 | if (ret < 0) { | |
169 | PERROR("snprintf uri to url"); | |
170 | } | |
171 | ||
172 | return ret; | |
173 | } | |
174 | ||
3a5713da DG |
175 | /* |
176 | * Compare two URIs. | |
177 | * | |
178 | * Return 0 if equal else 1. | |
179 | */ | |
32dd26fb | 180 | __attribute__((visibility("hidden"))) |
3a5713da DG |
181 | int uri_compare(struct lttng_uri *uri1, struct lttng_uri *uri2) |
182 | { | |
183 | return memcmp(uri1, uri2, sizeof(struct lttng_uri)); | |
184 | } | |
185 | ||
186 | /* | |
187 | * Free URI memory. | |
188 | */ | |
32dd26fb | 189 | __attribute__((visibility("hidden"))) |
3a5713da DG |
190 | void uri_free(struct lttng_uri *uri) |
191 | { | |
192 | /* Safety check */ | |
193 | if (uri != NULL) { | |
194 | free(uri); | |
195 | } | |
196 | } | |
197 | ||
198 | /* | |
199 | * Return an allocated URI. | |
200 | */ | |
32dd26fb | 201 | __attribute__((visibility("hidden"))) |
3a5713da DG |
202 | struct lttng_uri *uri_create(void) |
203 | { | |
204 | struct lttng_uri *uri; | |
205 | ||
206 | uri = zmalloc(sizeof(struct lttng_uri)); | |
207 | if (uri == NULL) { | |
208 | PERROR("zmalloc uri"); | |
209 | } | |
210 | ||
211 | return uri; | |
212 | } | |
213 | ||
00e2e675 DG |
214 | /* |
215 | * Parses a string URI to a lttng_uri. This function can potentially return | |
216 | * more than one URI in uris so the size of the array is returned and uris is | |
217 | * allocated and populated. Caller must free(3) the array. | |
218 | * | |
219 | * This function can not detect the stream type of the URI so the caller has to | |
220 | * make sure the correct type (stype) is set on the return URI(s). The default | |
221 | * port must also be set by the caller if the returned URI has its port set to | |
222 | * zero. | |
a4b92340 DG |
223 | * |
224 | * NOTE: A good part of the following code was inspired from the "wget" source | |
225 | * tree from the src/url.c file and url_parse() function. Also, the | |
226 | * strpbrk_or_eos() function found above is also inspired by the same code. | |
227 | * This code was originally licensed GPLv2 so we acknolwedge the Free Software | |
228 | * Foundation here for the work and to make sure we are compliant with it. | |
00e2e675 | 229 | */ |
32dd26fb | 230 | __attribute__((visibility("hidden"))) |
3a5713da DG |
231 | ssize_t uri_parse(const char *str_uri, struct lttng_uri **uris) |
232 | { | |
a4b92340 | 233 | int ret, i = 0; |
3a5713da DG |
234 | /* Size of the uris array. Default is 1 */ |
235 | ssize_t size = 1; | |
a4b92340 | 236 | char subdir[PATH_MAX]; |
b35d8a57 DG |
237 | unsigned int ctrl_port = 0; |
238 | unsigned int data_port = 0; | |
a4b92340 DG |
239 | struct lttng_uri *tmp_uris; |
240 | char *addr_f = NULL; | |
3a5713da | 241 | const struct uri_proto *proto; |
a4b92340 DG |
242 | const char *purl, *addr_e, *addr_b, *subdir_b = NULL; |
243 | const char *seps = ":/\0"; | |
3a5713da DG |
244 | |
245 | /* | |
246 | * The first part is the protocol portion of a maximum of 5 bytes for now. | |
b35d8a57 DG |
247 | * The second part is the hostname or IP address. The 255 bytes size is the |
248 | * limit found in the RFC 1035 for the total length of a domain name | |
249 | * (https://www.ietf.org/rfc/rfc1035.txt). Finally, for the net:// | |
250 | * protocol, two ports CAN be specified. | |
3a5713da DG |
251 | */ |
252 | ||
00e2e675 | 253 | DBG3("URI string: %s", str_uri); |
3a5713da | 254 | |
a4b92340 | 255 | proto = get_uri_proto(str_uri); |
3a5713da | 256 | if (proto == NULL) { |
a4b92340 | 257 | ERR("URI parse unknown protocol %s", str_uri); |
3a5713da DG |
258 | goto error; |
259 | } | |
260 | ||
a4b92340 DG |
261 | purl = str_uri; |
262 | ||
3a5713da | 263 | if (proto->code == P_NET || proto->code == P_NET6) { |
a4b92340 | 264 | /* Special case for net:// which requires two URI objects */ |
3a5713da DG |
265 | size = 2; |
266 | } | |
267 | ||
a4b92340 DG |
268 | /* Allocate URI array */ |
269 | tmp_uris = zmalloc(sizeof(struct lttng_uri) * size); | |
270 | if (tmp_uris == NULL) { | |
271 | PERROR("zmalloc uri"); | |
272 | goto error; | |
273 | } | |
274 | ||
00e2e675 | 275 | memset(subdir, 0, sizeof(subdir)); |
a4b92340 DG |
276 | purl += strlen(proto->leading_string); |
277 | ||
278 | /* Copy known value to the first URI. */ | |
279 | tmp_uris[0].dtype = proto->dtype; | |
280 | tmp_uris[0].proto = proto->type; | |
281 | ||
282 | if (proto->code == P_FILE) { | |
283 | if (*purl != '/') { | |
284 | ERR("Missing destination full path."); | |
285 | goto free_error; | |
00e2e675 | 286 | } |
a4b92340 DG |
287 | |
288 | strncpy(tmp_uris[0].dst.path, purl, sizeof(tmp_uris[0].dst.path)); | |
289 | tmp_uris[0].dst.path[sizeof(tmp_uris[0].dst.path) - 1] = '\0'; | |
290 | DBG3("URI file destination: %s", purl); | |
291 | goto end; | |
3a5713da DG |
292 | } |
293 | ||
a4b92340 DG |
294 | /* Assume we are at the beginning of an address or host of some sort. */ |
295 | addr_b = purl; | |
3a5713da | 296 | |
a4b92340 DG |
297 | /* |
298 | * Handle IPv6 address inside square brackets as mention by RFC 2732. IPv6 | |
299 | * address that does not start AND end with brackets will be rejected even | |
300 | * if valid. | |
301 | * | |
302 | * proto://[<addr>]... | |
303 | * ^ | |
304 | */ | |
305 | if (*purl == '[') { | |
306 | /* Address begins after '[' */ | |
307 | addr_b = purl + 1; | |
308 | addr_e = strchr(addr_b, ']'); | |
309 | if (addr_e == NULL || addr_b == addr_e) { | |
310 | ERR("Broken IPv6 address %s", addr_b); | |
311 | goto free_error; | |
312 | } | |
313 | ||
314 | /* Moving parsed URL pointer after the final bracket ']' */ | |
315 | purl = addr_e + 1; | |
316 | ||
317 | /* | |
318 | * The closing bracket must be followed by a seperator or NULL char. | |
319 | */ | |
320 | if (strchr(seps, *purl) == NULL) { | |
321 | ERR("Unknown symbol after IPv6 address: %s", purl); | |
322 | goto free_error; | |
323 | } | |
324 | } else { | |
325 | purl = strpbrk_or_eos(purl, seps); | |
326 | addr_e = purl; | |
327 | } | |
328 | ||
329 | /* Check if we at least have a char for the addr or hostname. */ | |
330 | if (addr_b == addr_e) { | |
331 | ERR("No address or hostname detected."); | |
332 | goto free_error; | |
333 | } | |
334 | ||
335 | addr_f = utils_strdupdelim(addr_b, addr_e); | |
336 | if (addr_f == NULL) { | |
337 | goto free_error; | |
3a5713da DG |
338 | } |
339 | ||
a4b92340 DG |
340 | /* |
341 | * Detect PORT after address. The net/net6 protocol allows up to two port | |
342 | * so we can define the control and data port. | |
343 | */ | |
344 | while (*purl == ':') { | |
345 | int port; | |
346 | const char *port_b, *port_e; | |
347 | char *port_f; | |
348 | ||
349 | /* Update pass counter */ | |
350 | i++; | |
351 | ||
352 | /* | |
353 | * Maximum of two ports is possible if P_NET/NET6. Bigger than that, | |
354 | * two much stuff. | |
355 | */ | |
356 | if ((i == 2 && (proto->code != P_NET && proto->code != P_NET6)) | |
357 | || i > 2) { | |
358 | break; | |
359 | } | |
360 | ||
361 | /* | |
362 | * Move parsed URL to port value. | |
363 | * proto://addr_host:PORT1:PORT2/foo/bar | |
364 | * ^ | |
365 | */ | |
366 | ++purl; | |
367 | port_b = purl; | |
368 | purl = strpbrk_or_eos(purl, seps); | |
369 | port_e = purl; | |
370 | ||
371 | if (port_b != port_e) { | |
372 | port_f = utils_strdupdelim(port_b, port_e); | |
373 | if (port_f == NULL) { | |
374 | goto free_error; | |
375 | } | |
376 | ||
377 | port = atoi(port_f); | |
378 | if (port > 0xffff || port <= 0x0) { | |
379 | ERR("Invalid port number %d", port); | |
380 | free(port_f); | |
381 | goto free_error; | |
382 | } | |
383 | free(port_f); | |
384 | ||
385 | if (i == 1) { | |
386 | ctrl_port = port; | |
387 | } else { | |
388 | data_port = port; | |
389 | } | |
390 | } | |
391 | }; | |
392 | ||
393 | /* Check for a valid subdir or trailing garbage */ | |
394 | if (*purl == '/') { | |
395 | /* | |
396 | * Move to subdir value. | |
397 | * proto://addr_host:PORT1:PORT2/foo/bar | |
398 | * ^ | |
399 | */ | |
400 | ++purl; | |
401 | subdir_b = purl; | |
402 | } else if (*purl != '\0') { | |
403 | ERR("Trailing characters not recognized: %s", purl); | |
404 | goto free_error; | |
405 | } | |
406 | ||
407 | /* We have enough valid information to create URI(s) object */ | |
408 | ||
3a5713da | 409 | /* Copy generic information */ |
a4b92340 | 410 | tmp_uris[0].port = ctrl_port; |
3a5713da | 411 | |
a4b92340 DG |
412 | /* Copy subdirectory if one. */ |
413 | if (subdir_b) { | |
414 | strncpy(tmp_uris[0].subdir, subdir_b, sizeof(tmp_uris[0].subdir)); | |
415 | tmp_uris[0].subdir[sizeof(tmp_uris[0].subdir) - 1] = '\0'; | |
416 | } | |
3a5713da DG |
417 | |
418 | switch (proto->code) { | |
3a5713da | 419 | case P_NET: |
a4b92340 DG |
420 | ret = set_ip_address(addr_f, AF_INET, tmp_uris[0].dst.ipv4, |
421 | sizeof(tmp_uris[0].dst.ipv4)); | |
3a5713da DG |
422 | if (ret < 0) { |
423 | goto free_error; | |
424 | } | |
425 | ||
a4b92340 | 426 | memcpy(tmp_uris[1].dst.ipv4, tmp_uris[0].dst.ipv4, sizeof(tmp_uris[1].dst.ipv4)); |
3a5713da | 427 | |
a4b92340 DG |
428 | tmp_uris[1].dtype = proto->dtype; |
429 | tmp_uris[1].proto = proto->type; | |
430 | tmp_uris[1].port = data_port; | |
3a5713da DG |
431 | break; |
432 | case P_NET6: | |
a4b92340 DG |
433 | ret = set_ip_address(addr_f, AF_INET6, tmp_uris[0].dst.ipv6, |
434 | sizeof(tmp_uris[0].dst.ipv6)); | |
3a5713da DG |
435 | if (ret < 0) { |
436 | goto free_error; | |
437 | } | |
438 | ||
a4b92340 | 439 | memcpy(tmp_uris[1].dst.ipv6, tmp_uris[0].dst.ipv6, sizeof(tmp_uris[1].dst.ipv6)); |
3a5713da | 440 | |
a4b92340 DG |
441 | tmp_uris[1].dtype = proto->dtype; |
442 | tmp_uris[1].proto = proto->type; | |
443 | tmp_uris[1].port = data_port; | |
3a5713da DG |
444 | break; |
445 | case P_TCP: | |
a4b92340 DG |
446 | ret = set_ip_address(addr_f, AF_INET, tmp_uris[0].dst.ipv4, |
447 | sizeof(tmp_uris[0].dst.ipv4)); | |
3a5713da DG |
448 | if (ret < 0) { |
449 | goto free_error; | |
450 | } | |
451 | break; | |
452 | case P_TCP6: | |
a4b92340 DG |
453 | ret = set_ip_address(addr_f, AF_INET6, tmp_uris[0].dst.ipv6, |
454 | sizeof(tmp_uris[0].dst.ipv6)); | |
3a5713da DG |
455 | if (ret < 0) { |
456 | goto free_error; | |
457 | } | |
458 | break; | |
459 | default: | |
460 | goto free_error; | |
461 | } | |
462 | ||
a4b92340 DG |
463 | end: |
464 | DBG3("URI dtype: %d, proto: %d, host: %s, subdir: %s, ctrl: %d, data: %d", | |
465 | proto->dtype, proto->type, (addr_f == NULL) ? "" : addr_f, | |
466 | (subdir_b == NULL) ? "" : subdir_b, ctrl_port, data_port); | |
467 | ||
468 | free(addr_f); | |
3a5713da | 469 | |
a4b92340 | 470 | *uris = tmp_uris; |
3a5713da DG |
471 | return size; |
472 | ||
473 | free_error: | |
a4b92340 DG |
474 | free(addr_f); |
475 | free(tmp_uris); | |
3a5713da DG |
476 | error: |
477 | return -1; | |
478 | } |