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