uclient-utils: Handle memory allocation failure for url file name
[project/uclient.git] / uclient.c
index 2113d8d..1137168 100644 (file)
--- a/uclient.c
+++ b/uclient.c
@@ -46,61 +46,26 @@ char *uclient_get_addr(char *dest, int *port, union uclient_addr *a)
        return dest;
 }
 
-
-struct uclient_url __hidden *
-uclient_get_url(const char *url_str, const char *auth_str)
+static struct uclient_url *
+__uclient_get_url(const struct uclient_backend *backend,
+                 const char *host, int host_len,
+                 const char *location, const char *auth_str)
 {
-       static const struct uclient_backend *backends[] = {
-               &uclient_backend_http,
-       };
-
-       const struct uclient_backend *backend;
-       const char * const *prefix = NULL;
        struct uclient_url *url;
-       const char *location;
        char *host_buf, *uri_buf, *auth_buf, *next;
-       int i, host_len;
-
-       for (i = 0; i < ARRAY_SIZE(backends); i++) {
-               int prefix_len = 0;
-
-               for (prefix = backends[i]->prefix; *prefix; prefix++) {
-                       prefix_len = strlen(*prefix);
-
-                       if (!strncmp(url_str, *prefix, prefix_len))
-                               break;
-               }
-
-               if (!*prefix)
-                       continue;
-
-               url_str += prefix_len;
-               backend = backends[i];
-               break;
-       }
-
-       if (!*prefix)
-               return NULL;
-
-       next = strchr(url_str, '/');
-       if (next) {
-               location = next;
-               host_len = next - url_str;
-       } else {
-               location = "/";
-               host_len = strlen(url_str);
-       }
 
        url = calloc_a(sizeof(*url),
                &host_buf, host_len + 1,
                &uri_buf, strlen(location) + 1,
                &auth_buf, auth_str ? strlen(auth_str) + 1 : 0);
 
+       if (!url)
+               return NULL;
+
        url->backend = backend;
        url->location = strcpy(uri_buf, location);
-       url->prefix = prefix - backend->prefix;
-
-       url->host = strncpy(host_buf, url_str, host_len);
+       if (host)
+               url->host = strncpy(host_buf, host, host_len);
 
        next = strchr(host_buf, '@');
        if (next) {
@@ -141,6 +106,122 @@ free:
        return NULL;
 }
 
+static const char *
+uclient_split_host(const char *base, int *host_len)
+{
+       char *next, *location;
+
+       next = strchr(base, '/');
+       if (next) {
+               location = next;
+               *host_len = next - base;
+       } else {
+               location = "/";
+               *host_len = strlen(base);
+       }
+
+       return location;
+}
+
+struct uclient_url __hidden *
+uclient_get_url_location(struct uclient_url *url, const char *location)
+{
+       struct uclient_url *new_url;
+       char *host_buf, *uri_buf, *auth_buf, *port_buf;
+       int host_len = strlen(url->host) + 1;
+       int auth_len = url->auth ? strlen(url->auth) + 1 : 0;
+       int port_len = url->port ? strlen(url->port) + 1 : 0;
+       int uri_len;
+
+       if (strstr(location, "://"))
+               return uclient_get_url(location, url->auth);
+
+       if (location[0] == '/')
+               uri_len = strlen(location) + 1;
+       else
+               uri_len = strlen(url->location) + strlen(location) + 2;
+
+       new_url = calloc_a(sizeof(*url),
+               &host_buf, host_len,
+               &port_buf, port_len,
+               &uri_buf, uri_len,
+               &auth_buf, auth_len);
+
+       if (!new_url)
+               return NULL;
+
+       new_url->backend = url->backend;
+       new_url->prefix = url->prefix;
+       new_url->host = strcpy(host_buf, url->host);
+       if (url->port)
+               new_url->port = strcpy(port_buf, url->port);
+       if (url->auth)
+               new_url->auth = strcpy(auth_buf, url->auth);
+
+       new_url->location = uri_buf;
+       if (location[0] == '/')
+               strcpy(uri_buf, location);
+       else {
+               int len = strcspn(url->location, "?#");
+               char *buf = uri_buf;
+
+               memcpy(buf, url->location, len);
+               if (buf[len - 1] != '/') {
+                       buf[len] = '/';
+                       len++;
+               }
+
+               buf += len;
+               strcpy(buf, location);
+       }
+
+       return new_url;
+}
+
+struct uclient_url __hidden *
+uclient_get_url(const char *url_str, const char *auth_str)
+{
+       static const struct uclient_backend *backends[] = {
+               &uclient_backend_http,
+       };
+
+       const struct uclient_backend *backend;
+       const char * const *prefix = NULL;
+       struct uclient_url *url;
+       const char *location;
+       int host_len;
+       int i;
+
+       for (i = 0; i < ARRAY_SIZE(backends); i++) {
+               int prefix_len = 0;
+
+               for (prefix = backends[i]->prefix; *prefix; prefix++) {
+                       prefix_len = strlen(*prefix);
+
+                       if (!strncmp(url_str, *prefix, prefix_len))
+                               break;
+               }
+
+               if (!*prefix)
+                       continue;
+
+               url_str += prefix_len;
+               backend = backends[i];
+               break;
+       }
+
+       if (!*prefix)
+               return NULL;
+
+       location = uclient_split_host(url_str, &host_len);
+       url = __uclient_get_url(backend, url_str, host_len, location, auth_str);
+       if (!url)
+               return NULL;
+
+       url->prefix = prefix - backend->prefix;
+       return url;
+}
+
 static void uclient_connection_timeout(struct uloop_timeout *timeout)
 {
        struct uclient *cl = container_of(timeout, struct uclient, connection_timeout);
@@ -173,6 +254,36 @@ struct uclient *uclient_new(const char *url_str, const char *auth_str, const str
        return cl;
 }
 
+int uclient_set_proxy_url(struct uclient *cl, const char *url_str, const char *auth_str)
+{
+       const struct uclient_backend *backend = cl->backend;
+       struct uclient_url *url;
+       int host_len;
+       char *next, *host;
+
+       if (!backend->update_proxy_url)
+               return -1;
+
+       next = strstr(url_str, "://");
+       if (!next)
+               return -1;
+
+       host = next + 3;
+       uclient_split_host(host, &host_len);
+
+       url = __uclient_get_url(NULL, host, host_len, url_str, auth_str);
+       if (!url)
+               return -1;
+
+       free(cl->proxy_url);
+       cl->proxy_url = url;
+
+       if (backend->update_proxy_url)
+               backend->update_proxy_url(cl);
+
+       return 0;
+}
+
 int uclient_set_url(struct uclient *cl, const char *url_str, const char *auth_str)
 {
        const struct uclient_backend *backend = cl->backend;
@@ -187,6 +298,9 @@ int uclient_set_url(struct uclient *cl, const char *url_str, const char *auth_st
                return -1;
        }
 
+       free(cl->proxy_url);
+       cl->proxy_url = NULL;
+
        free(cl->url);
        cl->url = url;