Build fix: Missing message in LTTNG_DEPRECATED invocation
[lttng-tools.git] / src / common / uri.c
index 0f89468c54f3c0f10aa1610df592a6d430a4bd27..fef21b38da19639020460a498e318165d743d6ea 100644 (file)
@@ -6,7 +6,6 @@
  */
 
 #define _LGPL_SOURCE
-#include <assert.h>
 #include <arpa/inet.h>
 #include <common/compat/netdb.h>
 #include <stdlib.h>
@@ -98,8 +97,8 @@ static int set_ip_address(const char *addr, int af, char *dst, size_t size)
        unsigned char buf[sizeof(struct in6_addr)];
        struct hostent *record;
 
-       assert(addr);
-       assert(dst);
+       LTTNG_ASSERT(addr);
+       LTTNG_ASSERT(dst);
 
        memset(dst, 0, size);
 
@@ -183,8 +182,8 @@ static int compare_destination(struct lttng_uri *ctrl, struct lttng_uri *data)
 {
        int ret;
 
-       assert(ctrl);
-       assert(data);
+       LTTNG_ASSERT(ctrl);
+       LTTNG_ASSERT(data);
 
        switch (ctrl->dtype) {
        case LTTNG_DST_IPV4:
@@ -204,15 +203,14 @@ static int compare_destination(struct lttng_uri *ctrl, struct lttng_uri *data)
 /*
  * Build a string URL from a lttng_uri object.
  */
-LTTNG_HIDDEN
 int uri_to_str_url(struct lttng_uri *uri, char *dst, size_t size)
 {
        int ipver, ret;
        const char *addr;
        char proto[5], port[7];
 
-       assert(uri);
-       assert(dst);
+       LTTNG_ASSERT(uri);
+       LTTNG_ASSERT(dst);
 
        if (uri->dtype == LTTNG_DST_PATH) {
                ipver = 0;
@@ -241,7 +239,6 @@ int uri_to_str_url(struct lttng_uri *uri, char *dst, size_t size)
  *
  * Return 0 if equal else 1.
  */
-LTTNG_HIDDEN
 int uri_compare(struct lttng_uri *uri1, struct lttng_uri *uri2)
 {
        return memcmp(uri1, uri2, sizeof(struct lttng_uri));
@@ -250,7 +247,6 @@ int uri_compare(struct lttng_uri *uri1, struct lttng_uri *uri2)
 /*
  * Free URI memory.
  */
-LTTNG_HIDDEN
 void uri_free(struct lttng_uri *uri)
 {
        free(uri);
@@ -272,7 +268,6 @@ void uri_free(struct lttng_uri *uri)
  * This code was originally licensed GPLv2 so we acknolwedge the Free Software
  * Foundation here for the work and to make sure we are compliant with it.
  */
-LTTNG_HIDDEN
 ssize_t uri_parse(const char *str_uri, struct lttng_uri **uris)
 {
        int ret, i = 0;
@@ -514,6 +509,7 @@ end:
        free(addr_f);
 
        *uris = tmp_uris;
+       LTTNG_ASSERT(size == 1 || size == 2);
        return size;
 
 free_error:
@@ -527,14 +523,13 @@ error:
  * Parse a string URL and creates URI(s) returning the size of the populated
  * array.
  */
-LTTNG_HIDDEN
 ssize_t uri_parse_str_urls(const char *ctrl_url, const char *data_url,
                struct lttng_uri **uris)
 {
        unsigned int equal = 1, idx = 0;
        /* Add the "file://" size to the URL maximum size */
        char url[PATH_MAX + 7];
-       ssize_t size_ctrl = 0, size_data = 0, size;
+       ssize_t ctrl_uri_count = 0, data_uri_count = 0, uri_count;
        struct lttng_uri *ctrl_uris = NULL, *data_uris = NULL;
        struct lttng_uri *tmp_uris = NULL;
 
@@ -571,14 +566,14 @@ ssize_t uri_parse_str_urls(const char *ctrl_url, const char *data_url,
 
        /* Parse the control URL if there is one */
        if (ctrl_url && *ctrl_url != '\0') {
-               size_ctrl = uri_parse(ctrl_url, &ctrl_uris);
-               if (size_ctrl < 1) {
+               ctrl_uri_count = uri_parse(ctrl_url, &ctrl_uris);
+               if (ctrl_uri_count < 1) {
                        ERR("Unable to parse the URL %s", ctrl_url);
                        goto parse_error;
                }
 
                /* 1 and 2 are the only expected values on success. */
-               assert(size_ctrl == 1 || size_ctrl == 2);
+               LTTNG_ASSERT(ctrl_uri_count == 1 || ctrl_uri_count == 2);
 
                /* At this point, we know there is at least one URI in the array */
                set_default_uri_attr(&ctrl_uris[0], LTTNG_STREAM_CONTROL);
@@ -590,7 +585,7 @@ ssize_t uri_parse_str_urls(const char *ctrl_url, const char *data_url,
                }
 
                /* URL are not equal but the control URL uses a net:// protocol */
-               if (size_ctrl == 2) {
+               if (ctrl_uri_count == 2) {
                        if (!equal) {
                                ERR("Control URL uses the net:// protocol and the data URL is "
                                                "different. Not allowed.");
@@ -610,16 +605,16 @@ ssize_t uri_parse_str_urls(const char *ctrl_url, const char *data_url,
                int ret;
 
                /* We have to parse the data URL in this case */
-               size_data = uri_parse(data_url, &data_uris);
-               if (size_data < 1) {
+               data_uri_count = uri_parse(data_url, &data_uris);
+               if (data_uri_count < 1) {
                        ERR("Unable to parse the URL %s", data_url);
                        goto error;
-               } else if (size_data == 2) {
+               } else if (data_uri_count == 2) {
                        ERR("Data URL can not be set with the net[4|6]:// protocol");
                        goto error;
                } else {
                        /* 1 and 2 are the only expected values on success. */
-                       assert(size_data == 1);
+                       LTTNG_ASSERT(data_uri_count == 1);
                }
 
                set_default_uri_attr(&data_uris[0], LTTNG_STREAM_DATA);
@@ -633,10 +628,13 @@ ssize_t uri_parse_str_urls(const char *ctrl_url, const char *data_url,
                }
        }
 
-       /* Compute total size */
-       size = size_ctrl + size_data;
+       /* Compute total size. */
+       uri_count = ctrl_uri_count + data_uri_count;
+       if (uri_count <= 0) {
+               goto error;
+       }
 
-       tmp_uris = zmalloc(sizeof(struct lttng_uri) * size);
+       tmp_uris = zmalloc(sizeof(struct lttng_uri) * uri_count);
        if (tmp_uris == NULL) {
                PERROR("zmalloc uris");
                goto error;
@@ -644,7 +642,7 @@ ssize_t uri_parse_str_urls(const char *ctrl_url, const char *data_url,
 
        if (ctrl_uris) {
                /* It's possible the control URIs array contains more than one URI */
-               memcpy(tmp_uris, ctrl_uris, sizeof(struct lttng_uri) * size_ctrl);
+               memcpy(tmp_uris, ctrl_uris, sizeof(struct lttng_uri) * ctrl_uri_count);
                ++idx;
                free(ctrl_uris);
        }
@@ -656,7 +654,7 @@ ssize_t uri_parse_str_urls(const char *ctrl_url, const char *data_url,
 
        *uris = tmp_uris;
 
-       return size;
+       return uri_count;
 
 error:
        free(ctrl_uris);
This page took 0.026734 seconds and 4 git commands to generate.