]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/dest.c
The lp and lpr commands incorrectly ignored the default printer set in the
[thirdparty/cups.git] / cups / dest.c
1 /*
2 * "$Id$"
3 *
4 * User-defined destination (and option) support for CUPS.
5 *
6 * Copyright 2007-2013 by Apple Inc.
7 * Copyright 1997-2007 by Easy Software Products.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
14 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 *
17 * Contents:
18 *
19 * cupsAddDest() - Add a destination to the list of
20 * destinations.
21 * _cupsAppleCopyDefaultPaperID() - Get the default paper ID.
22 * _cupsAppleCopyDefaultPrinter() - Get the default printer at this location.
23 * _cupsAppleGetUseLastPrinter() - Get whether to use the last used printer.
24 * _cupsAppleSetDefaultPaperID() - Set the default paper id.
25 * _cupsAppleSetDefaultPrinter() - Set the default printer for this
26 * location.
27 * _cupsAppleSetUseLastPrinter() - Set whether to use the last used printer.
28 * cupsConnectDest() - Connect to the server for a destination.
29 * cupsConnectDestBlock() - Connect to the server for a destination.
30 * cupsCopyDest() - Copy a destination.
31 * cupsEnumDests() - Enumerate available destinations with a
32 * callback function.
33 * cupsEnumDestsBlock() - Enumerate available destinations with a
34 * block.
35 * cupsFreeDests() - Free the memory used by the list of
36 * destinations.
37 * cupsGetDest() - Get the named destination from the list.
38 * _cupsGetDestResource() - Get the resource path and URI for a
39 * destination.
40 * _cupsGetDests() - Get destinations from a server.
41 * cupsGetDests() - Get the list of destinations from the
42 * default server.
43 * cupsGetDests2() - Get the list of destinations from the
44 * specified server.
45 * cupsGetNamedDest() - Get options for the named destination.
46 * cupsRemoveDest() - Remove a destination from the destination
47 * list.
48 * cupsSetDefaultDest() - Set the default destination.
49 * cupsSetDests() - Save the list of destinations for the
50 * default server.
51 * cupsSetDests2() - Save the list of destinations for the
52 * specified server.
53 * _cupsUserDefault() - Get the user default printer from
54 * environment variables and location
55 * information.
56 * appleCopyLocations() - Copy the location history array.
57 * appleCopyNetwork() - Get the network ID for the current
58 * location.
59 * appleGetPaperSize() - Get the default paper size.
60 * appleGetPrinter() - Get a printer from the history array.
61 * cups_add_dest() - Add a destination to the array.
62 * cups_block_cb() - Enumeration callback for block API.
63 * cups_compare_dests() - Compare two destinations.
64 * cups_dnssd_browse_cb() - Browse for printers.
65 * cups_dnssd_browse_cb() - Browse for printers.
66 * cups_dnssd_client_cb() - Avahi client callback function.
67 * cups_dnssd_compare_device() - Compare two devices.
68 * cups_dnssd_free_device() - Free the memory used by a device.
69 * cups_dnssd_get_device() - Lookup a device and create it as needed.
70 * cups_dnssd_local_cb() - Browse for local printers.
71 * cups_dnssd_poll_cb() - Wait for input on the specified file
72 * descriptors.
73 * cups_dnssd_query_cb() - Process query data.
74 * cups_dnssd_resolve() - Resolve a Bonjour printer URI.
75 * cups_dnssd_resolve_cb() - See if we should continue resolving.
76 * cups_dnssd_unquote() - Unquote a name string.
77 * cups_find_dest() - Find a destination using a binary search.
78 * cups_get_default() - Get the default destination from an
79 * lpoptions file.
80 * cups_get_dests() - Get destinations from a file.
81 * cups_make_string() - Make a comma-separated string of values
82 * from an IPP attribute.
83 */
84
85 /*
86 * Include necessary headers...
87 */
88
89 #include "cups-private.h"
90 #include <sys/stat.h>
91
92 #ifdef HAVE_NOTIFY_H
93 # include <notify.h>
94 #endif /* HAVE_NOTIFY_H */
95
96 #ifdef HAVE_POLL
97 # include <poll.h>
98 #endif /* HAVE_POLL */
99
100 #ifdef HAVE_DNSSD
101 # include <dns_sd.h>
102 #endif /* HAVE_DNSSD */
103
104 #ifdef HAVE_AVAHI
105 # include <avahi-client/client.h>
106 # include <avahi-client/lookup.h>
107 # include <avahi-common/simple-watch.h>
108 # include <avahi-common/domain.h>
109 # include <avahi-common/error.h>
110 # include <avahi-common/malloc.h>
111 #define kDNSServiceMaxDomainName AVAHI_DOMAIN_NAME_MAX
112 #endif /* HAVE_AVAHI */
113
114
115 /*
116 * Constants...
117 */
118
119 #ifdef __APPLE__
120 # include <SystemConfiguration/SystemConfiguration.h>
121 # define kCUPSPrintingPrefs CFSTR("org.cups.PrintingPrefs")
122 # define kDefaultPaperIDKey CFSTR("DefaultPaperID")
123 # define kLastUsedPrintersKey CFSTR("LastUsedPrinters")
124 # define kLocationNetworkKey CFSTR("Network")
125 # define kLocationPrinterIDKey CFSTR("PrinterID")
126 # define kUseLastPrinter CFSTR("UseLastPrinter")
127 #endif /* __APPLE__ */
128
129
130 /*
131 * Types...
132 */
133
134 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
135 typedef enum _cups_dnssd_state_e /* Enumerated device state */
136 {
137 _CUPS_DNSSD_NEW,
138 _CUPS_DNSSD_QUERY,
139 _CUPS_DNSSD_PENDING,
140 _CUPS_DNSSD_ACTIVE,
141 _CUPS_DNSSD_LOCAL,
142 _CUPS_DNSSD_INCOMPATIBLE,
143 _CUPS_DNSSD_ERROR
144 } _cups_dnssd_state_t;
145
146 typedef struct _cups_dnssd_data_s /* Enumeration data */
147 {
148 # ifdef HAVE_DNSSD
149 DNSServiceRef main_ref; /* Main service reference */
150 # else /* HAVE_AVAHI */
151 AvahiSimplePoll *simple_poll; /* Polling interface */
152 AvahiClient *client; /* Client information */
153 int got_data; /* Did we get data? */
154 # endif /* HAVE_DNSSD */
155 cups_dest_cb_t cb; /* Callback */
156 void *user_data; /* User data pointer */
157 cups_ptype_t type, /* Printer type filter */
158 mask; /* Printer type mask */
159 cups_array_t *devices; /* Devices found so far */
160 } _cups_dnssd_data_t;
161
162 typedef struct _cups_dnssd_device_s /* Enumerated device */
163 {
164 _cups_dnssd_state_t state; /* State of device listing */
165 # ifdef HAVE_DNSSD
166 DNSServiceRef ref; /* Service reference for query */
167 # else /* HAVE_AVAHI */
168 AvahiRecordBrowser *ref; /* Browser for query */
169 # endif /* HAVE_DNSSD */
170 char *domain, /* Domain name */
171 *fullName, /* Full name */
172 *regtype; /* Registration type */
173 cups_ptype_t type; /* Device registration type */
174 cups_dest_t dest; /* Destination record */
175 } _cups_dnssd_device_t;
176
177 typedef struct _cups_dnssd_resolve_s /* Data for resolving URI */
178 {
179 int *cancel; /* Pointer to "cancel" variable */
180 struct timeval end_time; /* Ending time */
181 } _cups_dnssd_resolve_t;
182 #endif /* HAVE_DNSSD */
183
184
185 /*
186 * Local functions...
187 */
188
189 #ifdef __APPLE__
190 static CFArrayRef appleCopyLocations(void);
191 static CFStringRef appleCopyNetwork(void);
192 static char *appleGetPaperSize(char *name, int namesize);
193 static CFStringRef appleGetPrinter(CFArrayRef locations,
194 CFStringRef network, CFIndex *locindex);
195 #endif /* __APPLE__ */
196 static cups_dest_t *cups_add_dest(const char *name, const char *instance,
197 int *num_dests, cups_dest_t **dests);
198 #ifdef __BLOCKS__
199 static int cups_block_cb(cups_dest_block_t block, unsigned flags,
200 cups_dest_t *dest);
201 #endif /* __BLOCKS__ */
202 static int cups_compare_dests(cups_dest_t *a, cups_dest_t *b);
203 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
204 # ifdef HAVE_DNSSD
205 static void cups_dnssd_browse_cb(DNSServiceRef sdRef,
206 DNSServiceFlags flags,
207 uint32_t interfaceIndex,
208 DNSServiceErrorType errorCode,
209 const char *serviceName,
210 const char *regtype,
211 const char *replyDomain,
212 void *context);
213 # else /* HAVE_AVAHI */
214 static void cups_dnssd_browse_cb(AvahiServiceBrowser *browser,
215 AvahiIfIndex interface,
216 AvahiProtocol protocol,
217 AvahiBrowserEvent event,
218 const char *serviceName,
219 const char *regtype,
220 const char *replyDomain,
221 AvahiLookupResultFlags flags,
222 void *context);
223 static void cups_dnssd_client_cb(AvahiClient *client,
224 AvahiClientState state,
225 void *context);
226 # endif /* HAVE_DNSSD */
227 static int cups_dnssd_compare_devices(_cups_dnssd_device_t *a,
228 _cups_dnssd_device_t *b);
229 static void cups_dnssd_free_device(_cups_dnssd_device_t *device,
230 _cups_dnssd_data_t *data);
231 static _cups_dnssd_device_t *
232 cups_dnssd_get_device(_cups_dnssd_data_t *data,
233 const char *serviceName,
234 const char *regtype,
235 const char *replyDomain);
236 # ifdef HAVE_DNSSD
237 static void cups_dnssd_local_cb(DNSServiceRef sdRef,
238 DNSServiceFlags flags,
239 uint32_t interfaceIndex,
240 DNSServiceErrorType errorCode,
241 const char *serviceName,
242 const char *regtype,
243 const char *replyDomain,
244 void *context);
245 static void cups_dnssd_query_cb(DNSServiceRef sdRef,
246 DNSServiceFlags flags,
247 uint32_t interfaceIndex,
248 DNSServiceErrorType errorCode,
249 const char *fullName,
250 uint16_t rrtype, uint16_t rrclass,
251 uint16_t rdlen, const void *rdata,
252 uint32_t ttl, void *context);
253 # else /* HAVE_AVAHI */
254 static int cups_dnssd_poll_cb(struct pollfd *pollfds,
255 unsigned int num_pollfds,
256 int timeout, void *context);
257 static void cups_dnssd_query_cb(AvahiRecordBrowser *browser,
258 AvahiIfIndex interface,
259 AvahiProtocol protocol,
260 AvahiBrowserEvent event,
261 const char *name, uint16_t rrclass,
262 uint16_t rrtype, const void *rdata,
263 size_t rdlen,
264 AvahiLookupResultFlags flags,
265 void *context);
266 # endif /* HAVE_DNSSD */
267 static const char *cups_dnssd_resolve(cups_dest_t *dest, const char *uri,
268 int msec, int *cancel,
269 cups_dest_cb_t cb, void *user_data);
270 static int cups_dnssd_resolve_cb(void *context);
271 static void cups_dnssd_unquote(char *dst, const char *src,
272 size_t dstsize);
273 #endif /* HAVE_DNSSD || HAVE_AVAHI */
274 static int cups_find_dest(const char *name, const char *instance,
275 int num_dests, cups_dest_t *dests, int prev,
276 int *rdiff);
277 static char *cups_get_default(const char *filename, char *namebuf,
278 size_t namesize, const char **instance);
279 static int cups_get_dests(const char *filename, const char *match_name,
280 const char *match_inst, int user_default_set,
281 int num_dests, cups_dest_t **dests);
282 static char *cups_make_string(ipp_attribute_t *attr, char *buffer,
283 size_t bufsize);
284
285
286 /*
287 * 'cupsAddDest()' - Add a destination to the list of destinations.
288 *
289 * This function cannot be used to add a new class or printer queue,
290 * it only adds a new container of saved options for the named
291 * destination or instance.
292 *
293 * If the named destination already exists, the destination list is
294 * returned unchanged. Adding a new instance of a destination creates
295 * a copy of that destination's options.
296 *
297 * Use the @link cupsSaveDests@ function to save the updated list of
298 * destinations to the user's lpoptions file.
299 */
300
301 int /* O - New number of destinations */
302 cupsAddDest(const char *name, /* I - Destination name */
303 const char *instance, /* I - Instance name or @code NULL@ for none/primary */
304 int num_dests, /* I - Number of destinations */
305 cups_dest_t **dests) /* IO - Destinations */
306 {
307 int i; /* Looping var */
308 cups_dest_t *dest; /* Destination pointer */
309 cups_dest_t *parent = NULL; /* Parent destination */
310 cups_option_t *doption, /* Current destination option */
311 *poption; /* Current parent option */
312
313
314 if (!name || !dests)
315 return (0);
316
317 if (!cupsGetDest(name, instance, num_dests, *dests))
318 {
319 if (instance && !cupsGetDest(name, NULL, num_dests, *dests))
320 return (num_dests);
321
322 if ((dest = cups_add_dest(name, instance, &num_dests, dests)) == NULL)
323 return (num_dests);
324
325 /*
326 * Find the base dest again now the array has been realloc'd.
327 */
328
329 parent = cupsGetDest(name, NULL, num_dests, *dests);
330
331 if (instance && parent && parent->num_options > 0)
332 {
333 /*
334 * Copy options from parent...
335 */
336
337 dest->options = calloc(sizeof(cups_option_t), parent->num_options);
338
339 if (dest->options)
340 {
341 dest->num_options = parent->num_options;
342
343 for (i = dest->num_options, doption = dest->options,
344 poption = parent->options;
345 i > 0;
346 i --, doption ++, poption ++)
347 {
348 doption->name = _cupsStrRetain(poption->name);
349 doption->value = _cupsStrRetain(poption->value);
350 }
351 }
352 }
353 }
354
355 return (num_dests);
356 }
357
358
359 #ifdef __APPLE__
360 /*
361 * '_cupsAppleCopyDefaultPaperID()' - Get the default paper ID.
362 */
363
364 CFStringRef /* O - Default paper ID */
365 _cupsAppleCopyDefaultPaperID(void)
366 {
367 return (CFPreferencesCopyAppValue(kDefaultPaperIDKey,
368 kCUPSPrintingPrefs));
369 }
370
371
372 /*
373 * '_cupsAppleCopyDefaultPrinter()' - Get the default printer at this location.
374 */
375
376 CFStringRef /* O - Default printer name */
377 _cupsAppleCopyDefaultPrinter(void)
378 {
379 CFStringRef network; /* Network location */
380 CFArrayRef locations; /* Location array */
381 CFStringRef locprinter; /* Current printer */
382
383
384 /*
385 * Use location-based defaults only if "use last printer" is selected in the
386 * system preferences...
387 */
388
389 if (!_cupsAppleGetUseLastPrinter())
390 {
391 DEBUG_puts("1_cupsAppleCopyDefaultPrinter: Not using last printer as "
392 "default.");
393 return (NULL);
394 }
395
396 /*
397 * Get the current location...
398 */
399
400 if ((network = appleCopyNetwork()) == NULL)
401 {
402 DEBUG_puts("1_cupsAppleCopyDefaultPrinter: Unable to get current "
403 "network.");
404 return (NULL);
405 }
406
407 /*
408 * Lookup the network in the preferences...
409 */
410
411 if ((locations = appleCopyLocations()) == NULL)
412 {
413 /*
414 * Missing or bad location array, so no location-based default...
415 */
416
417 DEBUG_puts("1_cupsAppleCopyDefaultPrinter: Missing or bad last used "
418 "printer array.");
419
420 CFRelease(network);
421
422 return (NULL);
423 }
424
425 DEBUG_printf(("1_cupsAppleCopyDefaultPrinter: Got locations, %d entries.",
426 (int)CFArrayGetCount(locations)));
427
428 if ((locprinter = appleGetPrinter(locations, network, NULL)) != NULL)
429 CFRetain(locprinter);
430
431 CFRelease(network);
432 CFRelease(locations);
433
434 return (locprinter);
435 }
436
437
438 /*
439 * '_cupsAppleGetUseLastPrinter()' - Get whether to use the last used printer.
440 */
441
442 int /* O - 1 to use last printer, 0 otherwise */
443 _cupsAppleGetUseLastPrinter(void)
444 {
445 Boolean uselast, /* Use last printer preference value */
446 uselast_set; /* Valid is set? */
447
448
449 if (getenv("CUPS_DISABLE_APPLE_DEFAULT"))
450 return (0);
451
452 uselast = CFPreferencesGetAppBooleanValue(kUseLastPrinter,
453 kCUPSPrintingPrefs,
454 &uselast_set);
455 if (!uselast_set)
456 return (1);
457 else
458 return (uselast);
459 }
460
461
462 /*
463 * '_cupsAppleSetDefaultPaperID()' - Set the default paper id.
464 */
465
466 void
467 _cupsAppleSetDefaultPaperID(
468 CFStringRef name) /* I - New paper ID */
469 {
470 CFPreferencesSetAppValue(kDefaultPaperIDKey, name, kCUPSPrintingPrefs);
471 CFPreferencesAppSynchronize(kCUPSPrintingPrefs);
472 notify_post("com.apple.printerPrefsChange");
473 }
474
475
476 /*
477 * '_cupsAppleSetDefaultPrinter()' - Set the default printer for this location.
478 */
479
480 void
481 _cupsAppleSetDefaultPrinter(
482 CFStringRef name) /* I - Default printer/class name */
483 {
484 CFStringRef network; /* Current network */
485 CFArrayRef locations; /* Old locations array */
486 CFIndex locindex; /* Index in locations array */
487 CFStringRef locprinter; /* Current printer */
488 CFMutableArrayRef newlocations; /* New locations array */
489 CFMutableDictionaryRef newlocation; /* New location */
490
491
492 /*
493 * Get the current location...
494 */
495
496 if ((network = appleCopyNetwork()) == NULL)
497 {
498 DEBUG_puts("1_cupsAppleSetDefaultPrinter: Unable to get current network...");
499 return;
500 }
501
502 /*
503 * Lookup the network in the preferences...
504 */
505
506 if ((locations = appleCopyLocations()) != NULL)
507 locprinter = appleGetPrinter(locations, network, &locindex);
508 else
509 {
510 locprinter = NULL;
511 locindex = -1;
512 }
513
514 if (!locprinter || CFStringCompare(locprinter, name, 0) != kCFCompareEqualTo)
515 {
516 /*
517 * Need to change the locations array...
518 */
519
520 if (locations)
521 {
522 newlocations = CFArrayCreateMutableCopy(kCFAllocatorDefault, 0,
523 locations);
524
525 if (locprinter)
526 CFArrayRemoveValueAtIndex(newlocations, locindex);
527 }
528 else
529 newlocations = CFArrayCreateMutable(kCFAllocatorDefault, 0,
530 &kCFTypeArrayCallBacks);
531
532 newlocation = CFDictionaryCreateMutable(kCFAllocatorDefault, 0,
533 &kCFTypeDictionaryKeyCallBacks,
534 &kCFTypeDictionaryValueCallBacks);
535
536 if (newlocation && newlocations)
537 {
538 /*
539 * Put the new location at the front of the array...
540 */
541
542 CFDictionaryAddValue(newlocation, kLocationNetworkKey, network);
543 CFDictionaryAddValue(newlocation, kLocationPrinterIDKey, name);
544 CFArrayInsertValueAtIndex(newlocations, 0, newlocation);
545
546 /*
547 * Limit the number of locations to 10...
548 */
549
550 while (CFArrayGetCount(newlocations) > 10)
551 CFArrayRemoveValueAtIndex(newlocations, 10);
552
553 /*
554 * Push the changes out...
555 */
556
557 CFPreferencesSetAppValue(kLastUsedPrintersKey, newlocations,
558 kCUPSPrintingPrefs);
559 CFPreferencesAppSynchronize(kCUPSPrintingPrefs);
560 notify_post("com.apple.printerPrefsChange");
561 }
562
563 if (newlocations)
564 CFRelease(newlocations);
565
566 if (newlocation)
567 CFRelease(newlocation);
568 }
569
570 if (locations)
571 CFRelease(locations);
572
573 CFRelease(network);
574 }
575
576
577 /*
578 * '_cupsAppleSetUseLastPrinter()' - Set whether to use the last used printer.
579 */
580
581 void
582 _cupsAppleSetUseLastPrinter(
583 int uselast) /* O - 1 to use last printer, 0 otherwise */
584 {
585 CFPreferencesSetAppValue(kUseLastPrinter,
586 uselast ? kCFBooleanTrue : kCFBooleanFalse,
587 kCUPSPrintingPrefs);
588 CFPreferencesAppSynchronize(kCUPSPrintingPrefs);
589 notify_post("com.apple.printerPrefsChange");
590 }
591 #endif /* __APPLE__ */
592
593
594 /*
595 * 'cupsConnectDest()' - Connect to the server for a destination.
596 *
597 * Connect to the destination, returning a new http_t connection object and
598 * optionally the resource path to use for the destination. These calls will
599 * block until a connection is made, the timeout expires, the integer pointed
600 * to by "cancel" is non-zero, or the callback function (or block) returns 0,
601 * The caller is responsible for calling httpClose() on the returned object.
602 *
603 * @since CUPS 1.6/OS X 10.8@
604 */
605
606 http_t * /* O - Connection to server or @code NULL@ */
607 cupsConnectDest(
608 cups_dest_t *dest, /* I - Destination */
609 unsigned flags, /* I - Connection flags */
610 int msec, /* I - Timeout in milliseconds */
611 int *cancel, /* I - Pointer to "cancel" variable */
612 char *resource, /* I - Resource buffer */
613 size_t resourcesize, /* I - Size of resource buffer */
614 cups_dest_cb_t cb, /* I - Callback function */
615 void *user_data) /* I - User data pointer */
616 {
617 const char *uri; /* Printer URI */
618 char scheme[32], /* URI scheme */
619 userpass[256], /* Username and password (unused) */
620 hostname[256], /* Hostname */
621 tempresource[1024]; /* Temporary resource buffer */
622 int port; /* Port number */
623 char portstr[16]; /* Port number string */
624 http_encryption_t encryption; /* Encryption to use */
625 http_addrlist_t *addrlist; /* Address list for server */
626 http_t *http; /* Connection to server */
627
628
629 /*
630 * Range check input...
631 */
632
633 if (!dest)
634 {
635 if (resource)
636 *resource = '\0';
637
638 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(EINVAL), 0);
639 return (NULL);
640 }
641
642 if (!resource || resourcesize < 1)
643 {
644 resource = tempresource;
645 resourcesize = sizeof(tempresource);
646 }
647
648 /*
649 * Grab the printer URI...
650 */
651
652 if ((uri = cupsGetOption("printer-uri-supported", dest->num_options,
653 dest->options)) == NULL)
654 {
655 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(ENOENT), 0);
656
657 if (cb)
658 (*cb)(user_data, CUPS_DEST_FLAGS_UNCONNECTED | CUPS_DEST_FLAGS_ERROR,
659 dest);
660
661 return (NULL);
662 }
663
664 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
665 if (strstr(uri, "._tcp"))
666 {
667 if ((uri = cups_dnssd_resolve(dest, uri, msec, cancel, cb,
668 user_data)) == NULL)
669 return (NULL);
670 }
671 #endif /* HAVE_DNSSD || HAVE_AVAHI */
672
673 if (httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme, sizeof(scheme),
674 userpass, sizeof(userpass), hostname, sizeof(hostname),
675 &port, resource, resourcesize) < HTTP_URI_STATUS_OK)
676 {
677 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad printer URI."), 1);
678
679 if (cb)
680 (*cb)(user_data, CUPS_DEST_FLAGS_UNCONNECTED | CUPS_DEST_FLAGS_ERROR,
681 dest);
682
683 return (NULL);
684 }
685
686 /*
687 * Lookup the address for the server...
688 */
689
690 if (cb)
691 (*cb)(user_data, CUPS_DEST_FLAGS_UNCONNECTED | CUPS_DEST_FLAGS_RESOLVING,
692 dest);
693
694 snprintf(portstr, sizeof(portstr), "%d", port);
695
696 if ((addrlist = httpAddrGetList(hostname, AF_UNSPEC, portstr)) == NULL)
697 {
698 if (cb)
699 (*cb)(user_data, CUPS_DEST_FLAGS_UNCONNECTED | CUPS_DEST_FLAGS_ERROR,
700 dest);
701
702 return (NULL);
703 }
704
705 if (cancel && *cancel)
706 {
707 httpAddrFreeList(addrlist);
708
709 if (cb)
710 (*cb)(user_data, CUPS_DEST_FLAGS_UNCONNECTED | CUPS_DEST_FLAGS_CANCELED,
711 dest);
712
713 return (NULL);
714 }
715
716 /*
717 * Create the HTTP object pointing to the server referenced by the URI...
718 */
719
720 if (!strcmp(scheme, "ipps") || port == 443)
721 encryption = HTTP_ENCRYPTION_ALWAYS;
722 else
723 encryption = HTTP_ENCRYPTION_IF_REQUESTED;
724
725 http = httpConnect2(hostname, port, addrlist, AF_UNSPEC, encryption, 1, 0,
726 NULL);
727
728 /*
729 * Connect if requested...
730 */
731
732 if (flags & CUPS_DEST_FLAGS_UNCONNECTED)
733 {
734 if (cb)
735 (*cb)(user_data, CUPS_DEST_FLAGS_UNCONNECTED, dest);
736 }
737 else
738 {
739 if (cb)
740 (*cb)(user_data, CUPS_DEST_FLAGS_UNCONNECTED | CUPS_DEST_FLAGS_CONNECTING,
741 dest);
742
743 if (!httpReconnect2(http, msec, cancel) && cb)
744 {
745 if (cancel && *cancel)
746 (*cb)(user_data,
747 CUPS_DEST_FLAGS_UNCONNECTED | CUPS_DEST_FLAGS_CONNECTING, dest);
748 else
749 (*cb)(user_data, CUPS_DEST_FLAGS_UNCONNECTED | CUPS_DEST_FLAGS_ERROR,
750 dest);
751 }
752 else if (cb)
753 (*cb)(user_data, CUPS_DEST_FLAGS_NONE, dest);
754 }
755
756 return (http);
757 }
758
759
760 #ifdef __BLOCKS__
761 /*
762 * 'cupsConnectDestBlock()' - Connect to the server for a destination.
763 *
764 * Connect to the destination, returning a new http_t connection object and
765 * optionally the resource path to use for the destination. These calls will
766 * block until a connection is made, the timeout expires, the integer pointed
767 * to by "cancel" is non-zero, or the callback function (or block) returns 0,
768 * The caller is responsible for calling httpClose() on the returned object.
769 *
770 * @since CUPS 1.6/OS X 10.8@
771 */
772
773 http_t * /* O - Connection to server or @code NULL@ */
774 cupsConnectDestBlock(
775 cups_dest_t *dest, /* I - Destination */
776 unsigned flags, /* I - Connection flags */
777 int msec, /* I - Timeout in milliseconds */
778 int *cancel, /* I - Pointer to "cancel" variable */
779 char *resource, /* I - Resource buffer */
780 size_t resourcesize, /* I - Size of resource buffer */
781 cups_dest_block_t block) /* I - Callback block */
782 {
783 return (cupsConnectDest(dest, flags, msec, cancel, resource, resourcesize,
784 (cups_dest_cb_t)cups_block_cb, (void *)block));
785 }
786 #endif /* __BLOCKS__ */
787
788
789 /*
790 * 'cupsCopyDest()' - Copy a destination.
791 *
792 * Make a copy of the destination to an array of destinations (or just a single
793 * copy) - for use with the cupsEnumDests* functions. The caller is responsible
794 * for calling cupsFreeDests() on the returned object(s).
795 *
796 * @since CUPS 1.6/OS X 10.8@
797 */
798
799 int
800 cupsCopyDest(cups_dest_t *dest,
801 int num_dests,
802 cups_dest_t **dests)
803 {
804 int i; /* Looping var */
805 cups_dest_t *new_dest; /* New destination pointer */
806 cups_option_t *new_option, /* Current destination option */
807 *option; /* Current parent option */
808
809
810 /*
811 * Range check input...
812 */
813
814 if (!dest || num_dests < 0 || !dests)
815 return (num_dests);
816
817 /*
818 * See if the destination already exists...
819 */
820
821 if ((new_dest = cupsGetDest(dest->name, dest->instance, num_dests,
822 *dests)) != NULL)
823 {
824 /*
825 * Protect against copying destination to itself...
826 */
827
828 if (new_dest == dest)
829 return (num_dests);
830
831 /*
832 * Otherwise, free the options...
833 */
834
835 cupsFreeOptions(new_dest->num_options, new_dest->options);
836
837 new_dest->num_options = 0;
838 new_dest->options = NULL;
839 }
840 else
841 new_dest = cups_add_dest(dest->name, dest->instance, &num_dests, dests);
842
843 if (new_dest)
844 {
845 if ((new_dest->options = calloc(sizeof(cups_option_t),
846 dest->num_options)) == NULL)
847 return (cupsRemoveDest(dest->name, dest->instance, num_dests, dests));
848
849 new_dest->num_options = dest->num_options;
850
851 for (i = dest->num_options, option = dest->options,
852 new_option = new_dest->options;
853 i > 0;
854 i --, option ++, new_option ++)
855 {
856 new_option->name = _cupsStrRetain(option->name);
857 new_option->value = _cupsStrRetain(option->value);
858 }
859 }
860
861 return (num_dests);
862 }
863
864
865 /*
866 * 'cupsEnumDests()' - Enumerate available destinations with a callback function.
867 *
868 * Destinations are enumerated from one or more sources. The callback function
869 * receives the @code user_data@ pointer, destination name, instance, number of
870 * options, and options which can be used as input to the @link cupsAddDest@
871 * function. The function must return 1 to continue enumeration or 0 to stop.
872 *
873 * Enumeration happens on the current thread and does not return until all
874 * destinations have been enumerated or the callback function returns 0.
875 *
876 * @since CUPS 1.6/OS X 10.8@
877 */
878
879 int /* O - 1 on success, 0 on failure */
880 cupsEnumDests(
881 unsigned flags, /* I - Enumeration flags */
882 int msec, /* I - Timeout in milliseconds,
883 * -1 for indefinite */
884 int *cancel, /* I - Pointer to "cancel" variable */
885 cups_ptype_t type, /* I - Printer type bits */
886 cups_ptype_t mask, /* I - Mask for printer type bits */
887 cups_dest_cb_t cb, /* I - Callback function */
888 void *user_data) /* I - User data */
889 {
890 int i, /* Looping var */
891 num_dests; /* Number of destinations */
892 cups_dest_t *dests = NULL, /* Destinations */
893 *dest; /* Current destination */
894 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
895 int count, /* Number of queries started */
896 remaining; /* Remainder of timeout */
897 _cups_dnssd_data_t data; /* Data for callback */
898 _cups_dnssd_device_t *device; /* Current device */
899 # ifdef HAVE_DNSSD
900 int nfds, /* Number of files responded */
901 main_fd; /* File descriptor for lookups */
902 DNSServiceRef ipp_ref, /* IPP browser */
903 local_ipp_ref; /* Local IPP browser */
904 # ifdef HAVE_SSL
905 DNSServiceRef ipps_ref, /* IPPS browser */
906 local_ipps_ref; /* Local IPPS browser */
907 # endif /* HAVE_SSL */
908 # ifdef HAVE_POLL
909 struct pollfd pfd; /* Polling data */
910 # else
911 fd_set input; /* Input set for select() */
912 struct timeval timeout; /* Timeout for select() */
913 # endif /* HAVE_POLL */
914 # else /* HAVE_AVAHI */
915 int error; /* Error value */
916 AvahiServiceBrowser *ipp_ref; /* IPP browser */
917 # ifdef HAVE_SSL
918 AvahiServiceBrowser *ipps_ref; /* IPPS browser */
919 # endif /* HAVE_SSL */
920 # endif /* HAVE_DNSSD */
921 #endif /* HAVE_DNSSD || HAVE_AVAHI */
922
923 /*
924 * Range check input...
925 */
926
927 (void)flags;
928
929 if (!cb)
930 return (0);
931
932 /*
933 * Get the list of local printers and pass them to the callback function...
934 */
935
936 num_dests = _cupsGetDests(CUPS_HTTP_DEFAULT, IPP_OP_CUPS_GET_PRINTERS, NULL,
937 &dests, type, mask);
938
939 for (i = num_dests, dest = dests;
940 i > 0 && (!cancel || !*cancel);
941 i --, dest ++)
942 if (!(*cb)(user_data, i > 1 ? CUPS_DEST_FLAGS_MORE : CUPS_DEST_FLAGS_NONE,
943 dest))
944 break;
945
946 cupsFreeDests(num_dests, dests);
947
948 if (i > 0 || msec == 0)
949 return (1);
950
951 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
952 /*
953 * Get Bonjour-shared printers...
954 */
955
956 data.type = type;
957 data.mask = mask;
958 data.devices = cupsArrayNew3((cups_array_func_t)cups_dnssd_compare_devices,
959 NULL, NULL, 0, NULL,
960 (cups_afree_func_t)cups_dnssd_free_device);
961
962 # ifdef HAVE_DNSSD
963 if (DNSServiceCreateConnection(&data.main_ref) != kDNSServiceErr_NoError)
964 return (0);
965
966 main_fd = DNSServiceRefSockFD(data.main_ref);
967
968 ipp_ref = data.main_ref;
969 DNSServiceBrowse(&ipp_ref, kDNSServiceFlagsShareConnection, 0,
970 "_ipp._tcp", NULL,
971 (DNSServiceBrowseReply)cups_dnssd_browse_cb, &data);
972
973 local_ipp_ref = data.main_ref;
974 DNSServiceBrowse(&local_ipp_ref, kDNSServiceFlagsShareConnection,
975 kDNSServiceInterfaceIndexLocalOnly,
976 "_ipp._tcp", NULL,
977 (DNSServiceBrowseReply)cups_dnssd_local_cb, &data);
978
979 # ifdef HAVE_SSL
980 ipps_ref = data.main_ref;
981 DNSServiceBrowse(&ipps_ref, kDNSServiceFlagsShareConnection, 0,
982 "_ipps._tcp", NULL,
983 (DNSServiceBrowseReply)cups_dnssd_browse_cb, &data);
984
985 local_ipps_ref = data.main_ref;
986 DNSServiceBrowse(&local_ipps_ref, kDNSServiceFlagsShareConnection,
987 kDNSServiceInterfaceIndexLocalOnly,
988 "_ipps._tcp", NULL,
989 (DNSServiceBrowseReply)cups_dnssd_local_cb, &data);
990 # endif /* HAVE_SSL */
991
992 # else /* HAVE_AVAHI */
993 if ((data.simple_poll = avahi_simple_poll_new()) == NULL)
994 {
995 DEBUG_puts("cupsEnumDests: Unable to create Avahi simple poll object.");
996 return (1);
997 }
998
999 avahi_simple_poll_set_func(data.simple_poll, cups_dnssd_poll_cb, &data);
1000
1001 data.client = avahi_client_new(avahi_simple_poll_get(data.simple_poll),
1002 0, cups_dnssd_client_cb, &data,
1003 &error);
1004 if (!data.client)
1005 {
1006 DEBUG_puts("cupsEnumDests: Unable to create Avahi client.");
1007 avahi_simple_poll_free(data.simple_poll);
1008 return (1);
1009 }
1010
1011 ipp_ref = avahi_service_browser_new(data.client, AVAHI_IF_UNSPEC,
1012 AVAHI_PROTO_UNSPEC, "_ipp._tcp", NULL,
1013 0, cups_dnssd_browse_cb, &data);
1014 # ifdef HAVE_SSL
1015 ipps_ref = avahi_service_browser_new(data.client, AVAHI_IF_UNSPEC,
1016 AVAHI_PROTO_UNSPEC, "_ipps._tcp", NULL,
1017 0, cups_dnssd_browse_cb, &data);
1018 # endif /* HAVE_SSL */
1019 # endif /* HAVE_DNSSD */
1020
1021 if (msec < 0)
1022 remaining = INT_MAX;
1023 else
1024 remaining = msec;
1025
1026 while (remaining > 0 && (!cancel || !*cancel))
1027 {
1028 /*
1029 * Check for input...
1030 */
1031
1032 # ifdef HAVE_DNSSD
1033 # ifdef HAVE_POLL
1034 pfd.fd = main_fd;
1035 pfd.events = POLLIN;
1036
1037 nfds = poll(&pfd, 1, remaining > 250 ? 250 : remaining);
1038
1039 # else
1040 FD_ZERO(&input);
1041 FD_SET(main_fd, &input);
1042
1043 timeout.tv_sec = 0;
1044 timeout.tv_usec = remaining > 250 ? 250000 : remaining * 1000;
1045
1046 nfds = select(main_fd + 1, &input, NULL, NULL, &timeout);
1047 # endif /* HAVE_POLL */
1048
1049 if (nfds > 0)
1050 DNSServiceProcessResult(data.main_ref);
1051 else if (nfds == 0)
1052 remaining -= 250;
1053
1054 # else /* HAVE_AVAHI */
1055 data.got_data = 0;
1056
1057 if ((error = avahi_simple_poll_iterate(data.simple_poll, 250)) > 0)
1058 {
1059 /*
1060 * We've been told to exit the loop. Perhaps the connection to
1061 * Avahi failed.
1062 */
1063
1064 break;
1065 }
1066
1067 if (!data.got_data)
1068 remaining -= 250;
1069 # endif /* HAVE_DNSSD */
1070
1071 for (device = (_cups_dnssd_device_t *)cupsArrayFirst(data.devices),
1072 count = 0;
1073 device;
1074 device = (_cups_dnssd_device_t *)cupsArrayNext(data.devices))
1075 {
1076 if (device->ref)
1077 count ++;
1078
1079 if (!device->ref && device->state == _CUPS_DNSSD_NEW)
1080 {
1081 DEBUG_printf(("1cupsEnumDests: Querying '%s'.", device->fullName));
1082
1083 # ifdef HAVE_DNSSD
1084 device->ref = data.main_ref;
1085
1086 if (DNSServiceQueryRecord(&(device->ref),
1087 kDNSServiceFlagsShareConnection,
1088 0, device->fullName,
1089 kDNSServiceType_TXT,
1090 kDNSServiceClass_IN,
1091 (DNSServiceQueryRecordReply)cups_dnssd_query_cb,
1092 &data) == kDNSServiceErr_NoError)
1093 {
1094 count ++;
1095 }
1096 else
1097 {
1098 device->ref = 0;
1099 device->state = _CUPS_DNSSD_ERROR;
1100
1101 DEBUG_puts("1cupsEnumDests: Query failed.");
1102 }
1103
1104 # else /* HAVE_AVAHI */
1105 if ((device->ref = avahi_record_browser_new(data.client,
1106 AVAHI_IF_UNSPEC,
1107 AVAHI_PROTO_UNSPEC,
1108 device->fullName,
1109 AVAHI_DNS_CLASS_IN,
1110 AVAHI_DNS_TYPE_TXT,
1111 0,
1112 cups_dnssd_query_cb,
1113 &data)) != NULL)
1114 {
1115 count ++;
1116 }
1117 else
1118 {
1119 device->state = _CUPS_DNSSD_ERROR;
1120
1121 DEBUG_printf(("1cupsEnumDests: Query failed: %s",
1122 avahi_strerror(avahi_client_errno(data.client))));
1123 }
1124 # endif /* HAVE_DNSSD */
1125 }
1126 else if (device->ref && device->state == _CUPS_DNSSD_PENDING)
1127 {
1128 if ((device->type & mask) == type)
1129 {
1130 if (!(*cb)(user_data, CUPS_DEST_FLAGS_NONE, &device->dest))
1131 {
1132 remaining = -1;
1133 break;
1134 }
1135 }
1136
1137 device->state = _CUPS_DNSSD_ACTIVE;
1138 }
1139 }
1140 }
1141
1142 cupsArrayDelete(data.devices);
1143
1144 # ifdef HAVE_DNSSD
1145 DNSServiceRefDeallocate(ipp_ref);
1146 DNSServiceRefDeallocate(local_ipp_ref);
1147
1148 # ifdef HAVE_SSL
1149 DNSServiceRefDeallocate(ipp_ref);
1150 DNSServiceRefDeallocate(local_ipp_ref);
1151 # endif /* HAVE_SSL */
1152
1153 DNSServiceRefDeallocate(data.main_ref);
1154
1155 # else /* HAVE_AVAHI */
1156 avahi_service_browser_free(ipp_ref);
1157 # ifdef HAVE_SSL
1158 avahi_service_browser_free(ipps_ref);
1159 # endif /* HAVE_SSL */
1160
1161 avahi_client_free(data.client);
1162 avahi_simple_poll_free(data.simple_poll);
1163 # endif /* HAVE_DNSSD */
1164 #endif /* HAVE_DNSSD || HAVE_DNSSD */
1165
1166 return (1);
1167 }
1168
1169
1170 # ifdef __BLOCKS__
1171 /*
1172 * 'cupsEnumDestsBlock()' - Enumerate available destinations with a block.
1173 *
1174 * Destinations are enumerated from one or more sources. The block receives the
1175 * destination name, instance, number of options, and options which can be used
1176 * as input to the @link cupsAddDest@ function. The block must return 1 to
1177 * continue enumeration or 0 to stop.
1178 *
1179 * Enumeration happens on the current thread and does not return until all
1180 * destinations have been enumerated or the block returns 0.
1181 *
1182 * @since CUPS 1.6/OS X 10.8@
1183 */
1184
1185 int /* O - 1 on success, 0 on failure */
1186 cupsEnumDestsBlock(
1187 unsigned flags, /* I - Enumeration flags */
1188 int timeout, /* I - Timeout in milliseconds, 0 for indefinite */
1189 int *cancel, /* I - Pointer to "cancel" variable */
1190 cups_ptype_t type, /* I - Printer type bits */
1191 cups_ptype_t mask, /* I - Mask for printer type bits */
1192 cups_dest_block_t block) /* I - Block */
1193 {
1194 return (cupsEnumDests(flags, timeout, cancel, type, mask,
1195 (cups_dest_cb_t)cups_block_cb, (void *)block));
1196 }
1197 # endif /* __BLOCKS__ */
1198
1199
1200 /*
1201 * 'cupsFreeDests()' - Free the memory used by the list of destinations.
1202 */
1203
1204 void
1205 cupsFreeDests(int num_dests, /* I - Number of destinations */
1206 cups_dest_t *dests) /* I - Destinations */
1207 {
1208 int i; /* Looping var */
1209 cups_dest_t *dest; /* Current destination */
1210
1211
1212 if (num_dests == 0 || dests == NULL)
1213 return;
1214
1215 for (i = num_dests, dest = dests; i > 0; i --, dest ++)
1216 {
1217 _cupsStrFree(dest->name);
1218 _cupsStrFree(dest->instance);
1219
1220 cupsFreeOptions(dest->num_options, dest->options);
1221 }
1222
1223 free(dests);
1224 }
1225
1226
1227 /*
1228 * 'cupsGetDest()' - Get the named destination from the list.
1229 *
1230 * Use the @link cupsGetDests@ or @link cupsGetDests2@ functions to get a
1231 * list of supported destinations for the current user.
1232 */
1233
1234 cups_dest_t * /* O - Destination pointer or @code NULL@ */
1235 cupsGetDest(const char *name, /* I - Destination name or @code NULL@ for the default destination */
1236 const char *instance, /* I - Instance name or @code NULL@ */
1237 int num_dests, /* I - Number of destinations */
1238 cups_dest_t *dests) /* I - Destinations */
1239 {
1240 int diff, /* Result of comparison */
1241 match; /* Matching index */
1242
1243
1244 if (num_dests <= 0 || !dests)
1245 return (NULL);
1246
1247 if (!name)
1248 {
1249 /*
1250 * NULL name for default printer.
1251 */
1252
1253 while (num_dests > 0)
1254 {
1255 if (dests->is_default)
1256 return (dests);
1257
1258 num_dests --;
1259 dests ++;
1260 }
1261 }
1262 else
1263 {
1264 /*
1265 * Lookup name and optionally the instance...
1266 */
1267
1268 match = cups_find_dest(name, instance, num_dests, dests, -1, &diff);
1269
1270 if (!diff)
1271 return (dests + match);
1272 }
1273
1274 return (NULL);
1275 }
1276
1277
1278 /*
1279 * '_cupsGetDestResource()' - Get the resource path and URI for a destination.
1280 */
1281
1282 const char * /* O - Printer URI */
1283 _cupsGetDestResource(
1284 cups_dest_t *dest, /* I - Destination */
1285 char *resource, /* I - Resource buffer */
1286 size_t resourcesize) /* I - Size of resource buffer */
1287 {
1288 const char *uri; /* Printer URI */
1289 char scheme[32], /* URI scheme */
1290 userpass[256], /* Username and password (unused) */
1291 hostname[256]; /* Hostname */
1292 int port; /* Port number */
1293
1294
1295 /*
1296 * Range check input...
1297 */
1298
1299 if (!dest || !resource || resourcesize < 1)
1300 {
1301 if (resource)
1302 *resource = '\0';
1303
1304 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(EINVAL), 0);
1305 return (NULL);
1306 }
1307
1308 /*
1309 * Grab the printer URI...
1310 */
1311
1312 if ((uri = cupsGetOption("printer-uri-supported", dest->num_options,
1313 dest->options)) == NULL)
1314 {
1315 if (resource)
1316 *resource = '\0';
1317
1318 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(ENOENT), 0);
1319
1320 return (NULL);
1321 }
1322
1323 #ifdef HAVE_DNSSD
1324 if (strstr(uri, "._tcp"))
1325 {
1326 if ((uri = cups_dnssd_resolve(dest, uri, 5000, NULL, NULL, NULL)) == NULL)
1327 return (NULL);
1328 }
1329 #endif /* HAVE_DNSSD */
1330
1331 if (httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme, sizeof(scheme),
1332 userpass, sizeof(userpass), hostname, sizeof(hostname),
1333 &port, resource, resourcesize) < HTTP_URI_STATUS_OK)
1334 {
1335 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad printer URI."), 1);
1336
1337 return (NULL);
1338 }
1339
1340 return (uri);
1341 }
1342
1343
1344 /*
1345 * '_cupsGetDests()' - Get destinations from a server.
1346 *
1347 * "op" is IPP_OP_CUPS_GET_PRINTERS to get a full list, IPP_OP_CUPS_GET_DEFAULT
1348 * to get the system-wide default printer, or IPP_OP_GET_PRINTER_ATTRIBUTES for
1349 * a known printer.
1350 *
1351 * "name" is the name of an existing printer and is only used when "op" is
1352 * IPP_OP_GET_PRINTER_ATTRIBUTES.
1353 *
1354 * "dest" is initialized to point to the array of destinations.
1355 *
1356 * 0 is returned if there are no printers, no default printer, or the named
1357 * printer does not exist, respectively.
1358 *
1359 * Free the memory used by the destination array using the @link cupsFreeDests@
1360 * function.
1361 *
1362 * Note: On OS X this function also gets the default paper from the system
1363 * preferences (~/L/P/org.cups.PrintingPrefs.plist) and includes it in the
1364 * options array for each destination that supports it.
1365 */
1366
1367 int /* O - Number of destinations */
1368 _cupsGetDests(http_t *http, /* I - Connection to server or
1369 * @code CUPS_HTTP_DEFAULT@ */
1370 ipp_op_t op, /* I - IPP operation */
1371 const char *name, /* I - Name of destination */
1372 cups_dest_t **dests, /* IO - Destinations */
1373 cups_ptype_t type, /* I - Printer type bits */
1374 cups_ptype_t mask) /* I - Printer type mask */
1375 {
1376 int num_dests = 0; /* Number of destinations */
1377 cups_dest_t *dest; /* Current destination */
1378 ipp_t *request, /* IPP Request */
1379 *response; /* IPP Response */
1380 ipp_attribute_t *attr; /* Current attribute */
1381 const char *printer_name; /* printer-name attribute */
1382 char uri[1024]; /* printer-uri value */
1383 int num_options; /* Number of options */
1384 cups_option_t *options; /* Options */
1385 #ifdef __APPLE__
1386 char media_default[41]; /* Default paper size */
1387 #endif /* __APPLE__ */
1388 char optname[1024], /* Option name */
1389 value[2048], /* Option value */
1390 *ptr; /* Pointer into name/value */
1391 static const char * const pattrs[] = /* Attributes we're interested in */
1392 {
1393 "auth-info-required",
1394 "device-uri",
1395 "job-sheets-default",
1396 "marker-change-time",
1397 "marker-colors",
1398 "marker-high-levels",
1399 "marker-levels",
1400 "marker-low-levels",
1401 "marker-message",
1402 "marker-names",
1403 "marker-types",
1404 #ifdef __APPLE__
1405 "media-supported",
1406 #endif /* __APPLE__ */
1407 "printer-commands",
1408 "printer-defaults",
1409 "printer-info",
1410 "printer-is-accepting-jobs",
1411 "printer-is-shared",
1412 "printer-location",
1413 "printer-make-and-model",
1414 "printer-mandatory-job-attributes",
1415 "printer-name",
1416 "printer-state",
1417 "printer-state-change-time",
1418 "printer-state-reasons",
1419 "printer-type",
1420 "printer-uri-supported"
1421 };
1422
1423
1424 #ifdef __APPLE__
1425 /*
1426 * Get the default paper size...
1427 */
1428
1429 appleGetPaperSize(media_default, sizeof(media_default));
1430 #endif /* __APPLE__ */
1431
1432 /*
1433 * Build a IPP_OP_CUPS_GET_PRINTERS or IPP_OP_GET_PRINTER_ATTRIBUTES request, which
1434 * require the following attributes:
1435 *
1436 * attributes-charset
1437 * attributes-natural-language
1438 * requesting-user-name
1439 * printer-uri [for IPP_OP_GET_PRINTER_ATTRIBUTES]
1440 */
1441
1442 request = ippNewRequest(op);
1443
1444 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
1445 "requested-attributes", sizeof(pattrs) / sizeof(pattrs[0]),
1446 NULL, pattrs);
1447
1448 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
1449 "requesting-user-name", NULL, cupsUser());
1450
1451 if (name && op != IPP_OP_CUPS_GET_DEFAULT)
1452 {
1453 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
1454 "localhost", ippPort(), "/printers/%s", name);
1455 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri", NULL,
1456 uri);
1457 }
1458 else if (mask)
1459 {
1460 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_ENUM, "printer-type",
1461 type);
1462 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_ENUM, "printer-type-mask",
1463 mask);
1464 }
1465
1466 /*
1467 * Do the request and get back a response...
1468 */
1469
1470 if ((response = cupsDoRequest(http, request, "/")) != NULL)
1471 {
1472 for (attr = response->attrs; attr != NULL; attr = attr->next)
1473 {
1474 /*
1475 * Skip leading attributes until we hit a printer...
1476 */
1477
1478 while (attr != NULL && attr->group_tag != IPP_TAG_PRINTER)
1479 attr = attr->next;
1480
1481 if (attr == NULL)
1482 break;
1483
1484 /*
1485 * Pull the needed attributes from this printer...
1486 */
1487
1488 printer_name = NULL;
1489 num_options = 0;
1490 options = NULL;
1491
1492 for (; attr && attr->group_tag == IPP_TAG_PRINTER; attr = attr->next)
1493 {
1494 if (attr->value_tag != IPP_TAG_INTEGER &&
1495 attr->value_tag != IPP_TAG_ENUM &&
1496 attr->value_tag != IPP_TAG_BOOLEAN &&
1497 attr->value_tag != IPP_TAG_TEXT &&
1498 attr->value_tag != IPP_TAG_TEXTLANG &&
1499 attr->value_tag != IPP_TAG_NAME &&
1500 attr->value_tag != IPP_TAG_NAMELANG &&
1501 attr->value_tag != IPP_TAG_KEYWORD &&
1502 attr->value_tag != IPP_TAG_RANGE &&
1503 attr->value_tag != IPP_TAG_URI)
1504 continue;
1505
1506 if (!strcmp(attr->name, "auth-info-required") ||
1507 !strcmp(attr->name, "device-uri") ||
1508 !strcmp(attr->name, "marker-change-time") ||
1509 !strcmp(attr->name, "marker-colors") ||
1510 !strcmp(attr->name, "marker-high-levels") ||
1511 !strcmp(attr->name, "marker-levels") ||
1512 !strcmp(attr->name, "marker-low-levels") ||
1513 !strcmp(attr->name, "marker-message") ||
1514 !strcmp(attr->name, "marker-names") ||
1515 !strcmp(attr->name, "marker-types") ||
1516 !strcmp(attr->name, "printer-commands") ||
1517 !strcmp(attr->name, "printer-info") ||
1518 !strcmp(attr->name, "printer-is-shared") ||
1519 !strcmp(attr->name, "printer-make-and-model") ||
1520 !strcmp(attr->name, "printer-mandatory-job-attributes") ||
1521 !strcmp(attr->name, "printer-state") ||
1522 !strcmp(attr->name, "printer-state-change-time") ||
1523 !strcmp(attr->name, "printer-type") ||
1524 !strcmp(attr->name, "printer-is-accepting-jobs") ||
1525 !strcmp(attr->name, "printer-location") ||
1526 !strcmp(attr->name, "printer-state-reasons") ||
1527 !strcmp(attr->name, "printer-uri-supported"))
1528 {
1529 /*
1530 * Add a printer description attribute...
1531 */
1532
1533 num_options = cupsAddOption(attr->name,
1534 cups_make_string(attr, value,
1535 sizeof(value)),
1536 num_options, &options);
1537 }
1538 #ifdef __APPLE__
1539 else if (!strcmp(attr->name, "media-supported"))
1540 {
1541 /*
1542 * See if we can set a default media size...
1543 */
1544
1545 int i; /* Looping var */
1546
1547 for (i = 0; i < attr->num_values; i ++)
1548 if (!_cups_strcasecmp(media_default, attr->values[i].string.text))
1549 {
1550 num_options = cupsAddOption("media", media_default, num_options,
1551 &options);
1552 break;
1553 }
1554 }
1555 #endif /* __APPLE__ */
1556 else if (!strcmp(attr->name, "printer-name") &&
1557 attr->value_tag == IPP_TAG_NAME)
1558 printer_name = attr->values[0].string.text;
1559 else if (strncmp(attr->name, "notify-", 7) &&
1560 (attr->value_tag == IPP_TAG_BOOLEAN ||
1561 attr->value_tag == IPP_TAG_ENUM ||
1562 attr->value_tag == IPP_TAG_INTEGER ||
1563 attr->value_tag == IPP_TAG_KEYWORD ||
1564 attr->value_tag == IPP_TAG_NAME ||
1565 attr->value_tag == IPP_TAG_RANGE) &&
1566 (ptr = strstr(attr->name, "-default")) != NULL)
1567 {
1568 /*
1569 * Add a default option...
1570 */
1571
1572 strlcpy(optname, attr->name, sizeof(optname));
1573 optname[ptr - attr->name] = '\0';
1574
1575 if (_cups_strcasecmp(optname, "media") ||
1576 !cupsGetOption("media", num_options, options))
1577 num_options = cupsAddOption(optname,
1578 cups_make_string(attr, value,
1579 sizeof(value)),
1580 num_options, &options);
1581 }
1582 }
1583
1584 /*
1585 * See if we have everything needed...
1586 */
1587
1588 if (!printer_name)
1589 {
1590 cupsFreeOptions(num_options, options);
1591
1592 if (attr == NULL)
1593 break;
1594 else
1595 continue;
1596 }
1597
1598 if ((dest = cups_add_dest(printer_name, NULL, &num_dests, dests)) != NULL)
1599 {
1600 dest->num_options = num_options;
1601 dest->options = options;
1602 }
1603 else
1604 cupsFreeOptions(num_options, options);
1605
1606 if (attr == NULL)
1607 break;
1608 }
1609
1610 ippDelete(response);
1611 }
1612
1613 /*
1614 * Return the count...
1615 */
1616
1617 return (num_dests);
1618 }
1619
1620
1621 /*
1622 * 'cupsGetDests()' - Get the list of destinations from the default server.
1623 *
1624 * Starting with CUPS 1.2, the returned list of destinations include the
1625 * printer-info, printer-is-accepting-jobs, printer-is-shared,
1626 * printer-make-and-model, printer-state, printer-state-change-time,
1627 * printer-state-reasons, and printer-type attributes as options. CUPS 1.4
1628 * adds the marker-change-time, marker-colors, marker-high-levels,
1629 * marker-levels, marker-low-levels, marker-message, marker-names,
1630 * marker-types, and printer-commands attributes as well.
1631 *
1632 * Use the @link cupsFreeDests@ function to free the destination list and
1633 * the @link cupsGetDest@ function to find a particular destination.
1634 */
1635
1636 int /* O - Number of destinations */
1637 cupsGetDests(cups_dest_t **dests) /* O - Destinations */
1638 {
1639 return (cupsGetDests2(CUPS_HTTP_DEFAULT, dests));
1640 }
1641
1642
1643 /*
1644 * 'cupsGetDests2()' - Get the list of destinations from the specified server.
1645 *
1646 * Starting with CUPS 1.2, the returned list of destinations include the
1647 * printer-info, printer-is-accepting-jobs, printer-is-shared,
1648 * printer-make-and-model, printer-state, printer-state-change-time,
1649 * printer-state-reasons, and printer-type attributes as options. CUPS 1.4
1650 * adds the marker-change-time, marker-colors, marker-high-levels,
1651 * marker-levels, marker-low-levels, marker-message, marker-names,
1652 * marker-types, and printer-commands attributes as well.
1653 *
1654 * Use the @link cupsFreeDests@ function to free the destination list and
1655 * the @link cupsGetDest@ function to find a particular destination.
1656 *
1657 * @since CUPS 1.1.21/OS X 10.4@
1658 */
1659
1660 int /* O - Number of destinations */
1661 cupsGetDests2(http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
1662 cups_dest_t **dests) /* O - Destinations */
1663 {
1664 int num_dests; /* Number of destinations */
1665 cups_dest_t *dest; /* Destination pointer */
1666 const char *home; /* HOME environment variable */
1667 char filename[1024]; /* Local ~/.cups/lpoptions file */
1668 const char *defprinter; /* Default printer */
1669 char name[1024], /* Copy of printer name */
1670 *instance, /* Pointer to instance name */
1671 *user_default; /* User default printer */
1672 int num_reals; /* Number of real queues */
1673 cups_dest_t *reals; /* Real queues */
1674 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */
1675
1676
1677 /*
1678 * Range check the input...
1679 */
1680
1681 if (!dests)
1682 {
1683 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad NULL dests pointer"), 1);
1684 return (0);
1685 }
1686
1687 /*
1688 * Grab the printers and classes...
1689 */
1690
1691 *dests = (cups_dest_t *)0;
1692 num_dests = _cupsGetDests(http, IPP_OP_CUPS_GET_PRINTERS, NULL, dests, 0, 0);
1693
1694 if (cupsLastError() >= IPP_STATUS_REDIRECTION_OTHER_SITE)
1695 {
1696 cupsFreeDests(num_dests, *dests);
1697 *dests = (cups_dest_t *)0;
1698 return (0);
1699 }
1700
1701 /*
1702 * Make a copy of the "real" queues for a later sanity check...
1703 */
1704
1705 if (num_dests > 0)
1706 {
1707 num_reals = num_dests;
1708 reals = calloc(num_reals, sizeof(cups_dest_t));
1709
1710 if (reals)
1711 memcpy(reals, *dests, num_reals * sizeof(cups_dest_t));
1712 else
1713 num_reals = 0;
1714 }
1715 else
1716 {
1717 num_reals = 0;
1718 reals = NULL;
1719 }
1720
1721 /*
1722 * Grab the default destination...
1723 */
1724
1725 if ((user_default = _cupsUserDefault(name, sizeof(name))) != NULL)
1726 defprinter = name;
1727 else if ((defprinter = cupsGetDefault2(http)) != NULL)
1728 {
1729 strlcpy(name, defprinter, sizeof(name));
1730 defprinter = name;
1731 }
1732
1733 if (defprinter)
1734 {
1735 /*
1736 * Separate printer and instance name...
1737 */
1738
1739 if ((instance = strchr(name, '/')) != NULL)
1740 *instance++ = '\0';
1741
1742 /*
1743 * Lookup the printer and instance and make it the default...
1744 */
1745
1746 if ((dest = cupsGetDest(name, instance, num_dests, *dests)) != NULL)
1747 dest->is_default = 1;
1748 }
1749 else
1750 instance = NULL;
1751
1752 /*
1753 * Load the /etc/cups/lpoptions and ~/.cups/lpoptions files...
1754 */
1755
1756 snprintf(filename, sizeof(filename), "%s/lpoptions", cg->cups_serverroot);
1757 num_dests = cups_get_dests(filename, NULL, NULL, user_default != NULL,
1758 num_dests, dests);
1759
1760 if ((home = getenv("HOME")) != NULL)
1761 {
1762 snprintf(filename, sizeof(filename), "%s/.cups/lpoptions", home);
1763
1764 num_dests = cups_get_dests(filename, NULL, NULL, user_default != NULL,
1765 num_dests, dests);
1766 }
1767
1768 /*
1769 * Validate the current default destination - this prevents old
1770 * Default lines in /etc/cups/lpoptions and ~/.cups/lpoptions from
1771 * pointing to a non-existent printer or class...
1772 */
1773
1774 if (num_reals)
1775 {
1776 /*
1777 * See if we have a default printer...
1778 */
1779
1780 if ((dest = cupsGetDest(NULL, NULL, num_dests, *dests)) != NULL)
1781 {
1782 /*
1783 * Have a default; see if it is real...
1784 */
1785
1786 if (!cupsGetDest(dest->name, NULL, num_reals, reals))
1787 {
1788 /*
1789 * Remove the non-real printer from the list, since we don't want jobs
1790 * going to an unexpected printer... (<rdar://problem/14216472>)
1791 */
1792
1793 num_dests = cupsRemoveDest(dest->name, dest->instance, num_dests,
1794 dests);
1795 }
1796 }
1797
1798 /*
1799 * Free memory...
1800 */
1801
1802 free(reals);
1803 }
1804
1805 /*
1806 * Return the number of destinations...
1807 */
1808
1809 if (num_dests > 0)
1810 _cupsSetError(IPP_STATUS_OK, NULL, 0);
1811
1812 return (num_dests);
1813 }
1814
1815
1816 /*
1817 * 'cupsGetNamedDest()' - Get options for the named destination.
1818 *
1819 * This function is optimized for retrieving a single destination and should
1820 * be used instead of @link cupsGetDests@ and @link cupsGetDest@ when you either
1821 * know the name of the destination or want to print to the default destination.
1822 * If @code NULL@ is returned, the destination does not exist or there is no
1823 * default destination.
1824 *
1825 * If "http" is @code CUPS_HTTP_DEFAULT@, the connection to the default print
1826 * server will be used.
1827 *
1828 * If "name" is @code NULL@, the default printer for the current user will be
1829 * returned.
1830 *
1831 * The returned destination must be freed using @link cupsFreeDests@ with a
1832 * "num_dests" value of 1.
1833 *
1834 * @since CUPS 1.4/OS X 10.6@
1835 */
1836
1837 cups_dest_t * /* O - Destination or @code NULL@ */
1838 cupsGetNamedDest(http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
1839 const char *name, /* I - Destination name or @code NULL@ for the default destination */
1840 const char *instance) /* I - Instance name or @code NULL@ */
1841 {
1842 cups_dest_t *dest; /* Destination */
1843 char filename[1024], /* Path to lpoptions */
1844 defname[256]; /* Default printer name */
1845 const char *home = getenv("HOME"); /* Home directory */
1846 int set_as_default = 0; /* Set returned destination as default */
1847 ipp_op_t op = IPP_OP_GET_PRINTER_ATTRIBUTES;
1848 /* IPP operation to get server ops */
1849 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */
1850
1851
1852 /*
1853 * If "name" is NULL, find the default destination...
1854 */
1855
1856 if (!name)
1857 {
1858 set_as_default = 1;
1859 name = _cupsUserDefault(defname, sizeof(defname));
1860
1861 if (name)
1862 {
1863 char *ptr; /* Temporary pointer... */
1864
1865 if ((ptr = strchr(defname, '/')) != NULL)
1866 {
1867 *ptr++ = '\0';
1868 instance = ptr;
1869 }
1870 else
1871 instance = NULL;
1872 }
1873 else if (home)
1874 {
1875 /*
1876 * No default in the environment, try the user's lpoptions files...
1877 */
1878
1879 snprintf(filename, sizeof(filename), "%s/.cups/lpoptions", home);
1880
1881 name = cups_get_default(filename, defname, sizeof(defname), &instance);
1882 }
1883
1884 if (!name)
1885 {
1886 /*
1887 * Still not there? Try the system lpoptions file...
1888 */
1889
1890 snprintf(filename, sizeof(filename), "%s/lpoptions",
1891 cg->cups_serverroot);
1892 name = cups_get_default(filename, defname, sizeof(defname), &instance);
1893 }
1894
1895 if (!name)
1896 {
1897 /*
1898 * No locally-set default destination, ask the server...
1899 */
1900
1901 op = IPP_OP_CUPS_GET_DEFAULT;
1902 }
1903 }
1904
1905 /*
1906 * Get the printer's attributes...
1907 */
1908
1909 if (!_cupsGetDests(http, op, name, &dest, 0, 0))
1910 {
1911 if (op == IPP_OP_CUPS_GET_DEFAULT || (name && !set_as_default))
1912 return (NULL);
1913
1914 /*
1915 * The default printer from environment variables or from a
1916 * configuration file does not exist. Find out the real default.
1917 */
1918
1919 if (!_cupsGetDests(http, IPP_OP_CUPS_GET_DEFAULT, NULL, &dest, 0, 0))
1920 return (NULL);
1921 }
1922
1923 if (instance)
1924 dest->instance = _cupsStrAlloc(instance);
1925
1926 if (set_as_default)
1927 dest->is_default = 1;
1928
1929 /*
1930 * Then add local options...
1931 */
1932
1933 snprintf(filename, sizeof(filename), "%s/lpoptions", cg->cups_serverroot);
1934 cups_get_dests(filename, name, instance, 1, 1, &dest);
1935
1936 if (home)
1937 {
1938 snprintf(filename, sizeof(filename), "%s/.cups/lpoptions", home);
1939
1940 cups_get_dests(filename, name, instance, 1, 1, &dest);
1941 }
1942
1943 /*
1944 * Return the result...
1945 */
1946
1947 return (dest);
1948 }
1949
1950
1951 /*
1952 * 'cupsRemoveDest()' - Remove a destination from the destination list.
1953 *
1954 * Removing a destination/instance does not delete the class or printer
1955 * queue, merely the lpoptions for that destination/instance. Use the
1956 * @link cupsSetDests@ or @link cupsSetDests2@ functions to save the new
1957 * options for the user.
1958 *
1959 * @since CUPS 1.3/OS X 10.5@
1960 */
1961
1962 int /* O - New number of destinations */
1963 cupsRemoveDest(const char *name, /* I - Destination name */
1964 const char *instance, /* I - Instance name or @code NULL@ */
1965 int num_dests, /* I - Number of destinations */
1966 cups_dest_t **dests) /* IO - Destinations */
1967 {
1968 int i; /* Index into destinations */
1969 cups_dest_t *dest; /* Pointer to destination */
1970
1971
1972 /*
1973 * Find the destination...
1974 */
1975
1976 if ((dest = cupsGetDest(name, instance, num_dests, *dests)) == NULL)
1977 return (num_dests);
1978
1979 /*
1980 * Free memory...
1981 */
1982
1983 _cupsStrFree(dest->name);
1984 _cupsStrFree(dest->instance);
1985 cupsFreeOptions(dest->num_options, dest->options);
1986
1987 /*
1988 * Remove the destination from the array...
1989 */
1990
1991 num_dests --;
1992
1993 i = dest - *dests;
1994
1995 if (i < num_dests)
1996 memmove(dest, dest + 1, (num_dests - i) * sizeof(cups_dest_t));
1997
1998 return (num_dests);
1999 }
2000
2001
2002 /*
2003 * 'cupsSetDefaultDest()' - Set the default destination.
2004 *
2005 * @since CUPS 1.3/OS X 10.5@
2006 */
2007
2008 void
2009 cupsSetDefaultDest(
2010 const char *name, /* I - Destination name */
2011 const char *instance, /* I - Instance name or @code NULL@ */
2012 int num_dests, /* I - Number of destinations */
2013 cups_dest_t *dests) /* I - Destinations */
2014 {
2015 int i; /* Looping var */
2016 cups_dest_t *dest; /* Current destination */
2017
2018
2019 /*
2020 * Range check input...
2021 */
2022
2023 if (!name || num_dests <= 0 || !dests)
2024 return;
2025
2026 /*
2027 * Loop through the array and set the "is_default" flag for the matching
2028 * destination...
2029 */
2030
2031 for (i = num_dests, dest = dests; i > 0; i --, dest ++)
2032 dest->is_default = !_cups_strcasecmp(name, dest->name) &&
2033 ((!instance && !dest->instance) ||
2034 (instance && dest->instance &&
2035 !_cups_strcasecmp(instance, dest->instance)));
2036 }
2037
2038
2039 /*
2040 * 'cupsSetDests()' - Save the list of destinations for the default server.
2041 *
2042 * This function saves the destinations to /etc/cups/lpoptions when run
2043 * as root and ~/.cups/lpoptions when run as a normal user.
2044 */
2045
2046 void
2047 cupsSetDests(int num_dests, /* I - Number of destinations */
2048 cups_dest_t *dests) /* I - Destinations */
2049 {
2050 cupsSetDests2(CUPS_HTTP_DEFAULT, num_dests, dests);
2051 }
2052
2053
2054 /*
2055 * 'cupsSetDests2()' - Save the list of destinations for the specified server.
2056 *
2057 * This function saves the destinations to /etc/cups/lpoptions when run
2058 * as root and ~/.cups/lpoptions when run as a normal user.
2059 *
2060 * @since CUPS 1.1.21/OS X 10.4@
2061 */
2062
2063 int /* O - 0 on success, -1 on error */
2064 cupsSetDests2(http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
2065 int num_dests, /* I - Number of destinations */
2066 cups_dest_t *dests) /* I - Destinations */
2067 {
2068 int i, j; /* Looping vars */
2069 int wrote; /* Wrote definition? */
2070 cups_dest_t *dest; /* Current destination */
2071 cups_option_t *option; /* Current option */
2072 _ipp_option_t *match; /* Matching attribute for option */
2073 FILE *fp; /* File pointer */
2074 #ifndef WIN32
2075 const char *home; /* HOME environment variable */
2076 #endif /* WIN32 */
2077 char filename[1024]; /* lpoptions file */
2078 int num_temps; /* Number of temporary destinations */
2079 cups_dest_t *temps = NULL, /* Temporary destinations */
2080 *temp; /* Current temporary dest */
2081 const char *val; /* Value of temporary option */
2082 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */
2083
2084
2085 /*
2086 * Range check the input...
2087 */
2088
2089 if (!num_dests || !dests)
2090 return (-1);
2091
2092 /*
2093 * Get the server destinations...
2094 */
2095
2096 num_temps = _cupsGetDests(http, IPP_OP_CUPS_GET_PRINTERS, NULL, &temps, 0, 0);
2097
2098 if (cupsLastError() >= IPP_STATUS_REDIRECTION_OTHER_SITE)
2099 {
2100 cupsFreeDests(num_temps, temps);
2101 return (-1);
2102 }
2103
2104 /*
2105 * Figure out which file to write to...
2106 */
2107
2108 snprintf(filename, sizeof(filename), "%s/lpoptions", cg->cups_serverroot);
2109
2110 #ifndef WIN32
2111 if (getuid())
2112 {
2113 /*
2114 * Merge in server defaults...
2115 */
2116
2117 num_temps = cups_get_dests(filename, NULL, NULL, 0, num_temps, &temps);
2118
2119 /*
2120 * Point to user defaults...
2121 */
2122
2123 if ((home = getenv("HOME")) != NULL)
2124 {
2125 /*
2126 * Create ~/.cups subdirectory...
2127 */
2128
2129 snprintf(filename, sizeof(filename), "%s/.cups", home);
2130 if (access(filename, 0))
2131 mkdir(filename, 0700);
2132
2133 snprintf(filename, sizeof(filename), "%s/.cups/lpoptions", home);
2134 }
2135 }
2136 #endif /* !WIN32 */
2137
2138 /*
2139 * Try to open the file...
2140 */
2141
2142 if ((fp = fopen(filename, "w")) == NULL)
2143 {
2144 cupsFreeDests(num_temps, temps);
2145 return (-1);
2146 }
2147
2148 #ifndef WIN32
2149 /*
2150 * Set the permissions to 0644 when saving to the /etc/cups/lpoptions
2151 * file...
2152 */
2153
2154 if (!getuid())
2155 fchmod(fileno(fp), 0644);
2156 #endif /* !WIN32 */
2157
2158 /*
2159 * Write each printer; each line looks like:
2160 *
2161 * Dest name[/instance] options
2162 * Default name[/instance] options
2163 */
2164
2165 for (i = num_dests, dest = dests; i > 0; i --, dest ++)
2166 if (dest->instance != NULL || dest->num_options != 0 || dest->is_default)
2167 {
2168 if (dest->is_default)
2169 {
2170 fprintf(fp, "Default %s", dest->name);
2171 if (dest->instance)
2172 fprintf(fp, "/%s", dest->instance);
2173
2174 wrote = 1;
2175 }
2176 else
2177 wrote = 0;
2178
2179 if ((temp = cupsGetDest(dest->name, dest->instance, num_temps, temps)) == NULL)
2180 temp = cupsGetDest(dest->name, NULL, num_temps, temps);
2181
2182 for (j = dest->num_options, option = dest->options; j > 0; j --, option ++)
2183 {
2184 /*
2185 * See if this option is a printer attribute; if so, skip it...
2186 */
2187
2188 if ((match = _ippFindOption(option->name)) != NULL &&
2189 match->group_tag == IPP_TAG_PRINTER)
2190 continue;
2191
2192 /*
2193 * See if the server/global options match these; if so, don't
2194 * write 'em.
2195 */
2196
2197 if (temp &&
2198 (val = cupsGetOption(option->name, temp->num_options,
2199 temp->options)) != NULL &&
2200 !_cups_strcasecmp(val, option->value))
2201 continue;
2202
2203 /*
2204 * Options don't match, write to the file...
2205 */
2206
2207 if (!wrote)
2208 {
2209 fprintf(fp, "Dest %s", dest->name);
2210 if (dest->instance)
2211 fprintf(fp, "/%s", dest->instance);
2212 wrote = 1;
2213 }
2214
2215 if (option->value[0])
2216 {
2217 if (strchr(option->value, ' ') ||
2218 strchr(option->value, '\\') ||
2219 strchr(option->value, '\"') ||
2220 strchr(option->value, '\''))
2221 {
2222 /*
2223 * Quote the value...
2224 */
2225
2226 fprintf(fp, " %s=\"", option->name);
2227
2228 for (val = option->value; *val; val ++)
2229 {
2230 if (strchr("\"\'\\", *val))
2231 putc('\\', fp);
2232
2233 putc(*val, fp);
2234 }
2235
2236 putc('\"', fp);
2237 }
2238 else
2239 {
2240 /*
2241 * Store the literal value...
2242 */
2243
2244 fprintf(fp, " %s=%s", option->name, option->value);
2245 }
2246 }
2247 else
2248 fprintf(fp, " %s", option->name);
2249 }
2250
2251 if (wrote)
2252 fputs("\n", fp);
2253 }
2254
2255 /*
2256 * Free the temporary destinations and close the file...
2257 */
2258
2259 cupsFreeDests(num_temps, temps);
2260
2261 fclose(fp);
2262
2263 #ifdef __APPLE__
2264 /*
2265 * Set the default printer for this location - this allows command-line
2266 * and GUI applications to share the same default destination...
2267 */
2268
2269 if ((dest = cupsGetDest(NULL, NULL, num_dests, dests)) != NULL)
2270 {
2271 CFStringRef name = CFStringCreateWithCString(kCFAllocatorDefault,
2272 dest->name,
2273 kCFStringEncodingUTF8);
2274 /* Default printer name */
2275
2276 if (name)
2277 {
2278 _cupsAppleSetDefaultPrinter(name);
2279 CFRelease(name);
2280 }
2281 }
2282 #endif /* __APPLE__ */
2283
2284 #ifdef HAVE_NOTIFY_POST
2285 /*
2286 * Send a notification so that MacOS X applications can know about the
2287 * change, too.
2288 */
2289
2290 notify_post("com.apple.printerListChange");
2291 #endif /* HAVE_NOTIFY_POST */
2292
2293 return (0);
2294 }
2295
2296
2297 /*
2298 * '_cupsUserDefault()' - Get the user default printer from environment
2299 * variables and location information.
2300 */
2301
2302 char * /* O - Default printer or NULL */
2303 _cupsUserDefault(char *name, /* I - Name buffer */
2304 size_t namesize) /* I - Size of name buffer */
2305 {
2306 const char *env; /* LPDEST or PRINTER env variable */
2307 #ifdef __APPLE__
2308 CFStringRef locprinter; /* Last printer as this location */
2309 #endif /* __APPLE__ */
2310
2311
2312 if ((env = getenv("LPDEST")) == NULL)
2313 if ((env = getenv("PRINTER")) != NULL && !strcmp(env, "lp"))
2314 env = NULL;
2315
2316 if (env)
2317 {
2318 strlcpy(name, env, namesize);
2319 return (name);
2320 }
2321
2322 #ifdef __APPLE__
2323 /*
2324 * Use location-based defaults if "use last printer" is selected in the
2325 * system preferences...
2326 */
2327
2328 if ((locprinter = _cupsAppleCopyDefaultPrinter()) != NULL)
2329 {
2330 CFStringGetCString(locprinter, name, namesize, kCFStringEncodingUTF8);
2331 CFRelease(locprinter);
2332 }
2333 else
2334 name[0] = '\0';
2335
2336 DEBUG_printf(("1_cupsUserDefault: Returning \"%s\".", name));
2337
2338 return (*name ? name : NULL);
2339
2340 #else
2341 /*
2342 * No location-based defaults on this platform...
2343 */
2344
2345 name[0] = '\0';
2346 return (NULL);
2347 #endif /* __APPLE__ */
2348 }
2349
2350
2351 #ifdef __APPLE__
2352 /*
2353 * 'appleCopyLocations()' - Copy the location history array.
2354 */
2355
2356 static CFArrayRef /* O - Location array or NULL */
2357 appleCopyLocations(void)
2358 {
2359 CFArrayRef locations; /* Location array */
2360
2361
2362 /*
2363 * Look up the location array in the preferences...
2364 */
2365
2366 if ((locations = CFPreferencesCopyAppValue(kLastUsedPrintersKey,
2367 kCUPSPrintingPrefs)) == NULL)
2368 return (NULL);
2369
2370 if (CFGetTypeID(locations) != CFArrayGetTypeID())
2371 {
2372 CFRelease(locations);
2373 return (NULL);
2374 }
2375
2376 return (locations);
2377 }
2378
2379
2380 /*
2381 * 'appleCopyNetwork()' - Get the network ID for the current location.
2382 */
2383
2384 static CFStringRef /* O - Network ID */
2385 appleCopyNetwork(void)
2386 {
2387 SCDynamicStoreRef dynamicStore; /* System configuration data */
2388 CFStringRef key; /* Current network configuration key */
2389 CFDictionaryRef ip_dict; /* Network configuration data */
2390 CFStringRef network = NULL; /* Current network ID */
2391
2392
2393 if ((dynamicStore = SCDynamicStoreCreate(NULL, CFSTR("libcups"), NULL,
2394 NULL)) != NULL)
2395 {
2396 /*
2397 * First use the IPv6 router address, if available, since that will generally
2398 * be a globally-unique link-local address.
2399 */
2400
2401 if ((key = SCDynamicStoreKeyCreateNetworkGlobalEntity(
2402 NULL, kSCDynamicStoreDomainState, kSCEntNetIPv6)) != NULL)
2403 {
2404 if ((ip_dict = SCDynamicStoreCopyValue(dynamicStore, key)) != NULL)
2405 {
2406 if ((network = CFDictionaryGetValue(ip_dict,
2407 kSCPropNetIPv6Router)) != NULL)
2408 CFRetain(network);
2409
2410 CFRelease(ip_dict);
2411 }
2412
2413 CFRelease(key);
2414 }
2415
2416 /*
2417 * If that doesn't work, try the IPv4 router address. This isn't as unique
2418 * and will likely be a 10.x.y.z or 192.168.y.z address...
2419 */
2420
2421 if (!network)
2422 {
2423 if ((key = SCDynamicStoreKeyCreateNetworkGlobalEntity(
2424 NULL, kSCDynamicStoreDomainState, kSCEntNetIPv4)) != NULL)
2425 {
2426 if ((ip_dict = SCDynamicStoreCopyValue(dynamicStore, key)) != NULL)
2427 {
2428 if ((network = CFDictionaryGetValue(ip_dict,
2429 kSCPropNetIPv4Router)) != NULL)
2430 CFRetain(network);
2431
2432 CFRelease(ip_dict);
2433 }
2434
2435 CFRelease(key);
2436 }
2437 }
2438
2439 CFRelease(dynamicStore);
2440 }
2441
2442 return (network);
2443 }
2444
2445
2446 /*
2447 * 'appleGetPaperSize()' - Get the default paper size.
2448 */
2449
2450 static char * /* O - Default paper size */
2451 appleGetPaperSize(char *name, /* I - Paper size name buffer */
2452 int namesize) /* I - Size of buffer */
2453 {
2454 CFStringRef defaultPaperID; /* Default paper ID */
2455 pwg_media_t *pwgmedia; /* PWG media size */
2456
2457
2458 defaultPaperID = _cupsAppleCopyDefaultPaperID();
2459 if (!defaultPaperID ||
2460 CFGetTypeID(defaultPaperID) != CFStringGetTypeID() ||
2461 !CFStringGetCString(defaultPaperID, name, namesize,
2462 kCFStringEncodingUTF8))
2463 name[0] = '\0';
2464 else if ((pwgmedia = pwgMediaForLegacy(name)) != NULL)
2465 strlcpy(name, pwgmedia->pwg, namesize);
2466
2467 if (defaultPaperID)
2468 CFRelease(defaultPaperID);
2469
2470 return (name);
2471 }
2472
2473
2474 /*
2475 * 'appleGetPrinter()' - Get a printer from the history array.
2476 */
2477
2478 static CFStringRef /* O - Printer name or NULL */
2479 appleGetPrinter(CFArrayRef locations, /* I - Location array */
2480 CFStringRef network, /* I - Network name */
2481 CFIndex *locindex) /* O - Index in array */
2482 {
2483 CFIndex i, /* Looping var */
2484 count; /* Number of locations */
2485 CFDictionaryRef location; /* Current location */
2486 CFStringRef locnetwork, /* Current network */
2487 locprinter; /* Current printer */
2488
2489
2490 for (i = 0, count = CFArrayGetCount(locations); i < count; i ++)
2491 if ((location = CFArrayGetValueAtIndex(locations, i)) != NULL &&
2492 CFGetTypeID(location) == CFDictionaryGetTypeID())
2493 {
2494 if ((locnetwork = CFDictionaryGetValue(location,
2495 kLocationNetworkKey)) != NULL &&
2496 CFGetTypeID(locnetwork) == CFStringGetTypeID() &&
2497 CFStringCompare(network, locnetwork, 0) == kCFCompareEqualTo &&
2498 (locprinter = CFDictionaryGetValue(location,
2499 kLocationPrinterIDKey)) != NULL &&
2500 CFGetTypeID(locprinter) == CFStringGetTypeID())
2501 {
2502 if (locindex)
2503 *locindex = i;
2504
2505 return (locprinter);
2506 }
2507 }
2508
2509 return (NULL);
2510 }
2511 #endif /* __APPLE__ */
2512
2513
2514 /*
2515 * 'cups_add_dest()' - Add a destination to the array.
2516 *
2517 * Unlike cupsAddDest(), this function does not check for duplicates.
2518 */
2519
2520 static cups_dest_t * /* O - New destination */
2521 cups_add_dest(const char *name, /* I - Name of destination */
2522 const char *instance, /* I - Instance or NULL */
2523 int *num_dests, /* IO - Number of destinations */
2524 cups_dest_t **dests) /* IO - Destinations */
2525 {
2526 int insert, /* Insertion point */
2527 diff; /* Result of comparison */
2528 cups_dest_t *dest; /* Destination pointer */
2529
2530
2531 /*
2532 * Add new destination...
2533 */
2534
2535 if (*num_dests == 0)
2536 dest = malloc(sizeof(cups_dest_t));
2537 else
2538 dest = realloc(*dests, sizeof(cups_dest_t) * (*num_dests + 1));
2539
2540 if (!dest)
2541 return (NULL);
2542
2543 *dests = dest;
2544
2545 /*
2546 * Find where to insert the destination...
2547 */
2548
2549 if (*num_dests == 0)
2550 insert = 0;
2551 else
2552 {
2553 insert = cups_find_dest(name, instance, *num_dests, *dests, *num_dests - 1,
2554 &diff);
2555
2556 if (diff > 0)
2557 insert ++;
2558 }
2559
2560 /*
2561 * Move the array elements as needed...
2562 */
2563
2564 if (insert < *num_dests)
2565 memmove(*dests + insert + 1, *dests + insert,
2566 (*num_dests - insert) * sizeof(cups_dest_t));
2567
2568 (*num_dests) ++;
2569
2570 /*
2571 * Initialize the destination...
2572 */
2573
2574 dest = *dests + insert;
2575 dest->name = _cupsStrAlloc(name);
2576 dest->instance = _cupsStrAlloc(instance);
2577 dest->is_default = 0;
2578 dest->num_options = 0;
2579 dest->options = (cups_option_t *)0;
2580
2581 return (dest);
2582 }
2583
2584
2585 # ifdef __BLOCKS__
2586 /*
2587 * 'cups_block_cb()' - Enumeration callback for block API.
2588 */
2589
2590 static int /* O - 1 to continue, 0 to stop */
2591 cups_block_cb(
2592 cups_dest_block_t block, /* I - Block */
2593 unsigned flags, /* I - Destination flags */
2594 cups_dest_t *dest) /* I - Destination */
2595 {
2596 return ((block)(flags, dest));
2597 }
2598 # endif /* __BLOCKS__ */
2599
2600
2601 /*
2602 * 'cups_compare_dests()' - Compare two destinations.
2603 */
2604
2605 static int /* O - Result of comparison */
2606 cups_compare_dests(cups_dest_t *a, /* I - First destination */
2607 cups_dest_t *b) /* I - Second destination */
2608 {
2609 int diff; /* Difference */
2610
2611
2612 if ((diff = _cups_strcasecmp(a->name, b->name)) != 0)
2613 return (diff);
2614 else if (a->instance && b->instance)
2615 return (_cups_strcasecmp(a->instance, b->instance));
2616 else
2617 return ((a->instance && !b->instance) - (!a->instance && b->instance));
2618 }
2619
2620
2621 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
2622 # ifdef HAVE_DNSSD
2623 /*
2624 * 'cups_dnssd_browse_cb()' - Browse for printers.
2625 */
2626
2627 static void
2628 cups_dnssd_browse_cb(
2629 DNSServiceRef sdRef, /* I - Service reference */
2630 DNSServiceFlags flags, /* I - Option flags */
2631 uint32_t interfaceIndex, /* I - Interface number */
2632 DNSServiceErrorType errorCode, /* I - Error, if any */
2633 const char *serviceName, /* I - Name of service/device */
2634 const char *regtype, /* I - Type of service */
2635 const char *replyDomain, /* I - Service domain */
2636 void *context) /* I - Enumeration data */
2637 {
2638 _cups_dnssd_data_t *data = (_cups_dnssd_data_t *)context;
2639 /* Enumeration data */
2640
2641
2642 DEBUG_printf(("5cups_dnssd_browse_cb(sdRef=%p, flags=%x, "
2643 "interfaceIndex=%d, errorCode=%d, serviceName=\"%s\", "
2644 "regtype=\"%s\", replyDomain=\"%s\", context=%p)",
2645 sdRef, flags, interfaceIndex, errorCode, serviceName, regtype,
2646 replyDomain, context));
2647
2648 /*
2649 * Don't do anything on error...
2650 */
2651
2652 if (errorCode != kDNSServiceErr_NoError)
2653 return;
2654
2655 /*
2656 * Get the device...
2657 */
2658
2659 cups_dnssd_get_device(data, serviceName, regtype, replyDomain);
2660 }
2661
2662
2663 # else /* HAVE_AVAHI */
2664 /*
2665 * 'cups_dnssd_browse_cb()' - Browse for printers.
2666 */
2667
2668 static void
2669 cups_dnssd_browse_cb(
2670 AvahiServiceBrowser *browser, /* I - Browser */
2671 AvahiIfIndex interface, /* I - Interface index (unused) */
2672 AvahiProtocol protocol, /* I - Network protocol (unused) */
2673 AvahiBrowserEvent event, /* I - What happened */
2674 const char *name, /* I - Service name */
2675 const char *type, /* I - Registration type */
2676 const char *domain, /* I - Domain */
2677 AvahiLookupResultFlags flags, /* I - Flags */
2678 void *context) /* I - Devices array */
2679 {
2680 #ifdef DEBUG
2681 AvahiClient *client = avahi_service_browser_get_client(browser);
2682 /* Client information */
2683 #endif /* DEBUG */
2684 _cups_dnssd_data_t *data = (_cups_dnssd_data_t *)context;
2685 /* Enumeration data */
2686
2687
2688 (void)interface;
2689 (void)protocol;
2690 (void)context;
2691
2692 switch (event)
2693 {
2694 case AVAHI_BROWSER_FAILURE:
2695 DEBUG_printf(("cups_dnssd_browse_cb: %s",
2696 avahi_strerror(avahi_client_errno(client))));
2697 avahi_simple_poll_quit(data->simple_poll);
2698 break;
2699
2700 case AVAHI_BROWSER_NEW:
2701 /*
2702 * This object is new on the network.
2703 */
2704
2705 if (flags & AVAHI_LOOKUP_RESULT_LOCAL)
2706 {
2707 /*
2708 * This comes from the local machine so ignore it.
2709 */
2710
2711 DEBUG_printf(("cups_dnssd_browse_cb: Ignoring local service \"%s\".",
2712 name));
2713 }
2714 else
2715 {
2716 /*
2717 * Create a device entry for it if it doesn't yet exist.
2718 */
2719
2720 cups_dnssd_get_device(data, name, type, domain);
2721 }
2722 break;
2723
2724 case AVAHI_BROWSER_REMOVE:
2725 case AVAHI_BROWSER_ALL_FOR_NOW:
2726 case AVAHI_BROWSER_CACHE_EXHAUSTED:
2727 break;
2728 }
2729 }
2730
2731
2732 /*
2733 * 'cups_dnssd_client_cb()' - Avahi client callback function.
2734 */
2735
2736 static void
2737 cups_dnssd_client_cb(
2738 AvahiClient *client, /* I - Client information (unused) */
2739 AvahiClientState state, /* I - Current state */
2740 void *context) /* I - User data (unused) */
2741 {
2742 _cups_dnssd_data_t *data = (_cups_dnssd_data_t *)context;
2743 /* Enumeration data */
2744
2745
2746 (void)client;
2747
2748 /*
2749 * If the connection drops, quit.
2750 */
2751
2752 if (state == AVAHI_CLIENT_FAILURE)
2753 {
2754 DEBUG_puts("cups_dnssd_client_cb: Avahi connection failed.");
2755 avahi_simple_poll_quit(data->simple_poll);
2756 }
2757 }
2758 # endif /* HAVE_DNSSD */
2759
2760
2761 /*
2762 * 'cups_dnssd_compare_device()' - Compare two devices.
2763 */
2764
2765 static int /* O - Result of comparison */
2766 cups_dnssd_compare_devices(
2767 _cups_dnssd_device_t *a, /* I - First device */
2768 _cups_dnssd_device_t *b) /* I - Second device */
2769 {
2770 return (strcmp(a->dest.name, b->dest.name));
2771 }
2772
2773
2774 /*
2775 * 'cups_dnssd_free_device()' - Free the memory used by a device.
2776 */
2777
2778 static void
2779 cups_dnssd_free_device(
2780 _cups_dnssd_device_t *device, /* I - Device */
2781 _cups_dnssd_data_t *data) /* I - Enumeration data */
2782 {
2783 DEBUG_printf(("5cups_dnssd_free_device(device=%p(%s), data=%p)", device,
2784 device->dest.name, data));
2785
2786 # ifdef HAVE_DNSSD
2787 if (device->ref)
2788 DNSServiceRefDeallocate(device->ref);
2789 # else /* HAVE_AVAHI */
2790 if (device->ref)
2791 avahi_record_browser_free(device->ref);
2792 # endif /* HAVE_DNSSD */
2793
2794 _cupsStrFree(device->domain);
2795 _cupsStrFree(device->fullName);
2796 _cupsStrFree(device->regtype);
2797 _cupsStrFree(device->dest.name);
2798
2799 cupsFreeOptions(device->dest.num_options, device->dest.options);
2800
2801 free(device);
2802 }
2803
2804
2805 /*
2806 * 'cups_dnssd_get_device()' - Lookup a device and create it as needed.
2807 */
2808
2809 static _cups_dnssd_device_t * /* O - Device */
2810 cups_dnssd_get_device(
2811 _cups_dnssd_data_t *data, /* I - Enumeration data */
2812 const char *serviceName, /* I - Service name */
2813 const char *regtype, /* I - Registration type */
2814 const char *replyDomain) /* I - Domain name */
2815 {
2816 _cups_dnssd_device_t key, /* Search key */
2817 *device; /* Device */
2818 char fullName[kDNSServiceMaxDomainName];
2819 /* Full name for query */
2820
2821
2822 DEBUG_printf(("5cups_dnssd_get_device(data=%p, serviceName=\"%s\", "
2823 "regtype=\"%s\", replyDomain=\"%s\")", data, serviceName,
2824 regtype, replyDomain));
2825
2826 /*
2827 * See if this is an existing device...
2828 */
2829
2830 key.dest.name = (char *)serviceName;
2831
2832 if ((device = cupsArrayFind(data->devices, &key)) != NULL)
2833 {
2834 /*
2835 * Yes, see if we need to do anything with this...
2836 */
2837
2838 int update = 0; /* Non-zero if we need to update */
2839
2840 if (!_cups_strcasecmp(replyDomain, "local.") &&
2841 _cups_strcasecmp(device->domain, replyDomain))
2842 {
2843 /*
2844 * Update the "global" listing to use the .local domain name instead.
2845 */
2846
2847 _cupsStrFree(device->domain);
2848 device->domain = _cupsStrAlloc(replyDomain);
2849
2850 DEBUG_printf(("6cups_dnssd_get_device: Updating '%s' to use local "
2851 "domain.", device->dest.name));
2852
2853 update = 1;
2854 }
2855
2856 if (!_cups_strcasecmp(regtype, "_ipps._tcp") &&
2857 _cups_strcasecmp(device->regtype, regtype))
2858 {
2859 /*
2860 * Prefer IPPS over IPP.
2861 */
2862
2863 _cupsStrFree(device->regtype);
2864 device->regtype = _cupsStrAlloc(regtype);
2865
2866 DEBUG_printf(("6cups_dnssd_get_device: Updating '%s' to use IPPS.",
2867 device->dest.name));
2868
2869 update = 1;
2870 }
2871
2872 if (!update)
2873 {
2874 DEBUG_printf(("6cups_dnssd_get_device: No changes to '%s'.",
2875 device->dest.name));
2876 return (device);
2877 }
2878 }
2879 else
2880 {
2881 /*
2882 * No, add the device...
2883 */
2884
2885 DEBUG_printf(("6cups_dnssd_get_device: Adding '%s' for %s with domain "
2886 "'%s'.", serviceName,
2887 !strcmp(regtype, "_ipps._tcp") ? "IPPS" : "IPP",
2888 replyDomain));
2889
2890 device = calloc(sizeof(_cups_dnssd_device_t), 1);
2891 device->dest.name = _cupsStrAlloc(serviceName);
2892 device->domain = _cupsStrAlloc(replyDomain);
2893 device->regtype = _cupsStrAlloc(regtype);
2894
2895 cupsArrayAdd(data->devices, device);
2896 }
2897
2898 /*
2899 * Set the "full name" of this service, which is used for queries...
2900 */
2901
2902 # ifdef HAVE_DNSSD
2903 DNSServiceConstructFullName(fullName, device->dest.name, device->regtype,
2904 device->domain);
2905 # else /* HAVE_AVAHI */
2906 avahi_service_name_join(fullName, kDNSServiceMaxDomainName, serviceName,
2907 regtype, replyDomain);
2908 # endif /* HAVE_DNSSD */
2909
2910 _cupsStrFree(device->fullName);
2911 device->fullName = _cupsStrAlloc(fullName);
2912
2913 if (device->ref)
2914 {
2915 # ifdef HAVE_DNSSD
2916 DNSServiceRefDeallocate(device->ref);
2917 # else /* HAVE_AVAHI */
2918 avahi_record_browser_free(device->ref);
2919 # endif /* HAVE_DNSSD */
2920
2921 device->ref = 0;
2922 }
2923
2924 if (device->state == _CUPS_DNSSD_ACTIVE)
2925 {
2926 (*data->cb)(data->user_data, CUPS_DEST_FLAGS_REMOVED, &device->dest);
2927 device->state = _CUPS_DNSSD_NEW;
2928 }
2929
2930 return (device);
2931 }
2932
2933
2934 # ifdef HAVE_DNSSD
2935 /*
2936 * 'cups_dnssd_local_cb()' - Browse for local printers.
2937 */
2938
2939 static void
2940 cups_dnssd_local_cb(
2941 DNSServiceRef sdRef, /* I - Service reference */
2942 DNSServiceFlags flags, /* I - Option flags */
2943 uint32_t interfaceIndex, /* I - Interface number */
2944 DNSServiceErrorType errorCode, /* I - Error, if any */
2945 const char *serviceName, /* I - Name of service/device */
2946 const char *regtype, /* I - Type of service */
2947 const char *replyDomain, /* I - Service domain */
2948 void *context) /* I - Devices array */
2949 {
2950 _cups_dnssd_data_t *data = (_cups_dnssd_data_t *)context;
2951 /* Enumeration data */
2952 _cups_dnssd_device_t *device; /* Device */
2953
2954
2955 DEBUG_printf(("5cups_dnssd_local_cb(sdRef=%p, flags=%x, "
2956 "interfaceIndex=%d, errorCode=%d, serviceName=\"%s\", "
2957 "regtype=\"%s\", replyDomain=\"%s\", context=%p)",
2958 sdRef, flags, interfaceIndex, errorCode, serviceName,
2959 regtype, replyDomain, context));
2960
2961 /*
2962 * Only process "add" data...
2963 */
2964
2965 if (errorCode != kDNSServiceErr_NoError || !(flags & kDNSServiceFlagsAdd))
2966 return;
2967
2968 /*
2969 * Get the device...
2970 */
2971
2972 device = cups_dnssd_get_device(data, serviceName, regtype, replyDomain);
2973
2974 /*
2975 * Hide locally-registered devices...
2976 */
2977
2978 DEBUG_printf(("6cups_dnssd_local_cb: Hiding local printer '%s'.",
2979 serviceName));
2980
2981 if (device->ref)
2982 {
2983 DNSServiceRefDeallocate(device->ref);
2984 device->ref = 0;
2985 }
2986
2987 if (device->state == _CUPS_DNSSD_ACTIVE)
2988 (*data->cb)(data->user_data, CUPS_DEST_FLAGS_REMOVED, &device->dest);
2989
2990 device->state = _CUPS_DNSSD_LOCAL;
2991 }
2992 # endif /* HAVE_DNSSD */
2993
2994
2995 # ifdef HAVE_AVAHI
2996 /*
2997 * 'cups_dnssd_poll_cb()' - Wait for input on the specified file descriptors.
2998 *
2999 * Note: This function is needed because avahi_simple_poll_iterate is broken
3000 * and always uses a timeout of 0 (!) milliseconds.
3001 * (Avahi Ticket #364)
3002 */
3003
3004 static int /* O - Number of file descriptors matching */
3005 cups_dnssd_poll_cb(
3006 struct pollfd *pollfds, /* I - File descriptors */
3007 unsigned int num_pollfds, /* I - Number of file descriptors */
3008 int timeout, /* I - Timeout in milliseconds (unused) */
3009 void *context) /* I - User data (unused) */
3010 {
3011 _cups_dnssd_data_t *data = (_cups_dnssd_data_t *)context;
3012 /* Enumeration data */
3013 int val; /* Return value */
3014
3015
3016 (void)timeout;
3017
3018 val = poll(pollfds, num_pollfds, 250);
3019
3020 if (val < 0)
3021 {
3022 DEBUG_printf(("cups_dnssd_poll_cb: %s", strerror(errno)));
3023 }
3024 else if (val > 0)
3025 data->got_data = 1;
3026
3027 return (val);
3028 }
3029 # endif /* HAVE_AVAHI */
3030
3031
3032 /*
3033 * 'cups_dnssd_query_cb()' - Process query data.
3034 */
3035
3036 # ifdef HAVE_DNSSD
3037 static void
3038 cups_dnssd_query_cb(
3039 DNSServiceRef sdRef, /* I - Service reference */
3040 DNSServiceFlags flags, /* I - Data flags */
3041 uint32_t interfaceIndex, /* I - Interface */
3042 DNSServiceErrorType errorCode, /* I - Error, if any */
3043 const char *fullName, /* I - Full service name */
3044 uint16_t rrtype, /* I - Record type */
3045 uint16_t rrclass, /* I - Record class */
3046 uint16_t rdlen, /* I - Length of record data */
3047 const void *rdata, /* I - Record data */
3048 uint32_t ttl, /* I - Time-to-live */
3049 void *context) /* I - Enumeration data */
3050 {
3051 # else /* HAVE_AVAHI */
3052 static void
3053 cups_dnssd_query_cb(
3054 AvahiRecordBrowser *browser, /* I - Record browser */
3055 AvahiIfIndex interfaceIndex,
3056 /* I - Interface index (unused) */
3057 AvahiProtocol protocol, /* I - Network protocol (unused) */
3058 AvahiBrowserEvent event, /* I - What happened? */
3059 const char *fullName, /* I - Service name */
3060 uint16_t rrclass, /* I - Record class */
3061 uint16_t rrtype, /* I - Record type */
3062 const void *rdata, /* I - TXT record */
3063 size_t rdlen, /* I - Length of TXT record */
3064 AvahiLookupResultFlags flags, /* I - Flags */
3065 void *context) /* I - Enumeration data */
3066 {
3067 # ifdef DEBUG
3068 AvahiClient *client = avahi_record_browser_get_client(browser);
3069 /* Client information */
3070 # endif /* DEBUG */
3071 # endif /* HAVE_DNSSD */
3072 _cups_dnssd_data_t *data = (_cups_dnssd_data_t *)context;
3073 /* Enumeration data */
3074 char name[1024], /* Service name */
3075 *ptr; /* Pointer into string */
3076 _cups_dnssd_device_t dkey, /* Search key */
3077 *device; /* Device */
3078
3079
3080 # ifdef HAVE_DNSSD
3081 DEBUG_printf(("5cups_dnssd_query_cb(sdRef=%p, flags=%x, "
3082 "interfaceIndex=%d, errorCode=%d, fullName=\"%s\", "
3083 "rrtype=%u, rrclass=%u, rdlen=%u, rdata=%p, ttl=%u, "
3084 "context=%p)", sdRef, flags, interfaceIndex, errorCode,
3085 fullName, rrtype, rrclass, rdlen, rdata, ttl, context));
3086
3087 /*
3088 * Only process "add" data...
3089 */
3090
3091 if (errorCode != kDNSServiceErr_NoError || !(flags & kDNSServiceFlagsAdd))
3092 return;
3093
3094 # else /* HAVE_AVAHI */
3095 DEBUG_printf(("5cups_dnssd_query_cb(browser=%p, interfaceIndex=%d, "
3096 "protocol=%d, event=%d, fullName=\"%s\", rrclass=%u, "
3097 "rrtype=%u, rdata=%p, rdlen=%u, flags=%x, context=%p)",
3098 browser, interfaceIndex, protocol, event, fullName, rrclass,
3099 rrtype, rdata, (unsigned)rdlen, flags, context));
3100
3101 /*
3102 * Only process "add" data...
3103 */
3104
3105 if (event != AVAHI_BROWSER_NEW)
3106 {
3107 if (event == AVAHI_BROWSER_FAILURE)
3108 DEBUG_printf(("cups_dnssd_query_cb: %s",
3109 avahi_strerror(avahi_client_errno(client))));
3110
3111 return;
3112 }
3113 # endif /* HAVE_DNSSD */
3114
3115 /*
3116 * Lookup the service in the devices array.
3117 */
3118
3119 dkey.dest.name = name;
3120
3121 cups_dnssd_unquote(name, fullName, sizeof(name));
3122
3123 if ((ptr = strstr(name, "._")) != NULL)
3124 *ptr = '\0';
3125
3126 if ((device = cupsArrayFind(data->devices, &dkey)) != NULL)
3127 {
3128 /*
3129 * Found it, pull out the make and model from the TXT record and save it...
3130 */
3131
3132 const uint8_t *txt, /* Pointer into data */
3133 *txtnext, /* Next key/value pair */
3134 *txtend; /* End of entire TXT record */
3135 uint8_t txtlen; /* Length of current key/value pair */
3136 char key[256], /* Key string */
3137 value[256], /* Value string */
3138 make_and_model[512],
3139 /* Manufacturer and model */
3140 model[256], /* Model */
3141 uriname[1024], /* Name for URI */
3142 uri[1024]; /* Printer URI */
3143 cups_ptype_t type = CUPS_PRINTER_REMOTE | CUPS_PRINTER_BW;
3144 /* Printer type */
3145 int saw_printer_type = 0;
3146 /* Did we see a printer-type key? */
3147
3148 device->state = _CUPS_DNSSD_PENDING;
3149 make_and_model[0] = '\0';
3150
3151 strlcpy(model, "Unknown", sizeof(model));
3152
3153 for (txt = rdata, txtend = txt + rdlen;
3154 txt < txtend;
3155 txt = txtnext)
3156 {
3157 /*
3158 * Read a key/value pair starting with an 8-bit length. Since the
3159 * length is 8 bits and the size of the key/value buffers is 256, we
3160 * don't need to check for overflow...
3161 */
3162
3163 txtlen = *txt++;
3164
3165 if (!txtlen || (txt + txtlen) > txtend)
3166 break;
3167
3168 txtnext = txt + txtlen;
3169
3170 for (ptr = key; txt < txtnext && *txt != '='; txt ++)
3171 *ptr++ = *txt;
3172 *ptr = '\0';
3173
3174 if (txt < txtnext && *txt == '=')
3175 {
3176 txt ++;
3177
3178 if (txt < txtnext)
3179 memcpy(value, txt, txtnext - txt);
3180 value[txtnext - txt] = '\0';
3181
3182 DEBUG_printf(("6cups_dnssd_query_cb: %s=%s", key, value));
3183 }
3184 else
3185 {
3186 DEBUG_printf(("6cups_dnssd_query_cb: '%s' with no value.", key));
3187 continue;
3188 }
3189
3190 if (!_cups_strcasecmp(key, "usb_MFG") ||
3191 !_cups_strcasecmp(key, "usb_MANU") ||
3192 !_cups_strcasecmp(key, "usb_MANUFACTURER"))
3193 strlcpy(make_and_model, value, sizeof(make_and_model));
3194 else if (!_cups_strcasecmp(key, "usb_MDL") ||
3195 !_cups_strcasecmp(key, "usb_MODEL"))
3196 strlcpy(model, value, sizeof(model));
3197 else if (!_cups_strcasecmp(key, "product") && !strstr(value, "Ghostscript"))
3198 {
3199 if (value[0] == '(')
3200 {
3201 /*
3202 * Strip parenthesis...
3203 */
3204
3205 if ((ptr = value + strlen(value) - 1) > value && *ptr == ')')
3206 *ptr = '\0';
3207
3208 strlcpy(model, value + 1, sizeof(model));
3209 }
3210 else
3211 strlcpy(model, value, sizeof(model));
3212 }
3213 else if (!_cups_strcasecmp(key, "ty"))
3214 {
3215 strlcpy(model, value, sizeof(model));
3216
3217 if ((ptr = strchr(model, ',')) != NULL)
3218 *ptr = '\0';
3219 }
3220 else if (!_cups_strcasecmp(key, "note"))
3221 device->dest.num_options = cupsAddOption("printer-location", value,
3222 device->dest.num_options,
3223 &device->dest.options);
3224 else if (!_cups_strcasecmp(key, "pdl"))
3225 {
3226 /*
3227 * Look for PDF-capable printers; only PDF-capable printers are shown.
3228 */
3229
3230 const char *start, *next; /* Pointer into value */
3231 int have_pdf = 0; /* Have PDF? */
3232
3233 for (start = value; start && *start; start = next)
3234 {
3235 if (!_cups_strncasecmp(start, "application/pdf", 15) &&
3236 (!start[15] || start[15] == ','))
3237 {
3238 have_pdf = 1;
3239 break;
3240 }
3241
3242 if ((next = strchr(start, ',')) != NULL)
3243 next ++;
3244 }
3245
3246 if (!have_pdf)
3247 device->state = _CUPS_DNSSD_INCOMPATIBLE;
3248 }
3249 else if (!_cups_strcasecmp(key, "printer-type"))
3250 {
3251 /*
3252 * Value is either NNNN or 0xXXXX
3253 */
3254
3255 saw_printer_type = 1;
3256 type = strtol(value, NULL, 0);
3257 }
3258 else if (!saw_printer_type)
3259 {
3260 if (!_cups_strcasecmp(key, "air") &&
3261 !_cups_strcasecmp(value, "t"))
3262 type |= CUPS_PRINTER_AUTHENTICATED;
3263 else if (!_cups_strcasecmp(key, "bind") &&
3264 !_cups_strcasecmp(value, "t"))
3265 type |= CUPS_PRINTER_BIND;
3266 else if (!_cups_strcasecmp(key, "collate") &&
3267 !_cups_strcasecmp(value, "t"))
3268 type |= CUPS_PRINTER_COLLATE;
3269 else if (!_cups_strcasecmp(key, "color") &&
3270 !_cups_strcasecmp(value, "t"))
3271 type |= CUPS_PRINTER_COLOR;
3272 else if (!_cups_strcasecmp(key, "copies") &&
3273 !_cups_strcasecmp(value, "t"))
3274 type |= CUPS_PRINTER_COPIES;
3275 else if (!_cups_strcasecmp(key, "duplex") &&
3276 !_cups_strcasecmp(value, "t"))
3277 type |= CUPS_PRINTER_DUPLEX;
3278 else if (!_cups_strcasecmp(key, "fax") &&
3279 !_cups_strcasecmp(value, "t"))
3280 type |= CUPS_PRINTER_MFP;
3281 else if (!_cups_strcasecmp(key, "papercustom") &&
3282 !_cups_strcasecmp(value, "t"))
3283 type |= CUPS_PRINTER_VARIABLE;
3284 else if (!_cups_strcasecmp(key, "papermax"))
3285 {
3286 if (!_cups_strcasecmp(value, "legal-a4"))
3287 type |= CUPS_PRINTER_SMALL;
3288 else if (!_cups_strcasecmp(value, "isoc-a2"))
3289 type |= CUPS_PRINTER_MEDIUM;
3290 else if (!_cups_strcasecmp(value, ">isoc-a2"))
3291 type |= CUPS_PRINTER_LARGE;
3292 }
3293 else if (!_cups_strcasecmp(key, "punch") &&
3294 !_cups_strcasecmp(value, "t"))
3295 type |= CUPS_PRINTER_PUNCH;
3296 else if (!_cups_strcasecmp(key, "scan") &&
3297 !_cups_strcasecmp(value, "t"))
3298 type |= CUPS_PRINTER_MFP;
3299 else if (!_cups_strcasecmp(key, "sort") &&
3300 !_cups_strcasecmp(value, "t"))
3301 type |= CUPS_PRINTER_SORT;
3302 else if (!_cups_strcasecmp(key, "staple") &&
3303 !_cups_strcasecmp(value, "t"))
3304 type |= CUPS_PRINTER_STAPLE;
3305 }
3306 }
3307
3308 /*
3309 * Save the printer-xxx values...
3310 */
3311
3312 device->dest.num_options = cupsAddOption("printer-info", name,
3313 device->dest.num_options,
3314 &device->dest.options);
3315
3316 if (make_and_model[0])
3317 {
3318 strlcat(make_and_model, " ", sizeof(make_and_model));
3319 strlcat(make_and_model, model, sizeof(make_and_model));
3320
3321 device->dest.num_options = cupsAddOption("printer-make-and-model",
3322 make_and_model,
3323 device->dest.num_options,
3324 &device->dest.options);
3325 }
3326 else
3327 device->dest.num_options = cupsAddOption("printer-make-and-model",
3328 model,
3329 device->dest.num_options,
3330 &device->dest.options);
3331
3332 device->type = type;
3333 snprintf(value, sizeof(value), "%u", type);
3334 device->dest.num_options = cupsAddOption("printer-type", value,
3335 device->dest.num_options,
3336 &device->dest.options);
3337
3338 /*
3339 * Save the URI...
3340 */
3341
3342 cups_dnssd_unquote(uriname, device->fullName, sizeof(uriname));
3343 httpAssembleURI(HTTP_URI_CODING_ALL, uri, sizeof(uri),
3344 !strcmp(device->regtype, "_ipps._tcp") ? "ipps" : "ipp",
3345 NULL, uriname, 0, saw_printer_type ? "/cups" : "/");
3346
3347 DEBUG_printf(("6cups_dnssd_query: printer-uri-supported=\"%s\"", uri));
3348
3349 device->dest.num_options = cupsAddOption("printer-uri-supported", uri,
3350 device->dest.num_options,
3351 &device->dest.options);
3352 }
3353 else
3354 DEBUG_printf(("6cups_dnssd_query: Ignoring TXT record for '%s'.",
3355 fullName));
3356 }
3357
3358
3359 /*
3360 * 'cups_dnssd_resolve()' - Resolve a Bonjour printer URI.
3361 */
3362
3363 static const char * /* O - Resolved URI or NULL */
3364 cups_dnssd_resolve(
3365 cups_dest_t *dest, /* I - Destination */
3366 const char *uri, /* I - Current printer URI */
3367 int msec, /* I - Time in milliseconds */
3368 int *cancel, /* I - Pointer to "cancel" variable */
3369 cups_dest_cb_t cb, /* I - Callback */
3370 void *user_data) /* I - User data for callback */
3371 {
3372 char tempuri[1024]; /* Temporary URI buffer */
3373 _cups_dnssd_resolve_t resolve; /* Resolve data */
3374
3375
3376 /*
3377 * Resolve the URI...
3378 */
3379
3380 resolve.cancel = cancel;
3381 gettimeofday(&resolve.end_time, NULL);
3382 if (msec > 0)
3383 {
3384 resolve.end_time.tv_sec += msec / 1000;
3385 resolve.end_time.tv_usec += (msec % 1000) * 1000;
3386
3387 while (resolve.end_time.tv_usec >= 1000000)
3388 {
3389 resolve.end_time.tv_sec ++;
3390 resolve.end_time.tv_usec -= 1000000;
3391 }
3392 }
3393 else
3394 resolve.end_time.tv_sec += 75;
3395
3396 if (cb)
3397 (*cb)(user_data, CUPS_DEST_FLAGS_UNCONNECTED | CUPS_DEST_FLAGS_RESOLVING,
3398 dest);
3399
3400 if ((uri = _httpResolveURI(uri, tempuri, sizeof(tempuri),
3401 _HTTP_RESOLVE_FQDN, cups_dnssd_resolve_cb,
3402 &resolve)) == NULL)
3403 {
3404 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Unable to resolve printer URI."), 1);
3405
3406 if (cb)
3407 (*cb)(user_data, CUPS_DEST_FLAGS_UNCONNECTED | CUPS_DEST_FLAGS_ERROR,
3408 dest);
3409
3410 return (NULL);
3411 }
3412
3413 /*
3414 * Save the resolved URI...
3415 */
3416
3417 dest->num_options = cupsAddOption("printer-uri-supported", uri,
3418 dest->num_options, &dest->options);
3419
3420 return (cupsGetOption("printer-uri-supported", dest->num_options,
3421 dest->options));
3422 }
3423
3424
3425 /*
3426 * 'cups_dnssd_resolve_cb()' - See if we should continue resolving.
3427 */
3428
3429 static int /* O - 1 to continue, 0 to stop */
3430 cups_dnssd_resolve_cb(void *context) /* I - Resolve data */
3431 {
3432 _cups_dnssd_resolve_t *resolve = (_cups_dnssd_resolve_t *)context;
3433 /* Resolve data */
3434 struct timeval curtime; /* Current time */
3435
3436
3437 /*
3438 * If the cancel variable is set, return immediately.
3439 */
3440
3441 if (*resolve->cancel)
3442 return (0);
3443
3444 /*
3445 * Otherwise check the end time...
3446 */
3447
3448 gettimeofday(&curtime, NULL);
3449
3450 return (curtime.tv_sec > resolve->end_time.tv_sec ||
3451 (curtime.tv_sec == resolve->end_time.tv_sec &&
3452 curtime.tv_usec > resolve->end_time.tv_usec));
3453 }
3454
3455
3456 /*
3457 * 'cups_dnssd_unquote()' - Unquote a name string.
3458 */
3459
3460 static void
3461 cups_dnssd_unquote(char *dst, /* I - Destination buffer */
3462 const char *src, /* I - Source string */
3463 size_t dstsize) /* I - Size of destination buffer */
3464 {
3465 char *dstend = dst + dstsize - 1; /* End of destination buffer */
3466
3467
3468 while (*src && dst < dstend)
3469 {
3470 if (*src == '\\')
3471 {
3472 src ++;
3473 if (isdigit(src[0] & 255) && isdigit(src[1] & 255) &&
3474 isdigit(src[2] & 255))
3475 {
3476 *dst++ = ((((src[0] - '0') * 10) + src[1] - '0') * 10) + src[2] - '0';
3477 src += 3;
3478 }
3479 else
3480 *dst++ = *src++;
3481 }
3482 else
3483 *dst++ = *src ++;
3484 }
3485
3486 *dst = '\0';
3487 }
3488 #endif /* HAVE_DNSSD */
3489
3490
3491 /*
3492 * 'cups_find_dest()' - Find a destination using a binary search.
3493 */
3494
3495 static int /* O - Index of match */
3496 cups_find_dest(const char *name, /* I - Destination name */
3497 const char *instance, /* I - Instance or NULL */
3498 int num_dests, /* I - Number of destinations */
3499 cups_dest_t *dests, /* I - Destinations */
3500 int prev, /* I - Previous index */
3501 int *rdiff) /* O - Difference of match */
3502 {
3503 int left, /* Low mark for binary search */
3504 right, /* High mark for binary search */
3505 current, /* Current index */
3506 diff; /* Result of comparison */
3507 cups_dest_t key; /* Search key */
3508
3509
3510 key.name = (char *)name;
3511 key.instance = (char *)instance;
3512
3513 if (prev >= 0)
3514 {
3515 /*
3516 * Start search on either side of previous...
3517 */
3518
3519 if ((diff = cups_compare_dests(&key, dests + prev)) == 0 ||
3520 (diff < 0 && prev == 0) ||
3521 (diff > 0 && prev == (num_dests - 1)))
3522 {
3523 *rdiff = diff;
3524 return (prev);
3525 }
3526 else if (diff < 0)
3527 {
3528 /*
3529 * Start with previous on right side...
3530 */
3531
3532 left = 0;
3533 right = prev;
3534 }
3535 else
3536 {
3537 /*
3538 * Start wih previous on left side...
3539 */
3540
3541 left = prev;
3542 right = num_dests - 1;
3543 }
3544 }
3545 else
3546 {
3547 /*
3548 * Start search in the middle...
3549 */
3550
3551 left = 0;
3552 right = num_dests - 1;
3553 }
3554
3555 do
3556 {
3557 current = (left + right) / 2;
3558 diff = cups_compare_dests(&key, dests + current);
3559
3560 if (diff == 0)
3561 break;
3562 else if (diff < 0)
3563 right = current;
3564 else
3565 left = current;
3566 }
3567 while ((right - left) > 1);
3568
3569 if (diff != 0)
3570 {
3571 /*
3572 * Check the last 1 or 2 elements...
3573 */
3574
3575 if ((diff = cups_compare_dests(&key, dests + left)) <= 0)
3576 current = left;
3577 else
3578 {
3579 diff = cups_compare_dests(&key, dests + right);
3580 current = right;
3581 }
3582 }
3583
3584 /*
3585 * Return the closest destination and the difference...
3586 */
3587
3588 *rdiff = diff;
3589
3590 return (current);
3591 }
3592
3593
3594 /*
3595 * 'cups_get_default()' - Get the default destination from an lpoptions file.
3596 */
3597
3598 static char * /* O - Default destination or NULL */
3599 cups_get_default(const char *filename, /* I - File to read */
3600 char *namebuf, /* I - Name buffer */
3601 size_t namesize, /* I - Size of name buffer */
3602 const char **instance) /* I - Instance */
3603 {
3604 cups_file_t *fp; /* lpoptions file */
3605 char line[8192], /* Line from file */
3606 *value, /* Value for line */
3607 *nameptr; /* Pointer into name */
3608 int linenum; /* Current line */
3609
3610
3611 *namebuf = '\0';
3612
3613 if ((fp = cupsFileOpen(filename, "r")) != NULL)
3614 {
3615 linenum = 0;
3616
3617 while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
3618 {
3619 if (!_cups_strcasecmp(line, "default") && value)
3620 {
3621 strlcpy(namebuf, value, namesize);
3622
3623 if ((nameptr = strchr(namebuf, ' ')) != NULL)
3624 *nameptr = '\0';
3625 if ((nameptr = strchr(namebuf, '\t')) != NULL)
3626 *nameptr = '\0';
3627
3628 if ((nameptr = strchr(namebuf, '/')) != NULL)
3629 *nameptr++ = '\0';
3630
3631 *instance = nameptr;
3632 break;
3633 }
3634 }
3635
3636 cupsFileClose(fp);
3637 }
3638
3639 return (*namebuf ? namebuf : NULL);
3640 }
3641
3642
3643 /*
3644 * 'cups_get_dests()' - Get destinations from a file.
3645 */
3646
3647 static int /* O - Number of destinations */
3648 cups_get_dests(
3649 const char *filename, /* I - File to read from */
3650 const char *match_name, /* I - Destination name we want */
3651 const char *match_inst, /* I - Instance name we want */
3652 int user_default_set, /* I - User default printer set? */
3653 int num_dests, /* I - Number of destinations */
3654 cups_dest_t **dests) /* IO - Destinations */
3655 {
3656 int i; /* Looping var */
3657 cups_dest_t *dest; /* Current destination */
3658 cups_file_t *fp; /* File pointer */
3659 char line[8192], /* Line from file */
3660 *lineptr, /* Pointer into line */
3661 *name, /* Name of destination/option */
3662 *instance; /* Instance of destination */
3663 int linenum; /* Current line number */
3664
3665
3666 DEBUG_printf(("7cups_get_dests(filename=\"%s\", match_name=\"%s\", "
3667 "match_inst=\"%s\", user_default_set=%d, num_dests=%d, "
3668 "dests=%p)", filename, match_name, match_inst,
3669 user_default_set, num_dests, dests));
3670
3671 /*
3672 * Try to open the file...
3673 */
3674
3675 if ((fp = cupsFileOpen(filename, "r")) == NULL)
3676 return (num_dests);
3677
3678 /*
3679 * Read each printer; each line looks like:
3680 *
3681 * Dest name[/instance] options
3682 * Default name[/instance] options
3683 */
3684
3685 linenum = 0;
3686
3687 while (cupsFileGetConf(fp, line, sizeof(line), &lineptr, &linenum))
3688 {
3689 /*
3690 * See what type of line it is...
3691 */
3692
3693 DEBUG_printf(("9cups_get_dests: linenum=%d line=\"%s\" lineptr=\"%s\"",
3694 linenum, line, lineptr));
3695
3696 if ((_cups_strcasecmp(line, "dest") && _cups_strcasecmp(line, "default")) || !lineptr)
3697 {
3698 DEBUG_puts("9cups_get_dests: Not a dest or default line...");
3699 continue;
3700 }
3701
3702 name = lineptr;
3703
3704 /*
3705 * Search for an instance...
3706 */
3707
3708 while (!isspace(*lineptr & 255) && *lineptr && *lineptr != '/')
3709 lineptr ++;
3710
3711 if (*lineptr == '/')
3712 {
3713 /*
3714 * Found an instance...
3715 */
3716
3717 *lineptr++ = '\0';
3718 instance = lineptr;
3719
3720 /*
3721 * Search for an instance...
3722 */
3723
3724 while (!isspace(*lineptr & 255) && *lineptr)
3725 lineptr ++;
3726 }
3727 else
3728 instance = NULL;
3729
3730 if (*lineptr)
3731 *lineptr++ = '\0';
3732
3733 DEBUG_printf(("9cups_get_dests: name=\"%s\", instance=\"%s\"", name,
3734 instance));
3735
3736 /*
3737 * See if the primary instance of the destination exists; if not,
3738 * ignore this entry and move on...
3739 */
3740
3741 if (match_name)
3742 {
3743 if (_cups_strcasecmp(name, match_name) ||
3744 (!instance && match_inst) ||
3745 (instance && !match_inst) ||
3746 (instance && _cups_strcasecmp(instance, match_inst)))
3747 continue;
3748
3749 dest = *dests;
3750 }
3751 else if (cupsGetDest(name, NULL, num_dests, *dests) == NULL)
3752 {
3753 DEBUG_puts("9cups_get_dests: Not found!");
3754 continue;
3755 }
3756 else
3757 {
3758 /*
3759 * Add the destination...
3760 */
3761
3762 num_dests = cupsAddDest(name, instance, num_dests, dests);
3763
3764 if ((dest = cupsGetDest(name, instance, num_dests, *dests)) == NULL)
3765 {
3766 /*
3767 * Out of memory!
3768 */
3769
3770 DEBUG_puts("9cups_get_dests: Out of memory!");
3771 break;
3772 }
3773 }
3774
3775 /*
3776 * Add options until we hit the end of the line...
3777 */
3778
3779 dest->num_options = cupsParseOptions(lineptr, dest->num_options,
3780 &(dest->options));
3781
3782 /*
3783 * If we found what we were looking for, stop now...
3784 */
3785
3786 if (match_name)
3787 break;
3788
3789 /*
3790 * Set this as default if needed...
3791 */
3792
3793 if (!user_default_set && !_cups_strcasecmp(line, "default"))
3794 {
3795 DEBUG_puts("9cups_get_dests: Setting as default...");
3796
3797 for (i = 0; i < num_dests; i ++)
3798 (*dests)[i].is_default = 0;
3799
3800 dest->is_default = 1;
3801 }
3802 }
3803
3804 /*
3805 * Close the file and return...
3806 */
3807
3808 cupsFileClose(fp);
3809
3810 return (num_dests);
3811 }
3812
3813
3814 /*
3815 * 'cups_make_string()' - Make a comma-separated string of values from an IPP
3816 * attribute.
3817 */
3818
3819 static char * /* O - New string */
3820 cups_make_string(
3821 ipp_attribute_t *attr, /* I - Attribute to convert */
3822 char *buffer, /* I - Buffer */
3823 size_t bufsize) /* I - Size of buffer */
3824 {
3825 int i; /* Looping var */
3826 char *ptr, /* Pointer into buffer */
3827 *end, /* Pointer to end of buffer */
3828 *valptr; /* Pointer into string attribute */
3829
3830
3831 /*
3832 * Return quickly if we have a single string value...
3833 */
3834
3835 if (attr->num_values == 1 &&
3836 attr->value_tag != IPP_TAG_INTEGER &&
3837 attr->value_tag != IPP_TAG_ENUM &&
3838 attr->value_tag != IPP_TAG_BOOLEAN &&
3839 attr->value_tag != IPP_TAG_RANGE)
3840 return (attr->values[0].string.text);
3841
3842 /*
3843 * Copy the values to the string, separating with commas and escaping strings
3844 * as needed...
3845 */
3846
3847 end = buffer + bufsize - 1;
3848
3849 for (i = 0, ptr = buffer; i < attr->num_values && ptr < end; i ++)
3850 {
3851 if (i)
3852 *ptr++ = ',';
3853
3854 switch (attr->value_tag)
3855 {
3856 case IPP_TAG_INTEGER :
3857 case IPP_TAG_ENUM :
3858 snprintf(ptr, end - ptr + 1, "%d", attr->values[i].integer);
3859 break;
3860
3861 case IPP_TAG_BOOLEAN :
3862 if (attr->values[i].boolean)
3863 strlcpy(ptr, "true", end - ptr + 1);
3864 else
3865 strlcpy(ptr, "false", end - ptr + 1);
3866 break;
3867
3868 case IPP_TAG_RANGE :
3869 if (attr->values[i].range.lower == attr->values[i].range.upper)
3870 snprintf(ptr, end - ptr + 1, "%d", attr->values[i].range.lower);
3871 else
3872 snprintf(ptr, end - ptr + 1, "%d-%d", attr->values[i].range.lower,
3873 attr->values[i].range.upper);
3874 break;
3875
3876 default :
3877 for (valptr = attr->values[i].string.text;
3878 *valptr && ptr < end;)
3879 {
3880 if (strchr(" \t\n\\\'\"", *valptr))
3881 {
3882 if (ptr >= (end - 1))
3883 break;
3884
3885 *ptr++ = '\\';
3886 }
3887
3888 *ptr++ = *valptr++;
3889 }
3890
3891 *ptr = '\0';
3892 break;
3893 }
3894
3895 ptr += strlen(ptr);
3896 }
3897
3898 *ptr = '\0';
3899
3900 return (buffer);
3901 }
3902
3903
3904 /*
3905 * End of "$Id$".
3906 */