2 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
10 #include <arpa/inet.h>
11 #include <common/compat/netdb.h>
14 #include <sys/socket.h>
16 #include <common/common.h>
17 #include <common/defaults.h>
18 #include <common/utils.h>
22 #define LOOPBACK_ADDR_IPV4 "127.0.0.1"
23 #define LOOPBACK_ADDR_IPV6 "::1"
26 P_NET
, P_NET6
, P_FILE
, P_TCP
, P_TCP6
,
31 const char *leading_string
;
32 enum uri_proto_code code
;
33 enum lttng_proto_type type
;
34 enum lttng_dst_type dtype
;
37 /* Supported protocols */
38 static const struct uri_proto proto_uri
[] = {
39 { .name
= "file", .leading_string
= "file://", .code
= P_FILE
, .type
= 0, .dtype
= LTTNG_DST_PATH
},
40 { .name
= "net", .leading_string
= "net://", .code
= P_NET
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV4
},
41 { .name
= "net4", .leading_string
= "net4://", .code
= P_NET
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV4
},
42 { .name
= "net6", .leading_string
= "net6://", .code
= P_NET6
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV6
},
43 { .name
= "tcp", .leading_string
= "tcp://", .code
= P_TCP
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV4
},
44 { .name
= "tcp4", .leading_string
= "tcp4://", .code
= P_TCP
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV4
},
45 { .name
= "tcp6", .leading_string
= "tcp6://", .code
= P_TCP6
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV6
},
46 /* Invalid proto marking the end of the array. */
47 { NULL
, NULL
, 0, 0, 0 }
51 * Return pointer to the character in s matching one of the characters in
52 * accept. If nothing is found, return pointer to the end of string (eos).
54 static inline const char *strpbrk_or_eos(const char *s
, const char *accept
)
56 char *p
= strpbrk(s
, accept
);
65 * Validate if proto is a supported protocol from proto_uri array.
67 static const struct uri_proto
*get_uri_proto(const char *uri_str
)
69 const struct uri_proto
*supported
= NULL
;
72 if (uri_str
== NULL
) {
76 for (supported
= &proto_uri
[0];
77 supported
->leading_string
!= NULL
; ++supported
) {
78 if (strncasecmp(uri_str
, supported
->leading_string
,
79 strlen(supported
->leading_string
)) == 0) {
92 * Set network address from string into dst. Supports both IP string and
95 static int set_ip_address(const char *addr
, int af
, char *dst
, size_t size
)
98 unsigned char buf
[sizeof(struct in6_addr
)];
99 struct hostent
*record
;
104 memset(dst
, 0, size
);
106 /* Network protocol */
107 ret
= inet_pton(af
, addr
, buf
);
109 /* We consider the dst to be an hostname or an invalid IP char */
110 record
= lttng_gethostbyname2(addr
, af
);
112 /* Translate IP to string */
113 if (!inet_ntop(af
, record
->h_addr_list
[0], dst
, size
)) {
117 } else if (!strcmp(addr
, "localhost") &&
118 (af
== AF_INET
|| af
== AF_INET6
)) {
120 * Some systems may not have "localhost" defined in
121 * accordance with IETF RFC 6761. According to this RFC,
122 * applications may recognize "localhost" names as
123 * special and resolve to the appropriate loopback
126 * We choose to use the system name resolution API first
127 * to honor its network configuration. If this fails, we
128 * resolve to the appropriate loopback address. This is
129 * done to accommodates systems which may want to start
130 * tracing before their network configured.
132 const char *loopback_addr
= af
== AF_INET
?
133 LOOPBACK_ADDR_IPV4
: LOOPBACK_ADDR_IPV6
;
134 const size_t loopback_addr_len
= af
== AF_INET
?
135 sizeof(LOOPBACK_ADDR_IPV4
) :
136 sizeof(LOOPBACK_ADDR_IPV6
);
138 DBG2("Could not resolve localhost address, using fallback");
139 if (loopback_addr_len
> size
) {
140 ERR("Could not resolve localhost address; destination string is too short");
143 strcpy(dst
, loopback_addr
);
145 /* At this point, the IP or the hostname is bad */
150 strncpy(dst
, addr
, size
);
151 dst
[size
- 1] = '\0';
155 DBG2("IP address resolved to %s", dst
);
159 ERR("URI parse bad hostname %s for af %d", addr
, af
);
164 * Set default URI attribute which is basically the given stream type and the
165 * default port if none is set in the URI.
167 static void set_default_uri_attr(struct lttng_uri
*uri
,
168 enum lttng_stream_type stype
)
171 if (uri
->dtype
!= LTTNG_DST_PATH
&& uri
->port
== 0) {
172 uri
->port
= (stype
== LTTNG_STREAM_CONTROL
) ?
173 DEFAULT_NETWORK_CONTROL_PORT
: DEFAULT_NETWORK_DATA_PORT
;
178 * Compare two URL destination.
180 * Return 0 is equal else is not equal.
182 static int compare_destination(struct lttng_uri
*ctrl
, struct lttng_uri
*data
)
189 switch (ctrl
->dtype
) {
191 ret
= strncmp(ctrl
->dst
.ipv4
, data
->dst
.ipv4
, sizeof(ctrl
->dst
.ipv4
));
194 ret
= strncmp(ctrl
->dst
.ipv6
, data
->dst
.ipv6
, sizeof(ctrl
->dst
.ipv6
));
205 * Build a string URL from a lttng_uri object.
208 int uri_to_str_url(struct lttng_uri
*uri
, char *dst
, size_t size
)
212 char proto
[5], port
[7];
217 if (uri
->dtype
== LTTNG_DST_PATH
) {
219 addr
= uri
->dst
.path
;
220 (void) snprintf(proto
, sizeof(proto
), "file");
221 (void) snprintf(port
, sizeof(port
), "%s", "");
223 ipver
= (uri
->dtype
== LTTNG_DST_IPV4
) ? 4 : 6;
224 addr
= (ipver
== 4) ? uri
->dst
.ipv4
: uri
->dst
.ipv6
;
225 (void) snprintf(proto
, sizeof(proto
), "tcp%d", ipver
);
226 (void) snprintf(port
, sizeof(port
), ":%d", uri
->port
);
229 ret
= snprintf(dst
, size
, "%s://%s%s%s%s/%s", proto
,
230 (ipver
== 6) ? "[" : "", addr
, (ipver
== 6) ? "]" : "",
233 PERROR("snprintf uri to url");
242 * Return 0 if equal else 1.
245 int uri_compare(struct lttng_uri
*uri1
, struct lttng_uri
*uri2
)
247 return memcmp(uri1
, uri2
, sizeof(struct lttng_uri
));
254 void uri_free(struct lttng_uri
*uri
)
260 * Parses a string URI to a lttng_uri. This function can potentially return
261 * more than one URI in uris so the size of the array is returned and uris is
262 * allocated and populated. Caller must free(3) the array.
264 * This function can not detect the stream type of the URI so the caller has to
265 * make sure the correct type (stype) is set on the return URI(s). The default
266 * port must also be set by the caller if the returned URI has its port set to
269 * NOTE: A good part of the following code was inspired from the "wget" source
270 * tree from the src/url.c file and url_parse() function. Also, the
271 * strpbrk_or_eos() function found above is also inspired by the same code.
272 * This code was originally licensed GPLv2 so we acknolwedge the Free Software
273 * Foundation here for the work and to make sure we are compliant with it.
276 ssize_t
uri_parse(const char *str_uri
, struct lttng_uri
**uris
)
279 /* Size of the uris array. Default is 1 */
281 char subdir
[PATH_MAX
];
282 unsigned int ctrl_port
= 0;
283 unsigned int data_port
= 0;
284 struct lttng_uri
*tmp_uris
;
286 const struct uri_proto
*proto
;
287 const char *purl
, *addr_e
, *addr_b
, *subdir_b
= NULL
;
288 const char *seps
= ":/\0";
291 * The first part is the protocol portion of a maximum of 5 bytes for now.
292 * The second part is the hostname or IP address. The 255 bytes size is the
293 * limit found in the RFC 1035 for the total length of a domain name
294 * (https://www.ietf.org/rfc/rfc1035.txt). Finally, for the net://
295 * protocol, two ports CAN be specified.
298 DBG3("URI string: %s", str_uri
);
300 proto
= get_uri_proto(str_uri
);
302 ERR("URI parse unknown protocol %s", str_uri
);
308 if (proto
->code
== P_NET
|| proto
->code
== P_NET6
) {
309 /* Special case for net:// which requires two URI objects */
313 /* Allocate URI array */
314 tmp_uris
= zmalloc(sizeof(struct lttng_uri
) * size
);
315 if (tmp_uris
== NULL
) {
316 PERROR("zmalloc uri");
320 memset(subdir
, 0, sizeof(subdir
));
321 purl
+= strlen(proto
->leading_string
);
323 /* Copy known value to the first URI. */
324 tmp_uris
[0].dtype
= proto
->dtype
;
325 tmp_uris
[0].proto
= proto
->type
;
327 if (proto
->code
== P_FILE
) {
329 ERR("Missing destination full path.");
333 strncpy(tmp_uris
[0].dst
.path
, purl
, sizeof(tmp_uris
[0].dst
.path
));
334 tmp_uris
[0].dst
.path
[sizeof(tmp_uris
[0].dst
.path
) - 1] = '\0';
335 DBG3("URI file destination: %s", purl
);
339 /* Assume we are at the beginning of an address or host of some sort. */
343 * Handle IPv6 address inside square brackets as mention by RFC 2732. IPv6
344 * address that does not start AND end with brackets will be rejected even
347 * proto://[<addr>]...
351 /* Address begins after '[' */
353 addr_e
= strchr(addr_b
, ']');
354 if (addr_e
== NULL
|| addr_b
== addr_e
) {
355 ERR("Broken IPv6 address %s", addr_b
);
359 /* Moving parsed URL pointer after the final bracket ']' */
363 * The closing bracket must be followed by a seperator or NULL char.
365 if (strchr(seps
, *purl
) == NULL
) {
366 ERR("Unknown symbol after IPv6 address: %s", purl
);
370 purl
= strpbrk_or_eos(purl
, seps
);
374 /* Check if we at least have a char for the addr or hostname. */
375 if (addr_b
== addr_e
) {
376 ERR("No address or hostname detected.");
380 addr_f
= utils_strdupdelim(addr_b
, addr_e
);
381 if (addr_f
== NULL
) {
386 * Detect PORT after address. The net/net6 protocol allows up to two port
387 * so we can define the control and data port.
389 while (*purl
== ':') {
390 const char *port_b
, *port_e
;
393 /* Update pass counter */
397 * Maximum of two ports is possible if P_NET/NET6. Bigger than that,
400 if ((i
== 2 && (proto
->code
!= P_NET
&& proto
->code
!= P_NET6
))
406 * Move parsed URL to port value.
407 * proto://addr_host:PORT1:PORT2/foo/bar
412 purl
= strpbrk_or_eos(purl
, seps
);
415 if (port_b
!= port_e
) {
418 port_f
= utils_strdupdelim(port_b
, port_e
);
419 if (port_f
== NULL
) {
424 if (port
> 0xffff || port
<= 0x0) {
425 ERR("Invalid port number %d", port
);
439 /* Check for a valid subdir or trailing garbage */
442 * Move to subdir value.
443 * proto://addr_host:PORT1:PORT2/foo/bar
448 } else if (*purl
!= '\0') {
449 ERR("Trailing characters not recognized: %s", purl
);
453 /* We have enough valid information to create URI(s) object */
455 /* Copy generic information */
456 tmp_uris
[0].port
= ctrl_port
;
458 /* Copy subdirectory if one. */
460 strncpy(tmp_uris
[0].subdir
, subdir_b
, sizeof(tmp_uris
[0].subdir
));
461 tmp_uris
[0].subdir
[sizeof(tmp_uris
[0].subdir
) - 1] = '\0';
464 switch (proto
->code
) {
466 ret
= set_ip_address(addr_f
, AF_INET
, tmp_uris
[0].dst
.ipv4
,
467 sizeof(tmp_uris
[0].dst
.ipv4
));
472 memcpy(tmp_uris
[1].dst
.ipv4
, tmp_uris
[0].dst
.ipv4
, sizeof(tmp_uris
[1].dst
.ipv4
));
474 tmp_uris
[1].dtype
= proto
->dtype
;
475 tmp_uris
[1].proto
= proto
->type
;
476 tmp_uris
[1].port
= data_port
;
479 ret
= set_ip_address(addr_f
, AF_INET6
, tmp_uris
[0].dst
.ipv6
,
480 sizeof(tmp_uris
[0].dst
.ipv6
));
485 memcpy(tmp_uris
[1].dst
.ipv6
, tmp_uris
[0].dst
.ipv6
, sizeof(tmp_uris
[1].dst
.ipv6
));
487 tmp_uris
[1].dtype
= proto
->dtype
;
488 tmp_uris
[1].proto
= proto
->type
;
489 tmp_uris
[1].port
= data_port
;
492 ret
= set_ip_address(addr_f
, AF_INET
, tmp_uris
[0].dst
.ipv4
,
493 sizeof(tmp_uris
[0].dst
.ipv4
));
499 ret
= set_ip_address(addr_f
, AF_INET6
, tmp_uris
[0].dst
.ipv6
,
500 sizeof(tmp_uris
[0].dst
.ipv6
));
510 DBG3("URI dtype: %d, proto: %d, host: %s, subdir: %s, ctrl: %d, data: %d",
511 proto
->dtype
, proto
->type
, (addr_f
== NULL
) ? "" : addr_f
,
512 (subdir_b
== NULL
) ? "" : subdir_b
, ctrl_port
, data_port
);
517 assert(size
== 1 || size
== 2);
528 * Parse a string URL and creates URI(s) returning the size of the populated
532 ssize_t
uri_parse_str_urls(const char *ctrl_url
, const char *data_url
,
533 struct lttng_uri
**uris
)
535 unsigned int equal
= 1, idx
= 0;
536 /* Add the "file://" size to the URL maximum size */
537 char url
[PATH_MAX
+ 7];
538 ssize_t ctrl_uri_count
= 0, data_uri_count
= 0, uri_count
;
539 struct lttng_uri
*ctrl_uris
= NULL
, *data_uris
= NULL
;
540 struct lttng_uri
*tmp_uris
= NULL
;
542 /* No URL(s) is allowed. This means that the consumer will be disabled. */
543 if (ctrl_url
== NULL
&& data_url
== NULL
) {
547 /* Check if URLs are equal and if so, only use the control URL */
548 if ((ctrl_url
&& *ctrl_url
!= '\0') && (data_url
&& *data_url
!= '\0')) {
549 equal
= !strcmp(ctrl_url
, data_url
);
553 * Since we allow the str_url to be a full local filesystem path, we are
554 * going to create a valid file:// URL if it's the case.
556 * Check if first character is a '/' or else reject the URL.
558 if (ctrl_url
&& ctrl_url
[0] == '/') {
561 ret
= snprintf(url
, sizeof(url
), "file://%s", ctrl_url
);
563 PERROR("snprintf file url");
565 } else if (ret
>= sizeof(url
)) {
566 PERROR("snprintf file url is too long");
573 /* Parse the control URL if there is one */
574 if (ctrl_url
&& *ctrl_url
!= '\0') {
575 ctrl_uri_count
= uri_parse(ctrl_url
, &ctrl_uris
);
576 if (ctrl_uri_count
< 1) {
577 ERR("Unable to parse the URL %s", ctrl_url
);
581 /* 1 and 2 are the only expected values on success. */
582 assert(ctrl_uri_count
== 1 || ctrl_uri_count
== 2);
584 /* At this point, we know there is at least one URI in the array */
585 set_default_uri_attr(&ctrl_uris
[0], LTTNG_STREAM_CONTROL
);
587 if (ctrl_uris
[0].dtype
== LTTNG_DST_PATH
&&
588 (data_url
&& *data_url
!= '\0')) {
589 ERR("Cannot have a data URL when destination is file://");
593 /* URL are not equal but the control URL uses a net:// protocol */
594 if (ctrl_uri_count
== 2) {
596 ERR("Control URL uses the net:// protocol and the data URL is "
597 "different. Not allowed.");
600 set_default_uri_attr(&ctrl_uris
[1], LTTNG_STREAM_DATA
);
602 * The data_url and ctrl_url are equal and the ctrl_url
603 * contains a net:// protocol so we just skip the data part.
610 if (data_url
&& *data_url
!= '\0') {
613 /* We have to parse the data URL in this case */
614 data_uri_count
= uri_parse(data_url
, &data_uris
);
615 if (data_uri_count
< 1) {
616 ERR("Unable to parse the URL %s", data_url
);
618 } else if (data_uri_count
== 2) {
619 ERR("Data URL can not be set with the net[4|6]:// protocol");
622 /* 1 and 2 are the only expected values on success. */
623 assert(data_uri_count
== 1);
626 set_default_uri_attr(&data_uris
[0], LTTNG_STREAM_DATA
);
629 ret
= compare_destination(&ctrl_uris
[0], &data_uris
[0]);
631 ERR("Control and data destination mismatch");
637 /* Compute total size. */
638 uri_count
= ctrl_uri_count
+ data_uri_count
;
639 if (uri_count
<= 0) {
643 tmp_uris
= zmalloc(sizeof(struct lttng_uri
) * uri_count
);
644 if (tmp_uris
== NULL
) {
645 PERROR("zmalloc uris");
650 /* It's possible the control URIs array contains more than one URI */
651 memcpy(tmp_uris
, ctrl_uris
, sizeof(struct lttng_uri
) * ctrl_uri_count
);
657 memcpy(&tmp_uris
[idx
], data_uris
, sizeof(struct lttng_uri
));