]> git.ipfire.org Git - thirdparty/cups.git/blob - backend/usb-unix.c
Import CUPS trunk (1.4svn) r7116.
[thirdparty/cups.git] / backend / usb-unix.c
1 /*
2 * "$Id: usb-unix.c 6910 2007-09-04 20:34:29Z mike $"
3 *
4 * USB port backend for the Common UNIX Printing System (CUPS).
5 *
6 * This file is included from "usb.c" when compiled on UNIX/Linux.
7 *
8 * Copyright 2007 by Apple Inc.
9 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
10 *
11 * These coded instructions, statements, and computer programs are the
12 * property of Apple Inc. and are protected by Federal copyright
13 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
14 * "LICENSE" which should have been included with this file. If this
15 * file is missing or damaged, see the license at "http://www.cups.org/".
16 *
17 * This file is subject to the Apple OS-Developed Software exception.
18 *
19 * Contents:
20 *
21 * print_device() - Print a file to a USB device.
22 * list_devices() - List all USB devices.
23 * open_device() - Open a USB device...
24 * side_cb() - Handle side-channel requests...
25 */
26
27 /*
28 * Include necessary headers.
29 */
30
31 #include "ieee1284.c"
32 #include <sys/select.h>
33
34
35 /*
36 * Local functions...
37 */
38
39 static int open_device(const char *uri, int *use_bc);
40 static void side_cb(int print_fd, int device_fd, int use_bc);
41
42
43 /*
44 * 'print_device()' - Print a file to a USB device.
45 */
46
47 int /* O - Exit status */
48 print_device(const char *uri, /* I - Device URI */
49 const char *hostname, /* I - Hostname/manufacturer */
50 const char *resource, /* I - Resource/modelname */
51 char *options, /* I - Device options/serial number */
52 int print_fd, /* I - File descriptor to print */
53 int copies, /* I - Copies to print */
54 int argc, /* I - Number of command-line arguments (6 or 7) */
55 char *argv[]) /* I - Command-line arguments */
56 {
57 int use_bc; /* Use backchannel path? */
58 int device_fd; /* USB device */
59 size_t tbytes; /* Total number of bytes written */
60 struct termios opts; /* Parallel port options */
61
62
63 (void)argc;
64 (void)argv;
65
66 /*
67 * Open the USB port device...
68 */
69
70 fputs("STATE: +connecting-to-device\n", stderr);
71
72 do
73 {
74 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
75 /*
76 * *BSD's ulpt driver currently does not support the
77 * back-channel, incorrectly returns data ready on a select(),
78 * and locks up on read()...
79 */
80
81 use_bc = 0;
82
83 #else
84 /*
85 * Disable backchannel data when printing to Brother, Canon, or
86 * Minolta USB printers - apparently these printers will return
87 * the IEEE-1284 device ID over and over and over when they get
88 * a read request...
89 */
90
91 use_bc = strcasecmp(hostname, "Brother") &&
92 strcasecmp(hostname, "Canon") &&
93 strncasecmp(hostname, "Konica", 6) &&
94 strncasecmp(hostname, "Minolta", 7);
95 #endif /* __FreeBSD__ || __NetBSD__ || __OpenBSD__ || __DragonFly__ */
96
97 if ((device_fd = open_device(uri, &use_bc)) == -1)
98 {
99 if (getenv("CLASS") != NULL)
100 {
101 /*
102 * If the CLASS environment variable is set, the job was submitted
103 * to a class and not to a specific queue. In this case, we want
104 * to abort immediately so that the job can be requeued on the next
105 * available printer in the class.
106 */
107
108 _cupsLangPuts(stderr,
109 _("INFO: Unable to contact printer, queuing on next "
110 "printer in class...\n"));
111
112 /*
113 * Sleep 5 seconds to keep the job from requeuing too rapidly...
114 */
115
116 sleep(5);
117
118 return (CUPS_BACKEND_FAILED);
119 }
120
121 if (errno == EBUSY)
122 {
123 _cupsLangPuts(stderr,
124 _("INFO: Printer busy; will retry in 10 seconds...\n"));
125 sleep(10);
126 }
127 else if (errno == ENXIO || errno == EIO || errno == ENOENT ||
128 errno == ENODEV)
129 {
130 _cupsLangPuts(stderr,
131 _("INFO: Printer not connected; will retry in 30 "
132 "seconds...\n"));
133 sleep(30);
134 }
135 else
136 {
137 _cupsLangPrintf(stderr,
138 _("ERROR: Unable to open device file \"%s\": %s\n"),
139 resource, strerror(errno));
140 return (CUPS_BACKEND_FAILED);
141 }
142 }
143 }
144 while (device_fd < 0);
145
146 fputs("STATE: -connecting-to-device\n", stderr);
147
148 /*
149 * Set any options provided...
150 */
151
152 tcgetattr(device_fd, &opts);
153
154 opts.c_lflag &= ~(ICANON | ECHO | ISIG); /* Raw mode */
155
156 /**** No options supported yet ****/
157
158 tcsetattr(device_fd, TCSANOW, &opts);
159
160 /*
161 * Finally, send the print file...
162 */
163
164 tbytes = 0;
165
166 while (copies > 0 && tbytes >= 0)
167 {
168 copies --;
169
170 if (print_fd != 0)
171 {
172 fputs("PAGE: 1 1\n", stderr);
173 lseek(print_fd, 0, SEEK_SET);
174 }
175
176 tbytes = backendRunLoop(print_fd, device_fd, use_bc, side_cb);
177
178 if (print_fd != 0 && tbytes >= 0)
179 _cupsLangPrintf(stderr,
180 #ifdef HAVE_LONG_LONG
181 _("INFO: Sent print file, %lld bytes...\n"),
182 #else
183 _("INFO: Sent print file, %ld bytes...\n"),
184 #endif /* HAVE_LONG_LONG */
185 CUPS_LLCAST tbytes);
186 }
187
188 /*
189 * Close the USB port and return...
190 */
191
192 close(device_fd);
193
194 return (tbytes < 0 ? CUPS_BACKEND_FAILED : CUPS_BACKEND_OK);
195 }
196
197
198 /*
199 * 'list_devices()' - List all USB devices.
200 */
201
202 void
203 list_devices(void)
204 {
205 #ifdef __linux
206 int i; /* Looping var */
207 int fd; /* File descriptor */
208 char device[255], /* Device filename */
209 device_id[1024], /* Device ID string */
210 device_uri[1024], /* Device URI string */
211 make_model[1024]; /* Make and model */
212
213 /*
214 * Try to open each USB device...
215 */
216
217 for (i = 0; i < 16; i ++)
218 {
219 /*
220 * Linux has a long history of changing the standard filenames used
221 * for USB printer devices. We get the honor of trying them all...
222 */
223
224 sprintf(device, "/dev/usblp%d", i);
225
226 if ((fd = open(device, O_RDWR | O_EXCL)) < 0)
227 {
228 if (errno != ENOENT)
229 continue;
230
231 sprintf(device, "/dev/usb/lp%d", i);
232
233 if ((fd = open(device, O_RDWR | O_EXCL)) < 0)
234 {
235 if (errno != ENOENT)
236 continue;
237
238 sprintf(device, "/dev/usb/usblp%d", i);
239
240 if ((fd = open(device, O_RDWR | O_EXCL)) < 0)
241 continue;
242 }
243 }
244
245 if (!backendGetDeviceID(fd, device_id, sizeof(device_id),
246 make_model, sizeof(make_model),
247 "usb", device_uri, sizeof(device_uri)))
248 printf("direct %s \"%s\" \"%s USB #%d\" \"%s\"\n", device_uri,
249 make_model, make_model, i + 1, device_id);
250
251 close(fd);
252 }
253 #elif defined(__sgi)
254 #elif defined(__sun) && defined(ECPPIOC_GETDEVID)
255 int i; /* Looping var */
256 int fd; /* File descriptor */
257 char device[255], /* Device filename */
258 device_id[1024], /* Device ID string */
259 device_uri[1024], /* Device URI string */
260 make_model[1024]; /* Make and model */
261
262
263 /*
264 * Open each USB device...
265 */
266
267 for (i = 0; i < 8; i ++)
268 {
269 sprintf(device, "/dev/usb/printer%d", i);
270
271 if ((fd = open(device, O_WRONLY | O_EXCL)) >= 0)
272 {
273 if (!backendGetDeviceID(fd, device_id, sizeof(device_id),
274 make_model, sizeof(make_model),
275 "usb", device_uri, sizeof(device_uri)))
276 printf("direct %s \"%s\" \"%s USB #%d\" \"%s\"\n", device_uri,
277 make_model, make_model, i + 1, device_id);
278
279 close(fd);
280 }
281 }
282 #elif defined(__hpux)
283 #elif defined(__osf)
284 #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
285 int i; /* Looping var */
286 char device[255]; /* Device filename */
287
288
289 for (i = 0; i < 8; i ++)
290 {
291 sprintf(device, "/dev/ulpt%d", i);
292 if (!access(device, 0))
293 printf("direct usb:%s \"Unknown\" \"USB Printer #%d\"\n", device, i + 1);
294
295 sprintf(device, "/dev/unlpt%d", i);
296 if (!access(device, 0))
297 printf("direct usb:%s \"Unknown\" \"USB Printer #%d (no reset)\"\n", device, i + 1);
298 }
299 #endif
300 }
301
302
303 /*
304 * 'open_device()' - Open a USB device...
305 */
306
307 static int /* O - File descriptor or -1 on error */
308 open_device(const char *uri, /* I - Device URI */
309 int *use_bc) /* O - Set to 0 for unidirectional */
310 {
311 int fd; /* File descriptor */
312
313
314 /*
315 * The generic implementation just treats the URI as a device filename...
316 * Specific operating systems may also support using the device serial
317 * number and/or make/model.
318 */
319
320 if (!strncmp(uri, "usb:/dev/", 9))
321 #ifdef __linux
322 {
323 /*
324 * Do not allow direct devices anymore...
325 */
326
327 errno = ENODEV;
328 return (-1);
329 }
330 else if (!strncmp(uri, "usb://", 6))
331 {
332 /*
333 * For Linux, try looking up the device serial number or model...
334 */
335
336 int i; /* Looping var */
337 int busy; /* Are any ports busy? */
338 char device[255], /* Device filename */
339 device_id[1024], /* Device ID string */
340 make_model[1024], /* Make and model */
341 device_uri[1024]; /* Device URI string */
342
343
344 /*
345 * Find the correct USB device...
346 */
347
348 for (;;)
349 {
350 for (busy = 0, i = 0; i < 16; i ++)
351 {
352 /*
353 * Linux has a long history of changing the standard filenames used
354 * for USB printer devices. We get the honor of trying them all...
355 */
356
357 sprintf(device, "/dev/usblp%d", i);
358
359 if ((fd = open(device, O_RDWR | O_EXCL)) < 0 && errno == ENOENT)
360 {
361 sprintf(device, "/dev/usb/lp%d", i);
362
363 if ((fd = open(device, O_RDWR | O_EXCL)) < 0 && errno == ENOENT)
364 {
365 sprintf(device, "/dev/usb/usblp%d", i);
366
367 if ((fd = open(device, O_RDWR | O_EXCL)) < 0 && errno == ENOENT)
368 continue;
369 }
370 }
371
372 if (fd >= 0)
373 {
374 backendGetDeviceID(fd, device_id, sizeof(device_id),
375 make_model, sizeof(make_model),
376 "usb", device_uri, sizeof(device_uri));
377 }
378 else
379 {
380 /*
381 * If the open failed because it was busy, flag it so we retry
382 * as needed...
383 */
384
385 if (errno == EBUSY)
386 busy = 1;
387
388 device_uri[0] = '\0';
389 }
390
391 if (!strcmp(uri, device_uri))
392 {
393 /*
394 * Yes, return this file descriptor...
395 */
396
397 fprintf(stderr, "DEBUG: Printer using device file \"%s\"...\n",
398 device);
399
400 return (fd);
401 }
402
403 /*
404 * This wasn't the one...
405 */
406
407 if (fd >= 0)
408 close(fd);
409 }
410
411 /*
412 * If we get here and at least one of the printer ports showed up
413 * as "busy", then sleep for a bit and retry...
414 */
415
416 if (busy)
417 {
418 _cupsLangPuts(stderr,
419 _("INFO: Printer busy; will retry in 5 seconds...\n"));
420 sleep(5);
421 }
422 }
423 }
424 #elif defined(__sun) && defined(ECPPIOC_GETDEVID)
425 {
426 /*
427 * Do not allow direct devices anymore...
428 */
429
430 errno = ENODEV;
431 return (-1);
432 }
433 else if (!strncmp(uri, "usb://", 6))
434 {
435 /*
436 * For Solaris, try looking up the device serial number or model...
437 */
438
439 int i; /* Looping var */
440 int busy; /* Are any ports busy? */
441 char device[255], /* Device filename */
442 device_id[1024], /* Device ID string */
443 make_model[1024], /* Make and model */
444 device_uri[1024]; /* Device URI string */
445
446
447 /*
448 * Find the correct USB device...
449 */
450
451 do
452 {
453 for (i = 0, busy = 0; i < 8; i ++)
454 {
455 sprintf(device, "/dev/usb/printer%d", i);
456
457 if ((fd = open(device, O_WRONLY | O_EXCL)) >= 0)
458 backendGetDeviceID(fd, device_id, sizeof(device_id),
459 make_model, sizeof(make_model),
460 "usb", device_uri, sizeof(device_uri));
461 else
462 {
463 /*
464 * If the open failed because it was busy, flag it so we retry
465 * as needed...
466 */
467
468 if (errno == EBUSY)
469 busy = 1;
470
471 device_uri[0] = '\0';
472 }
473
474 if (!strcmp(uri, device_uri))
475 {
476 /*
477 * Yes, return this file descriptor...
478 */
479
480 fputs("DEBUG: Setting use_bc to 0!\n", stderr);
481
482 *use_bc = 0;
483
484 return (fd);
485 }
486
487 /*
488 * This wasn't the one...
489 */
490
491 if (fd >= 0)
492 close(fd);
493 }
494
495 /*
496 * If we get here and at least one of the printer ports showed up
497 * as "busy", then sleep for a bit and retry...
498 */
499
500 if (busy)
501 {
502 _cupsLangPuts(stderr,
503 _("INFO: Printer is busy; will retry in 5 seconds...\n"));
504 sleep(5);
505 }
506 }
507 while (busy);
508
509 /*
510 * Couldn't find the printer, return "no such device or address"...
511 */
512
513 errno = ENODEV;
514
515 return (-1);
516 }
517 #else
518 {
519 if (use_bc)
520 fd = open(uri + 4, O_RDWR | O_EXCL);
521 else
522 fd = -1;
523
524 if (fd < 0)
525 {
526 fd = open(uri + 4, O_WRONLY | O_EXCL);
527 *use_bc = 0;
528 }
529
530 return (fd);
531 }
532 #endif /* __linux */
533 else
534 {
535 errno = ENODEV;
536 return (-1);
537 }
538 }
539
540
541 /*
542 * 'side_cb()' - Handle side-channel requests...
543 */
544
545 static void
546 side_cb(int print_fd, /* I - Print file */
547 int device_fd, /* I - Device file */
548 int use_bc) /* I - Using back-channel? */
549 {
550 cups_sc_command_t command; /* Request command */
551 cups_sc_status_t status; /* Request/response status */
552 char data[2048]; /* Request/response data */
553 int datalen; /* Request/response data size */
554
555
556 datalen = sizeof(data);
557
558 if (cupsSideChannelRead(&command, &status, data, &datalen, 1.0))
559 {
560 _cupsLangPuts(stderr, _("WARNING: Failed to read side-channel request!\n"));
561 return;
562 }
563
564 switch (command)
565 {
566 case CUPS_SC_CMD_DRAIN_OUTPUT :
567 if (backendDrainOutput(print_fd, device_fd))
568 status = CUPS_SC_STATUS_IO_ERROR;
569 else if (tcdrain(device_fd))
570 status = CUPS_SC_STATUS_IO_ERROR;
571 else
572 status = CUPS_SC_STATUS_OK;
573
574 datalen = 0;
575 break;
576
577 case CUPS_SC_CMD_GET_BIDI :
578 data[0] = use_bc;
579 datalen = 1;
580 break;
581
582 case CUPS_SC_CMD_GET_DEVICE_ID :
583 memset(data, 0, sizeof(data));
584
585 if (backendGetDeviceID(device_fd, data, sizeof(data) - 1,
586 NULL, 0, NULL, NULL, 0))
587 {
588 status = CUPS_SC_STATUS_NOT_IMPLEMENTED;
589 datalen = 0;
590 }
591 else
592 {
593 status = CUPS_SC_STATUS_OK;
594 datalen = strlen(data);
595 }
596 break;
597
598 default :
599 status = CUPS_SC_STATUS_NOT_IMPLEMENTED;
600 datalen = 0;
601 break;
602 }
603
604 cupsSideChannelWrite(command, status, data, datalen, 1.0);
605 }
606
607
608 /*
609 * End of "$Id: usb-unix.c 6910 2007-09-04 20:34:29Z mike $".
610 */