]> git.ipfire.org Git - thirdparty/cups.git/blame - backend/usb-darwin.c
Merge changes from 1.4svn-r7067.
[thirdparty/cups.git] / backend / usb-darwin.c
CommitLineData
ef416fc2 1/*
2e4ff8af 2* "$Id: usb-darwin.c 6993 2007-09-28 18:05:28Z mike $"
09a101d6 3*
db1f069b 4* Copyright � 2005-2007 Apple Inc. All rights reserved.
09a101d6 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*/
ef416fc2 74
75/*
09a101d6 76 * Include necessary headers.
ef416fc2 77 */
09a101d6 78
ef416fc2 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>
e53920b9 86#include <sys/sysctl.h>
87#include <libgen.h>
09a101d6 88#include <mach/mach.h>
e53920b9 89#include <mach/mach_error.h>
90#include <mach/mach_time.h>
91#include <cups/debug.h>
f7deaa1a 92#include <cups/sidechannel.h>
323c5de1 93#include <cups/i18n.h>
ef416fc2 94
e53920b9 95#include <CoreFoundation/CoreFoundation.h>
96#include <IOKit/usb/IOUSBLib.h>
97#include <IOKit/IOCFPlugIn.h>
ef416fc2 98
e53920b9 99#include <pthread.h>
ef416fc2 100
f7deaa1a 101
09a101d6 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
ef416fc2 105 */
09a101d6 106#define WAIT_EOF_DELAY 7
bc44d920 107#define WAIT_SIDE_DELAY 3
7dfedb92 108#define DEFAULT_TIMEOUT 5000L
ef416fc2 109
e53920b9 110#define USB_INTERFACE_KIND CFUUIDGetUUIDBytes(kIOUSBInterfaceInterfaceID190)
111#define kUSBLanguageEnglish 0x409
ef416fc2 112
09a101d6 113#define PRINTER_POLLING_INTERVAL 5 /* seconds */
114#define INITIAL_LOG_INTERVAL PRINTER_POLLING_INTERVAL
115#define SUBSEQUENT_LOG_INTERVAL 3 * INITIAL_LOG_INTERVAL
ef416fc2 116
09a101d6 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)
ef416fc2 119
120#define kUSBClassDriverProperty CFSTR("USB Printing Class")
ef416fc2 121
e53920b9 122#define kUSBGenericTOPrinterClassDriver CFSTR("/System/Library/Printers/Libraries/USBGenericTOPrintingClass.plugin")
123#define kUSBPrinterClassDeviceNotOpen -9664 /*kPMInvalidIOMContext*/
ef416fc2 124
ef416fc2 125
e53920b9 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
134typedef IOUSBInterfaceInterface190 **printer_interface_t;
ef416fc2 135
09a101d6 136typedef struct iodevice_request_s /**** Device request ****/
ef416fc2 137{
09a101d6 138 UInt8 requestType;
e53920b9 139 UInt8 request;
140 UInt16 value;
141 UInt16 index;
142 UInt16 length;
09a101d6 143 void *buffer;
e53920b9 144} iodevice_request_t;
145
09a101d6 146typedef union /**** Centronics status byte ****/
147{
e53920b9 148 char b;
09a101d6 149 struct
150 {
e53920b9 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
09a101d6 159typedef struct classdriver_s /**** g.classdriver context ****/
ef416fc2 160{
161 IUNKNOWN_C_GUTS;
e53920b9 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 */
ef416fc2 172
e53920b9 173 /* general class requests */
09a101d6 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);
ef416fc2 176
e53920b9 177 /* standard printer class requests */
09a101d6 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);
ef416fc2 181
e53920b9 182 /* standard bulk device requests */
09a101d6 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);
ef416fc2 185
e53920b9 186 /* interface requests */
09a101d6 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);
ef416fc2 190
e53920b9 191 /* initialize and terminate */
09a101d6 192 kern_return_t (*Initialize)(struct classdriver_s **printer, struct classdriver_s **baseclass);
193 kern_return_t (*Terminate)(struct classdriver_s **printer);
ef416fc2 194
09a101d6 195} classdriver_t;
ef416fc2 196
e53920b9 197typedef Boolean (*iterator_callback_t)(void *refcon, io_service_t obj);
ef416fc2 198
09a101d6 199typedef struct iterator_reference_s /**** Iterator reference data */
200{
e53920b9 201 iterator_callback_t callback;
202 void *userdata;
203 Boolean keepRunning;
204} iterator_reference_t;
ef416fc2 205
09a101d6 206typedef 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;
ef416fc2 215
09a101d6 216 pthread_mutex_t readwrite_lock_mutex;
217 pthread_cond_t readwrite_lock_cond;
218 int readwrite_lock;
ef416fc2 219
e53920b9 220 CFStringRef make;
221 CFStringRef model;
222 CFStringRef serial;
e53920b9 223 UInt32 location;
bc44d920 224 UInt8 interfaceNum;
09a101d6 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 */
bc44d920 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;
09a101d6 239} globals_t;
240
241
242/*
243 * Globals...
244 */
245
246globals_t g = { 0 }; /* Globals */
ef416fc2 247
ef416fc2 248
e53920b9 249/*
250 * Local functions...
251 */
ef416fc2 252
09a101d6 253static Boolean find_device_cb(void *refcon, io_service_t obj);
254static Boolean list_device_cb(void *refcon, io_service_t obj);
255static CFStringRef cfstr_create_trim(const char *cstr);
256static CFStringRef copy_value_for_key(CFStringRef deviceID, CFStringRef *keys);
257static kern_return_t load_classdriver(CFStringRef driverPath, printer_interface_t intf, classdriver_t ***printerDriver);
258static kern_return_t load_printerdriver(CFStringRef *driverBundlePath);
259static kern_return_t registry_close();
260static kern_return_t registry_open(CFStringRef *driverBundlePath);
261static kern_return_t unload_classdriver();
262static OSStatus copy_deviceid(classdriver_t **printer, CFStringRef *deviceID);
263static void *read_thread(void *reference);
264static void *sidechannel_thread(void *reference);
e53920b9 265static void copy_deviceinfo(CFStringRef deviceIDString, CFStringRef *make, CFStringRef *model, CFStringRef *serial);
bc44d920 266static void copy_devicestring(io_service_t usbInterface, CFStringRef *deviceID, UInt32 *deviceLocation, UInt8 *interfaceNum);
09a101d6 267static void device_added(void *userdata, io_iterator_t iterator);
268static void get_device_id(cups_sc_status_t *status, char *data, int *datalen);
269static void iterate_printers(iterator_callback_t callBack, void *userdata);
db1f069b 270static void parse_options(char *options, char *serial, int serial_size, UInt32 *location, Boolean *wait_eof);
09a101d6 271static void release_deviceinfo(CFStringRef *make, CFStringRef *model, CFStringRef *serial);
e53920b9 272static void setup_cfLanguage(void);
09a101d6 273static void soft_reset();
274static void status_timer_cb(CFRunLoopTimerRef timer, void *info);
e53920b9 275
276#if defined(__i386__)
277static pid_t child_pid; /* Child PID */
278static void run_ppc_backend(int argc, char *argv[], int fd); /* Starts child backend process running as a ppc executable */
279static void sigterm_handler(int sig); /* SIGTERM handler */
280#endif /* __i386__ */
ef416fc2 281
e53920b9 282#ifdef PARSE_PS_ERRORS
283static const char *next_line (const char *buffer);
284static void parse_pserror (char *sockBuffer, int len);
285#endif /* PARSE_PS_ERRORS */
ef416fc2 286
e53920b9 287#pragma mark -
ef416fc2 288
e53920b9 289/*
290 * 'list_devices()' - List all USB devices.
291 */
ef416fc2 292
e53920b9 293void list_devices()
ef416fc2 294{
09a101d6 295 iterate_printers(list_device_cb, NULL);
ef416fc2 296}
297
ef416fc2 298
e53920b9 299/*
300 * 'print_device()' - Print a file to a USB device.
301 */
ef416fc2 302
e53920b9 303int /* O - Exit status */
304print_device(const char *uri, /* I - Device URI */
305 const char *hostname, /* I - Hostname/manufacturer */
306 const char *resource, /* I - Resource/modelname */
db1f069b 307 char *options, /* I - Device options/serial number */
09a101d6 308 int print_fd, /* I - File descriptor to print */
e53920b9 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 */
ef416fc2 312{
09a101d6 313 char serial[1024]; /* Serial number buffer */
314 OSStatus status; /* Function results */
315 pthread_t read_thread_id, /* Read thread */
db1f069b
MS
316 sidechannel_thread_id;/* Side-channel thread */
317 int sidechannel_started = 0;/* Was the side-channel thread started? */
09a101d6 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 */
e53920b9 330
db1f069b 331
e53920b9 332 setup_cfLanguage();
09a101d6 333
76cd9e37 334 parse_options(options, serial, sizeof(serial), &location, &g.wait_eof);
e53920b9 335
336 if (resource[0] == '/')
337 resource++;
338
09a101d6 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;
e53920b9 344
7dfedb92
MS
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
e53920b9 352 fputs("STATE: +connecting-to-device\n", stderr);
353
09a101d6 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;
ef416fc2 364 }
ef416fc2 365
c0e1af83 366 fprintf(stderr, "DEBUG: Looking for '%s %s'\n", hostname, resource);
09a101d6 367
368 iterate_printers(find_device_cb, NULL);
e53920b9 369
c0e1af83 370 fputs("DEBUG: Opening connection\n", stderr);
411affcf 371
372 driverBundlePath = NULL;
09a101d6 373
374 status = registry_open(&driverBundlePath);
375
e53920b9 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 */
09a101d6 381 if (status == -2)
382 {
383 run_ppc_backend(argc, argv, print_fd);
e53920b9 384 /* Never returns here */
ef416fc2 385 }
e53920b9 386#endif /* __i386__ */
09a101d6 387
388 if (status == -2)
389 {
411affcf 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
09a101d6 395 if (driverBundlePath == NULL || !CFStringGetCString(driverBundlePath, print_buffer, sizeof(print_buffer), kCFStringEncodingUTF8))
396 strlcpy(print_buffer, "USB class driver", sizeof(print_buffer));
411affcf 397
c0e1af83 398 fputs("STATE: +apple-missing-usbclassdriver-error\n", stderr);
db1f069b 399 _cupsLangPrintf(stderr, _("FATAL: Could not load %s\n"), print_buffer);
411affcf 400
401 if (driverBundlePath)
402 CFRelease(driverBundlePath);
403
404 return CUPS_BACKEND_STOP;
405 }
406
407 if (driverBundlePath)
408 CFRelease(driverBundlePath);
e53920b9 409
09a101d6 410 if (status != noErr)
411 {
412 sleep(PRINTER_POLLING_INTERVAL);
e53920b9 413 countdown -= PRINTER_POLLING_INTERVAL;
09a101d6 414 if (countdown <= 0)
415 {
db1f069b
MS
416 _cupsLangPrintf(stderr, _("INFO: Printer busy (status:0x%08x)\n"),
417 (int)status);
e53920b9 418 countdown = SUBSEQUENT_LOG_INTERVAL; /* subsequent log entries, every 15 seconds */
419 }
420 }
421 } while (status != noErr);
ef416fc2 422
e53920b9 423 fputs("STATE: -connecting-to-device\n", stderr);
ef416fc2 424
e53920b9 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 */
ef416fc2 431
09a101d6 432 if (!print_fd)
433 {
bc44d920 434 struct sigaction action; /* POSIX signal action */
435
436
e53920b9 437 memset(&action, 0, sizeof(action));
ef416fc2 438
e53920b9 439 sigemptyset(&action.sa_mask);
440 action.sa_handler = SIG_IGN;
441 sigaction(SIGTERM, &action, NULL);
e53920b9 442 }
ef416fc2 443
09a101d6 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 */
ef416fc2 448
09a101d6 449 pthread_mutex_init(&g.readwrite_lock_mutex, NULL);
450 pthread_cond_init(&g.readwrite_lock_cond, NULL);
451 g.readwrite_lock = 1;
f7deaa1a 452
09a101d6 453 FD_ZERO(&input_set);
454 FD_SET(CUPS_SC_FD, &input_set);
ef416fc2 455
09a101d6 456 stimeout.tv_sec = 0;
457 stimeout.tv_usec = 0;
f7deaa1a 458
09a101d6 459 if ((select(CUPS_SC_FD+1, &input_set, NULL, NULL, &stimeout)) >= 0)
460 {
bc44d920 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
09a101d6 467 if (pthread_create(&sidechannel_thread_id, NULL, sidechannel_thread, NULL))
468 {
db1f069b 469 _cupsLangPuts(stderr, _("WARNING: Couldn't create side channel\n"));
09a101d6 470 return CUPS_BACKEND_STOP;
471 }
db1f069b
MS
472
473 sidechannel_started = 1;
09a101d6 474 }
f7deaa1a 475
09a101d6 476 /*
477 * Get the read thread going...
478 */
f7deaa1a 479
09a101d6 480 g.read_thread_stop = 0;
481 g.read_thread_done = 0;
f7deaa1a 482
09a101d6 483 pthread_cond_init(&g.read_thread_cond, NULL);
484 pthread_mutex_init(&g.read_thread_mutex, NULL);
f7deaa1a 485
09a101d6 486 if (pthread_create(&read_thread_id, NULL, read_thread, NULL))
487 {
db1f069b 488 _cupsLangPuts(stderr, _("WARNING: Couldn't create read channel\n"));
09a101d6 489 return CUPS_BACKEND_STOP;
e53920b9 490 }
ef416fc2 491
09a101d6 492 /*
493 * The main thread sends the print file...
494 */
f7deaa1a 495
09a101d6 496 g.drain_output = 0;
497 g.print_bytes = 0;
498 total_bytes = 0;
499 print_ptr = print_buffer;
ef416fc2 500
09a101d6 501 while (status == noErr && copies-- > 0)
502 {
db1f069b 503 _cupsLangPuts(stderr, _("INFO: Sending data\n"));
757d2cad 504
09a101d6 505 if (print_fd != STDIN_FILENO)
506 {
e53920b9 507 fputs("PAGE: 1 1", stderr);
09a101d6 508 lseek(print_fd, 0, SEEK_SET);
ef416fc2 509 }
510
09a101d6 511 while (status == noErr)
512 {
513 FD_ZERO(&input_set);
e53920b9 514
09a101d6 515 if (!g.print_bytes)
516 FD_SET(print_fd, &input_set);
f7deaa1a 517
09a101d6 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 {
db1f069b 571 _cupsLangPrintf(stderr, _("ERROR: select() returned %d\n"), (int)errno);
09a101d6 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;
f7deaa1a 608 }
09a101d6 609 else if (g.print_bytes == 0)
610 {
611 /*
612 * End of file, break out of the loop...
613 */
f7deaa1a 614
e53920b9 615 break;
ef416fc2 616 }
617
09a101d6 618 print_ptr = print_buffer;
619
620 fprintf(stderr, "DEBUG: Read %d bytes of print data...\n",
621 (int)g.print_bytes);
e53920b9 622 }
ef416fc2 623
09a101d6 624 if (g.print_bytes)
625 {
626 bytes = g.print_bytes;
ef416fc2 627
09a101d6 628 status = (*g.classdriver)->WritePipe(g.classdriver, (UInt8*)print_ptr, &bytes, 0);
f7deaa1a 629
09a101d6 630 /*
631 * Ignore timeout errors...
632 */
e53920b9 633
09a101d6 634 if (status == kIOUSBTransactionTimeout)
635 {
636 status = 0;
637 bytes = 0;
638 }
ef416fc2 639
09a101d6 640 if (status || bytes < 0)
641 {
642 /*
643 * Write error - bail if we don't see an error we can retry...
644 */
f7deaa1a 645
09a101d6 646 OSStatus err = (*g.classdriver)->Abort(g.classdriver);
db1f069b
MS
647 _cupsLangPrintf(stderr, _("ERROR: %ld: (canceled:%ld)\n"),
648 (long)status, (long)err);
bc44d920 649 status = CUPS_BACKEND_STOP;
650 break;
09a101d6 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;
f7deaa1a 658 }
09a101d6 659
660 if (print_fd != 0 && status == noErr)
661 fprintf(stderr, "DEBUG: Sending print file, %lld bytes...\n",
662 (off_t)total_bytes);
f7deaa1a 663 }
f7deaa1a 664 }
665
09a101d6 666 fprintf(stderr, "DEBUG: Sent %lld bytes...\n", (off_t)total_bytes);
f7deaa1a 667
09a101d6 668 /*
669 * Wait for the side channel thread to exit...
670 */
671
db1f069b 672 if (sidechannel_started)
bc44d920 673 {
db1f069b
MS
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 */
bc44d920 687
db1f069b
MS
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);
09a101d6 702
db1f069b
MS
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 }
bc44d920 708
09a101d6 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
db1f069b 720 * we are not signaled in that time then force the thread to exit.
09a101d6 721 */
722
723 pthread_mutex_lock(&g.read_thread_mutex);
ef416fc2 724
09a101d6 725 if (!g.read_thread_done)
726 {
727 cond_timeout.tv_sec = time(NULL) + WAIT_EOF_DELAY;
728 cond_timeout.tv_nsec = 0;
ef416fc2 729
bc44d920 730 if (pthread_cond_timedwait(&g.read_thread_cond, &g.read_thread_mutex,
731 &cond_timeout) != 0)
db1f069b
MS
732 {
733 /*
734 * Force the read thread to exit...
735 */
736
737 pthread_kill(read_thread_id, SIGTERM);
738 }
09a101d6 739 }
740 pthread_mutex_unlock(&g.read_thread_mutex);
ef416fc2 741
09a101d6 742 pthread_join(read_thread_id, NULL); /* wait for the read thread to return */
e53920b9 743
09a101d6 744 pthread_cond_destroy(&g.read_thread_cond);
745 pthread_mutex_destroy(&g.read_thread_mutex);
f7deaa1a 746
09a101d6 747 /*
748 * Close the connection and input file and general clean up...
749 */
f7deaa1a 750
09a101d6 751 registry_close();
f7deaa1a 752
09a101d6 753 if (print_fd != STDIN_FILENO)
754 close(print_fd);
f7deaa1a 755
09a101d6 756 if (g.make != NULL)
757 CFRelease(g.make);
e53920b9 758
09a101d6 759 if (g.model != NULL)
760 CFRelease(g.model);
e53920b9 761
09a101d6 762 if (g.serial != NULL)
763 CFRelease(g.serial);
e53920b9 764
09a101d6 765 if (g.printer_obj != 0x0)
766 IOObjectRelease(g.printer_obj);
e53920b9 767
768 return status;
ef416fc2 769}
770
09a101d6 771
772/*
773 * 'read_thread()' - Thread to read the backchannel data on.
774 */
775
776static 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
843static void*
844sidechannel_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
bc44d920 851
852 do
09a101d6 853 {
854 datalen = sizeof(data);
855
856 if (cupsSideChannelRead(&command, &status, data, &datalen, 1.0))
bc44d920 857 continue;
09a101d6 858
859 switch (command)
860 {
861 case CUPS_SC_CMD_SOFT_RESET: /* Do a soft reset */
db1f069b
MS
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 }
09a101d6 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 }
bc44d920 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
09a101d6 907 return NULL;
908}
909
910
e53920b9 911#pragma mark -
ef416fc2 912/*
09a101d6 913 * 'iterate_printers()' - Iterate over all the printers.
914 */
915
916static 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.
e53920b9 961 */
962
09a101d6 963static 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
991static Boolean list_device_cb(void *refcon,
992 io_service_t obj)
ef416fc2 993{
e53920b9 994 Boolean keepRunning = (obj != 0x0);
995
09a101d6 996 if (keepRunning)
997 {
e53920b9 998 CFStringRef deviceIDString = NULL;
999 UInt32 deviceLocation = 0;
bc44d920 1000 UInt8 interfaceNum = 0;
e53920b9 1001
bc44d920 1002 copy_devicestring(obj, &deviceIDString, &deviceLocation, &interfaceNum);
09a101d6 1003 if (deviceIDString != NULL)
1004 {
e53920b9 1005 CFStringRef make = NULL, model = NULL, serial = NULL;
f7deaa1a 1006 char uristr[1024], makestr[1024], modelstr[1024], serialstr[1024];
1007 char optionsstr[1024], idstr[1024];
e53920b9 1008
1009 copy_deviceinfo(deviceIDString, &make, &model, &serial);
1010
1011 modelstr[0] = '/';
1012
f7deaa1a 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");
e53920b9 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)
09a101d6 1035 snprintf(optionsstr, sizeof(optionsstr), "?location=%x", (unsigned)deviceLocation);
e53920b9 1036
1037 httpAssembleURI(HTTP_URI_CODING_ALL, uristr, sizeof(uristr), "usb", NULL, makestr, 0, modelstr);
1038 strncat(uristr, optionsstr, sizeof(uristr));
1039
b94498cf 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
a74454a7 1050 printf("direct %s \"%s %s\" \"%s %s USB\" \"%s\"\n", uristr, makestr,
1051 &modelstr[1], makestr, &modelstr[1], idstr);
e53920b9 1052
1053 release_deviceinfo(&make, &model, &serial);
1054 CFRelease(deviceIDString);
ef416fc2 1055 }
e53920b9 1056 }
1057
1058 return keepRunning;
ef416fc2 1059}
1060
1061
e53920b9 1062/*
09a101d6 1063 * 'find_device_cb()' - print_device iterator callback.
e53920b9 1064 */
ef416fc2 1065
09a101d6 1066static Boolean find_device_cb(void *refcon,
1067 io_service_t obj)
e53920b9 1068{
1069 Boolean keepLooking = true;
1070
09a101d6 1071 if (obj != 0x0)
1072 {
e53920b9 1073 CFStringRef idString = NULL;
1074 UInt32 location = -1;
bc44d920 1075 UInt8 interfaceNum = 0;
e53920b9 1076
bc44d920 1077 copy_devicestring(obj, &idString, &location, &interfaceNum);
09a101d6 1078 if (idString != NULL)
1079 {
e53920b9 1080 CFStringRef make = NULL, model = NULL, serial = NULL;
1081
1082 copy_deviceinfo(idString, &make, &model, &serial);
7dfedb92 1083 if (make && CFStringCompare(make, g.make, kCFCompareCaseInsensitive) == kCFCompareEqualTo)
09a101d6 1084 {
7dfedb92 1085 if (model && CFStringCompare(model, g.model, kCFCompareCaseInsensitive) == kCFCompareEqualTo)
09a101d6 1086 {
1087 if (g.serial != NULL && CFStringGetLength(g.serial) > 0)
1088 {
1089 if (serial != NULL && CFStringCompare(serial, g.serial, kCFCompareCaseInsensitive) == kCFCompareEqualTo)
1090 {
e53920b9 1091 IOObjectRetain(obj);
09a101d6 1092 g.printer_obj = obj;
e53920b9 1093 keepLooking = false;
ef416fc2 1094 }
e53920b9 1095 }
09a101d6 1096 else
1097 {
1098 if (g.printer_obj != 0)
1099 IOObjectRelease(g.printer_obj);
1100
1101 g.printer_obj = obj;
e53920b9 1102 IOObjectRetain(obj);
1103
09a101d6 1104 if (g.location == 0 || g.location == location)
e53920b9 1105 keepLooking = false;
e53920b9 1106 }
bc44d920 1107 if ( !keepLooking )
1108 g.interfaceNum = interfaceNum;
ef416fc2 1109 }
e53920b9 1110 }
1111
1112 release_deviceinfo(&make, &model, &serial);
1113 CFRelease(idString);
ef416fc2 1114 }
e53920b9 1115 }
09a101d6 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 {
7594b224 1125 CFRunLoopAddTimer(CFRunLoopGetCurrent(), timer, kCFRunLoopDefaultMode);
09a101d6 1126 g.status_timer = timer;
7594b224 1127 }
1128 }
1129 }
09a101d6 1130
1131 if (!keepLooking && g.status_timer != NULL)
1132 {
7594b224 1133 fputs("STATE: -offline-error\n", stderr);
db1f069b 1134 _cupsLangPuts(stderr, _("INFO: Printer is now on-line.\n"));
09a101d6 1135 CFRunLoopRemoveTimer(CFRunLoopGetCurrent(), g.status_timer, kCFRunLoopDefaultMode);
1136 CFRelease(g.status_timer);
1137 g.status_timer = NULL;
e53920b9 1138 }
ef416fc2 1139
e53920b9 1140 return keepLooking;
ef416fc2 1141}
1142
1143
e53920b9 1144/*
09a101d6 1145 * 'status_timer_cb()' - Status timer callback.
ef416fc2 1146 */
e53920b9 1147
09a101d6 1148static void status_timer_cb(CFRunLoopTimerRef timer,
1149 void *info)
ef416fc2 1150{
09a101d6 1151 fputs("STATE: +offline-error\n", stderr);
db1f069b 1152 _cupsLangPuts(stderr, _("INFO: Printer is currently off-line.\n"));
ef416fc2 1153}
1154
ef416fc2 1155
e53920b9 1156#pragma mark -
1157/*
1158 * 'copy_deviceinfo()' - Copy strings from the 1284 device ID.
1159 */
ef416fc2 1160
09a101d6 1161static void copy_deviceinfo(CFStringRef deviceIDString,
1162 CFStringRef *make,
1163 CFStringRef *model,
1164 CFStringRef *serial)
1165{
e53920b9 1166 CFStringRef modelKeys[] = { CFSTR("MDL:"), CFSTR("MODEL:"), NULL };
1167 CFStringRef makeKeys[] = { CFSTR("MFG:"), CFSTR("MANUFACTURER:"), NULL };
1168 CFStringRef serialKeys[] = { CFSTR("SN:"), CFSTR("SERN:"), NULL };
1169
1170 if (make != NULL)
1171 *make = copy_value_for_key(deviceIDString, makeKeys);
1172 if (model != NULL)
1173 *model = copy_value_for_key(deviceIDString, modelKeys);
1174 if (serial != NULL)
1175 *serial = copy_value_for_key(deviceIDString, serialKeys);
1176}
ef416fc2 1177
ef416fc2 1178
e53920b9 1179/*
1180 * 'release_deviceinfo()' - Release deviceinfo strings.
1181 */
ef416fc2 1182
09a101d6 1183static void release_deviceinfo(CFStringRef *make,
1184 CFStringRef *model,
1185 CFStringRef *serial)
ef416fc2 1186{
09a101d6 1187 if (make != NULL && *make != NULL)
1188 {
e53920b9 1189 CFRelease(*make);
1190 *make = NULL;
1191 }
1192
09a101d6 1193 if (model != NULL && *model != NULL)
1194 {
e53920b9 1195 CFRelease(*model);
1196 *model = NULL;
1197 }
1198
09a101d6 1199 if (serial != NULL && *serial != NULL)
1200 {
e53920b9 1201 CFRelease(*serial);
1202 *serial = NULL;
1203 }
1204}
1205
1206
1207#pragma mark -
1208/*
1209 * 'load_classdriver()' - Load a classdriver.
1210 */
1211
09a101d6 1212static kern_return_t load_classdriver(CFStringRef driverPath,
1213 printer_interface_t intf,
1214 classdriver_t ***printerDriver)
e53920b9 1215{
1216 kern_return_t kr = kUSBPrinterClassDeviceNotOpen;
09a101d6 1217 classdriver_t **driver = NULL;
e53920b9 1218 CFStringRef bundle = (driverPath == NULL ? kUSBGenericTOPrinterClassDriver : driverPath);
1219
09a101d6 1220 if (bundle != NULL)
1221 {
e53920b9 1222 CFURLRef url = CFURLCreateWithFileSystemPath(NULL, bundle, kCFURLPOSIXPathStyle, true);
1223 CFPlugInRef plugin = (url != NULL ? CFPlugInCreate(NULL, url) : NULL);
1224
09a101d6 1225 if (url != NULL)
e53920b9 1226 CFRelease(url);
1227
09a101d6 1228 if (plugin != NULL)
1229 {
e53920b9 1230 CFArrayRef factories = CFPlugInFindFactoriesForPlugInTypeInPlugIn(kUSBPrinterClassTypeID, plugin);
09a101d6 1231 if (factories != NULL && CFArrayGetCount(factories) > 0)
1232 {
e53920b9 1233 CFUUIDRef factoryID = CFArrayGetValueAtIndex(factories, 0);
1234 IUnknownVTbl **iunknown = CFPlugInInstanceCreate(NULL, factoryID, kUSBPrinterClassTypeID);
09a101d6 1235 if (iunknown != NULL)
1236 {
e53920b9 1237 kr = (*iunknown)->QueryInterface(iunknown, CFUUIDGetUUIDBytes(kUSBPrinterClassInterfaceID), (LPVOID *)&driver);
09a101d6 1238 if (kr == kIOReturnSuccess && driver != NULL)
1239 {
1240 classdriver_t **genericDriver = NULL;
1241 if (driverPath != NULL && CFStringCompare(driverPath, kUSBGenericTOPrinterClassDriver, 0) != kCFCompareEqualTo)
e53920b9 1242 kr = load_classdriver(NULL, intf, &genericDriver);
e53920b9 1243
09a101d6 1244 if (kr == kIOReturnSuccess)
1245 {
e53920b9 1246 (*driver)->interface = intf;
1247 (*driver)->Initialize(driver, genericDriver);
1248
1249 (*driver)->plugin = plugin;
1250 (*driver)->interface = intf;
1251 *printerDriver = driver;
1252 }
1253 }
1254 (*iunknown)->Release(iunknown);
1255 }
1256 CFRelease(factories);
1257 }
ef416fc2 1258 }
e53920b9 1259 }
1260
1261#ifdef DEBUG
1262 char bundlestr[1024];
1263 CFStringGetCString(bundle, bundlestr, sizeof(bundlestr), kCFStringEncodingUTF8);
c0e1af83 1264 fprintf(stderr, "DEBUG: load_classdriver(%s) (kr:0x%08x)\n", bundlestr, (int)kr);
e53920b9 1265#endif /* DEBUG */
ef416fc2 1266
e53920b9 1267 return kr;
ef416fc2 1268}
1269
1270
e53920b9 1271/*
1272 * 'unload_classdriver()' - Unload a classdriver.
1273 */
ef416fc2 1274
09a101d6 1275static kern_return_t unload_classdriver(classdriver_t ***classdriver)
e53920b9 1276{
09a101d6 1277 if (*classdriver != NULL)
1278 {
1279 (**classdriver)->Release(*classdriver);
1280 *classdriver = NULL;
e53920b9 1281 }
ef416fc2 1282
e53920b9 1283 return kIOReturnSuccess;
1284}
ef416fc2 1285
ef416fc2 1286
e53920b9 1287/*
09a101d6 1288 * 'load_printerdriver()' - Load vendor's classdriver.
411affcf 1289 *
1290 * If driverBundlePath is not NULL on return it is the callers responsbility to release it!
e53920b9 1291 */
ef416fc2 1292
09a101d6 1293static kern_return_t load_printerdriver(CFStringRef *driverBundlePath)
ef416fc2 1294{
7594b224 1295 IOCFPlugInInterface **iodev = NULL;
1296 SInt32 score;
1297 kern_return_t kr;
1298 printer_interface_t intf;
1299 HRESULT res;
1300
09a101d6 1301 kr = IOCreatePlugInInterfaceForService(g.printer_obj, kIOUSBInterfaceUserClientTypeID, kIOCFPlugInInterfaceID, &iodev, &score);
7594b224 1302 if (kr == kIOReturnSuccess)
1303 {
1304 if ((res = (*iodev)->QueryInterface(iodev, USB_INTERFACE_KIND, (LPVOID *) &intf)) == noErr)
1305 {
09a101d6 1306 *driverBundlePath = IORegistryEntryCreateCFProperty(g.printer_obj, kUSBClassDriverProperty, NULL, kNilOptions);
e53920b9 1307
09a101d6 1308 kr = load_classdriver(*driverBundlePath, intf, &g.classdriver);
ef416fc2 1309
e53920b9 1310 if (kr != kIOReturnSuccess)
1311 (*intf)->Release(intf);
1312 }
1313 IODestroyPlugInInterface(iodev);
1314 }
1315 return kr;
ef416fc2 1316}
1317
1318
e53920b9 1319/*
1320 * 'registry_open()' - Open a connection to the printer.
1321 */
ef416fc2 1322
09a101d6 1323static kern_return_t registry_open(CFStringRef *driverBundlePath)
e53920b9 1324{
09a101d6 1325 g.bidi_flag = 0; /* 0=unidirectional */
f7deaa1a 1326
09a101d6 1327 kern_return_t kr = load_printerdriver(driverBundlePath);
1328 if (kr != kIOReturnSuccess)
e53920b9 1329 kr = -2;
ef416fc2 1330
09a101d6 1331 if (g.classdriver != NULL)
1332 {
bc44d920 1333 (*g.classdriver)->interfaceNumber = g.interfaceNum;
09a101d6 1334 kr = (*g.classdriver)->Open(g.classdriver, g.location, kUSBPrintingProtocolBidirectional);
1335 if (kr != kIOReturnSuccess || (*g.classdriver)->interface == NULL)
1336 {
1337 kr = (*g.classdriver)->Open(g.classdriver, g.location, kUSBPrintingProtocolUnidirectional);
1338 if (kr == kIOReturnSuccess)
1339 {
1340 if ((*g.classdriver)->interface == NULL)
1341 {
1342 (*g.classdriver)->Close(g.classdriver);
e53920b9 1343 kr = -1;
1344 }
1345 }
1346 }
09a101d6 1347 else
1348 g.bidi_flag = 1; /* 1=bidirectional */
e53920b9 1349 }
ef416fc2 1350
09a101d6 1351 if (kr != kIOReturnSuccess)
1352 unload_classdriver(&g.classdriver);
ef416fc2 1353
e53920b9 1354 return kr;
1355}
ef416fc2 1356
ef416fc2 1357
e53920b9 1358/*
1359 * 'registry_close()' - Close the connection to the printer.
1360 */
ef416fc2 1361
09a101d6 1362static kern_return_t registry_close()
ef416fc2 1363{
09a101d6 1364 if (g.classdriver != NULL)
1365 (*g.classdriver)->Close(g.classdriver);
1366
1367 unload_classdriver(&g.classdriver);
e53920b9 1368 return kIOReturnSuccess;
ef416fc2 1369}
1370
1371
e53920b9 1372/*
1373 * 'copy_deviceid()' - Copy the 1284 device id string.
1374 */
1375
09a101d6 1376static OSStatus copy_deviceid(classdriver_t **classdriver,
1377 CFStringRef *deviceID)
ef416fc2 1378{
e53920b9 1379 CFStringRef devID = NULL,
1380
1381 deviceMake = NULL,
1382 deviceModel = NULL,
1383 deviceSerial = NULL;
1384
09a101d6 1385 OSStatus err = (*classdriver)->GetDeviceID(classdriver, &devID, DEFAULT_TIMEOUT);
e53920b9 1386
1387 copy_deviceinfo(devID, &deviceMake, &deviceModel, &deviceSerial);
1388
09a101d6 1389 if (deviceMake == NULL || deviceModel == NULL || deviceSerial == NULL)
1390 {
e53920b9 1391 IOUSBDeviceDescriptor desc;
1392 iodevice_request_t request;
1393
09a101d6 1394 request.requestType = USBmakebmRequestType(kUSBIn, kUSBStandard, kUSBDevice);
e53920b9 1395 request.request = kUSBRqGetDescriptor;
1396 request.value = (kUSBDeviceDesc << 8) | 0;
1397 request.index = 0;
1398 request.length = sizeof(desc);
1399 request.buffer = &desc;
09a101d6 1400 err = (*classdriver)->DeviceRequest(classdriver, &request, DEFAULT_TIMEOUT);
1401 if (err == kIOReturnSuccess)
1402 {
e53920b9 1403 CFMutableStringRef newDevID = CFStringCreateMutable(NULL, 0);
1404
09a101d6 1405 if (deviceMake == NULL)
1406 {
e53920b9 1407 CFStringRef data = NULL;
09a101d6 1408 err = (*classdriver)->GetString(classdriver, desc.iManufacturer, kUSBLanguageEnglish, DEFAULT_TIMEOUT, &data);
1409 if (data != NULL)
1410 {
e53920b9 1411 CFStringAppendFormat(newDevID, NULL, CFSTR("MFG:%@;"), data);
1412 CFRelease(data);
ef416fc2 1413 }
e53920b9 1414 }
1415
09a101d6 1416 if (deviceModel == NULL)
1417 {
e53920b9 1418 CFStringRef data = NULL;
09a101d6 1419 err = (*classdriver)->GetString(classdriver, desc.iProduct, kUSBLanguageEnglish, DEFAULT_TIMEOUT, &data);
1420 if (data != NULL)
1421 {
e53920b9 1422 CFStringAppendFormat(newDevID, NULL, CFSTR("MDL:%@;"), data);
1423 CFRelease(data);
ef416fc2 1424 }
e53920b9 1425 }
1426
09a101d6 1427 if (deviceSerial == NULL && desc.iSerialNumber != 0)
1428 {
e53920b9 1429 CFStringRef data = NULL;
09a101d6 1430 err = (*classdriver)->GetString(classdriver, desc.iSerialNumber, kUSBLanguageEnglish, DEFAULT_TIMEOUT, &data);
1431 if (data != NULL)
1432 {
e53920b9 1433 CFStringAppendFormat(newDevID, NULL, CFSTR("SERN:%@;"), data);
1434 CFRelease(data);
ef416fc2 1435 }
e53920b9 1436 }
ef416fc2 1437
09a101d6 1438 if (devID != NULL)
1439 {
e53920b9 1440 CFStringAppend(newDevID, devID);
1441 CFRelease(devID);
1442 }
ef416fc2 1443
e53920b9 1444 *deviceID = newDevID;
1445 }
1446 }
09a101d6 1447 else
1448 {
e53920b9 1449 *deviceID = devID;
1450 }
1451 release_deviceinfo(&deviceMake, &deviceModel, &deviceSerial);
ef416fc2 1452
e53920b9 1453 return err;
1454}
ef416fc2 1455
ef416fc2 1456
e53920b9 1457/*
1458 * 'copy_devicestring()' - Copy the 1284 device id string.
1459 */
ef416fc2 1460
09a101d6 1461static void copy_devicestring(io_service_t usbInterface,
1462 CFStringRef *deviceID,
bc44d920 1463 UInt32 *deviceLocation,
1464 UInt8 *interfaceNumber )
e53920b9 1465{
7594b224 1466 IOCFPlugInInterface **iodev = NULL;
1467 SInt32 score;
1468 kern_return_t kr;
1469 printer_interface_t intf;
1470 HRESULT res;
09a101d6 1471 classdriver_t **klassDriver = NULL;
7594b224 1472 CFStringRef driverBundlePath;
1473
09a101d6 1474 if ((kr = IOCreatePlugInInterfaceForService(usbInterface,
1475 kIOUSBInterfaceUserClientTypeID,
1476 kIOCFPlugInInterfaceID,
1477 &iodev, &score)) == kIOReturnSuccess)
7594b224 1478 {
09a101d6 1479 if ((res = (*iodev)->QueryInterface(iodev, USB_INTERFACE_KIND, (LPVOID *)
1480 &intf)) == noErr)
7594b224 1481 {
09a101d6 1482 (*intf)->GetLocationID(intf, deviceLocation);
bc44d920 1483 (*intf)->GetInterfaceNumber(intf, interfaceNumber);
e53920b9 1484
09a101d6 1485 driverBundlePath = IORegistryEntryCreateCFProperty(usbInterface,
1486 kUSBClassDriverProperty,
1487 NULL, kNilOptions);
e53920b9 1488
7594b224 1489 kr = load_classdriver(driverBundlePath, intf, &klassDriver);
ef416fc2 1490
7594b224 1491 if (kr != kIOReturnSuccess && driverBundlePath != NULL)
1492 kr = load_classdriver(NULL, intf, &klassDriver);
1493
09a101d6 1494 if (kr == kIOReturnSuccess && klassDriver != NULL)
1495 kr = copy_deviceid(klassDriver, deviceID);
ef416fc2 1496
7594b224 1497 unload_classdriver(&klassDriver);
1498
1499 if (driverBundlePath != NULL)
1500 CFRelease(driverBundlePath);
ef416fc2 1501
e53920b9 1502 /* (*intf)->Release(intf); */
09a101d6 1503 }
e53920b9 1504 IODestroyPlugInInterface(iodev);
1505 }
1506}
ef416fc2 1507
ef416fc2 1508
e53920b9 1509#pragma mark -
1510/*
1511 * 'copy_value_for_key()' - Copy value string associated with a key.
1512 */
ef416fc2 1513
09a101d6 1514static CFStringRef copy_value_for_key(CFStringRef deviceID,
1515 CFStringRef *keys)
ef416fc2 1516{
e53920b9 1517 CFStringRef value = NULL;
1518 CFArrayRef kvPairs = deviceID != NULL ? CFStringCreateArrayBySeparatingStrings(NULL, deviceID, CFSTR(";")) : NULL;
1519 CFIndex max = kvPairs != NULL ? CFArrayGetCount(kvPairs) : 0;
1520 CFIndex idx = 0;
1521
09a101d6 1522 while (idx < max && value == NULL)
1523 {
e53920b9 1524 CFStringRef kvpair = CFArrayGetValueAtIndex(kvPairs, idx);
1525 CFIndex idxx = 0;
09a101d6 1526 while (keys[idxx] != NULL && value == NULL)
1527 {
e53920b9 1528 CFRange range = CFStringFind(kvpair, keys[idxx], kCFCompareCaseInsensitive);
09a101d6 1529 if (range.length != -1)
1530 {
1531 if (range.location != 0)
1532 {
e53920b9 1533 CFMutableStringRef theString = CFStringCreateMutableCopy(NULL, 0, kvpair);
1534 CFStringTrimWhitespace(theString);
1535 range = CFStringFind(theString, keys[idxx], kCFCompareCaseInsensitive);
09a101d6 1536 if (range.location == 0)
e53920b9 1537 value = CFStringCreateWithSubstring(NULL, theString, CFRangeMake(range.length, CFStringGetLength(theString) - range.length));
09a101d6 1538
e53920b9 1539 CFRelease(theString);
1540 }
09a101d6 1541 else
1542 {
e53920b9 1543 CFStringRef theString = CFStringCreateWithSubstring(NULL, kvpair, CFRangeMake(range.length, CFStringGetLength(kvpair) - range.length));
1544 CFMutableStringRef theString2 = CFStringCreateMutableCopy(NULL, 0, theString);
1545 CFRelease(theString);
ef416fc2 1546
e53920b9 1547 CFStringTrimWhitespace(theString2);
1548 value = theString2;
ef416fc2 1549 }
e53920b9 1550 }
1551 idxx++;
ef416fc2 1552 }
e53920b9 1553 idx++;
1554 }
1555
1556 if (kvPairs != NULL)
09a101d6 1557 CFRelease(kvPairs);
e53920b9 1558 return value;
ef416fc2 1559}
1560
1561
411affcf 1562/*
09a101d6 1563 * 'cfstr_create_trim()' - Create CFString and trim whitespace characters.
411affcf 1564 */
1565
09a101d6 1566CFStringRef cfstr_create_trim(const char *cstr)
411affcf 1567{
1568 CFStringRef cfstr;
1569 CFMutableStringRef cfmutablestr = NULL;
09a101d6 1570
411affcf 1571 if ((cfstr = CFStringCreateWithCString(NULL, cstr, kCFStringEncodingUTF8)) != NULL)
1572 {
1573 if ((cfmutablestr = CFStringCreateMutableCopy(NULL, 1024, cfstr)) != NULL)
1574 CFStringTrimWhitespace(cfmutablestr);
1575
1576 CFRelease(cfstr);
1577 }
1578 return (CFStringRef) cfmutablestr;
1579}
1580
1581
e53920b9 1582#pragma mark -
1583/*
db1f069b 1584 * 'parse_options()' - Parse URI options.
e53920b9 1585 */
ef416fc2 1586
db1f069b 1587static void parse_options(char *options,
09a101d6 1588 char *serial,
76cd9e37 1589 int serial_size,
09a101d6 1590 UInt32 *location,
1591 Boolean *wait_eof)
e53920b9 1592{
db1f069b
MS
1593 char sep, /* Separator character */
1594 *name, /* Name of option */
1595 *value; /* Value of option */
1596
ef416fc2 1597
e53920b9 1598 if (serial)
1599 *serial = '\0';
1600 if (location)
1601 *location = 0;
ef416fc2 1602
e53920b9 1603 if (!options)
1604 return;
ef416fc2 1605
db1f069b 1606 while (*options)
09a101d6 1607 {
db1f069b
MS
1608 /*
1609 * Get the name...
1610 */
ef416fc2 1611
db1f069b 1612 name = options;
ef416fc2 1613
db1f069b 1614 while (*options && *options != '=' && *options != '+' && *options != '&')
e53920b9 1615 options ++;
ef416fc2 1616
db1f069b
MS
1617 if ((sep = *options) != '\0')
1618 *options++ = '\0';
ef416fc2 1619
db1f069b
MS
1620 if (sep == '=')
1621 {
1622 /*
1623 * Get the value...
1624 */
ef416fc2 1625
db1f069b
MS
1626 value = options;
1627
1628 while (*options && *options != '+' && *options != '&')
e53920b9 1629 options ++;
db1f069b
MS
1630
1631 if (*options)
1632 *options++ = '\0';
e53920b9 1633 }
db1f069b
MS
1634 else
1635 value = (char *)"";
ef416fc2 1636
db1f069b
MS
1637 /*
1638 * Process the option...
1639 */
1640
1641 if (!strcasecmp(name, "waiteof"))
09a101d6 1642 {
db1f069b
MS
1643 if (!strcasecmp(value, "on") ||
1644 !strcasecmp(value, "yes") ||
1645 !strcasecmp(value, "true"))
09a101d6 1646 *wait_eof = true;
db1f069b
MS
1647 else if (!strcasecmp(value, "off") ||
1648 !strcasecmp(value, "no") ||
1649 !strcasecmp(value, "false"))
09a101d6 1650 *wait_eof = false;
1651 else
db1f069b
MS
1652 _cupsLangPrintf(stderr,
1653 _("WARNING: Boolean expected for waiteof option "
1654 "\"%s\"\n"), value);
e53920b9 1655 }
db1f069b 1656 else if (!strcasecmp(name, "serial"))
76cd9e37 1657 strlcpy(serial, value, serial_size);
db1f069b 1658 else if (!strcasecmp(name, "location") && location)
e53920b9 1659 *location = strtol(value, NULL, 16);
e53920b9 1660 }
e53920b9 1661}
ef416fc2 1662
ef416fc2 1663
e53920b9 1664/*!
1665 * @function setup_cfLanguage
1666 * @abstract Convert the contents of the CUPS 'LANG' environment
1667 * variable into a one element CF array of languages.
1668 *
1669 * @discussion Each submitted job comes with a natural language. CUPS passes
1670 * that language in an environment variable. We take that language
1671 * and jam it into the AppleLanguages array so that CF will use
1672 * it when reading localized resources. We need to do this before
1673 * any CF code reads and caches the languages array, so this function
1674 * should be called early in main()
1675 */
1676static void setup_cfLanguage(void)
1677{
1678 CFStringRef lang[1] = {NULL};
1679 CFArrayRef langArray = NULL;
1680 const char *requestedLang = NULL;
1681
1682 requestedLang = getenv("LANG");
09a101d6 1683 if (requestedLang != NULL)
1684 {
e53920b9 1685 lang[0] = CFStringCreateWithCString(kCFAllocatorDefault, requestedLang, kCFStringEncodingUTF8);
1686 langArray = CFArrayCreate(kCFAllocatorDefault, (const void **)lang, sizeof(lang) / sizeof(lang[0]), &kCFTypeArrayCallBacks);
1687
1688 CFPreferencesSetAppValue(CFSTR("AppleLanguages"), langArray, kCFPreferencesCurrentApplication);
1689 DEBUG_printf((stderr, "DEBUG: usb: AppleLanguages = \"%s\"\n", requestedLang));
1690
1691 CFRelease(lang[0]);
1692 CFRelease(langArray);
e53920b9 1693 }
09a101d6 1694 else
1695 fputs("DEBUG: usb: LANG environment variable missing.\n", stderr);
e53920b9 1696}
ef416fc2 1697
e53920b9 1698#pragma mark -
1699#if defined(__i386__)
1700/*!
1701 * @function run_ppc_backend
1702 *
1703 * @abstract Starts child backend process running as a ppc executable.
1704 *
1705 * @result Never returns; always calls exit().
1706 *
09a101d6 1707 * @discussion
e53920b9 1708 */
09a101d6 1709static void run_ppc_backend(int argc,
1710 char *argv[],
1711 int fd)
e53920b9 1712{
1713 int i;
1714 int exitstatus = 0;
1715 int childstatus;
1716 pid_t waitpid_status;
1717 char *my_argv[32];
1718 char *usb_ppc_status;
ef416fc2 1719
e53920b9 1720 /*
1721 * If we're running as i386 and couldn't load the class driver (because they'it's
1722 * ppc-only) then try to re-exec ourselves in ppc mode to try again. If we don't have
1723 * a ppc architecture we may be running i386 again so guard against this by setting
1724 * and testing an environment variable...
1725 */
1726 usb_ppc_status = getenv("USB_PPC_STATUS");
1727
09a101d6 1728 if (usb_ppc_status == NULL)
1729 {
bc44d920 1730 /*
1731 * Setup a SIGTERM handler then block it before forking...
1732 */
ef416fc2 1733
bc44d920 1734 struct sigaction action; /* POSIX signal action */
1735 sigset_t newmask, /* New signal mask */
1736 oldmask; /* Old signal mask */
1737
1738 memset(&action, 0, sizeof(action));
1739 sigaddset(&action.sa_mask, SIGTERM);
1740 action.sa_handler = sigterm_handler;
1741 sigaction(SIGTERM, &action, NULL);
1742
1743 sigemptyset(&newmask);
1744 sigaddset(&newmask, SIGTERM);
1745 sigprocmask(SIG_BLOCK, &newmask, &oldmask);
ef416fc2 1746
09a101d6 1747 if ((child_pid = fork()) == 0)
1748 {
bc44d920 1749 /*
1750 * Child comes here...
1751 */
1752
e53920b9 1753 setenv("USB_PPC_STATUS", "1", false);
ef416fc2 1754
bc44d920 1755 /*
1756 * Unblock signals before doing the exec...
1757 */
1758
1759 memset(&action, 0, sizeof(action));
1760 sigemptyset(&action.sa_mask);
1761 action.sa_handler = SIG_DFL;
1762 sigaction(SIGTERM, &action, NULL);
1763
1764 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1765
1766 /*
1767 * Tell the kernel the next exec call should favor the ppc architecture...
1768 */
1769
e53920b9 1770 int mib[] = { CTL_KERN, KERN_AFFINITY, 1, 1 };
1771 int namelen = 4;
1772 sysctl(mib, namelen, NULL, NULL, NULL, 0);
ef416fc2 1773
bc44d920 1774 /*
1775 * Set up the arguments and call exec...
1776 */
1777
e53920b9 1778 for (i = 0; i < argc && i < (sizeof(my_argv)/sizeof(my_argv[0])) - 1; i++)
1779 my_argv[i] = argv[i];
ef416fc2 1780
e53920b9 1781 my_argv[i] = NULL;
ef416fc2 1782
e53920b9 1783 execv("/usr/libexec/cups/backend/usb", my_argv);
ef416fc2 1784
bc44d920 1785 perror("/usr/libexec/cups/backend/usb");
1786 exit(errno);
ef416fc2 1787 }
bc44d920 1788 else if (child_pid < 0)
09a101d6 1789 {
bc44d920 1790 /*
1791 * Error - couldn't fork a new process!
1792 */
1793
1794 perror("fork");
1795 exit(errno);
1796 }
e53920b9 1797
bc44d920 1798 /*
1799 * Unblock signals...
1800 */
e53920b9 1801
bc44d920 1802 sigprocmask(SIG_SETMASK, &oldmask, NULL);
e53920b9 1803
bc44d920 1804 /*
1805 * Close the fds we won't be using then wait for the child backend to exit.
1806 */
1807
1808 close(fd);
1809 close(1);
1810
1811 fprintf(stderr, "DEBUG: Started usb(ppc) backend (PID %d)\n", (int)child_pid);
1812
1813 while ((waitpid_status = waitpid(child_pid, &childstatus, 0)) == (pid_t)-1 && errno == EINTR)
1814 usleep(1000);
1815
1816 if (WIFSIGNALED(childstatus))
1817 {
1818 exitstatus = WTERMSIG(childstatus);
1819 fprintf(stderr, "DEBUG: usb(ppc) backend %d crashed on signal %d!\n", child_pid, exitstatus);
ef416fc2 1820 }
09a101d6 1821 else
1822 {
bc44d920 1823 if ((exitstatus = WEXITSTATUS(childstatus)) != 0)
1824 fprintf(stderr, "DEBUG: usb(ppc) backend %d stopped with status %d!\n", child_pid, exitstatus);
1825 else
1826 fprintf(stderr, "DEBUG: PID %d exited with no errors\n", child_pid);
e53920b9 1827 }
1828 }
09a101d6 1829 else
1830 {
c0e1af83 1831 fputs("DEBUG: usb child running i386 again\n", stderr);
e53920b9 1832 exitstatus = ENOENT;
1833 }
ef416fc2 1834
e53920b9 1835 exit(exitstatus);
1836}
ef416fc2 1837
e53920b9 1838/*
1839 * 'sigterm_handler()' - SIGTERM handler.
1840 */
ef416fc2 1841
e53920b9 1842static void sigterm_handler(int sig)
ef416fc2 1843{
e53920b9 1844 /* If we started a child process pass the signal on to it...
1845 */
1846 if (child_pid)
1847 kill(child_pid, sig);
1848
1849 exit(1);
ef416fc2 1850}
1851
e53920b9 1852#endif /* __i386__ */
ef416fc2 1853
ef416fc2 1854
e53920b9 1855#ifdef PARSE_PS_ERRORS
1856/*
1857 * 'next_line()' - Find the next line in a buffer.
1858 */
ef416fc2 1859
e53920b9 1860static const char *next_line (const char *buffer)
ef416fc2 1861{
e53920b9 1862 const char *cptr, *lptr = NULL;
ef416fc2 1863
e53920b9 1864 for (cptr = buffer; *cptr && lptr == NULL; cptr++)
1865 if (*cptr == '\n' || *cptr == '\r')
1866 lptr = cptr;
1867 return lptr;
ef416fc2 1868}
1869
ef416fc2 1870
e53920b9 1871/*
1872 * 'parse_pserror()' - Scan the backchannel data for postscript errors.
1873 */
ef416fc2 1874
09a101d6 1875static void parse_pserror(char *sockBuffer,
1876 int len)
ef416fc2 1877{
e53920b9 1878 static char gErrorBuffer[1024] = "";
1879 static char *gErrorBufferPtr = gErrorBuffer;
1880 static char *gErrorBufferEndPtr = gErrorBuffer + sizeof(gErrorBuffer);
1881
1882 char *pCommentBegin, *pCommentEnd, *pLineEnd;
1883 char *logLevel;
1884 char logstr[1024];
1885 int logstrlen;
1886
1887 if (gErrorBufferPtr + len > gErrorBufferEndPtr - 1)
1888 gErrorBufferPtr = gErrorBuffer;
1889 if (len > sizeof(gErrorBuffer) - 1)
1890 len = sizeof(gErrorBuffer) - 1;
1891
1892 memcpy(gErrorBufferPtr, (const void *)sockBuffer, len);
1893 gErrorBufferPtr += len;
1894 *(gErrorBufferPtr + 1) = '\0';
1895
e53920b9 1896 pLineEnd = (char *)next_line((const char *)gErrorBuffer);
09a101d6 1897 while (pLineEnd != NULL)
1898 {
e53920b9 1899 *pLineEnd++ = '\0';
1900
1901 pCommentBegin = strstr(gErrorBuffer,"%%[");
1902 pCommentEnd = strstr(gErrorBuffer, "]%%");
09a101d6 1903 if (pCommentBegin != gErrorBuffer && pCommentEnd != NULL)
1904 {
e53920b9 1905 pCommentEnd += 3; /* Skip past "]%%" */
1906 *pCommentEnd = '\0'; /* There's always room for the nul */
1907
1908 if (strncasecmp(pCommentBegin, "%%[ Error:", 10) == 0)
1909 logLevel = "DEBUG";
1910 else if (strncasecmp(pCommentBegin, "%%[ Flushing", 12) == 0)
1911 logLevel = "DEBUG";
1912 else
1913 logLevel = "INFO";
1914
09a101d6 1915 if ((logstrlen = snprintf(logstr, sizeof(logstr), "%s: %s\n", logLevel, pCommentBegin)) >= sizeof(logstr))
1916 {
e53920b9 1917 /* If the string was trucnated make sure it has a linefeed before the nul */
1918 logstrlen = sizeof(logstr) - 1;
1919 logstr[logstrlen - 1] = '\n';
1920 }
1921 write(STDERR_FILENO, logstr, logstrlen);
ef416fc2 1922 }
ef416fc2 1923
e53920b9 1924 /* move everything over... */
1925 strcpy(gErrorBuffer, pLineEnd);
1926 gErrorBufferPtr = gErrorBuffer;
1927 pLineEnd = (char *)next_line((const char *)gErrorBuffer);
1928 }
ef416fc2 1929}
e53920b9 1930#endif /* PARSE_PS_ERRORS */
ef416fc2 1931
e53920b9 1932
1933/*
db1f069b 1934 * 'soft_reset()' - Send a soft reset to the device.
ef416fc2 1935 */
e53920b9 1936
09a101d6 1937static void soft_reset()
ef416fc2 1938{
09a101d6 1939 fd_set input_set; /* Input set for select() */
1940 struct timeval stimeout; /* Timeout for select() */
1941 char buffer[2048]; /* Buffer */
1942 struct timespec cond_timeout; /* pthread condition timeout */
e53920b9 1943
09a101d6 1944 /*
1945 * Send an abort once a second until the I/O lock is released by the main thread...
1946 */
e53920b9 1947
09a101d6 1948 pthread_mutex_lock(&g.readwrite_lock_mutex);
1949 while (g.readwrite_lock)
1950 {
1951 (*g.classdriver)->Abort(g.classdriver);
ef416fc2 1952
09a101d6 1953 cond_timeout.tv_sec = time(NULL) + 1;
1954 cond_timeout.tv_nsec = 0;
e53920b9 1955
09a101d6 1956 pthread_cond_timedwait(&g.readwrite_lock_cond, &g.readwrite_lock_mutex, &cond_timeout);
1957 }
f7deaa1a 1958
09a101d6 1959 g.readwrite_lock = 1;
1960 pthread_mutex_unlock(&g.readwrite_lock_mutex);
f7deaa1a 1961
09a101d6 1962 /*
1963 * Flush bytes waiting on print_fd...
1964 */
f7deaa1a 1965
09a101d6 1966 g.print_bytes = 0;
f7deaa1a 1967
09a101d6 1968 FD_ZERO(&input_set);
1969 FD_SET(g.print_fd, &input_set);
f7deaa1a 1970
09a101d6 1971 stimeout.tv_sec = 0;
1972 stimeout.tv_usec = 0;
f7deaa1a 1973
09a101d6 1974 while (select(g.print_fd+1, &input_set, NULL, NULL, &stimeout) > 0)
1975 if (read(g.print_fd, buffer, sizeof(buffer)) <= 0)
1976 break;
f7deaa1a 1977
09a101d6 1978 /*
1979 * Send the reset...
1980 */
f7deaa1a 1981
7dfedb92 1982 (*g.classdriver)->SoftReset(g.classdriver, DEFAULT_TIMEOUT);
f7deaa1a 1983
09a101d6 1984 /*
1985 * Release the I/O lock...
1986 */
f7deaa1a 1987
09a101d6 1988 pthread_mutex_lock(&g.readwrite_lock_mutex);
1989 g.readwrite_lock = 0;
1990 pthread_cond_signal(&g.readwrite_lock_cond);
1991 pthread_mutex_unlock(&g.readwrite_lock_mutex);
f7deaa1a 1992}
1993
f7deaa1a 1994
1995/*
09a101d6 1996 * 'get_device_id()' - Return IEEE-1284 device ID.
f7deaa1a 1997 */
f7deaa1a 1998
09a101d6 1999static void get_device_id(cups_sc_status_t *status,
2000 char *data,
2001 int *datalen)
2002{
f7deaa1a 2003 UInt32 deviceLocation = 0;
bc44d920 2004 UInt8 interfaceNum = 0;
f7deaa1a 2005 CFStringRef deviceIDString = NULL;
2006
2007 /* GetDeviceID */
bc44d920 2008 copy_devicestring(g.printer_obj, &deviceIDString, &deviceLocation, &interfaceNum);
09a101d6 2009 if (deviceIDString)
2010 {
2011 CFStringGetCString(deviceIDString, data, *datalen, kCFStringEncodingUTF8);
2012 *datalen = strlen(data);
2013 CFRelease(deviceIDString);
f7deaa1a 2014 }
09a101d6 2015 *status = CUPS_SC_STATUS_OK;
f7deaa1a 2016}
2017
f7deaa1a 2018
2019/*
2e4ff8af 2020 * End of "$Id: usb-darwin.c 6993 2007-09-28 18:05:28Z mike $".
ef416fc2 2021 */