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