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