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