]> git.ipfire.org Git - thirdparty/cups.git/blob - backend/ipp.c
Import CUPS v1.7.4
[thirdparty/cups.git] / backend / ipp.c
1 /*
2 * "$Id: ipp.c 11909 2014-06-09 18:58:16Z msweet $"
3 *
4 * IPP backend for CUPS.
5 *
6 * Copyright 2007-2013 by Apple Inc.
7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * "LICENSE" which should have been included with this file. If this
13 * file is missing or damaged, see the license at "http://www.cups.org/".
14 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 */
17
18 /*
19 * Include necessary headers.
20 */
21
22 #include "backend-private.h"
23 #include <cups/array-private.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <sys/wait.h>
27 #if defined(HAVE_GSSAPI) && defined(HAVE_XPC)
28 # include <xpc/xpc.h>
29 # define kPMPrintUIToolAgent "com.apple.printuitool.agent"
30 # define kPMStartJob 100
31 # define kPMWaitForJob 101
32 # ifdef HAVE_XPC_PRIVATE_H
33 # include <xpc/private.h>
34 # else
35 extern void xpc_connection_set_target_uid(xpc_connection_t connection,
36 uid_t uid);
37 # endif /* HAVE_XPC_PRIVATE_H */
38 #endif /* HAVE_GSSAPI && HAVE_XPC */
39
40
41 /*
42 * Bits for job-state-reasons we care about...
43 */
44
45 #define _CUPS_JSR_ACCOUNT_AUTHORIZATION_FAILED 0x01
46 #define _CUPS_JSR_ACCOUNT_CLOSED 0x02
47 #define _CUPS_JSR_ACCOUNT_INFO_NEEDED 0x04
48 #define _CUPS_JSR_ACCOUNT_LIMIT_REACHED 0x08
49 #define _CUPS_JSR_JOB_PASSWORD_WAIT 0x10
50 #define _CUPS_JSR_JOB_RELEASE_WAIT 0x20
51
52
53 /*
54 * Types...
55 */
56
57 typedef struct _cups_monitor_s /**** Monitoring data ****/
58 {
59 const char *uri, /* Printer URI */
60 *hostname, /* Hostname */
61 *user, /* Username */
62 *resource; /* Resource path */
63 int port, /* Port number */
64 version, /* IPP version */
65 job_id, /* Job ID for submitted job */
66 job_reasons, /* Job state reasons bits */
67 get_job_attrs; /* Support Get-Job-Attributes? */
68 const char *job_name; /* Job name for submitted job */
69 http_encryption_t encryption; /* Use encryption? */
70 ipp_jstate_t job_state; /* Current job state */
71 ipp_pstate_t printer_state; /* Current printer state */
72 } _cups_monitor_t;
73
74
75 /*
76 * Globals...
77 */
78
79 static const char *auth_info_required;
80 /* New auth-info-required value */
81 #if defined(HAVE_GSSAPI) && defined(HAVE_XPC)
82 static int child_pid = 0; /* Child process ID */
83 #endif /* HAVE_GSSAPI && HAVE_XPC */
84 static const char * const jattrs[] = /* Job attributes we want */
85 {
86 "job-id",
87 "job-impressions-completed",
88 "job-media-sheets-completed",
89 "job-name",
90 "job-originating-user-name",
91 "job-state",
92 "job-state-reasons"
93 };
94 static int job_canceled = 0,
95 /* Job cancelled? */
96 uri_credentials = 0;
97 /* Credentials supplied in URI? */
98 static char username[256] = "",
99 /* Username for device URI */
100 *password = NULL;
101 /* Password for device URI */
102 static const char * const pattrs[] = /* Printer attributes we want */
103 {
104 #ifdef HAVE_LIBZ
105 "compression-supported",
106 #endif /* HAVE_LIBZ */
107 "copies-supported",
108 "cups-version",
109 "document-format-supported",
110 "marker-colors",
111 "marker-high-levels",
112 "marker-levels",
113 "marker-low-levels",
114 "marker-message",
115 "marker-names",
116 "marker-types",
117 "media-col-supported",
118 "multiple-document-handling-supported",
119 "operations-supported",
120 "print-color-mode-supported",
121 "printer-alert",
122 "printer-alert-description",
123 "printer-is-accepting-jobs",
124 "printer-state",
125 "printer-state-message",
126 "printer-state-reasons"
127 };
128 static const char * const remote_job_states[] =
129 { /* Remote job state keywords */
130 "+cups-remote-pending",
131 "+cups-remote-pending-held",
132 "+cups-remote-processing",
133 "+cups-remote-stopped",
134 "+cups-remote-canceled",
135 "+cups-remote-aborted",
136 "+cups-remote-completed"
137 };
138 static _cups_mutex_t report_mutex = _CUPS_MUTEX_INITIALIZER;
139 /* Mutex to control access */
140 static int num_attr_cache = 0;
141 /* Number of cached attributes */
142 static cups_option_t *attr_cache = NULL;
143 /* Cached attributes */
144 static cups_array_t *state_reasons; /* Array of printe-state-reasons keywords */
145 static char tmpfilename[1024] = "";
146 /* Temporary spool file name */
147
148
149 /*
150 * Local functions...
151 */
152
153 static void cancel_job(http_t *http, const char *uri, int id,
154 const char *resource, const char *user,
155 int version);
156 static ipp_pstate_t check_printer_state(http_t *http, const char *uri,
157 const char *resource,
158 const char *user, int version);
159 static void *monitor_printer(_cups_monitor_t *monitor);
160 static ipp_t *new_request(ipp_op_t op, int version, const char *uri,
161 const char *user, const char *title,
162 int num_options, cups_option_t *options,
163 const char *compression, int copies,
164 const char *format, _ppd_cache_t *pc,
165 ppd_file_t *ppd,
166 ipp_attribute_t *media_col_sup,
167 ipp_attribute_t *doc_handling_sup,
168 ipp_attribute_t *print_color_mode_sup);
169 static const char *password_cb(const char *prompt, http_t *http,
170 const char *method, const char *resource,
171 int *user_data);
172 static const char *quote_string(const char *s, char *q, size_t qsize);
173 static void report_attr(ipp_attribute_t *attr);
174 static void report_printer_state(ipp_t *ipp);
175 #if defined(HAVE_GSSAPI) && defined(HAVE_XPC)
176 static int run_as_user(char *argv[], uid_t uid,
177 const char *device_uri, int fd);
178 #endif /* HAVE_GSSAPI && HAVE_XPC */
179 static void sigterm_handler(int sig);
180 static int timeout_cb(http_t *http, void *user_data);
181 static void update_reasons(ipp_attribute_t *attr, const char *s);
182
183
184 /*
185 * 'main()' - Send a file to the printer or server.
186 *
187 * Usage:
188 *
189 * printer-uri job-id user title copies options [file]
190 */
191
192 int /* O - Exit status */
193 main(int argc, /* I - Number of command-line args */
194 char *argv[]) /* I - Command-line arguments */
195 {
196 int i; /* Looping var */
197 int send_options; /* Send job options? */
198 int num_options; /* Number of printer options */
199 cups_option_t *options; /* Printer options */
200 const char *device_uri; /* Device URI */
201 char scheme[255], /* Scheme in URI */
202 hostname[1024], /* Hostname */
203 resource[1024], /* Resource info (printer name) */
204 addrname[256], /* Address name */
205 *optptr, /* Pointer to URI options */
206 *name, /* Name of option */
207 *value, /* Value of option */
208 sep; /* Separator character */
209 int password_tries = 0; /* Password tries */
210 http_addrlist_t *addrlist; /* Address of printer */
211 int snmp_enabled = 1; /* Is SNMP enabled? */
212 int snmp_fd, /* SNMP socket */
213 start_count, /* Page count via SNMP at start */
214 page_count, /* Page count via SNMP */
215 have_supplies; /* Printer supports supply levels? */
216 int num_files; /* Number of files to print */
217 char **files, /* Files to print */
218 *compatfile = NULL; /* Compatibility filename */
219 off_t compatsize = 0; /* Size of compatibility file */
220 int port; /* Port number (not used) */
221 char portname[255]; /* Port name */
222 char uri[HTTP_MAX_URI]; /* Updated URI without user/pass */
223 char print_job_name[1024]; /* Update job-name for Print-Job */
224 http_status_t http_status; /* Status of HTTP request */
225 ipp_status_t ipp_status; /* Status of IPP request */
226 http_t *http; /* HTTP connection */
227 ipp_t *request, /* IPP request */
228 *response, /* IPP response */
229 *supported; /* get-printer-attributes response */
230 time_t start_time; /* Time of first connect */
231 int contimeout; /* Connection timeout */
232 int delay, /* Delay for retries */
233 prev_delay; /* Previous delay */
234 const char *compression; /* Compression mode */
235 int waitjob, /* Wait for job complete? */
236 waitjob_tries = 0, /* Number of times we've waited */
237 waitprinter; /* Wait for printer ready? */
238 _cups_monitor_t monitor; /* Monitoring data */
239 ipp_attribute_t *job_id_attr; /* job-id attribute */
240 int job_id; /* job-id value */
241 ipp_attribute_t *job_sheets; /* job-media-sheets-completed */
242 ipp_attribute_t *job_state; /* job-state */
243 #ifdef HAVE_LIBZ
244 ipp_attribute_t *compression_sup; /* compression-supported */
245 #endif /* HAVE_LIBZ */
246 ipp_attribute_t *copies_sup; /* copies-supported */
247 ipp_attribute_t *cups_version; /* cups-version */
248 ipp_attribute_t *format_sup; /* document-format-supported */
249 ipp_attribute_t *job_auth; /* job-authorization-uri */
250 ipp_attribute_t *media_col_sup; /* media-col-supported */
251 ipp_attribute_t *operations_sup; /* operations-supported */
252 ipp_attribute_t *doc_handling_sup; /* multiple-document-handling-supported */
253 ipp_attribute_t *printer_state; /* printer-state attribute */
254 ipp_attribute_t *printer_accepting; /* printer-is-accepting-jobs */
255 ipp_attribute_t *print_color_mode_sup;/* Does printer support print-color-mode? */
256 int create_job = 0, /* Does printer support Create-Job? */
257 get_job_attrs = 0, /* Does printer support Get-Job-Attributes? */
258 send_document = 0, /* Does printer support Send-Document? */
259 validate_job = 0, /* Does printer support Validate-Job? */
260 copies, /* Number of copies for job */
261 copies_remaining; /* Number of copies remaining */
262 const char *content_type, /* CONTENT_TYPE environment variable */
263 *final_content_type, /* FINAL_CONTENT_TYPE environment var */
264 *document_format; /* document-format value */
265 int fd; /* File descriptor */
266 off_t bytes = 0; /* Bytes copied */
267 char buffer[16384]; /* Copy buffer */
268 #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
269 struct sigaction action; /* Actions for POSIX signals */
270 #endif /* HAVE_SIGACTION && !HAVE_SIGSET */
271 int version; /* IPP version */
272 ppd_file_t *ppd = NULL; /* PPD file */
273 _ppd_cache_t *pc = NULL; /* PPD cache and mapping data */
274 fd_set input; /* Input set for select() */
275
276
277 /*
278 * Make sure status messages are not buffered...
279 */
280
281 setbuf(stderr, NULL);
282
283 /*
284 * Ignore SIGPIPE and catch SIGTERM signals...
285 */
286
287 #ifdef HAVE_SIGSET
288 sigset(SIGPIPE, SIG_IGN);
289 sigset(SIGTERM, sigterm_handler);
290 #elif defined(HAVE_SIGACTION)
291 memset(&action, 0, sizeof(action));
292 action.sa_handler = SIG_IGN;
293 sigaction(SIGPIPE, &action, NULL);
294
295 sigemptyset(&action.sa_mask);
296 sigaddset(&action.sa_mask, SIGTERM);
297 action.sa_handler = sigterm_handler;
298 sigaction(SIGTERM, &action, NULL);
299 #else
300 signal(SIGPIPE, SIG_IGN);
301 signal(SIGTERM, sigterm_handler);
302 #endif /* HAVE_SIGSET */
303
304 /*
305 * Check command-line...
306 */
307
308 if (argc == 1)
309 {
310 char *s;
311
312 if ((s = strrchr(argv[0], '/')) != NULL)
313 s ++;
314 else
315 s = argv[0];
316
317 printf("network %s \"Unknown\" \"%s (%s)\"\n",
318 s, _cupsLangString(cupsLangDefault(),
319 _("Internet Printing Protocol")), s);
320 return (CUPS_BACKEND_OK);
321 }
322 else if (argc < 6)
323 {
324 _cupsLangPrintf(stderr,
325 _("Usage: %s job-id user title copies options [file]"),
326 argv[0]);
327 return (CUPS_BACKEND_STOP);
328 }
329
330 /*
331 * Get the device URI...
332 */
333
334 while ((device_uri = cupsBackendDeviceURI(argv)) == NULL)
335 {
336 _cupsLangPrintFilter(stderr, "INFO", _("Unable to locate printer."));
337 sleep(10);
338
339 if (getenv("CLASS") != NULL)
340 return (CUPS_BACKEND_FAILED);
341 }
342
343 if ((auth_info_required = getenv("AUTH_INFO_REQUIRED")) == NULL)
344 auth_info_required = "none";
345
346 state_reasons = _cupsArrayNewStrings(getenv("PRINTER_STATE_REASONS"), ',');
347
348 #ifdef HAVE_GSSAPI
349 /*
350 * For Kerberos, become the printing user (if we can) to get the credentials
351 * that way.
352 */
353
354 if (!getuid() && (value = getenv("AUTH_UID")) != NULL &&
355 !getenv("AUTH_PASSWORD"))
356 {
357 uid_t uid = (uid_t)atoi(value);
358 /* User ID */
359
360 # ifdef HAVE_XPC
361 if (uid > 0)
362 {
363 if (argc == 6)
364 return (run_as_user(argv, uid, device_uri, 0));
365 else
366 {
367 int status = 0; /* Exit status */
368
369 for (i = 6; i < argc && !status && !job_canceled; i ++)
370 {
371 if ((fd = open(argv[i], O_RDONLY)) >= 0)
372 {
373 status = run_as_user(argv, uid, device_uri, fd);
374 close(fd);
375 }
376 else
377 {
378 _cupsLangPrintError("ERROR", _("Unable to open print file"));
379 status = CUPS_BACKEND_FAILED;
380 }
381 }
382
383 return (status);
384 }
385 }
386
387 # else /* No XPC, just try to run as the user ID */
388 if (uid > 0)
389 seteuid(uid);
390 # endif /* HAVE_XPC */
391 }
392 #endif /* HAVE_GSSAPI */
393
394 /*
395 * Get the (final) content type...
396 */
397
398 if ((content_type = getenv("CONTENT_TYPE")) == NULL)
399 content_type = "application/octet-stream";
400
401 if ((final_content_type = getenv("FINAL_CONTENT_TYPE")) == NULL)
402 {
403 final_content_type = content_type;
404
405 if (!strncmp(final_content_type, "printer/", 8))
406 final_content_type = "application/vnd.cups-raw";
407 }
408
409 /*
410 * Extract the hostname and printer name from the URI...
411 */
412
413 httpSeparateURI(HTTP_URI_CODING_ALL, device_uri, scheme, sizeof(scheme),
414 username, sizeof(username), hostname, sizeof(hostname), &port,
415 resource, sizeof(resource));
416
417 if (!port)
418 port = IPP_PORT; /* Default to port 631 */
419
420 if (!strcmp(scheme, "https") || !strcmp(scheme, "ipps"))
421 cupsSetEncryption(HTTP_ENCRYPT_ALWAYS);
422 else
423 cupsSetEncryption(HTTP_ENCRYPT_IF_REQUESTED);
424
425 /*
426 * See if there are any options...
427 */
428
429 compression = NULL;
430 version = 20;
431 waitjob = 1;
432 waitprinter = 1;
433 contimeout = 7 * 24 * 60 * 60;
434
435 if ((optptr = strchr(resource, '?')) != NULL)
436 {
437 /*
438 * Yup, terminate the device name string and move to the first
439 * character of the optptr...
440 */
441
442 *optptr++ = '\0';
443
444 /*
445 * Then parse the optptr...
446 */
447
448 while (*optptr)
449 {
450 /*
451 * Get the name...
452 */
453
454 name = optptr;
455
456 while (*optptr && *optptr != '=' && *optptr != '+' && *optptr != '&')
457 optptr ++;
458
459 if ((sep = *optptr) != '\0')
460 *optptr++ = '\0';
461
462 if (sep == '=')
463 {
464 /*
465 * Get the value...
466 */
467
468 value = optptr;
469
470 while (*optptr && *optptr != '+' && *optptr != '&')
471 optptr ++;
472
473 if (*optptr)
474 *optptr++ = '\0';
475 }
476 else
477 value = (char *)"";
478
479 /*
480 * Process the option...
481 */
482
483 if (!_cups_strcasecmp(name, "waitjob"))
484 {
485 /*
486 * Wait for job completion?
487 */
488
489 waitjob = !_cups_strcasecmp(value, "on") ||
490 !_cups_strcasecmp(value, "yes") ||
491 !_cups_strcasecmp(value, "true");
492 }
493 else if (!_cups_strcasecmp(name, "waitprinter"))
494 {
495 /*
496 * Wait for printer idle?
497 */
498
499 waitprinter = !_cups_strcasecmp(value, "on") ||
500 !_cups_strcasecmp(value, "yes") ||
501 !_cups_strcasecmp(value, "true");
502 }
503 else if (!_cups_strcasecmp(name, "encryption"))
504 {
505 /*
506 * Enable/disable encryption?
507 */
508
509 if (!_cups_strcasecmp(value, "always"))
510 cupsSetEncryption(HTTP_ENCRYPT_ALWAYS);
511 else if (!_cups_strcasecmp(value, "required"))
512 cupsSetEncryption(HTTP_ENCRYPT_REQUIRED);
513 else if (!_cups_strcasecmp(value, "never"))
514 cupsSetEncryption(HTTP_ENCRYPT_NEVER);
515 else if (!_cups_strcasecmp(value, "ifrequested"))
516 cupsSetEncryption(HTTP_ENCRYPT_IF_REQUESTED);
517 else
518 {
519 _cupsLangPrintFilter(stderr, "ERROR",
520 _("Unknown encryption option value: \"%s\"."),
521 value);
522 }
523 }
524 else if (!_cups_strcasecmp(name, "snmp"))
525 {
526 /*
527 * Enable/disable SNMP stuff...
528 */
529
530 snmp_enabled = !value[0] || !_cups_strcasecmp(value, "on") ||
531 !_cups_strcasecmp(value, "yes") ||
532 !_cups_strcasecmp(value, "true");
533 }
534 else if (!_cups_strcasecmp(name, "version"))
535 {
536 if (!strcmp(value, "1.0"))
537 version = 10;
538 else if (!strcmp(value, "1.1"))
539 version = 11;
540 else if (!strcmp(value, "2.0"))
541 version = 20;
542 else if (!strcmp(value, "2.1"))
543 version = 21;
544 else if (!strcmp(value, "2.2"))
545 version = 22;
546 else
547 {
548 _cupsLangPrintFilter(stderr, "ERROR",
549 _("Unknown version option value: \"%s\"."),
550 value);
551 }
552 }
553 #ifdef HAVE_LIBZ
554 else if (!_cups_strcasecmp(name, "compression"))
555 {
556 if (!_cups_strcasecmp(value, "true") || !_cups_strcasecmp(value, "yes") ||
557 !_cups_strcasecmp(value, "on") || !_cups_strcasecmp(value, "gzip"))
558 compression = "gzip";
559 else if (!_cups_strcasecmp(value, "deflate"))
560 compression = "deflate";
561 else if (!_cups_strcasecmp(value, "false") ||
562 !_cups_strcasecmp(value, "no") ||
563 !_cups_strcasecmp(value, "off") ||
564 !_cups_strcasecmp(value, "none"))
565 compression = "none";
566 }
567 #endif /* HAVE_LIBZ */
568 else if (!_cups_strcasecmp(name, "contimeout"))
569 {
570 /*
571 * Set the connection timeout...
572 */
573
574 if (atoi(value) > 0)
575 contimeout = atoi(value);
576 }
577 else
578 {
579 /*
580 * Unknown option...
581 */
582
583 _cupsLangPrintFilter(stderr, "ERROR",
584 _("Unknown option \"%s\" with value \"%s\"."),
585 name, value);
586 }
587 }
588 }
589
590 /*
591 * If we have 7 arguments, print the file named on the command-line.
592 * Otherwise, copy stdin to a temporary file and print the temporary
593 * file.
594 */
595
596 if (argc == 6)
597 {
598 num_files = 0;
599 files = NULL;
600 send_options = !_cups_strcasecmp(final_content_type, "application/pdf") ||
601 !_cups_strcasecmp(final_content_type, "application/vnd.cups-pdf") ||
602 !_cups_strncasecmp(final_content_type, "image/", 6);
603
604 fputs("DEBUG: Sending stdin for job...\n", stderr);
605 }
606 else
607 {
608 /*
609 * Point to the files on the command-line...
610 */
611
612 num_files = argc - 6;
613 files = argv + 6;
614 send_options = 1;
615
616 fprintf(stderr, "DEBUG: %d files to send in job...\n", num_files);
617 }
618
619 /*
620 * Set the authentication info, if any...
621 */
622
623 cupsSetPasswordCB2((cups_password_cb2_t)password_cb, &password_tries);
624
625 if (username[0])
626 {
627 /*
628 * Use authentication information in the device URI...
629 */
630
631 if ((password = strchr(username, ':')) != NULL)
632 *password++ = '\0';
633
634 cupsSetUser(username);
635 uri_credentials = 1;
636 }
637 else
638 {
639 /*
640 * Try loading authentication information from the environment.
641 */
642
643 const char *ptr = getenv("AUTH_USERNAME");
644
645 if (ptr)
646 {
647 strlcpy(username, ptr, sizeof(username));
648 cupsSetUser(ptr);
649 }
650
651 password = getenv("AUTH_PASSWORD");
652 }
653
654 /*
655 * Try finding the remote server...
656 */
657
658 start_time = time(NULL);
659
660 sprintf(portname, "%d", port);
661
662 update_reasons(NULL, "+connecting-to-device");
663 fprintf(stderr, "DEBUG: Looking up \"%s\"...\n", hostname);
664
665 while ((addrlist = httpAddrGetList(hostname, AF_UNSPEC, portname)) == NULL)
666 {
667 _cupsLangPrintFilter(stderr, "INFO",
668 _("Unable to locate printer \"%s\"."), hostname);
669 sleep(10);
670
671 if (getenv("CLASS") != NULL)
672 {
673 update_reasons(NULL, "-connecting-to-device");
674 return (CUPS_BACKEND_STOP);
675 }
676
677 if (job_canceled)
678 return (CUPS_BACKEND_OK);
679 }
680
681 http = httpConnect2(hostname, port, addrlist, AF_UNSPEC, cupsEncryption(), 1,
682 0, NULL);
683 httpSetTimeout(http, 30.0, timeout_cb, NULL);
684
685 /*
686 * See if the printer supports SNMP...
687 */
688
689 if (snmp_enabled)
690 snmp_fd = _cupsSNMPOpen(addrlist->addr.addr.sa_family);
691 else
692 snmp_fd = -1;
693
694 if (snmp_fd >= 0)
695 have_supplies = !backendSNMPSupplies(snmp_fd, &(addrlist->addr),
696 &start_count, NULL);
697 else
698 have_supplies = start_count = 0;
699
700 /*
701 * Wait for data from the filter...
702 */
703
704 if (num_files == 0)
705 {
706 if (!backendWaitLoop(snmp_fd, &(addrlist->addr), 0, backendNetworkSideCB))
707 return (CUPS_BACKEND_OK);
708 else if ((bytes = read(0, buffer, sizeof(buffer))) <= 0)
709 return (CUPS_BACKEND_OK);
710 }
711
712 /*
713 * Try connecting to the remote server...
714 */
715
716 delay = _cupsNextDelay(0, &prev_delay);
717
718 do
719 {
720 fprintf(stderr, "DEBUG: Connecting to %s:%d\n", hostname, port);
721 _cupsLangPrintFilter(stderr, "INFO", _("Connecting to printer."));
722
723 if (httpReconnect(http))
724 {
725 int error = errno; /* Connection error */
726
727 if (http->status == HTTP_PKI_ERROR)
728 update_reasons(NULL, "+cups-certificate-error");
729
730 if (job_canceled)
731 break;
732
733 if (getenv("CLASS") != NULL)
734 {
735 /*
736 * If the CLASS environment variable is set, the job was submitted
737 * to a class and not to a specific queue. In this case, we want
738 * to abort immediately so that the job can be requeued on the next
739 * available printer in the class.
740 */
741
742 _cupsLangPrintFilter(stderr, "INFO",
743 _("Unable to contact printer, queuing on next "
744 "printer in class."));
745
746 /*
747 * Sleep 5 seconds to keep the job from requeuing too rapidly...
748 */
749
750 sleep(5);
751
752 update_reasons(NULL, "-connecting-to-device");
753
754 return (CUPS_BACKEND_FAILED);
755 }
756
757 fprintf(stderr, "DEBUG: Connection error: %s\n", strerror(errno));
758
759 if (errno == ECONNREFUSED || errno == EHOSTDOWN ||
760 errno == EHOSTUNREACH)
761 {
762 if (contimeout && (time(NULL) - start_time) > contimeout)
763 {
764 _cupsLangPrintFilter(stderr, "ERROR",
765 _("The printer is not responding."));
766 update_reasons(NULL, "-connecting-to-device");
767 return (CUPS_BACKEND_FAILED);
768 }
769
770 switch (error)
771 {
772 case EHOSTDOWN :
773 _cupsLangPrintFilter(stderr, "WARNING",
774 _("The printer may not exist or "
775 "is unavailable at this time."));
776 break;
777
778 case EHOSTUNREACH :
779 _cupsLangPrintFilter(stderr, "WARNING",
780 _("The printer is unreachable at this "
781 "time."));
782 break;
783
784 case ECONNREFUSED :
785 default :
786 _cupsLangPrintFilter(stderr, "WARNING",
787 _("The printer is in use."));
788 break;
789 }
790
791 sleep(delay);
792
793 delay = _cupsNextDelay(delay, &prev_delay);
794 }
795 else
796 {
797 _cupsLangPrintFilter(stderr, "ERROR",
798 _("The printer is not responding."));
799 sleep(30);
800 }
801
802 if (job_canceled)
803 break;
804 }
805 else
806 update_reasons(NULL, "-cups-certificate-error");
807 }
808 while (http->fd < 0);
809
810 if (job_canceled)
811 return (CUPS_BACKEND_OK);
812 else if (!http)
813 return (CUPS_BACKEND_FAILED);
814
815 update_reasons(NULL, "-connecting-to-device");
816 _cupsLangPrintFilter(stderr, "INFO", _("Connected to printer."));
817
818 fprintf(stderr, "DEBUG: Connected to %s:%d...\n",
819 httpAddrString(http->hostaddr, addrname, sizeof(addrname)),
820 httpAddrPort(http->hostaddr));
821
822 /*
823 * Build a URI for the printer and fill the standard IPP attributes for
824 * an IPP_PRINT_FILE request. We can't use the URI in argv[0] because it
825 * might contain username:password information...
826 */
827
828 httpAssembleURI(HTTP_URI_CODING_ALL, uri, sizeof(uri), scheme, NULL, hostname,
829 port, resource);
830
831 /*
832 * First validate the destination and see if the device supports multiple
833 * copies...
834 */
835
836 #ifdef HAVE_LIBZ
837 compression_sup = NULL;
838 #endif /* HAVE_LIBZ */
839 copies_sup = NULL;
840 cups_version = NULL;
841 format_sup = NULL;
842 media_col_sup = NULL;
843 supported = NULL;
844 operations_sup = NULL;
845 doc_handling_sup = NULL;
846
847 do
848 {
849 /*
850 * Check for side-channel requests...
851 */
852
853 backendCheckSideChannel(snmp_fd, http->hostaddr);
854
855 /*
856 * Build the IPP request...
857 */
858
859 request = ippNewRequest(IPP_GET_PRINTER_ATTRIBUTES);
860 request->request.op.version[0] = version / 10;
861 request->request.op.version[1] = version % 10;
862
863 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
864 NULL, uri);
865
866 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
867 "requested-attributes", sizeof(pattrs) / sizeof(pattrs[0]),
868 NULL, pattrs);
869
870 /*
871 * Do the request...
872 */
873
874 fputs("DEBUG: Getting supported attributes...\n", stderr);
875
876 if (http->version < HTTP_1_1)
877 {
878 fprintf(stderr, "DEBUG: Printer responded with HTTP version %d.%d.\n",
879 http->version / 100, http->version % 100);
880 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
881 "cups-ipp-wrong-http-version");
882 }
883
884 supported = cupsDoRequest(http, request, resource);
885 ipp_status = cupsLastError();
886
887 fprintf(stderr, "DEBUG: Get-Printer-Attributes: %s (%s)\n",
888 ippErrorString(ipp_status), cupsLastErrorString());
889
890 if (ipp_status <= IPP_OK_CONFLICT)
891 password_tries = 0;
892 else
893 {
894 fprintf(stderr, "DEBUG: Get-Printer-Attributes returned %s.\n",
895 ippErrorString(ipp_status));
896
897 if (ipp_status == IPP_PRINTER_BUSY ||
898 ipp_status == IPP_SERVICE_UNAVAILABLE)
899 {
900 if (contimeout && (time(NULL) - start_time) > contimeout)
901 {
902 _cupsLangPrintFilter(stderr, "ERROR",
903 _("The printer is not responding."));
904 return (CUPS_BACKEND_FAILED);
905 }
906
907 _cupsLangPrintFilter(stderr, "INFO", _("The printer is in use."));
908
909 report_printer_state(supported);
910
911 sleep(delay);
912
913 delay = _cupsNextDelay(delay, &prev_delay);
914 }
915 else if ((ipp_status == IPP_BAD_REQUEST ||
916 ipp_status == IPP_VERSION_NOT_SUPPORTED) && version > 10)
917 {
918 /*
919 * Switch to IPP/1.1 or IPP/1.0...
920 */
921
922 if (version >= 20)
923 {
924 _cupsLangPrintFilter(stderr, "INFO", _("Preparing to print."));
925 fprintf(stderr,
926 "DEBUG: The printer does not support IPP/%d.%d, trying "
927 "IPP/1.1.\n", version / 10, version % 10);
928 version = 11;
929 }
930 else
931 {
932 _cupsLangPrintFilter(stderr, "INFO", _("Preparing to print."));
933 fprintf(stderr,
934 "DEBUG: The printer does not support IPP/%d.%d, trying "
935 "IPP/1.0.\n", version / 10, version % 10);
936 version = 10;
937 }
938
939 httpReconnect(http);
940 }
941 else if (ipp_status == IPP_NOT_FOUND)
942 {
943 _cupsLangPrintFilter(stderr, "ERROR",
944 _("The printer configuration is incorrect or the "
945 "printer no longer exists."));
946
947 ippDelete(supported);
948
949 return (CUPS_BACKEND_STOP);
950 }
951 else if (ipp_status == IPP_FORBIDDEN ||
952 ipp_status == IPP_AUTHENTICATION_CANCELED)
953 {
954 const char *www_auth = httpGetField(http, HTTP_FIELD_WWW_AUTHENTICATE);
955 /* WWW-Authenticate field value */
956
957 if (!strncmp(www_auth, "Negotiate", 9))
958 auth_info_required = "negotiate";
959 else if (www_auth[0])
960 auth_info_required = "username,password";
961
962 fprintf(stderr, "ATTR: auth-info-required=%s\n", auth_info_required);
963 return (CUPS_BACKEND_AUTH_REQUIRED);
964 }
965 else if (ipp_status != IPP_NOT_AUTHORIZED)
966 {
967 _cupsLangPrintFilter(stderr, "ERROR",
968 _("Unable to get printer status."));
969 sleep(10);
970
971 httpReconnect(http);
972 }
973
974 ippDelete(supported);
975 supported = NULL;
976 continue;
977 }
978
979 if (!getenv("CLASS"))
980 {
981 /*
982 * Check printer-is-accepting-jobs = false and printer-state-reasons for the
983 * "spool-area-full" keyword...
984 */
985
986 int busy = 0;
987
988 if ((printer_accepting = ippFindAttribute(supported,
989 "printer-is-accepting-jobs",
990 IPP_TAG_BOOLEAN)) != NULL &&
991 !printer_accepting->values[0].boolean)
992 busy = 1;
993 else if (!printer_accepting)
994 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
995 "cups-ipp-missing-printer-is-accepting-jobs");
996
997 if ((printer_state = ippFindAttribute(supported,
998 "printer-state-reasons",
999 IPP_TAG_KEYWORD)) == NULL)
1000 {
1001 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1002 "cups-ipp-missing-printer-state-reasons");
1003 }
1004 else if (!busy)
1005 {
1006 for (i = 0; i < printer_state->num_values; i ++)
1007 {
1008 if (!strcmp(printer_state->values[0].string.text,
1009 "spool-area-full") ||
1010 !strncmp(printer_state->values[0].string.text, "spool-area-full-",
1011 16))
1012 {
1013 busy = 1;
1014 break;
1015 }
1016 }
1017 }
1018
1019 if (busy)
1020 {
1021 _cupsLangPrintFilter(stderr, "INFO", _("The printer is in use."));
1022
1023 report_printer_state(supported);
1024
1025 sleep(delay);
1026
1027 delay = _cupsNextDelay(delay, &prev_delay);
1028
1029 ippDelete(supported);
1030 supported = NULL;
1031 ipp_status = IPP_STATUS_ERROR_BUSY;
1032 continue;
1033 }
1034 }
1035
1036 /*
1037 * Check for supported attributes...
1038 */
1039
1040 #ifdef HAVE_LIBZ
1041 if ((compression_sup = ippFindAttribute(supported, "compression-supported",
1042 IPP_TAG_KEYWORD)) != NULL)
1043 {
1044 /*
1045 * Check whether the requested compression is supported and/or default to
1046 * compression if supported...
1047 */
1048
1049 if (compression && !ippContainsString(compression_sup, compression))
1050 {
1051 fprintf(stderr, "DEBUG: Printer does not support the requested "
1052 "compression value \"%s\".\n", compression);
1053 compression = NULL;
1054 }
1055 else if (!compression)
1056 {
1057 if (ippContainsString(compression_sup, "gzip"))
1058 compression = "gzip";
1059 else if (ippContainsString(compression_sup, "deflate"))
1060 compression = "deflate";
1061
1062 if (compression)
1063 fprintf(stderr, "DEBUG: Automatically using \"%s\" compression.\n",
1064 compression);
1065 }
1066 }
1067 #endif /* HAVE_LIBZ */
1068
1069 if ((copies_sup = ippFindAttribute(supported, "copies-supported",
1070 IPP_TAG_RANGE)) != NULL)
1071 {
1072 /*
1073 * Has the "copies-supported" attribute - does it have an upper
1074 * bound > 1?
1075 */
1076
1077 fprintf(stderr, "DEBUG: copies-supported=%d-%d\n",
1078 copies_sup->values[0].range.lower,
1079 copies_sup->values[0].range.upper);
1080
1081 if (copies_sup->values[0].range.upper <= 1)
1082 copies_sup = NULL; /* No */
1083 }
1084
1085 cups_version = ippFindAttribute(supported, "cups-version", IPP_TAG_TEXT);
1086
1087 if ((format_sup = ippFindAttribute(supported, "document-format-supported",
1088 IPP_TAG_MIMETYPE)) != NULL)
1089 {
1090 fprintf(stderr, "DEBUG: document-format-supported (%d values)\n",
1091 format_sup->num_values);
1092 for (i = 0; i < format_sup->num_values; i ++)
1093 fprintf(stderr, "DEBUG: [%d] = \"%s\"\n", i,
1094 format_sup->values[i].string.text);
1095 }
1096
1097 if ((media_col_sup = ippFindAttribute(supported, "media-col-supported",
1098 IPP_TAG_KEYWORD)) != NULL)
1099 {
1100 fprintf(stderr, "DEBUG: media-col-supported (%d values)\n",
1101 media_col_sup->num_values);
1102 for (i = 0; i < media_col_sup->num_values; i ++)
1103 fprintf(stderr, "DEBUG: [%d] = \"%s\"\n", i,
1104 media_col_sup->values[i].string.text);
1105 }
1106
1107 print_color_mode_sup = ippFindAttribute(supported, "print-color-mode-supported", IPP_TAG_KEYWORD);
1108
1109 if ((operations_sup = ippFindAttribute(supported, "operations-supported",
1110 IPP_TAG_ENUM)) != NULL)
1111 {
1112 fprintf(stderr, "DEBUG: operations-supported (%d values)\n",
1113 operations_sup->num_values);
1114 for (i = 0; i < operations_sup->num_values; i ++)
1115 fprintf(stderr, "DEBUG: [%d] = %s\n", i,
1116 ippOpString(operations_sup->values[i].integer));
1117
1118 for (i = 0; i < operations_sup->num_values; i ++)
1119 if (operations_sup->values[i].integer == IPP_PRINT_JOB)
1120 break;
1121
1122 if (i >= operations_sup->num_values)
1123 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1124 "cups-ipp-missing-print-job");
1125
1126 for (i = 0; i < operations_sup->num_values; i ++)
1127 if (operations_sup->values[i].integer == IPP_CANCEL_JOB)
1128 break;
1129
1130 if (i >= operations_sup->num_values)
1131 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1132 "cups-ipp-missing-cancel-job");
1133
1134 for (i = 0; i < operations_sup->num_values; i ++)
1135 if (operations_sup->values[i].integer == IPP_GET_JOB_ATTRIBUTES)
1136 break;
1137
1138 if (i >= operations_sup->num_values)
1139 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1140 "cups-ipp-missing-get-job-attributes");
1141
1142 for (i = 0; i < operations_sup->num_values; i ++)
1143 if (operations_sup->values[i].integer == IPP_GET_PRINTER_ATTRIBUTES)
1144 break;
1145
1146 if (i >= operations_sup->num_values)
1147 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1148 "cups-ipp-missing-get-printer-attributes");
1149
1150 for (i = 0; i < operations_sup->num_values; i ++)
1151 {
1152 if (operations_sup->values[i].integer == IPP_VALIDATE_JOB)
1153 validate_job = 1;
1154 else if (operations_sup->values[i].integer == IPP_CREATE_JOB)
1155 create_job = 1;
1156 else if (operations_sup->values[i].integer == IPP_SEND_DOCUMENT)
1157 send_document = 1;
1158 else if (operations_sup->values[i].integer == IPP_GET_JOB_ATTRIBUTES)
1159 get_job_attrs = 1;
1160 }
1161
1162 if (create_job && !send_document)
1163 {
1164 fputs("DEBUG: Printer supports Create-Job but not Send-Document.\n",
1165 stderr);
1166 create_job = 0;
1167
1168 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1169 "cups-ipp-missing-send-document");
1170 }
1171
1172 if (!validate_job)
1173 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1174 "cups-ipp-missing-validate-job");
1175 }
1176 else
1177 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1178 "cups-ipp-missing-operations-supported");
1179
1180 doc_handling_sup = ippFindAttribute(supported,
1181 "multiple-document-handling-supported",
1182 IPP_TAG_KEYWORD);
1183
1184 report_printer_state(supported);
1185 }
1186 while (!job_canceled && ipp_status > IPP_OK_CONFLICT);
1187
1188 if (job_canceled)
1189 return (CUPS_BACKEND_OK);
1190
1191 /*
1192 * See if the printer is accepting jobs and is not stopped; if either
1193 * condition is true and we are printing to a class, requeue the job...
1194 */
1195
1196 if (getenv("CLASS") != NULL)
1197 {
1198 printer_state = ippFindAttribute(supported, "printer-state",
1199 IPP_TAG_ENUM);
1200 printer_accepting = ippFindAttribute(supported, "printer-is-accepting-jobs",
1201 IPP_TAG_BOOLEAN);
1202
1203 if (printer_state == NULL ||
1204 (printer_state->values[0].integer > IPP_PRINTER_PROCESSING &&
1205 waitprinter) ||
1206 printer_accepting == NULL ||
1207 !printer_accepting->values[0].boolean)
1208 {
1209 /*
1210 * If the CLASS environment variable is set, the job was submitted
1211 * to a class and not to a specific queue. In this case, we want
1212 * to abort immediately so that the job can be requeued on the next
1213 * available printer in the class.
1214 */
1215
1216 _cupsLangPrintFilter(stderr, "INFO",
1217 _("Unable to contact printer, queuing on next "
1218 "printer in class."));
1219
1220 ippDelete(supported);
1221 httpClose(http);
1222
1223 /*
1224 * Sleep 5 seconds to keep the job from requeuing too rapidly...
1225 */
1226
1227 sleep(5);
1228
1229 return (CUPS_BACKEND_FAILED);
1230 }
1231 }
1232
1233 /*
1234 * See if the printer supports multiple copies...
1235 */
1236
1237 copies = atoi(argv[4]);
1238
1239 if (copies_sup || argc < 7)
1240 copies_remaining = 1;
1241 else
1242 copies_remaining = copies;
1243
1244 /*
1245 * Prepare remaining printing options...
1246 */
1247
1248 options = NULL;
1249
1250 if (send_options)
1251 {
1252 num_options = cupsParseOptions(argv[5], 0, &options);
1253
1254 if (!cups_version && media_col_sup)
1255 {
1256 /*
1257 * Load the PPD file and generate PWG attribute mapping information...
1258 */
1259
1260 ppd = ppdOpenFile(getenv("PPD"));
1261 pc = _ppdCacheCreateWithPPD(ppd);
1262
1263 ppdMarkDefaults(ppd);
1264 cupsMarkOptions(ppd, num_options, options);
1265 }
1266 }
1267 else
1268 num_options = 0;
1269
1270 document_format = NULL;
1271
1272 if (format_sup != NULL)
1273 {
1274 for (i = 0; i < format_sup->num_values; i ++)
1275 if (!_cups_strcasecmp(final_content_type,
1276 format_sup->values[i].string.text))
1277 {
1278 document_format = final_content_type;
1279 break;
1280 }
1281
1282 if (!document_format)
1283 {
1284 for (i = 0; i < format_sup->num_values; i ++)
1285 if (!_cups_strcasecmp("application/octet-stream",
1286 format_sup->values[i].string.text))
1287 {
1288 document_format = "application/octet-stream";
1289 break;
1290 }
1291 }
1292 }
1293
1294 fprintf(stderr, "DEBUG: final_content_type=\"%s\", document_format=\"%s\"\n",
1295 final_content_type, document_format ? document_format : "(null)");
1296
1297 /*
1298 * If the printer does not support HTTP/1.1 (which IPP requires), copy stdin
1299 * to a temporary file so that we can do a HTTP/1.0 submission...
1300 *
1301 * (I hate compatibility hacks!)
1302 */
1303
1304 if (http->version < HTTP_1_1 && num_files == 0)
1305 {
1306 if ((fd = cupsTempFd(tmpfilename, sizeof(tmpfilename))) < 0)
1307 {
1308 perror("DEBUG: Unable to create temporary file");
1309 return (CUPS_BACKEND_FAILED);
1310 }
1311
1312 _cupsLangPrintFilter(stderr, "INFO", _("Copying print data."));
1313
1314 if ((compatsize = write(fd, buffer, bytes)) < 0)
1315 {
1316 perror("DEBUG: Unable to write temporary file");
1317 return (CUPS_BACKEND_FAILED);
1318 }
1319
1320 if ((bytes = backendRunLoop(-1, fd, snmp_fd, &(addrlist->addr), 0, 0,
1321 backendNetworkSideCB)) < 0)
1322 return (CUPS_BACKEND_FAILED);
1323
1324 compatsize += bytes;
1325
1326 close(fd);
1327
1328 compatfile = tmpfilename;
1329 files = &compatfile;
1330 num_files = 1;
1331 }
1332 else if (http->version < HTTP_1_1 && num_files == 1)
1333 {
1334 struct stat fileinfo; /* File information */
1335
1336 if (!stat(files[0], &fileinfo))
1337 compatsize = fileinfo.st_size;
1338 }
1339
1340 /*
1341 * If the printer only claims to support IPP/1.0, or if the user specifically
1342 * included version=1.0 in the URI, then do not try to use Create-Job or
1343 * Send-Document. This is another dreaded compatibility hack, but
1344 * unfortunately there are enough broken printers out there that we need
1345 * this for now...
1346 */
1347
1348 if (version == 10)
1349 create_job = send_document = 0;
1350
1351 /*
1352 * Start monitoring the printer in the background...
1353 */
1354
1355 monitor.uri = uri;
1356 monitor.hostname = hostname;
1357 monitor.user = argv[2];
1358 monitor.resource = resource;
1359 monitor.port = port;
1360 monitor.version = version;
1361 monitor.job_id = 0;
1362 monitor.get_job_attrs = get_job_attrs;
1363 monitor.encryption = cupsEncryption();
1364 monitor.job_state = IPP_JOB_PENDING;
1365 monitor.printer_state = IPP_PRINTER_IDLE;
1366
1367 if (create_job)
1368 {
1369 monitor.job_name = argv[3];
1370 }
1371 else
1372 {
1373 snprintf(print_job_name, sizeof(print_job_name), "%s - %s", argv[1],
1374 argv[3]);
1375 monitor.job_name = print_job_name;
1376 }
1377
1378 _cupsThreadCreate((_cups_thread_func_t)monitor_printer, &monitor);
1379
1380 /*
1381 * Validate access to the printer...
1382 */
1383
1384 while (!job_canceled && validate_job)
1385 {
1386 request = new_request(IPP_VALIDATE_JOB, version, uri, argv[2],
1387 monitor.job_name, num_options, options, compression,
1388 copies_sup ? copies : 1, document_format, pc, ppd,
1389 media_col_sup, doc_handling_sup, print_color_mode_sup);
1390
1391 response = cupsDoRequest(http, request, resource);
1392
1393 ipp_status = cupsLastError();
1394
1395 fprintf(stderr, "DEBUG: Validate-Job: %s (%s)\n",
1396 ippErrorString(ipp_status), cupsLastErrorString());
1397
1398 if ((job_auth = ippFindAttribute(response, "job-authorization-uri",
1399 IPP_TAG_URI)) != NULL)
1400 num_options = cupsAddOption("job-authorization-uri",
1401 ippGetString(job_auth, 0, NULL), num_options,
1402 &options);
1403
1404 ippDelete(response);
1405
1406 if (job_canceled)
1407 break;
1408
1409 if (ipp_status == IPP_STATUS_ERROR_SERVICE_UNAVAILABLE ||
1410 ipp_status == IPP_STATUS_ERROR_BUSY)
1411 {
1412 _cupsLangPrintFilter(stderr, "INFO", _("The printer is in use."));
1413 sleep(10);
1414 }
1415 else if (ipp_status == IPP_STATUS_ERROR_DOCUMENT_FORMAT_NOT_SUPPORTED ||
1416 ipp_status == IPP_STATUS_ERROR_ATTRIBUTES_OR_VALUES ||
1417 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_INFO_NEEDED ||
1418 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_CLOSED ||
1419 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_LIMIT_REACHED ||
1420 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_AUTHORIZATION_FAILED)
1421 goto cleanup;
1422 else if (ipp_status == IPP_STATUS_ERROR_FORBIDDEN ||
1423 ipp_status == IPP_STATUS_ERROR_CUPS_AUTHENTICATION_CANCELED)
1424 {
1425 const char *www_auth = httpGetField(http, HTTP_FIELD_WWW_AUTHENTICATE);
1426 /* WWW-Authenticate field value */
1427
1428 if (!strncmp(www_auth, "Negotiate", 9))
1429 auth_info_required = "negotiate";
1430 else if (www_auth[0])
1431 auth_info_required = "username,password";
1432
1433 goto cleanup;
1434 }
1435 else if (ipp_status == IPP_STATUS_ERROR_OPERATION_NOT_SUPPORTED)
1436 {
1437 /*
1438 * This is all too common...
1439 */
1440
1441 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1442 "cups-ipp-missing-validate-job");
1443 break;
1444 }
1445 else if (ipp_status < IPP_REDIRECTION_OTHER_SITE ||
1446 ipp_status == IPP_BAD_REQUEST)
1447 break;
1448 }
1449
1450 /*
1451 * Then issue the print-job request...
1452 */
1453
1454 job_id = 0;
1455
1456 while (!job_canceled && copies_remaining > 0)
1457 {
1458 /*
1459 * Check for side-channel requests...
1460 */
1461
1462 backendCheckSideChannel(snmp_fd, http->hostaddr);
1463
1464 /*
1465 * Build the IPP job creation request...
1466 */
1467
1468 if (job_canceled)
1469 break;
1470
1471 request = new_request((num_files > 1 || create_job) ? IPP_CREATE_JOB :
1472 IPP_PRINT_JOB,
1473 version, uri, argv[2], monitor.job_name, num_options,
1474 options, compression, copies_sup ? copies : 1,
1475 document_format, pc, ppd, media_col_sup,
1476 doc_handling_sup, print_color_mode_sup);
1477
1478 /*
1479 * Do the request...
1480 */
1481
1482 if (num_files > 1 || create_job)
1483 response = cupsDoRequest(http, request, resource);
1484 else
1485 {
1486 size_t length = 0; /* Length of request */
1487
1488 if (compatsize > 0)
1489 {
1490 fputs("DEBUG: Sending file using HTTP/1.0 Content-Length...\n", stderr);
1491 length = ippLength(request) + (size_t)compatsize;
1492 }
1493 else
1494 fputs("DEBUG: Sending file using HTTP/1.1 chunking...\n", stderr);
1495
1496 http_status = cupsSendRequest(http, request, resource, length);
1497 if (http_status == HTTP_CONTINUE && request->state == IPP_DATA)
1498 {
1499 if (compression && strcmp(compression, "none"))
1500 httpSetField(http, HTTP_FIELD_CONTENT_ENCODING, compression);
1501
1502 if (num_files == 1)
1503 {
1504 if ((fd = open(files[0], O_RDONLY)) < 0)
1505 {
1506 _cupsLangPrintError("ERROR", _("Unable to open print file"));
1507 return (CUPS_BACKEND_FAILED);
1508 }
1509 }
1510 else
1511 {
1512 fd = 0;
1513 http_status = cupsWriteRequestData(http, buffer, bytes);
1514 }
1515
1516 while (http_status == HTTP_CONTINUE &&
1517 (!job_canceled || compatsize > 0))
1518 {
1519 /*
1520 * Check for side-channel requests and more print data...
1521 */
1522
1523 FD_ZERO(&input);
1524 FD_SET(fd, &input);
1525 FD_SET(snmp_fd, &input);
1526
1527 while (select(fd > snmp_fd ? fd + 1 : snmp_fd + 1, &input, NULL, NULL,
1528 NULL) <= 0 && !job_canceled);
1529
1530 if (FD_ISSET(snmp_fd, &input))
1531 backendCheckSideChannel(snmp_fd, http->hostaddr);
1532
1533 if (FD_ISSET(fd, &input))
1534 {
1535 if ((bytes = read(fd, buffer, sizeof(buffer))) > 0)
1536 {
1537 fprintf(stderr, "DEBUG: Read %d bytes...\n", (int)bytes);
1538
1539 if ((http_status = cupsWriteRequestData(http, buffer, bytes))
1540 != HTTP_CONTINUE)
1541 break;
1542 }
1543 else if (bytes == 0 || (errno != EINTR && errno != EAGAIN))
1544 break;
1545 }
1546 }
1547
1548 if (http_status == HTTP_ERROR)
1549 fprintf(stderr, "DEBUG: Error writing document data for "
1550 "Print-Job: %s\n", strerror(httpError(http)));
1551
1552 if (num_files == 1)
1553 close(fd);
1554 }
1555
1556 response = cupsGetResponse(http, resource);
1557 ippDelete(request);
1558 }
1559
1560 ipp_status = cupsLastError();
1561
1562 fprintf(stderr, "DEBUG: %s: %s (%s)\n",
1563 (num_files > 1 || create_job) ? "Create-Job" : "Print-Job",
1564 ippErrorString(ipp_status), cupsLastErrorString());
1565
1566 if (ipp_status > IPP_OK_CONFLICT)
1567 {
1568 job_id = 0;
1569
1570 if (job_canceled)
1571 break;
1572
1573 if (ipp_status == IPP_STATUS_ERROR_SERVICE_UNAVAILABLE ||
1574 ipp_status == IPP_STATUS_ERROR_NOT_POSSIBLE ||
1575 ipp_status == IPP_STATUS_ERROR_BUSY)
1576 {
1577 _cupsLangPrintFilter(stderr, "INFO", _("The printer is in use."));
1578 sleep(10);
1579
1580 if (num_files == 0)
1581 {
1582 /*
1583 * We can't re-submit when we have no files to print, so exit
1584 * immediately with the right status code...
1585 */
1586
1587 goto cleanup;
1588 }
1589 }
1590 else if (ipp_status == IPP_STATUS_ERROR_JOB_CANCELED ||
1591 ipp_status == IPP_STATUS_ERROR_NOT_AUTHORIZED ||
1592 ipp_status == IPP_STATUS_ERROR_ATTRIBUTES_OR_VALUES ||
1593 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_INFO_NEEDED ||
1594 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_CLOSED ||
1595 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_LIMIT_REACHED ||
1596 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_AUTHORIZATION_FAILED)
1597 goto cleanup;
1598 else
1599 {
1600 /*
1601 * Update auth-info-required as needed...
1602 */
1603
1604 _cupsLangPrintFilter(stderr, "ERROR",
1605 _("Print job was not accepted."));
1606
1607 if (ipp_status == IPP_STATUS_ERROR_FORBIDDEN ||
1608 ipp_status == IPP_STATUS_ERROR_CUPS_AUTHENTICATION_CANCELED)
1609 {
1610 const char *www_auth = httpGetField(http, HTTP_FIELD_WWW_AUTHENTICATE);
1611 /* WWW-Authenticate field value */
1612
1613 if (!strncmp(www_auth, "Negotiate", 9))
1614 auth_info_required = "negotiate";
1615 else if (www_auth[0])
1616 auth_info_required = "username,password";
1617 }
1618 else if (ipp_status == IPP_REQUEST_VALUE)
1619 {
1620 /*
1621 * Print file is too large, abort this job...
1622 */
1623
1624 goto cleanup;
1625 }
1626 else
1627 sleep(10);
1628
1629 if (num_files == 0)
1630 {
1631 /*
1632 * We can't re-submit when we have no files to print, so exit
1633 * immediately with the right status code...
1634 */
1635
1636 goto cleanup;
1637 }
1638 }
1639 }
1640 else if ((job_id_attr = ippFindAttribute(response, "job-id",
1641 IPP_TAG_INTEGER)) == NULL)
1642 {
1643 fputs("DEBUG: Print job accepted - job ID unknown.\n", stderr);
1644 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1645 "cups-ipp-missing-job-id");
1646 job_id = 0;
1647 }
1648 else
1649 {
1650 password_tries = 0;
1651 monitor.job_id = job_id = job_id_attr->values[0].integer;
1652 fprintf(stderr, "DEBUG: Print job accepted - job ID %d.\n", job_id);
1653 }
1654
1655 ippDelete(response);
1656
1657 if (job_canceled)
1658 break;
1659
1660 if (job_id && (num_files > 1 || create_job))
1661 {
1662 for (i = 0; num_files == 0 || i < num_files; i ++)
1663 {
1664 /*
1665 * Check for side-channel requests...
1666 */
1667
1668 backendCheckSideChannel(snmp_fd, http->hostaddr);
1669
1670 /*
1671 * Send the next file in the job...
1672 */
1673
1674 request = ippNewRequest(IPP_SEND_DOCUMENT);
1675 request->request.op.version[0] = version / 10;
1676 request->request.op.version[1] = version % 10;
1677
1678 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
1679 NULL, uri);
1680
1681 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "job-id",
1682 job_id);
1683
1684 if (argv[2][0])
1685 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
1686 "requesting-user-name", NULL, argv[2]);
1687
1688 ippAddBoolean(request, IPP_TAG_OPERATION, "last-document",
1689 (i + 1) >= num_files);
1690
1691 if (document_format)
1692 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_MIMETYPE,
1693 "document-format", NULL, document_format);
1694
1695 if (compression)
1696 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
1697 "compression", NULL, compression);
1698
1699 fprintf(stderr, "DEBUG: Sending file %d using chunking...\n", i + 1);
1700 http_status = cupsSendRequest(http, request, resource, 0);
1701 if (http_status == HTTP_CONTINUE && request->state == IPP_DATA)
1702 {
1703 if (compression && strcmp(compression, "none"))
1704 httpSetField(http, HTTP_FIELD_CONTENT_ENCODING, compression);
1705
1706 if (num_files == 0)
1707 {
1708 fd = 0;
1709 http_status = cupsWriteRequestData(http, buffer, bytes);
1710 }
1711 else
1712 {
1713 if ((fd = open(files[i], O_RDONLY)) < 0)
1714 {
1715 _cupsLangPrintError("ERROR", _("Unable to open print file"));
1716 return (CUPS_BACKEND_FAILED);
1717 }
1718 }
1719 }
1720 else
1721 fd = -1;
1722
1723 if (fd >= 0)
1724 {
1725 while (!job_canceled && http_status == HTTP_CONTINUE &&
1726 (bytes = read(fd, buffer, sizeof(buffer))) > 0)
1727 {
1728 if ((http_status = cupsWriteRequestData(http, buffer, bytes))
1729 != HTTP_CONTINUE)
1730 break;
1731 else
1732 {
1733 /*
1734 * Check for side-channel requests...
1735 */
1736
1737 backendCheckSideChannel(snmp_fd, http->hostaddr);
1738 }
1739 }
1740
1741 if (fd > 0)
1742 close(fd);
1743 }
1744
1745 if (http_status == HTTP_ERROR)
1746 fprintf(stderr, "DEBUG: Error writing document data for "
1747 "Send-Document: %s\n", strerror(httpError(http)));
1748
1749 ippDelete(cupsGetResponse(http, resource));
1750 ippDelete(request);
1751
1752 fprintf(stderr, "DEBUG: Send-Document: %s (%s)\n",
1753 ippErrorString(cupsLastError()), cupsLastErrorString());
1754
1755 if (cupsLastError() > IPP_OK_CONFLICT)
1756 {
1757 ipp_status = cupsLastError();
1758
1759 _cupsLangPrintFilter(stderr, "ERROR",
1760 _("Unable to add document to print job."));
1761 break;
1762 }
1763 else
1764 {
1765 password_tries = 0;
1766
1767 if (num_files == 0 || fd < 0)
1768 break;
1769 }
1770 }
1771 }
1772
1773 if (ipp_status <= IPP_OK_CONFLICT && argc > 6)
1774 {
1775 fprintf(stderr, "PAGE: 1 %d\n", copies_sup ? atoi(argv[4]) : 1);
1776 copies_remaining --;
1777 }
1778 else if (ipp_status == IPP_SERVICE_UNAVAILABLE ||
1779 ipp_status == IPP_NOT_POSSIBLE ||
1780 ipp_status == IPP_PRINTER_BUSY)
1781 {
1782 if (argc == 6)
1783 {
1784 /*
1785 * Need to reprocess the entire job; if we have a job ID, cancel the
1786 * job first...
1787 */
1788
1789 if (job_id > 0)
1790 cancel_job(http, uri, job_id, resource, argv[2], version);
1791
1792 goto cleanup;
1793 }
1794 continue;
1795 }
1796 else if (ipp_status == IPP_REQUEST_VALUE ||
1797 ipp_status == IPP_ERROR_JOB_CANCELED ||
1798 ipp_status == IPP_NOT_AUTHORIZED ||
1799 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_INFO_NEEDED ||
1800 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_CLOSED ||
1801 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_LIMIT_REACHED ||
1802 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_AUTHORIZATION_FAILED ||
1803 ipp_status == IPP_INTERNAL_ERROR)
1804 {
1805 /*
1806 * Print file is too large, job was canceled, we need new
1807 * authentication data, or we had some sort of error...
1808 */
1809
1810 goto cleanup;
1811 }
1812 else if (ipp_status == IPP_STATUS_ERROR_CUPS_UPGRADE_REQUIRED)
1813 {
1814 /*
1815 * Server is configured incorrectly; the policy for Create-Job and
1816 * Send-Document has to be the same (auth or no auth, encryption or
1817 * no encryption). Force the queue to stop since printing will never
1818 * work.
1819 */
1820
1821 fputs("DEBUG: The server or printer is configured incorrectly.\n",
1822 stderr);
1823 fputs("DEBUG: The policy for Create-Job and Send-Document must have the "
1824 "same authentication and encryption requirements.\n", stderr);
1825
1826 ipp_status = IPP_STATUS_ERROR_INTERNAL;
1827
1828 if (job_id > 0)
1829 cancel_job(http, uri, job_id, resource, argv[2], version);
1830
1831 goto cleanup;
1832 }
1833 else if (ipp_status == IPP_NOT_FOUND)
1834 {
1835 /*
1836 * Printer does not actually implement support for Create-Job/
1837 * Send-Document, so log the conformance issue and stop the printer.
1838 */
1839
1840 fputs("DEBUG: This printer claims to support Create-Job and "
1841 "Send-Document, but those operations failed.\n", stderr);
1842 fputs("DEBUG: Add '?version=1.0' to the device URI to use legacy "
1843 "compatibility mode.\n", stderr);
1844 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1845 "cups-ipp-missing-send-document");
1846
1847 ipp_status = IPP_INTERNAL_ERROR; /* Force queue to stop */
1848
1849 goto cleanup;
1850 }
1851 else
1852 copies_remaining --;
1853
1854 /*
1855 * Wait for the job to complete...
1856 */
1857
1858 if (!job_id || !waitjob || !get_job_attrs)
1859 continue;
1860
1861 _cupsLangPrintFilter(stderr, "INFO", _("Waiting for job to complete."));
1862
1863 for (delay = _cupsNextDelay(0, &prev_delay); !job_canceled;)
1864 {
1865 /*
1866 * Check for side-channel requests...
1867 */
1868
1869 backendCheckSideChannel(snmp_fd, http->hostaddr);
1870
1871 /*
1872 * Check printer state...
1873 */
1874
1875 check_printer_state(http, uri, resource, argv[2], version);
1876
1877 if (cupsLastError() <= IPP_OK_CONFLICT)
1878 password_tries = 0;
1879
1880 /*
1881 * Build an IPP_GET_JOB_ATTRIBUTES request...
1882 */
1883
1884 request = ippNewRequest(IPP_GET_JOB_ATTRIBUTES);
1885 request->request.op.version[0] = version / 10;
1886 request->request.op.version[1] = version % 10;
1887
1888 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
1889 NULL, uri);
1890
1891 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "job-id",
1892 job_id);
1893
1894 if (argv[2][0])
1895 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
1896 "requesting-user-name", NULL, argv[2]);
1897
1898 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
1899 "requested-attributes", sizeof(jattrs) / sizeof(jattrs[0]),
1900 NULL, jattrs);
1901
1902 /*
1903 * Do the request...
1904 */
1905
1906 httpReconnect(http);
1907 response = cupsDoRequest(http, request, resource);
1908 ipp_status = cupsLastError();
1909
1910 if (ipp_status == IPP_NOT_FOUND || ipp_status == IPP_NOT_POSSIBLE)
1911 {
1912 /*
1913 * Job has gone away and/or the server has no job history...
1914 */
1915
1916 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1917 "cups-ipp-missing-job-history");
1918 ippDelete(response);
1919
1920 ipp_status = IPP_OK;
1921 break;
1922 }
1923
1924 fprintf(stderr, "DEBUG: Get-Job-Attributes: %s (%s)\n",
1925 ippErrorString(ipp_status), cupsLastErrorString());
1926
1927 if (ipp_status <= IPP_OK_CONFLICT)
1928 password_tries = 0;
1929 else
1930 {
1931 if (ipp_status != IPP_SERVICE_UNAVAILABLE &&
1932 ipp_status != IPP_PRINTER_BUSY)
1933 {
1934 ippDelete(response);
1935 ipp_status = IPP_OK;
1936 break;
1937 }
1938 else if (ipp_status == IPP_INTERNAL_ERROR)
1939 {
1940 waitjob_tries ++;
1941
1942 if (waitjob_tries > 4)
1943 {
1944 ippDelete(response);
1945 ipp_status = IPP_OK;
1946 break;
1947 }
1948 }
1949 }
1950
1951 if (response)
1952 {
1953 if ((job_state = ippFindAttribute(response, "job-state",
1954 IPP_TAG_ENUM)) != NULL)
1955 {
1956 /*
1957 * Reflect the remote job state in the local queue...
1958 */
1959
1960 if (cups_version &&
1961 job_state->values[0].integer >= IPP_JOB_PENDING &&
1962 job_state->values[0].integer <= IPP_JOB_COMPLETED)
1963 update_reasons(NULL,
1964 remote_job_states[job_state->values[0].integer -
1965 IPP_JOB_PENDING]);
1966
1967 if ((job_sheets = ippFindAttribute(response,
1968 "job-media-sheets-completed",
1969 IPP_TAG_INTEGER)) == NULL)
1970 job_sheets = ippFindAttribute(response,
1971 "job-impressions-completed",
1972 IPP_TAG_INTEGER);
1973
1974 if (job_sheets)
1975 fprintf(stderr, "PAGE: total %d\n",
1976 job_sheets->values[0].integer);
1977
1978 /*
1979 * Stop polling if the job is finished or pending-held...
1980 */
1981
1982 if (job_state->values[0].integer > IPP_JOB_STOPPED)
1983 {
1984 ippDelete(response);
1985 break;
1986 }
1987 }
1988 else if (ipp_status != IPP_SERVICE_UNAVAILABLE &&
1989 ipp_status != IPP_NOT_POSSIBLE &&
1990 ipp_status != IPP_PRINTER_BUSY)
1991 {
1992 /*
1993 * If the printer does not return a job-state attribute, it does not
1994 * conform to the IPP specification - break out immediately and fail
1995 * the job...
1996 */
1997
1998 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1999 "cups-ipp-missing-job-state");
2000 ipp_status = IPP_INTERNAL_ERROR;
2001 break;
2002 }
2003 }
2004
2005 ippDelete(response);
2006
2007 /*
2008 * Wait before polling again...
2009 */
2010
2011 sleep(delay);
2012
2013 delay = _cupsNextDelay(delay, &prev_delay);
2014 }
2015 }
2016
2017 /*
2018 * Cancel the job as needed...
2019 */
2020
2021 if (job_canceled > 0 && job_id > 0)
2022 cancel_job(http, uri, job_id, resource, argv[2], version);
2023
2024 /*
2025 * Check the printer state and report it if necessary...
2026 */
2027
2028 check_printer_state(http, uri, resource, argv[2], version);
2029
2030 if (cupsLastError() <= IPP_OK_CONFLICT)
2031 password_tries = 0;
2032
2033 /*
2034 * Collect the final page count as needed...
2035 */
2036
2037 if (have_supplies &&
2038 !backendSNMPSupplies(snmp_fd, &(http->addrlist->addr), &page_count,
2039 NULL) &&
2040 page_count > start_count)
2041 fprintf(stderr, "PAGE: total %d\n", page_count - start_count);
2042
2043 #ifdef HAVE_GSSAPI
2044 /*
2045 * See if we used Kerberos at all...
2046 */
2047
2048 if (http->gssctx)
2049 auth_info_required = "negotiate";
2050 #endif /* HAVE_GSSAPI */
2051
2052 /*
2053 * Free memory...
2054 */
2055
2056 cleanup:
2057
2058 cupsFreeOptions(num_options, options);
2059 _ppdCacheDestroy(pc);
2060 ppdClose(ppd);
2061
2062 httpClose(http);
2063
2064 ippDelete(supported);
2065
2066 /*
2067 * Remove the temporary file(s) if necessary...
2068 */
2069
2070 if (tmpfilename[0])
2071 unlink(tmpfilename);
2072
2073 /*
2074 * Return the queue status...
2075 */
2076
2077 if (ipp_status == IPP_NOT_AUTHORIZED || ipp_status == IPP_FORBIDDEN ||
2078 ipp_status == IPP_AUTHENTICATION_CANCELED ||
2079 ipp_status <= IPP_OK_CONFLICT)
2080 fprintf(stderr, "ATTR: auth-info-required=%s\n", auth_info_required);
2081
2082 if (ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_INFO_NEEDED)
2083 fputs("JOBSTATE: account-info-needed\n", stderr);
2084 else if (ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_CLOSED)
2085 fputs("JOBSTATE: account-closed\n", stderr);
2086 else if (ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_LIMIT_REACHED)
2087 fputs("JOBSTATE: account-limit-reached\n", stderr);
2088 else if (ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_AUTHORIZATION_FAILED)
2089 fputs("JOBSTATE: account-authorization-failed\n", stderr);
2090
2091 if (ipp_status == IPP_NOT_AUTHORIZED || ipp_status == IPP_FORBIDDEN ||
2092 ipp_status == IPP_AUTHENTICATION_CANCELED)
2093 return (CUPS_BACKEND_AUTH_REQUIRED);
2094 else if (ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_LIMIT_REACHED ||
2095 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_INFO_NEEDED ||
2096 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_CLOSED ||
2097 ipp_status == IPP_STATUS_ERROR_CUPS_ACCOUNT_AUTHORIZATION_FAILED)
2098 return (CUPS_BACKEND_HOLD);
2099 else if (ipp_status == IPP_INTERNAL_ERROR)
2100 return (CUPS_BACKEND_STOP);
2101 else if (ipp_status == IPP_CONFLICT)
2102 return (CUPS_BACKEND_FAILED);
2103 else if (ipp_status == IPP_REQUEST_VALUE ||
2104 ipp_status == IPP_STATUS_ERROR_ATTRIBUTES_OR_VALUES ||
2105 ipp_status == IPP_DOCUMENT_FORMAT || job_canceled < 0)
2106 {
2107 if (ipp_status == IPP_REQUEST_VALUE)
2108 _cupsLangPrintFilter(stderr, "ERROR", _("Print job too large."));
2109 else if (ipp_status == IPP_DOCUMENT_FORMAT)
2110 _cupsLangPrintFilter(stderr, "ERROR",
2111 _("Printer cannot print supplied content."));
2112 else if (ipp_status == IPP_STATUS_ERROR_ATTRIBUTES_OR_VALUES)
2113 _cupsLangPrintFilter(stderr, "ERROR",
2114 _("Printer cannot print with supplied options."));
2115 else
2116 _cupsLangPrintFilter(stderr, "ERROR", _("Print job canceled at printer."));
2117
2118 return (CUPS_BACKEND_CANCEL);
2119 }
2120 else if (ipp_status > IPP_OK_CONFLICT && ipp_status != IPP_ERROR_JOB_CANCELED)
2121 return (CUPS_BACKEND_RETRY_CURRENT);
2122 else
2123 return (CUPS_BACKEND_OK);
2124 }
2125
2126
2127 /*
2128 * 'cancel_job()' - Cancel a print job.
2129 */
2130
2131 static void
2132 cancel_job(http_t *http, /* I - HTTP connection */
2133 const char *uri, /* I - printer-uri */
2134 int id, /* I - job-id */
2135 const char *resource, /* I - Resource path */
2136 const char *user, /* I - requesting-user-name */
2137 int version) /* I - IPP version */
2138 {
2139 ipp_t *request; /* Cancel-Job request */
2140
2141
2142 _cupsLangPrintFilter(stderr, "INFO", _("Canceling print job."));
2143
2144 request = ippNewRequest(IPP_CANCEL_JOB);
2145 request->request.op.version[0] = version / 10;
2146 request->request.op.version[1] = version % 10;
2147
2148 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2149 NULL, uri);
2150 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "job-id", id);
2151
2152 if (user && user[0])
2153 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
2154 "requesting-user-name", NULL, user);
2155
2156 /*
2157 * Do the request...
2158 */
2159
2160 ippDelete(cupsDoRequest(http, request, resource));
2161
2162 if (cupsLastError() > IPP_OK_CONFLICT)
2163 _cupsLangPrintFilter(stderr, "ERROR", _("Unable to cancel print job."));
2164 }
2165
2166
2167 /*
2168 * 'check_printer_state()' - Check the printer state.
2169 */
2170
2171 static ipp_pstate_t /* O - Current printer-state */
2172 check_printer_state(
2173 http_t *http, /* I - HTTP connection */
2174 const char *uri, /* I - Printer URI */
2175 const char *resource, /* I - Resource path */
2176 const char *user, /* I - Username, if any */
2177 int version) /* I - IPP version */
2178 {
2179 ipp_t *request, /* IPP request */
2180 *response; /* IPP response */
2181 ipp_attribute_t *attr; /* Attribute in response */
2182 ipp_pstate_t printer_state = IPP_PRINTER_STOPPED;
2183 /* Current printer-state */
2184
2185
2186 /*
2187 * Send a Get-Printer-Attributes request and log the results...
2188 */
2189
2190 request = ippNewRequest(IPP_GET_PRINTER_ATTRIBUTES);
2191 request->request.op.version[0] = version / 10;
2192 request->request.op.version[1] = version % 10;
2193
2194 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2195 NULL, uri);
2196
2197 if (user && user[0])
2198 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
2199 "requesting-user-name", NULL, user);
2200
2201 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
2202 "requested-attributes",
2203 (int)(sizeof(pattrs) / sizeof(pattrs[0])), NULL, pattrs);
2204
2205 if ((response = cupsDoRequest(http, request, resource)) != NULL)
2206 {
2207 report_printer_state(response);
2208
2209 if ((attr = ippFindAttribute(response, "printer-state",
2210 IPP_TAG_ENUM)) != NULL)
2211 printer_state = (ipp_pstate_t)attr->values[0].integer;
2212
2213 ippDelete(response);
2214 }
2215
2216 fprintf(stderr, "DEBUG: Get-Printer-Attributes: %s (%s)\n",
2217 ippErrorString(cupsLastError()), cupsLastErrorString());
2218
2219 /*
2220 * Return the printer-state value...
2221 */
2222
2223 return (printer_state);
2224 }
2225
2226
2227 /*
2228 * 'monitor_printer()' - Monitor the printer state.
2229 */
2230
2231 static void * /* O - Thread exit code */
2232 monitor_printer(
2233 _cups_monitor_t *monitor) /* I - Monitoring data */
2234 {
2235 http_t *http; /* Connection to printer */
2236 ipp_t *request, /* IPP request */
2237 *response; /* IPP response */
2238 ipp_attribute_t *attr; /* Attribute in response */
2239 int delay, /* Current delay */
2240 prev_delay; /* Previous delay */
2241 ipp_op_t job_op; /* Operation to use */
2242 int job_id; /* Job ID */
2243 const char *job_name; /* Job name */
2244 ipp_jstate_t job_state; /* Job state */
2245 const char *job_user; /* Job originating user name */
2246 int password_tries = 0; /* Password tries */
2247
2248
2249 /*
2250 * Make a copy of the printer connection...
2251 */
2252
2253 http = httpConnect2(monitor->hostname, monitor->port, NULL, AF_UNSPEC,
2254 monitor->encryption, 1, 0, NULL);
2255 httpSetTimeout(http, 30.0, timeout_cb, NULL);
2256 if (username[0])
2257 cupsSetUser(username);
2258
2259 cupsSetPasswordCB2((cups_password_cb2_t)password_cb, &password_tries);
2260
2261 /*
2262 * Loop until the job is canceled, aborted, or completed.
2263 */
2264
2265 delay = _cupsNextDelay(0, &prev_delay);
2266
2267 monitor->job_reasons = 0;
2268
2269 while (monitor->job_state < IPP_JOB_CANCELED && !job_canceled)
2270 {
2271 /*
2272 * Reconnect to the printer...
2273 */
2274
2275 if (!httpReconnect(http))
2276 {
2277 /*
2278 * Connected, so check on the printer state...
2279 */
2280
2281 monitor->printer_state = check_printer_state(http, monitor->uri,
2282 monitor->resource,
2283 monitor->user,
2284 monitor->version);
2285 if (cupsLastError() <= IPP_OK_CONFLICT)
2286 password_tries = 0;
2287
2288 /*
2289 * Check the status of the job itself...
2290 */
2291
2292 job_op = (monitor->job_id > 0 && monitor->get_job_attrs) ?
2293 IPP_GET_JOB_ATTRIBUTES : IPP_GET_JOBS;
2294 request = ippNewRequest(job_op);
2295 request->request.op.version[0] = monitor->version / 10;
2296 request->request.op.version[1] = monitor->version % 10;
2297
2298 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2299 NULL, monitor->uri);
2300 if (job_op == IPP_GET_JOB_ATTRIBUTES)
2301 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "job-id",
2302 monitor->job_id);
2303
2304 if (monitor->user && monitor->user[0])
2305 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
2306 "requesting-user-name", NULL, monitor->user);
2307
2308 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
2309 "requested-attributes",
2310 (int)(sizeof(jattrs) / sizeof(jattrs[0])), NULL, jattrs);
2311
2312 /*
2313 * Do the request...
2314 */
2315
2316 response = cupsDoRequest(http, request, monitor->resource);
2317
2318 fprintf(stderr, "DEBUG: (monitor) %s: %s (%s)\n", ippOpString(job_op),
2319 ippErrorString(cupsLastError()), cupsLastErrorString());
2320
2321 if (cupsLastError() <= IPP_OK_CONFLICT)
2322 password_tries = 0;
2323
2324 if (job_op == IPP_GET_JOB_ATTRIBUTES)
2325 {
2326 if ((attr = ippFindAttribute(response, "job-state",
2327 IPP_TAG_ENUM)) != NULL)
2328 monitor->job_state = (ipp_jstate_t)attr->values[0].integer;
2329 else
2330 monitor->job_state = IPP_JOB_COMPLETED;
2331 }
2332 else if (response)
2333 {
2334 for (attr = response->attrs; attr; attr = attr->next)
2335 {
2336 job_id = 0;
2337 job_name = NULL;
2338 job_state = IPP_JOB_PENDING;
2339 job_user = NULL;
2340
2341 while (attr && attr->group_tag != IPP_TAG_JOB)
2342 attr = attr->next;
2343
2344 if (!attr)
2345 break;
2346
2347 while (attr && attr->group_tag == IPP_TAG_JOB)
2348 {
2349 if (!strcmp(attr->name, "job-id") &&
2350 attr->value_tag == IPP_TAG_INTEGER)
2351 job_id = attr->values[0].integer;
2352 else if (!strcmp(attr->name, "job-name") &&
2353 (attr->value_tag == IPP_TAG_NAME ||
2354 attr->value_tag == IPP_TAG_NAMELANG))
2355 job_name = attr->values[0].string.text;
2356 else if (!strcmp(attr->name, "job-state") &&
2357 attr->value_tag == IPP_TAG_ENUM)
2358 job_state = attr->values[0].integer;
2359 else if (!strcmp(attr->name, "job-originating-user-name") &&
2360 (attr->value_tag == IPP_TAG_NAME ||
2361 attr->value_tag == IPP_TAG_NAMELANG))
2362 job_user = attr->values[0].string.text;
2363
2364 attr = attr->next;
2365 }
2366
2367 if (job_id > 0 && job_name && !strcmp(job_name, monitor->job_name) &&
2368 job_user && monitor->user && !strcmp(job_user, monitor->user))
2369 {
2370 monitor->job_id = job_id;
2371 monitor->job_state = job_state;
2372 break;
2373 }
2374
2375 if (!attr)
2376 break;
2377 }
2378 }
2379
2380 if ((attr = ippFindAttribute(response, "job-state-reasons",
2381 IPP_TAG_KEYWORD)) != NULL)
2382 {
2383 int i, new_reasons = 0; /* Looping var, new reasons */
2384
2385 for (i = 0; i < attr->num_values; i ++)
2386 {
2387 if (!strcmp(attr->values[i].string.text,
2388 "account-authorization-failed"))
2389 new_reasons |= _CUPS_JSR_ACCOUNT_AUTHORIZATION_FAILED;
2390 else if (!strcmp(attr->values[i].string.text, "account-closed"))
2391 new_reasons |= _CUPS_JSR_ACCOUNT_CLOSED;
2392 else if (!strcmp(attr->values[i].string.text, "account-info-needed"))
2393 new_reasons |= _CUPS_JSR_ACCOUNT_INFO_NEEDED;
2394 else if (!strcmp(attr->values[i].string.text,
2395 "account-limit-reached"))
2396 new_reasons |= _CUPS_JSR_ACCOUNT_LIMIT_REACHED;
2397 else if (!strcmp(attr->values[i].string.text, "job-password-wait"))
2398 new_reasons |= _CUPS_JSR_JOB_PASSWORD_WAIT;
2399 else if (!strcmp(attr->values[i].string.text, "job-release-wait"))
2400 new_reasons |= _CUPS_JSR_JOB_RELEASE_WAIT;
2401 }
2402
2403 if (new_reasons != monitor->job_reasons)
2404 {
2405 if (new_reasons & _CUPS_JSR_ACCOUNT_AUTHORIZATION_FAILED)
2406 fputs("JOBSTATE: account-authorization-failed\n", stderr);
2407 else if (new_reasons & _CUPS_JSR_ACCOUNT_CLOSED)
2408 fputs("JOBSTATE: account-closed\n", stderr);
2409 else if (new_reasons & _CUPS_JSR_ACCOUNT_INFO_NEEDED)
2410 fputs("JOBSTATE: account-info-needed\n", stderr);
2411 else if (new_reasons & _CUPS_JSR_ACCOUNT_LIMIT_REACHED)
2412 fputs("JOBSTATE: account-limit-reached\n", stderr);
2413 else if (new_reasons & _CUPS_JSR_JOB_PASSWORD_WAIT)
2414 fputs("JOBSTATE: job-password-wait\n", stderr);
2415 else if (new_reasons & _CUPS_JSR_JOB_RELEASE_WAIT)
2416 fputs("JOBSTATE: job-release-wait\n", stderr);
2417 else
2418 fputs("JOBSTATE: job-printing\n", stderr);
2419
2420 monitor->job_reasons = new_reasons;
2421 }
2422 }
2423
2424 ippDelete(response);
2425
2426 fprintf(stderr, "DEBUG: (monitor) job-state=%s\n",
2427 ippEnumString("job-state", monitor->job_state));
2428
2429 if (!job_canceled &&
2430 (monitor->job_state == IPP_JOB_CANCELED ||
2431 monitor->job_state == IPP_JOB_ABORTED))
2432 job_canceled = -1;
2433
2434 /*
2435 * Disconnect from the printer - we'll reconnect on the next poll...
2436 */
2437
2438 _httpDisconnect(http);
2439 }
2440
2441 /*
2442 * Sleep for N seconds...
2443 */
2444
2445 sleep(delay);
2446
2447 delay = _cupsNextDelay(delay, &prev_delay);
2448 }
2449
2450 /*
2451 * Cancel the job if necessary...
2452 */
2453
2454 if (job_canceled > 0 && monitor->job_id > 0)
2455 if (!httpReconnect(http))
2456 cancel_job(http, monitor->uri, monitor->job_id, monitor->resource,
2457 monitor->user, monitor->version);
2458
2459 /*
2460 * Cleanup and return...
2461 */
2462
2463 httpClose(http);
2464
2465 return (NULL);
2466 }
2467
2468
2469 /*
2470 * 'new_request()' - Create a new print creation or validation request.
2471 */
2472
2473 static ipp_t * /* O - Request data */
2474 new_request(
2475 ipp_op_t op, /* I - IPP operation code */
2476 int version, /* I - IPP version number */
2477 const char *uri, /* I - printer-uri value */
2478 const char *user, /* I - requesting-user-name value */
2479 const char *title, /* I - job-name value */
2480 int num_options, /* I - Number of options to send */
2481 cups_option_t *options, /* I - Options to send */
2482 const char *compression, /* I - compression value or NULL */
2483 int copies, /* I - copies value or 0 */
2484 const char *format, /* I - document-format value or NULL */
2485 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2486 ppd_file_t *ppd, /* I - PPD file data */
2487 ipp_attribute_t *media_col_sup, /* I - media-col-supported values */
2488 ipp_attribute_t *doc_handling_sup, /* I - multiple-document-handling-supported values */
2489 ipp_attribute_t *print_color_mode_sup)
2490 /* I - Printer supports print-color-mode */
2491 {
2492 int i; /* Looping var */
2493 ipp_t *request; /* Request data */
2494 const char *keyword; /* PWG keyword */
2495 _pwg_size_t *size; /* PWG media size */
2496 ipp_t *media_col, /* media-col value */
2497 *media_size; /* media-size value */
2498 const char *media_source, /* media-source value */
2499 *media_type, /* media-type value */
2500 *collate_str, /* multiple-document-handling value */
2501 *mandatory; /* Mandatory attributes */
2502 ipp_tag_t group; /* Current group */
2503 ipp_attribute_t *attr; /* Current attribute */
2504 const char *color_attr_name; /* Supported color attribute */
2505 char buffer[1024]; /* Value buffer */
2506
2507
2508 /*
2509 * Create the IPP request...
2510 */
2511
2512 request = ippNewRequest(op);
2513 request->request.op.version[0] = version / 10;
2514 request->request.op.version[1] = version % 10;
2515
2516 fprintf(stderr, "DEBUG: %s IPP/%d.%d\n",
2517 ippOpString(request->request.op.operation_id),
2518 request->request.op.version[0],
2519 request->request.op.version[1]);
2520
2521 /*
2522 * Add standard attributes...
2523 */
2524
2525 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2526 NULL, uri);
2527 fprintf(stderr, "DEBUG: printer-uri=\"%s\"\n", uri);
2528
2529 if (user && *user)
2530 {
2531 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
2532 "requesting-user-name", NULL, user);
2533 fprintf(stderr, "DEBUG: requesting-user-name=\"%s\"\n", user);
2534 }
2535
2536 if (title && *title)
2537 {
2538 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME, "job-name", NULL,
2539 title);
2540 fprintf(stderr, "DEBUG: job-name=\"%s\"\n", title);
2541 }
2542
2543 if (format && op != IPP_CREATE_JOB)
2544 {
2545 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_MIMETYPE,
2546 "document-format", NULL, format);
2547 fprintf(stderr, "DEBUG: document-format=\"%s\"\n", format);
2548 }
2549
2550 #ifdef HAVE_LIBZ
2551 if (compression && op != IPP_OP_CREATE_JOB && op != IPP_OP_VALIDATE_JOB)
2552 {
2553 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
2554 "compression", NULL, compression);
2555 fprintf(stderr, "DEBUG: compression=\"%s\"\n", compression);
2556 }
2557 #endif /* HAVE_LIBZ */
2558
2559 /*
2560 * Handle options on the command-line...
2561 */
2562
2563 if (num_options > 0)
2564 {
2565 if (pc)
2566 {
2567 int num_finishings = 0, /* Number of finishing values */
2568 finishings[10]; /* Finishing enum values */
2569 ppd_choice_t *choice; /* Marked choice */
2570
2571 /*
2572 * Send standard IPP attributes...
2573 */
2574
2575 fputs("DEBUG: Adding standard IPP operation/job attributes.\n", stderr);
2576
2577 if (pc->password &&
2578 (keyword = cupsGetOption("job-password", num_options,
2579 options)) != NULL)
2580 {
2581 ippAddOctetString(request, IPP_TAG_OPERATION, "job-password",
2582 keyword, strlen(keyword));
2583
2584 if ((keyword = cupsGetOption("job-password-encryption", num_options,
2585 options)) == NULL)
2586 keyword = "none";
2587
2588 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
2589 "job-password-encryption", NULL, keyword);
2590 }
2591
2592 if (pc->account_id)
2593 {
2594 if ((keyword = cupsGetOption("job-account-id", num_options,
2595 options)) == NULL)
2596 keyword = cupsGetOption("job-billing", num_options, options);
2597
2598 if (keyword)
2599 ippAddString(request, IPP_TAG_JOB, IPP_TAG_NAME, "job-account-id",
2600 NULL, keyword);
2601 }
2602
2603 if (pc->accounting_user_id)
2604 {
2605 if ((keyword = cupsGetOption("job-accounting-user-id", num_options,
2606 options)) == NULL)
2607 keyword = user;
2608
2609 if (keyword)
2610 ippAddString(request, IPP_TAG_JOB, IPP_TAG_NAME,
2611 "job-accounting-user-id", NULL, keyword);
2612 }
2613
2614 for (mandatory = (char *)cupsArrayFirst(pc->mandatory);
2615 mandatory;
2616 mandatory = (char *)cupsArrayNext(pc->mandatory))
2617 {
2618 if (strcmp(mandatory, "copies") &&
2619 strcmp(mandatory, "destination-uris") &&
2620 strcmp(mandatory, "finishings") &&
2621 strcmp(mandatory, "job-account-id") &&
2622 strcmp(mandatory, "job-accounting-user-id") &&
2623 strcmp(mandatory, "job-password") &&
2624 strcmp(mandatory, "job-password-encryption") &&
2625 strcmp(mandatory, "media") &&
2626 strncmp(mandatory, "media-col", 9) &&
2627 strcmp(mandatory, "multiple-document-handling") &&
2628 strcmp(mandatory, "output-bin") &&
2629 strcmp(mandatory, "print-color-mode") &&
2630 strcmp(mandatory, "print-quality") &&
2631 strcmp(mandatory, "sides") &&
2632 (keyword = cupsGetOption(mandatory, num_options, options)) != NULL)
2633 {
2634 _ipp_option_t *opt = _ippFindOption(mandatory);
2635 /* Option type */
2636 ipp_tag_t value_tag = opt ? opt->value_tag : IPP_TAG_NAME;
2637 /* Value type */
2638
2639 switch (value_tag)
2640 {
2641 case IPP_TAG_INTEGER :
2642 case IPP_TAG_ENUM :
2643 ippAddInteger(request, IPP_TAG_JOB, value_tag, mandatory,
2644 atoi(keyword));
2645 break;
2646 case IPP_TAG_BOOLEAN :
2647 ippAddBoolean(request, IPP_TAG_JOB, mandatory,
2648 !_cups_strcasecmp(keyword, "true"));
2649 break;
2650 case IPP_TAG_RANGE :
2651 {
2652 int lower, upper; /* Range */
2653
2654 if (sscanf(keyword, "%d-%d", &lower, &upper) != 2)
2655 lower = upper = atoi(keyword);
2656
2657 ippAddRange(request, IPP_TAG_JOB, mandatory, lower, upper);
2658 }
2659 break;
2660 case IPP_TAG_STRING :
2661 ippAddOctetString(request, IPP_TAG_JOB, mandatory, keyword,
2662 strlen(keyword));
2663 break;
2664 default :
2665 if (!strcmp(mandatory, "print-color-mode") && !strcmp(keyword, "monochrome"))
2666 {
2667 if (ippContainsString(print_color_mode_sup, "auto-monochrome"))
2668 keyword = "auto-monochrome";
2669 else if (ippContainsString(print_color_mode_sup, "process-monochrome") && !ippContainsString(print_color_mode_sup, "monochrome"))
2670 keyword = "process-monochrome";
2671 }
2672
2673 ippAddString(request, IPP_TAG_JOB, value_tag, mandatory,
2674 NULL, keyword);
2675 break;
2676 }
2677 }
2678 }
2679
2680 if ((keyword = cupsGetOption("PageSize", num_options, options)) == NULL)
2681 keyword = cupsGetOption("media", num_options, options);
2682
2683 if ((size = _ppdCacheGetSize(pc, keyword)) != NULL)
2684 {
2685 /*
2686 * Add a media-col value...
2687 */
2688
2689 media_size = ippNew();
2690 ippAddInteger(media_size, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2691 "x-dimension", size->width);
2692 ippAddInteger(media_size, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2693 "y-dimension", size->length);
2694
2695 media_col = ippNew();
2696 ippAddCollection(media_col, IPP_TAG_ZERO, "media-size", media_size);
2697
2698 media_source = _ppdCacheGetSource(pc, cupsGetOption("InputSlot",
2699 num_options,
2700 options));
2701 media_type = _ppdCacheGetType(pc, cupsGetOption("MediaType",
2702 num_options,
2703 options));
2704
2705 for (i = 0; i < media_col_sup->num_values; i ++)
2706 {
2707 if (!strcmp(media_col_sup->values[i].string.text,
2708 "media-left-margin"))
2709 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2710 "media-left-margin", size->left);
2711 else if (!strcmp(media_col_sup->values[i].string.text,
2712 "media-bottom-margin"))
2713 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2714 "media-bottom-margin", size->bottom);
2715 else if (!strcmp(media_col_sup->values[i].string.text,
2716 "media-right-margin"))
2717 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2718 "media-right-margin", size->right);
2719 else if (!strcmp(media_col_sup->values[i].string.text,
2720 "media-top-margin"))
2721 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2722 "media-top-margin", size->top);
2723 else if (!strcmp(media_col_sup->values[i].string.text,
2724 "media-source") && media_source)
2725 ippAddString(media_col, IPP_TAG_ZERO, IPP_TAG_KEYWORD,
2726 "media-source", NULL, media_source);
2727 else if (!strcmp(media_col_sup->values[i].string.text,
2728 "media-type") && media_type)
2729 ippAddString(media_col, IPP_TAG_ZERO, IPP_TAG_KEYWORD,
2730 "media-type", NULL, media_type);
2731 }
2732
2733 ippAddCollection(request, IPP_TAG_JOB, "media-col", media_col);
2734 }
2735
2736 if ((keyword = cupsGetOption("output-bin", num_options,
2737 options)) == NULL)
2738 {
2739 if ((choice = ppdFindMarkedChoice(ppd, "OutputBin")) != NULL)
2740 keyword = _ppdCacheGetBin(pc, choice->choice);
2741 }
2742
2743 if (keyword)
2744 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "output-bin",
2745 NULL, keyword);
2746
2747 color_attr_name = print_color_mode_sup ? "print-color-mode" : "output-mode";
2748
2749 if ((keyword = cupsGetOption("print-color-mode", num_options,
2750 options)) == NULL)
2751 {
2752 if ((choice = ppdFindMarkedChoice(ppd, "ColorModel")) != NULL)
2753 {
2754 if (!_cups_strcasecmp(choice->choice, "Gray"))
2755 keyword = "monochrome";
2756 else
2757 keyword = "color";
2758 }
2759 }
2760
2761 if (keyword && !strcmp(keyword, "monochrome"))
2762 {
2763 if (ippContainsString(print_color_mode_sup, "auto-monochrome"))
2764 keyword = "auto-monochrome";
2765 else if (ippContainsString(print_color_mode_sup, "process-monochrome") && !ippContainsString(print_color_mode_sup, "monochrome"))
2766 keyword = "process-monochrome";
2767 }
2768
2769 if (keyword)
2770 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, color_attr_name,
2771 NULL, keyword);
2772
2773 if ((keyword = cupsGetOption("print-quality", num_options,
2774 options)) != NULL)
2775 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality",
2776 atoi(keyword));
2777 else if ((choice = ppdFindMarkedChoice(ppd, "cupsPrintQuality")) != NULL)
2778 {
2779 if (!_cups_strcasecmp(choice->choice, "draft"))
2780 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality",
2781 IPP_QUALITY_DRAFT);
2782 else if (!_cups_strcasecmp(choice->choice, "normal"))
2783 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality",
2784 IPP_QUALITY_NORMAL);
2785 else if (!_cups_strcasecmp(choice->choice, "high"))
2786 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality",
2787 IPP_QUALITY_HIGH);
2788 }
2789
2790 if ((keyword = cupsGetOption("sides", num_options, options)) != NULL)
2791 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides",
2792 NULL, keyword);
2793 else if (pc->sides_option &&
2794 (choice = ppdFindMarkedChoice(ppd, pc->sides_option)) != NULL)
2795 {
2796 if (!_cups_strcasecmp(choice->choice, pc->sides_1sided))
2797 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides",
2798 NULL, "one-sided");
2799 else if (!_cups_strcasecmp(choice->choice, pc->sides_2sided_long))
2800 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides",
2801 NULL, "two-sided-long-edge");
2802 if (!_cups_strcasecmp(choice->choice, pc->sides_2sided_short))
2803 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides",
2804 NULL, "two-sided-short-edge");
2805 }
2806
2807 if ((keyword = cupsGetOption("multiple-document-handling",
2808 num_options, options)) != NULL)
2809 {
2810 if (strstr(keyword, "uncollated"))
2811 keyword = "false";
2812 else
2813 keyword = "true";
2814 }
2815 else if ((keyword = cupsGetOption("collate", num_options,
2816 options)) == NULL)
2817 keyword = "true";
2818
2819 if (format)
2820 {
2821 if (!_cups_strcasecmp(format, "image/gif") ||
2822 !_cups_strcasecmp(format, "image/jp2") ||
2823 !_cups_strcasecmp(format, "image/jpeg") ||
2824 !_cups_strcasecmp(format, "image/png") ||
2825 !_cups_strcasecmp(format, "image/tiff") ||
2826 !_cups_strncasecmp(format, "image/x-", 8))
2827 {
2828 /*
2829 * Collation makes no sense for single page image formats...
2830 */
2831
2832 keyword = "false";
2833 }
2834 else if (!_cups_strncasecmp(format, "image/", 6) ||
2835 !_cups_strcasecmp(format, "application/vnd.cups-raster"))
2836 {
2837 /*
2838 * Multi-page image formats will have copies applied by the upstream
2839 * filters...
2840 */
2841
2842 copies = 1;
2843 }
2844 }
2845
2846 if (doc_handling_sup)
2847 {
2848 if (!_cups_strcasecmp(keyword, "true"))
2849 collate_str = "separate-documents-collated-copies";
2850 else
2851 collate_str = "separate-documents-uncollated-copies";
2852
2853 for (i = 0; i < doc_handling_sup->num_values; i ++)
2854 if (!strcmp(doc_handling_sup->values[i].string.text, collate_str))
2855 {
2856 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD,
2857 "multiple-document-handling", NULL, collate_str);
2858 break;
2859 }
2860
2861 if (i >= doc_handling_sup->num_values)
2862 copies = 1;
2863 }
2864
2865 /*
2866 * Map finishing options...
2867 */
2868
2869 num_finishings = _ppdCacheGetFinishingValues(pc, num_options, options,
2870 (int)(sizeof(finishings) /
2871 sizeof(finishings[0])),
2872 finishings);
2873 if (num_finishings > 0)
2874 ippAddIntegers(request, IPP_TAG_JOB, IPP_TAG_ENUM, "finishings",
2875 num_finishings, finishings);
2876
2877 /*
2878 * Map FaxOut options...
2879 */
2880
2881 if ((keyword = cupsGetOption("phone", num_options, options)) != NULL)
2882 {
2883 ipp_t *destination; /* destination collection */
2884 char phone[1024], /* Phone number string */
2885 *ptr, /* Pointer into string */
2886 tel_uri[1024]; /* tel: URI */
2887 static const char * const allowed = "0123456789#*-+.()";
2888 /* Allowed characters */
2889
2890 destination = ippNew();
2891
2892 /*
2893 * Unescape and filter out spaces and other characters that are not
2894 * allowed in a tel: URI.
2895 */
2896
2897 _httpDecodeURI(phone, keyword, sizeof(phone));
2898 for (ptr = phone; *ptr;)
2899 {
2900 if (!strchr(allowed, *ptr))
2901 _cups_strcpy(ptr, ptr + 1);
2902 else
2903 ptr ++;
2904 }
2905
2906 httpAssembleURI(HTTP_URI_CODING_ALL, tel_uri, sizeof(tel_uri), "tel", NULL, NULL, 0, phone);
2907 ippAddString(destination, IPP_TAG_JOB, IPP_TAG_URI, "destination-uri", NULL, tel_uri);
2908
2909 if ((keyword = cupsGetOption("faxPrefix", num_options,
2910 options)) != NULL && *keyword)
2911 {
2912 char predial[1024]; /* Pre-dial string */
2913
2914 _httpDecodeURI(predial, keyword, sizeof(predial));
2915 ippAddString(destination, IPP_TAG_JOB, IPP_TAG_TEXT, "pre-dial-string", NULL, predial);
2916 }
2917
2918 ippAddCollection(request, IPP_TAG_JOB, "destination-uris", destination);
2919 ippDelete(destination);
2920 }
2921 }
2922 else
2923 {
2924 /*
2925 * When talking to another CUPS server, send all options...
2926 */
2927
2928 fputs("DEBUG: Adding all operation/job attributes.\n", stderr);
2929 cupsEncodeOptions2(request, num_options, options, IPP_TAG_OPERATION);
2930 cupsEncodeOptions2(request, num_options, options, IPP_TAG_JOB);
2931 }
2932
2933 if (copies > 1 && (!pc || copies <= pc->max_copies))
2934 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_INTEGER, "copies", copies);
2935 }
2936
2937 fprintf(stderr, "DEBUG: IPP/%d.%d %s #%d\n", version / 10, version % 10,
2938 ippOpString(ippGetOperation(request)), ippGetRequestId(request));
2939 for (group = IPP_TAG_ZERO, attr = ippFirstAttribute(request);
2940 attr;
2941 attr = ippNextAttribute(request))
2942 {
2943 const char *name = ippGetName(attr);
2944
2945 if (!name)
2946 {
2947 group = IPP_TAG_ZERO;
2948 continue;
2949 }
2950
2951 if (group != ippGetGroupTag(attr))
2952 {
2953 group = ippGetGroupTag(attr);
2954 fprintf(stderr, "DEBUG: ---- %s ----\n", ippTagString(group));
2955 }
2956
2957 ippAttributeString(attr, buffer, sizeof(buffer));
2958 fprintf(stderr, "DEBUG: %s %s%s %s\n", name,
2959 ippGetCount(attr) > 1 ? "1setOf " : "",
2960 ippTagString(ippGetValueTag(attr)), buffer);
2961 }
2962
2963 fprintf(stderr, "DEBUG: ---- %s ----\n", ippTagString(IPP_TAG_END));
2964
2965 return (request);
2966 }
2967
2968
2969 /*
2970 * 'password_cb()' - Disable the password prompt for cupsDoFileRequest().
2971 */
2972
2973 static const char * /* O - Password */
2974 password_cb(const char *prompt, /* I - Prompt (not used) */
2975 http_t *http, /* I - Connection */
2976 const char *method, /* I - Request method (not used) */
2977 const char *resource, /* I - Resource path (not used) */
2978 int *password_tries) /* I - Password tries */
2979 {
2980 char def_username[HTTP_MAX_VALUE]; /* Default username */
2981
2982
2983 fprintf(stderr, "DEBUG: password_cb(prompt=\"%s\", http=%p, method=\"%s\", "
2984 "resource=\"%s\", password_tries=%p(%d)), password=%p\n",
2985 prompt, http, method, resource, password_tries, *password_tries,
2986 password);
2987
2988 (void)prompt;
2989 (void)method;
2990 (void)resource;
2991
2992 if (!uri_credentials)
2993 {
2994 /*
2995 * Remember that we need to authenticate...
2996 */
2997
2998 auth_info_required = "username,password";
2999
3000 if (httpGetSubField(http, HTTP_FIELD_WWW_AUTHENTICATE, "username",
3001 def_username))
3002 {
3003 char quoted[HTTP_MAX_VALUE * 2 + 4];
3004 /* Quoted string */
3005
3006 fprintf(stderr, "ATTR: auth-info-default=%s,\n",
3007 quote_string(def_username, quoted, sizeof(quoted)));
3008 }
3009 }
3010
3011 if (password && *password && *password_tries < 3)
3012 {
3013 (*password_tries) ++;
3014
3015 cupsSetUser(username);
3016
3017 return (password);
3018 }
3019 else
3020 {
3021 /*
3022 * Give up after 3 tries or if we don't have a password to begin with...
3023 */
3024
3025 return (NULL);
3026 }
3027 }
3028
3029
3030 /*
3031 * 'quote_string()' - Quote a string value.
3032 */
3033
3034 static const char * /* O - Quoted string */
3035 quote_string(const char *s, /* I - String */
3036 char *q, /* I - Quoted string buffer */
3037 size_t qsize) /* I - Size of quoted string buffer */
3038 {
3039 char *qptr, /* Pointer into string buffer */
3040 *qend; /* End of string buffer */
3041
3042
3043 qptr = q;
3044 qend = q + qsize - 5;
3045
3046 if (qend < q)
3047 {
3048 *q = '\0';
3049 return (q);
3050 }
3051
3052 *qptr++ = '\'';
3053 *qptr++ = '\"';
3054
3055 while (*s && qptr < qend)
3056 {
3057 if (*s == '\\' || *s == '\"' || *s == '\'')
3058 {
3059 if (qptr < (qend - 4))
3060 {
3061 *qptr++ = '\\';
3062 *qptr++ = '\\';
3063 *qptr++ = '\\';
3064 }
3065 else
3066 break;
3067 }
3068
3069 *qptr++ = *s++;
3070 }
3071
3072 *qptr++ = '\"';
3073 *qptr++ = '\'';
3074 *qptr = '\0';
3075
3076 return (q);
3077 }
3078
3079
3080 /*
3081 * 'report_attr()' - Report an IPP attribute value.
3082 */
3083
3084 static void
3085 report_attr(ipp_attribute_t *attr) /* I - Attribute */
3086 {
3087 int i; /* Looping var */
3088 char value[1024], /* Value string */
3089 *valptr; /* Pointer into value string */
3090 const char *cached; /* Cached attribute */
3091
3092
3093 /*
3094 * Convert the attribute values into quoted strings...
3095 */
3096
3097 for (i = 0, valptr = value;
3098 i < attr->num_values && valptr < (value + sizeof(value) - 10);
3099 i ++)
3100 {
3101 if (i > 0)
3102 *valptr++ = ',';
3103
3104 switch (attr->value_tag)
3105 {
3106 case IPP_TAG_INTEGER :
3107 case IPP_TAG_ENUM :
3108 snprintf(valptr, sizeof(value) - (valptr - value), "%d",
3109 attr->values[i].integer);
3110 valptr += strlen(valptr);
3111 break;
3112
3113 case IPP_TAG_TEXT :
3114 case IPP_TAG_NAME :
3115 case IPP_TAG_KEYWORD :
3116 quote_string(attr->values[i].string.text, valptr,
3117 value + sizeof(value) - valptr);
3118 valptr += strlen(valptr);
3119 break;
3120
3121 default :
3122 /*
3123 * Unsupported value type...
3124 */
3125
3126 return;
3127 }
3128 }
3129
3130 *valptr = '\0';
3131
3132 _cupsMutexLock(&report_mutex);
3133
3134 if ((cached = cupsGetOption(attr->name, num_attr_cache,
3135 attr_cache)) == NULL || strcmp(cached, value))
3136 {
3137 /*
3138 * Tell the scheduler about the new values...
3139 */
3140
3141 num_attr_cache = cupsAddOption(attr->name, value, num_attr_cache,
3142 &attr_cache);
3143 fprintf(stderr, "ATTR: %s=%s\n", attr->name, value);
3144 }
3145
3146 _cupsMutexUnlock(&report_mutex);
3147 }
3148
3149
3150 /*
3151 * 'report_printer_state()' - Report the printer state.
3152 */
3153
3154 static void
3155 report_printer_state(ipp_t *ipp) /* I - IPP response */
3156 {
3157 ipp_attribute_t *pa, /* printer-alert */
3158 *pam, /* printer-alert-message */
3159 *psm, /* printer-state-message */
3160 *reasons, /* printer-state-reasons */
3161 *marker; /* marker-* attributes */
3162 char value[1024], /* State/message string */
3163 *valptr; /* Pointer into string */
3164 static int ipp_supplies = -1;
3165 /* Report supply levels? */
3166
3167
3168 /*
3169 * Report alerts and messages...
3170 */
3171
3172 if ((pa = ippFindAttribute(ipp, "printer-alert", IPP_TAG_TEXT)) != NULL)
3173 report_attr(pa);
3174
3175 if ((pam = ippFindAttribute(ipp, "printer-alert-message",
3176 IPP_TAG_TEXT)) != NULL)
3177 report_attr(pam);
3178
3179 if ((psm = ippFindAttribute(ipp, "printer-state-message",
3180 IPP_TAG_TEXT)) != NULL)
3181 {
3182 char *ptr; /* Pointer into message */
3183
3184
3185 strlcpy(value, "INFO: ", sizeof(value));
3186 for (ptr = psm->values[0].string.text, valptr = value + 6;
3187 *ptr && valptr < (value + sizeof(value) - 6);
3188 ptr ++)
3189 {
3190 if (*ptr < ' ' && *ptr > 0 && *ptr != '\t')
3191 {
3192 /*
3193 * Substitute "<XX>" for the control character; sprintf is safe because
3194 * we always leave 6 chars free at the end...
3195 */
3196
3197 sprintf(valptr, "<%02X>", *ptr);
3198 valptr += 4;
3199 }
3200 else
3201 *valptr++ = *ptr;
3202 }
3203
3204 *valptr++ = '\n';
3205 *valptr = '\0';
3206
3207 fputs(value, stderr);
3208 }
3209
3210 /*
3211 * Now report printer-state-reasons, filtering out some of the reasons we never
3212 * want to set...
3213 */
3214
3215 if ((reasons = ippFindAttribute(ipp, "printer-state-reasons",
3216 IPP_TAG_KEYWORD)) == NULL)
3217 return;
3218
3219 update_reasons(reasons, NULL);
3220
3221 /*
3222 * Relay the current marker-* attribute values...
3223 */
3224
3225 if (ipp_supplies < 0)
3226 {
3227 ppd_file_t *ppd; /* PPD file */
3228 ppd_attr_t *ppdattr; /* Attribute in PPD file */
3229
3230 if ((ppd = ppdOpenFile(getenv("PPD"))) != NULL &&
3231 (ppdattr = ppdFindAttr(ppd, "cupsIPPSupplies", NULL)) != NULL &&
3232 ppdattr->value && _cups_strcasecmp(ppdattr->value, "true"))
3233 ipp_supplies = 0;
3234 else
3235 ipp_supplies = 1;
3236
3237 ppdClose(ppd);
3238 }
3239
3240 if (ipp_supplies > 0)
3241 {
3242 if ((marker = ippFindAttribute(ipp, "marker-colors", IPP_TAG_NAME)) != NULL)
3243 report_attr(marker);
3244 if ((marker = ippFindAttribute(ipp, "marker-high-levels",
3245 IPP_TAG_INTEGER)) != NULL)
3246 report_attr(marker);
3247 if ((marker = ippFindAttribute(ipp, "marker-levels",
3248 IPP_TAG_INTEGER)) != NULL)
3249 report_attr(marker);
3250 if ((marker = ippFindAttribute(ipp, "marker-low-levels",
3251 IPP_TAG_INTEGER)) != NULL)
3252 report_attr(marker);
3253 if ((marker = ippFindAttribute(ipp, "marker-message",
3254 IPP_TAG_TEXT)) != NULL)
3255 report_attr(marker);
3256 if ((marker = ippFindAttribute(ipp, "marker-names", IPP_TAG_NAME)) != NULL)
3257 report_attr(marker);
3258 if ((marker = ippFindAttribute(ipp, "marker-types",
3259 IPP_TAG_KEYWORD)) != NULL)
3260 report_attr(marker);
3261 }
3262 }
3263
3264
3265 #if defined(HAVE_GSSAPI) && defined(HAVE_XPC)
3266 /*
3267 * 'run_as_user()' - Run the IPP backend as the printing user.
3268 *
3269 * This function uses an XPC-based user agent to run the backend as the printing
3270 * user. We need to do this in order to have access to the user's Kerberos
3271 * credentials.
3272 */
3273
3274 static int /* O - Exit status */
3275 run_as_user(char *argv[], /* I - Command-line arguments */
3276 uid_t uid, /* I - User ID */
3277 const char *device_uri, /* I - Device URI */
3278 int fd) /* I - File to print */
3279 {
3280 const char *auth_negotiate;/* AUTH_NEGOTIATE env var */
3281 xpc_connection_t conn; /* Connection to XPC service */
3282 xpc_object_t request; /* Request message dictionary */
3283 __block xpc_object_t response; /* Response message dictionary */
3284 dispatch_semaphore_t sem; /* Semaphore for waiting for response */
3285 int status = CUPS_BACKEND_FAILED;
3286 /* Status of request */
3287
3288
3289 fprintf(stderr, "DEBUG: Running IPP backend as UID %d.\n", (int)uid);
3290
3291 /*
3292 * Connect to the user agent for the specified UID...
3293 */
3294
3295 conn = xpc_connection_create_mach_service(kPMPrintUIToolAgent,
3296 dispatch_get_global_queue(0, 0), 0);
3297 if (!conn)
3298 {
3299 _cupsLangPrintFilter(stderr, "ERROR",
3300 _("Unable to start backend process."));
3301 fputs("DEBUG: Unable to create connection to agent.\n", stderr);
3302 goto cleanup;
3303 }
3304
3305 xpc_connection_set_event_handler(conn,
3306 ^(xpc_object_t event)
3307 {
3308 xpc_type_t messageType = xpc_get_type(event);
3309
3310 if (messageType == XPC_TYPE_ERROR)
3311 {
3312 if (event == XPC_ERROR_CONNECTION_INTERRUPTED)
3313 fprintf(stderr, "DEBUG: Interrupted connection to service %s.\n",
3314 xpc_connection_get_name(conn));
3315 else if (event == XPC_ERROR_CONNECTION_INVALID)
3316 fprintf(stderr, "DEBUG: Connection invalid for service %s.\n",
3317 xpc_connection_get_name(conn));
3318 else
3319 fprintf(stderr, "DEBUG: Unxpected error for service %s: %s\n",
3320 xpc_connection_get_name(conn),
3321 xpc_dictionary_get_string(event, XPC_ERROR_KEY_DESCRIPTION));
3322 }
3323 });
3324 xpc_connection_set_target_uid(conn, uid);
3325 xpc_connection_resume(conn);
3326
3327 /*
3328 * Try starting the backend...
3329 */
3330
3331 request = xpc_dictionary_create(NULL, NULL, 0);
3332 xpc_dictionary_set_int64(request, "command", kPMStartJob);
3333 xpc_dictionary_set_string(request, "device-uri", device_uri);
3334 xpc_dictionary_set_string(request, "job-id", argv[1]);
3335 xpc_dictionary_set_string(request, "user", argv[2]);
3336 xpc_dictionary_set_string(request, "title", argv[3]);
3337 xpc_dictionary_set_string(request, "copies", argv[4]);
3338 xpc_dictionary_set_string(request, "options", argv[5]);
3339 xpc_dictionary_set_string(request, "auth-info-required",
3340 getenv("AUTH_INFO_REQUIRED"));
3341 if ((auth_negotiate = getenv("AUTH_NEGOTIATE")) != NULL)
3342 xpc_dictionary_set_string(request, "auth-negotiate", auth_negotiate);
3343 xpc_dictionary_set_fd(request, "stdin", fd);
3344 xpc_dictionary_set_fd(request, "stderr", 2);
3345 xpc_dictionary_set_fd(request, "side-channel", CUPS_SC_FD);
3346
3347 sem = dispatch_semaphore_create(0);
3348 response = NULL;
3349
3350 xpc_connection_send_message_with_reply(conn, request,
3351 dispatch_get_global_queue(0,0),
3352 ^(xpc_object_t reply)
3353 {
3354 /* Save the response and wake up */
3355 if (xpc_get_type(reply)
3356 == XPC_TYPE_DICTIONARY)
3357 response = xpc_retain(reply);
3358
3359 dispatch_semaphore_signal(sem);
3360 });
3361
3362 dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
3363 xpc_release(request);
3364 dispatch_release(sem);
3365
3366 if (response)
3367 {
3368 child_pid = xpc_dictionary_get_int64(response, "child-pid");
3369
3370 xpc_release(response);
3371
3372 if (child_pid)
3373 fprintf(stderr, "DEBUG: Child PID=%d.\n", child_pid);
3374 else
3375 {
3376 _cupsLangPrintFilter(stderr, "ERROR",
3377 _("Unable to start backend process."));
3378 fputs("DEBUG: No child PID.\n", stderr);
3379 goto cleanup;
3380 }
3381 }
3382 else
3383 {
3384 _cupsLangPrintFilter(stderr, "ERROR",
3385 _("Unable to start backend process."));
3386 fputs("DEBUG: No reply from agent.\n", stderr);
3387 goto cleanup;
3388 }
3389
3390 /*
3391 * Then wait for the backend to finish...
3392 */
3393
3394 request = xpc_dictionary_create(NULL, NULL, 0);
3395 xpc_dictionary_set_int64(request, "command", kPMWaitForJob);
3396 xpc_dictionary_set_fd(request, "stderr", 2);
3397
3398 sem = dispatch_semaphore_create(0);
3399 response = NULL;
3400
3401 xpc_connection_send_message_with_reply(conn, request,
3402 dispatch_get_global_queue(0,0),
3403 ^(xpc_object_t reply)
3404 {
3405 /* Save the response and wake up */
3406 if (xpc_get_type(reply)
3407 == XPC_TYPE_DICTIONARY)
3408 response = xpc_retain(reply);
3409
3410 dispatch_semaphore_signal(sem);
3411 });
3412
3413 dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
3414 xpc_release(request);
3415 dispatch_release(sem);
3416
3417 if (response)
3418 {
3419 status = xpc_dictionary_get_int64(response, "status");
3420
3421 if (status == SIGTERM || status == SIGKILL || status == SIGPIPE)
3422 {
3423 fprintf(stderr, "DEBUG: Child terminated on signal %d.\n", status);
3424 status = CUPS_BACKEND_FAILED;
3425 }
3426 else if (WIFSIGNALED(status))
3427 {
3428 fprintf(stderr, "DEBUG: Child crashed on signal %d.\n", status);
3429 status = CUPS_BACKEND_STOP;
3430 }
3431 else if (WIFEXITED(status))
3432 {
3433 status = WEXITSTATUS(status);
3434 fprintf(stderr, "DEBUG: Child exited with status %d.\n", status);
3435 }
3436
3437 xpc_release(response);
3438 }
3439 else
3440 _cupsLangPrintFilter(stderr, "ERROR",
3441 _("Unable to get backend exit status."));
3442
3443 cleanup:
3444
3445 if (conn)
3446 {
3447 xpc_connection_cancel(conn);
3448 xpc_release(conn);
3449 }
3450
3451 return (status);
3452 }
3453 #endif /* HAVE_GSSAPI && HAVE_XPC */
3454
3455
3456 /*
3457 * 'sigterm_handler()' - Handle 'terminate' signals that stop the backend.
3458 */
3459
3460 static void
3461 sigterm_handler(int sig) /* I - Signal */
3462 {
3463 (void)sig; /* remove compiler warnings... */
3464
3465 write(2, "DEBUG: Got SIGTERM.\n", 20);
3466
3467 #if defined(HAVE_GSSAPI) && defined(HAVE_XPC)
3468 if (child_pid)
3469 {
3470 kill(child_pid, sig);
3471 child_pid = 0;
3472 }
3473 #endif /* HAVE_GSSAPI && HAVE_XPC */
3474
3475 if (!job_canceled)
3476 {
3477 /*
3478 * Flag that the job should be canceled...
3479 */
3480
3481 write(2, "DEBUG: job_canceled = 1.\n", 25);
3482
3483 job_canceled = 1;
3484 return;
3485 }
3486
3487 /*
3488 * The scheduler already tried to cancel us once, now just terminate
3489 * after removing our temp file!
3490 */
3491
3492 if (tmpfilename[0])
3493 unlink(tmpfilename);
3494
3495 exit(1);
3496 }
3497
3498
3499 /*
3500 * 'timeout_cb()' - Handle HTTP timeouts.
3501 */
3502
3503 static int /* O - 1 to continue, 0 to cancel */
3504 timeout_cb(http_t *http, /* I - Connection to server (unused) */
3505 void *user_data) /* I - User data (unused) */
3506 {
3507 (void)http;
3508 (void)user_data;
3509
3510 return (!job_canceled);
3511 }
3512
3513
3514 /*
3515 * 'update_reasons()' - Update the printer-state-reasons values.
3516 */
3517
3518 static void
3519 update_reasons(ipp_attribute_t *attr, /* I - printer-state-reasons or NULL */
3520 const char *s) /* I - STATE: string or NULL */
3521 {
3522 char op; /* Add (+), remove (-), replace (\0) */
3523 cups_array_t *new_reasons; /* New reasons array */
3524 char *reason, /* Current reason */
3525 add[2048], /* Reasons added string */
3526 *addptr, /* Pointer into add string */
3527 rem[2048], /* Reasons removed string */
3528 *remptr; /* Pointer into remove string */
3529 const char *addprefix, /* Current add string prefix */
3530 *remprefix; /* Current remove string prefix */
3531
3532
3533 fprintf(stderr, "DEBUG: update_reasons(attr=%d(%s%s), s=\"%s\")\n",
3534 attr ? attr->num_values : 0, attr ? attr->values[0].string.text : "",
3535 attr && attr->num_values > 1 ? ",..." : "", s ? s : "(null)");
3536
3537 /*
3538 * Create an array of new reason keyword strings...
3539 */
3540
3541 if (attr)
3542 {
3543 int i; /* Looping var */
3544
3545 new_reasons = cupsArrayNew((cups_array_func_t)strcmp, NULL);
3546 op = '\0';
3547
3548 for (i = 0; i < attr->num_values; i ++)
3549 {
3550 reason = attr->values[i].string.text;
3551
3552 if (strcmp(reason, "none") &&
3553 strcmp(reason, "none-report") &&
3554 strcmp(reason, "paused") &&
3555 strncmp(reason, "spool-area-full", 15) &&
3556 strcmp(reason, "com.apple.print.recoverable-warning") &&
3557 strncmp(reason, "cups-", 5))
3558 cupsArrayAdd(new_reasons, reason);
3559 }
3560 }
3561 else if (s)
3562 {
3563 if (*s == '+' || *s == '-')
3564 op = *s++;
3565 else
3566 op = '\0';
3567
3568 new_reasons = _cupsArrayNewStrings(s, ',');
3569 }
3570 else
3571 return;
3572
3573 /*
3574 * Compute the changes...
3575 */
3576
3577 add[0] = '\0';
3578 addprefix = "STATE: +";
3579 addptr = add;
3580 rem[0] = '\0';
3581 remprefix = "STATE: -";
3582 remptr = rem;
3583
3584 fprintf(stderr, "DEBUG2: op='%c', new_reasons=%d, state_reasons=%d\n",
3585 op ? op : ' ', cupsArrayCount(new_reasons),
3586 cupsArrayCount(state_reasons));
3587
3588 _cupsMutexLock(&report_mutex);
3589
3590 if (op == '+')
3591 {
3592 /*
3593 * Add reasons...
3594 */
3595
3596 for (reason = (char *)cupsArrayFirst(new_reasons);
3597 reason;
3598 reason = (char *)cupsArrayNext(new_reasons))
3599 {
3600 if (!cupsArrayFind(state_reasons, reason))
3601 {
3602 if (!strncmp(reason, "cups-remote-", 12))
3603 {
3604 /*
3605 * If we are setting cups-remote-xxx, remove all other cups-remote-xxx
3606 * keywords...
3607 */
3608
3609 char *temp; /* Current reason in state_reasons */
3610
3611 cupsArraySave(state_reasons);
3612
3613 for (temp = (char *)cupsArrayFirst(state_reasons);
3614 temp;
3615 temp = (char *)cupsArrayNext(state_reasons))
3616 if (!strncmp(temp, "cups-remote-", 12))
3617 {
3618 snprintf(remptr, sizeof(rem) - (remptr - rem), "%s%s", remprefix,
3619 temp);
3620 remptr += strlen(remptr);
3621 remprefix = ",";
3622
3623 cupsArrayRemove(state_reasons, temp);
3624 break;
3625 }
3626
3627 cupsArrayRestore(state_reasons);
3628 }
3629
3630 cupsArrayAdd(state_reasons, reason);
3631
3632 snprintf(addptr, sizeof(add) - (addptr - add), "%s%s", addprefix,
3633 reason);
3634 addptr += strlen(addptr);
3635 addprefix = ",";
3636 }
3637 }
3638 }
3639 else if (op == '-')
3640 {
3641 /*
3642 * Remove reasons...
3643 */
3644
3645 for (reason = (char *)cupsArrayFirst(new_reasons);
3646 reason;
3647 reason = (char *)cupsArrayNext(new_reasons))
3648 {
3649 if (cupsArrayFind(state_reasons, reason))
3650 {
3651 snprintf(remptr, sizeof(rem) - (remptr - rem), "%s%s", remprefix,
3652 reason);
3653 remptr += strlen(remptr);
3654 remprefix = ",";
3655
3656 cupsArrayRemove(state_reasons, reason);
3657 }
3658 }
3659 }
3660 else
3661 {
3662 /*
3663 * Replace reasons...
3664 */
3665
3666 for (reason = (char *)cupsArrayFirst(state_reasons);
3667 reason;
3668 reason = (char *)cupsArrayNext(state_reasons))
3669 {
3670 if (strncmp(reason, "cups-", 5) && !cupsArrayFind(new_reasons, reason))
3671 {
3672 snprintf(remptr, sizeof(rem) - (remptr - rem), "%s%s", remprefix,
3673 reason);
3674 remptr += strlen(remptr);
3675 remprefix = ",";
3676
3677 cupsArrayRemove(state_reasons, reason);
3678 }
3679 }
3680
3681 for (reason = (char *)cupsArrayFirst(new_reasons);
3682 reason;
3683 reason = (char *)cupsArrayNext(new_reasons))
3684 {
3685 if (!cupsArrayFind(state_reasons, reason))
3686 {
3687 cupsArrayAdd(state_reasons, reason);
3688
3689 snprintf(addptr, sizeof(add) - (addptr - add), "%s%s", addprefix,
3690 reason);
3691 addptr += strlen(addptr);
3692 addprefix = ",";
3693 }
3694 }
3695 }
3696
3697 _cupsMutexUnlock(&report_mutex);
3698
3699 /*
3700 * Report changes and return...
3701 */
3702
3703 if (add[0] && rem[0])
3704 fprintf(stderr, "%s\n%s\n", add, rem);
3705 else if (add[0])
3706 fprintf(stderr, "%s\n", add);
3707 else if (rem[0])
3708 fprintf(stderr, "%s\n", rem);
3709 }
3710
3711 /*
3712 * End of "$Id: ipp.c 11909 2014-06-09 18:58:16Z msweet $".
3713 */