2 * User-defined destination (and option) support for CUPS.
4 * Copyright 2007-2017 by Apple Inc.
5 * Copyright 1997-2007 by Easy Software Products.
7 * These coded instructions, statements, and computer programs are the
8 * property of Apple Inc. and are protected by Federal copyright
9 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
10 * which should have been included with this file. If this file is
11 * missing or damaged, see the license at "http://www.cups.org/".
13 * This file is subject to the Apple OS-Developed Software exception.
17 * Include necessary headers...
20 #include "cups-private.h"
25 #endif /* HAVE_NOTIFY_H */
29 #endif /* HAVE_POLL */
33 #endif /* HAVE_DNSSD */
36 # include <avahi-client/client.h>
37 # include <avahi-client/lookup.h>
38 # include <avahi-common/simple-watch.h>
39 # include <avahi-common/domain.h>
40 # include <avahi-common/error.h>
41 # include <avahi-common/malloc.h>
42 #define kDNSServiceMaxDomainName AVAHI_DOMAIN_NAME_MAX
43 #endif /* HAVE_AVAHI */
52 # include <SystemConfiguration/SystemConfiguration.h>
53 # define _CUPS_LOCATION_DEFAULTS 1
54 # endif /* !TARGET_OS_IOS */
55 # define kCUPSPrintingPrefs CFSTR("org.cups.PrintingPrefs")
56 # define kDefaultPaperIDKey CFSTR("DefaultPaperID")
57 # define kLastUsedPrintersKey CFSTR("LastUsedPrinters")
58 # define kLocationNetworkKey CFSTR("Network")
59 # define kLocationPrinterIDKey CFSTR("PrinterID")
60 # define kUseLastPrinter CFSTR("UseLastPrinter")
61 #endif /* __APPLE__ */
63 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
64 # define _CUPS_DNSSD_GET_DESTS 250 /* Milliseconds for cupsGetDests */
65 # define _CUPS_DNSSD_MAXTIME 50 /* Milliseconds for maximum quantum of time */
67 # define _CUPS_DNSSD_GET_DESTS 0 /* Milliseconds for cupsGetDests */
68 #endif /* HAVE_DNSSD || HAVE_AVAHI */
75 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
76 typedef enum _cups_dnssd_state_e
/* Enumerated device state */
83 _CUPS_DNSSD_INCOMPATIBLE
,
85 } _cups_dnssd_state_t
;
87 typedef struct _cups_dnssd_data_s
/* Enumeration data */
90 DNSServiceRef main_ref
; /* Main service reference */
91 # else /* HAVE_AVAHI */
92 AvahiSimplePoll
*simple_poll
; /* Polling interface */
93 AvahiClient
*client
; /* Client information */
94 int got_data
; /* Did we get data? */
95 int browsers
; /* How many browsers are running? */
96 # endif /* HAVE_DNSSD */
97 cups_dest_cb_t cb
; /* Callback */
98 void *user_data
; /* User data pointer */
99 cups_ptype_t type
, /* Printer type filter */
100 mask
; /* Printer type mask */
101 cups_array_t
*devices
; /* Devices found so far */
102 } _cups_dnssd_data_t
;
104 typedef struct _cups_dnssd_device_s
/* Enumerated device */
106 _cups_dnssd_state_t state
; /* State of device listing */
108 DNSServiceRef ref
; /* Service reference for query */
109 # else /* HAVE_AVAHI */
110 AvahiRecordBrowser
*ref
; /* Browser for query */
111 # endif /* HAVE_DNSSD */
112 char *fullName
, /* Full name */
113 *regtype
, /* Registration type */
114 *domain
; /* Domain name */
115 cups_ptype_t type
; /* Device registration type */
116 cups_dest_t dest
; /* Destination record */
117 } _cups_dnssd_device_t
;
119 typedef struct _cups_dnssd_resolve_s
/* Data for resolving URI */
121 int *cancel
; /* Pointer to "cancel" variable */
122 struct timeval end_time
; /* Ending time */
123 } _cups_dnssd_resolve_t
;
124 #endif /* HAVE_DNSSD */
126 typedef struct _cups_getdata_s
128 int num_dests
; /* Number of destinations */
129 cups_dest_t
*dests
; /* Destinations */
132 typedef struct _cups_namedata_s
134 const char *name
; /* Named destination */
135 cups_dest_t
*dest
; /* Destination */
143 #if _CUPS_LOCATION_DEFAULTS
144 static CFArrayRef
appleCopyLocations(void);
145 static CFStringRef
appleCopyNetwork(void);
146 #endif /* _CUPS_LOCATION_DEFAULTS */
148 static char *appleGetPaperSize(char *name
, size_t namesize
);
149 #endif /* __APPLE__ */
150 #if _CUPS_LOCATION_DEFAULTS
151 static CFStringRef
appleGetPrinter(CFArrayRef locations
,
152 CFStringRef network
, CFIndex
*locindex
);
153 #endif /* _CUPS_LOCATION_DEFAULTS */
154 static cups_dest_t
*cups_add_dest(const char *name
, const char *instance
,
155 int *num_dests
, cups_dest_t
**dests
);
157 static int cups_block_cb(cups_dest_block_t block
, unsigned flags
,
159 #endif /* __BLOCKS__ */
160 static int cups_compare_dests(cups_dest_t
*a
, cups_dest_t
*b
);
161 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
163 static void cups_dnssd_browse_cb(DNSServiceRef sdRef
,
164 DNSServiceFlags flags
,
165 uint32_t interfaceIndex
,
166 DNSServiceErrorType errorCode
,
167 const char *serviceName
,
169 const char *replyDomain
,
171 # else /* HAVE_AVAHI */
172 static void cups_dnssd_browse_cb(AvahiServiceBrowser
*browser
,
173 AvahiIfIndex interface
,
174 AvahiProtocol protocol
,
175 AvahiBrowserEvent event
,
176 const char *serviceName
,
178 const char *replyDomain
,
179 AvahiLookupResultFlags flags
,
181 static void cups_dnssd_client_cb(AvahiClient
*client
,
182 AvahiClientState state
,
184 # endif /* HAVE_DNSSD */
185 static int cups_dnssd_compare_devices(_cups_dnssd_device_t
*a
,
186 _cups_dnssd_device_t
*b
);
187 static void cups_dnssd_free_device(_cups_dnssd_device_t
*device
,
188 _cups_dnssd_data_t
*data
);
189 static _cups_dnssd_device_t
*
190 cups_dnssd_get_device(_cups_dnssd_data_t
*data
,
191 const char *serviceName
,
193 const char *replyDomain
);
195 static void cups_dnssd_local_cb(DNSServiceRef sdRef
,
196 DNSServiceFlags flags
,
197 uint32_t interfaceIndex
,
198 DNSServiceErrorType errorCode
,
199 const char *serviceName
,
201 const char *replyDomain
,
203 static void cups_dnssd_query_cb(DNSServiceRef sdRef
,
204 DNSServiceFlags flags
,
205 uint32_t interfaceIndex
,
206 DNSServiceErrorType errorCode
,
207 const char *fullName
,
208 uint16_t rrtype
, uint16_t rrclass
,
209 uint16_t rdlen
, const void *rdata
,
210 uint32_t ttl
, void *context
);
211 # else /* HAVE_AVAHI */
212 static int cups_dnssd_poll_cb(struct pollfd
*pollfds
,
213 unsigned int num_pollfds
,
214 int timeout
, void *context
);
215 static void cups_dnssd_query_cb(AvahiRecordBrowser
*browser
,
216 AvahiIfIndex interface
,
217 AvahiProtocol protocol
,
218 AvahiBrowserEvent event
,
219 const char *name
, uint16_t rrclass
,
220 uint16_t rrtype
, const void *rdata
,
222 AvahiLookupResultFlags flags
,
224 # endif /* HAVE_DNSSD */
225 static const char *cups_dnssd_resolve(cups_dest_t
*dest
, const char *uri
,
226 int msec
, int *cancel
,
227 cups_dest_cb_t cb
, void *user_data
);
228 static int cups_dnssd_resolve_cb(void *context
);
229 static void cups_dnssd_unquote(char *dst
, const char *src
,
231 static int cups_elapsed(struct timeval
*t
);
232 #endif /* HAVE_DNSSD || HAVE_AVAHI */
233 static int cups_enum_dests(http_t
*http
, unsigned flags
, int msec
, int *cancel
, cups_ptype_t type
, cups_ptype_t mask
, cups_dest_cb_t cb
, void *user_data
);
234 static int cups_find_dest(const char *name
, const char *instance
,
235 int num_dests
, cups_dest_t
*dests
, int prev
,
237 static int cups_get_cb(_cups_getdata_t
*data
, unsigned flags
, cups_dest_t
*dest
);
238 static char *cups_get_default(const char *filename
, char *namebuf
,
239 size_t namesize
, const char **instance
);
240 static int cups_get_dests(const char *filename
, const char *match_name
,
241 const char *match_inst
, int user_default_set
,
242 int num_dests
, cups_dest_t
**dests
);
243 static char *cups_make_string(ipp_attribute_t
*attr
, char *buffer
,
245 static int cups_name_cb(_cups_namedata_t
*data
, unsigned flags
, cups_dest_t
*dest
);
246 static void cups_queue_name(char *name
, const char *serviceName
, size_t namesize
);
250 * 'cupsAddDest()' - Add a destination to the list of destinations.
252 * This function cannot be used to add a new class or printer queue,
253 * it only adds a new container of saved options for the named
254 * destination or instance.
256 * If the named destination already exists, the destination list is
257 * returned unchanged. Adding a new instance of a destination creates
258 * a copy of that destination's options.
260 * Use the @link cupsSaveDests@ function to save the updated list of
261 * destinations to the user's lpoptions file.
264 int /* O - New number of destinations */
265 cupsAddDest(const char *name
, /* I - Destination name */
266 const char *instance
, /* I - Instance name or @code NULL@ for none/primary */
267 int num_dests
, /* I - Number of destinations */
268 cups_dest_t
**dests
) /* IO - Destinations */
270 int i
; /* Looping var */
271 cups_dest_t
*dest
; /* Destination pointer */
272 cups_dest_t
*parent
= NULL
; /* Parent destination */
273 cups_option_t
*doption
, /* Current destination option */
274 *poption
; /* Current parent option */
280 if (!cupsGetDest(name
, instance
, num_dests
, *dests
))
282 if (instance
&& !cupsGetDest(name
, NULL
, num_dests
, *dests
))
285 if ((dest
= cups_add_dest(name
, instance
, &num_dests
, dests
)) == NULL
)
289 * Find the base dest again now the array has been realloc'd.
292 parent
= cupsGetDest(name
, NULL
, num_dests
, *dests
);
294 if (instance
&& parent
&& parent
->num_options
> 0)
297 * Copy options from parent...
300 dest
->options
= calloc(sizeof(cups_option_t
), (size_t)parent
->num_options
);
304 dest
->num_options
= parent
->num_options
;
306 for (i
= dest
->num_options
, doption
= dest
->options
,
307 poption
= parent
->options
;
309 i
--, doption
++, poption
++)
311 doption
->name
= _cupsStrRetain(poption
->name
);
312 doption
->value
= _cupsStrRetain(poption
->value
);
324 * '_cupsAppleCopyDefaultPaperID()' - Get the default paper ID.
327 CFStringRef
/* O - Default paper ID */
328 _cupsAppleCopyDefaultPaperID(void)
330 return (CFPreferencesCopyAppValue(kDefaultPaperIDKey
,
331 kCUPSPrintingPrefs
));
336 * '_cupsAppleCopyDefaultPrinter()' - Get the default printer at this location.
339 CFStringRef
/* O - Default printer name */
340 _cupsAppleCopyDefaultPrinter(void)
342 # if _CUPS_LOCATION_DEFAULTS
343 CFStringRef network
; /* Network location */
344 CFArrayRef locations
; /* Location array */
345 CFStringRef locprinter
; /* Current printer */
349 * Use location-based defaults only if "use last printer" is selected in the
350 * system preferences...
353 if (!_cupsAppleGetUseLastPrinter())
355 DEBUG_puts("1_cupsAppleCopyDefaultPrinter: Not using last printer as "
361 * Get the current location...
364 if ((network
= appleCopyNetwork()) == NULL
)
366 DEBUG_puts("1_cupsAppleCopyDefaultPrinter: Unable to get current "
372 * Lookup the network in the preferences...
375 if ((locations
= appleCopyLocations()) == NULL
)
378 * Missing or bad location array, so no location-based default...
381 DEBUG_puts("1_cupsAppleCopyDefaultPrinter: Missing or bad last used "
389 DEBUG_printf(("1_cupsAppleCopyDefaultPrinter: Got locations, %d entries.",
390 (int)CFArrayGetCount(locations
)));
392 if ((locprinter
= appleGetPrinter(locations
, network
, NULL
)) != NULL
)
393 CFRetain(locprinter
);
396 CFRelease(locations
);
402 # endif /* _CUPS_LOCATION_DEFAULTS */
407 * '_cupsAppleGetUseLastPrinter()' - Get whether to use the last used printer.
410 int /* O - 1 to use last printer, 0 otherwise */
411 _cupsAppleGetUseLastPrinter(void)
413 Boolean uselast
, /* Use last printer preference value */
414 uselast_set
; /* Valid is set? */
417 if (getenv("CUPS_DISABLE_APPLE_DEFAULT"))
420 uselast
= CFPreferencesGetAppBooleanValue(kUseLastPrinter
,
431 * '_cupsAppleSetDefaultPaperID()' - Set the default paper id.
435 _cupsAppleSetDefaultPaperID(
436 CFStringRef name
) /* I - New paper ID */
438 CFPreferencesSetAppValue(kDefaultPaperIDKey
, name
, kCUPSPrintingPrefs
);
439 CFPreferencesAppSynchronize(kCUPSPrintingPrefs
);
441 # ifdef HAVE_NOTIFY_POST
442 notify_post("com.apple.printerPrefsChange");
443 # endif /* HAVE_NOTIFY_POST */
448 * '_cupsAppleSetDefaultPrinter()' - Set the default printer for this location.
452 _cupsAppleSetDefaultPrinter(
453 CFStringRef name
) /* I - Default printer/class name */
455 # if _CUPS_LOCATION_DEFAULTS
456 CFStringRef network
; /* Current network */
457 CFArrayRef locations
; /* Old locations array */
458 CFIndex locindex
; /* Index in locations array */
459 CFStringRef locprinter
; /* Current printer */
460 CFMutableArrayRef newlocations
; /* New locations array */
461 CFMutableDictionaryRef newlocation
; /* New location */
465 * Get the current location...
468 if ((network
= appleCopyNetwork()) == NULL
)
470 DEBUG_puts("1_cupsAppleSetDefaultPrinter: Unable to get current network...");
475 * Lookup the network in the preferences...
478 if ((locations
= appleCopyLocations()) != NULL
)
479 locprinter
= appleGetPrinter(locations
, network
, &locindex
);
486 if (!locprinter
|| CFStringCompare(locprinter
, name
, 0) != kCFCompareEqualTo
)
489 * Need to change the locations array...
494 newlocations
= CFArrayCreateMutableCopy(kCFAllocatorDefault
, 0,
498 CFArrayRemoveValueAtIndex(newlocations
, locindex
);
501 newlocations
= CFArrayCreateMutable(kCFAllocatorDefault
, 0,
502 &kCFTypeArrayCallBacks
);
504 newlocation
= CFDictionaryCreateMutable(kCFAllocatorDefault
, 0,
505 &kCFTypeDictionaryKeyCallBacks
,
506 &kCFTypeDictionaryValueCallBacks
);
508 if (newlocation
&& newlocations
)
511 * Put the new location at the front of the array...
514 CFDictionaryAddValue(newlocation
, kLocationNetworkKey
, network
);
515 CFDictionaryAddValue(newlocation
, kLocationPrinterIDKey
, name
);
516 CFArrayInsertValueAtIndex(newlocations
, 0, newlocation
);
519 * Limit the number of locations to 10...
522 while (CFArrayGetCount(newlocations
) > 10)
523 CFArrayRemoveValueAtIndex(newlocations
, 10);
526 * Push the changes out...
529 CFPreferencesSetAppValue(kLastUsedPrintersKey
, newlocations
,
531 CFPreferencesAppSynchronize(kCUPSPrintingPrefs
);
533 # ifdef HAVE_NOTIFY_POST
534 notify_post("com.apple.printerPrefsChange");
535 # endif /* HAVE_NOTIFY_POST */
539 CFRelease(newlocations
);
542 CFRelease(newlocation
);
546 CFRelease(locations
);
552 # endif /* _CUPS_LOCATION_DEFAULTS */
557 * '_cupsAppleSetUseLastPrinter()' - Set whether to use the last used printer.
561 _cupsAppleSetUseLastPrinter(
562 int uselast
) /* O - 1 to use last printer, 0 otherwise */
564 CFPreferencesSetAppValue(kUseLastPrinter
,
565 uselast
? kCFBooleanTrue
: kCFBooleanFalse
,
567 CFPreferencesAppSynchronize(kCUPSPrintingPrefs
);
569 # ifdef HAVE_NOTIFY_POST
570 notify_post("com.apple.printerPrefsChange");
571 # endif /* HAVE_NOTIFY_POST */
573 #endif /* __APPLE__ */
577 * 'cupsConnectDest()' - Open a conection to the destination.
579 * Connect to the destination, returning a new @code http_t@ connection object
580 * and optionally the resource path to use for the destination. These calls
581 * will block until a connection is made, the timeout expires, the integer
582 * pointed to by "cancel" is non-zero, or the callback function (or block)
583 * returns 0. The caller is responsible for calling @link httpClose@ on the
584 * returned connection.
586 * Starting with CUPS 2.2.4, the caller can pass @code CUPS_DEST_FLAGS_DEVICE@
587 * for the "flags" argument to connect directly to the device associated with
588 * the destination. Otherwise, the connection is made to the CUPS scheduler
589 * associated with the destination.
591 * @since CUPS 1.6/macOS 10.8@
594 http_t
* /* O - Connection to destination or @code NULL@ */
596 cups_dest_t
*dest
, /* I - Destination */
597 unsigned flags
, /* I - Connection flags */
598 int msec
, /* I - Timeout in milliseconds */
599 int *cancel
, /* I - Pointer to "cancel" variable */
600 char *resource
, /* I - Resource buffer */
601 size_t resourcesize
, /* I - Size of resource buffer */
602 cups_dest_cb_t cb
, /* I - Callback function */
603 void *user_data
) /* I - User data pointer */
605 const char *uri
; /* Printer URI */
606 char scheme
[32], /* URI scheme */
607 userpass
[256], /* Username and password (unused) */
608 hostname
[256], /* Hostname */
609 tempresource
[1024]; /* Temporary resource buffer */
610 int port
; /* Port number */
611 char portstr
[16]; /* Port number string */
612 http_encryption_t encryption
; /* Encryption to use */
613 http_addrlist_t
*addrlist
; /* Address list for server */
614 http_t
*http
; /* Connection to server */
617 DEBUG_printf(("cupsConnectDest(dest=%p, flags=0x%x, msec=%d, cancel=%p(%d), resource=\"%s\", resourcesize=" CUPS_LLFMT
", cb=%p, user_data=%p)", (void *)dest
, flags
, msec
, (void *)cancel
, cancel
? *cancel
: -1, resource
, CUPS_LLCAST resourcesize
, (void *)cb
, user_data
));
620 * Range check input...
628 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, strerror(EINVAL
), 0);
632 if (!resource
|| resourcesize
< 1)
634 resource
= tempresource
;
635 resourcesize
= sizeof(tempresource
);
639 * Grab the printer URI...
642 if (flags
& CUPS_DEST_FLAGS_DEVICE
)
644 if ((uri
= cupsGetOption("device-uri", dest
->num_options
, dest
->options
)) != NULL
)
646 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
647 if (strstr(uri
, "._tcp"))
648 uri
= cups_dnssd_resolve(dest
, uri
, msec
, cancel
, cb
, user_data
);
649 #endif /* HAVE_DNSSD || HAVE_AVAHI */
652 else if ((uri
= cupsGetOption("printer-uri-supported", dest
->num_options
, dest
->options
)) == NULL
)
654 if ((uri
= cupsGetOption("device-uri", dest
->num_options
, dest
->options
)) != NULL
)
656 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
657 if (strstr(uri
, "._tcp"))
658 uri
= cups_dnssd_resolve(dest
, uri
, msec
, cancel
, cb
, user_data
);
659 #endif /* HAVE_DNSSD || HAVE_AVAHI */
663 uri
= _cupsCreateDest(dest
->name
, cupsGetOption("printer-info", dest
->num_options
, dest
->options
), NULL
, uri
, tempresource
, sizeof(tempresource
));
667 dest
->num_options
= cupsAddOption("printer-uri-supported", uri
, dest
->num_options
, &dest
->options
);
669 uri
= cupsGetOption("printer-uri-supported", dest
->num_options
, dest
->options
);
675 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, strerror(ENOENT
), 0);
678 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
| CUPS_DEST_FLAGS_ERROR
, dest
);
683 if (httpSeparateURI(HTTP_URI_CODING_ALL
, uri
, scheme
, sizeof(scheme
),
684 userpass
, sizeof(userpass
), hostname
, sizeof(hostname
),
685 &port
, resource
, (int)resourcesize
) < HTTP_URI_STATUS_OK
)
687 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, _("Bad printer-uri."), 1);
690 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
| CUPS_DEST_FLAGS_ERROR
,
697 * Lookup the address for the server...
701 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
| CUPS_DEST_FLAGS_RESOLVING
, dest
);
703 snprintf(portstr
, sizeof(portstr
), "%d", port
);
705 if ((addrlist
= httpAddrGetList(hostname
, AF_UNSPEC
, portstr
)) == NULL
)
708 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
| CUPS_DEST_FLAGS_ERROR
, dest
);
713 if (cancel
&& *cancel
)
715 httpAddrFreeList(addrlist
);
718 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
| CUPS_DEST_FLAGS_CANCELED
, dest
);
724 * Create the HTTP object pointing to the server referenced by the URI...
727 if (!strcmp(scheme
, "ipps") || port
== 443)
728 encryption
= HTTP_ENCRYPTION_ALWAYS
;
730 encryption
= HTTP_ENCRYPTION_IF_REQUESTED
;
732 http
= httpConnect2(hostname
, port
, addrlist
, AF_UNSPEC
, encryption
, 1, 0, NULL
);
733 httpAddrFreeList(addrlist
);
736 * Connect if requested...
739 if (flags
& CUPS_DEST_FLAGS_UNCONNECTED
)
742 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
, dest
);
747 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
| CUPS_DEST_FLAGS_CONNECTING
, dest
);
749 if (!httpReconnect2(http
, msec
, cancel
) && cb
)
751 if (cancel
&& *cancel
)
752 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
| CUPS_DEST_FLAGS_CONNECTING
, dest
);
754 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
| CUPS_DEST_FLAGS_ERROR
, dest
);
757 (*cb
)(user_data
, CUPS_DEST_FLAGS_NONE
, dest
);
766 * 'cupsConnectDestBlock()' - Open a connection to the destination.
768 * Connect to the destination, returning a new @code http_t@ connection object
769 * and optionally the resource path to use for the destination. These calls
770 * will block until a connection is made, the timeout expires, the integer
771 * pointed to by "cancel" is non-zero, or the block returns 0. The caller is
772 * responsible for calling @link httpClose@ on the returned connection.
774 * Starting with CUPS 2.2.4, the caller can pass @code CUPS_DEST_FLAGS_DEVICE@
775 * for the "flags" argument to connect directly to the device associated with
776 * the destination. Otherwise, the connection is made to the CUPS scheduler
777 * associated with the destination.
779 * @since CUPS 1.6/macOS 10.8@ @exclude all@
782 http_t
* /* O - Connection to destination or @code NULL@ */
783 cupsConnectDestBlock(
784 cups_dest_t
*dest
, /* I - Destination */
785 unsigned flags
, /* I - Connection flags */
786 int msec
, /* I - Timeout in milliseconds */
787 int *cancel
, /* I - Pointer to "cancel" variable */
788 char *resource
, /* I - Resource buffer */
789 size_t resourcesize
, /* I - Size of resource buffer */
790 cups_dest_block_t block
) /* I - Callback block */
792 return (cupsConnectDest(dest
, flags
, msec
, cancel
, resource
, resourcesize
,
793 (cups_dest_cb_t
)cups_block_cb
, (void *)block
));
795 #endif /* __BLOCKS__ */
799 * 'cupsCopyDest()' - Copy a destination.
801 * Make a copy of the destination to an array of destinations (or just a single
802 * copy) - for use with the cupsEnumDests* functions. The caller is responsible
803 * for calling cupsFreeDests() on the returned object(s).
805 * @since CUPS 1.6/macOS 10.8@
808 int /* O - New number of destinations */
809 cupsCopyDest(cups_dest_t
*dest
, /* I - Destination to copy */
810 int num_dests
, /* I - Number of destinations */
811 cups_dest_t
**dests
) /* IO - Destination array */
813 int i
; /* Looping var */
814 cups_dest_t
*new_dest
; /* New destination pointer */
815 cups_option_t
*new_option
, /* Current destination option */
816 *option
; /* Current parent option */
820 * Range check input...
823 if (!dest
|| num_dests
< 0 || !dests
)
827 * See if the destination already exists...
830 if ((new_dest
= cupsGetDest(dest
->name
, dest
->instance
, num_dests
,
834 * Protect against copying destination to itself...
837 if (new_dest
== dest
)
841 * Otherwise, free the options...
844 cupsFreeOptions(new_dest
->num_options
, new_dest
->options
);
846 new_dest
->num_options
= 0;
847 new_dest
->options
= NULL
;
850 new_dest
= cups_add_dest(dest
->name
, dest
->instance
, &num_dests
, dests
);
854 if ((new_dest
->options
= calloc(sizeof(cups_option_t
), (size_t)dest
->num_options
)) == NULL
)
855 return (cupsRemoveDest(dest
->name
, dest
->instance
, num_dests
, dests
));
857 new_dest
->num_options
= dest
->num_options
;
859 for (i
= dest
->num_options
, option
= dest
->options
,
860 new_option
= new_dest
->options
;
862 i
--, option
++, new_option
++)
864 new_option
->name
= _cupsStrRetain(option
->name
);
865 new_option
->value
= _cupsStrRetain(option
->value
);
874 * '_cupsCreateDest()' - Create a local (temporary) queue.
877 char * /* O - Printer URI or @code NULL@ on error */
878 _cupsCreateDest(const char *name
, /* I - Printer name */
879 const char *info
, /* I - Printer description of @code NULL@ */
880 const char *device_id
, /* I - 1284 Device ID or @code NULL@ */
881 const char *device_uri
, /* I - Device URI */
882 char *uri
, /* I - Printer URI buffer */
883 size_t urisize
) /* I - Size of URI buffer */
885 http_t
*http
; /* Connection to server */
886 ipp_t
*request
, /* CUPS-Create-Local-Printer request */
887 *response
; /* CUPS-Create-Local-Printer response */
888 ipp_attribute_t
*attr
; /* printer-uri-supported attribute */
889 ipp_pstate_t state
= IPP_PSTATE_STOPPED
;
890 /* printer-state value */
893 if (!name
|| !device_uri
|| !uri
|| urisize
< 32)
896 if ((http
= httpConnect2(cupsServer(), ippPort(), NULL
, AF_UNSPEC
, HTTP_ENCRYPTION_IF_REQUESTED
, 1, 30000, NULL
)) == NULL
)
899 request
= ippNewRequest(IPP_OP_CUPS_CREATE_LOCAL_PRINTER
);
901 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "printer-uri", NULL
, "ipp://localhost/");
902 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name", NULL
, cupsUser());
904 ippAddString(request
, IPP_TAG_PRINTER
, IPP_TAG_URI
, "device-uri", NULL
, device_uri
);
905 ippAddString(request
, IPP_TAG_PRINTER
, IPP_TAG_NAME
, "printer-name", NULL
, name
);
907 ippAddString(request
, IPP_TAG_PRINTER
, IPP_TAG_TEXT
, "printer-info", NULL
, info
);
909 ippAddString(request
, IPP_TAG_PRINTER
, IPP_TAG_TEXT
, "printer-device-id", NULL
, device_id
);
911 response
= cupsDoRequest(http
, request
, "/");
913 if ((attr
= ippFindAttribute(response
, "printer-uri-supported", IPP_TAG_URI
)) != NULL
)
914 strlcpy(uri
, ippGetString(attr
, 0, NULL
), urisize
);
922 if ((attr
= ippFindAttribute(response
, "printer-state", IPP_TAG_ENUM
)) != NULL
)
923 state
= (ipp_pstate_t
)ippGetInteger(attr
, 0);
925 while (state
== IPP_PSTATE_STOPPED
&& cupsLastError() == IPP_STATUS_OK
)
930 request
= ippNewRequest(IPP_OP_GET_PRINTER_ATTRIBUTES
);
932 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "printer-uri", NULL
, uri
);
933 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name", NULL
, cupsUser());
934 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_KEYWORD
, "requested-attributes", NULL
, "printer-state");
936 response
= cupsDoRequest(http
, request
, "/");
938 if ((attr
= ippFindAttribute(response
, "printer-state", IPP_TAG_ENUM
)) != NULL
)
939 state
= (ipp_pstate_t
)ippGetInteger(attr
, 0);
951 * 'cupsEnumDests()' - Enumerate available destinations with a callback function.
953 * Destinations are enumerated from one or more sources. The callback function
954 * receives the @code user_data@ pointer and the destination pointer which can
955 * be used as input to the @link cupsCopyDest@ function. The function must
956 * return 1 to continue enumeration or 0 to stop.
958 * The @code type@ and @code mask@ arguments allow the caller to filter the
959 * destinations that are enumerated. Passing 0 for both will enumerate all
960 * printers. The constant @code CUPS_PRINTER_DISCOVERED@ is used to filter on
961 * destinations that are available but have not yet been added locally.
963 * Enumeration happens on the current thread and does not return until all
964 * destinations have been enumerated or the callback function returns 0.
966 * Note: The callback function will likely receive multiple updates for the same
967 * destinations - it is up to the caller to suppress any duplicate destinations.
969 * @since CUPS 1.6/macOS 10.8@
972 int /* O - 1 on success, 0 on failure */
974 unsigned flags
, /* I - Enumeration flags */
975 int msec
, /* I - Timeout in milliseconds, -1 for indefinite */
976 int *cancel
, /* I - Pointer to "cancel" variable */
977 cups_ptype_t type
, /* I - Printer type bits */
978 cups_ptype_t mask
, /* I - Mask for printer type bits */
979 cups_dest_cb_t cb
, /* I - Callback function */
980 void *user_data
) /* I - User data */
982 return (cups_enum_dests(CUPS_HTTP_DEFAULT
, flags
, msec
, cancel
, type
, mask
, cb
, user_data
));
988 * 'cupsEnumDestsBlock()' - Enumerate available destinations with a block.
990 * Destinations are enumerated from one or more sources. The block receives the
991 * @code user_data@ pointer and the destination pointer which can be used as
992 * input to the @link cupsCopyDest@ function. The block must return 1 to
993 * continue enumeration or 0 to stop.
995 * The @code type@ and @code mask@ arguments allow the caller to filter the
996 * destinations that are enumerated. Passing 0 for both will enumerate all
997 * printers. The constant @code CUPS_PRINTER_DISCOVERED@ is used to filter on
998 * destinations that are available but have not yet been added locally.
1000 * Enumeration happens on the current thread and does not return until all
1001 * destinations have been enumerated or the block returns 0.
1003 * Note: The block will likely receive multiple updates for the same
1004 * destinations - it is up to the caller to suppress any duplicate destinations.
1006 * @since CUPS 1.6/macOS 10.8@ @exclude all@
1009 int /* O - 1 on success, 0 on failure */
1011 unsigned flags
, /* I - Enumeration flags */
1012 int timeout
, /* I - Timeout in milliseconds, 0 for indefinite */
1013 int *cancel
, /* I - Pointer to "cancel" variable */
1014 cups_ptype_t type
, /* I - Printer type bits */
1015 cups_ptype_t mask
, /* I - Mask for printer type bits */
1016 cups_dest_block_t block
) /* I - Block */
1018 return (cupsEnumDests(flags
, timeout
, cancel
, type
, mask
,
1019 (cups_dest_cb_t
)cups_block_cb
, (void *)block
));
1021 # endif /* __BLOCKS__ */
1025 * 'cupsFreeDests()' - Free the memory used by the list of destinations.
1029 cupsFreeDests(int num_dests
, /* I - Number of destinations */
1030 cups_dest_t
*dests
) /* I - Destinations */
1032 int i
; /* Looping var */
1033 cups_dest_t
*dest
; /* Current destination */
1036 if (num_dests
== 0 || dests
== NULL
)
1039 for (i
= num_dests
, dest
= dests
; i
> 0; i
--, dest
++)
1041 _cupsStrFree(dest
->name
);
1042 _cupsStrFree(dest
->instance
);
1044 cupsFreeOptions(dest
->num_options
, dest
->options
);
1052 * 'cupsGetDest()' - Get the named destination from the list.
1054 * Use the @link cupsEnumDests@ or @link cupsGetDests2@ functions to get a
1055 * list of supported destinations for the current user.
1058 cups_dest_t
* /* O - Destination pointer or @code NULL@ */
1059 cupsGetDest(const char *name
, /* I - Destination name or @code NULL@ for the default destination */
1060 const char *instance
, /* I - Instance name or @code NULL@ */
1061 int num_dests
, /* I - Number of destinations */
1062 cups_dest_t
*dests
) /* I - Destinations */
1064 int diff
, /* Result of comparison */
1065 match
; /* Matching index */
1068 if (num_dests
<= 0 || !dests
)
1074 * NULL name for default printer.
1077 while (num_dests
> 0)
1079 if (dests
->is_default
)
1089 * Lookup name and optionally the instance...
1092 match
= cups_find_dest(name
, instance
, num_dests
, dests
, -1, &diff
);
1095 return (dests
+ match
);
1103 * '_cupsGetDestResource()' - Get the resource path and URI for a destination.
1106 const char * /* O - Printer URI */
1107 _cupsGetDestResource(
1108 cups_dest_t
*dest
, /* I - Destination */
1109 char *resource
, /* I - Resource buffer */
1110 size_t resourcesize
) /* I - Size of resource buffer */
1112 const char *uri
; /* Printer URI */
1113 char scheme
[32], /* URI scheme */
1114 userpass
[256], /* Username and password (unused) */
1115 hostname
[256]; /* Hostname */
1116 int port
; /* Port number */
1119 DEBUG_printf(("_cupsGetDestResource(dest=%p(%s), resource=%p, resourcesize=%d)", (void *)dest
, dest
->name
, (void *)resource
, (int)resourcesize
));
1122 * Range check input...
1125 if (!dest
|| !resource
|| resourcesize
< 1)
1130 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, strerror(EINVAL
), 0);
1135 * Grab the printer URI...
1138 if ((uri
= cupsGetOption("printer-uri-supported", dest
->num_options
, dest
->options
)) == NULL
)
1140 if ((uri
= cupsGetOption("device-uri", dest
->num_options
, dest
->options
)) != NULL
)
1142 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
1143 if (strstr(uri
, "._tcp"))
1144 uri
= cups_dnssd_resolve(dest
, uri
, 5000, NULL
, NULL
, NULL
);
1145 #endif /* HAVE_DNSSD || HAVE_AVAHI */
1150 DEBUG_printf(("1_cupsGetDestResource: Resolved printer-uri-supported=\"%s\"", uri
));
1152 uri
= _cupsCreateDest(dest
->name
, cupsGetOption("printer-info", dest
->num_options
, dest
->options
), NULL
, uri
, resource
, resourcesize
);
1157 DEBUG_printf(("1_cupsGetDestResource: Local printer-uri-supported=\"%s\"", uri
));
1159 dest
->num_options
= cupsAddOption("printer-uri-supported", uri
, dest
->num_options
, &dest
->options
);
1161 uri
= cupsGetOption("printer-uri-supported", dest
->num_options
, dest
->options
);
1165 DEBUG_puts("1_cupsGetDestResource: No printer-uri-supported found.");
1170 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, strerror(ENOENT
), 0);
1177 DEBUG_printf(("1_cupsGetDestResource: printer-uri-supported=\"%s\"", uri
));
1179 if (httpSeparateURI(HTTP_URI_CODING_ALL
, uri
, scheme
, sizeof(scheme
),
1180 userpass
, sizeof(userpass
), hostname
, sizeof(hostname
),
1181 &port
, resource
, (int)resourcesize
) < HTTP_URI_STATUS_OK
)
1183 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, _("Bad printer-uri."), 1);
1189 DEBUG_printf(("1_cupsGetDestResource: resource=\"%s\"", resource
));
1196 * 'cupsGetDestWithURI()' - Get a destination associated with a URI.
1198 * "name" is the desired name for the printer. If @code NULL@, a name will be
1199 * created using the URI.
1201 * "uri" is the "ipp" or "ipps" URI for the printer.
1203 * @since CUPS 2.0/macOS 10.10@
1206 cups_dest_t
* /* O - Destination or @code NULL@ */
1207 cupsGetDestWithURI(const char *name
, /* I - Desired printer name or @code NULL@ */
1208 const char *uri
) /* I - URI for the printer */
1210 cups_dest_t
*dest
; /* New destination */
1211 char temp
[1024], /* Temporary string */
1212 scheme
[256], /* Scheme from URI */
1213 userpass
[256], /* Username:password from URI */
1214 hostname
[256], /* Hostname from URI */
1215 resource
[1024], /* Resource path from URI */
1216 *ptr
; /* Pointer into string */
1217 const char *info
; /* printer-info string */
1218 int port
; /* Port number from URI */
1222 * Range check input...
1227 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, strerror(EINVAL
), 0);
1231 if (httpSeparateURI(HTTP_URI_CODING_ALL
, uri
, scheme
, sizeof(scheme
), userpass
, sizeof(userpass
), hostname
, sizeof(hostname
), &port
, resource
, sizeof(resource
)) < HTTP_URI_STATUS_OK
||
1232 (strncmp(uri
, "ipp://", 6) && strncmp(uri
, "ipps://", 7)))
1234 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, _("Bad printer-uri."), 1);
1246 * Create the name from the URI...
1249 if (strstr(hostname
, "._tcp"))
1252 * Use the service instance name...
1255 if ((ptr
= strstr(hostname
, "._")) != NULL
)
1258 cups_queue_name(temp
, hostname
, sizeof(temp
));
1262 else if (!strncmp(resource
, "/classes/", 9))
1264 snprintf(temp
, sizeof(temp
), "%s @ %s", resource
+ 9, hostname
);
1265 name
= resource
+ 9;
1268 else if (!strncmp(resource
, "/printers/", 10))
1270 snprintf(temp
, sizeof(temp
), "%s @ %s", resource
+ 10, hostname
);
1271 name
= resource
+ 10;
1282 * Create the destination...
1285 if ((dest
= calloc(1, sizeof(cups_dest_t
))) == NULL
)
1287 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, strerror(errno
), 0);
1291 dest
->name
= _cupsStrAlloc(name
);
1292 dest
->num_options
= cupsAddOption("device-uri", uri
, dest
->num_options
, &(dest
->options
));
1293 dest
->num_options
= cupsAddOption("printer-info", info
, dest
->num_options
, &(dest
->options
));
1300 * '_cupsGetDests()' - Get destinations from a server.
1302 * "op" is IPP_OP_CUPS_GET_PRINTERS to get a full list, IPP_OP_CUPS_GET_DEFAULT
1303 * to get the system-wide default printer, or IPP_OP_GET_PRINTER_ATTRIBUTES for
1306 * "name" is the name of an existing printer and is only used when "op" is
1307 * IPP_OP_GET_PRINTER_ATTRIBUTES.
1309 * "dest" is initialized to point to the array of destinations.
1311 * 0 is returned if there are no printers, no default printer, or the named
1312 * printer does not exist, respectively.
1314 * Free the memory used by the destination array using the @link cupsFreeDests@
1317 * Note: On macOS this function also gets the default paper from the system
1318 * preferences (~/L/P/org.cups.PrintingPrefs.plist) and includes it in the
1319 * options array for each destination that supports it.
1322 int /* O - Number of destinations */
1323 _cupsGetDests(http_t
*http
, /* I - Connection to server or
1324 * @code CUPS_HTTP_DEFAULT@ */
1325 ipp_op_t op
, /* I - IPP operation */
1326 const char *name
, /* I - Name of destination */
1327 cups_dest_t
**dests
, /* IO - Destinations */
1328 cups_ptype_t type
, /* I - Printer type bits */
1329 cups_ptype_t mask
) /* I - Printer type mask */
1331 int num_dests
= 0; /* Number of destinations */
1332 cups_dest_t
*dest
; /* Current destination */
1333 ipp_t
*request
, /* IPP Request */
1334 *response
; /* IPP Response */
1335 ipp_attribute_t
*attr
; /* Current attribute */
1336 const char *printer_name
; /* printer-name attribute */
1337 char uri
[1024]; /* printer-uri value */
1338 int num_options
; /* Number of options */
1339 cups_option_t
*options
; /* Options */
1341 char media_default
[41]; /* Default paper size */
1342 #endif /* __APPLE__ */
1343 char optname
[1024], /* Option name */
1344 value
[2048], /* Option value */
1345 *ptr
; /* Pointer into name/value */
1346 static const char * const pattrs
[] = /* Attributes we're interested in */
1348 "auth-info-required",
1350 "job-sheets-default",
1351 "marker-change-time",
1353 "marker-high-levels",
1355 "marker-low-levels",
1361 #endif /* __APPLE__ */
1365 "printer-is-accepting-jobs",
1366 "printer-is-shared",
1367 "printer-is-temporary",
1369 "printer-make-and-model",
1370 "printer-mandatory-job-attributes",
1373 "printer-state-change-time",
1374 "printer-state-reasons",
1376 "printer-uri-supported"
1380 DEBUG_printf(("_cupsGetDests(http=%p, op=%x(%s), name=\"%s\", dests=%p, type=%x, mask=%x)", (void *)http
, op
, ippOpString(op
), name
, (void *)dests
, type
, mask
));
1384 * Get the default paper size...
1387 appleGetPaperSize(media_default
, sizeof(media_default
));
1388 DEBUG_printf(("1_cupsGetDests: Default media is '%s'.", media_default
));
1389 #endif /* __APPLE__ */
1392 * Build a IPP_OP_CUPS_GET_PRINTERS or IPP_OP_GET_PRINTER_ATTRIBUTES request, which
1393 * require the following attributes:
1395 * attributes-charset
1396 * attributes-natural-language
1397 * requesting-user-name
1398 * printer-uri [for IPP_OP_GET_PRINTER_ATTRIBUTES]
1401 request
= ippNewRequest(op
);
1403 ippAddStrings(request
, IPP_TAG_OPERATION
, IPP_TAG_KEYWORD
,
1404 "requested-attributes", sizeof(pattrs
) / sizeof(pattrs
[0]),
1407 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
1408 "requesting-user-name", NULL
, cupsUser());
1410 if (name
&& op
!= IPP_OP_CUPS_GET_DEFAULT
)
1412 httpAssembleURIf(HTTP_URI_CODING_ALL
, uri
, sizeof(uri
), "ipp", NULL
,
1413 "localhost", ippPort(), "/printers/%s", name
);
1414 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "printer-uri", NULL
,
1419 ippAddInteger(request
, IPP_TAG_OPERATION
, IPP_TAG_ENUM
, "printer-type", (int)type
);
1420 ippAddInteger(request
, IPP_TAG_OPERATION
, IPP_TAG_ENUM
, "printer-type-mask", (int)mask
);
1424 * Do the request and get back a response...
1427 if ((response
= cupsDoRequest(http
, request
, "/")) != NULL
)
1429 for (attr
= response
->attrs
; attr
!= NULL
; attr
= attr
->next
)
1432 * Skip leading attributes until we hit a printer...
1435 while (attr
!= NULL
&& attr
->group_tag
!= IPP_TAG_PRINTER
)
1442 * Pull the needed attributes from this printer...
1445 printer_name
= NULL
;
1449 for (; attr
&& attr
->group_tag
== IPP_TAG_PRINTER
; attr
= attr
->next
)
1451 if (attr
->value_tag
!= IPP_TAG_INTEGER
&&
1452 attr
->value_tag
!= IPP_TAG_ENUM
&&
1453 attr
->value_tag
!= IPP_TAG_BOOLEAN
&&
1454 attr
->value_tag
!= IPP_TAG_TEXT
&&
1455 attr
->value_tag
!= IPP_TAG_TEXTLANG
&&
1456 attr
->value_tag
!= IPP_TAG_NAME
&&
1457 attr
->value_tag
!= IPP_TAG_NAMELANG
&&
1458 attr
->value_tag
!= IPP_TAG_KEYWORD
&&
1459 attr
->value_tag
!= IPP_TAG_RANGE
&&
1460 attr
->value_tag
!= IPP_TAG_URI
)
1463 if (!strcmp(attr
->name
, "auth-info-required") ||
1464 !strcmp(attr
->name
, "device-uri") ||
1465 !strcmp(attr
->name
, "marker-change-time") ||
1466 !strcmp(attr
->name
, "marker-colors") ||
1467 !strcmp(attr
->name
, "marker-high-levels") ||
1468 !strcmp(attr
->name
, "marker-levels") ||
1469 !strcmp(attr
->name
, "marker-low-levels") ||
1470 !strcmp(attr
->name
, "marker-message") ||
1471 !strcmp(attr
->name
, "marker-names") ||
1472 !strcmp(attr
->name
, "marker-types") ||
1473 !strcmp(attr
->name
, "printer-commands") ||
1474 !strcmp(attr
->name
, "printer-info") ||
1475 !strcmp(attr
->name
, "printer-is-shared") ||
1476 !strcmp(attr
->name
, "printer-is-temporary") ||
1477 !strcmp(attr
->name
, "printer-make-and-model") ||
1478 !strcmp(attr
->name
, "printer-mandatory-job-attributes") ||
1479 !strcmp(attr
->name
, "printer-state") ||
1480 !strcmp(attr
->name
, "printer-state-change-time") ||
1481 !strcmp(attr
->name
, "printer-type") ||
1482 !strcmp(attr
->name
, "printer-is-accepting-jobs") ||
1483 !strcmp(attr
->name
, "printer-location") ||
1484 !strcmp(attr
->name
, "printer-state-reasons") ||
1485 !strcmp(attr
->name
, "printer-uri-supported"))
1488 * Add a printer description attribute...
1491 num_options
= cupsAddOption(attr
->name
,
1492 cups_make_string(attr
, value
,
1494 num_options
, &options
);
1497 else if (!strcmp(attr
->name
, "media-supported") && media_default
[0])
1500 * See if we can set a default media size...
1503 int i
; /* Looping var */
1505 for (i
= 0; i
< attr
->num_values
; i
++)
1506 if (!_cups_strcasecmp(media_default
, attr
->values
[i
].string
.text
))
1508 DEBUG_printf(("1_cupsGetDests: Setting media to '%s'.", media_default
));
1509 num_options
= cupsAddOption("media", media_default
, num_options
, &options
);
1513 #endif /* __APPLE__ */
1514 else if (!strcmp(attr
->name
, "printer-name") &&
1515 attr
->value_tag
== IPP_TAG_NAME
)
1516 printer_name
= attr
->values
[0].string
.text
;
1517 else if (strncmp(attr
->name
, "notify-", 7) &&
1518 strncmp(attr
->name
, "print-quality-", 14) &&
1519 (attr
->value_tag
== IPP_TAG_BOOLEAN
||
1520 attr
->value_tag
== IPP_TAG_ENUM
||
1521 attr
->value_tag
== IPP_TAG_INTEGER
||
1522 attr
->value_tag
== IPP_TAG_KEYWORD
||
1523 attr
->value_tag
== IPP_TAG_NAME
||
1524 attr
->value_tag
== IPP_TAG_RANGE
) &&
1525 (ptr
= strstr(attr
->name
, "-default")) != NULL
)
1528 * Add a default option...
1531 strlcpy(optname
, attr
->name
, sizeof(optname
));
1532 optname
[ptr
- attr
->name
] = '\0';
1534 if (_cups_strcasecmp(optname
, "media") || !cupsGetOption("media", num_options
, options
))
1535 num_options
= cupsAddOption(optname
, cups_make_string(attr
, value
, sizeof(value
)), num_options
, &options
);
1540 * See if we have everything needed...
1545 cupsFreeOptions(num_options
, options
);
1553 if ((dest
= cups_add_dest(printer_name
, NULL
, &num_dests
, dests
)) != NULL
)
1555 dest
->num_options
= num_options
;
1556 dest
->options
= options
;
1559 cupsFreeOptions(num_options
, options
);
1565 ippDelete(response
);
1569 * Return the count...
1577 * 'cupsGetDests()' - Get the list of destinations from the default server.
1579 * Starting with CUPS 1.2, the returned list of destinations include the
1580 * "printer-info", "printer-is-accepting-jobs", "printer-is-shared",
1581 * "printer-make-and-model", "printer-state", "printer-state-change-time",
1582 * "printer-state-reasons", "printer-type", and "printer-uri-supported"
1583 * attributes as options.
1585 * CUPS 1.4 adds the "marker-change-time", "marker-colors",
1586 * "marker-high-levels", "marker-levels", "marker-low-levels", "marker-message",
1587 * "marker-names", "marker-types", and "printer-commands" attributes as options.
1589 * CUPS 2.2 adds accessible IPP printers to the list of destinations that can
1590 * be used. The "printer-uri-supported" option will be present for those IPP
1591 * printers that have been recently used.
1593 * Use the @link cupsFreeDests@ function to free the destination list and
1594 * the @link cupsGetDest@ function to find a particular destination.
1599 int /* O - Number of destinations */
1600 cupsGetDests(cups_dest_t
**dests
) /* O - Destinations */
1602 return (cupsGetDests2(CUPS_HTTP_DEFAULT
, dests
));
1607 * 'cupsGetDests2()' - Get the list of destinations from the specified server.
1609 * Starting with CUPS 1.2, the returned list of destinations include the
1610 * "printer-info", "printer-is-accepting-jobs", "printer-is-shared",
1611 * "printer-make-and-model", "printer-state", "printer-state-change-time",
1612 * "printer-state-reasons", "printer-type", and "printer-uri-supported"
1613 * attributes as options.
1615 * CUPS 1.4 adds the "marker-change-time", "marker-colors",
1616 * "marker-high-levels", "marker-levels", "marker-low-levels", "marker-message",
1617 * "marker-names", "marker-types", and "printer-commands" attributes as options.
1619 * CUPS 2.2 adds accessible IPP printers to the list of destinations that can
1620 * be used. The "printer-uri-supported" option will be present for those IPP
1621 * printers that have been recently used.
1623 * Use the @link cupsFreeDests@ function to free the destination list and
1624 * the @link cupsGetDest@ function to find a particular destination.
1626 * @since CUPS 1.1.21/macOS 10.4@
1629 int /* O - Number of destinations */
1630 cupsGetDests2(http_t
*http
, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
1631 cups_dest_t
**dests
) /* O - Destinations */
1633 _cups_getdata_t data
; /* Enumeration data */
1634 cups_dest_t
*dest
; /* Current destination */
1635 const char *home
; /* HOME environment variable */
1636 char filename
[1024]; /* Local ~/.cups/lpoptions file */
1637 const char *defprinter
; /* Default printer */
1638 char name
[1024], /* Copy of printer name */
1639 *instance
, /* Pointer to instance name */
1640 *user_default
; /* User default printer */
1641 int num_reals
; /* Number of real queues */
1642 cups_dest_t
*reals
; /* Real queues */
1643 _cups_globals_t
*cg
= _cupsGlobals(); /* Pointer to library globals */
1646 DEBUG_printf(("cupsGetDests2(http=%p, dests=%p)", (void *)http
, (void *)dests
));
1649 * Range check the input...
1654 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, _("Bad NULL dests pointer"), 1);
1655 DEBUG_puts("1cupsGetDests2: NULL dests pointer, returning 0.");
1660 * Connect to the server as needed...
1665 if ((http
= _cupsConnect()) == NULL
)
1674 * Grab the printers and classes...
1680 if (!httpAddrLocalhost(httpGetAddress(http
)))
1683 * When talking to a remote cupsd, just enumerate printers on the remote
1687 cups_enum_dests(http
, 0, _CUPS_DNSSD_GET_DESTS
, NULL
, 0, CUPS_PRINTER_DISCOVERED
, (cups_dest_cb_t
)cups_get_cb
, &data
);
1692 * When talking to a local cupsd, enumerate both local printers and ones we
1693 * can find on the network...
1696 cups_enum_dests(http
, 0, _CUPS_DNSSD_GET_DESTS
, NULL
, 0, 0, (cups_dest_cb_t
)cups_get_cb
, &data
);
1700 * Make a copy of the "real" queues for a later sanity check...
1703 if (data
.num_dests
> 0)
1705 num_reals
= data
.num_dests
;
1706 reals
= calloc((size_t)num_reals
, sizeof(cups_dest_t
));
1709 memcpy(reals
, data
.dests
, (size_t)num_reals
* sizeof(cups_dest_t
));
1720 * Grab the default destination...
1723 if ((user_default
= _cupsUserDefault(name
, sizeof(name
))) != NULL
)
1725 else if ((defprinter
= cupsGetDefault2(http
)) != NULL
)
1727 strlcpy(name
, defprinter
, sizeof(name
));
1734 * Separate printer and instance name...
1737 if ((instance
= strchr(name
, '/')) != NULL
)
1741 * Lookup the printer and instance and make it the default...
1744 if ((dest
= cupsGetDest(name
, instance
, data
.num_dests
, data
.dests
)) != NULL
)
1745 dest
->is_default
= 1;
1751 * Load the /etc/cups/lpoptions and ~/.cups/lpoptions files...
1754 snprintf(filename
, sizeof(filename
), "%s/lpoptions", cg
->cups_serverroot
);
1755 data
.num_dests
= cups_get_dests(filename
, NULL
, NULL
, user_default
!= NULL
, data
.num_dests
, &data
.dests
);
1757 if ((home
= getenv("HOME")) != NULL
)
1759 snprintf(filename
, sizeof(filename
), "%s/.cups/lpoptions", home
);
1761 data
.num_dests
= cups_get_dests(filename
, NULL
, NULL
, user_default
!= NULL
, data
.num_dests
, &data
.dests
);
1765 * Validate the current default destination - this prevents old
1766 * Default lines in /etc/cups/lpoptions and ~/.cups/lpoptions from
1767 * pointing to a non-existent printer or class...
1773 * See if we have a default printer...
1776 if ((dest
= cupsGetDest(NULL
, NULL
, data
.num_dests
, data
.dests
)) != NULL
)
1779 * Have a default; see if it is real...
1782 if (!cupsGetDest(dest
->name
, NULL
, num_reals
, reals
))
1785 * Remove the non-real printer from the list, since we don't want jobs
1786 * going to an unexpected printer... (<rdar://problem/14216472>)
1789 data
.num_dests
= cupsRemoveDest(dest
->name
, dest
->instance
, data
.num_dests
, &data
.dests
);
1801 * Return the number of destinations...
1804 *dests
= data
.dests
;
1806 if (data
.num_dests
> 0)
1807 _cupsSetError(IPP_STATUS_OK
, NULL
, 0);
1809 DEBUG_printf(("1cupsGetDests2: Returning %d destinations.", data
.num_dests
));
1811 return (data
.num_dests
);
1816 * 'cupsGetNamedDest()' - Get options for the named destination.
1818 * This function is optimized for retrieving a single destination and should
1819 * be used instead of @link cupsGetDests2@ and @link cupsGetDest@ when you
1820 * either know the name of the destination or want to print to the default
1821 * destination. If @code NULL@ is returned, the destination does not exist or
1822 * there is no default destination.
1824 * If "http" is @code CUPS_HTTP_DEFAULT@, the connection to the default print
1825 * server will be used.
1827 * If "name" is @code NULL@, the default printer for the current user will be
1830 * The returned destination must be freed using @link cupsFreeDests@ with a
1831 * "num_dests" value of 1.
1833 * @since CUPS 1.4/macOS 10.6@
1836 cups_dest_t
* /* O - Destination or @code NULL@ */
1837 cupsGetNamedDest(http_t
*http
, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
1838 const char *name
, /* I - Destination name or @code NULL@ for the default destination */
1839 const char *instance
) /* I - Instance name or @code NULL@ */
1841 const char *dest_name
; /* Working destination name */
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 */
1852 DEBUG_printf(("cupsGetNamedDest(http=%p, name=\"%s\", instance=\"%s\")", (void *)http
, name
, instance
));
1855 * If "name" is NULL, find the default destination...
1863 dest_name
= _cupsUserDefault(defname
, sizeof(defname
));
1867 char *ptr
; /* Temporary pointer... */
1869 if ((ptr
= strchr(defname
, '/')) != NULL
)
1880 * No default in the environment, try the user's lpoptions files...
1883 snprintf(filename
, sizeof(filename
), "%s/.cups/lpoptions", home
);
1885 dest_name
= cups_get_default(filename
, defname
, sizeof(defname
), &instance
);
1891 * Still not there? Try the system lpoptions file...
1894 snprintf(filename
, sizeof(filename
), "%s/lpoptions", cg
->cups_serverroot
);
1895 dest_name
= cups_get_default(filename
, defname
, sizeof(defname
), &instance
);
1901 * No locally-set default destination, ask the server...
1904 op
= IPP_OP_CUPS_GET_DEFAULT
;
1906 DEBUG_puts("1cupsGetNamedDest: Asking server for default printer...");
1909 DEBUG_printf(("1cupsGetNamedDest: Using name=\"%s\"...", name
));
1913 * Get the printer's attributes...
1916 if (!_cupsGetDests(http
, op
, dest_name
, &dest
, 0, 0))
1920 _cups_namedata_t data
; /* Callback data */
1922 DEBUG_puts("1cupsGetNamedDest: No queue found for printer, looking on network...");
1927 cupsEnumDests(0, 1000, NULL
, 0, 0, (cups_dest_cb_t
)cups_name_cb
, &data
);
1938 DEBUG_printf(("1cupsGetNamedDest: Got dest=%p", (void *)dest
));
1941 dest
->instance
= _cupsStrAlloc(instance
);
1944 dest
->is_default
= 1;
1947 * Then add local options...
1950 snprintf(filename
, sizeof(filename
), "%s/lpoptions", cg
->cups_serverroot
);
1951 cups_get_dests(filename
, dest_name
, instance
, 1, 1, &dest
);
1955 snprintf(filename
, sizeof(filename
), "%s/.cups/lpoptions", home
);
1957 cups_get_dests(filename
, dest_name
, instance
, 1, 1, &dest
);
1961 * Return the result...
1969 * 'cupsRemoveDest()' - Remove a destination from the destination list.
1971 * Removing a destination/instance does not delete the class or printer
1972 * queue, merely the lpoptions for that destination/instance. Use the
1973 * @link cupsSetDests@ or @link cupsSetDests2@ functions to save the new
1974 * options for the user.
1976 * @since CUPS 1.3/macOS 10.5@
1979 int /* O - New number of destinations */
1980 cupsRemoveDest(const char *name
, /* I - Destination name */
1981 const char *instance
, /* I - Instance name or @code NULL@ */
1982 int num_dests
, /* I - Number of destinations */
1983 cups_dest_t
**dests
) /* IO - Destinations */
1985 int i
; /* Index into destinations */
1986 cups_dest_t
*dest
; /* Pointer to destination */
1990 * Find the destination...
1993 if ((dest
= cupsGetDest(name
, instance
, num_dests
, *dests
)) == NULL
)
2000 _cupsStrFree(dest
->name
);
2001 _cupsStrFree(dest
->instance
);
2002 cupsFreeOptions(dest
->num_options
, dest
->options
);
2005 * Remove the destination from the array...
2010 i
= (int)(dest
- *dests
);
2013 memmove(dest
, dest
+ 1, (size_t)(num_dests
- i
) * sizeof(cups_dest_t
));
2020 * 'cupsSetDefaultDest()' - Set the default destination.
2022 * @since CUPS 1.3/macOS 10.5@
2027 const char *name
, /* I - Destination name */
2028 const char *instance
, /* I - Instance name or @code NULL@ */
2029 int num_dests
, /* I - Number of destinations */
2030 cups_dest_t
*dests
) /* I - Destinations */
2032 int i
; /* Looping var */
2033 cups_dest_t
*dest
; /* Current destination */
2037 * Range check input...
2040 if (!name
|| num_dests
<= 0 || !dests
)
2044 * Loop through the array and set the "is_default" flag for the matching
2048 for (i
= num_dests
, dest
= dests
; i
> 0; i
--, dest
++)
2049 dest
->is_default
= !_cups_strcasecmp(name
, dest
->name
) &&
2050 ((!instance
&& !dest
->instance
) ||
2051 (instance
&& dest
->instance
&&
2052 !_cups_strcasecmp(instance
, dest
->instance
)));
2057 * 'cupsSetDests()' - Save the list of destinations for the default server.
2059 * This function saves the destinations to /etc/cups/lpoptions when run
2060 * as root and ~/.cups/lpoptions when run as a normal user.
2066 cupsSetDests(int num_dests
, /* I - Number of destinations */
2067 cups_dest_t
*dests
) /* I - Destinations */
2069 cupsSetDests2(CUPS_HTTP_DEFAULT
, num_dests
, dests
);
2074 * 'cupsSetDests2()' - Save the list of destinations for the specified server.
2076 * This function saves the destinations to /etc/cups/lpoptions when run
2077 * as root and ~/.cups/lpoptions when run as a normal user.
2079 * @since CUPS 1.1.21/macOS 10.4@
2082 int /* O - 0 on success, -1 on error */
2083 cupsSetDests2(http_t
*http
, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
2084 int num_dests
, /* I - Number of destinations */
2085 cups_dest_t
*dests
) /* I - Destinations */
2087 int i
, j
; /* Looping vars */
2088 int wrote
; /* Wrote definition? */
2089 cups_dest_t
*dest
; /* Current destination */
2090 cups_option_t
*option
; /* Current option */
2091 _ipp_option_t
*match
; /* Matching attribute for option */
2092 FILE *fp
; /* File pointer */
2094 const char *home
; /* HOME environment variable */
2096 char filename
[1024]; /* lpoptions file */
2097 int num_temps
; /* Number of temporary destinations */
2098 cups_dest_t
*temps
= NULL
, /* Temporary destinations */
2099 *temp
; /* Current temporary dest */
2100 const char *val
; /* Value of temporary option */
2101 _cups_globals_t
*cg
= _cupsGlobals(); /* Pointer to library globals */
2105 * Range check the input...
2108 if (!num_dests
|| !dests
)
2112 * Get the server destinations...
2115 num_temps
= _cupsGetDests(http
, IPP_OP_CUPS_GET_PRINTERS
, NULL
, &temps
, 0, 0);
2117 if (cupsLastError() >= IPP_STATUS_REDIRECTION_OTHER_SITE
)
2119 cupsFreeDests(num_temps
, temps
);
2124 * Figure out which file to write to...
2127 snprintf(filename
, sizeof(filename
), "%s/lpoptions", cg
->cups_serverroot
);
2133 * Merge in server defaults...
2136 num_temps
= cups_get_dests(filename
, NULL
, NULL
, 0, num_temps
, &temps
);
2139 * Point to user defaults...
2142 if ((home
= getenv("HOME")) != NULL
)
2145 * Create ~/.cups subdirectory...
2148 snprintf(filename
, sizeof(filename
), "%s/.cups", home
);
2149 if (access(filename
, 0))
2150 mkdir(filename
, 0700);
2152 snprintf(filename
, sizeof(filename
), "%s/.cups/lpoptions", home
);
2158 * Try to open the file...
2161 if ((fp
= fopen(filename
, "w")) == NULL
)
2163 cupsFreeDests(num_temps
, temps
);
2169 * Set the permissions to 0644 when saving to the /etc/cups/lpoptions
2174 fchmod(fileno(fp
), 0644);
2178 * Write each printer; each line looks like:
2180 * Dest name[/instance] options
2181 * Default name[/instance] options
2184 for (i
= num_dests
, dest
= dests
; i
> 0; i
--, dest
++)
2185 if (dest
->instance
!= NULL
|| dest
->num_options
!= 0 || dest
->is_default
)
2187 if (dest
->is_default
)
2189 fprintf(fp
, "Default %s", dest
->name
);
2191 fprintf(fp
, "/%s", dest
->instance
);
2198 if ((temp
= cupsGetDest(dest
->name
, dest
->instance
, num_temps
, temps
)) == NULL
)
2199 temp
= cupsGetDest(dest
->name
, NULL
, num_temps
, temps
);
2201 for (j
= dest
->num_options
, option
= dest
->options
; j
> 0; j
--, option
++)
2204 * See if this option is a printer attribute; if so, skip it...
2207 if ((match
= _ippFindOption(option
->name
)) != NULL
&&
2208 match
->group_tag
== IPP_TAG_PRINTER
)
2212 * See if the server/global options match these; if so, don't
2217 (val
= cupsGetOption(option
->name
, temp
->num_options
,
2218 temp
->options
)) != NULL
&&
2219 !_cups_strcasecmp(val
, option
->value
))
2223 * Options don't match, write to the file...
2228 fprintf(fp
, "Dest %s", dest
->name
);
2230 fprintf(fp
, "/%s", dest
->instance
);
2234 if (option
->value
[0])
2236 if (strchr(option
->value
, ' ') ||
2237 strchr(option
->value
, '\\') ||
2238 strchr(option
->value
, '\"') ||
2239 strchr(option
->value
, '\''))
2242 * Quote the value...
2245 fprintf(fp
, " %s=\"", option
->name
);
2247 for (val
= option
->value
; *val
; val
++)
2249 if (strchr("\"\'\\", *val
))
2260 * Store the literal value...
2263 fprintf(fp
, " %s=%s", option
->name
, option
->value
);
2267 fprintf(fp
, " %s", option
->name
);
2275 * Free the temporary destinations and close the file...
2278 cupsFreeDests(num_temps
, temps
);
2284 * Set the default printer for this location - this allows command-line
2285 * and GUI applications to share the same default destination...
2288 if ((dest
= cupsGetDest(NULL
, NULL
, num_dests
, dests
)) != NULL
)
2290 CFStringRef name
= CFStringCreateWithCString(kCFAllocatorDefault
,
2292 kCFStringEncodingUTF8
);
2293 /* Default printer name */
2297 _cupsAppleSetDefaultPrinter(name
);
2301 #endif /* __APPLE__ */
2303 #ifdef HAVE_NOTIFY_POST
2305 * Send a notification so that macOS applications can know about the
2309 notify_post("com.apple.printerListChange");
2310 #endif /* HAVE_NOTIFY_POST */
2317 * '_cupsUserDefault()' - Get the user default printer from environment
2318 * variables and location information.
2321 char * /* O - Default printer or NULL */
2322 _cupsUserDefault(char *name
, /* I - Name buffer */
2323 size_t namesize
) /* I - Size of name buffer */
2325 const char *env
; /* LPDEST or PRINTER env variable */
2327 CFStringRef locprinter
; /* Last printer as this location */
2328 #endif /* __APPLE__ */
2331 if ((env
= getenv("LPDEST")) == NULL
)
2332 if ((env
= getenv("PRINTER")) != NULL
&& !strcmp(env
, "lp"))
2337 strlcpy(name
, env
, namesize
);
2343 * Use location-based defaults if "use last printer" is selected in the
2344 * system preferences...
2347 if ((locprinter
= _cupsAppleCopyDefaultPrinter()) != NULL
)
2349 CFStringGetCString(locprinter
, name
, (CFIndex
)namesize
, kCFStringEncodingUTF8
);
2350 CFRelease(locprinter
);
2355 DEBUG_printf(("1_cupsUserDefault: Returning \"%s\".", name
));
2357 return (*name
? name
: NULL
);
2361 * No location-based defaults on this platform...
2366 #endif /* __APPLE__ */
2370 #if _CUPS_LOCATION_DEFAULTS
2372 * 'appleCopyLocations()' - Copy the location history array.
2375 static CFArrayRef
/* O - Location array or NULL */
2376 appleCopyLocations(void)
2378 CFArrayRef locations
; /* Location array */
2382 * Look up the location array in the preferences...
2385 if ((locations
= CFPreferencesCopyAppValue(kLastUsedPrintersKey
,
2386 kCUPSPrintingPrefs
)) == NULL
)
2389 if (CFGetTypeID(locations
) != CFArrayGetTypeID())
2391 CFRelease(locations
);
2400 * 'appleCopyNetwork()' - Get the network ID for the current location.
2403 static CFStringRef
/* O - Network ID */
2404 appleCopyNetwork(void)
2406 SCDynamicStoreRef dynamicStore
; /* System configuration data */
2407 CFStringRef key
; /* Current network configuration key */
2408 CFDictionaryRef ip_dict
; /* Network configuration data */
2409 CFStringRef network
= NULL
; /* Current network ID */
2412 if ((dynamicStore
= SCDynamicStoreCreate(NULL
, CFSTR("libcups"), NULL
,
2416 * First use the IPv6 router address, if available, since that will generally
2417 * be a globally-unique link-local address.
2420 if ((key
= SCDynamicStoreKeyCreateNetworkGlobalEntity(
2421 NULL
, kSCDynamicStoreDomainState
, kSCEntNetIPv6
)) != NULL
)
2423 if ((ip_dict
= SCDynamicStoreCopyValue(dynamicStore
, key
)) != NULL
)
2425 if ((network
= CFDictionaryGetValue(ip_dict
,
2426 kSCPropNetIPv6Router
)) != NULL
)
2436 * If that doesn't work, try the IPv4 router address. This isn't as unique
2437 * and will likely be a 10.x.y.z or 192.168.y.z address...
2442 if ((key
= SCDynamicStoreKeyCreateNetworkGlobalEntity(
2443 NULL
, kSCDynamicStoreDomainState
, kSCEntNetIPv4
)) != NULL
)
2445 if ((ip_dict
= SCDynamicStoreCopyValue(dynamicStore
, key
)) != NULL
)
2447 if ((network
= CFDictionaryGetValue(ip_dict
,
2448 kSCPropNetIPv4Router
)) != NULL
)
2458 CFRelease(dynamicStore
);
2463 #endif /* _CUPS_LOCATION_DEFAULTS */
2468 * 'appleGetPaperSize()' - Get the default paper size.
2471 static char * /* O - Default paper size */
2472 appleGetPaperSize(char *name
, /* I - Paper size name buffer */
2473 size_t namesize
) /* I - Size of buffer */
2475 CFStringRef defaultPaperID
; /* Default paper ID */
2476 pwg_media_t
*pwgmedia
; /* PWG media size */
2479 defaultPaperID
= _cupsAppleCopyDefaultPaperID();
2480 if (!defaultPaperID
||
2481 CFGetTypeID(defaultPaperID
) != CFStringGetTypeID() ||
2482 !CFStringGetCString(defaultPaperID
, name
, (CFIndex
)namesize
, kCFStringEncodingUTF8
))
2484 else if ((pwgmedia
= pwgMediaForLegacy(name
)) != NULL
)
2485 strlcpy(name
, pwgmedia
->pwg
, namesize
);
2488 CFRelease(defaultPaperID
);
2492 #endif /* __APPLE__ */
2495 #if _CUPS_LOCATION_DEFAULTS
2497 * 'appleGetPrinter()' - Get a printer from the history array.
2500 static CFStringRef
/* O - Printer name or NULL */
2501 appleGetPrinter(CFArrayRef locations
, /* I - Location array */
2502 CFStringRef network
, /* I - Network name */
2503 CFIndex
*locindex
) /* O - Index in array */
2505 CFIndex i
, /* Looping var */
2506 count
; /* Number of locations */
2507 CFDictionaryRef location
; /* Current location */
2508 CFStringRef locnetwork
, /* Current network */
2509 locprinter
; /* Current printer */
2512 for (i
= 0, count
= CFArrayGetCount(locations
); i
< count
; i
++)
2513 if ((location
= CFArrayGetValueAtIndex(locations
, i
)) != NULL
&&
2514 CFGetTypeID(location
) == CFDictionaryGetTypeID())
2516 if ((locnetwork
= CFDictionaryGetValue(location
,
2517 kLocationNetworkKey
)) != NULL
&&
2518 CFGetTypeID(locnetwork
) == CFStringGetTypeID() &&
2519 CFStringCompare(network
, locnetwork
, 0) == kCFCompareEqualTo
&&
2520 (locprinter
= CFDictionaryGetValue(location
,
2521 kLocationPrinterIDKey
)) != NULL
&&
2522 CFGetTypeID(locprinter
) == CFStringGetTypeID())
2527 return (locprinter
);
2533 #endif /* _CUPS_LOCATION_DEFAULTS */
2537 * 'cups_add_dest()' - Add a destination to the array.
2539 * Unlike cupsAddDest(), this function does not check for duplicates.
2542 static cups_dest_t
* /* O - New destination */
2543 cups_add_dest(const char *name
, /* I - Name of destination */
2544 const char *instance
, /* I - Instance or NULL */
2545 int *num_dests
, /* IO - Number of destinations */
2546 cups_dest_t
**dests
) /* IO - Destinations */
2548 int insert
, /* Insertion point */
2549 diff
; /* Result of comparison */
2550 cups_dest_t
*dest
; /* Destination pointer */
2554 * Add new destination...
2557 if (*num_dests
== 0)
2558 dest
= malloc(sizeof(cups_dest_t
));
2560 dest
= realloc(*dests
, sizeof(cups_dest_t
) * (size_t)(*num_dests
+ 1));
2568 * Find where to insert the destination...
2571 if (*num_dests
== 0)
2575 insert
= cups_find_dest(name
, instance
, *num_dests
, *dests
, *num_dests
- 1,
2583 * Move the array elements as needed...
2586 if (insert
< *num_dests
)
2587 memmove(*dests
+ insert
+ 1, *dests
+ insert
, (size_t)(*num_dests
- insert
) * sizeof(cups_dest_t
));
2592 * Initialize the destination...
2595 dest
= *dests
+ insert
;
2596 dest
->name
= _cupsStrAlloc(name
);
2597 dest
->instance
= _cupsStrAlloc(instance
);
2598 dest
->is_default
= 0;
2599 dest
->num_options
= 0;
2600 dest
->options
= (cups_option_t
*)0;
2608 * 'cups_block_cb()' - Enumeration callback for block API.
2611 static int /* O - 1 to continue, 0 to stop */
2613 cups_dest_block_t block
, /* I - Block */
2614 unsigned flags
, /* I - Destination flags */
2615 cups_dest_t
*dest
) /* I - Destination */
2617 return ((block
)(flags
, dest
));
2619 # endif /* __BLOCKS__ */
2623 * 'cups_compare_dests()' - Compare two destinations.
2626 static int /* O - Result of comparison */
2627 cups_compare_dests(cups_dest_t
*a
, /* I - First destination */
2628 cups_dest_t
*b
) /* I - Second destination */
2630 int diff
; /* Difference */
2633 if ((diff
= _cups_strcasecmp(a
->name
, b
->name
)) != 0)
2635 else if (a
->instance
&& b
->instance
)
2636 return (_cups_strcasecmp(a
->instance
, b
->instance
));
2638 return ((a
->instance
&& !b
->instance
) - (!a
->instance
&& b
->instance
));
2642 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
2645 * 'cups_dnssd_browse_cb()' - Browse for printers.
2649 cups_dnssd_browse_cb(
2650 DNSServiceRef sdRef
, /* I - Service reference */
2651 DNSServiceFlags flags
, /* I - Option flags */
2652 uint32_t interfaceIndex
, /* I - Interface number */
2653 DNSServiceErrorType errorCode
, /* I - Error, if any */
2654 const char *serviceName
, /* I - Name of service/device */
2655 const char *regtype
, /* I - Type of service */
2656 const char *replyDomain
, /* I - Service domain */
2657 void *context
) /* I - Enumeration data */
2659 _cups_dnssd_data_t
*data
= (_cups_dnssd_data_t
*)context
;
2660 /* Enumeration data */
2663 DEBUG_printf(("5cups_dnssd_browse_cb(sdRef=%p, flags=%x, interfaceIndex=%d, errorCode=%d, serviceName=\"%s\", regtype=\"%s\", replyDomain=\"%s\", context=%p)", (void *)sdRef
, flags
, interfaceIndex
, errorCode
, serviceName
, regtype
, replyDomain
, context
));
2666 * Don't do anything on error...
2669 if (errorCode
!= kDNSServiceErr_NoError
)
2676 cups_dnssd_get_device(data
, serviceName
, regtype
, replyDomain
);
2680 # else /* HAVE_AVAHI */
2682 * 'cups_dnssd_browse_cb()' - Browse for printers.
2686 cups_dnssd_browse_cb(
2687 AvahiServiceBrowser
*browser
, /* I - Browser */
2688 AvahiIfIndex interface
, /* I - Interface index (unused) */
2689 AvahiProtocol protocol
, /* I - Network protocol (unused) */
2690 AvahiBrowserEvent event
, /* I - What happened */
2691 const char *name
, /* I - Service name */
2692 const char *type
, /* I - Registration type */
2693 const char *domain
, /* I - Domain */
2694 AvahiLookupResultFlags flags
, /* I - Flags */
2695 void *context
) /* I - Devices array */
2698 AvahiClient
*client
= avahi_service_browser_get_client(browser
);
2699 /* Client information */
2701 _cups_dnssd_data_t
*data
= (_cups_dnssd_data_t
*)context
;
2702 /* Enumeration data */
2709 DEBUG_printf(("cups_dnssd_browse_cb(..., name=\"%s\", type=\"%s\", domain=\"%s\", ...);", name
, type
, domain
));
2713 case AVAHI_BROWSER_FAILURE
:
2714 DEBUG_printf(("cups_dnssd_browse_cb: %s", avahi_strerror(avahi_client_errno(client
))));
2715 avahi_simple_poll_quit(data
->simple_poll
);
2718 case AVAHI_BROWSER_NEW
:
2720 * This object is new on the network.
2723 if (flags
& AVAHI_LOOKUP_RESULT_LOCAL
)
2726 * This comes from the local machine so ignore it.
2729 DEBUG_printf(("cups_dnssd_browse_cb: Ignoring local service \"%s\".", name
));
2734 * Create a device entry for it if it doesn't yet exist.
2737 cups_dnssd_get_device(data
, name
, type
, domain
);
2741 case AVAHI_BROWSER_REMOVE
:
2742 case AVAHI_BROWSER_CACHE_EXHAUSTED
:
2745 case AVAHI_BROWSER_ALL_FOR_NOW
:
2746 DEBUG_puts("cups_dnssd_browse_cb: ALL_FOR_NOW");
2754 * 'cups_dnssd_client_cb()' - Avahi client callback function.
2758 cups_dnssd_client_cb(
2759 AvahiClient
*client
, /* I - Client information (unused) */
2760 AvahiClientState state
, /* I - Current state */
2761 void *context
) /* I - User data (unused) */
2763 _cups_dnssd_data_t
*data
= (_cups_dnssd_data_t
*)context
;
2764 /* Enumeration data */
2769 DEBUG_printf(("cups_dnssd_client_cb(client=%p, state=%d, context=%p)", client
, state
, context
));
2772 * If the connection drops, quit.
2775 if (state
== AVAHI_CLIENT_FAILURE
)
2777 DEBUG_puts("cups_dnssd_client_cb: Avahi connection failed.");
2778 avahi_simple_poll_quit(data
->simple_poll
);
2781 # endif /* HAVE_DNSSD */
2785 * 'cups_dnssd_compare_device()' - Compare two devices.
2788 static int /* O - Result of comparison */
2789 cups_dnssd_compare_devices(
2790 _cups_dnssd_device_t
*a
, /* I - First device */
2791 _cups_dnssd_device_t
*b
) /* I - Second device */
2793 return (strcmp(a
->dest
.name
, b
->dest
.name
));
2798 * 'cups_dnssd_free_device()' - Free the memory used by a device.
2802 cups_dnssd_free_device(
2803 _cups_dnssd_device_t
*device
, /* I - Device */
2804 _cups_dnssd_data_t
*data
) /* I - Enumeration data */
2806 DEBUG_printf(("5cups_dnssd_free_device(device=%p(%s), data=%p)", (void *)device
, device
->dest
.name
, (void *)data
));
2810 DNSServiceRefDeallocate(device
->ref
);
2811 # else /* HAVE_AVAHI */
2813 avahi_record_browser_free(device
->ref
);
2814 # endif /* HAVE_DNSSD */
2816 _cupsStrFree(device
->domain
);
2817 _cupsStrFree(device
->fullName
);
2818 _cupsStrFree(device
->regtype
);
2819 _cupsStrFree(device
->dest
.name
);
2821 cupsFreeOptions(device
->dest
.num_options
, device
->dest
.options
);
2828 * 'cups_dnssd_get_device()' - Lookup a device and create it as needed.
2831 static _cups_dnssd_device_t
* /* O - Device */
2832 cups_dnssd_get_device(
2833 _cups_dnssd_data_t
*data
, /* I - Enumeration data */
2834 const char *serviceName
, /* I - Service name */
2835 const char *regtype
, /* I - Registration type */
2836 const char *replyDomain
) /* I - Domain name */
2838 _cups_dnssd_device_t key
, /* Search key */
2839 *device
; /* Device */
2840 char fullName
[kDNSServiceMaxDomainName
],
2841 /* Full name for query */
2842 name
[128]; /* Queue name */
2845 DEBUG_printf(("5cups_dnssd_get_device(data=%p, serviceName=\"%s\", regtype=\"%s\", replyDomain=\"%s\")", (void *)data
, serviceName
, regtype
, replyDomain
));
2848 * See if this is an existing device...
2851 cups_queue_name(name
, serviceName
, sizeof(name
));
2853 key
.dest
.name
= name
;
2855 if ((device
= cupsArrayFind(data
->devices
, &key
)) != NULL
)
2858 * Yes, see if we need to do anything with this...
2861 int update
= 0; /* Non-zero if we need to update */
2863 if (!_cups_strcasecmp(replyDomain
, "local.") &&
2864 _cups_strcasecmp(device
->domain
, replyDomain
))
2867 * Update the "global" listing to use the .local domain name instead.
2870 _cupsStrFree(device
->domain
);
2871 device
->domain
= _cupsStrAlloc(replyDomain
);
2873 DEBUG_printf(("6cups_dnssd_get_device: Updating '%s' to use local "
2874 "domain.", device
->dest
.name
));
2879 if (!_cups_strcasecmp(regtype
, "_ipps._tcp") &&
2880 _cups_strcasecmp(device
->regtype
, regtype
))
2883 * Prefer IPPS over IPP.
2886 _cupsStrFree(device
->regtype
);
2887 device
->regtype
= _cupsStrAlloc(regtype
);
2889 DEBUG_printf(("6cups_dnssd_get_device: Updating '%s' to use IPPS.",
2890 device
->dest
.name
));
2897 DEBUG_printf(("6cups_dnssd_get_device: No changes to '%s'.",
2898 device
->dest
.name
));
2905 * No, add the device...
2908 DEBUG_printf(("6cups_dnssd_get_device: Adding '%s' for %s with domain "
2909 "'%s'.", serviceName
,
2910 !strcmp(regtype
, "_ipps._tcp") ? "IPPS" : "IPP",
2913 device
= calloc(sizeof(_cups_dnssd_device_t
), 1);
2914 device
->dest
.name
= _cupsStrAlloc(name
);
2915 device
->domain
= _cupsStrAlloc(replyDomain
);
2916 device
->regtype
= _cupsStrAlloc(regtype
);
2918 device
->dest
.num_options
= cupsAddOption("printer-info", serviceName
, 0, &device
->dest
.options
);
2920 cupsArrayAdd(data
->devices
, device
);
2924 * Set the "full name" of this service, which is used for queries...
2928 DNSServiceConstructFullName(fullName
, serviceName
, regtype
, replyDomain
);
2929 # else /* HAVE_AVAHI */
2930 avahi_service_name_join(fullName
, kDNSServiceMaxDomainName
, serviceName
, regtype
, replyDomain
);
2931 # endif /* HAVE_DNSSD */
2933 _cupsStrFree(device
->fullName
);
2934 device
->fullName
= _cupsStrAlloc(fullName
);
2939 DNSServiceRefDeallocate(device
->ref
);
2940 # else /* HAVE_AVAHI */
2941 avahi_record_browser_free(device
->ref
);
2942 # endif /* HAVE_DNSSD */
2947 if (device
->state
== _CUPS_DNSSD_ACTIVE
)
2949 DEBUG_printf(("6cups_dnssd_get_device: Remove callback for \"%s\".", device
->dest
.name
));
2951 (*data
->cb
)(data
->user_data
, CUPS_DEST_FLAGS_REMOVED
, &device
->dest
);
2952 device
->state
= _CUPS_DNSSD_NEW
;
2961 * 'cups_dnssd_local_cb()' - Browse for local printers.
2965 cups_dnssd_local_cb(
2966 DNSServiceRef sdRef
, /* I - Service reference */
2967 DNSServiceFlags flags
, /* I - Option flags */
2968 uint32_t interfaceIndex
, /* I - Interface number */
2969 DNSServiceErrorType errorCode
, /* I - Error, if any */
2970 const char *serviceName
, /* I - Name of service/device */
2971 const char *regtype
, /* I - Type of service */
2972 const char *replyDomain
, /* I - Service domain */
2973 void *context
) /* I - Devices array */
2975 _cups_dnssd_data_t
*data
= (_cups_dnssd_data_t
*)context
;
2976 /* Enumeration data */
2977 _cups_dnssd_device_t
*device
; /* Device */
2980 DEBUG_printf(("5cups_dnssd_local_cb(sdRef=%p, flags=%x, interfaceIndex=%d, errorCode=%d, serviceName=\"%s\", regtype=\"%s\", replyDomain=\"%s\", context=%p)", (void *)sdRef
, flags
, interfaceIndex
, errorCode
, serviceName
, regtype
, replyDomain
, context
));
2983 * Only process "add" data...
2986 if (errorCode
!= kDNSServiceErr_NoError
|| !(flags
& kDNSServiceFlagsAdd
))
2993 device
= cups_dnssd_get_device(data
, serviceName
, regtype
, replyDomain
);
2996 * Hide locally-registered devices...
2999 DEBUG_printf(("6cups_dnssd_local_cb: Hiding local printer '%s'.",
3004 DNSServiceRefDeallocate(device
->ref
);
3008 if (device
->state
== _CUPS_DNSSD_ACTIVE
)
3010 DEBUG_printf(("6cups_dnssd_local_cb: Remove callback for \"%s\".", device
->dest
.name
));
3011 (*data
->cb
)(data
->user_data
, CUPS_DEST_FLAGS_REMOVED
, &device
->dest
);
3014 device
->state
= _CUPS_DNSSD_LOCAL
;
3016 # endif /* HAVE_DNSSD */
3021 * 'cups_dnssd_poll_cb()' - Wait for input on the specified file descriptors.
3023 * Note: This function is needed because avahi_simple_poll_iterate is broken
3024 * and always uses a timeout of 0 (!) milliseconds.
3025 * (https://github.com/lathiat/avahi/issues/127)
3030 static int /* O - Number of file descriptors matching */
3032 struct pollfd
*pollfds
, /* I - File descriptors */
3033 unsigned int num_pollfds
, /* I - Number of file descriptors */
3034 int timeout
, /* I - Timeout in milliseconds (unused) */
3035 void *context
) /* I - User data (unused) */
3037 _cups_dnssd_data_t
*data
= (_cups_dnssd_data_t
*)context
;
3038 /* Enumeration data */
3039 int val
; /* Return value */
3042 DEBUG_printf(("cups_dnssd_poll_cb(pollfds=%p, num_pollfds=%d, timeout=%d, context=%p)", pollfds
, num_pollfds
, timeout
, context
));
3046 val
= poll(pollfds
, num_pollfds
, _CUPS_DNSSD_MAXTIME
);
3048 DEBUG_printf(("cups_dnssd_poll_cb: poll() returned %d", val
));
3052 DEBUG_printf(("cups_dnssd_poll_cb: %s", strerror(errno
)));
3061 # endif /* HAVE_AVAHI */
3065 * 'cups_dnssd_query_cb()' - Process query data.
3070 cups_dnssd_query_cb(
3071 DNSServiceRef sdRef
, /* I - Service reference */
3072 DNSServiceFlags flags
, /* I - Data flags */
3073 uint32_t interfaceIndex
, /* I - Interface */
3074 DNSServiceErrorType errorCode
, /* I - Error, if any */
3075 const char *fullName
, /* I - Full service name */
3076 uint16_t rrtype
, /* I - Record type */
3077 uint16_t rrclass
, /* I - Record class */
3078 uint16_t rdlen
, /* I - Length of record data */
3079 const void *rdata
, /* I - Record data */
3080 uint32_t ttl
, /* I - Time-to-live */
3081 void *context
) /* I - Enumeration data */
3083 # else /* HAVE_AVAHI */
3085 cups_dnssd_query_cb(
3086 AvahiRecordBrowser
*browser
, /* I - Record browser */
3087 AvahiIfIndex interfaceIndex
,
3088 /* I - Interface index (unused) */
3089 AvahiProtocol protocol
, /* I - Network protocol (unused) */
3090 AvahiBrowserEvent event
, /* I - What happened? */
3091 const char *fullName
, /* I - Service name */
3092 uint16_t rrclass
, /* I - Record class */
3093 uint16_t rrtype
, /* I - Record type */
3094 const void *rdata
, /* I - TXT record */
3095 size_t rdlen
, /* I - Length of TXT record */
3096 AvahiLookupResultFlags flags
, /* I - Flags */
3097 void *context
) /* I - Enumeration data */
3100 AvahiClient
*client
= avahi_record_browser_get_client(browser
);
3101 /* Client information */
3103 # endif /* HAVE_DNSSD */
3104 _cups_dnssd_data_t
*data
= (_cups_dnssd_data_t
*)context
;
3105 /* Enumeration data */
3106 char serviceName
[256],/* Service name */
3107 name
[128], /* Queue name */
3108 *ptr
; /* Pointer into string */
3109 _cups_dnssd_device_t dkey
, /* Search key */
3110 *device
; /* Device */
3114 DEBUG_printf(("5cups_dnssd_query_cb(sdRef=%p, flags=%x, interfaceIndex=%d, errorCode=%d, fullName=\"%s\", rrtype=%u, rrclass=%u, rdlen=%u, rdata=%p, ttl=%u, context=%p)", (void *)sdRef
, flags
, interfaceIndex
, errorCode
, fullName
, rrtype
, rrclass
, rdlen
, rdata
, ttl
, context
));
3117 * Only process "add" data...
3120 if (errorCode
!= kDNSServiceErr_NoError
|| !(flags
& kDNSServiceFlagsAdd
))
3123 # else /* HAVE_AVAHI */
3124 DEBUG_printf(("cups_dnssd_query_cb(browser=%p, interfaceIndex=%d, protocol=%d, event=%d, fullName=\"%s\", rrclass=%u, rrtype=%u, rdata=%p, rdlen=%u, flags=%x, context=%p)", browser
, interfaceIndex
, protocol
, event
, fullName
, rrclass
, rrtype
, rdata
, (unsigned)rdlen
, flags
, context
));
3127 * Only process "add" data...
3130 if (event
!= AVAHI_BROWSER_NEW
)
3132 if (event
== AVAHI_BROWSER_FAILURE
)
3133 DEBUG_printf(("cups_dnssd_query_cb: %s", avahi_strerror(avahi_client_errno(client
))));
3137 # endif /* HAVE_DNSSD */
3140 * Lookup the service in the devices array.
3143 cups_dnssd_unquote(serviceName
, fullName
, sizeof(serviceName
));
3145 if ((ptr
= strstr(serviceName
, "._")) != NULL
)
3148 cups_queue_name(name
, serviceName
, sizeof(name
));
3150 dkey
.dest
.name
= name
;
3152 if ((device
= cupsArrayFind(data
->devices
, &dkey
)) != NULL
&& device
->state
== _CUPS_DNSSD_NEW
)
3155 * Found it, pull out the make and model from the TXT record and save it...
3158 const uint8_t *txt
, /* Pointer into data */
3159 *txtnext
, /* Next key/value pair */
3160 *txtend
; /* End of entire TXT record */
3161 uint8_t txtlen
; /* Length of current key/value pair */
3162 char key
[256], /* Key string */
3163 value
[256], /* Value string */
3164 make_and_model
[512],
3165 /* Manufacturer and model */
3166 model
[256], /* Model */
3167 uriname
[1024], /* Name for URI */
3168 uri
[1024]; /* Printer URI */
3169 cups_ptype_t type
= CUPS_PRINTER_DISCOVERED
| CUPS_PRINTER_BW
;
3171 int saw_printer_type
= 0;
3172 /* Did we see a printer-type key? */
3174 device
->state
= _CUPS_DNSSD_PENDING
;
3175 make_and_model
[0] = '\0';
3177 strlcpy(model
, "Unknown", sizeof(model
));
3179 for (txt
= rdata
, txtend
= txt
+ rdlen
;
3184 * Read a key/value pair starting with an 8-bit length. Since the
3185 * length is 8 bits and the size of the key/value buffers is 256, we
3186 * don't need to check for overflow...
3191 if (!txtlen
|| (txt
+ txtlen
) > txtend
)
3194 txtnext
= txt
+ txtlen
;
3196 for (ptr
= key
; txt
< txtnext
&& *txt
!= '='; txt
++)
3197 *ptr
++ = (char)*txt
;
3200 if (txt
< txtnext
&& *txt
== '=')
3205 memcpy(value
, txt
, (size_t)(txtnext
- txt
));
3206 value
[txtnext
- txt
] = '\0';
3208 DEBUG_printf(("6cups_dnssd_query_cb: %s=%s", key
, value
));
3212 DEBUG_printf(("6cups_dnssd_query_cb: '%s' with no value.", key
));
3216 if (!_cups_strcasecmp(key
, "usb_MFG") ||
3217 !_cups_strcasecmp(key
, "usb_MANU") ||
3218 !_cups_strcasecmp(key
, "usb_MANUFACTURER"))
3219 strlcpy(make_and_model
, value
, sizeof(make_and_model
));
3220 else if (!_cups_strcasecmp(key
, "usb_MDL") ||
3221 !_cups_strcasecmp(key
, "usb_MODEL"))
3222 strlcpy(model
, value
, sizeof(model
));
3223 else if (!_cups_strcasecmp(key
, "product") && !strstr(value
, "Ghostscript"))
3225 if (value
[0] == '(')
3228 * Strip parenthesis...
3231 if ((ptr
= value
+ strlen(value
) - 1) > value
&& *ptr
== ')')
3234 strlcpy(model
, value
+ 1, sizeof(model
));
3237 strlcpy(model
, value
, sizeof(model
));
3239 else if (!_cups_strcasecmp(key
, "ty"))
3241 strlcpy(model
, value
, sizeof(model
));
3243 if ((ptr
= strchr(model
, ',')) != NULL
)
3246 else if (!_cups_strcasecmp(key
, "note"))
3247 device
->dest
.num_options
= cupsAddOption("printer-location", value
,
3248 device
->dest
.num_options
,
3249 &device
->dest
.options
);
3250 else if (!_cups_strcasecmp(key
, "pdl"))
3253 * Look for PDF-capable printers; only PDF-capable printers are shown.
3256 const char *start
, *next
; /* Pointer into value */
3257 int have_pdf
= 0, /* Have PDF? */
3258 have_raster
= 0;/* Have raster format support? */
3260 for (start
= value
; start
&& *start
; start
= next
)
3262 if (!_cups_strncasecmp(start
, "application/pdf", 15) && (!start
[15] || start
[15] == ','))
3267 else if ((!_cups_strncasecmp(start
, "image/pwg-raster", 16) && (!start
[16] || start
[16] == ',')) ||
3268 (!_cups_strncasecmp(start
, "image/urf", 9) && (!start
[9] || start
[9] == ',')))
3274 if ((next
= strchr(start
, ',')) != NULL
)
3278 if (!have_pdf
&& !have_raster
)
3279 device
->state
= _CUPS_DNSSD_INCOMPATIBLE
;
3281 else if (!_cups_strcasecmp(key
, "printer-type"))
3284 * Value is either NNNN or 0xXXXX
3287 saw_printer_type
= 1;
3288 type
= (cups_ptype_t
)strtol(value
, NULL
, 0) | CUPS_PRINTER_DISCOVERED
;
3290 else if (!saw_printer_type
)
3292 if (!_cups_strcasecmp(key
, "air") &&
3293 !_cups_strcasecmp(value
, "t"))
3294 type
|= CUPS_PRINTER_AUTHENTICATED
;
3295 else if (!_cups_strcasecmp(key
, "bind") &&
3296 !_cups_strcasecmp(value
, "t"))
3297 type
|= CUPS_PRINTER_BIND
;
3298 else if (!_cups_strcasecmp(key
, "collate") &&
3299 !_cups_strcasecmp(value
, "t"))
3300 type
|= CUPS_PRINTER_COLLATE
;
3301 else if (!_cups_strcasecmp(key
, "color") &&
3302 !_cups_strcasecmp(value
, "t"))
3303 type
|= CUPS_PRINTER_COLOR
;
3304 else if (!_cups_strcasecmp(key
, "copies") &&
3305 !_cups_strcasecmp(value
, "t"))
3306 type
|= CUPS_PRINTER_COPIES
;
3307 else if (!_cups_strcasecmp(key
, "duplex") &&
3308 !_cups_strcasecmp(value
, "t"))
3309 type
|= CUPS_PRINTER_DUPLEX
;
3310 else if (!_cups_strcasecmp(key
, "fax") &&
3311 !_cups_strcasecmp(value
, "t"))
3312 type
|= CUPS_PRINTER_MFP
;
3313 else if (!_cups_strcasecmp(key
, "papercustom") &&
3314 !_cups_strcasecmp(value
, "t"))
3315 type
|= CUPS_PRINTER_VARIABLE
;
3316 else if (!_cups_strcasecmp(key
, "papermax"))
3318 if (!_cups_strcasecmp(value
, "legal-a4"))
3319 type
|= CUPS_PRINTER_SMALL
;
3320 else if (!_cups_strcasecmp(value
, "isoc-a2"))
3321 type
|= CUPS_PRINTER_MEDIUM
;
3322 else if (!_cups_strcasecmp(value
, ">isoc-a2"))
3323 type
|= CUPS_PRINTER_LARGE
;
3325 else if (!_cups_strcasecmp(key
, "punch") &&
3326 !_cups_strcasecmp(value
, "t"))
3327 type
|= CUPS_PRINTER_PUNCH
;
3328 else if (!_cups_strcasecmp(key
, "scan") &&
3329 !_cups_strcasecmp(value
, "t"))
3330 type
|= CUPS_PRINTER_MFP
;
3331 else if (!_cups_strcasecmp(key
, "sort") &&
3332 !_cups_strcasecmp(value
, "t"))
3333 type
|= CUPS_PRINTER_SORT
;
3334 else if (!_cups_strcasecmp(key
, "staple") &&
3335 !_cups_strcasecmp(value
, "t"))
3336 type
|= CUPS_PRINTER_STAPLE
;
3341 * Save the printer-xxx values...
3344 if (make_and_model
[0])
3346 strlcat(make_and_model
, " ", sizeof(make_and_model
));
3347 strlcat(make_and_model
, model
, sizeof(make_and_model
));
3349 device
->dest
.num_options
= cupsAddOption("printer-make-and-model", make_and_model
, device
->dest
.num_options
, &device
->dest
.options
);
3352 device
->dest
.num_options
= cupsAddOption("printer-make-and-model", model
, device
->dest
.num_options
, &device
->dest
.options
);
3354 device
->type
= type
;
3355 snprintf(value
, sizeof(value
), "%u", type
);
3356 device
->dest
.num_options
= cupsAddOption("printer-type", value
, device
->dest
.num_options
, &device
->dest
.options
);
3362 cups_dnssd_unquote(uriname
, device
->fullName
, sizeof(uriname
));
3363 httpAssembleURI(HTTP_URI_CODING_ALL
, uri
, sizeof(uri
),
3364 !strcmp(device
->regtype
, "_ipps._tcp") ? "ipps" : "ipp",
3365 NULL
, uriname
, 0, saw_printer_type
? "/cups" : "/");
3367 DEBUG_printf(("6cups_dnssd_query: device-uri=\"%s\"", uri
));
3369 device
->dest
.num_options
= cupsAddOption("device-uri", uri
, device
->dest
.num_options
, &device
->dest
.options
);
3372 DEBUG_printf(("6cups_dnssd_query: Ignoring TXT record for '%s'.",
3378 * 'cups_dnssd_resolve()' - Resolve a Bonjour printer URI.
3381 static const char * /* O - Resolved URI or NULL */
3383 cups_dest_t
*dest
, /* I - Destination */
3384 const char *uri
, /* I - Current printer URI */
3385 int msec
, /* I - Time in milliseconds */
3386 int *cancel
, /* I - Pointer to "cancel" variable */
3387 cups_dest_cb_t cb
, /* I - Callback */
3388 void *user_data
) /* I - User data for callback */
3390 char tempuri
[1024]; /* Temporary URI buffer */
3391 _cups_dnssd_resolve_t resolve
; /* Resolve data */
3395 * Resolve the URI...
3398 resolve
.cancel
= cancel
;
3399 gettimeofday(&resolve
.end_time
, NULL
);
3402 resolve
.end_time
.tv_sec
+= msec
/ 1000;
3403 resolve
.end_time
.tv_usec
+= (msec
% 1000) * 1000;
3405 while (resolve
.end_time
.tv_usec
>= 1000000)
3407 resolve
.end_time
.tv_sec
++;
3408 resolve
.end_time
.tv_usec
-= 1000000;
3412 resolve
.end_time
.tv_sec
+= 75;
3415 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
| CUPS_DEST_FLAGS_RESOLVING
, dest
);
3417 if ((uri
= _httpResolveURI(uri
, tempuri
, sizeof(tempuri
), _HTTP_RESOLVE_DEFAULT
, cups_dnssd_resolve_cb
, &resolve
)) == NULL
)
3419 _cupsSetError(IPP_STATUS_ERROR_INTERNAL
, _("Unable to resolve printer-uri."), 1);
3422 (*cb
)(user_data
, CUPS_DEST_FLAGS_UNCONNECTED
| CUPS_DEST_FLAGS_ERROR
, dest
);
3428 * Save the resolved URI...
3431 dest
->num_options
= cupsAddOption("device-uri", uri
, dest
->num_options
, &dest
->options
);
3433 return (cupsGetOption("device-uri", dest
->num_options
, dest
->options
));
3438 * 'cups_dnssd_resolve_cb()' - See if we should continue resolving.
3441 static int /* O - 1 to continue, 0 to stop */
3442 cups_dnssd_resolve_cb(void *context
) /* I - Resolve data */
3444 _cups_dnssd_resolve_t
*resolve
= (_cups_dnssd_resolve_t
*)context
;
3446 struct timeval curtime
; /* Current time */
3450 * If the cancel variable is set, return immediately.
3453 if (resolve
->cancel
&& *(resolve
->cancel
))
3455 DEBUG_puts("4cups_dnssd_resolve_cb: Canceled.");
3460 * Otherwise check the end time...
3463 gettimeofday(&curtime
, NULL
);
3465 DEBUG_printf(("4cups_dnssd_resolve_cb: curtime=%d.%06d, end_time=%d.%06d", (int)curtime
.tv_sec
, (int)curtime
.tv_usec
, (int)resolve
->end_time
.tv_sec
, (int)resolve
->end_time
.tv_usec
));
3467 return (curtime
.tv_sec
< resolve
->end_time
.tv_sec
||
3468 (curtime
.tv_sec
== resolve
->end_time
.tv_sec
&&
3469 curtime
.tv_usec
< resolve
->end_time
.tv_usec
));
3474 * 'cups_dnssd_unquote()' - Unquote a name string.
3478 cups_dnssd_unquote(char *dst
, /* I - Destination buffer */
3479 const char *src
, /* I - Source string */
3480 size_t dstsize
) /* I - Size of destination buffer */
3482 char *dstend
= dst
+ dstsize
- 1; /* End of destination buffer */
3485 while (*src
&& dst
< dstend
)
3490 if (isdigit(src
[0] & 255) && isdigit(src
[1] & 255) &&
3491 isdigit(src
[2] & 255))
3493 *dst
++ = ((((src
[0] - '0') * 10) + src
[1] - '0') * 10) + src
[2] - '0';
3505 #endif /* HAVE_DNSSD */
3508 #if defined(HAVE_AVAHI) || defined(HAVE_DNSSD)
3510 * 'cups_elapsed()' - Return the elapsed time in milliseconds.
3513 static int /* O - Elapsed time in milliseconds */
3514 cups_elapsed(struct timeval
*t
) /* IO - Previous time */
3516 int msecs
; /* Milliseconds */
3517 struct timeval nt
; /* New time */
3520 gettimeofday(&nt
, NULL
);
3522 msecs
= (int)(1000 * (nt
.tv_sec
- t
->tv_sec
) + (nt
.tv_usec
- t
->tv_usec
) / 1000);
3528 #endif /* HAVE_AVAHI || HAVE_DNSSD */
3532 * 'cups_enum_dests()' - Enumerate destinations from a specific server.
3535 static int /* O - 1 on success, 0 on failure */
3537 http_t
*http
, /* I - Connection to scheduler */
3538 unsigned flags
, /* I - Enumeration flags */
3539 int msec
, /* I - Timeout in milliseconds, -1 for indefinite */
3540 int *cancel
, /* I - Pointer to "cancel" variable */
3541 cups_ptype_t type
, /* I - Printer type bits */
3542 cups_ptype_t mask
, /* I - Mask for printer type bits */
3543 cups_dest_cb_t cb
, /* I - Callback function */
3544 void *user_data
) /* I - User data */
3546 int i
, /* Looping var */
3547 num_dests
; /* Number of destinations */
3548 cups_dest_t
*dests
= NULL
, /* Destinations */
3549 *dest
; /* Current destination */
3550 const char *defprinter
; /* Default printer */
3551 char name
[1024], /* Copy of printer name */
3552 *instance
, /* Pointer to instance name */
3553 *user_default
; /* User default printer */
3554 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
3555 int count
, /* Number of queries started */
3556 completed
, /* Number of completed queries */
3557 remaining
; /* Remainder of timeout */
3558 struct timeval curtime
; /* Current time */
3559 _cups_dnssd_data_t data
; /* Data for callback */
3560 _cups_dnssd_device_t
*device
; /* Current device */
3562 int nfds
, /* Number of files responded */
3563 main_fd
; /* File descriptor for lookups */
3564 DNSServiceRef ipp_ref
= NULL
, /* IPP browser */
3565 local_ipp_ref
= NULL
; /* Local IPP browser */
3567 DNSServiceRef ipps_ref
= NULL
, /* IPPS browser */
3568 local_ipps_ref
= NULL
; /* Local IPPS browser */
3569 # endif /* HAVE_SSL */
3571 struct pollfd pfd
; /* Polling data */
3573 fd_set input
; /* Input set for select() */
3574 struct timeval timeout
; /* Timeout for select() */
3575 # endif /* HAVE_POLL */
3576 # else /* HAVE_AVAHI */
3577 int error
; /* Error value */
3578 AvahiServiceBrowser
*ipp_ref
= NULL
; /* IPP browser */
3580 AvahiServiceBrowser
*ipps_ref
= NULL
; /* IPPS browser */
3581 # endif /* HAVE_SSL */
3582 # endif /* HAVE_DNSSD */
3583 #endif /* HAVE_DNSSD || HAVE_AVAHI */
3586 DEBUG_printf(("cups_enum_dests(flags=%x, msec=%d, cancel=%p, type=%x, mask=%x, cb=%p, user_data=%p)", flags
, msec
, (void *)cancel
, type
, mask
, (void *)cb
, (void *)user_data
));
3589 * Range check input...
3596 DEBUG_puts("1cups_enum_dests: No callback, returning 0.");
3601 * Get ready to enumerate...
3604 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
3605 memset(&data
, 0, sizeof(data
));
3610 data
.user_data
= user_data
;
3611 data
.devices
= cupsArrayNew3((cups_array_func_t
)cups_dnssd_compare_devices
, NULL
, NULL
, 0, NULL
, (cups_afree_func_t
)cups_dnssd_free_device
);
3612 #endif /* HAVE_DNSSD || HAVE_AVAHI */
3614 if (!(mask
& CUPS_PRINTER_DISCOVERED
) || !(type
& CUPS_PRINTER_DISCOVERED
))
3617 * Get the list of local printers and pass them to the callback function...
3620 num_dests
= _cupsGetDests(http
, IPP_OP_CUPS_GET_PRINTERS
, NULL
, &dests
, type
, mask
);
3622 if ((user_default
= _cupsUserDefault(name
, sizeof(name
))) != NULL
)
3624 else if ((defprinter
= cupsGetDefault2(http
)) != NULL
)
3626 strlcpy(name
, defprinter
, sizeof(name
));
3633 * Separate printer and instance name...
3636 if ((instance
= strchr(name
, '/')) != NULL
)
3640 * Lookup the printer and instance and make it the default...
3643 if ((dest
= cupsGetDest(name
, instance
, num_dests
, dests
)) != NULL
)
3644 dest
->is_default
= 1;
3647 for (i
= num_dests
, dest
= dests
;
3648 i
> 0 && (!cancel
|| !*cancel
);
3651 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
3652 const char *device_uri
; /* Device URI */
3653 #endif /* HAVE_DNSSD || HAVE_AVAHI */
3655 if (!(*cb
)(user_data
, i
> 1 ? CUPS_DEST_FLAGS_MORE
: CUPS_DEST_FLAGS_NONE
, dest
))
3658 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
3659 if (!dest
->instance
&& (device_uri
= cupsGetOption("device-uri", dest
->num_options
, dest
->options
)) != NULL
&& !strncmp(device_uri
, "dnssd://", 8))
3662 * Add existing queue using service name, etc. so we don't list it again...
3665 char scheme
[32], /* URI scheme */
3666 userpass
[32], /* Username:password */
3667 serviceName
[256], /* Service name (host field) */
3668 resource
[256], /* Resource (options) */
3669 *regtype
, /* Registration type */
3670 *replyDomain
; /* Registration domain */
3671 int port
; /* Port number (not used) */
3673 if (httpSeparateURI(HTTP_URI_CODING_ALL
, device_uri
, scheme
, sizeof(scheme
), userpass
, sizeof(userpass
), serviceName
, sizeof(serviceName
), &port
, resource
, sizeof(resource
)) >= HTTP_URI_STATUS_OK
)
3675 if ((regtype
= strstr(serviceName
, "._ipp")) != NULL
)
3679 if ((replyDomain
= strstr(regtype
, "._tcp.")) != NULL
)
3681 replyDomain
[5] = '\0';
3684 if ((device
= cups_dnssd_get_device(&data
, serviceName
, regtype
, replyDomain
)) != NULL
)
3685 device
->state
= _CUPS_DNSSD_ACTIVE
;
3690 #endif /* HAVE_DNSSD || HAVE_AVAHI */
3693 cupsFreeDests(num_dests
, dests
);
3695 if (i
> 0 || msec
== 0)
3700 * Return early if the caller doesn't want to do discovery...
3703 if ((mask
& CUPS_PRINTER_DISCOVERED
) && !(type
& CUPS_PRINTER_DISCOVERED
))
3706 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
3708 * Get Bonjour-shared printers...
3711 gettimeofday(&curtime
, NULL
);
3714 if (DNSServiceCreateConnection(&data
.main_ref
) != kDNSServiceErr_NoError
)
3716 DEBUG_puts("1cups_enum_dests: Unable to create service browser, returning 0.");
3720 main_fd
= DNSServiceRefSockFD(data
.main_ref
);
3722 ipp_ref
= data
.main_ref
;
3723 if (DNSServiceBrowse(&ipp_ref
, kDNSServiceFlagsShareConnection
, 0, "_ipp._tcp", NULL
, (DNSServiceBrowseReply
)cups_dnssd_browse_cb
, &data
) != kDNSServiceErr_NoError
)
3725 DEBUG_puts("1cups_enum_dests: Unable to create IPP browser, returning 0.");
3726 DNSServiceRefDeallocate(data
.main_ref
);
3730 local_ipp_ref
= data
.main_ref
;
3731 if (DNSServiceBrowse(&local_ipp_ref
, kDNSServiceFlagsShareConnection
, kDNSServiceInterfaceIndexLocalOnly
, "_ipp._tcp", NULL
, (DNSServiceBrowseReply
)cups_dnssd_local_cb
, &data
) != kDNSServiceErr_NoError
)
3733 DEBUG_puts("1cups_enum_dests: Unable to create local IPP browser, returning 0.");
3734 DNSServiceRefDeallocate(data
.main_ref
);
3739 ipps_ref
= data
.main_ref
;
3740 if (DNSServiceBrowse(&ipps_ref
, kDNSServiceFlagsShareConnection
, 0, "_ipps._tcp", NULL
, (DNSServiceBrowseReply
)cups_dnssd_browse_cb
, &data
) != kDNSServiceErr_NoError
)
3742 DEBUG_puts("1cups_enum_dests: Unable to create IPPS browser, returning 0.");
3743 DNSServiceRefDeallocate(data
.main_ref
);
3747 local_ipps_ref
= data
.main_ref
;
3748 if (DNSServiceBrowse(&local_ipps_ref
, kDNSServiceFlagsShareConnection
, kDNSServiceInterfaceIndexLocalOnly
, "_ipps._tcp", NULL
, (DNSServiceBrowseReply
)cups_dnssd_local_cb
, &data
) != kDNSServiceErr_NoError
)
3750 DEBUG_puts("1cups_enum_dests: Unable to create local IPPS browser, returning 0.");
3751 DNSServiceRefDeallocate(data
.main_ref
);
3754 # endif /* HAVE_SSL */
3756 # else /* HAVE_AVAHI */
3757 if ((data
.simple_poll
= avahi_simple_poll_new()) == NULL
)
3759 DEBUG_puts("1cups_enum_dests: Unable to create Avahi poll, returning 0.");
3763 avahi_simple_poll_set_func(data
.simple_poll
, cups_dnssd_poll_cb
, &data
);
3765 data
.client
= avahi_client_new(avahi_simple_poll_get(data
.simple_poll
),
3766 0, cups_dnssd_client_cb
, &data
,
3770 DEBUG_puts("1cups_enum_dests: Unable to create Avahi client, returning 0.");
3771 avahi_simple_poll_free(data
.simple_poll
);
3776 if ((ipp_ref
= avahi_service_browser_new(data
.client
, AVAHI_IF_UNSPEC
, AVAHI_PROTO_UNSPEC
, "_ipp._tcp", NULL
, 0, cups_dnssd_browse_cb
, &data
)) == NULL
)
3778 DEBUG_puts("1cups_enum_dests: Unable to create Avahi IPP browser, returning 0.");
3780 avahi_client_free(data
.client
);
3781 avahi_simple_poll_free(data
.simple_poll
);
3787 if ((ipps_ref
= avahi_service_browser_new(data
.client
, AVAHI_IF_UNSPEC
, AVAHI_PROTO_UNSPEC
, "_ipps._tcp", NULL
, 0, cups_dnssd_browse_cb
, &data
)) == NULL
)
3789 DEBUG_puts("1cups_enum_dests: Unable to create Avahi IPPS browser, returning 0.");
3791 avahi_service_browser_free(ipp_ref
);
3792 avahi_client_free(data
.client
);
3793 avahi_simple_poll_free(data
.simple_poll
);
3796 # endif /* HAVE_SSL */
3797 # endif /* HAVE_DNSSD */
3800 remaining
= INT_MAX
;
3804 while (remaining
> 0 && (!cancel
|| !*cancel
))
3807 * Check for input...
3810 DEBUG_printf(("1cups_enum_dests: remaining=%d", remaining
));
3812 cups_elapsed(&curtime
);
3817 pfd
.events
= POLLIN
;
3819 nfds
= poll(&pfd
, 1, remaining
> _CUPS_DNSSD_MAXTIME
? _CUPS_DNSSD_MAXTIME
: remaining
);
3823 FD_SET(main_fd
, &input
);
3826 timeout
.tv_usec
= 1000 * (remaining
> _CUPS_DNSSD_MAXTIME
? _CUPS_DNSSD_MAXTIME
: remaining
);
3828 nfds
= select(main_fd
+ 1, &input
, NULL
, NULL
, &timeout
);
3829 # endif /* HAVE_POLL */
3832 DNSServiceProcessResult(data
.main_ref
);
3833 else if (nfds
< 0 && errno
!= EINTR
&& errno
!= EAGAIN
)
3836 # else /* HAVE_AVAHI */
3839 if ((error
= avahi_simple_poll_iterate(data
.simple_poll
, _CUPS_DNSSD_MAXTIME
)) > 0)
3842 * We've been told to exit the loop. Perhaps the connection to
3849 DEBUG_printf(("1cups_enum_dests: got_data=%d", data
.got_data
));
3850 # endif /* HAVE_DNSSD */
3852 remaining
-= cups_elapsed(&curtime
);
3854 for (device
= (_cups_dnssd_device_t
*)cupsArrayFirst(data
.devices
),
3855 count
= 0, completed
= 0;
3857 device
= (_cups_dnssd_device_t
*)cupsArrayNext(data
.devices
))
3862 if (device
->state
== _CUPS_DNSSD_ACTIVE
)
3865 if (!device
->ref
&& device
->state
== _CUPS_DNSSD_NEW
)
3867 DEBUG_printf(("1cups_enum_dests: Querying '%s'.", device
->fullName
));
3870 device
->ref
= data
.main_ref
;
3872 if (DNSServiceQueryRecord(&(device
->ref
), kDNSServiceFlagsShareConnection
, 0, device
->fullName
, kDNSServiceType_TXT
, kDNSServiceClass_IN
, (DNSServiceQueryRecordReply
)cups_dnssd_query_cb
, &data
) == kDNSServiceErr_NoError
)
3879 device
->state
= _CUPS_DNSSD_ERROR
;
3881 DEBUG_puts("1cups_enum_dests: Query failed.");
3884 # else /* HAVE_AVAHI */
3885 if ((device
->ref
= avahi_record_browser_new(data
.client
, AVAHI_IF_UNSPEC
, AVAHI_PROTO_UNSPEC
, device
->fullName
, AVAHI_DNS_CLASS_IN
, AVAHI_DNS_TYPE_TXT
, 0, cups_dnssd_query_cb
, &data
)) != NULL
)
3887 DEBUG_printf(("1cups_enum_dests: Query ref=%p", device
->ref
));
3892 device
->state
= _CUPS_DNSSD_ERROR
;
3894 DEBUG_printf(("1cups_enum_dests: Query failed: %s", avahi_strerror(avahi_client_errno(data
.client
))));
3896 # endif /* HAVE_DNSSD */
3898 else if (device
->ref
&& device
->state
== _CUPS_DNSSD_PENDING
)
3902 DEBUG_printf(("1cups_enum_dests: Query for \"%s\" is complete.", device
->fullName
));
3904 if ((device
->type
& mask
) == type
)
3906 DEBUG_printf(("1cups_enum_dests: Add callback for \"%s\".", device
->dest
.name
));
3907 if (!(*cb
)(user_data
, CUPS_DEST_FLAGS_NONE
, &device
->dest
))
3914 device
->state
= _CUPS_DNSSD_ACTIVE
;
3919 DEBUG_printf(("1cups_enum_dests: remaining=%d, browsers=%d, completed=%d, count=%d, devices count=%d", remaining
, data
.browsers
, completed
, count
, cupsArrayCount(data
.devices
)));
3921 if (data
.browsers
== 0 && completed
== cupsArrayCount(data
.devices
))
3924 DEBUG_printf(("1cups_enum_dests: remaining=%d, completed=%d, count=%d, devices count=%d", remaining
, completed
, count
, cupsArrayCount(data
.devices
)));
3926 if (completed
== cupsArrayCount(data
.devices
))
3928 # endif /* HAVE_AVAHI */
3930 #endif /* HAVE_DNSSD || HAVE_AVAHI */
3938 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
3939 cupsArrayDelete(data
.devices
);
3943 DNSServiceRefDeallocate(ipp_ref
);
3945 DNSServiceRefDeallocate(local_ipp_ref
);
3949 DNSServiceRefDeallocate(ipps_ref
);
3951 DNSServiceRefDeallocate(local_ipps_ref
);
3952 # endif /* HAVE_SSL */
3955 DNSServiceRefDeallocate(data
.main_ref
);
3957 # else /* HAVE_AVAHI */
3959 avahi_service_browser_free(ipp_ref
);
3962 avahi_service_browser_free(ipps_ref
);
3963 # endif /* HAVE_SSL */
3966 avahi_client_free(data
.client
);
3967 if (data
.simple_poll
)
3968 avahi_simple_poll_free(data
.simple_poll
);
3969 # endif /* HAVE_DNSSD */
3970 #endif /* HAVE_DNSSD || HAVE_AVAHI */
3972 DEBUG_puts("1cups_enum_dests: Returning 1.");
3979 * 'cups_find_dest()' - Find a destination using a binary search.
3982 static int /* O - Index of match */
3983 cups_find_dest(const char *name
, /* I - Destination name */
3984 const char *instance
, /* I - Instance or NULL */
3985 int num_dests
, /* I - Number of destinations */
3986 cups_dest_t
*dests
, /* I - Destinations */
3987 int prev
, /* I - Previous index */
3988 int *rdiff
) /* O - Difference of match */
3990 int left
, /* Low mark for binary search */
3991 right
, /* High mark for binary search */
3992 current
, /* Current index */
3993 diff
; /* Result of comparison */
3994 cups_dest_t key
; /* Search key */
3997 key
.name
= (char *)name
;
3998 key
.instance
= (char *)instance
;
4003 * Start search on either side of previous...
4006 if ((diff
= cups_compare_dests(&key
, dests
+ prev
)) == 0 ||
4007 (diff
< 0 && prev
== 0) ||
4008 (diff
> 0 && prev
== (num_dests
- 1)))
4016 * Start with previous on right side...
4025 * Start wih previous on left side...
4029 right
= num_dests
- 1;
4035 * Start search in the middle...
4039 right
= num_dests
- 1;
4044 current
= (left
+ right
) / 2;
4045 diff
= cups_compare_dests(&key
, dests
+ current
);
4054 while ((right
- left
) > 1);
4059 * Check the last 1 or 2 elements...
4062 if ((diff
= cups_compare_dests(&key
, dests
+ left
)) <= 0)
4066 diff
= cups_compare_dests(&key
, dests
+ right
);
4072 * Return the closest destination and the difference...
4082 * 'cups_get_cb()' - Collect enumerated destinations.
4085 static int /* O - 1 to continue, 0 to stop */
4086 cups_get_cb(_cups_getdata_t
*data
, /* I - Data from cupsGetDests */
4087 unsigned flags
, /* I - Enumeration flags */
4088 cups_dest_t
*dest
) /* I - Destination */
4090 if (flags
& CUPS_DEST_FLAGS_REMOVED
)
4093 * Remove destination from array...
4096 data
->num_dests
= cupsRemoveDest(dest
->name
, dest
->instance
, data
->num_dests
, &data
->dests
);
4101 * Add destination to array...
4104 data
->num_dests
= cupsCopyDest(dest
, data
->num_dests
, &data
->dests
);
4112 * 'cups_get_default()' - Get the default destination from an lpoptions file.
4115 static char * /* O - Default destination or NULL */
4116 cups_get_default(const char *filename
, /* I - File to read */
4117 char *namebuf
, /* I - Name buffer */
4118 size_t namesize
, /* I - Size of name buffer */
4119 const char **instance
) /* I - Instance */
4121 cups_file_t
*fp
; /* lpoptions file */
4122 char line
[8192], /* Line from file */
4123 *value
, /* Value for line */
4124 *nameptr
; /* Pointer into name */
4125 int linenum
; /* Current line */
4130 if ((fp
= cupsFileOpen(filename
, "r")) != NULL
)
4134 while (cupsFileGetConf(fp
, line
, sizeof(line
), &value
, &linenum
))
4136 if (!_cups_strcasecmp(line
, "default") && value
)
4138 strlcpy(namebuf
, value
, namesize
);
4140 if ((nameptr
= strchr(namebuf
, ' ')) != NULL
)
4142 if ((nameptr
= strchr(namebuf
, '\t')) != NULL
)
4145 if ((nameptr
= strchr(namebuf
, '/')) != NULL
)
4148 *instance
= nameptr
;
4156 return (*namebuf
? namebuf
: NULL
);
4161 * 'cups_get_dests()' - Get destinations from a file.
4164 static int /* O - Number of destinations */
4166 const char *filename
, /* I - File to read from */
4167 const char *match_name
, /* I - Destination name we want */
4168 const char *match_inst
, /* I - Instance name we want */
4169 int user_default_set
, /* I - User default printer set? */
4170 int num_dests
, /* I - Number of destinations */
4171 cups_dest_t
**dests
) /* IO - Destinations */
4173 int i
; /* Looping var */
4174 cups_dest_t
*dest
; /* Current destination */
4175 cups_file_t
*fp
; /* File pointer */
4176 char line
[8192], /* Line from file */
4177 *lineptr
, /* Pointer into line */
4178 *name
, /* Name of destination/option */
4179 *instance
; /* Instance of destination */
4180 int linenum
; /* Current line number */
4183 DEBUG_printf(("7cups_get_dests(filename=\"%s\", match_name=\"%s\", match_inst=\"%s\", user_default_set=%d, num_dests=%d, dests=%p)", filename
, match_name
, match_inst
, user_default_set
, num_dests
, (void *)dests
));
4186 * Try to open the file...
4189 if ((fp
= cupsFileOpen(filename
, "r")) == NULL
)
4193 * Read each printer; each line looks like:
4195 * Dest name[/instance] options
4196 * Default name[/instance] options
4201 while (cupsFileGetConf(fp
, line
, sizeof(line
), &lineptr
, &linenum
))
4204 * See what type of line it is...
4207 DEBUG_printf(("9cups_get_dests: linenum=%d line=\"%s\" lineptr=\"%s\"",
4208 linenum
, line
, lineptr
));
4210 if ((_cups_strcasecmp(line
, "dest") && _cups_strcasecmp(line
, "default")) || !lineptr
)
4212 DEBUG_puts("9cups_get_dests: Not a dest or default line...");
4219 * Search for an instance...
4222 while (!isspace(*lineptr
& 255) && *lineptr
&& *lineptr
!= '/')
4225 if (*lineptr
== '/')
4228 * Found an instance...
4235 * Search for an instance...
4238 while (!isspace(*lineptr
& 255) && *lineptr
)
4247 DEBUG_printf(("9cups_get_dests: name=\"%s\", instance=\"%s\"", name
,
4251 * See if the primary instance of the destination exists; if not,
4252 * ignore this entry and move on...
4257 if (_cups_strcasecmp(name
, match_name
) ||
4258 (!instance
&& match_inst
) ||
4259 (instance
&& !match_inst
) ||
4260 (instance
&& _cups_strcasecmp(instance
, match_inst
)))
4265 else if (cupsGetDest(name
, NULL
, num_dests
, *dests
) == NULL
)
4267 DEBUG_puts("9cups_get_dests: Not found!");
4273 * Add the destination...
4276 num_dests
= cupsAddDest(name
, instance
, num_dests
, dests
);
4278 if ((dest
= cupsGetDest(name
, instance
, num_dests
, *dests
)) == NULL
)
4284 DEBUG_puts("9cups_get_dests: Out of memory!");
4290 * Add options until we hit the end of the line...
4293 dest
->num_options
= cupsParseOptions(lineptr
, dest
->num_options
,
4297 * If we found what we were looking for, stop now...
4304 * Set this as default if needed...
4307 if (!user_default_set
&& !_cups_strcasecmp(line
, "default"))
4309 DEBUG_puts("9cups_get_dests: Setting as default...");
4311 for (i
= 0; i
< num_dests
; i
++)
4312 (*dests
)[i
].is_default
= 0;
4314 dest
->is_default
= 1;
4319 * Close the file and return...
4329 * 'cups_make_string()' - Make a comma-separated string of values from an IPP
4333 static char * /* O - New string */
4335 ipp_attribute_t
*attr
, /* I - Attribute to convert */
4336 char *buffer
, /* I - Buffer */
4337 size_t bufsize
) /* I - Size of buffer */
4339 int i
; /* Looping var */
4340 char *ptr
, /* Pointer into buffer */
4341 *end
, /* Pointer to end of buffer */
4342 *valptr
; /* Pointer into string attribute */
4346 * Return quickly if we have a single string value...
4349 if (attr
->num_values
== 1 &&
4350 attr
->value_tag
!= IPP_TAG_INTEGER
&&
4351 attr
->value_tag
!= IPP_TAG_ENUM
&&
4352 attr
->value_tag
!= IPP_TAG_BOOLEAN
&&
4353 attr
->value_tag
!= IPP_TAG_RANGE
)
4354 return (attr
->values
[0].string
.text
);
4357 * Copy the values to the string, separating with commas and escaping strings
4361 end
= buffer
+ bufsize
- 1;
4363 for (i
= 0, ptr
= buffer
; i
< attr
->num_values
&& ptr
< end
; i
++)
4368 switch (attr
->value_tag
)
4370 case IPP_TAG_INTEGER
:
4372 snprintf(ptr
, (size_t)(end
- ptr
+ 1), "%d", attr
->values
[i
].integer
);
4375 case IPP_TAG_BOOLEAN
:
4376 if (attr
->values
[i
].boolean
)
4377 strlcpy(ptr
, "true", (size_t)(end
- ptr
+ 1));
4379 strlcpy(ptr
, "false", (size_t)(end
- ptr
+ 1));
4382 case IPP_TAG_RANGE
:
4383 if (attr
->values
[i
].range
.lower
== attr
->values
[i
].range
.upper
)
4384 snprintf(ptr
, (size_t)(end
- ptr
+ 1), "%d", attr
->values
[i
].range
.lower
);
4386 snprintf(ptr
, (size_t)(end
- ptr
+ 1), "%d-%d", attr
->values
[i
].range
.lower
, attr
->values
[i
].range
.upper
);
4390 for (valptr
= attr
->values
[i
].string
.text
;
4391 *valptr
&& ptr
< end
;)
4393 if (strchr(" \t\n\\\'\"", *valptr
))
4395 if (ptr
>= (end
- 1))
4418 * 'cups_name_cb()' - Find an enumerated destination.
4421 static int /* O - 1 to continue, 0 to stop */
4422 cups_name_cb(_cups_namedata_t
*data
, /* I - Data from cupsGetNamedDest */
4423 unsigned flags
, /* I - Enumeration flags */
4424 cups_dest_t
*dest
) /* I - Destination */
4426 DEBUG_printf(("2cups_name_cb(data=%p(%s), flags=%x, dest=%p(%s)", (void *)data
, data
->name
, flags
, (void *)dest
, dest
->name
));
4428 if (!(flags
& CUPS_DEST_FLAGS_REMOVED
) && !dest
->instance
&& !strcasecmp(data
->name
, dest
->name
))
4431 * Copy destination and stop enumeration...
4434 cupsCopyDest(dest
, 0, &data
->dest
);
4443 * 'cups_queue_name()' - Create a local queue name based on the service name.
4448 char *name
, /* I - Name buffer */
4449 const char *serviceName
, /* I - Service name */
4450 size_t namesize
) /* I - Size of name buffer */
4452 const char *ptr
; /* Pointer into serviceName */
4453 char *nameptr
; /* Pointer into name */
4456 for (nameptr
= name
, ptr
= serviceName
; *ptr
&& nameptr
< (name
+ namesize
- 1); ptr
++)
4459 * Sanitize the printer name...
4462 if (_cups_isalnum(*ptr
))
4464 else if (nameptr
== name
|| nameptr
[-1] != '_')