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.
20 #include <arpa/inet.h>
21 #include <common/compat/netdb.h>
24 #include <sys/socket.h>
26 #include <common/common.h>
27 #include <common/defaults.h>
28 #include <common/utils.h>
32 #define LOOPBACK_ADDR_IPV4 "127.0.0.1"
33 #define LOOPBACK_ADDR_IPV6 "::1"
36 P_NET
, P_NET6
, P_FILE
, P_TCP
, P_TCP6
,
41 const char *leading_string
;
42 enum uri_proto_code code
;
43 enum lttng_proto_type type
;
44 enum lttng_dst_type dtype
;
47 /* Supported protocols */
48 static const struct uri_proto proto_uri
[] = {
49 { .name
= "file", .leading_string
= "file://", .code
= P_FILE
, .type
= 0, .dtype
= LTTNG_DST_PATH
},
50 { .name
= "net", .leading_string
= "net://", .code
= P_NET
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV4
},
51 { .name
= "net4", .leading_string
= "net4://", .code
= P_NET
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV4
},
52 { .name
= "net6", .leading_string
= "net6://", .code
= P_NET6
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV6
},
53 { .name
= "tcp", .leading_string
= "tcp://", .code
= P_TCP
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV4
},
54 { .name
= "tcp4", .leading_string
= "tcp4://", .code
= P_TCP
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV4
},
55 { .name
= "tcp6", .leading_string
= "tcp6://", .code
= P_TCP6
, .type
= LTTNG_TCP
, .dtype
= LTTNG_DST_IPV6
},
56 /* Invalid proto marking the end of the array. */
57 { NULL
, NULL
, 0, 0, 0 }
61 * Return pointer to the character in s matching one of the characters in
62 * accept. If nothing is found, return pointer to the end of string (eos).
64 static inline const char *strpbrk_or_eos(const char *s
, const char *accept
)
66 char *p
= strpbrk(s
, accept
);
75 * Validate if proto is a supported protocol from proto_uri array.
77 static const struct uri_proto
*get_uri_proto(const char *uri_str
)
79 const struct uri_proto
*supported
= NULL
;
82 if (uri_str
== NULL
) {
86 for (supported
= &proto_uri
[0];
87 supported
->leading_string
!= NULL
; ++supported
) {
88 if (strncasecmp(uri_str
, supported
->leading_string
,
89 strlen(supported
->leading_string
)) == 0) {
102 * Set network address from string into dst. Supports both IP string and
105 static int set_ip_address(const char *addr
, int af
, char *dst
, size_t size
)
108 unsigned char buf
[sizeof(struct in6_addr
)];
109 struct hostent
*record
;
114 memset(dst
, 0, size
);
116 /* Network protocol */
117 ret
= inet_pton(af
, addr
, buf
);
119 /* We consider the dst to be an hostname or an invalid IP char */
120 record
= lttng_gethostbyname2(addr
, af
);
122 /* Translate IP to string */
123 if (!inet_ntop(af
, record
->h_addr_list
[0], dst
, size
)) {
127 } else if (!strcmp(addr
, "localhost") &&
128 (af
== AF_INET
|| af
== AF_INET6
)) {
130 * Some systems may not have "localhost" defined in
131 * accordance with IETF RFC 6761. According to this RFC,
132 * applications may recognize "localhost" names as
133 * special and resolve to the appropriate loopback
136 * We choose to use the system name resolution API first
137 * to honor its network configuration. If this fails, we
138 * resolve to the appropriate loopback address. This is
139 * done to accomodate systems which may want to start
140 * tracing before their network configured.
142 const char *loopback_addr
= af
== AF_INET
?
143 LOOPBACK_ADDR_IPV4
: LOOPBACK_ADDR_IPV6
;
144 const size_t loopback_addr_len
= af
== AF_INET
?
145 sizeof(LOOPBACK_ADDR_IPV4
) :
146 sizeof(LOOPBACK_ADDR_IPV6
);
148 DBG2("Could not resolve localhost address, using fallback");
149 if (loopback_addr_len
> size
) {
150 ERR("Could not resolve localhost address; destination string is too short");
153 strcpy(dst
, loopback_addr
);
155 /* At this point, the IP or the hostname is bad */
160 strncpy(dst
, addr
, size
);
161 dst
[size
- 1] = '\0';
165 DBG2("IP address resolved to %s", dst
);
169 ERR("URI parse bad hostname %s for af %d", addr
, af
);
174 * Set default URI attribute which is basically the given stream type and the
175 * default port if none is set in the URI.
177 static void set_default_uri_attr(struct lttng_uri
*uri
,
178 enum lttng_stream_type stype
)
181 if (uri
->dtype
!= LTTNG_DST_PATH
&& uri
->port
== 0) {
182 uri
->port
= (stype
== LTTNG_STREAM_CONTROL
) ?
183 DEFAULT_NETWORK_CONTROL_PORT
: DEFAULT_NETWORK_DATA_PORT
;
188 * Compare two URL destination.
190 * Return 0 is equal else is not equal.
192 static int compare_destination(struct lttng_uri
*ctrl
, struct lttng_uri
*data
)
199 switch (ctrl
->dtype
) {
201 ret
= strncmp(ctrl
->dst
.ipv4
, data
->dst
.ipv4
, sizeof(ctrl
->dst
.ipv4
));
204 ret
= strncmp(ctrl
->dst
.ipv6
, data
->dst
.ipv6
, sizeof(ctrl
->dst
.ipv6
));
215 * Build a string URL from a lttng_uri object.
218 int uri_to_str_url(struct lttng_uri
*uri
, char *dst
, size_t size
)
222 char proto
[5], port
[7];
227 if (uri
->dtype
== LTTNG_DST_PATH
) {
229 addr
= uri
->dst
.path
;
230 (void) snprintf(proto
, sizeof(proto
), "file");
231 (void) snprintf(port
, sizeof(port
), "%s", "");
233 ipver
= (uri
->dtype
== LTTNG_DST_IPV4
) ? 4 : 6;
234 addr
= (ipver
== 4) ? uri
->dst
.ipv4
: uri
->dst
.ipv6
;
235 (void) snprintf(proto
, sizeof(proto
), "tcp%d", ipver
);
236 (void) snprintf(port
, sizeof(port
), ":%d", uri
->port
);
239 ret
= snprintf(dst
, size
, "%s://%s%s%s%s/%s", proto
,
240 (ipver
== 6) ? "[" : "", addr
, (ipver
== 6) ? "]" : "",
243 PERROR("snprintf uri to url");
252 * Return 0 if equal else 1.
255 int uri_compare(struct lttng_uri
*uri1
, struct lttng_uri
*uri2
)
257 return memcmp(uri1
, uri2
, sizeof(struct lttng_uri
));
264 void uri_free(struct lttng_uri
*uri
)
270 * Parses a string URI to a lttng_uri. This function can potentially return
271 * more than one URI in uris so the size of the array is returned and uris is
272 * allocated and populated. Caller must free(3) the array.
274 * This function can not detect the stream type of the URI so the caller has to
275 * make sure the correct type (stype) is set on the return URI(s). The default
276 * port must also be set by the caller if the returned URI has its port set to
279 * NOTE: A good part of the following code was inspired from the "wget" source
280 * tree from the src/url.c file and url_parse() function. Also, the
281 * strpbrk_or_eos() function found above is also inspired by the same code.
282 * This code was originally licensed GPLv2 so we acknolwedge the Free Software
283 * Foundation here for the work and to make sure we are compliant with it.
286 ssize_t
uri_parse(const char *str_uri
, struct lttng_uri
**uris
)
289 /* Size of the uris array. Default is 1 */
291 char subdir
[PATH_MAX
];
292 unsigned int ctrl_port
= 0;
293 unsigned int data_port
= 0;
294 struct lttng_uri
*tmp_uris
;
296 const struct uri_proto
*proto
;
297 const char *purl
, *addr_e
, *addr_b
, *subdir_b
= NULL
;
298 const char *seps
= ":/\0";
301 * The first part is the protocol portion of a maximum of 5 bytes for now.
302 * The second part is the hostname or IP address. The 255 bytes size is the
303 * limit found in the RFC 1035 for the total length of a domain name
304 * (https://www.ietf.org/rfc/rfc1035.txt). Finally, for the net://
305 * protocol, two ports CAN be specified.
308 DBG3("URI string: %s", str_uri
);
310 proto
= get_uri_proto(str_uri
);
312 ERR("URI parse unknown protocol %s", str_uri
);
318 if (proto
->code
== P_NET
|| proto
->code
== P_NET6
) {
319 /* Special case for net:// which requires two URI objects */
323 /* Allocate URI array */
324 tmp_uris
= zmalloc(sizeof(struct lttng_uri
) * size
);
325 if (tmp_uris
== NULL
) {
326 PERROR("zmalloc uri");
330 memset(subdir
, 0, sizeof(subdir
));
331 purl
+= strlen(proto
->leading_string
);
333 /* Copy known value to the first URI. */
334 tmp_uris
[0].dtype
= proto
->dtype
;
335 tmp_uris
[0].proto
= proto
->type
;
337 if (proto
->code
== P_FILE
) {
339 ERR("Missing destination full path.");
343 strncpy(tmp_uris
[0].dst
.path
, purl
, sizeof(tmp_uris
[0].dst
.path
));
344 tmp_uris
[0].dst
.path
[sizeof(tmp_uris
[0].dst
.path
) - 1] = '\0';
345 DBG3("URI file destination: %s", purl
);
349 /* Assume we are at the beginning of an address or host of some sort. */
353 * Handle IPv6 address inside square brackets as mention by RFC 2732. IPv6
354 * address that does not start AND end with brackets will be rejected even
357 * proto://[<addr>]...
361 /* Address begins after '[' */
363 addr_e
= strchr(addr_b
, ']');
364 if (addr_e
== NULL
|| addr_b
== addr_e
) {
365 ERR("Broken IPv6 address %s", addr_b
);
369 /* Moving parsed URL pointer after the final bracket ']' */
373 * The closing bracket must be followed by a seperator or NULL char.
375 if (strchr(seps
, *purl
) == NULL
) {
376 ERR("Unknown symbol after IPv6 address: %s", purl
);
380 purl
= strpbrk_or_eos(purl
, seps
);
384 /* Check if we at least have a char for the addr or hostname. */
385 if (addr_b
== addr_e
) {
386 ERR("No address or hostname detected.");
390 addr_f
= utils_strdupdelim(addr_b
, addr_e
);
391 if (addr_f
== NULL
) {
396 * Detect PORT after address. The net/net6 protocol allows up to two port
397 * so we can define the control and data port.
399 while (*purl
== ':') {
400 const char *port_b
, *port_e
;
403 /* Update pass counter */
407 * Maximum of two ports is possible if P_NET/NET6. Bigger than that,
410 if ((i
== 2 && (proto
->code
!= P_NET
&& proto
->code
!= P_NET6
))
416 * Move parsed URL to port value.
417 * proto://addr_host:PORT1:PORT2/foo/bar
422 purl
= strpbrk_or_eos(purl
, seps
);
425 if (port_b
!= port_e
) {
428 port_f
= utils_strdupdelim(port_b
, port_e
);
429 if (port_f
== NULL
) {
434 if (port
> 0xffff || port
<= 0x0) {
435 ERR("Invalid port number %d", port
);
449 /* Check for a valid subdir or trailing garbage */
452 * Move to subdir value.
453 * proto://addr_host:PORT1:PORT2/foo/bar
458 } else if (*purl
!= '\0') {
459 ERR("Trailing characters not recognized: %s", purl
);
463 /* We have enough valid information to create URI(s) object */
465 /* Copy generic information */
466 tmp_uris
[0].port
= ctrl_port
;
468 /* Copy subdirectory if one. */
470 strncpy(tmp_uris
[0].subdir
, subdir_b
, sizeof(tmp_uris
[0].subdir
));
471 tmp_uris
[0].subdir
[sizeof(tmp_uris
[0].subdir
) - 1] = '\0';
474 switch (proto
->code
) {
476 ret
= set_ip_address(addr_f
, AF_INET
, tmp_uris
[0].dst
.ipv4
,
477 sizeof(tmp_uris
[0].dst
.ipv4
));
482 memcpy(tmp_uris
[1].dst
.ipv4
, tmp_uris
[0].dst
.ipv4
, sizeof(tmp_uris
[1].dst
.ipv4
));
484 tmp_uris
[1].dtype
= proto
->dtype
;
485 tmp_uris
[1].proto
= proto
->type
;
486 tmp_uris
[1].port
= data_port
;
489 ret
= set_ip_address(addr_f
, AF_INET6
, tmp_uris
[0].dst
.ipv6
,
490 sizeof(tmp_uris
[0].dst
.ipv6
));
495 memcpy(tmp_uris
[1].dst
.ipv6
, tmp_uris
[0].dst
.ipv6
, sizeof(tmp_uris
[1].dst
.ipv6
));
497 tmp_uris
[1].dtype
= proto
->dtype
;
498 tmp_uris
[1].proto
= proto
->type
;
499 tmp_uris
[1].port
= data_port
;
502 ret
= set_ip_address(addr_f
, AF_INET
, tmp_uris
[0].dst
.ipv4
,
503 sizeof(tmp_uris
[0].dst
.ipv4
));
509 ret
= set_ip_address(addr_f
, AF_INET6
, tmp_uris
[0].dst
.ipv6
,
510 sizeof(tmp_uris
[0].dst
.ipv6
));
520 DBG3("URI dtype: %d, proto: %d, host: %s, subdir: %s, ctrl: %d, data: %d",
521 proto
->dtype
, proto
->type
, (addr_f
== NULL
) ? "" : addr_f
,
522 (subdir_b
== NULL
) ? "" : subdir_b
, ctrl_port
, data_port
);
537 * Parse a string URL and creates URI(s) returning the size of the populated
541 ssize_t
uri_parse_str_urls(const char *ctrl_url
, const char *data_url
,
542 struct lttng_uri
**uris
)
544 unsigned int equal
= 1, idx
= 0;
545 /* Add the "file://" size to the URL maximum size */
546 char url
[PATH_MAX
+ 7];
547 ssize_t size_ctrl
= 0, size_data
= 0, size
;
548 struct lttng_uri
*ctrl_uris
= NULL
, *data_uris
= NULL
;
549 struct lttng_uri
*tmp_uris
= NULL
;
551 /* No URL(s) is allowed. This means that the consumer will be disabled. */
552 if (ctrl_url
== NULL
&& data_url
== NULL
) {
556 /* Check if URLs are equal and if so, only use the control URL */
557 if ((ctrl_url
&& *ctrl_url
!= '\0') && (data_url
&& *data_url
!= '\0')) {
558 equal
= !strcmp(ctrl_url
, data_url
);
562 * Since we allow the str_url to be a full local filesystem path, we are
563 * going to create a valid file:// URL if it's the case.
565 * Check if first character is a '/' or else reject the URL.
567 if (ctrl_url
&& ctrl_url
[0] == '/') {
570 ret
= snprintf(url
, sizeof(url
), "file://%s", ctrl_url
);
572 PERROR("snprintf file url");
574 } else if (ret
>= sizeof(url
)) {
575 PERROR("snprintf file url is too long");
582 /* Parse the control URL if there is one */
583 if (ctrl_url
&& *ctrl_url
!= '\0') {
584 size_ctrl
= uri_parse(ctrl_url
, &ctrl_uris
);
586 ERR("Unable to parse the URL %s", ctrl_url
);
590 /* At this point, we know there is at least one URI in the array */
591 set_default_uri_attr(&ctrl_uris
[0], LTTNG_STREAM_CONTROL
);
593 if (ctrl_uris
[0].dtype
== LTTNG_DST_PATH
&&
594 (data_url
&& *data_url
!= '\0')) {
595 ERR("Cannot have a data URL when destination is file://");
599 /* URL are not equal but the control URL uses a net:// protocol */
600 if (size_ctrl
== 2) {
602 ERR("Control URL uses the net:// protocol and the data URL is "
603 "different. Not allowed.");
606 set_default_uri_attr(&ctrl_uris
[1], LTTNG_STREAM_DATA
);
608 * The data_url and ctrl_url are equal and the ctrl_url
609 * contains a net:// protocol so we just skip the data part.
616 if (data_url
&& *data_url
!= '\0') {
619 /* We have to parse the data URL in this case */
620 size_data
= uri_parse(data_url
, &data_uris
);
622 ERR("Unable to parse the URL %s", data_url
);
624 } else if (size_data
== 2) {
625 ERR("Data URL can not be set with the net[4|6]:// protocol");
629 set_default_uri_attr(&data_uris
[0], LTTNG_STREAM_DATA
);
632 ret
= compare_destination(&ctrl_uris
[0], &data_uris
[0]);
634 ERR("Control and data destination mismatch");
640 /* Compute total size */
641 size
= size_ctrl
+ size_data
;
643 tmp_uris
= zmalloc(sizeof(struct lttng_uri
) * size
);
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
) * size_ctrl
);
657 memcpy(&tmp_uris
[idx
], data_uris
, sizeof(struct lttng_uri
));