]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/http-addr.c
Merge changes from CUPS 1.5svn-r9717.
[thirdparty/cups.git] / cups / http-addr.c
1 /*
2 * "$Id: http-addr.c 7910 2008-09-06 00:25:17Z mike $"
3 *
4 * HTTP address routines for CUPS.
5 *
6 * Copyright 2007-2011 by Apple Inc.
7 * Copyright 1997-2006 by Easy Software Products, all rights reserved.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
14 *
15 * Contents:
16 *
17 * httpAddrAny() - Check for the "any" address.
18 * httpAddrEqual() - Compare two addresses.
19 * httpAddrLocalhost() - Check for the local loopback address.
20 * httpAddrLookup() - Lookup the hostname associated with the address.
21 * _httpAddrPort() - Get the port number associated with an address.
22 * _httpAddrSetPort() - Set the port number associated with an address.
23 * httpAddrString() - Convert an IP address to a dotted string.
24 * httpGetHostByName() - Lookup a hostname or IP address, and return
25 * address records for the specified name.
26 * httpGetHostname() - Get the FQDN for the local system.
27 */
28
29 /*
30 * Include necessary headers...
31 */
32
33 #include "cups-private.h"
34 #ifdef HAVE_RESOLV_H
35 # include <resolv.h>
36 #endif /* HAVE_RESOLV_H */
37 #ifdef HAVE_COREFOUNDATION
38 # include <CoreFoundation/CoreFoundation.h>
39 #endif /* HAVE_COREFOUNDATION */
40 #ifdef HAVE_SYSTEMCONFIGURATION
41 # include <SystemConfiguration/SystemConfiguration.h>
42 #endif /* HAVE_SYSTEMCONFIGURATION */
43
44
45 /*
46 * 'httpAddrAny()' - Check for the "any" address.
47 *
48 * @since CUPS 1.2/Mac OS X 10.5@
49 */
50
51 int /* O - 1 if "any", 0 otherwise */
52 httpAddrAny(const http_addr_t *addr) /* I - Address to check */
53 {
54 if (!addr)
55 return (0);
56
57 #ifdef AF_INET6
58 if (addr->addr.sa_family == AF_INET6 &&
59 IN6_IS_ADDR_UNSPECIFIED(&(addr->ipv6.sin6_addr)))
60 return (1);
61 #endif /* AF_INET6 */
62
63 if (addr->addr.sa_family == AF_INET &&
64 ntohl(addr->ipv4.sin_addr.s_addr) == 0x00000000)
65 return (1);
66
67 return (0);
68 }
69
70
71 /*
72 * 'httpAddrEqual()' - Compare two addresses.
73 *
74 * @since CUPS 1.2/Mac OS X 10.5@
75 */
76
77 int /* O - 1 if equal, 0 if not */
78 httpAddrEqual(const http_addr_t *addr1, /* I - First address */
79 const http_addr_t *addr2) /* I - Second address */
80 {
81 if (!addr1 && !addr2)
82 return (1);
83
84 if (!addr1 || !addr2)
85 return (0);
86
87 if (addr1->addr.sa_family != addr2->addr.sa_family)
88 return (0);
89
90 #ifdef AF_LOCAL
91 if (addr1->addr.sa_family == AF_LOCAL)
92 return (!strcmp(addr1->un.sun_path, addr2->un.sun_path));
93 #endif /* AF_LOCAL */
94
95 #ifdef AF_INET6
96 if (addr1->addr.sa_family == AF_INET6)
97 return (!memcmp(&(addr1->ipv6.sin6_addr), &(addr2->ipv6.sin6_addr), 16));
98 #endif /* AF_INET6 */
99
100 return (addr1->ipv4.sin_addr.s_addr == addr2->ipv4.sin_addr.s_addr);
101 }
102
103
104 /*
105 * 'httpAddrLength()' - Return the length of the address in bytes.
106 *
107 * @since CUPS 1.2/Mac OS X 10.5@
108 */
109
110 int /* O - Length in bytes */
111 httpAddrLength(const http_addr_t *addr) /* I - Address */
112 {
113 if (!addr)
114 return (0);
115
116 #ifdef AF_INET6
117 if (addr->addr.sa_family == AF_INET6)
118 return (sizeof(addr->ipv6));
119 else
120 #endif /* AF_INET6 */
121 #ifdef AF_LOCAL
122 if (addr->addr.sa_family == AF_LOCAL)
123 return (offsetof(struct sockaddr_un, sun_path) +
124 strlen(addr->un.sun_path) + 1);
125 else
126 #endif /* AF_LOCAL */
127 if (addr->addr.sa_family == AF_INET)
128 return (sizeof(addr->ipv4));
129 else
130 return (0);
131
132 }
133
134
135 /*
136 * 'httpAddrLocalhost()' - Check for the local loopback address.
137 *
138 * @since CUPS 1.2/Mac OS X 10.5@
139 */
140
141 int /* O - 1 if local host, 0 otherwise */
142 httpAddrLocalhost(
143 const http_addr_t *addr) /* I - Address to check */
144 {
145 if (!addr)
146 return (1);
147
148 #ifdef AF_INET6
149 if (addr->addr.sa_family == AF_INET6 &&
150 IN6_IS_ADDR_LOOPBACK(&(addr->ipv6.sin6_addr)))
151 return (1);
152 #endif /* AF_INET6 */
153
154 #ifdef AF_LOCAL
155 if (addr->addr.sa_family == AF_LOCAL)
156 return (1);
157 #endif /* AF_LOCAL */
158
159 if (addr->addr.sa_family == AF_INET &&
160 (ntohl(addr->ipv4.sin_addr.s_addr) & 0xff000000) == 0x7f000000)
161 return (1);
162
163 return (0);
164 }
165
166
167 #ifdef __sgi
168 # define ADDR_CAST (struct sockaddr *)
169 #else
170 # define ADDR_CAST (char *)
171 #endif /* __sgi */
172
173
174 /*
175 * 'httpAddrLookup()' - Lookup the hostname associated with the address.
176 *
177 * @since CUPS 1.2/Mac OS X 10.5@
178 */
179
180 char * /* O - Host name */
181 httpAddrLookup(
182 const http_addr_t *addr, /* I - Address to lookup */
183 char *name, /* I - Host name buffer */
184 int namelen) /* I - Size of name buffer */
185 {
186 _cups_globals_t *cg = _cupsGlobals();
187 /* Global data */
188
189
190 DEBUG_printf(("httpAddrLookup(addr=%p, name=%p, namelen=%d)", addr, name,
191 namelen));
192
193 /*
194 * Range check input...
195 */
196
197 if (!addr || !name || namelen <= 2)
198 {
199 if (name && namelen >= 1)
200 *name = '\0';
201
202 return (NULL);
203 }
204
205 #ifdef AF_LOCAL
206 if (addr->addr.sa_family == AF_LOCAL)
207 {
208 strlcpy(name, addr->un.sun_path, namelen);
209 return (name);
210 }
211 #endif /* AF_LOCAL */
212
213 /*
214 * Optimize lookups for localhost/loopback addresses...
215 */
216
217 if (httpAddrLocalhost(addr))
218 {
219 strlcpy(name, "localhost", namelen);
220 return (name);
221 }
222
223 #ifdef HAVE_RES_INIT
224 /*
225 * STR #2920: Initialize resolver after failure in cups-polld
226 *
227 * If the previous lookup failed, re-initialize the resolver to prevent
228 * temporary network errors from persisting. This *should* be handled by
229 * the resolver libraries, but apparently the glibc folks do not agree.
230 *
231 * We set a flag at the end of this function if we encounter an error that
232 * requires reinitialization of the resolver functions. We then call
233 * res_init() if the flag is set on the next call here or in httpAddrLookup().
234 */
235
236 if (cg->need_res_init)
237 {
238 res_init();
239
240 cg->need_res_init = 0;
241 }
242 #endif /* HAVE_RES_INIT */
243
244 #ifdef HAVE_GETNAMEINFO
245 {
246 /*
247 * STR #2486: httpAddrLookup() fails when getnameinfo() returns EAI_AGAIN
248 *
249 * FWIW, I think this is really a bug in the implementation of
250 * getnameinfo(), but falling back on httpAddrString() is easy to
251 * do...
252 */
253
254 int error = getnameinfo(&addr->addr, httpAddrLength(addr), name, namelen,
255 NULL, 0, 0);
256
257 if (error)
258 {
259 if (error == EAI_FAIL)
260 cg->need_res_init = 1;
261
262 return (httpAddrString(addr, name, namelen));
263 }
264 }
265 #else
266 {
267 struct hostent *host; /* Host from name service */
268
269
270 # ifdef AF_INET6
271 if (addr->addr.sa_family == AF_INET6)
272 host = gethostbyaddr(ADDR_CAST &(addr->ipv6.sin6_addr),
273 sizeof(struct in_addr), AF_INET6);
274 else
275 # endif /* AF_INET6 */
276 host = gethostbyaddr(ADDR_CAST &(addr->ipv4.sin_addr),
277 sizeof(struct in_addr), AF_INET);
278
279 if (host == NULL)
280 {
281 /*
282 * No hostname, so return the raw address...
283 */
284
285 if (h_errno == NO_RECOVERY)
286 cg->need_res_init = 1;
287
288 return (httpAddrString(addr, name, namelen));
289 }
290
291 strlcpy(name, host->h_name, namelen);
292 }
293 #endif /* HAVE_GETNAMEINFO */
294
295 DEBUG_printf(("1httpAddrLookup: returning \"%s\"...", name));
296
297 return (name);
298 }
299
300
301 /*
302 * '_httpAddrPort()' - Get the port number associated with an address.
303 */
304
305 int /* O - Port number */
306 _httpAddrPort(http_addr_t *addr) /* I - Address */
307 {
308 if (!addr)
309 return (ippPort());
310 #ifdef AF_INET6
311 else if (addr->addr.sa_family == AF_INET6)
312 return (ntohs(addr->ipv6.sin6_port));
313 #endif /* AF_INET6 */
314 else if (addr->addr.sa_family == AF_INET)
315 return (ntohs(addr->ipv4.sin_port));
316 else
317 return (ippPort());
318 }
319
320
321 /*
322 * '_httpAddrSetPort()' - Set the port number associated with an address.
323 */
324
325 void
326 _httpAddrSetPort(http_addr_t *addr, /* I - Address */
327 int port) /* I - Port */
328 {
329 if (!addr || port <= 0)
330 return;
331
332 #ifdef AF_INET6
333 if (addr->addr.sa_family == AF_INET6)
334 addr->ipv6.sin6_port = htons(port);
335 else
336 #endif /* AF_INET6 */
337 if (addr->addr.sa_family == AF_INET)
338 addr->ipv4.sin_port = htons(port);
339 }
340
341
342 /*
343 * 'httpAddrString()' - Convert an address to a numeric string.
344 *
345 * @since CUPS 1.2/Mac OS X 10.5@
346 */
347
348 char * /* O - Numeric address string */
349 httpAddrString(const http_addr_t *addr, /* I - Address to convert */
350 char *s, /* I - String buffer */
351 int slen) /* I - Length of string */
352 {
353 DEBUG_printf(("httpAddrString(addr=%p, s=%p, slen=%d)", addr, s, slen));
354
355 /*
356 * Range check input...
357 */
358
359 if (!addr || !s || slen <= 2)
360 {
361 if (s && slen >= 1)
362 *s = '\0';
363
364 return (NULL);
365 }
366
367 #ifdef AF_LOCAL
368 if (addr->addr.sa_family == AF_LOCAL)
369 strlcpy(s, addr->un.sun_path, slen);
370 else
371 #endif /* AF_LOCAL */
372 if (addr->addr.sa_family == AF_INET)
373 {
374 unsigned temp; /* Temporary address */
375
376
377 temp = ntohl(addr->ipv4.sin_addr.s_addr);
378
379 snprintf(s, slen, "%d.%d.%d.%d", (temp >> 24) & 255,
380 (temp >> 16) & 255, (temp >> 8) & 255, temp & 255);
381 }
382 #ifdef AF_INET6
383 else if (addr->addr.sa_family == AF_INET6)
384 {
385 char *sptr, /* Pointer into string */
386 temps[64]; /* Temporary string for address */
387
388 # ifdef HAVE_GETNAMEINFO
389 if (getnameinfo(&addr->addr, httpAddrLength(addr), temps, sizeof(temps),
390 NULL, 0, NI_NUMERICHOST))
391 {
392 /*
393 * If we get an error back, then the address type is not supported
394 * and we should zero out the buffer...
395 */
396
397 s[0] = '\0';
398
399 return (NULL);
400 }
401 else if ((sptr = strchr(temps, '%')) != NULL)
402 {
403 /*
404 * Convert "%zone" to "+zone" to match URI form...
405 */
406
407 *sptr = '+';
408 }
409
410 # else
411 int i; /* Looping var */
412 unsigned temp; /* Current value */
413 const char *prefix; /* Prefix for address */
414
415
416 prefix = "";
417 for (sptr = temps, i = 0; i < 4 && addr->ipv6.sin6_addr.s6_addr32[i]; i ++)
418 {
419 temp = ntohl(addr->ipv6.sin6_addr.s6_addr32[i]);
420
421 snprintf(sptr, sizeof(temps) - (sptr - temps), "%s%x", prefix,
422 (temp >> 16) & 0xffff);
423 prefix = ":";
424 sptr += strlen(sptr);
425
426 temp &= 0xffff;
427
428 if (temp || i == 3 || addr->ipv6.sin6_addr.s6_addr32[i + 1])
429 {
430 snprintf(sptr, sizeof(temps) - (sptr - temps), "%s%x", prefix, temp);
431 sptr += strlen(sptr);
432 }
433 }
434
435 if (i < 4)
436 {
437 while (i < 4 && !addr->ipv6.sin6_addr.s6_addr32[i])
438 i ++;
439
440 if (i < 4)
441 {
442 snprintf(sptr, sizeof(temps) - (sptr - temps), "%s:", prefix);
443 prefix = ":";
444 sptr += strlen(sptr);
445
446 for (; i < 4; i ++)
447 {
448 temp = ntohl(addr->ipv6.sin6_addr.s6_addr32[i]);
449
450 if ((temp & 0xffff0000) ||
451 (i > 0 && addr->ipv6.sin6_addr.s6_addr32[i - 1]))
452 {
453 snprintf(sptr, sizeof(temps) - (sptr - temps), "%s%x", prefix,
454 (temp >> 16) & 0xffff);
455 sptr += strlen(sptr);
456 }
457
458 snprintf(sptr, sizeof(temps) - (sptr - temps), "%s%x", prefix,
459 temp & 0xffff);
460 sptr += strlen(sptr);
461 }
462 }
463 else if (sptr == s)
464 {
465 /*
466 * Empty address...
467 */
468
469 strlcpy(temps, "::", sizeof(temps));
470 }
471 else
472 {
473 /*
474 * Empty at end...
475 */
476
477 strlcpy(sptr, "::", sizeof(temps) - (sptr - temps));
478 }
479 }
480 # endif /* HAVE_GETNAMEINFO */
481
482 /*
483 * Add "[v1." and "]" around IPv6 address to convert to URI form.
484 */
485
486 snprintf(s, slen, "[v1.%s]", temps);
487 }
488 #endif /* AF_INET6 */
489 else
490 strlcpy(s, "UNKNOWN", slen);
491
492 DEBUG_printf(("1httpAddrString: returning \"%s\"...", s));
493
494 return (s);
495 }
496
497
498 /*
499 * 'httpGetHostByName()' - Lookup a hostname or IPv4 address, and return
500 * address records for the specified name.
501 *
502 * @deprecated@
503 */
504
505 struct hostent * /* O - Host entry */
506 httpGetHostByName(const char *name) /* I - Hostname or IP address */
507 {
508 const char *nameptr; /* Pointer into name */
509 unsigned ip[4]; /* IP address components */
510 _cups_globals_t *cg = _cupsGlobals();
511 /* Pointer to library globals */
512
513
514 DEBUG_printf(("httpGetHostByName(name=\"%s\")", name));
515
516 /*
517 * Avoid lookup delays and configuration problems when connecting
518 * to the localhost address...
519 */
520
521 if (!strcmp(name, "localhost"))
522 name = "127.0.0.1";
523
524 /*
525 * This function is needed because some operating systems have a
526 * buggy implementation of gethostbyname() that does not support
527 * IP addresses. If the first character of the name string is a
528 * number, then sscanf() is used to extract the IP components.
529 * We then pack the components into an IPv4 address manually,
530 * since the inet_aton() function is deprecated. We use the
531 * htonl() macro to get the right byte order for the address.
532 *
533 * We also support domain sockets when supported by the underlying
534 * OS...
535 */
536
537 #ifdef AF_LOCAL
538 if (name[0] == '/')
539 {
540 /*
541 * A domain socket address, so make an AF_LOCAL entry and return it...
542 */
543
544 cg->hostent.h_name = (char *)name;
545 cg->hostent.h_aliases = NULL;
546 cg->hostent.h_addrtype = AF_LOCAL;
547 cg->hostent.h_length = strlen(name) + 1;
548 cg->hostent.h_addr_list = cg->ip_ptrs;
549 cg->ip_ptrs[0] = (char *)name;
550 cg->ip_ptrs[1] = NULL;
551
552 DEBUG_puts("1httpGetHostByName: returning domain socket address...");
553
554 return (&cg->hostent);
555 }
556 #endif /* AF_LOCAL */
557
558 for (nameptr = name; isdigit(*nameptr & 255) || *nameptr == '.'; nameptr ++);
559
560 if (!*nameptr)
561 {
562 /*
563 * We have an IPv4 address; break it up and provide the host entry
564 * to the caller.
565 */
566
567 if (sscanf(name, "%u.%u.%u.%u", ip, ip + 1, ip + 2, ip + 3) != 4)
568 return (NULL); /* Must have 4 numbers */
569
570 if (ip[0] > 255 || ip[1] > 255 || ip[2] > 255 || ip[3] > 255)
571 return (NULL); /* Invalid byte ranges! */
572
573 cg->ip_addr = htonl(((((((ip[0] << 8) | ip[1]) << 8) | ip[2]) << 8) |
574 ip[3]));
575
576 /*
577 * Fill in the host entry and return it...
578 */
579
580 cg->hostent.h_name = (char *)name;
581 cg->hostent.h_aliases = NULL;
582 cg->hostent.h_addrtype = AF_INET;
583 cg->hostent.h_length = 4;
584 cg->hostent.h_addr_list = cg->ip_ptrs;
585 cg->ip_ptrs[0] = (char *)&(cg->ip_addr);
586 cg->ip_ptrs[1] = NULL;
587
588 DEBUG_puts("1httpGetHostByName: returning IPv4 address...");
589
590 return (&cg->hostent);
591 }
592 else
593 {
594 /*
595 * Use the gethostbyname() function to get the IPv4 address for
596 * the name...
597 */
598
599 DEBUG_puts("1httpGetHostByName: returning domain lookup address(es)...");
600
601 return (gethostbyname(name));
602 }
603 }
604
605
606 /*
607 * 'httpGetHostname()' - Get the FQDN for the connection or local system.
608 *
609 * When "http" points to a connected socket, return the hostname or
610 * address that was used in the call to httpConnect() or httpConnectEncrypt().
611 * Otherwise, return the FQDN for the local system using both gethostname()
612 * and gethostbyname() to get the local hostname with domain.
613 *
614 * @since CUPS 1.2/Mac OS X 10.5@
615 */
616
617 const char * /* O - FQDN for connection or system */
618 httpGetHostname(http_t *http, /* I - HTTP connection or NULL */
619 char *s, /* I - String buffer for name */
620 int slen) /* I - Size of buffer */
621 {
622 if (!s || slen <= 1)
623 return (NULL);
624
625 if (http)
626 {
627 if (http->hostname[0] == '/')
628 strlcpy(s, "localhost", slen);
629 else
630 strlcpy(s, http->hostname, slen);
631 }
632 else
633 {
634 /*
635 * Get the hostname...
636 */
637
638 if (gethostname(s, slen) < 0)
639 strlcpy(s, "localhost", slen);
640
641 if (!strchr(s, '.'))
642 {
643 #ifdef HAVE_SCDYNAMICSTORECOPYCOMPUTERNAME
644 /*
645 * The hostname is not a FQDN, so use the local hostname from the
646 * SystemConfiguration framework...
647 */
648
649 SCDynamicStoreRef sc = SCDynamicStoreCreate(kCFAllocatorDefault,
650 CFSTR("libcups"), NULL, NULL);
651 /* System configuration data */
652 CFStringRef local = sc ? SCDynamicStoreCopyLocalHostName(sc) : NULL;
653 /* Local host name */
654 char localStr[1024]; /* Local host name C string */
655
656 if (local && CFStringGetCString(local, localStr, sizeof(localStr),
657 kCFStringEncodingUTF8))
658 {
659 /*
660 * Append ".local." to the hostname we get...
661 */
662
663 snprintf(s, slen, "%s.local.", localStr);
664 }
665
666 if (local)
667 CFRelease(local);
668 if (sc)
669 CFRelease(sc);
670
671 #else
672 /*
673 * The hostname is not a FQDN, so look it up...
674 */
675
676 struct hostent *host; /* Host entry to get FQDN */
677
678 if ((host = gethostbyname(s)) != NULL && host->h_name)
679 {
680 /*
681 * Use the resolved hostname...
682 */
683
684 strlcpy(s, host->h_name, slen);
685 }
686 #endif /* HAVE_SCDYNAMICSTORECOPYCOMPUTERNAME */
687 }
688 }
689
690 /*
691 * Return the hostname with as much domain info as we have...
692 */
693
694 return (s);
695 }
696
697
698 /*
699 * End of "$Id: http-addr.c 7910 2008-09-06 00:25:17Z mike $".
700 */