]> git.ipfire.org Git - thirdparty/squid.git/blob - src/url.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / url.cc
1 /*
2 * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 /* DEBUG: section 23 URL Parsing */
10
11 #include "squid.h"
12 #include "globals.h"
13 #include "HttpRequest.h"
14 #include "rfc1738.h"
15 #include "SquidConfig.h"
16 #include "SquidString.h"
17 #include "URL.h"
18
19 static HttpRequest *urlParseFinish(const HttpRequestMethod& method,
20 const AnyP::ProtocolType protocol,
21 const char *const urlpath,
22 const char *const host,
23 const SBuf &login,
24 const int port,
25 HttpRequest *request);
26 static HttpRequest *urnParse(const HttpRequestMethod& method, char *urn, HttpRequest *request);
27 static const char valid_hostname_chars_u[] =
28 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
29 "abcdefghijklmnopqrstuvwxyz"
30 "0123456789-._"
31 "[:]"
32 ;
33 static const char valid_hostname_chars[] =
34 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
35 "abcdefghijklmnopqrstuvwxyz"
36 "0123456789-."
37 "[:]"
38 ;
39
40 const SBuf &
41 URL::Asterisk()
42 {
43 static SBuf star("*");
44 return star;
45 }
46
47 const SBuf &
48 URL::SlashPath()
49 {
50 static SBuf slash("/");
51 return slash;
52 }
53
54 void
55 URL::host(const char *src)
56 {
57 hostAddr_.setEmpty();
58 hostAddr_ = src;
59 if (hostAddr_.isAnyAddr()) {
60 xstrncpy(host_, src, sizeof(host_));
61 hostIsNumeric_ = false;
62 } else {
63 hostAddr_.toHostStr(host_, sizeof(host_));
64 debugs(23, 3, "given IP: " << hostAddr_);
65 hostIsNumeric_ = 1;
66 }
67 touch();
68 }
69
70 const SBuf &
71 URL::path() const
72 {
73 // RFC 3986 section 3.3 says path can be empty (path-abempty).
74 // RFC 7230 sections 2.7.3, 5.3.1, 5.7.2 - says path cannot be empty, default to "/"
75 // at least when sending and using. We must still accept path-abempty as input.
76 if (path_.isEmpty() && (scheme_ == AnyP::PROTO_HTTP || scheme_ == AnyP::PROTO_HTTPS))
77 return SlashPath();
78
79 return path_;
80 }
81
82 void
83 urlInitialize(void)
84 {
85 debugs(23, 5, "urlInitialize: Initializing...");
86 /* this ensures that the number of protocol strings is the same as
87 * the enum slots allocated because the last enum is always 'MAX'.
88 */
89 assert(strcmp(AnyP::ProtocolType_str[AnyP::PROTO_MAX], "MAX") == 0);
90 /*
91 * These test that our matchDomainName() function works the
92 * way we expect it to.
93 */
94 assert(0 == matchDomainName("foo.com", "foo.com"));
95 assert(0 == matchDomainName(".foo.com", "foo.com"));
96 assert(0 == matchDomainName("foo.com", ".foo.com"));
97 assert(0 == matchDomainName(".foo.com", ".foo.com"));
98 assert(0 == matchDomainName("x.foo.com", ".foo.com"));
99 assert(0 != matchDomainName("x.foo.com", "foo.com"));
100 assert(0 != matchDomainName("foo.com", "x.foo.com"));
101 assert(0 != matchDomainName("bar.com", "foo.com"));
102 assert(0 != matchDomainName(".bar.com", "foo.com"));
103 assert(0 != matchDomainName(".bar.com", ".foo.com"));
104 assert(0 != matchDomainName("bar.com", ".foo.com"));
105 assert(0 < matchDomainName("zzz.com", "foo.com"));
106 assert(0 > matchDomainName("aaa.com", "foo.com"));
107 assert(0 == matchDomainName("FOO.com", "foo.COM"));
108 assert(0 < matchDomainName("bfoo.com", "afoo.com"));
109 assert(0 > matchDomainName("afoo.com", "bfoo.com"));
110 assert(0 < matchDomainName("x-foo.com", ".foo.com"));
111 /* more cases? */
112 }
113
114 /**
115 * Parse the scheme name from string b, into protocol type.
116 * The string must be 0-terminated.
117 */
118 AnyP::ProtocolType
119 urlParseProtocol(const char *b)
120 {
121 // make e point to the ':' character
122 const char *e = b + strcspn(b, ":");
123 int len = e - b;
124
125 /* test common stuff first */
126
127 if (strncasecmp(b, "http", len) == 0)
128 return AnyP::PROTO_HTTP;
129
130 if (strncasecmp(b, "ftp", len) == 0)
131 return AnyP::PROTO_FTP;
132
133 if (strncasecmp(b, "https", len) == 0)
134 return AnyP::PROTO_HTTPS;
135
136 if (strncasecmp(b, "file", len) == 0)
137 return AnyP::PROTO_FTP;
138
139 if (strncasecmp(b, "coap", len) == 0)
140 return AnyP::PROTO_COAP;
141
142 if (strncasecmp(b, "coaps", len) == 0)
143 return AnyP::PROTO_COAPS;
144
145 if (strncasecmp(b, "gopher", len) == 0)
146 return AnyP::PROTO_GOPHER;
147
148 if (strncasecmp(b, "wais", len) == 0)
149 return AnyP::PROTO_WAIS;
150
151 if (strncasecmp(b, "cache_object", len) == 0)
152 return AnyP::PROTO_CACHE_OBJECT;
153
154 if (strncasecmp(b, "urn", len) == 0)
155 return AnyP::PROTO_URN;
156
157 if (strncasecmp(b, "whois", len) == 0)
158 return AnyP::PROTO_WHOIS;
159
160 return AnyP::PROTO_NONE;
161 }
162
163 /*
164 * Parse a URI/URL.
165 *
166 * If the 'request' arg is non-NULL, put parsed values there instead
167 * of allocating a new HttpRequest.
168 *
169 * This abuses HttpRequest as a way of representing the parsed url
170 * and its components.
171 * method is used to switch parsers and to init the HttpRequest.
172 * If method is Http::METHOD_CONNECT, then rather than a URL a hostname:port is
173 * looked for.
174 * The url is non const so that if its too long we can NULL-terminate it in place.
175 */
176
177 /*
178 * This routine parses a URL. Its assumed that the URL is complete -
179 * ie, the end of the string is the end of the URL. Don't pass a partial
180 * URL here as this routine doesn't have any way of knowing whether
181 * its partial or not (ie, it handles the case of no trailing slash as
182 * being "end of host with implied path of /".
183 */
184 HttpRequest *
185 urlParse(const HttpRequestMethod& method, char *url, HttpRequest *request)
186 {
187 LOCAL_ARRAY(char, proto, MAX_URL);
188 LOCAL_ARRAY(char, login, MAX_URL);
189 LOCAL_ARRAY(char, host, MAX_URL);
190 LOCAL_ARRAY(char, urlpath, MAX_URL);
191 char *t = NULL;
192 char *q = NULL;
193 int port;
194 AnyP::ProtocolType protocol = AnyP::PROTO_NONE;
195 int l;
196 int i;
197 const char *src;
198 char *dst;
199 proto[0] = host[0] = urlpath[0] = login[0] = '\0';
200
201 if ((l = strlen(url)) + Config.appendDomainLen > (MAX_URL - 1)) {
202 /* terminate so it doesn't overflow other buffers */
203 *(url + (MAX_URL >> 1)) = '\0';
204 debugs(23, DBG_IMPORTANT, "urlParse: URL too large (" << l << " bytes)");
205 return NULL;
206 }
207 if (method == Http::METHOD_CONNECT) {
208 port = CONNECT_PORT;
209
210 if (sscanf(url, "[%[^]]]:%d", host, &port) < 1)
211 if (sscanf(url, "%[^:]:%d", host, &port) < 1)
212 return NULL;
213
214 } else if ((method == Http::METHOD_OPTIONS || method == Http::METHOD_TRACE) &&
215 URL::Asterisk().cmp(url) == 0) {
216 protocol = AnyP::PROTO_HTTP;
217 port = AnyP::UriScheme(protocol).defaultPort();
218 return urlParseFinish(method, protocol, url, host, SBuf(), port, request);
219 } else if (!strncmp(url, "urn:", 4)) {
220 return urnParse(method, url, request);
221 } else {
222 /* Parse the URL: */
223 src = url;
224 i = 0;
225 /* Find first : - everything before is protocol */
226 for (i = 0, dst = proto; i < l && *src != ':'; ++i, ++src, ++dst) {
227 *dst = *src;
228 }
229 if (i >= l)
230 return NULL;
231 *dst = '\0';
232
233 /* Then its :// */
234 if ((i+3) > l || *src != ':' || *(src + 1) != '/' || *(src + 2) != '/')
235 return NULL;
236 i += 3;
237 src += 3;
238
239 /* Then everything until first /; thats host (and port; which we'll look for here later) */
240 // bug 1881: If we don't get a "/" then we imply it was there
241 // bug 3074: We could just be given a "?" or "#". These also imply "/"
242 // bug 3233: whitespace is also a hostname delimiter.
243 for (dst = host; i < l && *src != '/' && *src != '?' && *src != '#' && *src != '\0' && !xisspace(*src); ++i, ++src, ++dst) {
244 *dst = *src;
245 }
246
247 /*
248 * We can't check for "i >= l" here because we could be at the end of the line
249 * and have a perfectly valid URL w/ no trailing '/'. In this case we assume we've
250 * been -given- a valid URL and the path is just '/'.
251 */
252 if (i > l)
253 return NULL;
254 *dst = '\0';
255
256 // bug 3074: received 'path' starting with '?', '#', or '\0' implies '/'
257 if (*src == '?' || *src == '#' || *src == '\0') {
258 urlpath[0] = '/';
259 dst = &urlpath[1];
260 } else {
261 dst = urlpath;
262 }
263 /* Then everything from / (inclusive) until \r\n or \0 - thats urlpath */
264 for (; i < l && *src != '\r' && *src != '\n' && *src != '\0'; ++i, ++src, ++dst) {
265 *dst = *src;
266 }
267
268 /* We -could- be at the end of the buffer here */
269 if (i > l)
270 return NULL;
271 /* If the URL path is empty we set it to be "/" */
272 if (dst == urlpath) {
273 *dst = '/';
274 ++dst;
275 }
276 *dst = '\0';
277
278 protocol = urlParseProtocol(proto);
279 port = AnyP::UriScheme(protocol).defaultPort();
280
281 /* Is there any login information? (we should eventually parse it above) */
282 t = strrchr(host, '@');
283 if (t != NULL) {
284 strncpy((char *) login, (char *) host, sizeof(login)-1);
285 login[sizeof(login)-1] = '\0';
286 t = strrchr(login, '@');
287 *t = 0;
288 strncpy((char *) host, t + 1, sizeof(host)-1);
289 host[sizeof(host)-1] = '\0';
290 }
291
292 /* Is there any host information? (we should eventually parse it above) */
293 if (*host == '[') {
294 /* strip any IPA brackets. valid under IPv6. */
295 dst = host;
296 /* only for IPv6 sadly, pre-IPv6/URL code can't handle the clean result properly anyway. */
297 src = host;
298 ++src;
299 l = strlen(host);
300 i = 1;
301 for (; i < l && *src != ']' && *src != '\0'; ++i, ++src, ++dst) {
302 *dst = *src;
303 }
304
305 /* we moved in-place, so truncate the actual hostname found */
306 *dst = '\0';
307 ++dst;
308
309 /* skip ahead to either start of port, or original EOS */
310 while (*dst != '\0' && *dst != ':')
311 ++dst;
312 t = dst;
313 } else {
314 t = strrchr(host, ':');
315
316 if (t != strchr(host,':') ) {
317 /* RFC 2732 states IPv6 "SHOULD" be bracketed. allowing for times when its not. */
318 /* RFC 3986 'update' simply modifies this to an "is" with no emphasis at all! */
319 /* therefore we MUST accept the case where they are not bracketed at all. */
320 t = NULL;
321 }
322 }
323
324 // Bug 3183 sanity check: If scheme is present, host must be too.
325 if (protocol != AnyP::PROTO_NONE && host[0] == '\0') {
326 debugs(23, DBG_IMPORTANT, "SECURITY ALERT: Missing hostname in URL '" << url << "'. see access.log for details.");
327 return NULL;
328 }
329
330 if (t && *t == ':') {
331 *t = '\0';
332 ++t;
333 port = atoi(t);
334 }
335 }
336
337 for (t = host; *t; ++t)
338 *t = xtolower(*t);
339
340 if (stringHasWhitespace(host)) {
341 if (URI_WHITESPACE_STRIP == Config.uri_whitespace) {
342 t = q = host;
343 while (*t) {
344 if (!xisspace(*t)) {
345 *q = *t;
346 ++q;
347 }
348 ++t;
349 }
350 *q = '\0';
351 }
352 }
353
354 debugs(23, 3, "urlParse: Split URL '" << url << "' into proto='" << proto << "', host='" << host << "', port='" << port << "', path='" << urlpath << "'");
355
356 if (Config.onoff.check_hostnames && strspn(host, Config.onoff.allow_underscore ? valid_hostname_chars_u : valid_hostname_chars) != strlen(host)) {
357 debugs(23, DBG_IMPORTANT, "urlParse: Illegal character in hostname '" << host << "'");
358 return NULL;
359 }
360
361 /* For IPV6 addresses also check for a colon */
362 if (Config.appendDomain && !strchr(host, '.') && !strchr(host, ':'))
363 strncat(host, Config.appendDomain, SQUIDHOSTNAMELEN - strlen(host) - 1);
364
365 /* remove trailing dots from hostnames */
366 while ((l = strlen(host)) > 0 && host[--l] == '.')
367 host[l] = '\0';
368
369 /* reject duplicate or leading dots */
370 if (strstr(host, "..") || *host == '.') {
371 debugs(23, DBG_IMPORTANT, "urlParse: Illegal hostname '" << host << "'");
372 return NULL;
373 }
374
375 if (port < 1 || port > 65535) {
376 debugs(23, 3, "urlParse: Invalid port '" << port << "'");
377 return NULL;
378 }
379
380 #if HARDCODE_DENY_PORTS
381 /* These ports are filtered in the default squid.conf, but
382 * maybe someone wants them hardcoded... */
383 if (port == 7 || port == 9 || port == 19) {
384 debugs(23, DBG_CRITICAL, "urlParse: Deny access to port " << port);
385 return NULL;
386 }
387 #endif
388
389 if (stringHasWhitespace(urlpath)) {
390 debugs(23, 2, "urlParse: URI has whitespace: {" << url << "}");
391
392 switch (Config.uri_whitespace) {
393
394 case URI_WHITESPACE_DENY:
395 return NULL;
396
397 case URI_WHITESPACE_ALLOW:
398 break;
399
400 case URI_WHITESPACE_ENCODE:
401 t = rfc1738_escape_unescaped(urlpath);
402 xstrncpy(urlpath, t, MAX_URL);
403 break;
404
405 case URI_WHITESPACE_CHOP:
406 *(urlpath + strcspn(urlpath, w_space)) = '\0';
407 break;
408
409 case URI_WHITESPACE_STRIP:
410 default:
411 t = q = urlpath;
412 while (*t) {
413 if (!xisspace(*t)) {
414 *q = *t;
415 ++q;
416 }
417 ++t;
418 }
419 *q = '\0';
420 }
421 }
422
423 return urlParseFinish(method, protocol, urlpath, host, SBuf(login), port, request);
424 }
425
426 /**
427 * Update request with parsed URI data. If the request arg is
428 * non-NULL, put parsed values there instead of allocating a new
429 * HttpRequest.
430 */
431 static HttpRequest *
432 urlParseFinish(const HttpRequestMethod& method,
433 const AnyP::ProtocolType protocol,
434 const char *const urlpath,
435 const char *const host,
436 const SBuf &login,
437 const int port,
438 HttpRequest *request)
439 {
440 if (NULL == request)
441 request = new HttpRequest(method, protocol, urlpath);
442 else {
443 request->initHTTP(method, protocol, urlpath);
444 }
445
446 request->url.host(host);
447 request->url.userInfo(login);
448 request->url.port(port);
449 return request;
450 }
451
452 static HttpRequest *
453 urnParse(const HttpRequestMethod& method, char *urn, HttpRequest *request)
454 {
455 debugs(50, 5, "urnParse: " << urn);
456 if (request) {
457 request->initHTTP(method, AnyP::PROTO_URN, urn + 4);
458 return request;
459 }
460
461 return new HttpRequest(method, AnyP::PROTO_URN, urn + 4);
462 }
463
464 void
465 URL::touch()
466 {
467 absolute_.clear();
468 authorityHttp_.clear();
469 authorityWithPort_.clear();
470 }
471
472 SBuf &
473 URL::authority(bool requirePort) const
474 {
475 if (authorityHttp_.isEmpty()) {
476
477 // both formats contain Host/IP
478 authorityWithPort_.append(host());
479 authorityHttp_ = authorityWithPort_;
480
481 // authorityForm_ only has :port if it is non-default
482 authorityWithPort_.appendf(":%u",port());
483 if (port() != getScheme().defaultPort())
484 authorityHttp_ = authorityWithPort_;
485 }
486
487 return requirePort ? authorityWithPort_ : authorityHttp_;
488 }
489
490 SBuf &
491 URL::absolute() const
492 {
493 if (absolute_.isEmpty()) {
494 // TODO: most URL will be much shorter, avoid allocating this much
495 absolute_.reserveCapacity(MAX_URL);
496
497 absolute_.appendf("%s:", getScheme().c_str());
498 if (getScheme() != AnyP::PROTO_URN) {
499 absolute_.append("//", 2);
500 const bool omitUserInfo = getScheme() == AnyP::PROTO_HTTP ||
501 getScheme() != AnyP::PROTO_HTTPS ||
502 userInfo().isEmpty();
503 if (!omitUserInfo) {
504 absolute_.append(userInfo());
505 absolute_.append("@", 1);
506 }
507 absolute_.append(authority());
508 }
509 absolute_.append(path());
510 }
511
512 return absolute_;
513 }
514
515 /** \todo AYJ: Performance: This is an *almost* duplicate of HttpRequest::effectiveRequestUri(). But elides the query-string.
516 * After copying it on in the first place! Would be less code to merge the two with a flag parameter.
517 * and never copy the query-string part in the first place
518 */
519 char *
520 urlCanonicalClean(const HttpRequest * request)
521 {
522 LOCAL_ARRAY(char, buf, MAX_URL);
523
524 snprintf(buf, sizeof(buf), SQUIDSBUFPH, SQUIDSBUFPRINT(request->effectiveRequestUri()));
525 buf[sizeof(buf)-1] = '\0';
526
527 // URN, CONNECT method, and non-stripped URIs can go straight out
528 if (Config.onoff.strip_query_terms && !(request->method == Http::METHOD_CONNECT || request->url.getScheme() == AnyP::PROTO_URN)) {
529 // strip anything AFTER a question-mark
530 // leaving the '?' in place
531 if (auto t = strchr(buf, '?')) {
532 *(++t) = '\0';
533 }
534 }
535
536 if (stringHasCntl(buf))
537 xstrncpy(buf, rfc1738_escape_unescaped(buf), MAX_URL);
538
539 return buf;
540 }
541
542 /**
543 * Yet another alternative to urlCanonical.
544 * This one adds the https:// parts to Http::METHOD_CONNECT URL
545 * for use in error page outputs.
546 * Luckily we can leverage the others instead of duplicating.
547 */
548 const char *
549 urlCanonicalFakeHttps(const HttpRequest * request)
550 {
551 LOCAL_ARRAY(char, buf, MAX_URL);
552
553 // method CONNECT and port HTTPS
554 if (request->method == Http::METHOD_CONNECT && request->url.port() == 443) {
555 snprintf(buf, MAX_URL, "https://%s/*", request->url.host());
556 return buf;
557 }
558
559 // else do the normal complete canonical thing.
560 return urlCanonicalClean(request);
561 }
562
563 /*
564 * Test if a URL is relative.
565 *
566 * RFC 2396, Section 5 (Page 17) implies that in a relative URL, a '/' will
567 * appear before a ':'.
568 */
569 bool
570 urlIsRelative(const char *url)
571 {
572 const char *p;
573
574 if (url == NULL) {
575 return (false);
576 }
577 if (*url == '\0') {
578 return (false);
579 }
580
581 for (p = url; *p != '\0' && *p != ':' && *p != '/'; ++p);
582
583 if (*p == ':') {
584 return (false);
585 }
586 return (true);
587 }
588
589 /*
590 * Convert a relative URL to an absolute URL using the context of a given
591 * request.
592 *
593 * It is assumed that you have already ensured that the URL is relative.
594 *
595 * If NULL is returned it is an indication that the method in use in the
596 * request does not distinguish between relative and absolute and you should
597 * use the url unchanged.
598 *
599 * If non-NULL is returned, it is up to the caller to free the resulting
600 * memory using safe_free().
601 */
602 char *
603 urlMakeAbsolute(const HttpRequest * req, const char *relUrl)
604 {
605
606 if (req->method.id() == Http::METHOD_CONNECT) {
607 return (NULL);
608 }
609
610 char *urlbuf = (char *)xmalloc(MAX_URL * sizeof(char));
611
612 if (req->url.getScheme() == AnyP::PROTO_URN) {
613 // XXX: this is what the original code did, but it seems to break the
614 // intended behaviour of this function. It returns the stored URN path,
615 // not converting the given one into a URN...
616 snprintf(urlbuf, MAX_URL, SQUIDSBUFPH, SQUIDSBUFPRINT(req->url.absolute()));
617 return (urlbuf);
618 }
619
620 SBuf authorityForm = req->url.authority(); // host[:port]
621 size_t urllen = snprintf(urlbuf, MAX_URL, "%s://" SQUIDSBUFPH "%s" SQUIDSBUFPH,
622 req->url.getScheme().c_str(),
623 SQUIDSBUFPRINT(req->url.userInfo()),
624 !req->url.userInfo().isEmpty() ? "@" : "",
625 SQUIDSBUFPRINT(authorityForm));
626
627 // if the first char is '/' assume its a relative path
628 // XXX: this breaks on scheme-relative URLs,
629 // but we should not see those outside ESI, and rarely there.
630 // XXX: also breaks on any URL containing a '/' in the query-string portion
631 if (relUrl[0] == '/') {
632 xstrncpy(&urlbuf[urllen], relUrl, MAX_URL - urllen - 1);
633 } else {
634 SBuf path = req->url.path();
635 SBuf::size_type lastSlashPos = path.rfind('/');
636
637 if (lastSlashPos == SBuf::npos) {
638 // replace the whole path with the given bit(s)
639 urlbuf[urllen] = '/';
640 ++urllen;
641 xstrncpy(&urlbuf[urllen], relUrl, MAX_URL - urllen - 1);
642 } else {
643 // replace only the last (file?) segment with the given bit(s)
644 ++lastSlashPos;
645 if (lastSlashPos > MAX_URL - urllen - 1) {
646 // XXX: crops bits in the middle of the combined URL.
647 lastSlashPos = MAX_URL - urllen - 1;
648 }
649 SBufToCstring(&urlbuf[urllen], path.substr(0,lastSlashPos));
650 urllen += lastSlashPos;
651 if (urllen + 1 < MAX_URL) {
652 xstrncpy(&urlbuf[urllen], relUrl, MAX_URL - urllen - 1);
653 }
654 }
655 }
656
657 return (urlbuf);
658 }
659
660 int
661 matchDomainName(const char *h, const char *d, bool honorWildcards)
662 {
663 int dl;
664 int hl;
665
666 while ('.' == *h)
667 ++h;
668
669 hl = strlen(h);
670
671 dl = strlen(d);
672
673 /*
674 * Start at the ends of the two strings and work towards the
675 * beginning.
676 */
677 while (xtolower(h[--hl]) == xtolower(d[--dl])) {
678 if (hl == 0 && dl == 0) {
679 /*
680 * We made it all the way to the beginning of both
681 * strings without finding any difference.
682 */
683 return 0;
684 }
685
686 if (0 == hl) {
687 /*
688 * The host string is shorter than the domain string.
689 * There is only one case when this can be a match.
690 * If the domain is just one character longer, and if
691 * that character is a leading '.' then we call it a
692 * match.
693 */
694
695 if (1 == dl && '.' == d[0])
696 return 0;
697 else
698 return -1;
699 }
700
701 if (0 == dl) {
702 /*
703 * The domain string is shorter than the host string.
704 * This is a match only if the first domain character
705 * is a leading '.'.
706 */
707
708 if ('.' == d[0])
709 return 0;
710 else
711 return 1;
712 }
713 }
714
715 /*
716 * We found different characters in the same position (from the end).
717 */
718
719 // If the h has a form of "*.foo.com" and d has a form of "x.foo.com"
720 // then the h[hl] points to '*', h[hl+1] to '.' and d[dl] to 'x'
721 // The following checks are safe, the "h[hl + 1]" in the worst case is '\0'.
722 if (honorWildcards && h[hl] == '*' && h[hl + 1] == '.')
723 return 0;
724
725 /*
726 * If one of those character is '.' then its special. In order
727 * for splay tree sorting to work properly, "x-foo.com" must
728 * be greater than ".foo.com" even though '-' is less than '.'.
729 */
730 if ('.' == d[dl])
731 return 1;
732
733 if ('.' == h[hl])
734 return -1;
735
736 return (xtolower(h[hl]) - xtolower(d[dl]));
737 }
738
739 /*
740 * return true if we can serve requests for this method.
741 */
742 int
743 urlCheckRequest(const HttpRequest * r)
744 {
745 int rc = 0;
746 /* protocol "independent" methods
747 *
748 * actually these methods are specific to HTTP:
749 * they are methods we recieve on our HTTP port,
750 * and if we had a FTP listener would not be relevant
751 * there.
752 *
753 * So, we should delegate them to HTTP. The problem is that we
754 * do not have a default protocol from the client side of HTTP.
755 */
756
757 if (r->method == Http::METHOD_CONNECT)
758 return 1;
759
760 // we support OPTIONS and TRACE directed at us (with a 501 reply, for now)
761 // we also support forwarding OPTIONS and TRACE, except for the *-URI ones
762 if (r->method == Http::METHOD_OPTIONS || r->method == Http::METHOD_TRACE)
763 return (r->header.getInt64(Http::HdrType::MAX_FORWARDS) == 0 || r->url.path() != URL::Asterisk());
764
765 if (r->method == Http::METHOD_PURGE)
766 return 1;
767
768 /* does method match the protocol? */
769 switch (r->url.getScheme()) {
770
771 case AnyP::PROTO_URN:
772
773 case AnyP::PROTO_HTTP:
774
775 case AnyP::PROTO_CACHE_OBJECT:
776 rc = 1;
777 break;
778
779 case AnyP::PROTO_FTP:
780
781 if (r->method == Http::METHOD_PUT)
782 rc = 1;
783
784 case AnyP::PROTO_GOPHER:
785
786 case AnyP::PROTO_WAIS:
787
788 case AnyP::PROTO_WHOIS:
789 if (r->method == Http::METHOD_GET)
790 rc = 1;
791 else if (r->method == Http::METHOD_HEAD)
792 rc = 1;
793
794 break;
795
796 case AnyP::PROTO_HTTPS:
797 #if USE_OPENSSL
798
799 rc = 1;
800
801 break;
802
803 #else
804 /*
805 * Squid can't originate an SSL connection, so it should
806 * never receive an "https:" URL. It should always be
807 * CONNECT instead.
808 */
809 rc = 0;
810
811 #endif
812
813 default:
814 break;
815 }
816
817 return rc;
818 }
819
820 /*
821 * Quick-n-dirty host extraction from a URL. Steps:
822 * Look for a colon
823 * Skip any '/' after the colon
824 * Copy the next SQUID_MAXHOSTNAMELEN bytes to host[]
825 * Look for an ending '/' or ':' and terminate
826 * Look for login info preceeded by '@'
827 */
828
829 class URLHostName
830 {
831
832 public:
833 char * extract(char const *url);
834
835 private:
836 static char Host [SQUIDHOSTNAMELEN];
837 void init(char const *);
838 void findHostStart();
839 void trimTrailingChars();
840 void trimAuth();
841 char const *hostStart;
842 char const *url;
843 };
844
845 char *
846 urlHostname(const char *url)
847 {
848 return URLHostName().extract(url);
849 }
850
851 char URLHostName::Host[SQUIDHOSTNAMELEN];
852
853 void
854 URLHostName::init(char const *aUrl)
855 {
856 Host[0] = '\0';
857 url = aUrl;
858 }
859
860 void
861 URLHostName::findHostStart()
862 {
863 if (NULL == (hostStart = strchr(url, ':')))
864 return;
865
866 ++hostStart;
867
868 while (*hostStart != '\0' && *hostStart == '/')
869 ++hostStart;
870
871 if (*hostStart == ']')
872 ++hostStart;
873 }
874
875 void
876 URLHostName::trimTrailingChars()
877 {
878 char *t;
879
880 if ((t = strchr(Host, '/')))
881 *t = '\0';
882
883 if ((t = strrchr(Host, ':')))
884 *t = '\0';
885
886 if ((t = strchr(Host, ']')))
887 *t = '\0';
888 }
889
890 void
891 URLHostName::trimAuth()
892 {
893 char *t;
894
895 if ((t = strrchr(Host, '@'))) {
896 ++t;
897 memmove(Host, t, strlen(t) + 1);
898 }
899 }
900
901 char *
902 URLHostName::extract(char const *aUrl)
903 {
904 init(aUrl);
905 findHostStart();
906
907 if (hostStart == NULL)
908 return NULL;
909
910 xstrncpy(Host, hostStart, SQUIDHOSTNAMELEN);
911
912 trimTrailingChars();
913
914 trimAuth();
915
916 return Host;
917 }
918
919 URL::URL(AnyP::UriScheme const &aScheme) :
920 scheme_(aScheme),
921 hostIsNumeric_(false),
922 port_(0)
923 {
924 *host_=0;
925 }
926