]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/http-support.c
Move debug printfs to internal usage only.
[thirdparty/cups.git] / cups / http-support.c
CommitLineData
ef416fc2 1/*
5ec1fd3d 2 * HTTP support routines for CUPS.
ef416fc2 3 *
fdaf028e 4 * Copyright 2007-2018 by Apple Inc.
5ec1fd3d 5 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 6 *
fdaf028e
MS
7 * Licensed under Apache License v2.0. See the file "LICENSE" for more
8 * information.
ef416fc2 9 */
10
11/*
12 * Include necessary headers...
13 */
14
71e16022 15#include "cups-private.h"
fb863569 16#include "debug-internal.h"
5eb9da71
MS
17#ifdef HAVE_DNSSD
18# include <dns_sd.h>
19dc16f7 19# ifdef _WIN32
6d2f911b
MS
20# include <io.h>
21# elif defined(HAVE_POLL)
22# include <poll.h>
23# else
24# include <sys/select.h>
19dc16f7 25# endif /* _WIN32 */
f3c17241
MS
26#elif defined(HAVE_AVAHI)
27# include <avahi-client/client.h>
28# include <avahi-client/lookup.h>
29# include <avahi-common/simple-watch.h>
5eb9da71
MS
30#endif /* HAVE_DNSSD */
31
32
33/*
34 * Local types...
35 */
36
37typedef struct _http_uribuf_s /* URI buffer */
38{
f3c17241
MS
39#ifdef HAVE_AVAHI
40 AvahiSimplePoll *poll; /* Poll state */
41#endif /* HAVE_AVAHI */
42 char *buffer; /* Pointer to buffer */
43 size_t bufsize; /* Size of buffer */
44 int options; /* Options passed to _httpResolveURI */
5a9febac 45 const char *resource; /* Resource from URI */
2c3f5865 46 const char *uuid; /* UUID from URI */
5eb9da71 47} _http_uribuf_t;
ef416fc2 48
49
50/*
51 * Local globals...
52 */
53
5ec1fd3d 54static const char * const http_days[7] =/* Days of the week */
ef416fc2 55 {
0a682745
MS
56 "Sun",
57 "Mon",
ef416fc2 58 "Tue",
59 "Wed",
60 "Thu",
61 "Fri",
62 "Sat"
63 };
64static const char * const http_months[12] =
5ec1fd3d 65 { /* Months of the year */
ef416fc2 66 "Jan",
67 "Feb",
68 "Mar",
69 "Apr",
70 "May",
71 "Jun",
72 "Jul",
73 "Aug",
74 "Sep",
75 "Oct",
76 "Nov",
77 "Dec"
78 };
5ec1fd3d
MS
79static const char * const http_states[] =
80 { /* HTTP state strings */
81 "HTTP_STATE_ERROR",
82 "HTTP_STATE_WAITING",
83 "HTTP_STATE_OPTIONS",
84 "HTTP_STATE_GET",
85 "HTTP_STATE_GET_SEND",
86 "HTTP_STATE_HEAD",
87 "HTTP_STATE_POST",
88 "HTTP_STATE_POST_RECV",
89 "HTTP_STATE_POST_SEND",
90 "HTTP_STATE_PUT",
91 "HTTP_STATE_PUT_RECV",
92 "HTTP_STATE_DELETE",
93 "HTTP_STATE_TRACE",
94 "HTTP_STATE_CONNECT",
95 "HTTP_STATE_STATUS",
96 "HTTP_STATE_UNKNOWN_METHOD",
97 "HTTP_STATE_UNKNOWN_VERSION"
98 };
ef416fc2 99
100
101/*
102 * Local functions...
103 */
104
105static const char *http_copy_decode(char *dst, const char *src,
a4d04587 106 int dstsize, const char *term,
107 int decode);
ef416fc2 108static char *http_copy_encode(char *dst, const char *src,
a4d04587 109 char *dstend, const char *reserved,
110 const char *term, int encode);
5eb9da71 111#ifdef HAVE_DNSSD
eac3a0a0
MS
112static void DNSSD_API http_resolve_cb(DNSServiceRef sdRef,
113 DNSServiceFlags flags,
114 uint32_t interfaceIndex,
115 DNSServiceErrorType errorCode,
116 const char *fullName,
117 const char *hostTarget,
118 uint16_t port, uint16_t txtLen,
119 const unsigned char *txtRecord,
120 void *context);
5eb9da71 121#endif /* HAVE_DNSSD */
ef416fc2 122
f3c17241
MS
123#ifdef HAVE_AVAHI
124static void http_client_cb(AvahiClient *client,
125 AvahiClientState state, void *simple_poll);
126static int http_poll_cb(struct pollfd *pollfds, unsigned int num_pollfds,
127 int timeout, void *context);
128static void http_resolve_cb(AvahiServiceResolver *resolver,
129 AvahiIfIndex interface,
130 AvahiProtocol protocol,
131 AvahiResolverEvent event,
132 const char *name, const char *type,
133 const char *domain, const char *host_name,
134 const AvahiAddress *address, uint16_t port,
135 AvahiStringList *txt,
136 AvahiLookupResultFlags flags, void *context);
137#endif /* HAVE_AVAHI */
138
ef416fc2 139
140/*
141 * 'httpAssembleURI()' - Assemble a uniform resource identifier from its
142 * components.
143 *
ecdc0628 144 * This function escapes reserved characters in the URI depending on the
145 * value of the "encoding" argument. You should use this function in
146 * place of traditional string functions whenever you need to create a
147 * URI string.
ef416fc2 148 *
8072030b 149 * @since CUPS 1.2/macOS 10.5@
ef416fc2 150 */
151
152http_uri_status_t /* O - URI status */
a4d04587 153httpAssembleURI(
154 http_uri_coding_t encoding, /* I - Encoding flags */
155 char *uri, /* I - URI buffer */
156 int urilen, /* I - Size of URI buffer */
157 const char *scheme, /* I - Scheme name */
158 const char *username, /* I - Username */
159 const char *host, /* I - Hostname or address */
160 int port, /* I - Port number */
161 const char *resource) /* I - Resource */
ef416fc2 162{
163 char *ptr, /* Pointer into URI buffer */
164 *end; /* End of URI buffer */
ef416fc2 165
166
167 /*
168 * Range check input...
169 */
170
171 if (!uri || urilen < 1 || !scheme || port < 0)
172 {
173 if (uri)
174 *uri = '\0';
175
cb7f98ee 176 return (HTTP_URI_STATUS_BAD_ARGUMENTS);
ef416fc2 177 }
178
179 /*
180 * Assemble the URI starting with the scheme...
181 */
182
183 end = uri + urilen - 1;
a4d04587 184 ptr = http_copy_encode(uri, scheme, end, NULL, NULL, 0);
ef416fc2 185
186 if (!ptr)
187 goto assemble_overflow;
188
60bc88e1 189 if (!strcmp(scheme, "geo") || !strcmp(scheme, "mailto") || !strcmp(scheme, "tel"))
ef416fc2 190 {
191 /*
60bc88e1 192 * geo:, mailto:, and tel: only have :, no //...
ef416fc2 193 */
194
195 if (ptr < end)
196 *ptr++ = ':';
197 else
198 goto assemble_overflow;
199 }
200 else
201 {
202 /*
60bc88e1 203 * Schemes other than geo:, mailto:, and tel: typically have //...
ef416fc2 204 */
205
206 if ((ptr + 2) < end)
207 {
208 *ptr++ = ':';
209 *ptr++ = '/';
210 *ptr++ = '/';
211 }
212 else
213 goto assemble_overflow;
214 }
215
216 /*
217 * Next the username and hostname, if any...
218 */
219
220 if (host)
221 {
ff862e50
MS
222 const char *hostptr; /* Pointer into hostname */
223 int have_ipv6; /* Do we have an IPv6 address? */
224
ef416fc2 225 if (username && *username)
226 {
227 /*
228 * Add username@ first...
229 */
230
85dda01c 231 ptr = http_copy_encode(ptr, username, end, "/?#[]@", NULL,
a4d04587 232 encoding & HTTP_URI_CODING_USERNAME);
ef416fc2 233
234 if (!ptr)
235 goto assemble_overflow;
236
237 if (ptr < end)
238 *ptr++ = '@';
239 else
240 goto assemble_overflow;
241 }
242
243 /*
244 * Then add the hostname. Since IPv6 is a particular pain to deal
c9fc04c6 245 * with, we have several special cases to deal with. If we get
ef416fc2 246 * an IPv6 address with brackets around it, assume it is already in
c9fc04c6
MS
247 * URI format. Since DNS-SD service names can sometimes look like
248 * raw IPv6 addresses, we specifically look for "._tcp" in the name,
249 * too...
ef416fc2 250 */
251
ff862e50
MS
252 for (hostptr = host,
253 have_ipv6 = strchr(host, ':') && !strstr(host, "._tcp");
254 *hostptr && have_ipv6;
255 hostptr ++)
256 if (*hostptr != ':' && !isxdigit(*hostptr & 255))
257 {
258 have_ipv6 = *hostptr == '%';
259 break;
260 }
261
262 if (have_ipv6)
ef416fc2 263 {
264 /*
c9fc04c6 265 * We have a raw IPv6 address...
ef416fc2 266 */
267
86c809d9 268 if (strchr(host, '%') && !(encoding & HTTP_URI_CODING_RFC6874))
ef416fc2 269 {
270 /*
271 * We have a link-local address, add "[v1." prefix...
272 */
273
274 if ((ptr + 4) < end)
275 {
276 *ptr++ = '[';
277 *ptr++ = 'v';
278 *ptr++ = '1';
279 *ptr++ = '.';
280 }
281 else
282 goto assemble_overflow;
283 }
284 else
285 {
286 /*
ff862e50 287 * We have a normal (or RFC 6874 link-local) address, add "[" prefix...
ef416fc2 288 */
289
290 if (ptr < end)
291 *ptr++ = '[';
292 else
293 goto assemble_overflow;
294 }
295
296 /*
297 * Copy the rest of the IPv6 address, and terminate with "]".
298 */
299
300 while (ptr < end && *host)
301 {
302 if (*host == '%')
86c809d9
MS
303 {
304 /*
305 * Convert/encode zone separator
306 */
307
308 if (encoding & HTTP_URI_CODING_RFC6874)
309 {
310 if (ptr >= (end - 2))
311 goto assemble_overflow;
312
313 *ptr++ = '%';
314 *ptr++ = '2';
315 *ptr++ = '5';
316 }
317 else
318 *ptr++ = '+';
319
ef416fc2 320 host ++;
321 }
322 else
323 *ptr++ = *host++;
324 }
325
326 if (*host)
327 goto assemble_overflow;
328
329 if (ptr < end)
330 *ptr++ = ']';
331 else
332 goto assemble_overflow;
333 }
334 else
335 {
336 /*
ff862e50
MS
337 * Otherwise, just copy the host string (the extra chars are not in the
338 * "reg-name" ABNF rule; anything <= SP or >= DEL plus % gets automatically
339 * percent-encoded.
ef416fc2 340 */
ff862e50
MS
341
342 ptr = http_copy_encode(ptr, host, end, "\"#/:<>?@[\\]^`{|}", NULL,
a4d04587 343 encoding & HTTP_URI_CODING_HOSTNAME);
ef416fc2 344
345 if (!ptr)
346 goto assemble_overflow;
347 }
348
349 /*
350 * Finish things off with the port number...
351 */
352
353 if (port > 0)
354 {
07623986 355 snprintf(ptr, (size_t)(end - ptr + 1), ":%d", port);
ef416fc2 356 ptr += strlen(ptr);
357
358 if (ptr >= end)
359 goto assemble_overflow;
360 }
361 }
362
363 /*
364 * Last but not least, add the resource string...
365 */
366
a4d04587 367 if (resource)
ef416fc2 368 {
fa73b229 369 char *query; /* Pointer to query string */
370
371
fa73b229 372 /*
a4d04587 373 * Copy the resource string up to the query string if present...
fa73b229 374 */
375
a4d04587 376 query = strchr(resource, '?');
377 ptr = http_copy_encode(ptr, resource, end, NULL, "?",
378 encoding & HTTP_URI_CODING_RESOURCE);
ef416fc2 379 if (!ptr)
380 goto assemble_overflow;
fa73b229 381
382 if (query)
383 {
384 /*
385 * Copy query string without encoding...
386 */
387
a4d04587 388 ptr = http_copy_encode(ptr, query, end, NULL, NULL,
389 encoding & HTTP_URI_CODING_QUERY);
390 if (!ptr)
391 goto assemble_overflow;
fa73b229 392 }
ef416fc2 393 }
394 else if (ptr < end)
395 *ptr++ = '/';
396 else
397 goto assemble_overflow;
398
399 /*
400 * Nul-terminate the URI buffer and return with no errors...
401 */
402
403 *ptr = '\0';
404
cb7f98ee 405 return (HTTP_URI_STATUS_OK);
ef416fc2 406
407 /*
408 * Clear the URI string and return an overflow error; I don't usually
409 * like goto's, but in this case it makes sense...
410 */
411
412 assemble_overflow:
413
414 *uri = '\0';
cb7f98ee 415 return (HTTP_URI_STATUS_OVERFLOW);
ef416fc2 416}
417
418
a4d04587 419/*
420 * 'httpAssembleURIf()' - Assemble a uniform resource identifier from its
421 * components with a formatted resource.
422 *
423 * This function creates a formatted version of the resource string
ecdc0628 424 * argument "resourcef" and escapes reserved characters in the URI
425 * depending on the value of the "encoding" argument. You should use
426 * this function in place of traditional string functions whenever
427 * you need to create a URI string.
a4d04587 428 *
8072030b 429 * @since CUPS 1.2/macOS 10.5@
a4d04587 430 */
431
432http_uri_status_t /* O - URI status */
433httpAssembleURIf(
434 http_uri_coding_t encoding, /* I - Encoding flags */
435 char *uri, /* I - URI buffer */
436 int urilen, /* I - Size of URI buffer */
437 const char *scheme, /* I - Scheme name */
438 const char *username, /* I - Username */
439 const char *host, /* I - Hostname or address */
440 int port, /* I - Port number */
441 const char *resourcef, /* I - Printf-style resource */
442 ...) /* I - Additional arguments as needed */
443{
444 va_list ap; /* Pointer to additional arguments */
445 char resource[1024]; /* Formatted resource string */
446 int bytes; /* Bytes in formatted string */
447
448
449 /*
450 * Range check input...
451 */
452
453 if (!uri || urilen < 1 || !scheme || port < 0 || !resourcef)
454 {
455 if (uri)
456 *uri = '\0';
457
cb7f98ee 458 return (HTTP_URI_STATUS_BAD_ARGUMENTS);
a4d04587 459 }
460
461 /*
462 * Format the resource string and assemble the URI...
463 */
464
465 va_start(ap, resourcef);
466 bytes = vsnprintf(resource, sizeof(resource), resourcef, ap);
467 va_end(ap);
468
7e86f2f6 469 if ((size_t)bytes >= sizeof(resource))
a4d04587 470 {
471 *uri = '\0';
cb7f98ee 472 return (HTTP_URI_STATUS_OVERFLOW);
a4d04587 473 }
474 else
475 return (httpAssembleURI(encoding, uri, urilen, scheme, username, host,
476 port, resource));
477}
478
479
07ed0e9a 480/*
0fa6c7fa
MS
481 * 'httpAssembleUUID()' - Assemble a name-based UUID URN conforming to RFC 4122.
482 *
483 * This function creates a unique 128-bit identifying number using the server
484 * name, port number, random data, and optionally an object name and/or object
485 * number. The result is formatted as a UUID URN as defined in RFC 4122.
07ed0e9a
MS
486 *
487 * The buffer needs to be at least 46 bytes in size.
6961465f 488 *
8072030b 489 * @since CUPS 1.7/macOS 10.9@
07ed0e9a
MS
490 */
491
492char * /* I - UUID string */
0fa6c7fa
MS
493httpAssembleUUID(const char *server, /* I - Server name */
494 int port, /* I - Port number */
495 const char *name, /* I - Object name or NULL */
496 int number, /* I - Object number or 0 */
497 char *buffer, /* I - String buffer */
498 size_t bufsize) /* I - Size of buffer */
07ed0e9a
MS
499{
500 char data[1024]; /* Source string for MD5 */
07ed0e9a
MS
501 unsigned char md5sum[16]; /* MD5 digest/sum */
502
503
504 /*
505 * Build a version 3 UUID conforming to RFC 4122.
506 *
507 * Start with the MD5 sum of the server, port, object name and
508 * number, and some random data on the end.
509 */
510
511 snprintf(data, sizeof(data), "%s:%d:%s:%d:%04x:%04x", server,
512 port, name ? name : server, number,
f99f3698 513 (unsigned)CUPS_RAND() & 0xffff, (unsigned)CUPS_RAND() & 0xffff);
07ed0e9a 514
7ec11630 515 cupsHashData("md5", (unsigned char *)data, strlen(data), md5sum, sizeof(md5sum));
07ed0e9a
MS
516
517 /*
518 * Generate the UUID from the MD5...
519 */
520
521 snprintf(buffer, bufsize,
522 "urn:uuid:%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-"
523 "%02x%02x%02x%02x%02x%02x",
524 md5sum[0], md5sum[1], md5sum[2], md5sum[3], md5sum[4], md5sum[5],
525 (md5sum[6] & 15) | 0x30, md5sum[7], (md5sum[8] & 0x3f) | 0x40,
526 md5sum[9], md5sum[10], md5sum[11], md5sum[12], md5sum[13],
527 md5sum[14], md5sum[15]);
528
529 return (buffer);
530}
531
532
ef416fc2 533/*
534 * 'httpDecode64()' - Base64-decode a string.
ecdc0628 535 *
536 * This function is deprecated. Use the httpDecode64_2() function instead
537 * which provides buffer length arguments.
538 *
53af7f21 539 * @deprecated@ @exclude all@
ef416fc2 540 */
541
542char * /* O - Decoded string */
543httpDecode64(char *out, /* I - String to write to */
544 const char *in) /* I - String to read from */
545{
546 int outlen; /* Output buffer length */
547
548
549 /*
550 * Use the old maximum buffer size for binary compatibility...
551 */
552
553 outlen = 512;
554
555 return (httpDecode64_2(out, &outlen, in));
556}
557
558
559/*
560 * 'httpDecode64_2()' - Base64-decode a string.
561 *
98d88c8d
MS
562 * The caller must initialize "outlen" to the maximum size of the decoded
563 * string before calling @code httpDecode64_2@. On return "outlen" contains the
564 * decoded length of the string.
565 *
8072030b 566 * @since CUPS 1.1.21/macOS 10.4@
ef416fc2 567 */
568
569char * /* O - Decoded string */
570httpDecode64_2(char *out, /* I - String to write to */
571 int *outlen, /* IO - Size of output string */
572 const char *in) /* I - String to read from */
573{
7e86f2f6
MS
574 int pos; /* Bit position */
575 unsigned base64; /* Value of this character */
576 char *outptr, /* Output pointer */
577 *outend; /* End of output buffer */
ef416fc2 578
579
580 /*
581 * Range check input...
582 */
583
fa73b229 584 if (!out || !outlen || *outlen < 1 || !in)
ef416fc2 585 return (NULL);
586
fa73b229 587 if (!*in)
588 {
589 *out = '\0';
590 *outlen = 0;
591
592 return (out);
593 }
594
ef416fc2 595 /*
596 * Convert from base-64 to bytes...
597 */
598
599 for (outptr = out, outend = out + *outlen - 1, pos = 0; *in != '\0'; in ++)
600 {
601 /*
602 * Decode this character into a number from 0 to 63...
603 */
604
605 if (*in >= 'A' && *in <= 'Z')
7e86f2f6 606 base64 = (unsigned)(*in - 'A');
ef416fc2 607 else if (*in >= 'a' && *in <= 'z')
7e86f2f6 608 base64 = (unsigned)(*in - 'a' + 26);
ef416fc2 609 else if (*in >= '0' && *in <= '9')
7e86f2f6 610 base64 = (unsigned)(*in - '0' + 52);
ef416fc2 611 else if (*in == '+')
612 base64 = 62;
613 else if (*in == '/')
614 base64 = 63;
615 else if (*in == '=')
616 break;
617 else
618 continue;
619
620 /*
621 * Store the result in the appropriate chars...
622 */
623
624 switch (pos)
625 {
626 case 0 :
627 if (outptr < outend)
7e86f2f6 628 *outptr = (char)(base64 << 2);
ef416fc2 629 pos ++;
630 break;
631 case 1 :
632 if (outptr < outend)
7e86f2f6 633 *outptr++ |= (char)((base64 >> 4) & 3);
ef416fc2 634 if (outptr < outend)
7e86f2f6 635 *outptr = (char)((base64 << 4) & 255);
ef416fc2 636 pos ++;
637 break;
638 case 2 :
639 if (outptr < outend)
7e86f2f6 640 *outptr++ |= (char)((base64 >> 2) & 15);
ef416fc2 641 if (outptr < outend)
7e86f2f6 642 *outptr = (char)((base64 << 6) & 255);
ef416fc2 643 pos ++;
644 break;
645 case 3 :
646 if (outptr < outend)
7d5824d6 647 *outptr++ |= (char)base64;
ef416fc2 648 pos = 0;
649 break;
650 }
651 }
652
653 *outptr = '\0';
654
655 /*
656 * Return the decoded string and size...
657 */
658
659 *outlen = (int)(outptr - out);
660
661 return (out);
662}
663
664
665/*
666 * 'httpEncode64()' - Base64-encode a string.
ecdc0628 667 *
668 * This function is deprecated. Use the httpEncode64_2() function instead
669 * which provides buffer length arguments.
670 *
53af7f21 671 * @deprecated@ @exclude all@
ef416fc2 672 */
673
674char * /* O - Encoded string */
675httpEncode64(char *out, /* I - String to write to */
676 const char *in) /* I - String to read from */
677{
b86bc4cf 678 return (httpEncode64_2(out, 512, in, (int)strlen(in)));
ef416fc2 679}
680
681
682/*
683 * 'httpEncode64_2()' - Base64-encode a string.
684 *
8072030b 685 * @since CUPS 1.1.21/macOS 10.4@
ef416fc2 686 */
687
688char * /* O - Encoded string */
689httpEncode64_2(char *out, /* I - String to write to */
98d88c8d 690 int outlen, /* I - Maximum size of output string */
ef416fc2 691 const char *in, /* I - String to read from */
692 int inlen) /* I - Size of input string */
693{
694 char *outptr, /* Output pointer */
695 *outend; /* End of output buffer */
696 static const char base64[] = /* Base64 characters... */
697 {
698 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
699 "abcdefghijklmnopqrstuvwxyz"
700 "0123456789"
701 "+/"
702 };
703
704
705 /*
706 * Range check input...
707 */
708
709 if (!out || outlen < 1 || !in)
710 return (NULL);
711
712 /*
713 * Convert bytes to base-64...
714 */
715
716 for (outptr = out, outend = out + outlen - 1; inlen > 0; in ++, inlen --)
717 {
718 /*
719 * Encode the up to 3 characters as 4 Base64 numbers...
720 */
721
722 if (outptr < outend)
723 *outptr ++ = base64[(in[0] & 255) >> 2];
26d47ec6 724
ef416fc2 725 if (outptr < outend)
26d47ec6 726 {
727 if (inlen > 1)
728 *outptr ++ = base64[(((in[0] & 255) << 4) | ((in[1] & 255) >> 4)) & 63];
729 else
730 *outptr ++ = base64[((in[0] & 255) << 4) & 63];
731 }
ef416fc2 732
733 in ++;
734 inlen --;
735 if (inlen <= 0)
736 {
737 if (outptr < outend)
738 *outptr ++ = '=';
739 if (outptr < outend)
740 *outptr ++ = '=';
741 break;
742 }
743
744 if (outptr < outend)
26d47ec6 745 {
746 if (inlen > 1)
747 *outptr ++ = base64[(((in[0] & 255) << 2) | ((in[1] & 255) >> 6)) & 63];
748 else
749 *outptr ++ = base64[((in[0] & 255) << 2) & 63];
750 }
ef416fc2 751
752 in ++;
753 inlen --;
754 if (inlen <= 0)
755 {
756 if (outptr < outend)
757 *outptr ++ = '=';
758 break;
759 }
760
761 if (outptr < outend)
762 *outptr ++ = base64[in[0] & 63];
763 }
764
765 *outptr = '\0';
766
767 /*
768 * Return the encoded string...
769 */
770
771 return (out);
772}
773
774
775/*
776 * 'httpGetDateString()' - Get a formatted date/time string from a time value.
777 *
53af7f21 778 * @deprecated@ @exclude all@
ef416fc2 779 */
780
781const char * /* O - Date/time string */
98d88c8d 782httpGetDateString(time_t t) /* I - Time in seconds */
ef416fc2 783{
784 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */
785
786
787 return (httpGetDateString2(t, cg->http_date, sizeof(cg->http_date)));
788}
789
790
791/*
792 * 'httpGetDateString2()' - Get a formatted date/time string from a time value.
793 *
8072030b 794 * @since CUPS 1.2/macOS 10.5@
ef416fc2 795 */
796
797const char * /* O - Date/time string */
98d88c8d 798httpGetDateString2(time_t t, /* I - Time in seconds */
ef416fc2 799 char *s, /* I - String buffer */
800 int slen) /* I - Size of string buffer */
801{
802 struct tm *tdate; /* UNIX date/time data */
803
804
805 tdate = gmtime(&t);
3e7fe0ca 806 if (tdate)
07623986 807 snprintf(s, (size_t)slen, "%s, %02d %s %d %02d:%02d:%02d GMT", http_days[tdate->tm_wday], tdate->tm_mday, http_months[tdate->tm_mon], tdate->tm_year + 1900, tdate->tm_hour, tdate->tm_min, tdate->tm_sec);
3e7fe0ca
MS
808 else
809 s[0] = '\0';
ef416fc2 810
811 return (s);
812}
813
814
815/*
816 * 'httpGetDateTime()' - Get a time value from a formatted date/time string.
817 */
818
98d88c8d 819time_t /* O - Time in seconds */
ef416fc2 820httpGetDateTime(const char *s) /* I - Date/time string */
821{
822 int i; /* Looping var */
823 char mon[16]; /* Abbreviated month name */
824 int day, year; /* Day of month and year */
825 int hour, min, sec; /* Time */
826 int days; /* Number of days since 1970 */
827 static const int normal_days[] = /* Days to a month, normal years */
828 { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 };
829 static const int leap_days[] = /* Days to a month, leap years */
830 { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 };
831
832
e07d4801 833 DEBUG_printf(("2httpGetDateTime(s=\"%s\")", s));
ef416fc2 834
835 /*
836 * Extract the date and time from the formatted string...
837 */
838
839 if (sscanf(s, "%*s%d%15s%d%d:%d:%d", &day, mon, &year, &hour, &min, &sec) < 6)
840 return (0);
841
e07d4801
MS
842 DEBUG_printf(("4httpGetDateTime: day=%d, mon=\"%s\", year=%d, hour=%d, "
843 "min=%d, sec=%d", day, mon, year, hour, min, sec));
ef416fc2 844
845 /*
846 * Convert the month name to a number from 0 to 11.
847 */
848
849 for (i = 0; i < 12; i ++)
88f9aafc 850 if (!_cups_strcasecmp(mon, http_months[i]))
ef416fc2 851 break;
852
853 if (i >= 12)
854 return (0);
855
e07d4801 856 DEBUG_printf(("4httpGetDateTime: i=%d", i));
ef416fc2 857
858 /*
859 * Now convert the date and time to a UNIX time value in seconds since
860 * 1970. We can't use mktime() since the timezone may not be UTC but
861 * the date/time string *is* UTC.
862 */
863
864 if ((year & 3) == 0 && ((year % 100) != 0 || (year % 400) == 0))
865 days = leap_days[i] + day - 1;
866 else
867 days = normal_days[i] + day - 1;
868
e07d4801 869 DEBUG_printf(("4httpGetDateTime: days=%d", days));
ef416fc2 870
871 days += (year - 1970) * 365 + /* 365 days per year (normally) */
872 ((year - 1) / 4 - 492) - /* + leap days */
873 ((year - 1) / 100 - 19) + /* - 100 year days */
874 ((year - 1) / 400 - 4); /* + 400 year days */
875
e07d4801 876 DEBUG_printf(("4httpGetDateTime: days=%d\n", days));
ef416fc2 877
878 return (days * 86400 + hour * 3600 + min * 60 + sec);
879}
880
881
882/*
883 * 'httpSeparate()' - Separate a Universal Resource Identifier into its
884 * components.
ecdc0628 885 *
886 * This function is deprecated; use the httpSeparateURI() function instead.
887 *
53af7f21 888 * @deprecated@ @exclude all@
ef416fc2 889 */
890
891void
892httpSeparate(const char *uri, /* I - Universal Resource Identifier */
893 char *scheme, /* O - Scheme [32] (http, https, etc.) */
894 char *username, /* O - Username [1024] */
895 char *host, /* O - Hostname [1024] */
896 int *port, /* O - Port number to use */
897 char *resource) /* O - Resource/filename [1024] */
898{
a4d04587 899 httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme, 32, username,
900 HTTP_MAX_URI, host, HTTP_MAX_URI, port, resource,
901 HTTP_MAX_URI);
ef416fc2 902}
903
904
905/*
906 * 'httpSeparate2()' - Separate a Universal Resource Identifier into its
907 * components.
908 *
ecdc0628 909 * This function is deprecated; use the httpSeparateURI() function instead.
910 *
8072030b 911 * @since CUPS 1.1.21/macOS 10.4@
53af7f21 912 * @deprecated@ @exclude all@
ef416fc2 913 */
914
915void
916httpSeparate2(const char *uri, /* I - Universal Resource Identifier */
917 char *scheme, /* O - Scheme (http, https, etc.) */
918 int schemelen, /* I - Size of scheme buffer */
919 char *username, /* O - Username */
920 int usernamelen, /* I - Size of username buffer */
921 char *host, /* O - Hostname */
922 int hostlen, /* I - Size of hostname buffer */
923 int *port, /* O - Port number to use */
924 char *resource, /* O - Resource/filename */
925 int resourcelen) /* I - Size of resource buffer */
926{
a4d04587 927 httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme, schemelen, username,
928 usernamelen, host, hostlen, port, resource, resourcelen);
ef416fc2 929}
930
931
932/*
933 * 'httpSeparateURI()' - Separate a Universal Resource Identifier into its
934 * components.
935 *
8072030b 936 * @since CUPS 1.2/macOS 10.5@
ef416fc2 937 */
938
939http_uri_status_t /* O - Result of separation */
a4d04587 940httpSeparateURI(
941 http_uri_coding_t decoding, /* I - Decoding flags */
942 const char *uri, /* I - Universal Resource Identifier */
943 char *scheme, /* O - Scheme (http, https, etc.) */
944 int schemelen, /* I - Size of scheme buffer */
945 char *username, /* O - Username */
946 int usernamelen, /* I - Size of username buffer */
947 char *host, /* O - Hostname */
948 int hostlen, /* I - Size of hostname buffer */
949 int *port, /* O - Port number to use */
950 char *resource, /* O - Resource/filename */
951 int resourcelen) /* I - Size of resource buffer */
ef416fc2 952{
953 char *ptr, /* Pointer into string... */
954 *end; /* End of string */
955 const char *sep; /* Separator character */
956 http_uri_status_t status; /* Result of separation */
957
958
959 /*
960 * Initialize everything to blank...
961 */
962
963 if (scheme && schemelen > 0)
964 *scheme = '\0';
965
966 if (username && usernamelen > 0)
967 *username = '\0';
968
969 if (host && hostlen > 0)
970 *host = '\0';
971
972 if (port)
973 *port = 0;
974
975 if (resource && resourcelen > 0)
976 *resource = '\0';
977
978 /*
979 * Range check input...
980 */
981
982 if (!uri || !port || !scheme || schemelen <= 0 || !username ||
983 usernamelen <= 0 || !host || hostlen <= 0 || !resource ||
984 resourcelen <= 0)
cb7f98ee 985 return (HTTP_URI_STATUS_BAD_ARGUMENTS);
ef416fc2 986
987 if (!*uri)
cb7f98ee 988 return (HTTP_URI_STATUS_BAD_URI);
ef416fc2 989
990 /*
991 * Grab the scheme portion of the URI...
992 */
993
cb7f98ee 994 status = HTTP_URI_STATUS_OK;
ef416fc2 995
996 if (!strncmp(uri, "//", 2))
997 {
998 /*
999 * Workaround for HP IPP client bug...
1000 */
1001
07623986 1002 strlcpy(scheme, "ipp", (size_t)schemelen);
cb7f98ee 1003 status = HTTP_URI_STATUS_MISSING_SCHEME;
ef416fc2 1004 }
1005 else if (*uri == '/')
1006 {
1007 /*
1008 * Filename...
1009 */
1010
07623986 1011 strlcpy(scheme, "file", (size_t)schemelen);
cb7f98ee 1012 status = HTTP_URI_STATUS_MISSING_SCHEME;
ef416fc2 1013 }
1014 else
1015 {
1016 /*
1017 * Standard URI with scheme...
1018 */
1019
1020 for (ptr = scheme, end = scheme + schemelen - 1;
1021 *uri && *uri != ':' && ptr < end;)
7cf5915e
MS
1022 if (strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1023 "abcdefghijklmnopqrstuvwxyz"
1024 "0123456789-+.", *uri) != NULL)
ef416fc2 1025 *ptr++ = *uri++;
1026 else
1027 break;
1028
1029 *ptr = '\0';
1030
fdaf028e 1031 if (*uri != ':' || *scheme == '.' || !*scheme)
ef416fc2 1032 {
1033 *scheme = '\0';
cb7f98ee 1034 return (HTTP_URI_STATUS_BAD_SCHEME);
ef416fc2 1035 }
1036
1037 uri ++;
1038 }
1039
1040 /*
1041 * Set the default port number...
1042 */
1043
1044 if (!strcmp(scheme, "http"))
1045 *port = 80;
1046 else if (!strcmp(scheme, "https"))
1047 *port = 443;
7cf5915e 1048 else if (!strcmp(scheme, "ipp") || !strcmp(scheme, "ipps"))
ef416fc2 1049 *port = 631;
88f9aafc 1050 else if (!_cups_strcasecmp(scheme, "lpd"))
ef416fc2 1051 *port = 515;
1052 else if (!strcmp(scheme, "socket")) /* Not yet registered with IANA... */
1053 *port = 9100;
f4047845 1054 else if (strcmp(scheme, "file") && strcmp(scheme, "mailto") && strcmp(scheme, "tel"))
cb7f98ee 1055 status = HTTP_URI_STATUS_UNKNOWN_SCHEME;
ef416fc2 1056
1057 /*
1058 * Now see if we have a hostname...
1059 */
1060
1061 if (!strncmp(uri, "//", 2))
1062 {
1063 /*
1064 * Yes, extract it...
1065 */
1066
1067 uri += 2;
1068
1069 /*
1070 * Grab the username, if any...
1071 */
1072
1073 if ((sep = strpbrk(uri, "@/")) != NULL && *sep == '@')
1074 {
1075 /*
1076 * Get a username:password combo...
1077 */
1078
a4d04587 1079 uri = http_copy_decode(username, uri, usernamelen, "@",
1080 decoding & HTTP_URI_CODING_USERNAME);
ef416fc2 1081
1082 if (!uri)
1083 {
1084 *username = '\0';
cb7f98ee 1085 return (HTTP_URI_STATUS_BAD_USERNAME);
ef416fc2 1086 }
1087
1088 uri ++;
1089 }
1090
1091 /*
1092 * Then the hostname/IP address...
1093 */
1094
1095 if (*uri == '[')
1096 {
1097 /*
1098 * Grab IPv6 address...
1099 */
1100
1101 uri ++;
86c809d9
MS
1102 if (*uri == 'v')
1103 {
1104 /*
1105 * Skip IPvFuture ("vXXXX.") prefix...
1106 */
1107
1108 uri ++;
1109
1110 while (isxdigit(*uri & 255))
1111 uri ++;
1112
1113 if (*uri != '.')
1114 {
1115 *host = '\0';
1116 return (HTTP_URI_STATUS_BAD_HOSTNAME);
1117 }
1118
1119 uri ++;
1120 }
ef416fc2 1121
a4d04587 1122 uri = http_copy_decode(host, uri, hostlen, "]",
1123 decoding & HTTP_URI_CODING_HOSTNAME);
ef416fc2 1124
1125 if (!uri)
1126 {
1127 *host = '\0';
cb7f98ee 1128 return (HTTP_URI_STATUS_BAD_HOSTNAME);
ef416fc2 1129 }
1130
1131 /*
1132 * Validate value...
1133 */
1134
1135 if (*uri != ']')
1136 {
1137 *host = '\0';
cb7f98ee 1138 return (HTTP_URI_STATUS_BAD_HOSTNAME);
ef416fc2 1139 }
1140
1141 uri ++;
1142
1143 for (ptr = host; *ptr; ptr ++)
1144 if (*ptr == '+')
1145 {
1146 /*
1147 * Convert zone separator to % and stop here...
1148 */
1149
1150 *ptr = '%';
1151 break;
1152 }
86c809d9
MS
1153 else if (*ptr == '%')
1154 {
1155 /*
1156 * Stop at zone separator (RFC 6874)
1157 */
1158
1159 break;
1160 }
ef416fc2 1161 else if (*ptr != ':' && *ptr != '.' && !isxdigit(*ptr & 255))
1162 {
1163 *host = '\0';
cb7f98ee 1164 return (HTTP_URI_STATUS_BAD_HOSTNAME);
ef416fc2 1165 }
1166 }
1167 else
1168 {
1169 /*
b423cd4c 1170 * Validate the hostname or IPv4 address first...
1171 */
1172
1173 for (ptr = (char *)uri; *ptr; ptr ++)
1174 if (strchr(":?/", *ptr))
1175 break;
ff862e50
MS
1176 else if (!strchr("abcdefghijklmnopqrstuvwxyz" /* unreserved */
1177 "ABCDEFGHIJKLMNOPQRSTUVWXYZ" /* unreserved */
1178 "0123456789" /* unreserved */
1179 "-._~" /* unreserved */
1180 "%" /* pct-encoded */
1181 "!$&'()*+,;=" /* sub-delims */
1182 "\\", *ptr)) /* SMB domain */
b423cd4c 1183 {
1184 *host = '\0';
cb7f98ee 1185 return (HTTP_URI_STATUS_BAD_HOSTNAME);
b423cd4c 1186 }
1187
1188 /*
1189 * Then copy the hostname or IPv4 address to the buffer...
ef416fc2 1190 */
1191
a4d04587 1192 uri = http_copy_decode(host, uri, hostlen, ":?/",
1193 decoding & HTTP_URI_CODING_HOSTNAME);
ef416fc2 1194
1195 if (!uri)
1196 {
1197 *host = '\0';
cb7f98ee 1198 return (HTTP_URI_STATUS_BAD_HOSTNAME);
ef416fc2 1199 }
ef416fc2 1200 }
1201
1202 /*
1203 * Validate hostname for file scheme - only empty and localhost are
1204 * acceptable.
1205 */
1206
1207 if (!strcmp(scheme, "file") && strcmp(host, "localhost") && host[0])
1208 {
1209 *host = '\0';
cb7f98ee 1210 return (HTTP_URI_STATUS_BAD_HOSTNAME);
ef416fc2 1211 }
1212
1213 /*
1214 * See if we have a port number...
1215 */
1216
1217 if (*uri == ':')
1218 {
1219 /*
1220 * Yes, collect the port number...
1221 */
1222
dfd5680b
MS
1223 if (!isdigit(uri[1] & 255))
1224 {
1225 *port = 0;
cb7f98ee 1226 return (HTTP_URI_STATUS_BAD_PORT);
dfd5680b
MS
1227 }
1228
7e86f2f6 1229 *port = (int)strtol(uri + 1, (char **)&uri, 10);
ef416fc2 1230
044af446
MS
1231 if (*port <= 0 || *port > 65535)
1232 {
1233 *port = 0;
1234 return (HTTP_URI_STATUS_BAD_PORT);
1235 }
1236
d6ae789d 1237 if (*uri != '/' && *uri)
ef416fc2 1238 {
1239 *port = 0;
cb7f98ee 1240 return (HTTP_URI_STATUS_BAD_PORT);
ef416fc2 1241 }
1242 }
1243 }
1244
1245 /*
1246 * The remaining portion is the resource string...
1247 */
1248
1249 if (*uri == '?' || !*uri)
1250 {
1251 /*
1252 * Hostname but no path...
1253 */
1254
cb7f98ee 1255 status = HTTP_URI_STATUS_MISSING_RESOURCE;
ef416fc2 1256 *resource = '/';
fa73b229 1257
1258 /*
a4d04587 1259 * Copy any query string...
fa73b229 1260 */
1261
1262 if (*uri == '?')
a4d04587 1263 uri = http_copy_decode(resource + 1, uri, resourcelen - 1, NULL,
1264 decoding & HTTP_URI_CODING_QUERY);
fa73b229 1265 else
1266 resource[1] = '\0';
ef416fc2 1267 }
1268 else
fa73b229 1269 {
a4d04587 1270 uri = http_copy_decode(resource, uri, resourcelen, "?",
1271 decoding & HTTP_URI_CODING_RESOURCE);
fa73b229 1272
1273 if (uri && *uri == '?')
1274 {
1275 /*
a4d04587 1276 * Concatenate any query string...
fa73b229 1277 */
1278
a4d04587 1279 char *resptr = resource + strlen(resource);
1280
ff862e50
MS
1281 uri = http_copy_decode(resptr, uri,
1282 resourcelen - (int)(resptr - resource), NULL,
1283 decoding & HTTP_URI_CODING_QUERY);
fa73b229 1284 }
1285 }
ef416fc2 1286
1287 if (!uri)
1288 {
1289 *resource = '\0';
cb7f98ee 1290 return (HTTP_URI_STATUS_BAD_RESOURCE);
ef416fc2 1291 }
1292
1293 /*
1294 * Return the URI separation status...
1295 */
1296
1297 return (status);
1298}
1299
1300
5737d5eb
MS
1301/*
1302 * '_httpSetDigestAuthString()' - Calculate a Digest authentication response
1303 * using the appropriate RFC 2068/2617/7616
1304 * algorithm.
1305 */
1306
1307int /* O - 1 on success, 0 on failure */
1308_httpSetDigestAuthString(
1309 http_t *http, /* I - HTTP connection */
1310 const char *nonce, /* I - Nonce value */
1311 const char *method, /* I - HTTP method */
1312 const char *resource) /* I - HTTP resource path */
1313{
1314 char kd[65], /* Final MD5/SHA-256 digest */
1315 ha1[65], /* Hash of username:realm:password */
1316 ha2[65], /* Hash of method:request-uri */
1317 username[HTTP_MAX_VALUE],
1318 /* username:password */
1319 *password, /* Pointer to password */
1320 temp[1024], /* Temporary string */
1321 digest[1024]; /* Digest auth data */
1322 unsigned char hash[32]; /* Hash buffer */
1323 size_t hashsize; /* Size of hash */
1324
1325
0b353e63 1326 DEBUG_printf(("2_httpSetDigestAuthString(http=%p, nonce=\"%s\", method=\"%s\", resource=\"%s\")", (void *)http, nonce, method, resource));
5737d5eb
MS
1327
1328 if (nonce && *nonce && strcmp(nonce, http->nonce))
1329 {
1330 strlcpy(http->nonce, nonce, sizeof(http->nonce));
1331
1332 if (nonce == http->nextnonce)
1333 http->nextnonce[0] = '\0';
1334
1335 http->nonce_count = 1;
1336 }
1337 else
1338 http->nonce_count ++;
1339
1340 strlcpy(username, http->userpass, sizeof(username));
1341 if ((password = strchr(username, ':')) != NULL)
1342 *password++ = '\0';
1343 else
1344 return (0);
1345
1346 if (http->algorithm[0])
1347 {
1348 /*
1349 * Follow RFC 2617/7616...
1350 */
1351
1352 int i; /* Looping var */
1353 char cnonce[65]; /* cnonce value */
1354 const char *hashalg; /* Hashing algorithm */
1355
1356 for (i = 0; i < 64; i ++)
1357 cnonce[i] = "0123456789ABCDEF"[CUPS_RAND() & 15];
1358 cnonce[64] = '\0';
1359
1360 if (!_cups_strcasecmp(http->algorithm, "MD5"))
1361 {
1362 /*
1363 * RFC 2617 Digest with MD5
1364 */
1365
1366 hashalg = "md5";
1367 }
1368 else if (!_cups_strcasecmp(http->algorithm, "SHA-256"))
1369 {
1370 /*
1371 * RFC 7616 Digest with SHA-256
1372 */
1373
1374 hashalg = "sha2-256";
1375 }
1376 else
1377 {
1378 /*
1379 * Some other algorithm we don't support, skip this one...
1380 */
1381
1382 return (0);
1383 }
1384
1385 /*
1386 * Calculate digest value...
1387 */
1388
1389 /* H(A1) = H(username:realm:password) */
1390 snprintf(temp, sizeof(temp), "%s:%s:%s", username, http->realm, password);
1391 hashsize = (size_t)cupsHashData(hashalg, (unsigned char *)temp, strlen(temp), hash, sizeof(hash));
1392 cupsHashString(hash, hashsize, ha1, sizeof(ha1));
1393
1394 /* H(A2) = H(method:uri) */
1395 snprintf(temp, sizeof(temp), "%s:%s", method, resource);
1396 hashsize = (size_t)cupsHashData(hashalg, (unsigned char *)temp, strlen(temp), hash, sizeof(hash));
1397 cupsHashString(hash, hashsize, ha2, sizeof(ha2));
1398
1399 /* KD = H(H(A1):nonce:nc:cnonce:qop:H(A2)) */
1400 snprintf(temp, sizeof(temp), "%s:%s:%08x:%s:%s:%s", ha1, http->nonce, http->nonce_count, cnonce, "auth", ha2);
1401 hashsize = (size_t)cupsHashData(hashalg, (unsigned char *)temp, strlen(temp), hash, sizeof(hash));
1402 cupsHashString(hash, hashsize, kd, sizeof(kd));
1403
1404 /*
1405 * Pass the RFC 2617/7616 WWW-Authenticate header...
1406 */
1407
1408 if (http->opaque[0])
1409 snprintf(digest, sizeof(digest), "username=\"%s\", realm=\"%s\", nonce=\"%s\", algorithm=%s, qop=auth, opaque=\"%s\", cnonce=\"%s\", nc=%08x, uri=\"%s\", response=\"%s\"", cupsUser(), http->realm, http->nonce, http->algorithm, http->opaque, cnonce, http->nonce_count, resource, kd);
1410 else
1411 snprintf(digest, sizeof(digest), "username=\"%s\", realm=\"%s\", nonce=\"%s\", algorithm=%s, qop=auth, cnonce=\"%s\", nc=%08x, uri=\"%s\", response=\"%s\"", username, http->realm, http->nonce, http->algorithm, cnonce, http->nonce_count, resource, kd);
1412 }
1413 else
1414 {
1415 /*
1416 * Use old RFC 2069 Digest method...
1417 */
1418
1419 /* H(A1) = H(username:realm:password) */
1420 snprintf(temp, sizeof(temp), "%s:%s:%s", username, http->realm, password);
1421 hashsize = (size_t)cupsHashData("md5", (unsigned char *)temp, strlen(temp), hash, sizeof(hash));
1422 cupsHashString(hash, hashsize, ha1, sizeof(ha1));
1423
1424 /* H(A2) = H(method:uri) */
1425 snprintf(temp, sizeof(temp), "%s:%s", method, resource);
1426 hashsize = (size_t)cupsHashData("md5", (unsigned char *)temp, strlen(temp), hash, sizeof(hash));
1427 cupsHashString(hash, hashsize, ha2, sizeof(ha2));
1428
1429 /* KD = H(H(A1):nonce:H(A2)) */
1430 snprintf(temp, sizeof(temp), "%s:%s:%s", ha1, http->nonce, ha2);
1431 hashsize = (size_t)cupsHashData("md5", (unsigned char *)temp, strlen(temp), hash, sizeof(hash));
1432 cupsHashString(hash, hashsize, kd, sizeof(kd));
1433
1434 /*
1435 * Pass the old RFC 2069 WWW-Authenticate header...
1436 */
1437
1438 snprintf(digest, sizeof(digest), "username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"", username, http->realm, http->nonce, resource, kd);
1439 }
1440
1441 httpSetAuthString(http, "Digest", digest);
1442
1443 return (1);
1444}
1445
1446
5ec1fd3d
MS
1447/*
1448 * 'httpStateString()' - Return the string describing a HTTP state value.
1449 *
e1f19878 1450 * @since CUPS 2.0/OS 10.10@
5ec1fd3d
MS
1451 */
1452
1453const char * /* O - State string */
1454httpStateString(http_state_t state) /* I - HTTP state value */
1455{
1456 if (state < HTTP_STATE_ERROR || state > HTTP_STATE_UNKNOWN_VERSION)
1457 return ("HTTP_STATE_???");
1458 else
1459 return (http_states[state - HTTP_STATE_ERROR]);
1460}
1461
1462
ef416fc2 1463/*
41e6c1f1 1464 * '_httpStatus()' - Return the localized string describing a HTTP status code.
9f5eb9be 1465 *
41e6c1f1 1466 * The returned string is localized using the passed message catalog.
ef416fc2 1467 */
1468
9f5eb9be 1469const char * /* O - Localized status string */
41e6c1f1
MS
1470_httpStatus(cups_lang_t *lang, /* I - Language */
1471 http_status_t status) /* I - HTTP status code */
ef416fc2 1472{
9f5eb9be 1473 const char *s; /* Status string */
9f5eb9be 1474
9f5eb9be 1475
ef416fc2 1476 switch (status)
1477 {
b63a0d90
MS
1478 case HTTP_STATUS_ERROR :
1479 s = strerror(errno);
1480 break;
cb7f98ee 1481 case HTTP_STATUS_CONTINUE :
9f5eb9be
MS
1482 s = _("Continue");
1483 break;
cb7f98ee 1484 case HTTP_STATUS_SWITCHING_PROTOCOLS :
9f5eb9be
MS
1485 s = _("Switching Protocols");
1486 break;
cb7f98ee 1487 case HTTP_STATUS_OK :
9f5eb9be
MS
1488 s = _("OK");
1489 break;
cb7f98ee 1490 case HTTP_STATUS_CREATED :
9f5eb9be
MS
1491 s = _("Created");
1492 break;
cb7f98ee 1493 case HTTP_STATUS_ACCEPTED :
9f5eb9be
MS
1494 s = _("Accepted");
1495 break;
cb7f98ee 1496 case HTTP_STATUS_NO_CONTENT :
9f5eb9be
MS
1497 s = _("No Content");
1498 break;
cb7f98ee 1499 case HTTP_STATUS_MOVED_PERMANENTLY :
9f5eb9be
MS
1500 s = _("Moved Permanently");
1501 break;
034b06df
MS
1502 case HTTP_STATUS_FOUND :
1503 s = _("Found");
aa030912 1504 break;
cb7f98ee 1505 case HTTP_STATUS_SEE_OTHER :
9f5eb9be
MS
1506 s = _("See Other");
1507 break;
cb7f98ee 1508 case HTTP_STATUS_NOT_MODIFIED :
9f5eb9be
MS
1509 s = _("Not Modified");
1510 break;
cb7f98ee 1511 case HTTP_STATUS_BAD_REQUEST :
9f5eb9be
MS
1512 s = _("Bad Request");
1513 break;
cb7f98ee
MS
1514 case HTTP_STATUS_UNAUTHORIZED :
1515 case HTTP_STATUS_CUPS_AUTHORIZATION_CANCELED :
9f5eb9be
MS
1516 s = _("Unauthorized");
1517 break;
cb7f98ee 1518 case HTTP_STATUS_FORBIDDEN :
9f5eb9be
MS
1519 s = _("Forbidden");
1520 break;
cb7f98ee 1521 case HTTP_STATUS_NOT_FOUND :
9f5eb9be
MS
1522 s = _("Not Found");
1523 break;
cb7f98ee 1524 case HTTP_STATUS_REQUEST_TOO_LARGE :
9f5eb9be
MS
1525 s = _("Request Entity Too Large");
1526 break;
cb7f98ee 1527 case HTTP_STATUS_URI_TOO_LONG :
9f5eb9be
MS
1528 s = _("URI Too Long");
1529 break;
cb7f98ee 1530 case HTTP_STATUS_UPGRADE_REQUIRED :
9f5eb9be
MS
1531 s = _("Upgrade Required");
1532 break;
cb7f98ee 1533 case HTTP_STATUS_NOT_IMPLEMENTED :
9f5eb9be
MS
1534 s = _("Not Implemented");
1535 break;
cb7f98ee 1536 case HTTP_STATUS_NOT_SUPPORTED :
9f5eb9be
MS
1537 s = _("Not Supported");
1538 break;
cb7f98ee 1539 case HTTP_STATUS_EXPECTATION_FAILED :
9f5eb9be
MS
1540 s = _("Expectation Failed");
1541 break;
cb7f98ee 1542 case HTTP_STATUS_SERVICE_UNAVAILABLE :
9f5eb9be
MS
1543 s = _("Service Unavailable");
1544 break;
cb7f98ee 1545 case HTTP_STATUS_SERVER_ERROR :
94da7e34
MS
1546 s = _("Internal Server Error");
1547 break;
cb7f98ee 1548 case HTTP_STATUS_CUPS_PKI_ERROR :
7cf5915e
MS
1549 s = _("SSL/TLS Negotiation Error");
1550 break;
cb7f98ee 1551 case HTTP_STATUS_CUPS_WEBIF_DISABLED :
229681c1
MS
1552 s = _("Web Interface is Disabled");
1553 break;
b423cd4c 1554
ef416fc2 1555 default :
9f5eb9be
MS
1556 s = _("Unknown");
1557 break;
ef416fc2 1558 }
9f5eb9be 1559
41e6c1f1
MS
1560 return (_cupsLangString(lang, s));
1561}
1562
1563
1564/*
1565 * 'httpStatus()' - Return a short string describing a HTTP status code.
1566 *
1567 * The returned string is localized to the current POSIX locale and is based
98d88c8d 1568 * on the status strings defined in RFC 7231.
41e6c1f1
MS
1569 */
1570
1571const char * /* O - Localized status string */
1572httpStatus(http_status_t status) /* I - HTTP status code */
1573{
1574 _cups_globals_t *cg = _cupsGlobals(); /* Global data */
1575
1576
1577 if (!cg->lang_default)
1578 cg->lang_default = cupsLangDefault();
1579
1580 return (_httpStatus(cg->lang_default, status));
ef416fc2 1581}
1582
7e86f2f6
MS
1583/*
1584 * 'httpURIStatusString()' - Return a string describing a URI status code.
1585 *
e1f19878 1586 * @since CUPS 2.0/OS 10.10@
7e86f2f6
MS
1587 */
1588
1589const char * /* O - Localized status string */
1590httpURIStatusString(
1591 http_uri_status_t status) /* I - URI status code */
1592{
1593 const char *s; /* Status string */
1594 _cups_globals_t *cg = _cupsGlobals(); /* Global data */
1595
1596
1597 if (!cg->lang_default)
1598 cg->lang_default = cupsLangDefault();
1599
1600 switch (status)
1601 {
1602 case HTTP_URI_STATUS_OVERFLOW :
1603 s = _("URI too large");
1604 break;
1605 case HTTP_URI_STATUS_BAD_ARGUMENTS :
1606 s = _("Bad arguments to function");
1607 break;
1608 case HTTP_URI_STATUS_BAD_RESOURCE :
1609 s = _("Bad resource in URI");
1610 break;
1611 case HTTP_URI_STATUS_BAD_PORT :
1612 s = _("Bad port number in URI");
1613 break;
1614 case HTTP_URI_STATUS_BAD_HOSTNAME :
1615 s = _("Bad hostname/address in URI");
1616 break;
1617 case HTTP_URI_STATUS_BAD_USERNAME :
1618 s = _("Bad username in URI");
1619 break;
1620 case HTTP_URI_STATUS_BAD_SCHEME :
1621 s = _("Bad scheme in URI");
1622 break;
1623 case HTTP_URI_STATUS_BAD_URI :
1624 s = _("Bad/empty URI");
1625 break;
1626 case HTTP_URI_STATUS_OK :
1627 s = _("OK");
1628 break;
1629 case HTTP_URI_STATUS_MISSING_SCHEME :
1630 s = _("Missing scheme in URI");
1631 break;
1632 case HTTP_URI_STATUS_UNKNOWN_SCHEME :
1633 s = _("Unknown scheme in URI");
1634 break;
1635 case HTTP_URI_STATUS_MISSING_RESOURCE :
1636 s = _("Missing resource in URI");
1637 break;
1638
1639 default:
1640 s = _("Unknown");
1641 break;
1642 }
1643
1644 return (_cupsLangString(cg->lang_default, s));
1645}
1646
ef416fc2 1647
1648#ifndef HAVE_HSTRERROR
1649/*
eac3a0a0 1650 * '_cups_hstrerror()' - hstrerror() emulation function for Solaris and others.
ef416fc2 1651 */
1652
1653const char * /* O - Error string */
1654_cups_hstrerror(int error) /* I - Error number */
1655{
1656 static const char * const errors[] = /* Error strings */
1657 {
1658 "OK",
1659 "Host not found.",
1660 "Try again.",
1661 "Unrecoverable lookup error.",
1662 "No data associated with name."
1663 };
1664
1665
1666 if (error < 0 || error > 4)
1667 return ("Unknown hostname lookup error.");
1668 else
1669 return (errors[error]);
1670}
1671#endif /* !HAVE_HSTRERROR */
1672
1673
1106b00e
MS
1674/*
1675 * '_httpDecodeURI()' - Percent-decode a HTTP request URI.
1676 */
1677
1678char * /* O - Decoded URI or NULL on error */
1679_httpDecodeURI(char *dst, /* I - Destination buffer */
1680 const char *src, /* I - Source URI */
1681 size_t dstsize) /* I - Size of destination buffer */
1682{
1683 if (http_copy_decode(dst, src, (int)dstsize, NULL, 1))
1684 return (dst);
1685 else
1686 return (NULL);
1687}
1688
1689
839a51c8
MS
1690/*
1691 * '_httpEncodeURI()' - Percent-encode a HTTP request URI.
1692 */
1693
1694char * /* O - Encoded URI */
1695_httpEncodeURI(char *dst, /* I - Destination buffer */
1696 const char *src, /* I - Source URI */
1697 size_t dstsize) /* I - Size of destination buffer */
1698{
1699 http_copy_encode(dst, src, dst + dstsize - 1, NULL, NULL, 1);
1700 return (dst);
1701}
1702
1703
5eb9da71
MS
1704/*
1705 * '_httpResolveURI()' - Resolve a DNS-SD URI.
1706 */
1707
1708const char * /* O - Resolved URI */
1709_httpResolveURI(
1710 const char *uri, /* I - DNS-SD URI */
1711 char *resolved_uri, /* I - Buffer for resolved URI */
1f0275e3 1712 size_t resolved_size, /* I - Size of URI buffer */
eac3a0a0 1713 int options, /* I - Resolve options */
07ed0e9a
MS
1714 int (*cb)(void *context), /* I - Continue callback function */
1715 void *context) /* I - Context pointer for callback */
5eb9da71
MS
1716{
1717 char scheme[32], /* URI components... */
1718 userpass[256],
1719 hostname[1024],
1720 resource[1024];
1721 int port;
b19ccc9e 1722#ifdef DEBUG
1f0275e3 1723 http_uri_status_t status; /* URI decode status */
b19ccc9e 1724#endif /* DEBUG */
5eb9da71
MS
1725
1726
807315e6 1727 DEBUG_printf(("_httpResolveURI(uri=\"%s\", resolved_uri=%p, resolved_size=" CUPS_LLFMT ", options=0x%x, cb=%p, context=%p)", uri, (void *)resolved_uri, CUPS_LLCAST resolved_size, options, (void *)cb, context));
1f0275e3 1728
5eb9da71
MS
1729 /*
1730 * Get the device URI...
1731 */
1732
b19ccc9e 1733#ifdef DEBUG
1f0275e3
MS
1734 if ((status = httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme,
1735 sizeof(scheme), userpass, sizeof(userpass),
1736 hostname, sizeof(hostname), &port, resource,
cb7f98ee 1737 sizeof(resource))) < HTTP_URI_STATUS_OK)
b19ccc9e
MS
1738#else
1739 if (httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme,
1740 sizeof(scheme), userpass, sizeof(userpass),
1741 hostname, sizeof(hostname), &port, resource,
cb7f98ee 1742 sizeof(resource)) < HTTP_URI_STATUS_OK)
b19ccc9e 1743#endif /* DEBUG */
1f0275e3 1744 {
eac3a0a0 1745 if (options & _HTTP_RESOLVE_STDERR)
84315f46 1746 _cupsLangPrintFilter(stderr, "ERROR", _("Bad device-uri \"%s\"."), uri);
1f0275e3 1747
4db7fcee
MS
1748 DEBUG_printf(("2_httpResolveURI: httpSeparateURI returned %d!", status));
1749 DEBUG_puts("2_httpResolveURI: Returning NULL");
5eb9da71 1750 return (NULL);
1f0275e3 1751 }
5eb9da71
MS
1752
1753 /*
1754 * Resolve it as needed...
1755 */
1756
1757 if (strstr(hostname, "._tcp"))
1758 {
f3c17241 1759#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
5eb9da71 1760 char *regtype, /* Pointer to type in hostname */
2c3f5865
MS
1761 *domain, /* Pointer to domain in hostname */
1762 *uuid, /* Pointer to UUID in URI */
1763 *uuidend; /* Pointer to end of UUID in URI */
5eb9da71 1764 _http_uribuf_t uribuf; /* URI buffer */
f3c17241
MS
1765 int offline = 0; /* offline-report state set? */
1766# ifdef HAVE_DNSSD
f3c17241 1767 DNSServiceRef ref, /* DNS-SD master service reference */
7e86f2f6 1768 domainref = NULL,/* DNS-SD service reference for domain */
3c218cf5
MS
1769 ippref = NULL, /* DNS-SD service reference for network IPP */
1770 ippsref = NULL, /* DNS-SD service reference for network IPPS */
f3c17241 1771 localref; /* DNS-SD service reference for .local */
3c218cf5 1772 int extrasent = 0; /* Send the domain/IPP/IPPS resolves? */
f3c17241 1773# ifdef HAVE_POLL
38e73f87 1774 struct pollfd polldata; /* Polling data */
f3c17241 1775# else /* select() */
6d2f911b
MS
1776 fd_set input_set; /* Input set for select() */
1777 struct timeval stimeout; /* Timeout value for select() */
f3c17241
MS
1778# endif /* HAVE_POLL */
1779# elif defined(HAVE_AVAHI)
1780 AvahiClient *client; /* Client information */
1781 int error; /* Status */
1782# endif /* HAVE_DNSSD */
38e73f87 1783
eac3a0a0 1784 if (options & _HTTP_RESOLVE_STDERR)
38e73f87 1785 fprintf(stderr, "DEBUG: Resolving \"%s\"...\n", hostname);
5eb9da71
MS
1786
1787 /*
1788 * Separate the hostname into service name, registration type, and domain...
1789 */
1790
1f0275e3
MS
1791 for (regtype = strstr(hostname, "._tcp") - 2;
1792 regtype > hostname;
1793 regtype --)
1794 if (regtype[0] == '.' && regtype[1] == '_')
1795 {
1796 /*
1797 * Found ._servicetype in front of ._tcp...
1798 */
1799
1800 *regtype++ = '\0';
1801 break;
1802 }
1803
1804 if (regtype <= hostname)
1805 {
4db7fcee 1806 DEBUG_puts("2_httpResolveURI: Bad hostname, returning NULL");
1f0275e3
MS
1807 return (NULL);
1808 }
5eb9da71 1809
5eb9da71
MS
1810 for (domain = strchr(regtype, '.');
1811 domain;
1812 domain = strchr(domain + 1, '.'))
1813 if (domain[1] != '_')
1814 break;
1815
1816 if (domain)
1817 *domain++ = '\0';
1818
2c3f5865
MS
1819 if ((uuid = strstr(resource, "?uuid=")) != NULL)
1820 {
1821 *uuid = '\0';
1822 uuid += 6;
1823 if ((uuidend = strchr(uuid, '&')) != NULL)
1824 *uuidend = '\0';
1825 }
1826
1827 resolved_uri[0] = '\0';
1828
eac3a0a0
MS
1829 uribuf.buffer = resolved_uri;
1830 uribuf.bufsize = resolved_size;
1831 uribuf.options = options;
5a9febac 1832 uribuf.resource = resource;
2c3f5865 1833 uribuf.uuid = uuid;
5eb9da71 1834
4db7fcee 1835 DEBUG_printf(("2_httpResolveURI: Resolving hostname=\"%s\", regtype=\"%s\", "
1f0275e3 1836 "domain=\"%s\"\n", hostname, regtype, domain));
eac3a0a0 1837 if (options & _HTTP_RESOLVE_STDERR)
1f0275e3
MS
1838 {
1839 fputs("STATE: +connecting-to-device\n", stderr);
38e73f87
MS
1840 fprintf(stderr, "DEBUG: Resolving \"%s\", regtype=\"%s\", "
1841 "domain=\"local.\"...\n", hostname, regtype);
1f0275e3
MS
1842 }
1843
38e73f87
MS
1844 uri = NULL;
1845
f3c17241 1846# ifdef HAVE_DNSSD
38e73f87 1847 if (DNSServiceCreateConnection(&ref) == kDNSServiceErr_NoError)
5eb9da71 1848 {
7e86f2f6 1849 uint32_t myinterface = kDNSServiceInterfaceIndexAny;
a469f8a5
MS
1850 /* Lookup on any interface */
1851
1852 if (!strcmp(scheme, "ippusb"))
db8b865d 1853 myinterface = kDNSServiceInterfaceIndexLocalOnly;
a469f8a5 1854
38e73f87 1855 localref = ref;
3e7fe0ca 1856 if (DNSServiceResolve(&localref,
db8b865d 1857 kDNSServiceFlagsShareConnection, myinterface,
a469f8a5 1858 hostname, regtype, "local.", http_resolve_cb,
38e73f87
MS
1859 &uribuf) == kDNSServiceErr_NoError)
1860 {
acb056cb
MS
1861 int fds; /* Number of ready descriptors */
1862 time_t timeout, /* Poll timeout */
3e7fe0ca
MS
1863 start_time = time(NULL),/* Start time */
1864 end_time = start_time + 90;
1865 /* End time */
acb056cb 1866
3e7fe0ca 1867 while (time(NULL) < end_time)
38e73f87 1868 {
eac3a0a0 1869 if (options & _HTTP_RESOLVE_STDERR)
d84348da 1870 _cupsLangPrintFilter(stderr, "INFO", _("Looking for printer."));
acb056cb 1871
07ed0e9a
MS
1872 if (cb && !(*cb)(context))
1873 {
4db7fcee 1874 DEBUG_puts("2_httpResolveURI: callback returned 0 (stop)");
07ed0e9a
MS
1875 break;
1876 }
1877
38e73f87 1878 /*
3e7fe0ca 1879 * Wakeup every 2 seconds to emit a "looking for printer" message...
38e73f87
MS
1880 */
1881
3e7fe0ca
MS
1882 if ((timeout = end_time - time(NULL)) > 2)
1883 timeout = 2;
acb056cb 1884
f3c17241 1885# ifdef HAVE_POLL
38e73f87
MS
1886 polldata.fd = DNSServiceRefSockFD(ref);
1887 polldata.events = POLLIN;
1888
7e86f2f6 1889 fds = poll(&polldata, 1, (int)(1000 * timeout));
acb056cb 1890
f3c17241 1891# else /* select() */
6d2f911b
MS
1892 FD_ZERO(&input_set);
1893 FD_SET(DNSServiceRefSockFD(ref), &input_set);
1894
19dc16f7 1895# ifdef _WIN32
82cc1f9a 1896 stimeout.tv_sec = (long)timeout;
f3c17241 1897# else
3e7fe0ca 1898 stimeout.tv_sec = timeout;
19dc16f7 1899# endif /* _WIN32 */
3e7fe0ca 1900 stimeout.tv_usec = 0;
6d2f911b 1901
88f9aafc 1902 fds = select(DNSServiceRefSockFD(ref)+1, &input_set, NULL, NULL,
3e7fe0ca 1903 &stimeout);
f3c17241 1904# endif /* HAVE_POLL */
6d2f911b 1905
acb056cb
MS
1906 if (fds < 0)
1907 {
1908 if (errno != EINTR && errno != EAGAIN)
1909 {
4db7fcee 1910 DEBUG_printf(("2_httpResolveURI: poll error: %s", strerror(errno)));
acb056cb
MS
1911 break;
1912 }
1913 }
1914 else if (fds == 0)
38e73f87
MS
1915 {
1916 /*
acb056cb
MS
1917 * Wait 2 seconds for a response to the local resolve; if nothing
1918 * comes in, do an additional domain resolution...
38e73f87
MS
1919 */
1920
3c218cf5 1921 if (extrasent == 0 && domain && _cups_strcasecmp(domain, "local."))
acb056cb 1922 {
eac3a0a0 1923 if (options & _HTTP_RESOLVE_STDERR)
acb056cb
MS
1924 fprintf(stderr,
1925 "DEBUG: Resolving \"%s\", regtype=\"%s\", "
eac3a0a0
MS
1926 "domain=\"%s\"...\n", hostname, regtype,
1927 domain ? domain : "");
88f9aafc 1928
acb056cb 1929 domainref = ref;
3e7fe0ca 1930 if (DNSServiceResolve(&domainref,
82cc1f9a 1931 kDNSServiceFlagsShareConnection,
db8b865d 1932 myinterface, hostname, regtype, domain,
3e7fe0ca
MS
1933 http_resolve_cb,
1934 &uribuf) == kDNSServiceErr_NoError)
3c218cf5
MS
1935 extrasent = 1;
1936 }
1937 else if (extrasent == 0 && !strcmp(scheme, "ippusb"))
1938 {
1939 if (options & _HTTP_RESOLVE_STDERR)
1940 fprintf(stderr, "DEBUG: Resolving \"%s\", regtype=\"_ipps._tcp\", domain=\"local.\"...\n", hostname);
1941
1942 ippsref = ref;
1943 if (DNSServiceResolve(&ippsref,
1944 kDNSServiceFlagsShareConnection,
e13ce0be
MS
1945 kDNSServiceInterfaceIndexAny, hostname,
1946 "_ipps._tcp", domain, http_resolve_cb,
3c218cf5
MS
1947 &uribuf) == kDNSServiceErr_NoError)
1948 extrasent = 1;
1949 }
1950 else if (extrasent == 1 && !strcmp(scheme, "ippusb"))
1951 {
1952 if (options & _HTTP_RESOLVE_STDERR)
1953 fprintf(stderr, "DEBUG: Resolving \"%s\", regtype=\"_ipp._tcp\", domain=\"local.\"...\n", hostname);
1954
1955 ippref = ref;
1956 if (DNSServiceResolve(&ippref,
1957 kDNSServiceFlagsShareConnection,
e13ce0be
MS
1958 kDNSServiceInterfaceIndexAny, hostname,
1959 "_ipp._tcp", domain, http_resolve_cb,
3c218cf5
MS
1960 &uribuf) == kDNSServiceErr_NoError)
1961 extrasent = 2;
acb056cb 1962 }
6c48a6ca
MS
1963
1964 /*
1965 * If it hasn't resolved within 5 seconds set the offline-report
1966 * printer-state-reason...
1967 */
1968
eac3a0a0
MS
1969 if ((options & _HTTP_RESOLVE_STDERR) && offline == 0 &&
1970 time(NULL) > (start_time + 5))
6c48a6ca
MS
1971 {
1972 fputs("STATE: +offline-report\n", stderr);
1973 offline = 1;
1974 }
38e73f87 1975 }
acb056cb
MS
1976 else
1977 {
2c3f5865
MS
1978 if (DNSServiceProcessResult(ref) == kDNSServiceErr_NoError &&
1979 resolved_uri[0])
acb056cb
MS
1980 {
1981 uri = resolved_uri;
1982 break;
1983 }
1984 }
1985 }
38e73f87 1986
3c218cf5
MS
1987 if (extrasent)
1988 {
1989 if (domainref)
1990 DNSServiceRefDeallocate(domainref);
1991 if (ippref)
1992 DNSServiceRefDeallocate(ippref);
1993 if (ippsref)
1994 DNSServiceRefDeallocate(ippsref);
1995 }
38e73f87
MS
1996
1997 DNSServiceRefDeallocate(localref);
1998 }
5eb9da71
MS
1999
2000 DNSServiceRefDeallocate(ref);
2001 }
f3c17241
MS
2002# else /* HAVE_AVAHI */
2003 if ((uribuf.poll = avahi_simple_poll_new()) != NULL)
2004 {
2005 avahi_simple_poll_set_func(uribuf.poll, http_poll_cb, NULL);
2006
2007 if ((client = avahi_client_new(avahi_simple_poll_get(uribuf.poll),
2008 0, http_client_cb,
2009 &uribuf, &error)) != NULL)
2010 {
2011 if (avahi_service_resolver_new(client, AVAHI_IF_UNSPEC,
2012 AVAHI_PROTO_UNSPEC, hostname,
2013 regtype, "local.", AVAHI_PROTO_UNSPEC, 0,
2014 http_resolve_cb, &uribuf) != NULL)
2015 {
2016 time_t start_time = time(NULL),
2017 /* Start time */
2018 end_time = start_time + 90;
2019 /* End time */
2020 int pstatus; /* Poll status */
2021
2022 pstatus = avahi_simple_poll_iterate(uribuf.poll, 2000);
2023
2024 if (pstatus == 0 && !resolved_uri[0] && domain &&
2025 _cups_strcasecmp(domain, "local."))
2026 {
2027 /*
2028 * Resolve for .local hasn't returned anything, try the listed
2029 * domain...
2030 */
2031
2032 avahi_service_resolver_new(client, AVAHI_IF_UNSPEC,
2033 AVAHI_PROTO_UNSPEC, hostname,
2034 regtype, domain, AVAHI_PROTO_UNSPEC, 0,
2035 http_resolve_cb, &uribuf);
2036 }
2037
2038 while (!pstatus && !resolved_uri[0] && time(NULL) < end_time)
2039 {
2040 if ((pstatus = avahi_simple_poll_iterate(uribuf.poll, 2000)) != 0)
2041 break;
2042
2043 /*
2044 * If it hasn't resolved within 5 seconds set the offline-report
2045 * printer-state-reason...
2046 */
2047
2048 if ((options & _HTTP_RESOLVE_STDERR) && offline == 0 &&
2049 time(NULL) > (start_time + 5))
2050 {
2051 fputs("STATE: +offline-report\n", stderr);
2052 offline = 1;
2053 }
2054 }
2055
2056 /*
2057 * Collect the result (if we got one).
2058 */
2059
2060 if (resolved_uri[0])
2061 uri = resolved_uri;
2062 }
2063
2064 avahi_client_free(client);
2065 }
2066
2067 avahi_simple_poll_free(uribuf.poll);
2068 }
2069# endif /* HAVE_DNSSD */
1f0275e3 2070
eac3a0a0 2071 if (options & _HTTP_RESOLVE_STDERR)
38e73f87
MS
2072 {
2073 if (uri)
3e7fe0ca 2074 {
38e73f87 2075 fprintf(stderr, "DEBUG: Resolved as \"%s\"...\n", uri);
3e7fe0ca
MS
2076 fputs("STATE: -connecting-to-device,offline-report\n", stderr);
2077 }
f11a948a 2078 else
3e7fe0ca 2079 {
4d301e69 2080 fputs("DEBUG: Unable to resolve URI\n", stderr);
3e7fe0ca
MS
2081 fputs("STATE: -connecting-to-device\n", stderr);
2082 }
38e73f87 2083 }
1f0275e3 2084
f3c17241 2085#else /* HAVE_DNSSD || HAVE_AVAHI */
1f0275e3
MS
2086 /*
2087 * No DNS-SD support...
2088 */
5eb9da71
MS
2089
2090 uri = NULL;
f3c17241 2091#endif /* HAVE_DNSSD || HAVE_AVAHI */
1f0275e3 2092
eac3a0a0 2093 if ((options & _HTTP_RESOLVE_STDERR) && !uri)
a469f8a5 2094 _cupsLangPrintFilter(stderr, "INFO", _("Unable to find printer."));
5eb9da71 2095 }
eac3a0a0
MS
2096 else
2097 {
2098 /*
2099 * Nothing more to do...
2100 */
2101
2102 strlcpy(resolved_uri, uri, resolved_size);
2103 uri = resolved_uri;
2104 }
5eb9da71 2105
4db7fcee 2106 DEBUG_printf(("2_httpResolveURI: Returning \"%s\"", uri));
1f0275e3 2107
5eb9da71
MS
2108 return (uri);
2109}
2110
2111
f3c17241
MS
2112#ifdef HAVE_AVAHI
2113/*
2114 * 'http_client_cb()' - Client callback for resolving URI.
2115 */
2116
2117static void
2118http_client_cb(
2119 AvahiClient *client, /* I - Client information */
2120 AvahiClientState state, /* I - Current state */
2121 void *context) /* I - Pointer to URI buffer */
2122{
2123 DEBUG_printf(("7http_client_cb(client=%p, state=%d, context=%p)", client,
2124 state, context));
2125
2126 /*
2127 * If the connection drops, quit.
2128 */
2129
2130 if (state == AVAHI_CLIENT_FAILURE)
2131 {
2132 _http_uribuf_t *uribuf = (_http_uribuf_t *)context;
2133 /* URI buffer */
2134
2135 avahi_simple_poll_quit(uribuf->poll);
2136 }
2137}
2138#endif /* HAVE_AVAHI */
2139
2140
ef416fc2 2141/*
2142 * 'http_copy_decode()' - Copy and decode a URI.
2143 */
2144
2145static const char * /* O - New source pointer or NULL on error */
88f9aafc 2146http_copy_decode(char *dst, /* O - Destination buffer */
ef416fc2 2147 const char *src, /* I - Source pointer */
2148 int dstsize, /* I - Destination size */
a4d04587 2149 const char *term, /* I - Terminating characters */
2150 int decode) /* I - Decode %-encoded values */
ef416fc2 2151{
2152 char *ptr, /* Pointer into buffer */
2153 *end; /* End of buffer */
2154 int quoted; /* Quoted character */
2155
2156
2157 /*
2158 * Copy the src to the destination until we hit a terminating character
2159 * or the end of the string.
2160 */
2161
e00b005a 2162 for (ptr = dst, end = dst + dstsize - 1;
2163 *src && (!term || !strchr(term, *src));
2164 src ++)
ef416fc2 2165 if (ptr < end)
2166 {
a4d04587 2167 if (*src == '%' && decode)
ef416fc2 2168 {
2169 if (isxdigit(src[1] & 255) && isxdigit(src[2] & 255))
2170 {
2171 /*
2172 * Grab a hex-encoded character...
2173 */
2174
2175 src ++;
2176 if (isalpha(*src))
2177 quoted = (tolower(*src) - 'a' + 10) << 4;
2178 else
2179 quoted = (*src - '0') << 4;
2180
2181 src ++;
2182 if (isalpha(*src))
2183 quoted |= tolower(*src) - 'a' + 10;
2184 else
2185 quoted |= *src - '0';
2186
7e86f2f6 2187 *ptr++ = (char)quoted;
ef416fc2 2188 }
2189 else
2190 {
2191 /*
2192 * Bad hex-encoded character...
2193 */
2194
2195 *ptr = '\0';
2196 return (NULL);
2197 }
2198 }
6961465f
MS
2199 else if ((*src & 255) <= 0x20 || (*src & 255) >= 0x7f)
2200 {
2201 *ptr = '\0';
2202 return (NULL);
2203 }
ef416fc2 2204 else
2205 *ptr++ = *src;
2206 }
2207
2208 *ptr = '\0';
2209
2210 return (src);
2211}
2212
2213
2214/*
2215 * 'http_copy_encode()' - Copy and encode a URI.
2216 */
2217
2218static char * /* O - End of current URI */
88f9aafc 2219http_copy_encode(char *dst, /* O - Destination buffer */
ef416fc2 2220 const char *src, /* I - Source pointer */
2221 char *dstend, /* I - End of destination buffer */
a4d04587 2222 const char *reserved, /* I - Extra reserved characters */
2223 const char *term, /* I - Terminating characters */
2224 int encode) /* I - %-encode reserved chars? */
ef416fc2 2225{
ac884b6a 2226 static const char hex[] = "0123456789ABCDEF";
ef416fc2 2227
2228
2229 while (*src && dst < dstend)
2230 {
a4d04587 2231 if (term && *src == *term)
2232 return (dst);
2233
2234 if (encode && (*src == '%' || *src <= ' ' || *src & 128 ||
2235 (reserved && strchr(reserved, *src))))
ef416fc2 2236 {
2237 /*
2238 * Hex encode reserved characters...
2239 */
2240
2241 if ((dst + 2) >= dstend)
2242 break;
2243
2244 *dst++ = '%';
2245 *dst++ = hex[(*src >> 4) & 15];
2246 *dst++ = hex[*src & 15];
2247
2248 src ++;
2249 }
2250 else
2251 *dst++ = *src++;
2252 }
2253
839a51c8
MS
2254 *dst = '\0';
2255
ef416fc2 2256 if (*src)
2257 return (NULL);
2258 else
2259 return (dst);
2260}
2261
2262
5eb9da71
MS
2263#ifdef HAVE_DNSSD
2264/*
eac3a0a0 2265 * 'http_resolve_cb()' - Build a device URI for the given service name.
5eb9da71
MS
2266 */
2267
6d2f911b 2268static void DNSSD_API
eac3a0a0 2269http_resolve_cb(
5eb9da71
MS
2270 DNSServiceRef sdRef, /* I - Service reference */
2271 DNSServiceFlags flags, /* I - Results flags */
2272 uint32_t interfaceIndex, /* I - Interface number */
2273 DNSServiceErrorType errorCode, /* I - Error, if any */
2274 const char *fullName, /* I - Full service name */
2275 const char *hostTarget, /* I - Hostname */
2276 uint16_t port, /* I - Port number */
2277 uint16_t txtLen, /* I - Length of TXT record */
2278 const unsigned char *txtRecord, /* I - TXT record data */
2279 void *context) /* I - Pointer to URI buffer */
2280{
f3c17241
MS
2281 _http_uribuf_t *uribuf = (_http_uribuf_t *)context;
2282 /* URI buffer */
eac3a0a0 2283 const char *scheme, /* URI scheme */
f3c17241
MS
2284 *hostptr, /* Pointer into hostTarget */
2285 *reskey, /* "rp" or "rfo" */
2286 *resdefault; /* Default path */
2287 char resource[257], /* Remote path */
eac3a0a0 2288 fqdn[256]; /* FQDN of the .local name */
5eb9da71
MS
2289 const void *value; /* Value from TXT record */
2290 uint8_t valueLen; /* Length of value */
5eb9da71
MS
2291
2292
807315e6 2293 DEBUG_printf(("4http_resolve_cb(sdRef=%p, flags=%x, interfaceIndex=%u, errorCode=%d, fullName=\"%s\", hostTarget=\"%s\", port=%u, txtLen=%u, txtRecord=%p, context=%p)", (void *)sdRef, flags, interfaceIndex, errorCode, fullName, hostTarget, port, txtLen, (void *)txtRecord, context));
5eb9da71 2294
2c3f5865
MS
2295 /*
2296 * If we have a UUID, compare it...
2297 */
2298
2299 if (uribuf->uuid &&
2300 (value = TXTRecordGetValuePtr(txtLen, txtRecord, "UUID",
2301 &valueLen)) != NULL)
2302 {
2303 char uuid[256]; /* UUID value */
2304
2305 memcpy(uuid, value, valueLen);
2306 uuid[valueLen] = '\0';
2307
2308 if (_cups_strcasecmp(uuid, uribuf->uuid))
2309 {
2310 if (uribuf->options & _HTTP_RESOLVE_STDERR)
2c3f5865
MS
2311 fprintf(stderr, "DEBUG: Found UUID %s, looking for %s.", uuid,
2312 uribuf->uuid);
2c3f5865 2313
4db7fcee 2314 DEBUG_printf(("5http_resolve_cb: Found UUID %s, looking for %s.", uuid,
2c3f5865
MS
2315 uribuf->uuid));
2316 return;
2317 }
2318 }
2319
5eb9da71
MS
2320 /*
2321 * Figure out the scheme from the full name...
2322 */
2323
eac3a0a0
MS
2324 if (strstr(fullName, "._ipps") || strstr(fullName, "._ipp-tls"))
2325 scheme = "ipps";
2326 else if (strstr(fullName, "._ipp") || strstr(fullName, "._fax-ipp"))
5eb9da71 2327 scheme = "ipp";
eac3a0a0
MS
2328 else if (strstr(fullName, "._http."))
2329 scheme = "http";
2330 else if (strstr(fullName, "._https."))
2331 scheme = "https";
5eb9da71
MS
2332 else if (strstr(fullName, "._printer."))
2333 scheme = "lpd";
2334 else if (strstr(fullName, "._pdl-datastream."))
2335 scheme = "socket";
2336 else
2337 scheme = "riousbprint";
2338
2339 /*
2340 * Extract the "remote printer" key from the TXT record...
2341 */
2342
f3c17241 2343 if ((uribuf->options & _HTTP_RESOLVE_FAXOUT) &&
0d4d48ad
MS
2344 (!strcmp(scheme, "ipp") || !strcmp(scheme, "ipps")) &&
2345 !TXTRecordGetValuePtr(txtLen, txtRecord, "printer-type", &valueLen))
f3c17241
MS
2346 {
2347 reskey = "rfo";
2348 resdefault = "/ipp/faxout";
2349 }
2350 else
2351 {
2352 reskey = "rp";
2353 resdefault = "/";
2354 }
2355
2356 if ((value = TXTRecordGetValuePtr(txtLen, txtRecord, reskey,
5eb9da71 2357 &valueLen)) != NULL)
9b66acc5
MS
2358 {
2359 if (((char *)value)[0] == '/')
2360 {
2361 /*
f3c17241 2362 * Value (incorrectly) has a leading slash already...
9b66acc5
MS
2363 */
2364
f3c17241
MS
2365 memcpy(resource, value, valueLen);
2366 resource[valueLen] = '\0';
9b66acc5
MS
2367 }
2368 else
2369 {
2370 /*
2371 * Convert to resource by concatenating with a leading "/"...
2372 */
2373
f3c17241
MS
2374 resource[0] = '/';
2375 memcpy(resource + 1, value, valueLen);
2376 resource[valueLen + 1] = '\0';
9b66acc5
MS
2377 }
2378 }
2379 else
5eb9da71
MS
2380 {
2381 /*
f3c17241 2382 * Use the default value...
5eb9da71
MS
2383 */
2384
f3c17241 2385 strlcpy(resource, resdefault, sizeof(resource));
5eb9da71 2386 }
5eb9da71
MS
2387
2388 /*
eac3a0a0 2389 * Lookup the FQDN if needed...
5eb9da71
MS
2390 */
2391
eac3a0a0
MS
2392 if ((uribuf->options & _HTTP_RESOLVE_FQDN) &&
2393 (hostptr = hostTarget + strlen(hostTarget) - 7) > hostTarget &&
88f9aafc 2394 !_cups_strcasecmp(hostptr, ".local."))
eac3a0a0
MS
2395 {
2396 /*
2397 * OK, we got a .local name but the caller needs a real domain. Start by
2398 * getting the IP address of the .local name and then do reverse-lookups...
2399 */
2400
2401 http_addrlist_t *addrlist, /* List of addresses */
2402 *addr; /* Current address */
2403
4db7fcee 2404 DEBUG_printf(("5http_resolve_cb: Looking up \"%s\".", hostTarget));
eac3a0a0
MS
2405
2406 snprintf(fqdn, sizeof(fqdn), "%d", ntohs(port));
2407 if ((addrlist = httpAddrGetList(hostTarget, AF_UNSPEC, fqdn)) != NULL)
2408 {
2409 for (addr = addrlist; addr; addr = addr->next)
2410 {
7e86f2f6 2411 int error = getnameinfo(&(addr->addr.addr), (socklen_t)httpAddrLength(&(addr->addr)), fqdn, sizeof(fqdn), NULL, 0, NI_NAMEREQD);
eac3a0a0
MS
2412
2413 if (!error)
2414 {
4db7fcee 2415 DEBUG_printf(("5http_resolve_cb: Found \"%s\".", fqdn));
eac3a0a0
MS
2416
2417 if ((hostptr = fqdn + strlen(fqdn) - 6) <= fqdn ||
88f9aafc 2418 _cups_strcasecmp(hostptr, ".local"))
eac3a0a0
MS
2419 {
2420 hostTarget = fqdn;
2421 break;
2422 }
2423 }
2424#ifdef DEBUG
2425 else
4db7fcee 2426 DEBUG_printf(("5http_resolve_cb: \"%s\" did not resolve: %d",
eac3a0a0
MS
2427 httpAddrString(&(addr->addr), fqdn, sizeof(fqdn)),
2428 error));
2429#endif /* DEBUG */
2430 }
0fa6c7fa
MS
2431
2432 httpAddrFreeList(addrlist);
eac3a0a0
MS
2433 }
2434 }
2435
2436 /*
2437 * Assemble the final device URI...
2438 */
5eb9da71 2439
5a9febac
MS
2440 if ((!strcmp(scheme, "ipp") || !strcmp(scheme, "ipps")) &&
2441 !strcmp(uribuf->resource, "/cups"))
7e86f2f6 2442 httpAssembleURIf(HTTP_URI_CODING_ALL, uribuf->buffer, (int)uribuf->bufsize, scheme, NULL, hostTarget, ntohs(port), "%s?snmp=false", resource);
5a9febac 2443 else
7e86f2f6 2444 httpAssembleURI(HTTP_URI_CODING_ALL, uribuf->buffer, (int)uribuf->bufsize, scheme, NULL, hostTarget, ntohs(port), resource);
5eb9da71 2445
4db7fcee 2446 DEBUG_printf(("5http_resolve_cb: Resolved URI is \"%s\"...", uribuf->buffer));
5eb9da71 2447}
f3c17241
MS
2448
2449#elif defined(HAVE_AVAHI)
2450/*
2451 * 'http_poll_cb()' - Wait for input on the specified file descriptors.
2452 *
2453 * Note: This function is needed because avahi_simple_poll_iterate is broken
2454 * and always uses a timeout of 0 (!) milliseconds.
2455 * (Avahi Ticket #364)
53af7f21
MS
2456 *
2457 * @private@
f3c17241
MS
2458 */
2459
2460static int /* O - Number of file descriptors matching */
2461http_poll_cb(
2462 struct pollfd *pollfds, /* I - File descriptors */
2463 unsigned int num_pollfds, /* I - Number of file descriptors */
2464 int timeout, /* I - Timeout in milliseconds (used) */
2465 void *context) /* I - User data (unused) */
2466{
2467 (void)timeout;
2468 (void)context;
2469
2470 return (poll(pollfds, num_pollfds, 2000));
2471}
2472
2473
2474/*
2475 * 'http_resolve_cb()' - Build a device URI for the given service name.
2476 */
2477
2478static void
2479http_resolve_cb(
2480 AvahiServiceResolver *resolver, /* I - Resolver (unused) */
2481 AvahiIfIndex interface, /* I - Interface index (unused) */
2482 AvahiProtocol protocol, /* I - Network protocol (unused) */
2483 AvahiResolverEvent event, /* I - Event (found, etc.) */
2484 const char *name, /* I - Service name */
2485 const char *type, /* I - Registration type */
2486 const char *domain, /* I - Domain (unused) */
2487 const char *hostTarget, /* I - Hostname */
2488 const AvahiAddress *address, /* I - Address (unused) */
2489 uint16_t port, /* I - Port number */
2490 AvahiStringList *txt, /* I - TXT record */
2491 AvahiLookupResultFlags flags, /* I - Lookup flags (unused) */
2492 void *context) /* I - Pointer to URI buffer */
2493{
2494 _http_uribuf_t *uribuf = (_http_uribuf_t *)context;
2495 /* URI buffer */
2496 const char *scheme, /* URI scheme */
2497 *hostptr, /* Pointer into hostTarget */
2498 *reskey, /* "rp" or "rfo" */
2499 *resdefault; /* Default path */
2500 char resource[257], /* Remote path */
2501 fqdn[256]; /* FQDN of the .local name */
2502 AvahiStringList *pair; /* Current TXT record key/value pair */
2503 char *value; /* Value for "rp" key */
2504 size_t valueLen = 0; /* Length of "rp" key */
2505
2506
4db7fcee 2507 DEBUG_printf(("4http_resolve_cb(resolver=%p, "
f3c17241
MS
2508 "interface=%d, protocol=%d, event=%d, name=\"%s\", "
2509 "type=\"%s\", domain=\"%s\", hostTarget=\"%s\", address=%p, "
2510 "port=%d, txt=%p, flags=%d, context=%p)",
2511 resolver, interface, protocol, event, name, type, domain,
2512 hostTarget, address, port, txt, flags, context));
2513
2514 if (event != AVAHI_RESOLVER_FOUND)
2515 {
2516 avahi_service_resolver_free(resolver);
2517 avahi_simple_poll_quit(uribuf->poll);
2518 return;
2519 }
2520
2c3f5865
MS
2521 /*
2522 * If we have a UUID, compare it...
2523 */
2524
2525 if (uribuf->uuid && (pair = avahi_string_list_find(txt, "UUID")) != NULL)
2526 {
2527 char uuid[256]; /* UUID value */
2528
2529 avahi_string_list_get_pair(pair, NULL, &value, &valueLen);
2530
2531 memcpy(uuid, value, valueLen);
2532 uuid[valueLen] = '\0';
2533
2534 if (_cups_strcasecmp(uuid, uribuf->uuid))
2535 {
2536 if (uribuf->options & _HTTP_RESOLVE_STDERR)
2c3f5865
MS
2537 fprintf(stderr, "DEBUG: Found UUID %s, looking for %s.", uuid,
2538 uribuf->uuid);
2c3f5865 2539
4db7fcee 2540 DEBUG_printf(("5http_resolve_cb: Found UUID %s, looking for %s.", uuid,
2c3f5865
MS
2541 uribuf->uuid));
2542 return;
2543 }
2544 }
2545
f3c17241
MS
2546 /*
2547 * Figure out the scheme from the full name...
2548 */
2549
2550 if (strstr(type, "_ipp."))
2551 scheme = "ipp";
2552 else if (strstr(type, "_printer."))
2553 scheme = "lpd";
2554 else if (strstr(type, "_pdl-datastream."))
2555 scheme = "socket";
2556 else
2557 scheme = "riousbprint";
2558
2559 if (!strncmp(type, "_ipps.", 6) || !strncmp(type, "_ipp-tls.", 9))
2560 scheme = "ipps";
2561 else if (!strncmp(type, "_ipp.", 5) || !strncmp(type, "_fax-ipp.", 9))
2562 scheme = "ipp";
2563 else if (!strncmp(type, "_http.", 6))
2564 scheme = "http";
2565 else if (!strncmp(type, "_https.", 7))
2566 scheme = "https";
2567 else if (!strncmp(type, "_printer.", 9))
2568 scheme = "lpd";
2569 else if (!strncmp(type, "_pdl-datastream.", 16))
2570 scheme = "socket";
2571 else
2572 {
2573 avahi_service_resolver_free(resolver);
2574 avahi_simple_poll_quit(uribuf->poll);
2575 return;
2576 }
2577
2578 /*
2579 * Extract the remote resource key from the TXT record...
2580 */
2581
2582 if ((uribuf->options & _HTTP_RESOLVE_FAXOUT) &&
2c3f5865
MS
2583 (!strcmp(scheme, "ipp") || !strcmp(scheme, "ipps")) &&
2584 !avahi_string_list_find(txt, "printer-type"))
f3c17241
MS
2585 {
2586 reskey = "rfo";
2587 resdefault = "/ipp/faxout";
2588 }
2589 else
2590 {
2591 reskey = "rp";
2592 resdefault = "/";
2593 }
2594
2595 if ((pair = avahi_string_list_find(txt, reskey)) != NULL)
2596 {
2597 avahi_string_list_get_pair(pair, NULL, &value, &valueLen);
2598
2599 if (value[0] == '/')
2600 {
2601 /*
2602 * Value (incorrectly) has a leading slash already...
2603 */
2604
2605 memcpy(resource, value, valueLen);
2606 resource[valueLen] = '\0';
2607 }
2608 else
2609 {
2610 /*
2611 * Convert to resource by concatenating with a leading "/"...
2612 */
2613
2614 resource[0] = '/';
2615 memcpy(resource + 1, value, valueLen);
2616 resource[valueLen + 1] = '\0';
2617 }
2618 }
2619 else
2620 {
2621 /*
2622 * Use the default value...
2623 */
2624
2625 strlcpy(resource, resdefault, sizeof(resource));
2626 }
2627
2628 /*
2629 * Lookup the FQDN if needed...
2630 */
2631
2632 if ((uribuf->options & _HTTP_RESOLVE_FQDN) &&
2633 (hostptr = hostTarget + strlen(hostTarget) - 6) > hostTarget &&
2634 !_cups_strcasecmp(hostptr, ".local"))
2635 {
2636 /*
2637 * OK, we got a .local name but the caller needs a real domain. Start by
2638 * getting the IP address of the .local name and then do reverse-lookups...
2639 */
2640
2641 http_addrlist_t *addrlist, /* List of addresses */
2642 *addr; /* Current address */
2643
4db7fcee 2644 DEBUG_printf(("5http_resolve_cb: Looking up \"%s\".", hostTarget));
f3c17241
MS
2645
2646 snprintf(fqdn, sizeof(fqdn), "%d", ntohs(port));
2647 if ((addrlist = httpAddrGetList(hostTarget, AF_UNSPEC, fqdn)) != NULL)
2648 {
2649 for (addr = addrlist; addr; addr = addr->next)
2650 {
07623986 2651 int error = getnameinfo(&(addr->addr.addr), (socklen_t)httpAddrLength(&(addr->addr)), fqdn, sizeof(fqdn), NULL, 0, NI_NAMEREQD);
f3c17241
MS
2652
2653 if (!error)
2654 {
4db7fcee 2655 DEBUG_printf(("5http_resolve_cb: Found \"%s\".", fqdn));
f3c17241
MS
2656
2657 if ((hostptr = fqdn + strlen(fqdn) - 6) <= fqdn ||
2658 _cups_strcasecmp(hostptr, ".local"))
2659 {
2660 hostTarget = fqdn;
2661 break;
2662 }
2663 }
2664#ifdef DEBUG
2665 else
4db7fcee 2666 DEBUG_printf(("5http_resolve_cb: \"%s\" did not resolve: %d",
f3c17241
MS
2667 httpAddrString(&(addr->addr), fqdn, sizeof(fqdn)),
2668 error));
2669#endif /* DEBUG */
2670 }
0fa6c7fa
MS
2671
2672 httpAddrFreeList(addrlist);
f3c17241
MS
2673 }
2674 }
2675
2676 /*
2677 * Assemble the final device URI using the resolved hostname...
2678 */
2679
329cfeb0 2680 httpAssembleURI(HTTP_URI_CODING_ALL, uribuf->buffer, (int)uribuf->bufsize, scheme,
f3c17241 2681 NULL, hostTarget, port, resource);
4db7fcee 2682 DEBUG_printf(("5http_resolve_cb: Resolved URI is \"%s\".", uribuf->buffer));
f3c17241
MS
2683
2684 avahi_simple_poll_quit(uribuf->poll);
2685}
5eb9da71 2686#endif /* HAVE_DNSSD */