]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/http-support.c
Move debug printfs to internal usage only.
[thirdparty/cups.git] / cups / http-support.c
1 /*
2 * HTTP support routines for CUPS.
3 *
4 * Copyright 2007-2018 by Apple Inc.
5 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
6 *
7 * Licensed under Apache License v2.0. See the file "LICENSE" for more
8 * information.
9 */
10
11 /*
12 * Include necessary headers...
13 */
14
15 #include "cups-private.h"
16 #include "debug-internal.h"
17 #ifdef HAVE_DNSSD
18 # include <dns_sd.h>
19 # ifdef _WIN32
20 # include <io.h>
21 # elif defined(HAVE_POLL)
22 # include <poll.h>
23 # else
24 # include <sys/select.h>
25 # endif /* _WIN32 */
26 #elif defined(HAVE_AVAHI)
27 # include <avahi-client/client.h>
28 # include <avahi-client/lookup.h>
29 # include <avahi-common/simple-watch.h>
30 #endif /* HAVE_DNSSD */
31
32
33 /*
34 * Local types...
35 */
36
37 typedef struct _http_uribuf_s /* URI buffer */
38 {
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 */
45 const char *resource; /* Resource from URI */
46 const char *uuid; /* UUID from URI */
47 } _http_uribuf_t;
48
49
50 /*
51 * Local globals...
52 */
53
54 static const char * const http_days[7] =/* Days of the week */
55 {
56 "Sun",
57 "Mon",
58 "Tue",
59 "Wed",
60 "Thu",
61 "Fri",
62 "Sat"
63 };
64 static const char * const http_months[12] =
65 { /* Months of the year */
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 };
79 static 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 };
99
100
101 /*
102 * Local functions...
103 */
104
105 static const char *http_copy_decode(char *dst, const char *src,
106 int dstsize, const char *term,
107 int decode);
108 static char *http_copy_encode(char *dst, const char *src,
109 char *dstend, const char *reserved,
110 const char *term, int encode);
111 #ifdef HAVE_DNSSD
112 static 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);
121 #endif /* HAVE_DNSSD */
122
123 #ifdef HAVE_AVAHI
124 static void http_client_cb(AvahiClient *client,
125 AvahiClientState state, void *simple_poll);
126 static int http_poll_cb(struct pollfd *pollfds, unsigned int num_pollfds,
127 int timeout, void *context);
128 static 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
139
140 /*
141 * 'httpAssembleURI()' - Assemble a uniform resource identifier from its
142 * components.
143 *
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.
148 *
149 * @since CUPS 1.2/macOS 10.5@
150 */
151
152 http_uri_status_t /* O - URI status */
153 httpAssembleURI(
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 */
162 {
163 char *ptr, /* Pointer into URI buffer */
164 *end; /* End of URI buffer */
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
176 return (HTTP_URI_STATUS_BAD_ARGUMENTS);
177 }
178
179 /*
180 * Assemble the URI starting with the scheme...
181 */
182
183 end = uri + urilen - 1;
184 ptr = http_copy_encode(uri, scheme, end, NULL, NULL, 0);
185
186 if (!ptr)
187 goto assemble_overflow;
188
189 if (!strcmp(scheme, "geo") || !strcmp(scheme, "mailto") || !strcmp(scheme, "tel"))
190 {
191 /*
192 * geo:, mailto:, and tel: only have :, no //...
193 */
194
195 if (ptr < end)
196 *ptr++ = ':';
197 else
198 goto assemble_overflow;
199 }
200 else
201 {
202 /*
203 * Schemes other than geo:, mailto:, and tel: typically have //...
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 {
222 const char *hostptr; /* Pointer into hostname */
223 int have_ipv6; /* Do we have an IPv6 address? */
224
225 if (username && *username)
226 {
227 /*
228 * Add username@ first...
229 */
230
231 ptr = http_copy_encode(ptr, username, end, "/?#[]@", NULL,
232 encoding & HTTP_URI_CODING_USERNAME);
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
245 * with, we have several special cases to deal with. If we get
246 * an IPv6 address with brackets around it, assume it is already in
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...
250 */
251
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)
263 {
264 /*
265 * We have a raw IPv6 address...
266 */
267
268 if (strchr(host, '%') && !(encoding & HTTP_URI_CODING_RFC6874))
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 /*
287 * We have a normal (or RFC 6874 link-local) address, add "[" prefix...
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 == '%')
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
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 /*
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.
340 */
341
342 ptr = http_copy_encode(ptr, host, end, "\"#/:<>?@[\\]^`{|}", NULL,
343 encoding & HTTP_URI_CODING_HOSTNAME);
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 {
355 snprintf(ptr, (size_t)(end - ptr + 1), ":%d", port);
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
367 if (resource)
368 {
369 char *query; /* Pointer to query string */
370
371
372 /*
373 * Copy the resource string up to the query string if present...
374 */
375
376 query = strchr(resource, '?');
377 ptr = http_copy_encode(ptr, resource, end, NULL, "?",
378 encoding & HTTP_URI_CODING_RESOURCE);
379 if (!ptr)
380 goto assemble_overflow;
381
382 if (query)
383 {
384 /*
385 * Copy query string without encoding...
386 */
387
388 ptr = http_copy_encode(ptr, query, end, NULL, NULL,
389 encoding & HTTP_URI_CODING_QUERY);
390 if (!ptr)
391 goto assemble_overflow;
392 }
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
405 return (HTTP_URI_STATUS_OK);
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';
415 return (HTTP_URI_STATUS_OVERFLOW);
416 }
417
418
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
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.
428 *
429 * @since CUPS 1.2/macOS 10.5@
430 */
431
432 http_uri_status_t /* O - URI status */
433 httpAssembleURIf(
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
458 return (HTTP_URI_STATUS_BAD_ARGUMENTS);
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
469 if ((size_t)bytes >= sizeof(resource))
470 {
471 *uri = '\0';
472 return (HTTP_URI_STATUS_OVERFLOW);
473 }
474 else
475 return (httpAssembleURI(encoding, uri, urilen, scheme, username, host,
476 port, resource));
477 }
478
479
480 /*
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.
486 *
487 * The buffer needs to be at least 46 bytes in size.
488 *
489 * @since CUPS 1.7/macOS 10.9@
490 */
491
492 char * /* I - UUID string */
493 httpAssembleUUID(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 */
499 {
500 char data[1024]; /* Source string for MD5 */
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,
513 (unsigned)CUPS_RAND() & 0xffff, (unsigned)CUPS_RAND() & 0xffff);
514
515 cupsHashData("md5", (unsigned char *)data, strlen(data), md5sum, sizeof(md5sum));
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
533 /*
534 * 'httpDecode64()' - Base64-decode a string.
535 *
536 * This function is deprecated. Use the httpDecode64_2() function instead
537 * which provides buffer length arguments.
538 *
539 * @deprecated@ @exclude all@
540 */
541
542 char * /* O - Decoded string */
543 httpDecode64(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 *
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 *
566 * @since CUPS 1.1.21/macOS 10.4@
567 */
568
569 char * /* O - Decoded string */
570 httpDecode64_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 {
574 int pos; /* Bit position */
575 unsigned base64; /* Value of this character */
576 char *outptr, /* Output pointer */
577 *outend; /* End of output buffer */
578
579
580 /*
581 * Range check input...
582 */
583
584 if (!out || !outlen || *outlen < 1 || !in)
585 return (NULL);
586
587 if (!*in)
588 {
589 *out = '\0';
590 *outlen = 0;
591
592 return (out);
593 }
594
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')
606 base64 = (unsigned)(*in - 'A');
607 else if (*in >= 'a' && *in <= 'z')
608 base64 = (unsigned)(*in - 'a' + 26);
609 else if (*in >= '0' && *in <= '9')
610 base64 = (unsigned)(*in - '0' + 52);
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)
628 *outptr = (char)(base64 << 2);
629 pos ++;
630 break;
631 case 1 :
632 if (outptr < outend)
633 *outptr++ |= (char)((base64 >> 4) & 3);
634 if (outptr < outend)
635 *outptr = (char)((base64 << 4) & 255);
636 pos ++;
637 break;
638 case 2 :
639 if (outptr < outend)
640 *outptr++ |= (char)((base64 >> 2) & 15);
641 if (outptr < outend)
642 *outptr = (char)((base64 << 6) & 255);
643 pos ++;
644 break;
645 case 3 :
646 if (outptr < outend)
647 *outptr++ |= (char)base64;
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.
667 *
668 * This function is deprecated. Use the httpEncode64_2() function instead
669 * which provides buffer length arguments.
670 *
671 * @deprecated@ @exclude all@
672 */
673
674 char * /* O - Encoded string */
675 httpEncode64(char *out, /* I - String to write to */
676 const char *in) /* I - String to read from */
677 {
678 return (httpEncode64_2(out, 512, in, (int)strlen(in)));
679 }
680
681
682 /*
683 * 'httpEncode64_2()' - Base64-encode a string.
684 *
685 * @since CUPS 1.1.21/macOS 10.4@
686 */
687
688 char * /* O - Encoded string */
689 httpEncode64_2(char *out, /* I - String to write to */
690 int outlen, /* I - Maximum size of output string */
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];
724
725 if (outptr < outend)
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 }
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)
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 }
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 *
778 * @deprecated@ @exclude all@
779 */
780
781 const char * /* O - Date/time string */
782 httpGetDateString(time_t t) /* I - Time in seconds */
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 *
794 * @since CUPS 1.2/macOS 10.5@
795 */
796
797 const char * /* O - Date/time string */
798 httpGetDateString2(time_t t, /* I - Time in seconds */
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);
806 if (tdate)
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);
808 else
809 s[0] = '\0';
810
811 return (s);
812 }
813
814
815 /*
816 * 'httpGetDateTime()' - Get a time value from a formatted date/time string.
817 */
818
819 time_t /* O - Time in seconds */
820 httpGetDateTime(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
833 DEBUG_printf(("2httpGetDateTime(s=\"%s\")", s));
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
842 DEBUG_printf(("4httpGetDateTime: day=%d, mon=\"%s\", year=%d, hour=%d, "
843 "min=%d, sec=%d", day, mon, year, hour, min, sec));
844
845 /*
846 * Convert the month name to a number from 0 to 11.
847 */
848
849 for (i = 0; i < 12; i ++)
850 if (!_cups_strcasecmp(mon, http_months[i]))
851 break;
852
853 if (i >= 12)
854 return (0);
855
856 DEBUG_printf(("4httpGetDateTime: i=%d", i));
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
869 DEBUG_printf(("4httpGetDateTime: days=%d", days));
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
876 DEBUG_printf(("4httpGetDateTime: days=%d\n", days));
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.
885 *
886 * This function is deprecated; use the httpSeparateURI() function instead.
887 *
888 * @deprecated@ @exclude all@
889 */
890
891 void
892 httpSeparate(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 {
899 httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme, 32, username,
900 HTTP_MAX_URI, host, HTTP_MAX_URI, port, resource,
901 HTTP_MAX_URI);
902 }
903
904
905 /*
906 * 'httpSeparate2()' - Separate a Universal Resource Identifier into its
907 * components.
908 *
909 * This function is deprecated; use the httpSeparateURI() function instead.
910 *
911 * @since CUPS 1.1.21/macOS 10.4@
912 * @deprecated@ @exclude all@
913 */
914
915 void
916 httpSeparate2(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 {
927 httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme, schemelen, username,
928 usernamelen, host, hostlen, port, resource, resourcelen);
929 }
930
931
932 /*
933 * 'httpSeparateURI()' - Separate a Universal Resource Identifier into its
934 * components.
935 *
936 * @since CUPS 1.2/macOS 10.5@
937 */
938
939 http_uri_status_t /* O - Result of separation */
940 httpSeparateURI(
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 */
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)
985 return (HTTP_URI_STATUS_BAD_ARGUMENTS);
986
987 if (!*uri)
988 return (HTTP_URI_STATUS_BAD_URI);
989
990 /*
991 * Grab the scheme portion of the URI...
992 */
993
994 status = HTTP_URI_STATUS_OK;
995
996 if (!strncmp(uri, "//", 2))
997 {
998 /*
999 * Workaround for HP IPP client bug...
1000 */
1001
1002 strlcpy(scheme, "ipp", (size_t)schemelen);
1003 status = HTTP_URI_STATUS_MISSING_SCHEME;
1004 }
1005 else if (*uri == '/')
1006 {
1007 /*
1008 * Filename...
1009 */
1010
1011 strlcpy(scheme, "file", (size_t)schemelen);
1012 status = HTTP_URI_STATUS_MISSING_SCHEME;
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;)
1022 if (strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1023 "abcdefghijklmnopqrstuvwxyz"
1024 "0123456789-+.", *uri) != NULL)
1025 *ptr++ = *uri++;
1026 else
1027 break;
1028
1029 *ptr = '\0';
1030
1031 if (*uri != ':' || *scheme == '.' || !*scheme)
1032 {
1033 *scheme = '\0';
1034 return (HTTP_URI_STATUS_BAD_SCHEME);
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;
1048 else if (!strcmp(scheme, "ipp") || !strcmp(scheme, "ipps"))
1049 *port = 631;
1050 else if (!_cups_strcasecmp(scheme, "lpd"))
1051 *port = 515;
1052 else if (!strcmp(scheme, "socket")) /* Not yet registered with IANA... */
1053 *port = 9100;
1054 else if (strcmp(scheme, "file") && strcmp(scheme, "mailto") && strcmp(scheme, "tel"))
1055 status = HTTP_URI_STATUS_UNKNOWN_SCHEME;
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
1079 uri = http_copy_decode(username, uri, usernamelen, "@",
1080 decoding & HTTP_URI_CODING_USERNAME);
1081
1082 if (!uri)
1083 {
1084 *username = '\0';
1085 return (HTTP_URI_STATUS_BAD_USERNAME);
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 ++;
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 }
1121
1122 uri = http_copy_decode(host, uri, hostlen, "]",
1123 decoding & HTTP_URI_CODING_HOSTNAME);
1124
1125 if (!uri)
1126 {
1127 *host = '\0';
1128 return (HTTP_URI_STATUS_BAD_HOSTNAME);
1129 }
1130
1131 /*
1132 * Validate value...
1133 */
1134
1135 if (*uri != ']')
1136 {
1137 *host = '\0';
1138 return (HTTP_URI_STATUS_BAD_HOSTNAME);
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 }
1153 else if (*ptr == '%')
1154 {
1155 /*
1156 * Stop at zone separator (RFC 6874)
1157 */
1158
1159 break;
1160 }
1161 else if (*ptr != ':' && *ptr != '.' && !isxdigit(*ptr & 255))
1162 {
1163 *host = '\0';
1164 return (HTTP_URI_STATUS_BAD_HOSTNAME);
1165 }
1166 }
1167 else
1168 {
1169 /*
1170 * Validate the hostname or IPv4 address first...
1171 */
1172
1173 for (ptr = (char *)uri; *ptr; ptr ++)
1174 if (strchr(":?/", *ptr))
1175 break;
1176 else if (!strchr("abcdefghijklmnopqrstuvwxyz" /* unreserved */
1177 "ABCDEFGHIJKLMNOPQRSTUVWXYZ" /* unreserved */
1178 "0123456789" /* unreserved */
1179 "-._~" /* unreserved */
1180 "%" /* pct-encoded */
1181 "!$&'()*+,;=" /* sub-delims */
1182 "\\", *ptr)) /* SMB domain */
1183 {
1184 *host = '\0';
1185 return (HTTP_URI_STATUS_BAD_HOSTNAME);
1186 }
1187
1188 /*
1189 * Then copy the hostname or IPv4 address to the buffer...
1190 */
1191
1192 uri = http_copy_decode(host, uri, hostlen, ":?/",
1193 decoding & HTTP_URI_CODING_HOSTNAME);
1194
1195 if (!uri)
1196 {
1197 *host = '\0';
1198 return (HTTP_URI_STATUS_BAD_HOSTNAME);
1199 }
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';
1210 return (HTTP_URI_STATUS_BAD_HOSTNAME);
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
1223 if (!isdigit(uri[1] & 255))
1224 {
1225 *port = 0;
1226 return (HTTP_URI_STATUS_BAD_PORT);
1227 }
1228
1229 *port = (int)strtol(uri + 1, (char **)&uri, 10);
1230
1231 if (*port <= 0 || *port > 65535)
1232 {
1233 *port = 0;
1234 return (HTTP_URI_STATUS_BAD_PORT);
1235 }
1236
1237 if (*uri != '/' && *uri)
1238 {
1239 *port = 0;
1240 return (HTTP_URI_STATUS_BAD_PORT);
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
1255 status = HTTP_URI_STATUS_MISSING_RESOURCE;
1256 *resource = '/';
1257
1258 /*
1259 * Copy any query string...
1260 */
1261
1262 if (*uri == '?')
1263 uri = http_copy_decode(resource + 1, uri, resourcelen - 1, NULL,
1264 decoding & HTTP_URI_CODING_QUERY);
1265 else
1266 resource[1] = '\0';
1267 }
1268 else
1269 {
1270 uri = http_copy_decode(resource, uri, resourcelen, "?",
1271 decoding & HTTP_URI_CODING_RESOURCE);
1272
1273 if (uri && *uri == '?')
1274 {
1275 /*
1276 * Concatenate any query string...
1277 */
1278
1279 char *resptr = resource + strlen(resource);
1280
1281 uri = http_copy_decode(resptr, uri,
1282 resourcelen - (int)(resptr - resource), NULL,
1283 decoding & HTTP_URI_CODING_QUERY);
1284 }
1285 }
1286
1287 if (!uri)
1288 {
1289 *resource = '\0';
1290 return (HTTP_URI_STATUS_BAD_RESOURCE);
1291 }
1292
1293 /*
1294 * Return the URI separation status...
1295 */
1296
1297 return (status);
1298 }
1299
1300
1301 /*
1302 * '_httpSetDigestAuthString()' - Calculate a Digest authentication response
1303 * using the appropriate RFC 2068/2617/7616
1304 * algorithm.
1305 */
1306
1307 int /* 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
1326 DEBUG_printf(("2_httpSetDigestAuthString(http=%p, nonce=\"%s\", method=\"%s\", resource=\"%s\")", (void *)http, nonce, method, resource));
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
1447 /*
1448 * 'httpStateString()' - Return the string describing a HTTP state value.
1449 *
1450 * @since CUPS 2.0/OS 10.10@
1451 */
1452
1453 const char * /* O - State string */
1454 httpStateString(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
1463 /*
1464 * '_httpStatus()' - Return the localized string describing a HTTP status code.
1465 *
1466 * The returned string is localized using the passed message catalog.
1467 */
1468
1469 const char * /* O - Localized status string */
1470 _httpStatus(cups_lang_t *lang, /* I - Language */
1471 http_status_t status) /* I - HTTP status code */
1472 {
1473 const char *s; /* Status string */
1474
1475
1476 switch (status)
1477 {
1478 case HTTP_STATUS_ERROR :
1479 s = strerror(errno);
1480 break;
1481 case HTTP_STATUS_CONTINUE :
1482 s = _("Continue");
1483 break;
1484 case HTTP_STATUS_SWITCHING_PROTOCOLS :
1485 s = _("Switching Protocols");
1486 break;
1487 case HTTP_STATUS_OK :
1488 s = _("OK");
1489 break;
1490 case HTTP_STATUS_CREATED :
1491 s = _("Created");
1492 break;
1493 case HTTP_STATUS_ACCEPTED :
1494 s = _("Accepted");
1495 break;
1496 case HTTP_STATUS_NO_CONTENT :
1497 s = _("No Content");
1498 break;
1499 case HTTP_STATUS_MOVED_PERMANENTLY :
1500 s = _("Moved Permanently");
1501 break;
1502 case HTTP_STATUS_FOUND :
1503 s = _("Found");
1504 break;
1505 case HTTP_STATUS_SEE_OTHER :
1506 s = _("See Other");
1507 break;
1508 case HTTP_STATUS_NOT_MODIFIED :
1509 s = _("Not Modified");
1510 break;
1511 case HTTP_STATUS_BAD_REQUEST :
1512 s = _("Bad Request");
1513 break;
1514 case HTTP_STATUS_UNAUTHORIZED :
1515 case HTTP_STATUS_CUPS_AUTHORIZATION_CANCELED :
1516 s = _("Unauthorized");
1517 break;
1518 case HTTP_STATUS_FORBIDDEN :
1519 s = _("Forbidden");
1520 break;
1521 case HTTP_STATUS_NOT_FOUND :
1522 s = _("Not Found");
1523 break;
1524 case HTTP_STATUS_REQUEST_TOO_LARGE :
1525 s = _("Request Entity Too Large");
1526 break;
1527 case HTTP_STATUS_URI_TOO_LONG :
1528 s = _("URI Too Long");
1529 break;
1530 case HTTP_STATUS_UPGRADE_REQUIRED :
1531 s = _("Upgrade Required");
1532 break;
1533 case HTTP_STATUS_NOT_IMPLEMENTED :
1534 s = _("Not Implemented");
1535 break;
1536 case HTTP_STATUS_NOT_SUPPORTED :
1537 s = _("Not Supported");
1538 break;
1539 case HTTP_STATUS_EXPECTATION_FAILED :
1540 s = _("Expectation Failed");
1541 break;
1542 case HTTP_STATUS_SERVICE_UNAVAILABLE :
1543 s = _("Service Unavailable");
1544 break;
1545 case HTTP_STATUS_SERVER_ERROR :
1546 s = _("Internal Server Error");
1547 break;
1548 case HTTP_STATUS_CUPS_PKI_ERROR :
1549 s = _("SSL/TLS Negotiation Error");
1550 break;
1551 case HTTP_STATUS_CUPS_WEBIF_DISABLED :
1552 s = _("Web Interface is Disabled");
1553 break;
1554
1555 default :
1556 s = _("Unknown");
1557 break;
1558 }
1559
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
1568 * on the status strings defined in RFC 7231.
1569 */
1570
1571 const char * /* O - Localized status string */
1572 httpStatus(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));
1581 }
1582
1583 /*
1584 * 'httpURIStatusString()' - Return a string describing a URI status code.
1585 *
1586 * @since CUPS 2.0/OS 10.10@
1587 */
1588
1589 const char * /* O - Localized status string */
1590 httpURIStatusString(
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
1647
1648 #ifndef HAVE_HSTRERROR
1649 /*
1650 * '_cups_hstrerror()' - hstrerror() emulation function for Solaris and others.
1651 */
1652
1653 const 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
1674 /*
1675 * '_httpDecodeURI()' - Percent-decode a HTTP request URI.
1676 */
1677
1678 char * /* 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
1690 /*
1691 * '_httpEncodeURI()' - Percent-encode a HTTP request URI.
1692 */
1693
1694 char * /* 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
1704 /*
1705 * '_httpResolveURI()' - Resolve a DNS-SD URI.
1706 */
1707
1708 const char * /* O - Resolved URI */
1709 _httpResolveURI(
1710 const char *uri, /* I - DNS-SD URI */
1711 char *resolved_uri, /* I - Buffer for resolved URI */
1712 size_t resolved_size, /* I - Size of URI buffer */
1713 int options, /* I - Resolve options */
1714 int (*cb)(void *context), /* I - Continue callback function */
1715 void *context) /* I - Context pointer for callback */
1716 {
1717 char scheme[32], /* URI components... */
1718 userpass[256],
1719 hostname[1024],
1720 resource[1024];
1721 int port;
1722 #ifdef DEBUG
1723 http_uri_status_t status; /* URI decode status */
1724 #endif /* DEBUG */
1725
1726
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));
1728
1729 /*
1730 * Get the device URI...
1731 */
1732
1733 #ifdef DEBUG
1734 if ((status = httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme,
1735 sizeof(scheme), userpass, sizeof(userpass),
1736 hostname, sizeof(hostname), &port, resource,
1737 sizeof(resource))) < HTTP_URI_STATUS_OK)
1738 #else
1739 if (httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme,
1740 sizeof(scheme), userpass, sizeof(userpass),
1741 hostname, sizeof(hostname), &port, resource,
1742 sizeof(resource)) < HTTP_URI_STATUS_OK)
1743 #endif /* DEBUG */
1744 {
1745 if (options & _HTTP_RESOLVE_STDERR)
1746 _cupsLangPrintFilter(stderr, "ERROR", _("Bad device-uri \"%s\"."), uri);
1747
1748 DEBUG_printf(("2_httpResolveURI: httpSeparateURI returned %d!", status));
1749 DEBUG_puts("2_httpResolveURI: Returning NULL");
1750 return (NULL);
1751 }
1752
1753 /*
1754 * Resolve it as needed...
1755 */
1756
1757 if (strstr(hostname, "._tcp"))
1758 {
1759 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
1760 char *regtype, /* Pointer to type in hostname */
1761 *domain, /* Pointer to domain in hostname */
1762 *uuid, /* Pointer to UUID in URI */
1763 *uuidend; /* Pointer to end of UUID in URI */
1764 _http_uribuf_t uribuf; /* URI buffer */
1765 int offline = 0; /* offline-report state set? */
1766 # ifdef HAVE_DNSSD
1767 DNSServiceRef ref, /* DNS-SD master service reference */
1768 domainref = NULL,/* DNS-SD service reference for domain */
1769 ippref = NULL, /* DNS-SD service reference for network IPP */
1770 ippsref = NULL, /* DNS-SD service reference for network IPPS */
1771 localref; /* DNS-SD service reference for .local */
1772 int extrasent = 0; /* Send the domain/IPP/IPPS resolves? */
1773 # ifdef HAVE_POLL
1774 struct pollfd polldata; /* Polling data */
1775 # else /* select() */
1776 fd_set input_set; /* Input set for select() */
1777 struct timeval stimeout; /* Timeout value for select() */
1778 # endif /* HAVE_POLL */
1779 # elif defined(HAVE_AVAHI)
1780 AvahiClient *client; /* Client information */
1781 int error; /* Status */
1782 # endif /* HAVE_DNSSD */
1783
1784 if (options & _HTTP_RESOLVE_STDERR)
1785 fprintf(stderr, "DEBUG: Resolving \"%s\"...\n", hostname);
1786
1787 /*
1788 * Separate the hostname into service name, registration type, and domain...
1789 */
1790
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 {
1806 DEBUG_puts("2_httpResolveURI: Bad hostname, returning NULL");
1807 return (NULL);
1808 }
1809
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
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
1829 uribuf.buffer = resolved_uri;
1830 uribuf.bufsize = resolved_size;
1831 uribuf.options = options;
1832 uribuf.resource = resource;
1833 uribuf.uuid = uuid;
1834
1835 DEBUG_printf(("2_httpResolveURI: Resolving hostname=\"%s\", regtype=\"%s\", "
1836 "domain=\"%s\"\n", hostname, regtype, domain));
1837 if (options & _HTTP_RESOLVE_STDERR)
1838 {
1839 fputs("STATE: +connecting-to-device\n", stderr);
1840 fprintf(stderr, "DEBUG: Resolving \"%s\", regtype=\"%s\", "
1841 "domain=\"local.\"...\n", hostname, regtype);
1842 }
1843
1844 uri = NULL;
1845
1846 # ifdef HAVE_DNSSD
1847 if (DNSServiceCreateConnection(&ref) == kDNSServiceErr_NoError)
1848 {
1849 uint32_t myinterface = kDNSServiceInterfaceIndexAny;
1850 /* Lookup on any interface */
1851
1852 if (!strcmp(scheme, "ippusb"))
1853 myinterface = kDNSServiceInterfaceIndexLocalOnly;
1854
1855 localref = ref;
1856 if (DNSServiceResolve(&localref,
1857 kDNSServiceFlagsShareConnection, myinterface,
1858 hostname, regtype, "local.", http_resolve_cb,
1859 &uribuf) == kDNSServiceErr_NoError)
1860 {
1861 int fds; /* Number of ready descriptors */
1862 time_t timeout, /* Poll timeout */
1863 start_time = time(NULL),/* Start time */
1864 end_time = start_time + 90;
1865 /* End time */
1866
1867 while (time(NULL) < end_time)
1868 {
1869 if (options & _HTTP_RESOLVE_STDERR)
1870 _cupsLangPrintFilter(stderr, "INFO", _("Looking for printer."));
1871
1872 if (cb && !(*cb)(context))
1873 {
1874 DEBUG_puts("2_httpResolveURI: callback returned 0 (stop)");
1875 break;
1876 }
1877
1878 /*
1879 * Wakeup every 2 seconds to emit a "looking for printer" message...
1880 */
1881
1882 if ((timeout = end_time - time(NULL)) > 2)
1883 timeout = 2;
1884
1885 # ifdef HAVE_POLL
1886 polldata.fd = DNSServiceRefSockFD(ref);
1887 polldata.events = POLLIN;
1888
1889 fds = poll(&polldata, 1, (int)(1000 * timeout));
1890
1891 # else /* select() */
1892 FD_ZERO(&input_set);
1893 FD_SET(DNSServiceRefSockFD(ref), &input_set);
1894
1895 # ifdef _WIN32
1896 stimeout.tv_sec = (long)timeout;
1897 # else
1898 stimeout.tv_sec = timeout;
1899 # endif /* _WIN32 */
1900 stimeout.tv_usec = 0;
1901
1902 fds = select(DNSServiceRefSockFD(ref)+1, &input_set, NULL, NULL,
1903 &stimeout);
1904 # endif /* HAVE_POLL */
1905
1906 if (fds < 0)
1907 {
1908 if (errno != EINTR && errno != EAGAIN)
1909 {
1910 DEBUG_printf(("2_httpResolveURI: poll error: %s", strerror(errno)));
1911 break;
1912 }
1913 }
1914 else if (fds == 0)
1915 {
1916 /*
1917 * Wait 2 seconds for a response to the local resolve; if nothing
1918 * comes in, do an additional domain resolution...
1919 */
1920
1921 if (extrasent == 0 && domain && _cups_strcasecmp(domain, "local."))
1922 {
1923 if (options & _HTTP_RESOLVE_STDERR)
1924 fprintf(stderr,
1925 "DEBUG: Resolving \"%s\", regtype=\"%s\", "
1926 "domain=\"%s\"...\n", hostname, regtype,
1927 domain ? domain : "");
1928
1929 domainref = ref;
1930 if (DNSServiceResolve(&domainref,
1931 kDNSServiceFlagsShareConnection,
1932 myinterface, hostname, regtype, domain,
1933 http_resolve_cb,
1934 &uribuf) == kDNSServiceErr_NoError)
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,
1945 kDNSServiceInterfaceIndexAny, hostname,
1946 "_ipps._tcp", domain, http_resolve_cb,
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,
1958 kDNSServiceInterfaceIndexAny, hostname,
1959 "_ipp._tcp", domain, http_resolve_cb,
1960 &uribuf) == kDNSServiceErr_NoError)
1961 extrasent = 2;
1962 }
1963
1964 /*
1965 * If it hasn't resolved within 5 seconds set the offline-report
1966 * printer-state-reason...
1967 */
1968
1969 if ((options & _HTTP_RESOLVE_STDERR) && offline == 0 &&
1970 time(NULL) > (start_time + 5))
1971 {
1972 fputs("STATE: +offline-report\n", stderr);
1973 offline = 1;
1974 }
1975 }
1976 else
1977 {
1978 if (DNSServiceProcessResult(ref) == kDNSServiceErr_NoError &&
1979 resolved_uri[0])
1980 {
1981 uri = resolved_uri;
1982 break;
1983 }
1984 }
1985 }
1986
1987 if (extrasent)
1988 {
1989 if (domainref)
1990 DNSServiceRefDeallocate(domainref);
1991 if (ippref)
1992 DNSServiceRefDeallocate(ippref);
1993 if (ippsref)
1994 DNSServiceRefDeallocate(ippsref);
1995 }
1996
1997 DNSServiceRefDeallocate(localref);
1998 }
1999
2000 DNSServiceRefDeallocate(ref);
2001 }
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 */
2070
2071 if (options & _HTTP_RESOLVE_STDERR)
2072 {
2073 if (uri)
2074 {
2075 fprintf(stderr, "DEBUG: Resolved as \"%s\"...\n", uri);
2076 fputs("STATE: -connecting-to-device,offline-report\n", stderr);
2077 }
2078 else
2079 {
2080 fputs("DEBUG: Unable to resolve URI\n", stderr);
2081 fputs("STATE: -connecting-to-device\n", stderr);
2082 }
2083 }
2084
2085 #else /* HAVE_DNSSD || HAVE_AVAHI */
2086 /*
2087 * No DNS-SD support...
2088 */
2089
2090 uri = NULL;
2091 #endif /* HAVE_DNSSD || HAVE_AVAHI */
2092
2093 if ((options & _HTTP_RESOLVE_STDERR) && !uri)
2094 _cupsLangPrintFilter(stderr, "INFO", _("Unable to find printer."));
2095 }
2096 else
2097 {
2098 /*
2099 * Nothing more to do...
2100 */
2101
2102 strlcpy(resolved_uri, uri, resolved_size);
2103 uri = resolved_uri;
2104 }
2105
2106 DEBUG_printf(("2_httpResolveURI: Returning \"%s\"", uri));
2107
2108 return (uri);
2109 }
2110
2111
2112 #ifdef HAVE_AVAHI
2113 /*
2114 * 'http_client_cb()' - Client callback for resolving URI.
2115 */
2116
2117 static void
2118 http_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
2141 /*
2142 * 'http_copy_decode()' - Copy and decode a URI.
2143 */
2144
2145 static const char * /* O - New source pointer or NULL on error */
2146 http_copy_decode(char *dst, /* O - Destination buffer */
2147 const char *src, /* I - Source pointer */
2148 int dstsize, /* I - Destination size */
2149 const char *term, /* I - Terminating characters */
2150 int decode) /* I - Decode %-encoded values */
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
2162 for (ptr = dst, end = dst + dstsize - 1;
2163 *src && (!term || !strchr(term, *src));
2164 src ++)
2165 if (ptr < end)
2166 {
2167 if (*src == '%' && decode)
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
2187 *ptr++ = (char)quoted;
2188 }
2189 else
2190 {
2191 /*
2192 * Bad hex-encoded character...
2193 */
2194
2195 *ptr = '\0';
2196 return (NULL);
2197 }
2198 }
2199 else if ((*src & 255) <= 0x20 || (*src & 255) >= 0x7f)
2200 {
2201 *ptr = '\0';
2202 return (NULL);
2203 }
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
2218 static char * /* O - End of current URI */
2219 http_copy_encode(char *dst, /* O - Destination buffer */
2220 const char *src, /* I - Source pointer */
2221 char *dstend, /* I - End of destination buffer */
2222 const char *reserved, /* I - Extra reserved characters */
2223 const char *term, /* I - Terminating characters */
2224 int encode) /* I - %-encode reserved chars? */
2225 {
2226 static const char hex[] = "0123456789ABCDEF";
2227
2228
2229 while (*src && dst < dstend)
2230 {
2231 if (term && *src == *term)
2232 return (dst);
2233
2234 if (encode && (*src == '%' || *src <= ' ' || *src & 128 ||
2235 (reserved && strchr(reserved, *src))))
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
2254 *dst = '\0';
2255
2256 if (*src)
2257 return (NULL);
2258 else
2259 return (dst);
2260 }
2261
2262
2263 #ifdef HAVE_DNSSD
2264 /*
2265 * 'http_resolve_cb()' - Build a device URI for the given service name.
2266 */
2267
2268 static void DNSSD_API
2269 http_resolve_cb(
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 {
2281 _http_uribuf_t *uribuf = (_http_uribuf_t *)context;
2282 /* URI buffer */
2283 const char *scheme, /* URI scheme */
2284 *hostptr, /* Pointer into hostTarget */
2285 *reskey, /* "rp" or "rfo" */
2286 *resdefault; /* Default path */
2287 char resource[257], /* Remote path */
2288 fqdn[256]; /* FQDN of the .local name */
2289 const void *value; /* Value from TXT record */
2290 uint8_t valueLen; /* Length of value */
2291
2292
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));
2294
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)
2311 fprintf(stderr, "DEBUG: Found UUID %s, looking for %s.", uuid,
2312 uribuf->uuid);
2313
2314 DEBUG_printf(("5http_resolve_cb: Found UUID %s, looking for %s.", uuid,
2315 uribuf->uuid));
2316 return;
2317 }
2318 }
2319
2320 /*
2321 * Figure out the scheme from the full name...
2322 */
2323
2324 if (strstr(fullName, "._ipps") || strstr(fullName, "._ipp-tls"))
2325 scheme = "ipps";
2326 else if (strstr(fullName, "._ipp") || strstr(fullName, "._fax-ipp"))
2327 scheme = "ipp";
2328 else if (strstr(fullName, "._http."))
2329 scheme = "http";
2330 else if (strstr(fullName, "._https."))
2331 scheme = "https";
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
2343 if ((uribuf->options & _HTTP_RESOLVE_FAXOUT) &&
2344 (!strcmp(scheme, "ipp") || !strcmp(scheme, "ipps")) &&
2345 !TXTRecordGetValuePtr(txtLen, txtRecord, "printer-type", &valueLen))
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,
2357 &valueLen)) != NULL)
2358 {
2359 if (((char *)value)[0] == '/')
2360 {
2361 /*
2362 * Value (incorrectly) has a leading slash already...
2363 */
2364
2365 memcpy(resource, value, valueLen);
2366 resource[valueLen] = '\0';
2367 }
2368 else
2369 {
2370 /*
2371 * Convert to resource by concatenating with a leading "/"...
2372 */
2373
2374 resource[0] = '/';
2375 memcpy(resource + 1, value, valueLen);
2376 resource[valueLen + 1] = '\0';
2377 }
2378 }
2379 else
2380 {
2381 /*
2382 * Use the default value...
2383 */
2384
2385 strlcpy(resource, resdefault, sizeof(resource));
2386 }
2387
2388 /*
2389 * Lookup the FQDN if needed...
2390 */
2391
2392 if ((uribuf->options & _HTTP_RESOLVE_FQDN) &&
2393 (hostptr = hostTarget + strlen(hostTarget) - 7) > hostTarget &&
2394 !_cups_strcasecmp(hostptr, ".local."))
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
2404 DEBUG_printf(("5http_resolve_cb: Looking up \"%s\".", hostTarget));
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 {
2411 int error = getnameinfo(&(addr->addr.addr), (socklen_t)httpAddrLength(&(addr->addr)), fqdn, sizeof(fqdn), NULL, 0, NI_NAMEREQD);
2412
2413 if (!error)
2414 {
2415 DEBUG_printf(("5http_resolve_cb: Found \"%s\".", fqdn));
2416
2417 if ((hostptr = fqdn + strlen(fqdn) - 6) <= fqdn ||
2418 _cups_strcasecmp(hostptr, ".local"))
2419 {
2420 hostTarget = fqdn;
2421 break;
2422 }
2423 }
2424 #ifdef DEBUG
2425 else
2426 DEBUG_printf(("5http_resolve_cb: \"%s\" did not resolve: %d",
2427 httpAddrString(&(addr->addr), fqdn, sizeof(fqdn)),
2428 error));
2429 #endif /* DEBUG */
2430 }
2431
2432 httpAddrFreeList(addrlist);
2433 }
2434 }
2435
2436 /*
2437 * Assemble the final device URI...
2438 */
2439
2440 if ((!strcmp(scheme, "ipp") || !strcmp(scheme, "ipps")) &&
2441 !strcmp(uribuf->resource, "/cups"))
2442 httpAssembleURIf(HTTP_URI_CODING_ALL, uribuf->buffer, (int)uribuf->bufsize, scheme, NULL, hostTarget, ntohs(port), "%s?snmp=false", resource);
2443 else
2444 httpAssembleURI(HTTP_URI_CODING_ALL, uribuf->buffer, (int)uribuf->bufsize, scheme, NULL, hostTarget, ntohs(port), resource);
2445
2446 DEBUG_printf(("5http_resolve_cb: Resolved URI is \"%s\"...", uribuf->buffer));
2447 }
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)
2456 *
2457 * @private@
2458 */
2459
2460 static int /* O - Number of file descriptors matching */
2461 http_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
2478 static void
2479 http_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
2507 DEBUG_printf(("4http_resolve_cb(resolver=%p, "
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
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)
2537 fprintf(stderr, "DEBUG: Found UUID %s, looking for %s.", uuid,
2538 uribuf->uuid);
2539
2540 DEBUG_printf(("5http_resolve_cb: Found UUID %s, looking for %s.", uuid,
2541 uribuf->uuid));
2542 return;
2543 }
2544 }
2545
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) &&
2583 (!strcmp(scheme, "ipp") || !strcmp(scheme, "ipps")) &&
2584 !avahi_string_list_find(txt, "printer-type"))
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
2644 DEBUG_printf(("5http_resolve_cb: Looking up \"%s\".", hostTarget));
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 {
2651 int error = getnameinfo(&(addr->addr.addr), (socklen_t)httpAddrLength(&(addr->addr)), fqdn, sizeof(fqdn), NULL, 0, NI_NAMEREQD);
2652
2653 if (!error)
2654 {
2655 DEBUG_printf(("5http_resolve_cb: Found \"%s\".", fqdn));
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
2666 DEBUG_printf(("5http_resolve_cb: \"%s\" did not resolve: %d",
2667 httpAddrString(&(addr->addr), fqdn, sizeof(fqdn)),
2668 error));
2669 #endif /* DEBUG */
2670 }
2671
2672 httpAddrFreeList(addrlist);
2673 }
2674 }
2675
2676 /*
2677 * Assemble the final device URI using the resolved hostname...
2678 */
2679
2680 httpAssembleURI(HTTP_URI_CODING_ALL, uribuf->buffer, (int)uribuf->bufsize, scheme,
2681 NULL, hostTarget, port, resource);
2682 DEBUG_printf(("5http_resolve_cb: Resolved URI is \"%s\".", uribuf->buffer));
2683
2684 avahi_simple_poll_quit(uribuf->poll);
2685 }
2686 #endif /* HAVE_DNSSD */