X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Furl.c;h=a6dcf7aa06fe4f1335edbe921359136b17bed1dc;hb=23552983305e667eeb772406d1745ab7b865855e;hp=7ecd066d3b3e6854c6946877dd087881bd9c3211;hpb=4ecd6b5eabaf81c764a8ecf4ba8bacb7452a26d1;p=libucw.git diff --git a/lib/url.c b/lib/url.c index 7ecd066d..a6dcf7aa 100644 --- a/lib/url.c +++ b/lib/url.c @@ -1,16 +1,41 @@ /* * Sherlock Library -- URL Functions (according to RFC 1738 and 1808) * - * (c) 1997 Martin Mares, + * (c) 1997--2001 Martin Mares + * (c) 2001 Robert Spalek */ +#include "lib/lib.h" +#include "lib/url.h" +#include "lib/chartype.h" +#include "lib/conf.h" + #include #include #include -#include "lib.h" -#include "url.h" -#include "string.h" +/* Configuration */ + +static uns url_ignore_spaces; +static uns url_ignore_underflow; +static byte *url_component_separators = ""; +static uns url_min_repeat_count = 0x7fffffff; +static uns url_max_repeat_length = 0; + +static struct cfitem url_config[] = { + { "URL", CT_SECTION, NULL }, + { "IgnoreSpaces", CT_INT, &url_ignore_spaces }, + { "IgnoreUnderflow", CT_INT, &url_ignore_underflow }, + { "ComponentSeparators", CT_STRING, &url_component_separators }, + { "MinRepeatCount", CT_INT, &url_min_repeat_count }, + { "MaxRepeatLength", CT_INT, &url_max_repeat_length }, + { NULL, CT_STOP, NULL } +}; + +static void CONSTRUCTOR url_init_config(void) +{ + cf_register(url_config); +} /* Escaping and de-escaping */ @@ -23,6 +48,7 @@ enhex(uns x) int url_deescape(byte *s, byte *d) { + byte *dstart = d; byte *end = d + MAX_URL_SIZE - 10; while (*s) { @@ -34,7 +60,7 @@ url_deescape(byte *s, byte *d) if (!Cxdigit(s[1]) || !Cxdigit(s[2])) return URL_ERR_INVALID_ESCAPE; val = Cxvalue(s[1])*16 + Cxvalue(s[2]); - if (!Cprint(val)) + if (val < 0x20) return URL_ERR_INVALID_ESCAPED_CHAR; switch (val) { @@ -52,12 +78,29 @@ url_deescape(byte *s, byte *d) val = NCC_EQUAL; break; case '&': val = NCC_AND; break; + case '#': + val = NCC_HASH; break; } *d++ = val; s += 3; } - else if (*s >= 0x20 && *s <= 0x7e || *s >= 0xa0) + else if (*s > 0x20) *d++ = *s++; + else if (Cspace(*s)) + { + byte *s0 = s; + while (Cspace(*s)) + s++; + if (!url_ignore_spaces || !(!*s || d == dstart)) + { + while (Cspace(*s0)) + { + if (d >= end) + return URL_ERR_TOO_LONG; + *d++ = *s0++; + } + } + } else return URL_ERR_INVALID_CHAR; } @@ -69,19 +112,18 @@ int url_enescape(byte *s, byte *d) { byte *end = d + MAX_URL_SIZE - 10; + unsigned int c; - while (*s) + while (c = *s) { if (d >= end) return URL_ERR_TOO_LONG; - if ( *s >= 'A' && *s <= 'Z' - || *s >= 'a' && *s <= 'z' - || *s >= '0' && *s <= '9' - || *s == '$' || *s == '-' || *s == '.' || *s == '+' - || *s == '!' || *s == '*' || *s == '\'' || *s == '(' - || *s == ')' || *s == '_' || *s == ';' || *s == '/' - || *s == '?' || *s == ':' || *s == '@' || *s == '=' - || *s == '&') + if (Calnum(c) || /* RFC 1738(2.2): Only alphanumerics ... */ + c == '$' || c == '-' || c == '_' || c == '.' || c == '+' || /* ... and several other exceptions ... */ + c == '!' || c == '*' || c == '\'' || c == '(' || c == ')' || + c == ',' || + c == '/' || c == '?' || c == ':' || c == '@' || /* ... and reserved chars used for reserved purpose */ + c == '=' || c == '&' || c == '#' || c == ';') *d++ = *s++; else { @@ -99,6 +141,7 @@ url_enescape(byte *s, byte *d) /* Split an URL (several parts may be copied to the destination buffer) */ byte *url_proto_names[URL_PROTO_MAX] = URL_PNAMES; +static int url_proto_path_flags[URL_PROTO_MAX] = URL_PATH_FLAGS; uns identify_protocol(byte *p) @@ -131,6 +174,15 @@ url_split(byte *s, struct url *u, byte *d) *d++ = 0; u->protoid = identify_protocol(u->protocol); s++; + if (url_proto_path_flags[u->protoid] && (s[0] != '/' || s[1] != '/')) + { + /* The protocol requires complete host spec, but it's missing -> treat as a relative path instead */ + int len = d - u->protocol; + d -= len; + s -= len; + u->protocol = NULL; + u->protoid = 0; + } } } @@ -192,20 +244,44 @@ relpath_merge(struct url *u, struct url *b) if (o[0] != '/') return URL_PATH_UNDERFLOW; - if (!a[0]) /* Empty relative URL is a special case */ + if (!a[0]) /* Empty URL -> inherit everything */ { u->rest = b->rest; return 0; } - u->rest = d; - p = strrchr(o, '/'); /* Must be found! */ - while (o <= p) /* Copy original path */ + u->rest = d; /* We know we'll need to copy the path somewhere else */ + + if (a[0] == '#') /* Another fragment */ + { + for(p=o; *p && *p != '#'; p++) + ; + goto copy; + } + if (a[0] == '?') /* New query */ + { + for(p=o; *p && *p != '#' && *p != '?'; p++) + ; + goto copy; + } + if (a[0] == ';') /* Change parameters */ + { + for(p=o; *p && *p != ';' && *p != '?' && *p != '#'; p++) + ; + goto copy; + } + + p = NULL; /* Copy original path and find the last slash */ + while (*o && *o != ';' && *o != '?' && *o != '#') { if (d >= e) return URL_ERR_TOO_LONG; - *d++ = *o++; + if ((*d++ = *o++) == '/') + p = d; } + if (!p) + return URL_ERR_REL_NOTHING; + d = p; while (*a) { @@ -221,13 +297,23 @@ relpath_merge(struct url *u, struct url *b) else if (a[1] == '.' && (a[2] == '/' || !a[2])) /* "../" */ { a += 2; - if (d <= u->buf + 1) - return URL_PATH_UNDERFLOW; - d--; /* Discard trailing slash */ - while (d[-1] != '/') - d--; if (a[0]) a++; + if (d <= u->buf + 1) + { + /* + * RFC 1808 says we should leave ".." as a path segment, but + * we intentionally break the rule and refuse the URL. + */ + if (!url_ignore_underflow) + return URL_PATH_UNDERFLOW; + } + else + { + d--; /* Discard trailing slash */ + while (d[-1] != '/') + d--; + } continue; } } @@ -241,54 +327,60 @@ relpath_merge(struct url *u, struct url *b) *d++ = *a++; } +okay: *d++ = 0; u->buf = d; return 0; + +copy: /* Combine part of old URL with the new one */ + while (o < p) + if (d < e) + *d++ = *o++; + else + return URL_ERR_TOO_LONG; + while (*a) + if (d < e) + *d++ = *a++; + else + return URL_ERR_TOO_LONG; + goto okay; } int url_normalize(struct url *u, struct url *b) { - byte *k; - - if (u->protocol && !u->protoid) - return 0; - - if ((u->protoid == URL_PROTO_HTTP || (!u->protoid && b && b->protoid == URL_PROTO_HTTP)) - && u->rest && (k = strchr(u->rest, '#'))) - *k = 0; /* Kill fragment reference */ - - if (u->port == ~0) - u->port = std_ports[u->protoid]; + int err; - if ( u->protocol && !u->host - || u->host && !*u->host - || !u->host && u->user - || !u->rest) + /* Basic checks */ + if (url_proto_path_flags[u->protoid] && !u->host || + u->host && !*u->host || + !u->host && u->user || + !u->rest) return URL_SYNTAX_ERROR; - if (u->protocol) /* Absolute URL */ - return 0; - - if (!b) /* Relative to something? */ - return URL_ERR_REL_NOTHING; - if (!b->protoid) - return URL_ERR_UNKNOWN_PROTOCOL; - if (!u->protocol) { + /* Now we know it's a relative URL. Do we have any base? */ + if (!b || !url_proto_path_flags[b->protoid]) + return URL_ERR_REL_NOTHING; u->protocol = b->protocol; u->protoid = b->protoid; - } - if (!u->host) - { - u->host = b->host; - u->user = b->user; - u->port = b->port; - return relpath_merge(u, b); + /* Reference to the same host */ + if (!u->host) + { + u->host = b->host; + u->user = b->user; + u->port = b->port; + if (err = relpath_merge(u, b)) + return err; + } } + /* Fill in missing info */ + if (u->port == ~0U) + u->port = std_ports[u->protoid]; + return 0; } @@ -322,17 +414,21 @@ kill_end_dot(byte *b) int url_canonicalize(struct url *u) { + char *c; + lowercase(u->protocol); lowercase(u->host); kill_end_dot(u->host); - if ((!u->rest || !*u->rest) && (u->protoid == URL_PROTO_HTTP || u->protoid == URL_PROTO_FTP)) + if ((!u->rest || !*u->rest) && url_proto_path_flags[u->protoid]) u->rest = "/"; + if (u->rest && (c = strchr(u->rest, '#'))) /* Kill fragment reference */ + *c = 0; return 0; } /* Pack a broken-down URL */ -byte * +static byte * append(byte *d, byte *s, byte *e) { if (d) @@ -365,7 +461,7 @@ url_pack(struct url *u, byte *d) d = append(d, "@", e); } d = append(d, u->host, e); - if (u->port != std_ports[u->protoid] && u->port != ~0) + if (u->port != std_ports[u->protoid] && u->port != ~0U) { char z[10]; sprintf(z, "%d", u->port); @@ -404,7 +500,7 @@ url_error(uns err) return errmsg[err]; } -/* A "macro" for canonical split */ +/* Standard cookbook recipes */ int url_canon_split(byte *u, byte *buf1, byte *buf2, struct url *url) @@ -420,6 +516,19 @@ url_canon_split(byte *u, byte *buf1, byte *buf2, struct url *url) return url_canonicalize(url); } +int +url_auto_canonicalize(byte *src, byte *dst) +{ + byte buf1[MAX_URL_SIZE], buf2[MAX_URL_SIZE], buf3[MAX_URL_SIZE]; + int err; + struct url ur; + + (void)((err = url_canon_split(src, buf1, buf2, &ur)) || + (err = url_pack(&ur, buf3)) || + (err = url_enescape(buf3, dst))); + return err; +} + /* Testing */ #ifdef TEST @@ -444,7 +553,7 @@ int main(int argc, char **argv) return 1; } printf("split: @%s@%s@%s@%d@%s\n", url.protocol, url.user, url.host, url.port, url.rest); - if (err = url_split("http://mj@www.hell.org/123/sub_dir/index.html", &url0, buf3)) + if (err = url_split("http://mj@www.hell.org/123/sub_dir/index.html;param?query&zzz/subquery#fragment", &url0, buf3)) { printf("split base: error %d\n", err); return 1; @@ -472,7 +581,7 @@ int main(int argc, char **argv) printf("pack: error %d\n", err); return 1; } - printf("pack: %s\n", buf1); + printf("pack: %s\n", buf4); if (err = url_enescape(buf4, buf2)) { printf("enesc: error %d\n", err); @@ -483,3 +592,78 @@ int main(int argc, char **argv) } #endif + +struct component { + byte *start; + int length; + u32 hash; +}; + +static inline u32 +hashf(byte *start, int length) +{ + u32 hf = length; + while (length-- > 0) + hf = (hf << 8 | hf >> 24) ^ *start++; + return hf; +} + +static inline uns +repeat_count(struct component *comp, uns count, uns len) +{ + struct component *orig_comp = comp; + uns found = 0; + while (1) + { + uns i; + comp += len; + count -= len; + found++; + if (count < len) + return found; + for (i=0; i= url_min_repeat_count) + return comp_len; + return 0; +}