]> git.ipfire.org Git - thirdparty/cups.git/blob - backend/usb-unix.c
Merge changes from CUPS 1.3.1.
[thirdparty/cups.git] / backend / usb-unix.c
1 /*
2 * "$Id: usb-unix.c 6911 2007-09-04 20:35:08Z 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 strcasecmp(hostname, "Konica Minolta") &&
94 strcasecmp(hostname, "Minolta");
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__)
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 do
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 while (busy);
424
425 /*
426 * Couldn't find the printer, return "no such device or address"...
427 */
428
429 errno = ENODEV;
430
431 return (-1);
432 }
433 #elif defined(__sun) && defined(ECPPIOC_GETDEVID)
434 {
435 /*
436 * Do not allow direct devices anymore...
437 */
438
439 errno = ENODEV;
440 return (-1);
441 }
442 else if (!strncmp(uri, "usb://", 6))
443 {
444 /*
445 * For Solaris, try looking up the device serial number or model...
446 */
447
448 int i; /* Looping var */
449 int busy; /* Are any ports busy? */
450 char device[255], /* Device filename */
451 device_id[1024], /* Device ID string */
452 make_model[1024], /* Make and model */
453 device_uri[1024]; /* Device URI string */
454
455
456 /*
457 * Find the correct USB device...
458 */
459
460 do
461 {
462 for (i = 0, busy = 0; i < 8; i ++)
463 {
464 sprintf(device, "/dev/usb/printer%d", i);
465
466 if ((fd = open(device, O_WRONLY | O_EXCL)) >= 0)
467 backendGetDeviceID(fd, device_id, sizeof(device_id),
468 make_model, sizeof(make_model),
469 "usb", device_uri, sizeof(device_uri));
470 else
471 {
472 /*
473 * If the open failed because it was busy, flag it so we retry
474 * as needed...
475 */
476
477 if (errno == EBUSY)
478 busy = 1;
479
480 device_uri[0] = '\0';
481 }
482
483 if (!strcmp(uri, device_uri))
484 {
485 /*
486 * Yes, return this file descriptor...
487 */
488
489 fputs("DEBUG: Setting use_bc to 0!\n", stderr);
490
491 *use_bc = 0;
492
493 return (fd);
494 }
495
496 /*
497 * This wasn't the one...
498 */
499
500 if (fd >= 0)
501 close(fd);
502 }
503
504 /*
505 * If we get here and at least one of the printer ports showed up
506 * as "busy", then sleep for a bit and retry...
507 */
508
509 if (busy)
510 {
511 _cupsLangPuts(stderr,
512 _("INFO: Printer is busy; will retry in 5 seconds...\n"));
513 sleep(5);
514 }
515 }
516 while (busy);
517
518 /*
519 * Couldn't find the printer, return "no such device or address"...
520 */
521
522 errno = ENODEV;
523
524 return (-1);
525 }
526 #else
527 {
528 if (use_bc)
529 fd = open(uri + 4, O_RDWR | O_EXCL);
530 else
531 fd = -1;
532
533 if (fd < 0)
534 {
535 fd = open(uri + 4, O_WRONLY | O_EXCL);
536 *use_bc = 0;
537 }
538
539 return (fd);
540 }
541 #endif /* __linux */
542 else
543 {
544 errno = ENODEV;
545 return (-1);
546 }
547 }
548
549
550 /*
551 * 'side_cb()' - Handle side-channel requests...
552 */
553
554 static void
555 side_cb(int print_fd, /* I - Print file */
556 int device_fd, /* I - Device file */
557 int use_bc) /* I - Using back-channel? */
558 {
559 cups_sc_command_t command; /* Request command */
560 cups_sc_status_t status; /* Request/response status */
561 char data[2048]; /* Request/response data */
562 int datalen; /* Request/response data size */
563
564
565 datalen = sizeof(data);
566
567 if (cupsSideChannelRead(&command, &status, data, &datalen, 1.0))
568 {
569 _cupsLangPuts(stderr, _("WARNING: Failed to read side-channel request!\n"));
570 return;
571 }
572
573 switch (command)
574 {
575 case CUPS_SC_CMD_DRAIN_OUTPUT :
576 if (backendDrainOutput(print_fd, device_fd))
577 status = CUPS_SC_STATUS_IO_ERROR;
578 else if (tcdrain(device_fd))
579 status = CUPS_SC_STATUS_IO_ERROR;
580 else
581 status = CUPS_SC_STATUS_OK;
582
583 datalen = 0;
584 break;
585
586 case CUPS_SC_CMD_GET_BIDI :
587 data[0] = use_bc;
588 datalen = 1;
589 break;
590
591 case CUPS_SC_CMD_GET_DEVICE_ID :
592 memset(data, 0, sizeof(data));
593
594 if (backendGetDeviceID(device_fd, data, sizeof(data) - 1,
595 NULL, 0, NULL, NULL, 0))
596 {
597 status = CUPS_SC_STATUS_NOT_IMPLEMENTED;
598 datalen = 0;
599 }
600 else
601 {
602 status = CUPS_SC_STATUS_OK;
603 datalen = strlen(data);
604 }
605 break;
606
607 default :
608 status = CUPS_SC_STATUS_NOT_IMPLEMENTED;
609 datalen = 0;
610 break;
611 }
612
613 cupsSideChannelWrite(command, status, data, datalen, 1.0);
614 }
615
616
617 /*
618 * End of "$Id: usb-unix.c 6911 2007-09-04 20:35:08Z mike $".
619 */