]> git.ipfire.org Git - thirdparty/cups.git/blob - backend/usb-darwin.c
Import CUPS trunk (1.4svn) r7116.
[thirdparty/cups.git] / backend / usb-darwin.c
1 /*
2 * "$Id: usb-darwin.c 6993 2007-09-28 18:05:28Z mike $"
3 *
4 * Copyright � 2005-2007 Apple Inc. All rights reserved.
5 *
6 * IMPORTANT: This Apple software is supplied to you by Apple Computer,
7 * Inc. ("Apple") in consideration of your agreement to the following
8 * terms, and your use, installation, modification or redistribution of
9 * this Apple software constitutes acceptance of these terms. If you do
10 * not agree with these terms, please do not use, install, modify or
11 * redistribute this Apple software.
12 *
13 * In consideration of your agreement to abide by the following terms, and
14 * subject to these terms, Apple grants you a personal, non-exclusive
15 * license, under Apple's copyrights in this original Apple software (the
16 * "Apple Software"), to use, reproduce, modify and redistribute the Apple
17 * Software, with or without modifications, in source and/or binary forms;
18 * provided that if you redistribute the Apple Software in its entirety and
19 * without modifications, you must retain this notice and the following
20 * text and disclaimers in all such redistributions of the Apple Software.
21 * Neither the name, trademarks, service marks or logos of Apple Computer,
22 * Inc. may be used to endorse or promote products derived from the Apple
23 * Software without specific prior written permission from Apple. Except
24 * as expressly stated in this notice, no other rights or licenses, express
25 * or implied, are granted by Apple herein, including but not limited to
26 * any patent rights that may be infringed by your derivative works or by
27 * other works in which the Apple Software may be incorporated.
28 *
29 * The Apple Software is provided by Apple on an "AS IS" basis. APPLE
30 * MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
31 * THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
32 * FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
33 * OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
34 *
35 * IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
36 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
37 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
38 * INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
39 * MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
40 * AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
41 * STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGE.
43 *
44 * Contents:
45 *
46 * list_devices() - List all USB devices.
47 * print_device() - Print a file to a USB device.
48 * sidechannel_thread() - Thread to handle side-channel requests.
49 * read_thread() - Thread to read the backchannel data on.
50 * list_device_cb() - list_device iterator callback.
51 * find_device_cb() - print_device iterator callback.
52 * status_timer_cb() - Status timer callback.
53 * iterate_printers() - Iterate over all the printers.
54 * device_added() - Device added notifier.
55 * copy_deviceinfo() - Copy strings from the 1284 device ID.
56 * release_deviceinfo() - Release deviceinfo strings.
57 * load_classdriver() - Load a classdriver.
58 * unload_classdriver() - Unload a classdriver.
59 * load_printerdriver() - Load vendor's classdriver.
60 * registry_open() - Open a connection to the printer.
61 * registry_close() - Close the connection to the printer.
62 * copy_deviceid() - Copy the 1284 device id string.
63 * copy_devicestring() - Copy the 1284 device id string.
64 * copy_value_for_key() - Copy value string associated with a key.
65 * cfstr_create_trim() - Create CFString and trim whitespace characters.
66 * parse_options() - Parse uri options.
67 * setup_cfLanguage() - Create AppleLanguages array from LANG environment var.
68 * run_ppc_backend() - Re-exec i386 backend as ppc.
69 * sigterm_handler() - SIGTERM handler.
70 * next_line() - Find the next line in a buffer.
71 * parse_pserror() - Scan the backchannel data for postscript errors.
72 * get_device_id() - Return IEEE-1284 device ID.
73 */
74
75 /*
76 * Include necessary headers.
77 */
78
79 #include <stdio.h>
80 #include <stdlib.h>
81 #include <errno.h>
82 #include <signal.h>
83 #include <fcntl.h>
84 #include <termios.h>
85 #include <unistd.h>
86 #include <sys/sysctl.h>
87 #include <libgen.h>
88 #include <mach/mach.h>
89 #include <mach/mach_error.h>
90 #include <mach/mach_time.h>
91 #include <cups/debug.h>
92 #include <cups/sidechannel.h>
93 #include <cups/i18n.h>
94
95 #include <CoreFoundation/CoreFoundation.h>
96 #include <IOKit/usb/IOUSBLib.h>
97 #include <IOKit/IOCFPlugIn.h>
98
99 #include <pthread.h>
100
101
102 /*
103 * WAIT_EOF_DELAY is number of seconds we'll wait for responses from
104 * the printer after we've finished sending all the data
105 */
106 #define WAIT_EOF_DELAY 7
107 #define WAIT_SIDE_DELAY 3
108 #define DEFAULT_TIMEOUT 5000L
109
110 #define USB_INTERFACE_KIND CFUUIDGetUUIDBytes(kIOUSBInterfaceInterfaceID190)
111 #define kUSBLanguageEnglish 0x409
112
113 #define PRINTER_POLLING_INTERVAL 5 /* seconds */
114 #define INITIAL_LOG_INTERVAL PRINTER_POLLING_INTERVAL
115 #define SUBSEQUENT_LOG_INTERVAL 3 * INITIAL_LOG_INTERVAL
116
117 #define kUSBPrinterClassTypeID CFUUIDGetConstantUUIDWithBytes(NULL, 0x06, 0x04, 0x7D, 0x16, 0x53, 0xA2, 0x11, 0xD6, 0x92, 0x06, 0x00, 0x30, 0x65, 0x52, 0x45, 0x92)
118 #define kUSBPrinterClassInterfaceID CFUUIDGetConstantUUIDWithBytes(NULL, 0x03, 0x34, 0x6D, 0x74, 0x53, 0xA3, 0x11, 0xD6, 0x9E, 0xA1, 0x76, 0x30, 0x65, 0x52, 0x45, 0x92)
119
120 #define kUSBClassDriverProperty CFSTR("USB Printing Class")
121
122 #define kUSBGenericTOPrinterClassDriver CFSTR("/System/Library/Printers/Libraries/USBGenericTOPrintingClass.plugin")
123 #define kUSBPrinterClassDeviceNotOpen -9664 /*kPMInvalidIOMContext*/
124
125
126 /*
127 * Section 5.3 USB Printing Class spec
128 */
129 #define kUSBPrintingSubclass 1
130 #define kUSBPrintingProtocolNoOpen 0
131 #define kUSBPrintingProtocolUnidirectional 1
132 #define kUSBPrintingProtocolBidirectional 2
133
134 typedef IOUSBInterfaceInterface190 **printer_interface_t;
135
136 typedef struct iodevice_request_s /**** Device request ****/
137 {
138 UInt8 requestType;
139 UInt8 request;
140 UInt16 value;
141 UInt16 index;
142 UInt16 length;
143 void *buffer;
144 } iodevice_request_t;
145
146 typedef union /**** Centronics status byte ****/
147 {
148 char b;
149 struct
150 {
151 unsigned reserved0:2;
152 unsigned paperError:1;
153 unsigned select:1;
154 unsigned notError:1;
155 unsigned reserved1:3;
156 } status;
157 } centronics_status_t;
158
159 typedef struct classdriver_s /**** g.classdriver context ****/
160 {
161 IUNKNOWN_C_GUTS;
162 CFPlugInRef plugin; /* release plugin */
163 IUnknownVTbl **factory; /* Factory */
164 void *vendorReference; /* vendor class specific usage */
165 UInt32 location; /* unique location in bus topology */
166 UInt8 interfaceNumber; /* Interface number */
167 UInt16 vendorID; /* Vendor id */
168 UInt16 productID; /* Product id */
169 printer_interface_t interface; /* identify the device to IOKit */
170 UInt8 outpipe; /* mandatory bulkOut pipe */
171 UInt8 inpipe; /* optional bulkIn pipe */
172
173 /* general class requests */
174 kern_return_t (*DeviceRequest)(struct classdriver_s **printer, iodevice_request_t *iorequest, UInt16 timeout);
175 kern_return_t (*GetString)(struct classdriver_s **printer, UInt8 whichString, UInt16 language, UInt16 timeout, CFStringRef *result);
176
177 /* standard printer class requests */
178 kern_return_t (*SoftReset)(struct classdriver_s **printer, UInt16 timeout);
179 kern_return_t (*GetCentronicsStatus)(struct classdriver_s **printer, centronics_status_t *result, UInt16 timeout);
180 kern_return_t (*GetDeviceID)(struct classdriver_s **printer, CFStringRef *devid, UInt16 timeout);
181
182 /* standard bulk device requests */
183 kern_return_t (*ReadPipe)(struct classdriver_s **printer, UInt8 *buffer, UInt32 *count);
184 kern_return_t (*WritePipe)(struct classdriver_s **printer, UInt8 *buffer, UInt32 *count, Boolean eoj);
185
186 /* interface requests */
187 kern_return_t (*Open)(struct classdriver_s **printer, UInt32 location, UInt8 protocol);
188 kern_return_t (*Abort)(struct classdriver_s **printer);
189 kern_return_t (*Close)(struct classdriver_s **printer);
190
191 /* initialize and terminate */
192 kern_return_t (*Initialize)(struct classdriver_s **printer, struct classdriver_s **baseclass);
193 kern_return_t (*Terminate)(struct classdriver_s **printer);
194
195 } classdriver_t;
196
197 typedef Boolean (*iterator_callback_t)(void *refcon, io_service_t obj);
198
199 typedef struct iterator_reference_s /**** Iterator reference data */
200 {
201 iterator_callback_t callback;
202 void *userdata;
203 Boolean keepRunning;
204 } iterator_reference_t;
205
206 typedef struct globals_s
207 {
208 io_service_t printer_obj;
209 classdriver_t **classdriver;
210
211 pthread_mutex_t read_thread_mutex;
212 pthread_cond_t read_thread_cond;
213 int read_thread_stop;
214 int read_thread_done;
215
216 pthread_mutex_t readwrite_lock_mutex;
217 pthread_cond_t readwrite_lock_cond;
218 int readwrite_lock;
219
220 CFStringRef make;
221 CFStringRef model;
222 CFStringRef serial;
223 UInt32 location;
224 UInt8 interfaceNum;
225
226 CFRunLoopTimerRef status_timer;
227
228 int print_fd; /* File descriptor to print */
229 ssize_t print_bytes; /* Print bytes read */
230
231 Boolean wait_eof;
232 int drain_output; /* Drain all pending output */
233 int bidi_flag; /* 0=unidirectional, 1=bidirectional */
234
235 pthread_mutex_t sidechannel_thread_mutex;
236 pthread_cond_t sidechannel_thread_cond;
237 int sidechannel_thread_stop;
238 int sidechannel_thread_done;
239 } globals_t;
240
241
242 /*
243 * Globals...
244 */
245
246 globals_t g = { 0 }; /* Globals */
247
248
249 /*
250 * Local functions...
251 */
252
253 static Boolean find_device_cb(void *refcon, io_service_t obj);
254 static Boolean list_device_cb(void *refcon, io_service_t obj);
255 static CFStringRef cfstr_create_trim(const char *cstr);
256 static CFStringRef copy_value_for_key(CFStringRef deviceID, CFStringRef *keys);
257 static kern_return_t load_classdriver(CFStringRef driverPath, printer_interface_t intf, classdriver_t ***printerDriver);
258 static kern_return_t load_printerdriver(CFStringRef *driverBundlePath);
259 static kern_return_t registry_close();
260 static kern_return_t registry_open(CFStringRef *driverBundlePath);
261 static kern_return_t unload_classdriver();
262 static OSStatus copy_deviceid(classdriver_t **printer, CFStringRef *deviceID);
263 static void *read_thread(void *reference);
264 static void *sidechannel_thread(void *reference);
265 static void copy_deviceinfo(CFStringRef deviceIDString, CFStringRef *make, CFStringRef *model, CFStringRef *serial);
266 static void copy_devicestring(io_service_t usbInterface, CFStringRef *deviceID, UInt32 *deviceLocation, UInt8 *interfaceNum);
267 static void device_added(void *userdata, io_iterator_t iterator);
268 static void get_device_id(cups_sc_status_t *status, char *data, int *datalen);
269 static void iterate_printers(iterator_callback_t callBack, void *userdata);
270 static void parse_options(char *options, char *serial, int serial_size, UInt32 *location, Boolean *wait_eof);
271 static void release_deviceinfo(CFStringRef *make, CFStringRef *model, CFStringRef *serial);
272 static void setup_cfLanguage(void);
273 static void soft_reset();
274 static void status_timer_cb(CFRunLoopTimerRef timer, void *info);
275
276 #if defined(__i386__)
277 static pid_t child_pid; /* Child PID */
278 static void run_ppc_backend(int argc, char *argv[], int fd); /* Starts child backend process running as a ppc executable */
279 static void sigterm_handler(int sig); /* SIGTERM handler */
280 #endif /* __i386__ */
281
282 #ifdef PARSE_PS_ERRORS
283 static const char *next_line (const char *buffer);
284 static void parse_pserror (char *sockBuffer, int len);
285 #endif /* PARSE_PS_ERRORS */
286
287 #pragma mark -
288
289 /*
290 * 'list_devices()' - List all USB devices.
291 */
292
293 void list_devices()
294 {
295 iterate_printers(list_device_cb, NULL);
296 }
297
298
299 /*
300 * 'print_device()' - Print a file to a USB device.
301 */
302
303 int /* O - Exit status */
304 print_device(const char *uri, /* I - Device URI */
305 const char *hostname, /* I - Hostname/manufacturer */
306 const char *resource, /* I - Resource/modelname */
307 char *options, /* I - Device options/serial number */
308 int print_fd, /* I - File descriptor to print */
309 int copies, /* I - Copies to print */
310 int argc, /* I - Number of command-line arguments (6 or 7) */
311 char *argv[]) /* I - Command-line arguments */
312 {
313 char serial[1024]; /* Serial number buffer */
314 OSStatus status; /* Function results */
315 pthread_t read_thread_id, /* Read thread */
316 sidechannel_thread_id;/* Side-channel thread */
317 int sidechannel_started = 0;/* Was the side-channel thread started? */
318 char print_buffer[8192], /* Print data buffer */
319 *print_ptr; /* Pointer into print data buffer */
320 UInt32 location; /* Unique location in bus topology */
321 fd_set input_set; /* Input set for select() */
322 CFStringRef driverBundlePath; /* Class driver path */
323 int countdown, /* Logging interval */
324 nfds; /* Number of file descriptors */
325 ssize_t total_bytes; /* Total bytes written */
326 UInt32 bytes; /* Bytes written */
327 struct timeval *timeout, /* Timeout pointer */
328 stimeout; /* Timeout for select() */
329 struct timespec cond_timeout; /* pthread condition timeout */
330
331
332 setup_cfLanguage();
333
334 parse_options(options, serial, sizeof(serial), &location, &g.wait_eof);
335
336 if (resource[0] == '/')
337 resource++;
338
339 g.print_fd = print_fd;
340 g.make = cfstr_create_trim(hostname);
341 g.model = cfstr_create_trim(resource);
342 g.serial = cfstr_create_trim(serial);
343 g.location = location;
344
345 if (!g.make || !g.model)
346 {
347 _cupsLangPrintf(stderr,
348 _("ERROR: Unable to create make and model strings\n"));
349 return CUPS_BACKEND_STOP;
350 }
351
352 fputs("STATE: +connecting-to-device\n", stderr);
353
354 countdown = INITIAL_LOG_INTERVAL;
355
356 do
357 {
358 if (g.printer_obj)
359 {
360 IOObjectRelease(g.printer_obj);
361 unload_classdriver(&g.classdriver);
362 g.printer_obj = 0x0;
363 g.classdriver = 0x0;
364 }
365
366 fprintf(stderr, "DEBUG: Looking for '%s %s'\n", hostname, resource);
367
368 iterate_printers(find_device_cb, NULL);
369
370 fputs("DEBUG: Opening connection\n", stderr);
371
372 driverBundlePath = NULL;
373
374 status = registry_open(&driverBundlePath);
375
376 #if defined(__i386__)
377 /*
378 * If we were unable to load the class drivers for this printer it's probably because they're ppc-only.
379 * In this case try to fork & exec this backend as a ppc executable so we can use them...
380 */
381 if (status == -2)
382 {
383 run_ppc_backend(argc, argv, print_fd);
384 /* Never returns here */
385 }
386 #endif /* __i386__ */
387
388 if (status == -2)
389 {
390 /*
391 * If we still were unable to load the class drivers for this printer log
392 * the error and stop the queue...
393 */
394
395 if (driverBundlePath == NULL || !CFStringGetCString(driverBundlePath, print_buffer, sizeof(print_buffer), kCFStringEncodingUTF8))
396 strlcpy(print_buffer, "USB class driver", sizeof(print_buffer));
397
398 fputs("STATE: +apple-missing-usbclassdriver-error\n", stderr);
399 _cupsLangPrintf(stderr, _("FATAL: Could not load %s\n"), print_buffer);
400
401 if (driverBundlePath)
402 CFRelease(driverBundlePath);
403
404 return CUPS_BACKEND_STOP;
405 }
406
407 if (driverBundlePath)
408 CFRelease(driverBundlePath);
409
410 if (status != noErr)
411 {
412 sleep(PRINTER_POLLING_INTERVAL);
413 countdown -= PRINTER_POLLING_INTERVAL;
414 if (countdown <= 0)
415 {
416 _cupsLangPrintf(stderr, _("INFO: Printer busy (status:0x%08x)\n"),
417 (int)status);
418 countdown = SUBSEQUENT_LOG_INTERVAL; /* subsequent log entries, every 15 seconds */
419 }
420 }
421 } while (status != noErr);
422
423 fputs("STATE: -connecting-to-device\n", stderr);
424
425 /*
426 * Now that we are "connected" to the port, ignore SIGTERM so that we
427 * can finish out any page data the driver sends (e.g. to eject the
428 * current page... Only ignore SIGTERM if we are printing data from
429 * stdin (otherwise you can't cancel raw jobs...)
430 */
431
432 if (!print_fd)
433 {
434 struct sigaction action; /* POSIX signal action */
435
436
437 memset(&action, 0, sizeof(action));
438
439 sigemptyset(&action.sa_mask);
440 action.sa_handler = SIG_IGN;
441 sigaction(SIGTERM, &action, NULL);
442 }
443
444 /*
445 * Start the side channel thread only if the descriptor is valid
446 * (i.e. it's not when the backend is used for auto-setup)...
447 */
448
449 pthread_mutex_init(&g.readwrite_lock_mutex, NULL);
450 pthread_cond_init(&g.readwrite_lock_cond, NULL);
451 g.readwrite_lock = 1;
452
453 FD_ZERO(&input_set);
454 FD_SET(CUPS_SC_FD, &input_set);
455
456 stimeout.tv_sec = 0;
457 stimeout.tv_usec = 0;
458
459 if ((select(CUPS_SC_FD+1, &input_set, NULL, NULL, &stimeout)) >= 0)
460 {
461 g.sidechannel_thread_stop = 0;
462 g.sidechannel_thread_done = 0;
463
464 pthread_cond_init(&g.sidechannel_thread_cond, NULL);
465 pthread_mutex_init(&g.sidechannel_thread_mutex, NULL);
466
467 if (pthread_create(&sidechannel_thread_id, NULL, sidechannel_thread, NULL))
468 {
469 _cupsLangPuts(stderr, _("WARNING: Couldn't create side channel\n"));
470 return CUPS_BACKEND_STOP;
471 }
472
473 sidechannel_started = 1;
474 }
475
476 /*
477 * Get the read thread going...
478 */
479
480 g.read_thread_stop = 0;
481 g.read_thread_done = 0;
482
483 pthread_cond_init(&g.read_thread_cond, NULL);
484 pthread_mutex_init(&g.read_thread_mutex, NULL);
485
486 if (pthread_create(&read_thread_id, NULL, read_thread, NULL))
487 {
488 _cupsLangPuts(stderr, _("WARNING: Couldn't create read channel\n"));
489 return CUPS_BACKEND_STOP;
490 }
491
492 /*
493 * The main thread sends the print file...
494 */
495
496 g.drain_output = 0;
497 g.print_bytes = 0;
498 total_bytes = 0;
499 print_ptr = print_buffer;
500
501 while (status == noErr && copies-- > 0)
502 {
503 _cupsLangPuts(stderr, _("INFO: Sending data\n"));
504
505 if (print_fd != STDIN_FILENO)
506 {
507 fputs("PAGE: 1 1", stderr);
508 lseek(print_fd, 0, SEEK_SET);
509 }
510
511 while (status == noErr)
512 {
513 FD_ZERO(&input_set);
514
515 if (!g.print_bytes)
516 FD_SET(print_fd, &input_set);
517
518 /*
519 * Calculate select timeout...
520 * If we have data waiting to send timeout is 100ms.
521 * else if we're draining print_fd timeout is 0.
522 * else we're waiting forever...
523 */
524
525 if (g.print_bytes)
526 {
527 stimeout.tv_sec = 0;
528 stimeout.tv_usec = 100000; /* 100ms */
529 timeout = &stimeout;
530 }
531 else if (g.drain_output)
532 {
533 stimeout.tv_sec = 0;
534 stimeout.tv_usec = 0;
535 timeout = &stimeout;
536 }
537 else
538 timeout = NULL;
539
540 /*
541 * I/O is unlocked around select...
542 */
543
544 pthread_mutex_lock(&g.readwrite_lock_mutex);
545 g.readwrite_lock = 0;
546 pthread_cond_signal(&g.readwrite_lock_cond);
547 pthread_mutex_unlock(&g.readwrite_lock_mutex);
548
549 nfds = select(print_fd + 1, &input_set, NULL, NULL, timeout);
550
551 /*
552 * Reacquire the lock...
553 */
554
555 pthread_mutex_lock(&g.readwrite_lock_mutex);
556 while (g.readwrite_lock)
557 pthread_cond_wait(&g.readwrite_lock_cond, &g.readwrite_lock_mutex);
558 g.readwrite_lock = 1;
559 pthread_mutex_unlock(&g.readwrite_lock_mutex);
560
561 if (nfds < 0)
562 {
563 if (errno == EINTR && total_bytes == 0)
564 {
565 fputs("DEBUG: Received an interrupt before any bytes were "
566 "written, aborting!\n", stderr);
567 return (0);
568 }
569 else if (errno != EAGAIN)
570 {
571 _cupsLangPrintf(stderr, _("ERROR: select() returned %d\n"), (int)errno);
572 return CUPS_BACKEND_STOP;
573 }
574 }
575
576 /*
577 * If drain output has finished send a response...
578 */
579
580 if (g.drain_output && !nfds && !g.print_bytes)
581 {
582 /* Send a response... */
583 cupsSideChannelWrite(CUPS_SC_CMD_DRAIN_OUTPUT, CUPS_SC_STATUS_OK, NULL, 0, 1.0);
584 g.drain_output = 0;
585 }
586
587 /*
588 * Check if we have print data ready...
589 */
590
591 if (FD_ISSET(print_fd, &input_set))
592 {
593 g.print_bytes = read(print_fd, print_buffer, sizeof(print_buffer));
594
595 if (g.print_bytes < 0)
596 {
597 /*
598 * Read error - bail if we don't see EAGAIN or EINTR...
599 */
600
601 if (errno != EAGAIN || errno != EINTR)
602 {
603 perror("ERROR: Unable to read print data");
604 return CUPS_BACKEND_STOP;
605 }
606
607 g.print_bytes = 0;
608 }
609 else if (g.print_bytes == 0)
610 {
611 /*
612 * End of file, break out of the loop...
613 */
614
615 break;
616 }
617
618 print_ptr = print_buffer;
619
620 fprintf(stderr, "DEBUG: Read %d bytes of print data...\n",
621 (int)g.print_bytes);
622 }
623
624 if (g.print_bytes)
625 {
626 bytes = g.print_bytes;
627
628 status = (*g.classdriver)->WritePipe(g.classdriver, (UInt8*)print_ptr, &bytes, 0);
629
630 /*
631 * Ignore timeout errors...
632 */
633
634 if (status == kIOUSBTransactionTimeout)
635 {
636 status = 0;
637 bytes = 0;
638 }
639
640 if (status || bytes < 0)
641 {
642 /*
643 * Write error - bail if we don't see an error we can retry...
644 */
645
646 OSStatus err = (*g.classdriver)->Abort(g.classdriver);
647 _cupsLangPrintf(stderr, _("ERROR: %ld: (canceled:%ld)\n"),
648 (long)status, (long)err);
649 status = CUPS_BACKEND_STOP;
650 break;
651 }
652
653 fprintf(stderr, "DEBUG: Wrote %d bytes of print data...\n", (int)bytes);
654
655 g.print_bytes -= bytes;
656 print_ptr += bytes;
657 total_bytes += bytes;
658 }
659
660 if (print_fd != 0 && status == noErr)
661 fprintf(stderr, "DEBUG: Sending print file, %lld bytes...\n",
662 (off_t)total_bytes);
663 }
664 }
665
666 fprintf(stderr, "DEBUG: Sent %lld bytes...\n", (off_t)total_bytes);
667
668 /*
669 * Wait for the side channel thread to exit...
670 */
671
672 if (sidechannel_started)
673 {
674 close(CUPS_SC_FD);
675 pthread_mutex_lock(&g.readwrite_lock_mutex);
676 g.readwrite_lock = 0;
677 pthread_cond_signal(&g.readwrite_lock_cond);
678 pthread_mutex_unlock(&g.readwrite_lock_mutex);
679
680 g.sidechannel_thread_stop = 1;
681 pthread_mutex_lock(&g.sidechannel_thread_mutex);
682 if (!g.sidechannel_thread_done)
683 {
684 /*
685 * Wait for the side-channel thread to exit...
686 */
687
688 cond_timeout.tv_sec = time(NULL) + WAIT_SIDE_DELAY;
689 cond_timeout.tv_nsec = 0;
690 if (pthread_cond_timedwait(&g.sidechannel_thread_cond,
691 &g.sidechannel_thread_mutex,
692 &cond_timeout) != 0)
693 {
694 /*
695 * Force the side-channel thread to exit...
696 */
697
698 pthread_kill(sidechannel_thread_id, SIGTERM);
699 }
700 }
701 pthread_mutex_unlock(&g.sidechannel_thread_mutex);
702
703 pthread_join(sidechannel_thread_id, NULL);
704
705 pthread_cond_destroy(&g.sidechannel_thread_cond);
706 pthread_mutex_destroy(&g.sidechannel_thread_mutex);
707 }
708
709 pthread_cond_destroy(&g.readwrite_lock_cond);
710 pthread_mutex_destroy(&g.readwrite_lock_mutex);
711
712 /*
713 * Signal the read thread to stop...
714 */
715
716 g.read_thread_stop = 1;
717
718 /*
719 * Give the read thread WAIT_EOF_DELAY seconds to complete all the data. If
720 * we are not signaled in that time then force the thread to exit.
721 */
722
723 pthread_mutex_lock(&g.read_thread_mutex);
724
725 if (!g.read_thread_done)
726 {
727 cond_timeout.tv_sec = time(NULL) + WAIT_EOF_DELAY;
728 cond_timeout.tv_nsec = 0;
729
730 if (pthread_cond_timedwait(&g.read_thread_cond, &g.read_thread_mutex,
731 &cond_timeout) != 0)
732 {
733 /*
734 * Force the read thread to exit...
735 */
736
737 pthread_kill(read_thread_id, SIGTERM);
738 }
739 }
740 pthread_mutex_unlock(&g.read_thread_mutex);
741
742 pthread_join(read_thread_id, NULL); /* wait for the read thread to return */
743
744 pthread_cond_destroy(&g.read_thread_cond);
745 pthread_mutex_destroy(&g.read_thread_mutex);
746
747 /*
748 * Close the connection and input file and general clean up...
749 */
750
751 registry_close();
752
753 if (print_fd != STDIN_FILENO)
754 close(print_fd);
755
756 if (g.make != NULL)
757 CFRelease(g.make);
758
759 if (g.model != NULL)
760 CFRelease(g.model);
761
762 if (g.serial != NULL)
763 CFRelease(g.serial);
764
765 if (g.printer_obj != 0x0)
766 IOObjectRelease(g.printer_obj);
767
768 return status;
769 }
770
771
772 /*
773 * 'read_thread()' - Thread to read the backchannel data on.
774 */
775
776 static void *read_thread(void *reference)
777 {
778 UInt8 readbuffer[512];
779 UInt32 rbytes;
780 kern_return_t readstatus;
781 struct mach_timebase_info timeBaseInfo;
782 uint64_t start,
783 delay;
784
785 /* Calculate what 250 milliSeconds are in mach absolute time...
786 */
787 mach_timebase_info(&timeBaseInfo);
788 delay = ((uint64_t)250000000 * (uint64_t)timeBaseInfo.denom) / (uint64_t)timeBaseInfo.numer;
789
790 do
791 {
792 /*
793 * Remember when we started so we can throttle the loop after the read call...
794 */
795
796 start = mach_absolute_time();
797
798 rbytes = sizeof(readbuffer);
799 readstatus = (*g.classdriver)->ReadPipe(g.classdriver, readbuffer, &rbytes);
800 if (readstatus == kIOReturnSuccess && rbytes > 0)
801 {
802 cupsBackChannelWrite((char*)readbuffer, rbytes, 1.0);
803
804 /* cntrl-d is echoed by the printer.
805 * NOTES:
806 * Xerox Phaser 6250D doesn't echo the cntrl-d.
807 * Xerox Phaser 6250D doesn't always send the product query.
808 */
809 if (g.wait_eof && readbuffer[rbytes-1] == 0x4)
810 break;
811
812 #ifdef PARSE_PS_ERRORS
813 parse_pserror(readbuffer, rbytes);
814 #endif
815 }
816
817 /*
818 * Make sure this loop executes no more than once every 250 miliseconds...
819 */
820
821 if ((readstatus != kIOReturnSuccess || rbytes == 0) && (g.wait_eof || !g.read_thread_stop))
822 mach_wait_until(start + delay);
823
824 } while (g.wait_eof || !g.read_thread_stop); /* Abort from main thread tests error here */
825
826 /*
827 * Let the main thread know that we have completed the read thread...
828 */
829
830 pthread_mutex_lock(&g.read_thread_mutex);
831 g.read_thread_done = 1;
832 pthread_cond_signal(&g.read_thread_cond);
833 pthread_mutex_unlock(&g.read_thread_mutex);
834
835 return NULL;
836 }
837
838
839 /*
840 * 'sidechannel_thread()' - Handle side-channel requests.
841 */
842
843 static void*
844 sidechannel_thread(void *reference)
845 {
846 cups_sc_command_t command; /* Request command */
847 cups_sc_status_t status; /* Request/response status */
848 char data[2048]; /* Request/response data */
849 int datalen; /* Request/response data size */
850
851
852 do
853 {
854 datalen = sizeof(data);
855
856 if (cupsSideChannelRead(&command, &status, data, &datalen, 1.0))
857 continue;
858
859 switch (command)
860 {
861 case CUPS_SC_CMD_SOFT_RESET: /* Do a soft reset */
862 if ((*g.classdriver)->SoftReset != NULL)
863 {
864 soft_reset();
865 cupsSideChannelWrite(command, CUPS_SC_STATUS_OK, NULL, 0, 1.0);
866 }
867 else
868 {
869 cupsSideChannelWrite(command, CUPS_SC_STATUS_NOT_IMPLEMENTED,
870 NULL, 0, 1.0);
871 }
872 break;
873
874 case CUPS_SC_CMD_DRAIN_OUTPUT: /* Drain all pending output */
875 g.drain_output = 1;
876 break;
877
878 case CUPS_SC_CMD_GET_BIDI: /* Is the connection bidirectional? */
879 data[0] = g.bidi_flag;
880 cupsSideChannelWrite(command, CUPS_SC_STATUS_OK, data, 1, 1.0);
881 break;
882
883 case CUPS_SC_CMD_GET_DEVICE_ID: /* Return IEEE-1284 device ID */
884 datalen = sizeof(data);
885 get_device_id(&status, data, &datalen);
886 cupsSideChannelWrite(command, CUPS_SC_STATUS_OK, data, datalen, 1.0);
887 break;
888
889 case CUPS_SC_CMD_GET_STATE: /* Return device state */
890 data[0] = CUPS_SC_STATE_ONLINE;
891 cupsSideChannelWrite(command, CUPS_SC_STATUS_OK, data, 1, 1.0);
892 break;
893
894 default:
895 cupsSideChannelWrite(command, CUPS_SC_STATUS_NOT_IMPLEMENTED,
896 NULL, 0, 1.0);
897 break;
898 }
899 }
900 while (!g.sidechannel_thread_stop);
901
902 pthread_mutex_lock(&g.sidechannel_thread_mutex);
903 g.sidechannel_thread_done = 1;
904 pthread_cond_signal(&g.sidechannel_thread_cond);
905 pthread_mutex_unlock(&g.sidechannel_thread_mutex);
906
907 return NULL;
908 }
909
910
911 #pragma mark -
912 /*
913 * 'iterate_printers()' - Iterate over all the printers.
914 */
915
916 static void iterate_printers(iterator_callback_t callBack,
917 void *userdata)
918 {
919 mach_port_t masterPort = 0x0;
920 kern_return_t kr = IOMasterPort (bootstrap_port, &masterPort);
921
922 if (kr == kIOReturnSuccess && masterPort != 0x0)
923 {
924 io_iterator_t addIterator = 0x0;
925
926 iterator_reference_t reference = { callBack, userdata, true };
927 IONotificationPortRef addNotification = IONotificationPortCreate(masterPort);
928
929 int klass = kUSBPrintingClass;
930 int subklass = kUSBPrintingSubclass;
931
932 CFNumberRef usb_klass = CFNumberCreate(NULL, kCFNumberIntType, &klass);
933 CFNumberRef usb_subklass = CFNumberCreate(NULL, kCFNumberIntType, &subklass);
934 CFMutableDictionaryRef usbPrinterMatchDictionary = IOServiceMatching(kIOUSBInterfaceClassName);
935
936 CFDictionaryAddValue(usbPrinterMatchDictionary, CFSTR("bInterfaceClass"), usb_klass);
937 CFDictionaryAddValue(usbPrinterMatchDictionary, CFSTR("bInterfaceSubClass"), usb_subklass);
938
939 CFRelease(usb_klass);
940 CFRelease(usb_subklass);
941
942 kr = IOServiceAddMatchingNotification(addNotification, kIOMatchedNotification, usbPrinterMatchDictionary, &device_added, &reference, &addIterator);
943 if (addIterator != 0x0)
944 {
945 device_added (&reference, addIterator);
946
947 if (reference.keepRunning)
948 {
949 CFRunLoopAddSource(CFRunLoopGetCurrent(), IONotificationPortGetRunLoopSource(addNotification), kCFRunLoopDefaultMode);
950 CFRunLoopRun();
951 }
952 IOObjectRelease(addIterator);
953 }
954 mach_port_deallocate(mach_task_self(), masterPort);
955 }
956 }
957
958
959 /*
960 * 'device_added()' - Device added notifier.
961 */
962
963 static void device_added(void *userdata,
964 io_iterator_t iterator)
965 {
966 iterator_reference_t *reference = userdata;
967
968 io_service_t obj;
969 while (reference->keepRunning && (obj = IOIteratorNext(iterator)) != 0x0)
970 {
971 if (reference->callback != NULL)
972 reference->keepRunning = reference->callback(reference->userdata, obj);
973
974 IOObjectRelease(obj);
975 }
976
977 /* One last call to the call back now that we are not longer have printers left to iterate...
978 */
979 if (reference->keepRunning)
980 reference->keepRunning = reference->callback(reference->userdata, 0x0);
981
982 if (!reference->keepRunning)
983 CFRunLoopStop(CFRunLoopGetCurrent());
984 }
985
986
987 /*
988 * 'list_device_cb()' - list_device iterator callback.
989 */
990
991 static Boolean list_device_cb(void *refcon,
992 io_service_t obj)
993 {
994 Boolean keepRunning = (obj != 0x0);
995
996 if (keepRunning)
997 {
998 CFStringRef deviceIDString = NULL;
999 UInt32 deviceLocation = 0;
1000 UInt8 interfaceNum = 0;
1001
1002 copy_devicestring(obj, &deviceIDString, &deviceLocation, &interfaceNum);
1003 if (deviceIDString != NULL)
1004 {
1005 CFStringRef make = NULL, model = NULL, serial = NULL;
1006 char uristr[1024], makestr[1024], modelstr[1024], serialstr[1024];
1007 char optionsstr[1024], idstr[1024];
1008
1009 copy_deviceinfo(deviceIDString, &make, &model, &serial);
1010
1011 modelstr[0] = '/';
1012
1013 CFStringGetCString(deviceIDString, idstr, sizeof(idstr),
1014 kCFStringEncodingUTF8);
1015
1016 if (make)
1017 CFStringGetCString(make, makestr, sizeof(makestr),
1018 kCFStringEncodingUTF8);
1019 else
1020 strcpy(makestr, "Unknown");
1021
1022 if (model)
1023 CFStringGetCString(model, &modelstr[1], sizeof(modelstr)-1,
1024 kCFStringEncodingUTF8);
1025 else
1026 strcpy(modelstr + 1, "Printer");
1027
1028 optionsstr[0] = '\0';
1029 if (serial != NULL)
1030 {
1031 CFStringGetCString(serial, serialstr, sizeof(serialstr), kCFStringEncodingUTF8);
1032 snprintf(optionsstr, sizeof(optionsstr), "?serial=%s", serialstr);
1033 }
1034 else if (deviceLocation != 0)
1035 snprintf(optionsstr, sizeof(optionsstr), "?location=%x", (unsigned)deviceLocation);
1036
1037 httpAssembleURI(HTTP_URI_CODING_ALL, uristr, sizeof(uristr), "usb", NULL, makestr, 0, modelstr);
1038 strncat(uristr, optionsstr, sizeof(uristr));
1039
1040 /*
1041 * Fix common HP 1284 bug...
1042 */
1043
1044 if (!strcasecmp(makestr, "Hewlett-Packard"))
1045 strcpy(makestr, "HP");
1046
1047 if (!strncasecmp(modelstr + 1, "hp ", 3))
1048 _cups_strcpy(modelstr + 1, modelstr + 4);
1049
1050 printf("direct %s \"%s %s\" \"%s %s USB\" \"%s\"\n", uristr, makestr,
1051 &modelstr[1], makestr, &modelstr[1], idstr);
1052
1053 release_deviceinfo(&make, &model, &serial);
1054 CFRelease(deviceIDString);
1055 }
1056 }
1057
1058 return keepRunning;
1059 }
1060
1061
1062 /*
1063 * 'find_device_cb()' - print_device iterator callback.
1064 */
1065
1066 static Boolean find_device_cb(void *refcon,
1067 io_service_t obj)
1068 {
1069 Boolean keepLooking = true;
1070
1071 if (obj != 0x0)
1072 {
1073 CFStringRef idString = NULL;
1074 UInt32 location = -1;
1075 UInt8 interfaceNum = 0;
1076
1077 copy_devicestring(obj, &idString, &location, &interfaceNum);
1078 if (idString != NULL)
1079 {
1080 CFStringRef make = NULL, model = NULL, serial = NULL;
1081
1082 copy_deviceinfo(idString, &make, &model, &serial);
1083 if (make && CFStringCompare(make, g.make, kCFCompareCaseInsensitive) == kCFCompareEqualTo)
1084 {
1085 if (model && CFStringCompare(model, g.model, kCFCompareCaseInsensitive) == kCFCompareEqualTo)
1086 {
1087 if (g.serial != NULL && CFStringGetLength(g.serial) > 0)
1088 {
1089 if (serial != NULL && CFStringCompare(serial, g.serial, kCFCompareCaseInsensitive) == kCFCompareEqualTo)
1090 {
1091 IOObjectRetain(obj);
1092 g.printer_obj = obj;
1093 keepLooking = false;
1094 }
1095 }
1096 else
1097 {
1098 if (g.printer_obj != 0)
1099 IOObjectRelease(g.printer_obj);
1100
1101 g.printer_obj = obj;
1102 IOObjectRetain(obj);
1103
1104 if (g.location == 0 || g.location == location)
1105 keepLooking = false;
1106 }
1107 if ( !keepLooking )
1108 g.interfaceNum = interfaceNum;
1109 }
1110 }
1111
1112 release_deviceinfo(&make, &model, &serial);
1113 CFRelease(idString);
1114 }
1115 }
1116 else
1117 {
1118 keepLooking = (g.printer_obj == 0);
1119 if (obj == 0x0 && keepLooking)
1120 {
1121 CFRunLoopTimerContext context = { 0, refcon, NULL, NULL, NULL };
1122 CFRunLoopTimerRef timer = CFRunLoopTimerCreate(NULL, CFAbsoluteTimeGetCurrent() + 1.0, 10, 0x0, 0x0, status_timer_cb, &context);
1123 if (timer != NULL)
1124 {
1125 CFRunLoopAddTimer(CFRunLoopGetCurrent(), timer, kCFRunLoopDefaultMode);
1126 g.status_timer = timer;
1127 }
1128 }
1129 }
1130
1131 if (!keepLooking && g.status_timer != NULL)
1132 {
1133 fputs("STATE: -offline-error\n", stderr);
1134 _cupsLangPuts(stderr, _("INFO: Printer is now on-line.\n"));
1135 CFRunLoopRemoveTimer(CFRunLoopGetCurrent(), g.status_timer, kCFRunLoopDefaultMode);
1136 CFRelease(g.status_timer);
1137 g.status_timer = NULL;
1138 }
1139
1140 return keepLooking;
1141 }
1142
1143
1144 /*
1145 * 'status_timer_cb()' - Status timer callback.
1146 */
1147
1148 static void status_timer_cb(CFRunLoopTimerRef timer,
1149 void *info)
1150 {
1151 fputs("STATE: +offline-error\n", stderr);
1152 _cupsLangPuts(stderr, _("INFO: Printer is currently off-line.\n"));
1153
1154 if (getenv("CLASS") != NULL)
1155 {
1156 /*
1157 * If the CLASS environment variable is set, the job was submitted
1158 * to a class and not to a specific queue. In this case, we want
1159 * to abort immediately so that the job can be requeued on the next
1160 * available printer in the class.
1161 *
1162 * Sleep 5 seconds to keep the job from requeuing too rapidly...
1163 */
1164
1165 sleep(5);
1166
1167 exit(CUPS_BACKEND_FAILED);
1168 }
1169 }
1170
1171
1172 #pragma mark -
1173 /*
1174 * 'copy_deviceinfo()' - Copy strings from the 1284 device ID.
1175 */
1176
1177 static void copy_deviceinfo(CFStringRef deviceIDString,
1178 CFStringRef *make,
1179 CFStringRef *model,
1180 CFStringRef *serial)
1181 {
1182 CFStringRef modelKeys[] = { CFSTR("MDL:"), CFSTR("MODEL:"), NULL };
1183 CFStringRef makeKeys[] = { CFSTR("MFG:"), CFSTR("MANUFACTURER:"), NULL };
1184 CFStringRef serialKeys[] = { CFSTR("SN:"), CFSTR("SERN:"), NULL };
1185
1186 if (make != NULL)
1187 *make = copy_value_for_key(deviceIDString, makeKeys);
1188 if (model != NULL)
1189 *model = copy_value_for_key(deviceIDString, modelKeys);
1190 if (serial != NULL)
1191 *serial = copy_value_for_key(deviceIDString, serialKeys);
1192 }
1193
1194
1195 /*
1196 * 'release_deviceinfo()' - Release deviceinfo strings.
1197 */
1198
1199 static void release_deviceinfo(CFStringRef *make,
1200 CFStringRef *model,
1201 CFStringRef *serial)
1202 {
1203 if (make != NULL && *make != NULL)
1204 {
1205 CFRelease(*make);
1206 *make = NULL;
1207 }
1208
1209 if (model != NULL && *model != NULL)
1210 {
1211 CFRelease(*model);
1212 *model = NULL;
1213 }
1214
1215 if (serial != NULL && *serial != NULL)
1216 {
1217 CFRelease(*serial);
1218 *serial = NULL;
1219 }
1220 }
1221
1222
1223 #pragma mark -
1224 /*
1225 * 'load_classdriver()' - Load a classdriver.
1226 */
1227
1228 static kern_return_t load_classdriver(CFStringRef driverPath,
1229 printer_interface_t intf,
1230 classdriver_t ***printerDriver)
1231 {
1232 kern_return_t kr = kUSBPrinterClassDeviceNotOpen;
1233 classdriver_t **driver = NULL;
1234 CFStringRef bundle = (driverPath == NULL ? kUSBGenericTOPrinterClassDriver : driverPath);
1235
1236 if (bundle != NULL)
1237 {
1238 CFURLRef url = CFURLCreateWithFileSystemPath(NULL, bundle, kCFURLPOSIXPathStyle, true);
1239 CFPlugInRef plugin = (url != NULL ? CFPlugInCreate(NULL, url) : NULL);
1240
1241 if (url != NULL)
1242 CFRelease(url);
1243
1244 if (plugin != NULL)
1245 {
1246 CFArrayRef factories = CFPlugInFindFactoriesForPlugInTypeInPlugIn(kUSBPrinterClassTypeID, plugin);
1247 if (factories != NULL && CFArrayGetCount(factories) > 0)
1248 {
1249 CFUUIDRef factoryID = CFArrayGetValueAtIndex(factories, 0);
1250 IUnknownVTbl **iunknown = CFPlugInInstanceCreate(NULL, factoryID, kUSBPrinterClassTypeID);
1251 if (iunknown != NULL)
1252 {
1253 kr = (*iunknown)->QueryInterface(iunknown, CFUUIDGetUUIDBytes(kUSBPrinterClassInterfaceID), (LPVOID *)&driver);
1254 if (kr == kIOReturnSuccess && driver != NULL)
1255 {
1256 classdriver_t **genericDriver = NULL;
1257 if (driverPath != NULL && CFStringCompare(driverPath, kUSBGenericTOPrinterClassDriver, 0) != kCFCompareEqualTo)
1258 kr = load_classdriver(NULL, intf, &genericDriver);
1259
1260 if (kr == kIOReturnSuccess)
1261 {
1262 (*driver)->interface = intf;
1263 (*driver)->Initialize(driver, genericDriver);
1264
1265 (*driver)->plugin = plugin;
1266 (*driver)->interface = intf;
1267 *printerDriver = driver;
1268 }
1269 }
1270 (*iunknown)->Release(iunknown);
1271 }
1272 CFRelease(factories);
1273 }
1274 }
1275 }
1276
1277 #ifdef DEBUG
1278 char bundlestr[1024];
1279 CFStringGetCString(bundle, bundlestr, sizeof(bundlestr), kCFStringEncodingUTF8);
1280 fprintf(stderr, "DEBUG: load_classdriver(%s) (kr:0x%08x)\n", bundlestr, (int)kr);
1281 #endif /* DEBUG */
1282
1283 return kr;
1284 }
1285
1286
1287 /*
1288 * 'unload_classdriver()' - Unload a classdriver.
1289 */
1290
1291 static kern_return_t unload_classdriver(classdriver_t ***classdriver)
1292 {
1293 if (*classdriver != NULL)
1294 {
1295 (**classdriver)->Release(*classdriver);
1296 *classdriver = NULL;
1297 }
1298
1299 return kIOReturnSuccess;
1300 }
1301
1302
1303 /*
1304 * 'load_printerdriver()' - Load vendor's classdriver.
1305 *
1306 * If driverBundlePath is not NULL on return it is the callers responsbility to release it!
1307 */
1308
1309 static kern_return_t load_printerdriver(CFStringRef *driverBundlePath)
1310 {
1311 IOCFPlugInInterface **iodev = NULL;
1312 SInt32 score;
1313 kern_return_t kr;
1314 printer_interface_t intf;
1315 HRESULT res;
1316
1317 kr = IOCreatePlugInInterfaceForService(g.printer_obj, kIOUSBInterfaceUserClientTypeID, kIOCFPlugInInterfaceID, &iodev, &score);
1318 if (kr == kIOReturnSuccess)
1319 {
1320 if ((res = (*iodev)->QueryInterface(iodev, USB_INTERFACE_KIND, (LPVOID *) &intf)) == noErr)
1321 {
1322 *driverBundlePath = IORegistryEntryCreateCFProperty(g.printer_obj, kUSBClassDriverProperty, NULL, kNilOptions);
1323
1324 kr = load_classdriver(*driverBundlePath, intf, &g.classdriver);
1325
1326 if (kr != kIOReturnSuccess)
1327 (*intf)->Release(intf);
1328 }
1329 IODestroyPlugInInterface(iodev);
1330 }
1331 return kr;
1332 }
1333
1334
1335 /*
1336 * 'registry_open()' - Open a connection to the printer.
1337 */
1338
1339 static kern_return_t registry_open(CFStringRef *driverBundlePath)
1340 {
1341 g.bidi_flag = 0; /* 0=unidirectional */
1342
1343 kern_return_t kr = load_printerdriver(driverBundlePath);
1344 if (kr != kIOReturnSuccess)
1345 kr = -2;
1346
1347 if (g.classdriver != NULL)
1348 {
1349 (*g.classdriver)->interfaceNumber = g.interfaceNum;
1350 kr = (*g.classdriver)->Open(g.classdriver, g.location, kUSBPrintingProtocolBidirectional);
1351 if (kr != kIOReturnSuccess || (*g.classdriver)->interface == NULL)
1352 {
1353 kr = (*g.classdriver)->Open(g.classdriver, g.location, kUSBPrintingProtocolUnidirectional);
1354 if (kr == kIOReturnSuccess)
1355 {
1356 if ((*g.classdriver)->interface == NULL)
1357 {
1358 (*g.classdriver)->Close(g.classdriver);
1359 kr = -1;
1360 }
1361 }
1362 }
1363 else
1364 g.bidi_flag = 1; /* 1=bidirectional */
1365 }
1366
1367 if (kr != kIOReturnSuccess)
1368 unload_classdriver(&g.classdriver);
1369
1370 return kr;
1371 }
1372
1373
1374 /*
1375 * 'registry_close()' - Close the connection to the printer.
1376 */
1377
1378 static kern_return_t registry_close()
1379 {
1380 if (g.classdriver != NULL)
1381 (*g.classdriver)->Close(g.classdriver);
1382
1383 unload_classdriver(&g.classdriver);
1384 return kIOReturnSuccess;
1385 }
1386
1387
1388 /*
1389 * 'copy_deviceid()' - Copy the 1284 device id string.
1390 */
1391
1392 static OSStatus copy_deviceid(classdriver_t **classdriver,
1393 CFStringRef *deviceID)
1394 {
1395 CFStringRef devID = NULL,
1396
1397 deviceMake = NULL,
1398 deviceModel = NULL,
1399 deviceSerial = NULL;
1400
1401 OSStatus err = (*classdriver)->GetDeviceID(classdriver, &devID, DEFAULT_TIMEOUT);
1402
1403 copy_deviceinfo(devID, &deviceMake, &deviceModel, &deviceSerial);
1404
1405 if (deviceMake == NULL || deviceModel == NULL || deviceSerial == NULL)
1406 {
1407 IOUSBDeviceDescriptor desc;
1408 iodevice_request_t request;
1409
1410 request.requestType = USBmakebmRequestType(kUSBIn, kUSBStandard, kUSBDevice);
1411 request.request = kUSBRqGetDescriptor;
1412 request.value = (kUSBDeviceDesc << 8) | 0;
1413 request.index = 0;
1414 request.length = sizeof(desc);
1415 request.buffer = &desc;
1416 err = (*classdriver)->DeviceRequest(classdriver, &request, DEFAULT_TIMEOUT);
1417 if (err == kIOReturnSuccess)
1418 {
1419 CFMutableStringRef newDevID = CFStringCreateMutable(NULL, 0);
1420
1421 if (deviceMake == NULL)
1422 {
1423 CFStringRef data = NULL;
1424 err = (*classdriver)->GetString(classdriver, desc.iManufacturer, kUSBLanguageEnglish, DEFAULT_TIMEOUT, &data);
1425 if (data != NULL)
1426 {
1427 CFStringAppendFormat(newDevID, NULL, CFSTR("MFG:%@;"), data);
1428 CFRelease(data);
1429 }
1430 }
1431
1432 if (deviceModel == NULL)
1433 {
1434 CFStringRef data = NULL;
1435 err = (*classdriver)->GetString(classdriver, desc.iProduct, kUSBLanguageEnglish, DEFAULT_TIMEOUT, &data);
1436 if (data != NULL)
1437 {
1438 CFStringAppendFormat(newDevID, NULL, CFSTR("MDL:%@;"), data);
1439 CFRelease(data);
1440 }
1441 }
1442
1443 if (deviceSerial == NULL && desc.iSerialNumber != 0)
1444 {
1445 CFStringRef data = NULL;
1446 err = (*classdriver)->GetString(classdriver, desc.iSerialNumber, kUSBLanguageEnglish, DEFAULT_TIMEOUT, &data);
1447 if (data != NULL)
1448 {
1449 CFStringAppendFormat(newDevID, NULL, CFSTR("SERN:%@;"), data);
1450 CFRelease(data);
1451 }
1452 }
1453
1454 if (devID != NULL)
1455 {
1456 CFStringAppend(newDevID, devID);
1457 CFRelease(devID);
1458 }
1459
1460 *deviceID = newDevID;
1461 }
1462 }
1463 else
1464 {
1465 *deviceID = devID;
1466 }
1467 release_deviceinfo(&deviceMake, &deviceModel, &deviceSerial);
1468
1469 return err;
1470 }
1471
1472
1473 /*
1474 * 'copy_devicestring()' - Copy the 1284 device id string.
1475 */
1476
1477 static void copy_devicestring(io_service_t usbInterface,
1478 CFStringRef *deviceID,
1479 UInt32 *deviceLocation,
1480 UInt8 *interfaceNumber )
1481 {
1482 IOCFPlugInInterface **iodev = NULL;
1483 SInt32 score;
1484 kern_return_t kr;
1485 printer_interface_t intf;
1486 HRESULT res;
1487 classdriver_t **klassDriver = NULL;
1488 CFStringRef driverBundlePath;
1489
1490 if ((kr = IOCreatePlugInInterfaceForService(usbInterface,
1491 kIOUSBInterfaceUserClientTypeID,
1492 kIOCFPlugInInterfaceID,
1493 &iodev, &score)) == kIOReturnSuccess)
1494 {
1495 if ((res = (*iodev)->QueryInterface(iodev, USB_INTERFACE_KIND, (LPVOID *)
1496 &intf)) == noErr)
1497 {
1498 (*intf)->GetLocationID(intf, deviceLocation);
1499 (*intf)->GetInterfaceNumber(intf, interfaceNumber);
1500
1501 driverBundlePath = IORegistryEntryCreateCFProperty(usbInterface,
1502 kUSBClassDriverProperty,
1503 NULL, kNilOptions);
1504
1505 kr = load_classdriver(driverBundlePath, intf, &klassDriver);
1506
1507 if (kr != kIOReturnSuccess && driverBundlePath != NULL)
1508 kr = load_classdriver(NULL, intf, &klassDriver);
1509
1510 if (kr == kIOReturnSuccess && klassDriver != NULL)
1511 kr = copy_deviceid(klassDriver, deviceID);
1512
1513 unload_classdriver(&klassDriver);
1514
1515 if (driverBundlePath != NULL)
1516 CFRelease(driverBundlePath);
1517
1518 /* (*intf)->Release(intf); */
1519 }
1520 IODestroyPlugInInterface(iodev);
1521 }
1522 }
1523
1524
1525 #pragma mark -
1526 /*
1527 * 'copy_value_for_key()' - Copy value string associated with a key.
1528 */
1529
1530 static CFStringRef copy_value_for_key(CFStringRef deviceID,
1531 CFStringRef *keys)
1532 {
1533 CFStringRef value = NULL;
1534 CFArrayRef kvPairs = deviceID != NULL ? CFStringCreateArrayBySeparatingStrings(NULL, deviceID, CFSTR(";")) : NULL;
1535 CFIndex max = kvPairs != NULL ? CFArrayGetCount(kvPairs) : 0;
1536 CFIndex idx = 0;
1537
1538 while (idx < max && value == NULL)
1539 {
1540 CFStringRef kvpair = CFArrayGetValueAtIndex(kvPairs, idx);
1541 CFIndex idxx = 0;
1542 while (keys[idxx] != NULL && value == NULL)
1543 {
1544 CFRange range = CFStringFind(kvpair, keys[idxx], kCFCompareCaseInsensitive);
1545 if (range.length != -1)
1546 {
1547 if (range.location != 0)
1548 {
1549 CFMutableStringRef theString = CFStringCreateMutableCopy(NULL, 0, kvpair);
1550 CFStringTrimWhitespace(theString);
1551 range = CFStringFind(theString, keys[idxx], kCFCompareCaseInsensitive);
1552 if (range.location == 0)
1553 value = CFStringCreateWithSubstring(NULL, theString, CFRangeMake(range.length, CFStringGetLength(theString) - range.length));
1554
1555 CFRelease(theString);
1556 }
1557 else
1558 {
1559 CFStringRef theString = CFStringCreateWithSubstring(NULL, kvpair, CFRangeMake(range.length, CFStringGetLength(kvpair) - range.length));
1560 CFMutableStringRef theString2 = CFStringCreateMutableCopy(NULL, 0, theString);
1561 CFRelease(theString);
1562
1563 CFStringTrimWhitespace(theString2);
1564 value = theString2;
1565 }
1566 }
1567 idxx++;
1568 }
1569 idx++;
1570 }
1571
1572 if (kvPairs != NULL)
1573 CFRelease(kvPairs);
1574 return value;
1575 }
1576
1577
1578 /*
1579 * 'cfstr_create_trim()' - Create CFString and trim whitespace characters.
1580 */
1581
1582 CFStringRef cfstr_create_trim(const char *cstr)
1583 {
1584 CFStringRef cfstr;
1585 CFMutableStringRef cfmutablestr = NULL;
1586
1587 if ((cfstr = CFStringCreateWithCString(NULL, cstr, kCFStringEncodingUTF8)) != NULL)
1588 {
1589 if ((cfmutablestr = CFStringCreateMutableCopy(NULL, 1024, cfstr)) != NULL)
1590 CFStringTrimWhitespace(cfmutablestr);
1591
1592 CFRelease(cfstr);
1593 }
1594 return (CFStringRef) cfmutablestr;
1595 }
1596
1597
1598 #pragma mark -
1599 /*
1600 * 'parse_options()' - Parse URI options.
1601 */
1602
1603 static void parse_options(char *options,
1604 char *serial,
1605 int serial_size,
1606 UInt32 *location,
1607 Boolean *wait_eof)
1608 {
1609 char sep, /* Separator character */
1610 *name, /* Name of option */
1611 *value; /* Value of option */
1612
1613
1614 if (serial)
1615 *serial = '\0';
1616 if (location)
1617 *location = 0;
1618
1619 if (!options)
1620 return;
1621
1622 while (*options)
1623 {
1624 /*
1625 * Get the name...
1626 */
1627
1628 name = options;
1629
1630 while (*options && *options != '=' && *options != '+' && *options != '&')
1631 options ++;
1632
1633 if ((sep = *options) != '\0')
1634 *options++ = '\0';
1635
1636 if (sep == '=')
1637 {
1638 /*
1639 * Get the value...
1640 */
1641
1642 value = options;
1643
1644 while (*options && *options != '+' && *options != '&')
1645 options ++;
1646
1647 if (*options)
1648 *options++ = '\0';
1649 }
1650 else
1651 value = (char *)"";
1652
1653 /*
1654 * Process the option...
1655 */
1656
1657 if (!strcasecmp(name, "waiteof"))
1658 {
1659 if (!strcasecmp(value, "on") ||
1660 !strcasecmp(value, "yes") ||
1661 !strcasecmp(value, "true"))
1662 *wait_eof = true;
1663 else if (!strcasecmp(value, "off") ||
1664 !strcasecmp(value, "no") ||
1665 !strcasecmp(value, "false"))
1666 *wait_eof = false;
1667 else
1668 _cupsLangPrintf(stderr,
1669 _("WARNING: Boolean expected for waiteof option "
1670 "\"%s\"\n"), value);
1671 }
1672 else if (!strcasecmp(name, "serial"))
1673 strlcpy(serial, value, serial_size);
1674 else if (!strcasecmp(name, "location") && location)
1675 *location = strtol(value, NULL, 16);
1676 }
1677 }
1678
1679
1680 /*!
1681 * @function setup_cfLanguage
1682 * @abstract Convert the contents of the CUPS 'LANG' environment
1683 * variable into a one element CF array of languages.
1684 *
1685 * @discussion Each submitted job comes with a natural language. CUPS passes
1686 * that language in an environment variable. We take that language
1687 * and jam it into the AppleLanguages array so that CF will use
1688 * it when reading localized resources. We need to do this before
1689 * any CF code reads and caches the languages array, so this function
1690 * should be called early in main()
1691 */
1692 static void setup_cfLanguage(void)
1693 {
1694 CFStringRef lang[1] = {NULL};
1695 CFArrayRef langArray = NULL;
1696 const char *requestedLang = NULL;
1697
1698 requestedLang = getenv("LANG");
1699 if (requestedLang != NULL)
1700 {
1701 lang[0] = CFStringCreateWithCString(kCFAllocatorDefault, requestedLang, kCFStringEncodingUTF8);
1702 langArray = CFArrayCreate(kCFAllocatorDefault, (const void **)lang, sizeof(lang) / sizeof(lang[0]), &kCFTypeArrayCallBacks);
1703
1704 CFPreferencesSetAppValue(CFSTR("AppleLanguages"), langArray, kCFPreferencesCurrentApplication);
1705 DEBUG_printf((stderr, "DEBUG: usb: AppleLanguages = \"%s\"\n", requestedLang));
1706
1707 CFRelease(lang[0]);
1708 CFRelease(langArray);
1709 }
1710 else
1711 fputs("DEBUG: usb: LANG environment variable missing.\n", stderr);
1712 }
1713
1714 #pragma mark -
1715 #if defined(__i386__)
1716 /*!
1717 * @function run_ppc_backend
1718 *
1719 * @abstract Starts child backend process running as a ppc executable.
1720 *
1721 * @result Never returns; always calls exit().
1722 *
1723 * @discussion
1724 */
1725 static void run_ppc_backend(int argc,
1726 char *argv[],
1727 int fd)
1728 {
1729 int i;
1730 int exitstatus = 0;
1731 int childstatus;
1732 pid_t waitpid_status;
1733 char *my_argv[32];
1734 char *usb_ppc_status;
1735
1736 /*
1737 * If we're running as i386 and couldn't load the class driver (because they'it's
1738 * ppc-only) then try to re-exec ourselves in ppc mode to try again. If we don't have
1739 * a ppc architecture we may be running i386 again so guard against this by setting
1740 * and testing an environment variable...
1741 */
1742 usb_ppc_status = getenv("USB_PPC_STATUS");
1743
1744 if (usb_ppc_status == NULL)
1745 {
1746 /*
1747 * Setup a SIGTERM handler then block it before forking...
1748 */
1749
1750 struct sigaction action; /* POSIX signal action */
1751 sigset_t newmask, /* New signal mask */
1752 oldmask; /* Old signal mask */
1753
1754 memset(&action, 0, sizeof(action));
1755 sigaddset(&action.sa_mask, SIGTERM);
1756 action.sa_handler = sigterm_handler;
1757 sigaction(SIGTERM, &action, NULL);
1758
1759 sigemptyset(&newmask);
1760 sigaddset(&newmask, SIGTERM);
1761 sigprocmask(SIG_BLOCK, &newmask, &oldmask);
1762
1763 if ((child_pid = fork()) == 0)
1764 {
1765 /*
1766 * Child comes here...
1767 */
1768
1769 setenv("USB_PPC_STATUS", "1", false);
1770
1771 /*
1772 * Unblock signals before doing the exec...
1773 */
1774
1775 memset(&action, 0, sizeof(action));
1776 sigemptyset(&action.sa_mask);
1777 action.sa_handler = SIG_DFL;
1778 sigaction(SIGTERM, &action, NULL);
1779
1780 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1781
1782 /*
1783 * Tell the kernel the next exec call should favor the ppc architecture...
1784 */
1785
1786 int mib[] = { CTL_KERN, KERN_AFFINITY, 1, 1 };
1787 int namelen = 4;
1788 sysctl(mib, namelen, NULL, NULL, NULL, 0);
1789
1790 /*
1791 * Set up the arguments and call exec...
1792 */
1793
1794 for (i = 0; i < argc && i < (sizeof(my_argv)/sizeof(my_argv[0])) - 1; i++)
1795 my_argv[i] = argv[i];
1796
1797 my_argv[i] = NULL;
1798
1799 execv("/usr/libexec/cups/backend/usb", my_argv);
1800
1801 perror("/usr/libexec/cups/backend/usb");
1802 exit(errno);
1803 }
1804 else if (child_pid < 0)
1805 {
1806 /*
1807 * Error - couldn't fork a new process!
1808 */
1809
1810 perror("fork");
1811 exit(errno);
1812 }
1813
1814 /*
1815 * Unblock signals...
1816 */
1817
1818 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1819
1820 /*
1821 * Close the fds we won't be using then wait for the child backend to exit.
1822 */
1823
1824 close(fd);
1825 close(1);
1826
1827 fprintf(stderr, "DEBUG: Started usb(ppc) backend (PID %d)\n", (int)child_pid);
1828
1829 while ((waitpid_status = waitpid(child_pid, &childstatus, 0)) == (pid_t)-1 && errno == EINTR)
1830 usleep(1000);
1831
1832 if (WIFSIGNALED(childstatus))
1833 {
1834 exitstatus = WTERMSIG(childstatus);
1835 fprintf(stderr, "DEBUG: usb(ppc) backend %d crashed on signal %d!\n", child_pid, exitstatus);
1836 }
1837 else
1838 {
1839 if ((exitstatus = WEXITSTATUS(childstatus)) != 0)
1840 fprintf(stderr, "DEBUG: usb(ppc) backend %d stopped with status %d!\n", child_pid, exitstatus);
1841 else
1842 fprintf(stderr, "DEBUG: PID %d exited with no errors\n", child_pid);
1843 }
1844 }
1845 else
1846 {
1847 fputs("DEBUG: usb child running i386 again\n", stderr);
1848 exitstatus = ENOENT;
1849 }
1850
1851 exit(exitstatus);
1852 }
1853
1854 /*
1855 * 'sigterm_handler()' - SIGTERM handler.
1856 */
1857
1858 static void sigterm_handler(int sig)
1859 {
1860 /* If we started a child process pass the signal on to it...
1861 */
1862 if (child_pid)
1863 kill(child_pid, sig);
1864
1865 exit(1);
1866 }
1867
1868 #endif /* __i386__ */
1869
1870
1871 #ifdef PARSE_PS_ERRORS
1872 /*
1873 * 'next_line()' - Find the next line in a buffer.
1874 */
1875
1876 static const char *next_line (const char *buffer)
1877 {
1878 const char *cptr, *lptr = NULL;
1879
1880 for (cptr = buffer; *cptr && lptr == NULL; cptr++)
1881 if (*cptr == '\n' || *cptr == '\r')
1882 lptr = cptr;
1883 return lptr;
1884 }
1885
1886
1887 /*
1888 * 'parse_pserror()' - Scan the backchannel data for postscript errors.
1889 */
1890
1891 static void parse_pserror(char *sockBuffer,
1892 int len)
1893 {
1894 static char gErrorBuffer[1024] = "";
1895 static char *gErrorBufferPtr = gErrorBuffer;
1896 static char *gErrorBufferEndPtr = gErrorBuffer + sizeof(gErrorBuffer);
1897
1898 char *pCommentBegin, *pCommentEnd, *pLineEnd;
1899 char *logLevel;
1900 char logstr[1024];
1901 int logstrlen;
1902
1903 if (gErrorBufferPtr + len > gErrorBufferEndPtr - 1)
1904 gErrorBufferPtr = gErrorBuffer;
1905 if (len > sizeof(gErrorBuffer) - 1)
1906 len = sizeof(gErrorBuffer) - 1;
1907
1908 memcpy(gErrorBufferPtr, (const void *)sockBuffer, len);
1909 gErrorBufferPtr += len;
1910 *(gErrorBufferPtr + 1) = '\0';
1911
1912 pLineEnd = (char *)next_line((const char *)gErrorBuffer);
1913 while (pLineEnd != NULL)
1914 {
1915 *pLineEnd++ = '\0';
1916
1917 pCommentBegin = strstr(gErrorBuffer,"%%[");
1918 pCommentEnd = strstr(gErrorBuffer, "]%%");
1919 if (pCommentBegin != gErrorBuffer && pCommentEnd != NULL)
1920 {
1921 pCommentEnd += 3; /* Skip past "]%%" */
1922 *pCommentEnd = '\0'; /* There's always room for the nul */
1923
1924 if (strncasecmp(pCommentBegin, "%%[ Error:", 10) == 0)
1925 logLevel = "DEBUG";
1926 else if (strncasecmp(pCommentBegin, "%%[ Flushing", 12) == 0)
1927 logLevel = "DEBUG";
1928 else
1929 logLevel = "INFO";
1930
1931 if ((logstrlen = snprintf(logstr, sizeof(logstr), "%s: %s\n", logLevel, pCommentBegin)) >= sizeof(logstr))
1932 {
1933 /* If the string was trucnated make sure it has a linefeed before the nul */
1934 logstrlen = sizeof(logstr) - 1;
1935 logstr[logstrlen - 1] = '\n';
1936 }
1937 write(STDERR_FILENO, logstr, logstrlen);
1938 }
1939
1940 /* move everything over... */
1941 strcpy(gErrorBuffer, pLineEnd);
1942 gErrorBufferPtr = gErrorBuffer;
1943 pLineEnd = (char *)next_line((const char *)gErrorBuffer);
1944 }
1945 }
1946 #endif /* PARSE_PS_ERRORS */
1947
1948
1949 /*
1950 * 'soft_reset()' - Send a soft reset to the device.
1951 */
1952
1953 static void soft_reset()
1954 {
1955 fd_set input_set; /* Input set for select() */
1956 struct timeval stimeout; /* Timeout for select() */
1957 char buffer[2048]; /* Buffer */
1958 struct timespec cond_timeout; /* pthread condition timeout */
1959
1960 /*
1961 * Send an abort once a second until the I/O lock is released by the main thread...
1962 */
1963
1964 pthread_mutex_lock(&g.readwrite_lock_mutex);
1965 while (g.readwrite_lock)
1966 {
1967 (*g.classdriver)->Abort(g.classdriver);
1968
1969 cond_timeout.tv_sec = time(NULL) + 1;
1970 cond_timeout.tv_nsec = 0;
1971
1972 pthread_cond_timedwait(&g.readwrite_lock_cond, &g.readwrite_lock_mutex, &cond_timeout);
1973 }
1974
1975 g.readwrite_lock = 1;
1976 pthread_mutex_unlock(&g.readwrite_lock_mutex);
1977
1978 /*
1979 * Flush bytes waiting on print_fd...
1980 */
1981
1982 g.print_bytes = 0;
1983
1984 FD_ZERO(&input_set);
1985 FD_SET(g.print_fd, &input_set);
1986
1987 stimeout.tv_sec = 0;
1988 stimeout.tv_usec = 0;
1989
1990 while (select(g.print_fd+1, &input_set, NULL, NULL, &stimeout) > 0)
1991 if (read(g.print_fd, buffer, sizeof(buffer)) <= 0)
1992 break;
1993
1994 /*
1995 * Send the reset...
1996 */
1997
1998 (*g.classdriver)->SoftReset(g.classdriver, DEFAULT_TIMEOUT);
1999
2000 /*
2001 * Release the I/O lock...
2002 */
2003
2004 pthread_mutex_lock(&g.readwrite_lock_mutex);
2005 g.readwrite_lock = 0;
2006 pthread_cond_signal(&g.readwrite_lock_cond);
2007 pthread_mutex_unlock(&g.readwrite_lock_mutex);
2008 }
2009
2010
2011 /*
2012 * 'get_device_id()' - Return IEEE-1284 device ID.
2013 */
2014
2015 static void get_device_id(cups_sc_status_t *status,
2016 char *data,
2017 int *datalen)
2018 {
2019 UInt32 deviceLocation = 0;
2020 UInt8 interfaceNum = 0;
2021 CFStringRef deviceIDString = NULL;
2022
2023 /* GetDeviceID */
2024 copy_devicestring(g.printer_obj, &deviceIDString, &deviceLocation, &interfaceNum);
2025 if (deviceIDString)
2026 {
2027 CFStringGetCString(deviceIDString, data, *datalen, kCFStringEncodingUTF8);
2028 *datalen = strlen(data);
2029 CFRelease(deviceIDString);
2030 }
2031 *status = CUPS_SC_STATUS_OK;
2032 }
2033
2034
2035 /*
2036 * End of "$Id: usb-darwin.c 6993 2007-09-28 18:05:28Z mike $".
2037 */