]> git.ipfire.org Git - thirdparty/cups.git/blob - backend/ipp.c
Merge changes from CUPS 1.6svn-r10002
[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-2011 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 * compress_files() - Compress print files.
23 * monitor_printer() - Monitor the printer state.
24 * new_request() - Create a new print creation or validation request.
25 * password_cb() - Disable the password prompt for
26 * cupsDoFileRequest().
27 * report_attr() - Report an IPP attribute value.
28 * report_printer_state() - Report the printer state.
29 * run_as_user() - Run the IPP backend as the printing user.
30 * timeout_cb() - Handle HTTP timeouts.
31 * sigterm_handler() - Handle 'terminate' signals that stop the backend.
32 */
33
34 /*
35 * Include necessary headers.
36 */
37
38 #include "backend-private.h"
39 #include <cups/array-private.h>
40 #include <sys/types.h>
41 #include <sys/stat.h>
42 #include <sys/wait.h>
43 #if defined(HAVE_GSSAPI) && defined(HAVE_XPC)
44 # include <xpc/xpc.h>
45 # define kPMPrintUIToolAgent "com.apple.printuitool.agent"
46 # define kPMStartJob 100
47 # define kPMWaitForJob 101
48 extern void xpc_connection_set_target_uid(xpc_connection_t connection,
49 uid_t uid);
50 #endif /* HAVE_GSSAPI && HAVE_XPC */
51
52
53 /*
54 * Types...
55 */
56
57 typedef struct _cups_monitor_s /**** Monitoring data ****/
58 {
59 const char *uri, /* Printer URI */
60 *hostname, /* Hostname */
61 *user, /* Username */
62 *resource; /* Resource path */
63 int port, /* Port number */
64 version, /* IPP version */
65 job_id; /* Job ID for submitted job */
66 http_encryption_t encryption; /* Use encryption? */
67 ipp_jstate_t job_state; /* Current job state */
68 ipp_pstate_t printer_state; /* Current printer state */
69 } _cups_monitor_t;
70
71
72 /*
73 * Globals...
74 */
75
76 static const char *auth_info_required;
77 /* New auth-info-required value */
78 #if defined(HAVE_GSSAPI) && defined(HAVE_XPC)
79 static int child_pid = 0; /* Child process ID */
80 #endif /* HAVE_GSSAPI && HAVE_XPC */
81 static const char * const jattrs[] = /* Job attributes we want */
82 {
83 "job-impressions-completed",
84 "job-media-sheets-completed",
85 "job-state",
86 "job-state-reasons"
87 };
88 static int job_canceled = 0;
89 /* Job cancelled? */
90 static char *password = NULL;
91 /* Password for device URI */
92 static int password_tries = 0;
93 /* Password tries */
94 static const char * const pattrs[] = /* Printer attributes we want */
95 {
96 "copies-supported",
97 "cups-version",
98 "document-format-supported",
99 "marker-colors",
100 "marker-high-levels",
101 "marker-levels",
102 "marker-low-levels",
103 "marker-message",
104 "marker-names",
105 "marker-types",
106 "media-col-supported",
107 "multiple-document-handling-supported",
108 "operations-supported",
109 "printer-alert",
110 "printer-alert-description",
111 "printer-is-accepting-jobs",
112 "printer-state",
113 "printer-state-message",
114 "printer-state-reasons"
115 };
116 static const char * const remote_job_states[] =
117 { /* Remote job state keywords */
118 "+cups-remote-pending",
119 "+cups-remote-pending-held",
120 "+cups-remote-processing",
121 "+cups-remote-stopped",
122 "+cups-remote-canceled",
123 "+cups-remote-aborted",
124 "+cups-remote-completed"
125 };
126 static _cups_mutex_t report_mutex = _CUPS_MUTEX_INITIALIZER;
127 /* Mutex to control access */
128 static int num_attr_cache = 0;
129 /* Number of cached attributes */
130 static cups_option_t *attr_cache = NULL;
131 /* Cached attributes */
132 static cups_array_t *state_reasons; /* Array of printe-state-reasons keywords */
133 static char tmpfilename[1024] = "";
134 /* Temporary spool file name */
135
136
137 /*
138 * Local functions...
139 */
140
141 static void cancel_job(http_t *http, const char *uri, int id,
142 const char *resource, const char *user,
143 int version);
144 static ipp_pstate_t check_printer_state(http_t *http, const char *uri,
145 const char *resource,
146 const char *user, int version);
147 #ifdef HAVE_LIBZ
148 static void compress_files(int num_files, char **files);
149 #endif /* HAVE_LIBZ */
150 static void *monitor_printer(_cups_monitor_t *monitor);
151 static ipp_t *new_request(ipp_op_t op, int version, const char *uri,
152 const char *user, const char *title,
153 int num_options, cups_option_t *options,
154 const char *compression, int copies,
155 const char *format, _ppd_cache_t *pc,
156 ipp_attribute_t *media_col_sup,
157 ipp_attribute_t *doc_handling_sup);
158 static const char *password_cb(const char *);
159 static void report_attr(ipp_attribute_t *attr);
160 static void report_printer_state(ipp_t *ipp);
161 #if defined(HAVE_GSSAPI) && defined(HAVE_XPC)
162 static int run_as_user(int argc, char *argv[], uid_t uid,
163 const char *device_uri, int fd);
164 #endif /* HAVE_GSSAPI && HAVE_XPC */
165 static void sigterm_handler(int sig);
166 static int timeout_cb(http_t *http, void *user_data);
167 static void update_reasons(ipp_attribute_t *attr, const char *s);
168
169
170 /*
171 * 'main()' - Send a file to the printer or server.
172 *
173 * Usage:
174 *
175 * printer-uri job-id user title copies options [file]
176 */
177
178 int /* O - Exit status */
179 main(int argc, /* I - Number of command-line args */
180 char *argv[]) /* I - Command-line arguments */
181 {
182 int i; /* Looping var */
183 int send_options; /* Send job options? */
184 int num_options; /* Number of printer options */
185 cups_option_t *options; /* Printer options */
186 const char *device_uri; /* Device URI */
187 char scheme[255], /* Scheme in URI */
188 hostname[1024], /* Hostname */
189 username[255], /* Username info */
190 resource[1024], /* Resource info (printer name) */
191 addrname[256], /* Address name */
192 *optptr, /* Pointer to URI options */
193 *name, /* Name of option */
194 *value, /* Value of option */
195 sep; /* Separator character */
196 http_addrlist_t *addrlist; /* Address of printer */
197 int snmp_fd, /* SNMP socket */
198 start_count, /* Page count via SNMP at start */
199 page_count, /* Page count via SNMP */
200 have_supplies; /* Printer supports supply levels? */
201 int num_files; /* Number of files to print */
202 char **files, /* Files to print */
203 *compatfile = NULL; /* Compatibility filename */
204 off_t compatsize = 0; /* Size of compatibility file */
205 int port; /* Port number (not used) */
206 char portname[255]; /* Port name */
207 char uri[HTTP_MAX_URI]; /* Updated URI without user/pass */
208 http_status_t http_status; /* Status of HTTP request */
209 ipp_status_t ipp_status; /* Status of IPP request */
210 http_t *http; /* HTTP connection */
211 ipp_t *request, /* IPP request */
212 *response, /* IPP response */
213 *supported; /* get-printer-attributes response */
214 time_t start_time; /* Time of first connect */
215 int contimeout; /* Connection timeout */
216 int delay, /* Delay for retries */
217 prev_delay; /* Previous delay */
218 const char *compression; /* Compression mode */
219 int waitjob, /* Wait for job complete? */
220 waitprinter; /* Wait for printer ready? */
221 _cups_monitor_t monitor; /* Monitoring data */
222 ipp_attribute_t *job_id_attr; /* job-id attribute */
223 int job_id; /* job-id value */
224 ipp_attribute_t *job_sheets; /* job-media-sheets-completed */
225 ipp_attribute_t *job_state; /* job-state */
226 ipp_attribute_t *copies_sup; /* copies-supported */
227 ipp_attribute_t *cups_version; /* cups-version */
228 ipp_attribute_t *format_sup; /* document-format-supported */
229 ipp_attribute_t *media_col_sup; /* media-col-supported */
230 ipp_attribute_t *operations_sup; /* operations-supported */
231 ipp_attribute_t *doc_handling_sup; /* multiple-document-handling-supported */
232 ipp_attribute_t *printer_state; /* printer-state attribute */
233 ipp_attribute_t *printer_accepting; /* printer-is-accepting-jobs */
234 int validate_job; /* Does printer support Validate-Job? */
235 int copies, /* Number of copies for job */
236 copies_remaining; /* Number of copies remaining */
237 const char *content_type, /* CONTENT_TYPE environment variable */
238 *final_content_type, /* FINAL_CONTENT_TYPE environment var */
239 *document_format; /* document-format value */
240 int fd; /* File descriptor */
241 off_t bytes = 0; /* Bytes copied */
242 char buffer[16384]; /* Copy buffer */
243 #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
244 struct sigaction action; /* Actions for POSIX signals */
245 #endif /* HAVE_SIGACTION && !HAVE_SIGSET */
246 int version; /* IPP version */
247 ppd_file_t *ppd; /* PPD file */
248 _ppd_cache_t *pc; /* PPD cache and mapping data */
249 fd_set input; /* Input set for select() */
250
251
252 /*
253 * Make sure status messages are not buffered...
254 */
255
256 setbuf(stderr, NULL);
257
258 /*
259 * Ignore SIGPIPE and catch SIGTERM signals...
260 */
261
262 #ifdef HAVE_SIGSET
263 sigset(SIGPIPE, SIG_IGN);
264 sigset(SIGTERM, sigterm_handler);
265 #elif defined(HAVE_SIGACTION)
266 memset(&action, 0, sizeof(action));
267 action.sa_handler = SIG_IGN;
268 sigaction(SIGPIPE, &action, NULL);
269
270 sigemptyset(&action.sa_mask);
271 sigaddset(&action.sa_mask, SIGTERM);
272 action.sa_handler = sigterm_handler;
273 sigaction(SIGTERM, &action, NULL);
274 #else
275 signal(SIGPIPE, SIG_IGN);
276 signal(SIGTERM, sigterm_handler);
277 #endif /* HAVE_SIGSET */
278
279 /*
280 * Check command-line...
281 */
282
283 if (argc == 1)
284 {
285 char *s;
286
287 if ((s = strrchr(argv[0], '/')) != NULL)
288 s ++;
289 else
290 s = argv[0];
291
292 printf("network %s \"Unknown\" \"%s (%s)\"\n",
293 s, _cupsLangString(cupsLangDefault(),
294 _("Internet Printing Protocol")), s);
295 return (CUPS_BACKEND_OK);
296 }
297 else if (argc < 6)
298 {
299 _cupsLangPrintf(stderr,
300 _("Usage: %s job-id user title copies options [file]"),
301 argv[0]);
302 return (CUPS_BACKEND_STOP);
303 }
304
305 /*
306 * Get the device URI...
307 */
308
309 while ((device_uri = cupsBackendDeviceURI(argv)) == NULL)
310 {
311 _cupsLangPrintFilter(stderr, "INFO", _("Unable to locate printer."));
312 sleep(10);
313
314 if (getenv("CLASS") != NULL)
315 return (CUPS_BACKEND_FAILED);
316 }
317
318 if ((auth_info_required = getenv("AUTH_INFO_REQUIRED")) == NULL)
319 auth_info_required = "none";
320
321 state_reasons = _cupsArrayNewStrings(getenv("PRINTER_STATE_REASONS"));
322
323 #ifdef HAVE_GSSAPI
324 /*
325 * For Kerberos, become the printing user (if we can) to get the credentials
326 * that way.
327 */
328
329 if (!getuid() && (value = getenv("AUTH_UID")) != NULL)
330 {
331 uid_t uid = (uid_t)atoi(value);
332 /* User ID */
333
334 # ifdef HAVE_XPC
335 if (uid > 0)
336 {
337 if (argc == 6)
338 return (run_as_user(argc, argv, uid, device_uri, 0));
339 else
340 {
341 int status = 0; /* Exit status */
342
343 for (i = 6; i < argc && !status && !job_canceled; i ++)
344 {
345 if ((fd = open(argv[i], O_RDONLY)) >= 0)
346 {
347 status = run_as_user(argc, argv, uid, device_uri, fd);
348 close(fd);
349 }
350 else
351 {
352 _cupsLangPrintError("ERROR", _("Unable to open print file"));
353 status = CUPS_BACKEND_FAILED;
354 }
355 }
356
357 return (status);
358 }
359 }
360
361 # else /* No XPC, just try to run as the user ID */
362 if (uid > 0)
363 seteuid(uid);
364 # endif /* HAVE_XPC */
365 }
366 #endif /* HAVE_GSSAPI */
367
368 /*
369 * Get the (final) content type...
370 */
371
372 if ((content_type = getenv("CONTENT_TYPE")) == NULL)
373 content_type = "application/octet-stream";
374
375 if ((final_content_type = getenv("FINAL_CONTENT_TYPE")) == NULL)
376 {
377 final_content_type = content_type;
378
379 if (!strncmp(final_content_type, "printer/", 8))
380 final_content_type = "application/vnd.cups-raw";
381 }
382
383 /*
384 * Extract the hostname and printer name from the URI...
385 */
386
387 httpSeparateURI(HTTP_URI_CODING_ALL, device_uri, scheme, sizeof(scheme),
388 username, sizeof(username), hostname, sizeof(hostname), &port,
389 resource, sizeof(resource));
390
391 if (!port)
392 port = IPP_PORT; /* Default to port 631 */
393
394 if (!strcmp(scheme, "https"))
395 cupsSetEncryption(HTTP_ENCRYPT_ALWAYS);
396 else
397 cupsSetEncryption(HTTP_ENCRYPT_IF_REQUESTED);
398
399 /*
400 * See if there are any options...
401 */
402
403 compression = NULL;
404 version = 20;
405 waitjob = 1;
406 waitprinter = 1;
407 contimeout = 7 * 24 * 60 * 60;
408
409 if ((optptr = strchr(resource, '?')) != NULL)
410 {
411 /*
412 * Yup, terminate the device name string and move to the first
413 * character of the optptr...
414 */
415
416 *optptr++ = '\0';
417
418 /*
419 * Then parse the optptr...
420 */
421
422 while (*optptr)
423 {
424 /*
425 * Get the name...
426 */
427
428 name = optptr;
429
430 while (*optptr && *optptr != '=' && *optptr != '+' && *optptr != '&')
431 optptr ++;
432
433 if ((sep = *optptr) != '\0')
434 *optptr++ = '\0';
435
436 if (sep == '=')
437 {
438 /*
439 * Get the value...
440 */
441
442 value = optptr;
443
444 while (*optptr && *optptr != '+' && *optptr != '&')
445 optptr ++;
446
447 if (*optptr)
448 *optptr++ = '\0';
449 }
450 else
451 value = (char *)"";
452
453 /*
454 * Process the option...
455 */
456
457 if (!_cups_strcasecmp(name, "waitjob"))
458 {
459 /*
460 * Wait for job completion?
461 */
462
463 waitjob = !_cups_strcasecmp(value, "on") ||
464 !_cups_strcasecmp(value, "yes") ||
465 !_cups_strcasecmp(value, "true");
466 }
467 else if (!_cups_strcasecmp(name, "waitprinter"))
468 {
469 /*
470 * Wait for printer idle?
471 */
472
473 waitprinter = !_cups_strcasecmp(value, "on") ||
474 !_cups_strcasecmp(value, "yes") ||
475 !_cups_strcasecmp(value, "true");
476 }
477 else if (!_cups_strcasecmp(name, "encryption"))
478 {
479 /*
480 * Enable/disable encryption?
481 */
482
483 if (!_cups_strcasecmp(value, "always"))
484 cupsSetEncryption(HTTP_ENCRYPT_ALWAYS);
485 else if (!_cups_strcasecmp(value, "required"))
486 cupsSetEncryption(HTTP_ENCRYPT_REQUIRED);
487 else if (!_cups_strcasecmp(value, "never"))
488 cupsSetEncryption(HTTP_ENCRYPT_NEVER);
489 else if (!_cups_strcasecmp(value, "ifrequested"))
490 cupsSetEncryption(HTTP_ENCRYPT_IF_REQUESTED);
491 else
492 {
493 _cupsLangPrintFilter(stderr, "ERROR",
494 _("Unknown encryption option value: \"%s\"."),
495 value);
496 }
497 }
498 else if (!_cups_strcasecmp(name, "version"))
499 {
500 if (!strcmp(value, "1.0"))
501 version = 10;
502 else if (!strcmp(value, "1.1"))
503 version = 11;
504 else if (!strcmp(value, "2.0"))
505 version = 20;
506 else if (!strcmp(value, "2.1"))
507 version = 21;
508 else if (!strcmp(value, "2.2"))
509 version = 22;
510 else
511 {
512 _cupsLangPrintFilter(stderr, "ERROR",
513 _("Unknown version option value: \"%s\"."),
514 value);
515 }
516 }
517 #ifdef HAVE_LIBZ
518 else if (!_cups_strcasecmp(name, "compression"))
519 {
520 if (!_cups_strcasecmp(value, "true") || !_cups_strcasecmp(value, "yes") ||
521 !_cups_strcasecmp(value, "on") || !_cups_strcasecmp(value, "gzip"))
522 compression = "gzip";
523 }
524 #endif /* HAVE_LIBZ */
525 else if (!_cups_strcasecmp(name, "contimeout"))
526 {
527 /*
528 * Set the connection timeout...
529 */
530
531 if (atoi(value) > 0)
532 contimeout = atoi(value);
533 }
534 else
535 {
536 /*
537 * Unknown option...
538 */
539
540 _cupsLangPrintFilter(stderr, "ERROR",
541 _("Unknown option \"%s\" with value \"%s\"."),
542 name, value);
543 }
544 }
545 }
546
547 /*
548 * If we have 7 arguments, print the file named on the command-line.
549 * Otherwise, copy stdin to a temporary file and print the temporary
550 * file.
551 */
552
553 if (argc == 6)
554 {
555 num_files = 0;
556 files = NULL;
557 send_options = !_cups_strcasecmp(final_content_type, "application/pdf") ||
558 !_cups_strcasecmp(final_content_type, "application/vnd.cups-pdf") ||
559 !_cups_strncasecmp(final_content_type, "image/", 6);
560
561 fputs("DEBUG: Sending stdin for job...\n", stderr);
562 }
563 else
564 {
565 /*
566 * Point to the files on the command-line...
567 */
568
569 num_files = argc - 6;
570 files = argv + 6;
571 send_options = 1;
572
573 #ifdef HAVE_LIBZ
574 if (compression)
575 compress_files(num_files, files);
576 #endif /* HAVE_LIBZ */
577
578 fprintf(stderr, "DEBUG: %d files to send in job...\n", num_files);
579 }
580
581 /*
582 * Set the authentication info, if any...
583 */
584
585 cupsSetPasswordCB(password_cb);
586
587 if (username[0])
588 {
589 /*
590 * Use authenticaion information in the device URI...
591 */
592
593 if ((password = strchr(username, ':')) != NULL)
594 *password++ = '\0';
595
596 cupsSetUser(username);
597 }
598 else
599 {
600 /*
601 * Try loading authentication information from the environment.
602 */
603
604 const char *ptr = getenv("AUTH_USERNAME");
605
606 if (ptr)
607 cupsSetUser(ptr);
608
609 password = getenv("AUTH_PASSWORD");
610 }
611
612 /*
613 * Try finding the remote server...
614 */
615
616 start_time = time(NULL);
617
618 sprintf(portname, "%d", port);
619
620 update_reasons(NULL, "+connecting-to-device");
621 fprintf(stderr, "DEBUG: Looking up \"%s\"...\n", hostname);
622
623 while ((addrlist = httpAddrGetList(hostname, AF_UNSPEC, portname)) == NULL)
624 {
625 _cupsLangPrintFilter(stderr, "INFO",
626 _("Unable to locate printer \"%s\"."), hostname);
627 sleep(10);
628
629 if (getenv("CLASS") != NULL)
630 {
631 update_reasons(NULL, "-connecting-to-device");
632 return (CUPS_BACKEND_STOP);
633 }
634 }
635
636 http = _httpCreate(hostname, port, addrlist, cupsEncryption(), AF_UNSPEC);
637 httpSetTimeout(http, 30.0, timeout_cb, NULL);
638
639 /*
640 * See if the printer supports SNMP...
641 */
642
643 if ((snmp_fd = _cupsSNMPOpen(addrlist->addr.addr.sa_family)) >= 0)
644 {
645 have_supplies = !backendSNMPSupplies(snmp_fd, &(addrlist->addr),
646 &start_count, NULL);
647 }
648 else
649 have_supplies = start_count = 0;
650
651 /*
652 * Wait for data from the filter...
653 */
654
655 if (num_files == 0)
656 {
657 if (!backendWaitLoop(snmp_fd, &(addrlist->addr), 0, backendNetworkSideCB))
658 return (CUPS_BACKEND_OK);
659 else if ((bytes = read(0, buffer, sizeof(buffer))) <= 0)
660 return (CUPS_BACKEND_OK);
661 }
662
663 /*
664 * Try connecting to the remote server...
665 */
666
667 delay = _cupsNextDelay(0, &prev_delay);
668
669 do
670 {
671 fprintf(stderr, "DEBUG: Connecting to %s:%d\n", hostname, port);
672 _cupsLangPrintFilter(stderr, "INFO", _("Connecting to printer."));
673
674 if (httpReconnect(http))
675 {
676 int error = errno; /* Connection error */
677
678 if (http->status == HTTP_PKI_ERROR)
679 update_reasons(NULL, "+cups-certificate-error");
680
681 if (job_canceled)
682 break;
683
684 if (getenv("CLASS") != NULL)
685 {
686 /*
687 * If the CLASS environment variable is set, the job was submitted
688 * to a class and not to a specific queue. In this case, we want
689 * to abort immediately so that the job can be requeued on the next
690 * available printer in the class.
691 */
692
693 _cupsLangPrintFilter(stderr, "INFO",
694 _("Unable to contact printer, queuing on next "
695 "printer in class."));
696
697 /*
698 * Sleep 5 seconds to keep the job from requeuing too rapidly...
699 */
700
701 sleep(5);
702
703 update_reasons(NULL, "-connecting-to-device");
704
705 return (CUPS_BACKEND_FAILED);
706 }
707
708 fprintf(stderr, "DEBUG: Connection error: %s\n", strerror(errno));
709
710 if (errno == ECONNREFUSED || errno == EHOSTDOWN ||
711 errno == EHOSTUNREACH)
712 {
713 if (contimeout && (time(NULL) - start_time) > contimeout)
714 {
715 _cupsLangPrintFilter(stderr, "ERROR",
716 _("The printer is not responding."));
717 update_reasons(NULL, "-connecting-to-device");
718 return (CUPS_BACKEND_FAILED);
719 }
720
721 switch (error)
722 {
723 case EHOSTDOWN :
724 _cupsLangPrintFilter(stderr, "WARNING",
725 _("The printer may not exist or "
726 "is unavailable at this time."));
727 break;
728
729 case EHOSTUNREACH :
730 _cupsLangPrintFilter(stderr, "WARNING",
731 _("The printer is unreachable at this "
732 "time."));
733 break;
734
735 case ECONNREFUSED :
736 default :
737 _cupsLangPrintFilter(stderr, "WARNING",
738 _("The printer is busy."));
739 break;
740 }
741
742 sleep(delay);
743
744 delay = _cupsNextDelay(delay, &prev_delay);
745 }
746 else
747 {
748 _cupsLangPrintFilter(stderr, "ERROR",
749 _("The printer is not responding."));
750 sleep(30);
751 }
752
753 if (job_canceled)
754 break;
755 }
756 else
757 update_reasons(NULL, "-cups-certificate-error");
758 }
759 while (http->fd < 0);
760
761 if (job_canceled || !http)
762 return (CUPS_BACKEND_FAILED);
763
764 update_reasons(NULL, "-connecting-to-device");
765 _cupsLangPrintFilter(stderr, "INFO", _("Connected to printer."));
766
767 fprintf(stderr, "DEBUG: Connected to %s:%d...\n",
768 httpAddrString(http->hostaddr, addrname, sizeof(addrname)),
769 _httpAddrPort(http->hostaddr));
770
771 /*
772 * Build a URI for the printer and fill the standard IPP attributes for
773 * an IPP_PRINT_FILE request. We can't use the URI in argv[0] because it
774 * might contain username:password information...
775 */
776
777 httpAssembleURI(HTTP_URI_CODING_ALL, uri, sizeof(uri), scheme, NULL, hostname,
778 port, resource);
779
780 /*
781 * First validate the destination and see if the device supports multiple
782 * copies...
783 */
784
785 copies_sup = NULL;
786 cups_version = NULL;
787 format_sup = NULL;
788 media_col_sup = NULL;
789 supported = NULL;
790 operations_sup = NULL;
791 doc_handling_sup = NULL;
792 validate_job = 0;
793
794 do
795 {
796 /*
797 * Check for side-channel requests...
798 */
799
800 backendCheckSideChannel(snmp_fd, http->hostaddr);
801
802 /*
803 * Build the IPP request...
804 */
805
806 request = ippNewRequest(IPP_GET_PRINTER_ATTRIBUTES);
807 request->request.op.version[0] = version / 10;
808 request->request.op.version[1] = version % 10;
809
810 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
811 NULL, uri);
812
813 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
814 "requested-attributes", sizeof(pattrs) / sizeof(pattrs[0]),
815 NULL, pattrs);
816
817 /*
818 * Do the request...
819 */
820
821 fputs("DEBUG: Getting supported attributes...\n", stderr);
822
823 if (http->version < HTTP_1_1)
824 {
825 fprintf(stderr, "DEBUG: Printer responded with HTTP version %d.%d.\n",
826 http->version / 100, http->version % 100);
827 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
828 "cups-ipp-wrong-http-version");
829 }
830
831 supported = cupsDoRequest(http, request, resource);
832 ipp_status = cupsLastError();
833
834 fprintf(stderr, "DEBUG: Get-Printer-Attributes: %s (%s)\n",
835 ippErrorString(ipp_status), cupsLastErrorString());
836
837 if (ipp_status > IPP_OK_CONFLICT)
838 {
839 fprintf(stderr, "DEBUG: Get-Printer-Attributes returned %s.\n",
840 ippErrorString(ipp_status));
841
842 if (ipp_status == IPP_PRINTER_BUSY ||
843 ipp_status == IPP_SERVICE_UNAVAILABLE)
844 {
845 if (contimeout && (time(NULL) - start_time) > contimeout)
846 {
847 _cupsLangPrintFilter(stderr, "ERROR",
848 _("The printer is not responding."));
849 return (CUPS_BACKEND_FAILED);
850 }
851
852 _cupsLangPrintFilter(stderr, "INFO", _("The printer is busy."));
853
854 report_printer_state(supported);
855
856 sleep(delay);
857
858 delay = _cupsNextDelay(delay, &prev_delay);
859 }
860 else if ((ipp_status == IPP_BAD_REQUEST ||
861 ipp_status == IPP_VERSION_NOT_SUPPORTED) && version > 10)
862 {
863 /*
864 * Switch to IPP/1.1 or IPP/1.0...
865 */
866
867 if (version >= 20)
868 {
869 _cupsLangPrintFilter(stderr, "INFO",
870 _("Printer does not support IPP/%d.%d, trying "
871 "IPP/%s."), version / 10, version % 10, "1.1");
872 version = 11;
873 }
874 else
875 {
876 _cupsLangPrintFilter(stderr, "INFO",
877 _("Printer does not support IPP/%d.%d, trying "
878 "IPP/%s."), version / 10, version % 10, "1.0");
879 version = 10;
880 }
881
882 httpReconnect(http);
883 }
884 else if (ipp_status == IPP_NOT_FOUND)
885 {
886 _cupsLangPrintFilter(stderr, "ERROR",
887 _("The printer URI is incorrect or no longer "
888 "exists."));
889
890 ippDelete(supported);
891
892 return (CUPS_BACKEND_STOP);
893 }
894 else if (ipp_status == IPP_NOT_AUTHORIZED || ipp_status == IPP_FORBIDDEN)
895 {
896 if (!strncmp(httpGetField(http, HTTP_FIELD_WWW_AUTHENTICATE),
897 "Negotiate", 9))
898 auth_info_required = "negotiate";
899
900 fprintf(stderr, "ATTR: auth-info-required=%s\n", auth_info_required);
901 return (CUPS_BACKEND_AUTH_REQUIRED);
902 }
903 else
904 {
905 _cupsLangPrintFilter(stderr, "ERROR",
906 _("Unable to get printer status."));
907 sleep(10);
908 }
909
910 ippDelete(supported);
911 supported = NULL;
912 continue;
913 }
914
915 if (!getenv("CLASS"))
916 {
917 /*
918 * Check printer-is-accepting-jobs = false and printer-state-reasons for the
919 * "spool-area-full" keyword...
920 */
921
922 int busy = 0;
923
924 if ((printer_accepting = ippFindAttribute(supported,
925 "printer-is-accepting-jobs",
926 IPP_TAG_BOOLEAN)) != NULL &&
927 !printer_accepting->values[0].boolean)
928 busy = 1;
929 else if (!printer_accepting)
930 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
931 "cups-ipp-missing-printer-is-accepting-jobs");
932
933 if ((printer_state = ippFindAttribute(supported,
934 "printer-state-reasons",
935 IPP_TAG_KEYWORD)) != NULL && !busy)
936 {
937 for (i = 0; i < printer_state->num_values; i ++)
938 if (!strcmp(printer_state->values[0].string.text,
939 "spool-area-full") ||
940 !strncmp(printer_state->values[0].string.text, "spool-area-full-",
941 16))
942 {
943 busy = 1;
944 break;
945 }
946 }
947 else
948 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
949 "cups-ipp-missing-printer-state-reasons");
950
951 if (busy)
952 {
953 _cupsLangPrintFilter(stderr, "INFO", _("The printer is busy."));
954
955 report_printer_state(supported);
956
957 sleep(delay);
958
959 delay = _cupsNextDelay(delay, &prev_delay);
960
961 ippDelete(supported);
962 supported = NULL;
963 continue;
964 }
965 }
966
967 /*
968 * Check for supported attributes...
969 */
970
971 if ((copies_sup = ippFindAttribute(supported, "copies-supported",
972 IPP_TAG_RANGE)) != NULL)
973 {
974 /*
975 * Has the "copies-supported" attribute - does it have an upper
976 * bound > 1?
977 */
978
979 fprintf(stderr, "DEBUG: copies-supported=%d-%d\n",
980 copies_sup->values[0].range.lower,
981 copies_sup->values[0].range.upper);
982
983 if (copies_sup->values[0].range.upper <= 1)
984 copies_sup = NULL; /* No */
985 }
986
987 cups_version = ippFindAttribute(supported, "cups-version", IPP_TAG_TEXT);
988
989 if ((format_sup = ippFindAttribute(supported, "document-format-supported",
990 IPP_TAG_MIMETYPE)) != NULL)
991 {
992 fprintf(stderr, "DEBUG: document-format-supported (%d values)\n",
993 format_sup->num_values);
994 for (i = 0; i < format_sup->num_values; i ++)
995 fprintf(stderr, "DEBUG: [%d] = \"%s\"\n", i,
996 format_sup->values[i].string.text);
997 }
998
999 if ((media_col_sup = ippFindAttribute(supported, "media-col-supported",
1000 IPP_TAG_KEYWORD)) != NULL)
1001 {
1002 fprintf(stderr, "DEBUG: media-col-supported (%d values)\n",
1003 media_col_sup->num_values);
1004 for (i = 0; i < media_col_sup->num_values; i ++)
1005 fprintf(stderr, "DEBUG: [%d] = \"%s\"\n", i,
1006 media_col_sup->values[i].string.text);
1007 }
1008
1009 if ((operations_sup = ippFindAttribute(supported, "operations-supported",
1010 IPP_TAG_ENUM)) != NULL)
1011 {
1012 for (i = 0; i < operations_sup->num_values; i ++)
1013 if (operations_sup->values[i].integer == IPP_PRINT_JOB)
1014 break;
1015
1016 if (i >= operations_sup->num_values)
1017 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1018 "cups-ipp-missing-print-job");
1019
1020 for (i = 0; i < operations_sup->num_values; i ++)
1021 if (operations_sup->values[i].integer == IPP_CANCEL_JOB)
1022 break;
1023
1024 if (i >= operations_sup->num_values)
1025 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1026 "cups-ipp-missing-cancel-job");
1027
1028 for (i = 0; i < operations_sup->num_values; i ++)
1029 if (operations_sup->values[i].integer == IPP_GET_JOB_ATTRIBUTES)
1030 break;
1031
1032 if (i >= operations_sup->num_values)
1033 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1034 "cups-ipp-missing-get-job-attributes");
1035
1036 for (i = 0; i < operations_sup->num_values; i ++)
1037 if (operations_sup->values[i].integer == IPP_GET_PRINTER_ATTRIBUTES)
1038 break;
1039
1040 if (i >= operations_sup->num_values)
1041 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1042 "cups-ipp-missing-get-printer-attributes");
1043
1044 for (i = 0; i < operations_sup->num_values; i ++)
1045 if (operations_sup->values[i].integer == IPP_VALIDATE_JOB)
1046 {
1047 validate_job = 1;
1048 break;
1049 }
1050
1051 if (!validate_job)
1052 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1053 "cups-ipp-missing-validate-job");
1054 }
1055 else
1056 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1057 "cups-ipp-missing-operations-supported");
1058
1059 doc_handling_sup = ippFindAttribute(supported,
1060 "multiple-document-handling-supported",
1061 IPP_TAG_KEYWORD);
1062
1063 report_printer_state(supported);
1064 }
1065 while (ipp_status > IPP_OK_CONFLICT);
1066
1067 /*
1068 * See if the printer is accepting jobs and is not stopped; if either
1069 * condition is true and we are printing to a class, requeue the job...
1070 */
1071
1072 if (getenv("CLASS") != NULL)
1073 {
1074 printer_state = ippFindAttribute(supported, "printer-state",
1075 IPP_TAG_ENUM);
1076 printer_accepting = ippFindAttribute(supported, "printer-is-accepting-jobs",
1077 IPP_TAG_BOOLEAN);
1078
1079 if (printer_state == NULL ||
1080 (printer_state->values[0].integer > IPP_PRINTER_PROCESSING &&
1081 waitprinter) ||
1082 printer_accepting == NULL ||
1083 !printer_accepting->values[0].boolean)
1084 {
1085 /*
1086 * If the CLASS environment variable is set, the job was submitted
1087 * to a class and not to a specific queue. In this case, we want
1088 * to abort immediately so that the job can be requeued on the next
1089 * available printer in the class.
1090 */
1091
1092 _cupsLangPrintFilter(stderr, "INFO",
1093 _("Unable to contact printer, queuing on next "
1094 "printer in class."));
1095
1096 ippDelete(supported);
1097 httpClose(http);
1098
1099 /*
1100 * Sleep 5 seconds to keep the job from requeuing too rapidly...
1101 */
1102
1103 sleep(5);
1104
1105 return (CUPS_BACKEND_FAILED);
1106 }
1107 }
1108
1109 /*
1110 * See if the printer supports multiple copies...
1111 */
1112
1113 copies = atoi(argv[4]);
1114
1115 if (copies_sup || argc < 7)
1116 {
1117 copies_remaining = 1;
1118
1119 if (argc < 7 && !send_options)
1120 copies = 1;
1121 }
1122 else
1123 copies_remaining = copies;
1124
1125 /*
1126 * Prepare remaining printing options...
1127 */
1128
1129 options = NULL;
1130 pc = NULL;
1131
1132 if (send_options)
1133 {
1134 num_options = cupsParseOptions(argv[5], 0, &options);
1135
1136 if (!cups_version && media_col_sup)
1137 {
1138 /*
1139 * Load the PPD file and generate PWG attribute mapping information...
1140 */
1141
1142 ppd = ppdOpenFile(getenv("PPD"));
1143 pc = _ppdCacheCreateWithPPD(ppd);
1144
1145 ppdClose(ppd);
1146 }
1147 }
1148 else
1149 num_options = 0;
1150
1151 document_format = NULL;
1152
1153 if (format_sup != NULL)
1154 {
1155 for (i = 0; i < format_sup->num_values; i ++)
1156 if (!_cups_strcasecmp(final_content_type, format_sup->values[i].string.text))
1157 {
1158 document_format = final_content_type;
1159 break;
1160 }
1161
1162 if (!document_format)
1163 {
1164 for (i = 0; i < format_sup->num_values; i ++)
1165 if (!_cups_strcasecmp("application/octet-stream",
1166 format_sup->values[i].string.text))
1167 {
1168 document_format = "application/octet-stream";
1169 break;
1170 }
1171 }
1172 }
1173
1174 /*
1175 * If the printer does not support HTTP/1.1 (which IPP requires), copy stdin
1176 * to a temporary file so that we can do a HTTP/1.0 submission...
1177 *
1178 * (I hate compatibility hacks!)
1179 */
1180
1181 if (http->version < HTTP_1_1 && num_files == 0)
1182 {
1183 if ((fd = cupsTempFd(tmpfilename, sizeof(tmpfilename))) < 0)
1184 {
1185 perror("DEBUG: Unable to create temporary file");
1186 return (CUPS_BACKEND_FAILED);
1187 }
1188
1189 _cupsLangPrintFilter(stderr, "INFO", _("Copying print data."));
1190
1191 compatsize = backendRunLoop(-1, fd, snmp_fd, &(addrlist->addr), 0, 0,
1192 backendNetworkSideCB);
1193
1194 close(fd);
1195
1196 compatfile = tmpfilename;
1197 files = &compatfile;
1198 num_files = 1;
1199 }
1200 else if (http->version < HTTP_1_1 && num_files == 1)
1201 {
1202 struct stat fileinfo; /* File information */
1203
1204 if (!stat(files[0], &fileinfo))
1205 compatsize = fileinfo.st_size;
1206 }
1207
1208 /*
1209 * Start monitoring the printer in the background...
1210 */
1211
1212 monitor.uri = uri;
1213 monitor.hostname = hostname;
1214 monitor.user = argv[2];
1215 monitor.resource = resource;
1216 monitor.port = port;
1217 monitor.version = version;
1218 monitor.job_id = 0;
1219 monitor.encryption = cupsEncryption();
1220 monitor.job_state = IPP_JOB_PENDING;
1221 monitor.printer_state = IPP_PRINTER_IDLE;
1222
1223 _cupsThreadCreate((_cups_thread_func_t)monitor_printer, &monitor);
1224
1225 /*
1226 * Validate access to the printer...
1227 */
1228
1229 while (!job_canceled && validate_job)
1230 {
1231 request = new_request(IPP_VALIDATE_JOB, version, uri, argv[2], argv[3],
1232 num_options, options, compression,
1233 copies_sup ? copies : 1, document_format, pc,
1234 media_col_sup, doc_handling_sup);
1235
1236 ippDelete(cupsDoRequest(http, request, resource));
1237
1238 ipp_status = cupsLastError();
1239
1240 fprintf(stderr, "DEBUG: Validate-Job: %s (%s)\n",
1241 ippErrorString(ipp_status), cupsLastErrorString());
1242
1243 if (job_canceled)
1244 break;
1245
1246 if (ipp_status == IPP_SERVICE_UNAVAILABLE || ipp_status == IPP_PRINTER_BUSY)
1247 {
1248 _cupsLangPrintFilter(stderr, "INFO", _("The printer is busy."));
1249 sleep(10);
1250 }
1251 else if (ipp_status == IPP_NOT_AUTHORIZED || ipp_status == IPP_FORBIDDEN ||
1252 ipp_status == IPP_AUTHENTICATION_CANCELED)
1253 {
1254 /*
1255 * Update auth-info-required as needed...
1256 */
1257
1258 fprintf(stderr, "DEBUG: WWW-Authenticate=\"%s\"\n",
1259 httpGetField(http, HTTP_FIELD_WWW_AUTHENTICATE));
1260
1261 /*
1262 * Normal authentication goes through the password callback, which sets
1263 * auth_info_required to "username,password". Kerberos goes directly
1264 * through GSSAPI, so look for Negotiate in the WWW-Authenticate header
1265 * here and set auth_info_required as needed...
1266 */
1267
1268 if (!strncmp(httpGetField(http, HTTP_FIELD_WWW_AUTHENTICATE),
1269 "Negotiate", 9))
1270 auth_info_required = "negotiate";
1271
1272 goto cleanup;
1273 }
1274 else if (ipp_status == IPP_OPERATION_NOT_SUPPORTED)
1275 {
1276 /*
1277 * This is all too common...
1278 */
1279
1280 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1281 "cups-ipp-missing-validate-job");
1282 break;
1283 }
1284 else if (ipp_status < IPP_REDIRECTION_OTHER_SITE)
1285 break;
1286 }
1287
1288 /*
1289 * Then issue the print-job request...
1290 */
1291
1292 job_id = 0;
1293
1294 while (!job_canceled && copies_remaining > 0)
1295 {
1296 /*
1297 * Check for side-channel requests...
1298 */
1299
1300 backendCheckSideChannel(snmp_fd, http->hostaddr);
1301
1302 /*
1303 * Build the IPP job creation request...
1304 */
1305
1306 if (job_canceled)
1307 break;
1308
1309 request = new_request(num_files > 1 ? IPP_CREATE_JOB : IPP_PRINT_JOB,
1310 version, uri, argv[2], argv[3], num_options, options,
1311 compression, copies_sup ? copies : 1, document_format,
1312 pc, media_col_sup, doc_handling_sup);
1313
1314 /*
1315 * Do the request...
1316 */
1317
1318 if (num_files > 1)
1319 response = cupsDoRequest(http, request, resource);
1320 else
1321 {
1322 size_t length = 0; /* Length of request */
1323
1324 if (compatsize > 0)
1325 {
1326 fputs("DEBUG: Sending file using HTTP/1.0 Content-Length...\n", stderr);
1327 length = ippLength(request) + (size_t)compatsize;
1328 }
1329 else
1330 fputs("DEBUG: Sending file using HTTP/1.1 chunking...\n", stderr);
1331
1332 http_status = cupsSendRequest(http, request, resource, length);
1333 if (http_status == HTTP_CONTINUE && request->state == IPP_DATA)
1334 {
1335 if (num_files == 1)
1336 fd = open(files[0], O_RDONLY);
1337 else
1338 {
1339 fd = 0;
1340 http_status = cupsWriteRequestData(http, buffer, bytes);
1341 }
1342
1343 while (http_status == HTTP_CONTINUE &&
1344 (!job_canceled || compatsize > 0))
1345 {
1346 /*
1347 * Check for side-channel requests and more print data...
1348 */
1349
1350 FD_ZERO(&input);
1351 FD_SET(fd, &input);
1352 FD_SET(snmp_fd, &input);
1353
1354 while (select(fd > snmp_fd ? fd + 1 : snmp_fd + 1, &input, NULL, NULL,
1355 NULL) <= 0 && !job_canceled);
1356
1357 if (FD_ISSET(snmp_fd, &input))
1358 backendCheckSideChannel(snmp_fd, http->hostaddr);
1359
1360 if (FD_ISSET(fd, &input))
1361 {
1362 if ((bytes = read(fd, buffer, sizeof(buffer))) > 0)
1363 {
1364 fprintf(stderr, "DEBUG: Read %d bytes...\n", (int)bytes);
1365
1366 if (cupsWriteRequestData(http, buffer, bytes) != HTTP_CONTINUE)
1367 break;
1368 }
1369 else if (bytes == 0 || (errno != EINTR && errno != EAGAIN))
1370 break;
1371 }
1372 }
1373
1374 if (num_files == 1)
1375 close(fd);
1376 }
1377
1378 response = cupsGetResponse(http, resource);
1379 ippDelete(request);
1380 }
1381
1382 ipp_status = cupsLastError();
1383
1384 fprintf(stderr, "DEBUG: %s: %s (%s)\n",
1385 num_files > 1 ? "Create-Job" : "Print-Job",
1386 ippErrorString(ipp_status), cupsLastErrorString());
1387
1388 if (ipp_status > IPP_OK_CONFLICT)
1389 {
1390 job_id = 0;
1391
1392 if (job_canceled)
1393 break;
1394
1395 if (ipp_status == IPP_SERVICE_UNAVAILABLE ||
1396 ipp_status == IPP_PRINTER_BUSY)
1397 {
1398 _cupsLangPrintFilter(stderr, "INFO", _("The printer is busy."));
1399 sleep(10);
1400
1401 if (num_files == 0)
1402 {
1403 /*
1404 * We can't re-submit when we have no files to print, so exit
1405 * immediately with the right status code...
1406 */
1407
1408 goto cleanup;
1409 }
1410 }
1411 else if (ipp_status == IPP_ERROR_JOB_CANCELED)
1412 goto cleanup;
1413 else
1414 {
1415 /*
1416 * Update auth-info-required as needed...
1417 */
1418
1419 _cupsLangPrintFilter(stderr, "ERROR",
1420 _("Print file was not accepted."));
1421
1422 if (ipp_status == IPP_NOT_AUTHORIZED || ipp_status == IPP_FORBIDDEN)
1423 {
1424 fprintf(stderr, "DEBUG: WWW-Authenticate=\"%s\"\n",
1425 httpGetField(http, HTTP_FIELD_WWW_AUTHENTICATE));
1426
1427 /*
1428 * Normal authentication goes through the password callback, which sets
1429 * auth_info_required to "username,password". Kerberos goes directly
1430 * through GSSAPI, so look for Negotiate in the WWW-Authenticate header
1431 * here and set auth_info_required as needed...
1432 */
1433
1434 if (!strncmp(httpGetField(http, HTTP_FIELD_WWW_AUTHENTICATE),
1435 "Negotiate", 9))
1436 auth_info_required = "negotiate";
1437 }
1438 else
1439 sleep(10);
1440
1441 if (num_files == 0)
1442 {
1443 /*
1444 * We can't re-submit when we have no files to print, so exit
1445 * immediately with the right status code...
1446 */
1447
1448 goto cleanup;
1449 }
1450 }
1451 }
1452 else if ((job_id_attr = ippFindAttribute(response, "job-id",
1453 IPP_TAG_INTEGER)) == NULL)
1454 {
1455 _cupsLangPrintFilter(stderr, "INFO",
1456 _("Print file accepted - job ID unknown."));
1457 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1458 "cups-ipp-missing-job-id");
1459 job_id = 0;
1460 }
1461 else
1462 {
1463 monitor.job_id = job_id = job_id_attr->values[0].integer;
1464 _cupsLangPrintFilter(stderr, "INFO",
1465 _("Print file accepted - job ID %d."), job_id);
1466 }
1467
1468 ippDelete(response);
1469
1470 if (job_canceled)
1471 break;
1472
1473 if (job_id && num_files > 1)
1474 {
1475 for (i = 0; i < num_files; i ++)
1476 {
1477 /*
1478 * Check for side-channel requests...
1479 */
1480
1481 backendCheckSideChannel(snmp_fd, http->hostaddr);
1482
1483 /*
1484 * Send the next file in the job...
1485 */
1486
1487 request = ippNewRequest(IPP_SEND_DOCUMENT);
1488 request->request.op.version[0] = version / 10;
1489 request->request.op.version[1] = version % 10;
1490
1491 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
1492 NULL, uri);
1493
1494 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "job-id",
1495 job_id);
1496
1497 if (argv[2][0])
1498 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
1499 "requesting-user-name", NULL, argv[2]);
1500
1501 if ((i + 1) == num_files)
1502 ippAddBoolean(request, IPP_TAG_OPERATION, "last-document", 1);
1503
1504 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_MIMETYPE,
1505 "document-format", NULL, content_type);
1506
1507 fprintf(stderr, "DEBUG: Sending file %d using chunking...\n", i + 1);
1508 http_status = cupsSendRequest(http, request, resource, 0);
1509 if (http_status == HTTP_CONTINUE && request->state == IPP_DATA &&
1510 (fd = open(files[i], O_RDONLY)) >= 0)
1511 {
1512 while (!job_canceled &&
1513 (bytes = read(fd, buffer, sizeof(buffer))) > 0)
1514 {
1515 if (cupsWriteRequestData(http, buffer, bytes) != HTTP_CONTINUE)
1516 break;
1517 else
1518 {
1519 /*
1520 * Check for side-channel requests...
1521 */
1522
1523 backendCheckSideChannel(snmp_fd, http->hostaddr);
1524 }
1525 }
1526
1527 close(fd);
1528 }
1529
1530 ippDelete(cupsGetResponse(http, resource));
1531 ippDelete(request);
1532
1533 fprintf(stderr, "DEBUG: Send-Document: %s (%s)\n",
1534 ippErrorString(cupsLastError()), cupsLastErrorString());
1535
1536 if (cupsLastError() > IPP_OK_CONFLICT)
1537 {
1538 ipp_status = cupsLastError();
1539
1540 _cupsLangPrintFilter(stderr, "ERROR",
1541 _("Unable to add document to print job."));
1542 break;
1543 }
1544 }
1545 }
1546
1547 if (ipp_status <= IPP_OK_CONFLICT && argc > 6)
1548 {
1549 fprintf(stderr, "PAGE: 1 %d\n", copies_sup ? atoi(argv[4]) : 1);
1550 copies_remaining --;
1551 }
1552 else if (ipp_status == IPP_SERVICE_UNAVAILABLE ||
1553 ipp_status == IPP_PRINTER_BUSY)
1554 continue;
1555 else
1556 copies_remaining --;
1557
1558 /*
1559 * Wait for the job to complete...
1560 */
1561
1562 if (!job_id || !waitjob)
1563 continue;
1564
1565 _cupsLangPrintFilter(stderr, "INFO", _("Waiting for job to complete."));
1566
1567 for (delay = _cupsNextDelay(0, &prev_delay); !job_canceled;)
1568 {
1569 /*
1570 * Check for side-channel requests...
1571 */
1572
1573 backendCheckSideChannel(snmp_fd, http->hostaddr);
1574
1575 /*
1576 * Build an IPP_GET_JOB_ATTRIBUTES request...
1577 */
1578
1579 request = ippNewRequest(IPP_GET_JOB_ATTRIBUTES);
1580 request->request.op.version[0] = version / 10;
1581 request->request.op.version[1] = version % 10;
1582
1583 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
1584 NULL, uri);
1585
1586 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "job-id",
1587 job_id);
1588
1589 if (argv[2][0])
1590 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
1591 "requesting-user-name", NULL, argv[2]);
1592
1593 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
1594 "requested-attributes", sizeof(jattrs) / sizeof(jattrs[0]),
1595 NULL, jattrs);
1596
1597 /*
1598 * Do the request...
1599 */
1600
1601 httpReconnect(http);
1602 response = cupsDoRequest(http, request, resource);
1603 ipp_status = cupsLastError();
1604
1605 if (ipp_status == IPP_NOT_FOUND)
1606 {
1607 /*
1608 * Job has gone away and/or the server has no job history...
1609 */
1610
1611 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1612 "cups-ipp-missing-job-history");
1613 ippDelete(response);
1614
1615 ipp_status = IPP_OK;
1616 break;
1617 }
1618
1619 fprintf(stderr, "DEBUG: Get-Job-Attributes: %s (%s)\n",
1620 ippErrorString(ipp_status), cupsLastErrorString());
1621
1622 if (ipp_status > IPP_OK_CONFLICT)
1623 {
1624 if (ipp_status != IPP_SERVICE_UNAVAILABLE &&
1625 ipp_status != IPP_PRINTER_BUSY)
1626 {
1627 ippDelete(response);
1628
1629 _cupsLangPrintFilter(stderr, "ERROR",
1630 _("Unable to get print job status."));
1631 break;
1632 }
1633 }
1634
1635 if (response)
1636 {
1637 if ((job_state = ippFindAttribute(response, "job-state",
1638 IPP_TAG_ENUM)) != NULL)
1639 {
1640 /*
1641 * Reflect the remote job state in the local queue...
1642 */
1643
1644 if (cups_version &&
1645 job_state->values[0].integer >= IPP_JOB_PENDING &&
1646 job_state->values[0].integer <= IPP_JOB_COMPLETED)
1647 update_reasons(NULL,
1648 remote_job_states[job_state->values[0].integer -
1649 IPP_JOB_PENDING]);
1650
1651 if ((job_sheets = ippFindAttribute(response,
1652 "job-media-sheets-completed",
1653 IPP_TAG_INTEGER)) == NULL)
1654 job_sheets = ippFindAttribute(response,
1655 "job-impressions-completed",
1656 IPP_TAG_INTEGER);
1657
1658 if (job_sheets)
1659 fprintf(stderr, "PAGE: total %d\n",
1660 job_sheets->values[0].integer);
1661
1662 /*
1663 * Stop polling if the job is finished or pending-held...
1664 */
1665
1666 if (job_state->values[0].integer > IPP_JOB_STOPPED)
1667 {
1668 ippDelete(response);
1669 break;
1670 }
1671 }
1672 else
1673 {
1674 /*
1675 * If the printer does not return a job-state attribute, it does not
1676 * conform to the IPP specification - break out immediately and fail
1677 * the job...
1678 */
1679
1680 update_reasons(NULL, "+cups-ipp-conformance-failure-report,"
1681 "cups-ipp-missing-job-state");
1682 ipp_status = IPP_INTERNAL_ERROR;
1683 break;
1684 }
1685 }
1686
1687 ippDelete(response);
1688
1689 /*
1690 * Wait before polling again...
1691 */
1692
1693 sleep(delay);
1694
1695 delay = _cupsNextDelay(delay, &prev_delay);
1696 }
1697 }
1698
1699 /*
1700 * Cancel the job as needed...
1701 */
1702
1703 if (job_canceled && job_id)
1704 cancel_job(http, uri, job_id, resource, argv[2], version);
1705
1706 /*
1707 * Check the printer state and report it if necessary...
1708 */
1709
1710 check_printer_state(http, uri, resource, argv[2], version);
1711
1712 /*
1713 * Collect the final page count as needed...
1714 */
1715
1716 if (have_supplies &&
1717 !backendSNMPSupplies(snmp_fd, http->hostaddr, &page_count, NULL) &&
1718 page_count > start_count)
1719 fprintf(stderr, "PAGE: total %d\n", page_count - start_count);
1720
1721 #ifdef HAVE_GSSAPI
1722 /*
1723 * See if we used Kerberos at all...
1724 */
1725
1726 if (http->gssctx)
1727 auth_info_required = "negotiate";
1728 #endif /* HAVE_GSSAPI */
1729
1730 /*
1731 * Free memory...
1732 */
1733
1734 cleanup:
1735
1736 cupsFreeOptions(num_options, options);
1737 _ppdCacheDestroy(pc);
1738
1739 httpClose(http);
1740
1741 ippDelete(supported);
1742
1743 /*
1744 * Remove the temporary file(s) if necessary...
1745 */
1746
1747 if (tmpfilename[0])
1748 unlink(tmpfilename);
1749
1750 #ifdef HAVE_LIBZ
1751 if (compression)
1752 {
1753 for (i = 0; i < num_files; i ++)
1754 unlink(files[i]);
1755 }
1756 #endif /* HAVE_LIBZ */
1757
1758 /*
1759 * Return the queue status...
1760 */
1761
1762 if (ipp_status == IPP_NOT_AUTHORIZED || ipp_status == IPP_FORBIDDEN ||
1763 ipp_status == IPP_AUTHENTICATION_CANCELED ||
1764 ipp_status <= IPP_OK_CONFLICT)
1765 fprintf(stderr, "ATTR: auth-info-required=%s\n", auth_info_required);
1766
1767 if (ipp_status == IPP_NOT_AUTHORIZED || ipp_status == IPP_FORBIDDEN ||
1768 ipp_status == IPP_AUTHENTICATION_CANCELED)
1769 return (CUPS_BACKEND_AUTH_REQUIRED);
1770 else if (ipp_status == IPP_INTERNAL_ERROR)
1771 return (CUPS_BACKEND_STOP);
1772 else if (ipp_status == IPP_DOCUMENT_FORMAT ||
1773 ipp_status == IPP_CONFLICT)
1774 return (CUPS_BACKEND_FAILED);
1775 else if (ipp_status > IPP_OK_CONFLICT && ipp_status != IPP_ERROR_JOB_CANCELED)
1776 return (CUPS_BACKEND_RETRY_CURRENT);
1777 else
1778 {
1779 _cupsLangPrintFilter(stderr, "INFO", _("Ready to print."));
1780 return (CUPS_BACKEND_OK);
1781 }
1782 }
1783
1784
1785 /*
1786 * 'cancel_job()' - Cancel a print job.
1787 */
1788
1789 static void
1790 cancel_job(http_t *http, /* I - HTTP connection */
1791 const char *uri, /* I - printer-uri */
1792 int id, /* I - job-id */
1793 const char *resource, /* I - Resource path */
1794 const char *user, /* I - requesting-user-name */
1795 int version) /* I - IPP version */
1796 {
1797 ipp_t *request; /* Cancel-Job request */
1798
1799
1800 _cupsLangPrintFilter(stderr, "INFO", _("Canceling print job."));
1801
1802 request = ippNewRequest(IPP_CANCEL_JOB);
1803 request->request.op.version[0] = version / 10;
1804 request->request.op.version[1] = version % 10;
1805
1806 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
1807 NULL, uri);
1808 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "job-id", id);
1809
1810 if (user && user[0])
1811 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
1812 "requesting-user-name", NULL, user);
1813
1814 /*
1815 * Do the request...
1816 */
1817
1818 ippDelete(cupsDoRequest(http, request, resource));
1819
1820 if (cupsLastError() > IPP_OK_CONFLICT)
1821 _cupsLangPrintFilter(stderr, "ERROR", _("Unable to cancel print job."));
1822 }
1823
1824
1825 /*
1826 * 'check_printer_state()' - Check the printer state.
1827 */
1828
1829 static ipp_pstate_t /* O - Current printer-state */
1830 check_printer_state(
1831 http_t *http, /* I - HTTP connection */
1832 const char *uri, /* I - Printer URI */
1833 const char *resource, /* I - Resource path */
1834 const char *user, /* I - Username, if any */
1835 int version) /* I - IPP version */
1836 {
1837 ipp_t *request, /* IPP request */
1838 *response; /* IPP response */
1839 ipp_attribute_t *attr; /* Attribute in response */
1840 ipp_pstate_t printer_state = IPP_PRINTER_STOPPED;
1841 /* Current printer-state */
1842
1843
1844 /*
1845 * Send a Get-Printer-Attributes request and log the results...
1846 */
1847
1848 request = ippNewRequest(IPP_GET_PRINTER_ATTRIBUTES);
1849 request->request.op.version[0] = version / 10;
1850 request->request.op.version[1] = version % 10;
1851
1852 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
1853 NULL, uri);
1854
1855 if (user && user[0])
1856 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
1857 "requesting-user-name", NULL, user);
1858
1859 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
1860 "requested-attributes",
1861 (int)(sizeof(pattrs) / sizeof(pattrs[0])), NULL, pattrs);
1862
1863 if ((response = cupsDoRequest(http, request, resource)) != NULL)
1864 {
1865 report_printer_state(response);
1866
1867 if ((attr = ippFindAttribute(response, "printer-state",
1868 IPP_TAG_ENUM)) != NULL)
1869 printer_state = (ipp_pstate_t)attr->values[0].integer;
1870
1871 ippDelete(response);
1872 }
1873
1874 fprintf(stderr, "DEBUG: Get-Printer-Attributes: %s (%s)\n",
1875 ippErrorString(cupsLastError()), cupsLastErrorString());
1876
1877 /*
1878 * Return the printer-state value...
1879 */
1880
1881 return (printer_state);
1882 }
1883
1884
1885 #ifdef HAVE_LIBZ
1886 /*
1887 * 'compress_files()' - Compress print files.
1888 */
1889
1890 static void
1891 compress_files(int num_files, /* I - Number of files */
1892 char **files) /* I - Files */
1893 {
1894 int i, /* Looping var */
1895 fd; /* Temporary file descriptor */
1896 ssize_t bytes; /* Bytes read/written */
1897 size_t total; /* Total bytes read */
1898 cups_file_t *in, /* Input file */
1899 *out; /* Output file */
1900 struct stat outinfo; /* Output file information */
1901 char filename[1024], /* Temporary filename */
1902 buffer[32768]; /* Copy buffer */
1903
1904
1905 fprintf(stderr, "DEBUG: Compressing %d job files...\n", num_files);
1906 for (i = 0; i < num_files; i ++)
1907 {
1908 if ((fd = cupsTempFd(filename, sizeof(filename))) < 0)
1909 {
1910 _cupsLangPrintError("ERROR", _("Unable to create compressed print file"));
1911 exit(CUPS_BACKEND_FAILED);
1912 }
1913
1914 if ((out = cupsFileOpenFd(fd, "w9")) == NULL)
1915 {
1916 _cupsLangPrintError("ERROR", _("Unable to open compressed print file"));
1917 exit(CUPS_BACKEND_FAILED);
1918 }
1919
1920 if ((in = cupsFileOpen(files[i], "r")) == NULL)
1921 {
1922 _cupsLangPrintError("ERROR", _("Unable to open print file"));
1923 cupsFileClose(out);
1924 exit(CUPS_BACKEND_FAILED);
1925 }
1926
1927 total = 0;
1928 while ((bytes = cupsFileRead(in, buffer, sizeof(buffer))) > 0)
1929 if (cupsFileWrite(out, buffer, bytes) < bytes)
1930 {
1931 _cupsLangPrintError("ERROR",
1932 _("Unable to generate compressed print file"));
1933 cupsFileClose(in);
1934 cupsFileClose(out);
1935 exit(CUPS_BACKEND_FAILED);
1936 }
1937 else
1938 total += bytes;
1939
1940 cupsFileClose(out);
1941 cupsFileClose(in);
1942
1943 files[i] = strdup(filename);
1944
1945 if (!stat(filename, &outinfo))
1946 fprintf(stderr,
1947 "DEBUG: File %d compressed to %.1f%% of original size, "
1948 CUPS_LLFMT " bytes...\n",
1949 i + 1, 100.0 * outinfo.st_size / total,
1950 CUPS_LLCAST outinfo.st_size);
1951 }
1952 }
1953 #endif /* HAVE_LIBZ */
1954
1955
1956 /*
1957 * 'monitor_printer()' - Monitor the printer state.
1958 */
1959
1960 static void * /* O - Thread exit code */
1961 monitor_printer(
1962 _cups_monitor_t *monitor) /* I - Monitoring data */
1963 {
1964 http_t *http; /* Connection to printer */
1965 ipp_t *request, /* IPP request */
1966 *response; /* IPP response */
1967 ipp_attribute_t *attr; /* Attribute in response */
1968 int delay, /* Current delay */
1969 prev_delay; /* Previous delay */
1970
1971
1972 /*
1973 * Make a copy of the printer connection...
1974 */
1975
1976 http = _httpCreate(monitor->hostname, monitor->port, NULL, monitor->encryption,
1977 AF_UNSPEC);
1978 httpSetTimeout(http, 30.0, timeout_cb, NULL);
1979 cupsSetPasswordCB(password_cb);
1980
1981 /*
1982 * Loop until the job is canceled, aborted, or completed.
1983 */
1984
1985 delay = _cupsNextDelay(0, &prev_delay);
1986
1987 while (monitor->job_state < IPP_JOB_CANCELED && !job_canceled)
1988 {
1989 /*
1990 * Reconnect to the printer...
1991 */
1992
1993 if (!httpReconnect(http))
1994 {
1995 /*
1996 * Connected, so check on the printer state...
1997 */
1998
1999 monitor->printer_state = check_printer_state(http, monitor->uri,
2000 monitor->resource,
2001 monitor->user,
2002 monitor->version);
2003
2004 if (monitor->job_id > 0)
2005 {
2006 /*
2007 * Check the status of the job itself...
2008 */
2009
2010 request = ippNewRequest(IPP_GET_JOB_ATTRIBUTES);
2011 request->request.op.version[0] = monitor->version / 10;
2012 request->request.op.version[1] = monitor->version % 10;
2013
2014 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2015 NULL, monitor->uri);
2016 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "job-id",
2017 monitor->job_id);
2018
2019 if (monitor->user && monitor->user[0])
2020 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
2021 "requesting-user-name", NULL, monitor->user);
2022
2023 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
2024 "requested-attributes",
2025 (int)(sizeof(jattrs) / sizeof(jattrs[0])), NULL, jattrs);
2026
2027 /*
2028 * Do the request...
2029 */
2030
2031 response = cupsDoRequest(http, request, monitor->resource);
2032
2033 fprintf(stderr, "DEBUG: Get-Job-Attributes: %s (%s)\n",
2034 ippErrorString(cupsLastError()), cupsLastErrorString());
2035
2036 if ((attr = ippFindAttribute(response, "job-state",
2037 IPP_TAG_ENUM)) != NULL)
2038 monitor->job_state = (ipp_jstate_t)attr->values[0].integer;
2039 else
2040 monitor->job_state = IPP_JOB_COMPLETED;
2041
2042 ippDelete(response);
2043 }
2044
2045 /*
2046 * Disconnect from the printer - we'll reconnect on the next poll...
2047 */
2048
2049 _httpDisconnect(http);
2050 }
2051
2052 /*
2053 * Sleep for N seconds...
2054 */
2055
2056 sleep(delay);
2057
2058 delay = _cupsNextDelay(delay, &prev_delay);
2059 }
2060
2061 /*
2062 * Cleanup and return...
2063 */
2064
2065 httpClose(http);
2066
2067 return (NULL);
2068 }
2069
2070
2071 /*
2072 * 'new_request()' - Create a new print creation or validation request.
2073 */
2074
2075 static ipp_t * /* O - Request data */
2076 new_request(
2077 ipp_op_t op, /* I - IPP operation code */
2078 int version, /* I - IPP version number */
2079 const char *uri, /* I - printer-uri value */
2080 const char *user, /* I - requesting-user-name value */
2081 const char *title, /* I - job-name value */
2082 int num_options, /* I - Number of options to send */
2083 cups_option_t *options, /* I - Options to send */
2084 const char *compression, /* I - compression value or NULL */
2085 int copies, /* I - copies value or 0 */
2086 const char *format, /* I - documet-format value or NULL */
2087 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2088 ipp_attribute_t *media_col_sup, /* I - media-col-supported values */
2089 ipp_attribute_t *doc_handling_sup) /* I - multiple-document-handling-supported values */
2090 {
2091 int i; /* Looping var */
2092 ipp_t *request; /* Request data */
2093 const char *keyword; /* PWG keyword */
2094 _pwg_size_t *size; /* PWG media size */
2095 ipp_t *media_col, /* media-col value */
2096 *media_size; /* media-size value */
2097 const char *media_source, /* media-source value */
2098 *media_type, /* media-type value */
2099 *collate_str; /* multiple-document-handling value */
2100
2101
2102 /*
2103 * Create the IPP request...
2104 */
2105
2106 request = ippNewRequest(op);
2107 request->request.op.version[0] = version / 10;
2108 request->request.op.version[1] = version % 10;
2109
2110 fprintf(stderr, "DEBUG: %s IPP/%d.%d\n",
2111 ippOpString(request->request.op.operation_id),
2112 request->request.op.version[0],
2113 request->request.op.version[1]);
2114
2115 /*
2116 * Add standard attributes...
2117 */
2118
2119 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2120 NULL, uri);
2121 fprintf(stderr, "DEBUG: printer-uri=\"%s\"\n", uri);
2122
2123 if (user && *user)
2124 {
2125 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
2126 "requesting-user-name", NULL, user);
2127 fprintf(stderr, "DEBUG: requesting-user-name=\"%s\"\n", user);
2128 }
2129
2130 if (title && *title)
2131 {
2132 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME, "job-name", NULL,
2133 title);
2134 fprintf(stderr, "DEBUG: job-name=\"%s\"\n", title);
2135 }
2136
2137 if (format)
2138 {
2139 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_MIMETYPE,
2140 "document-format", NULL, format);
2141 fprintf(stderr, "DEBUG: document-format=\"%s\"\n", format);
2142 }
2143
2144 #ifdef HAVE_LIBZ
2145 if (compression)
2146 {
2147 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
2148 "compression", NULL, compression);
2149 fprintf(stderr, "DEBUG: compression=\"%s\"\n", compression);
2150 }
2151 #endif /* HAVE_LIBZ */
2152
2153 /*
2154 * Handle options on the command-line...
2155 */
2156
2157 if (num_options > 0)
2158 {
2159 if (pc)
2160 {
2161 /*
2162 * Send standard IPP attributes...
2163 */
2164
2165 if ((keyword = cupsGetOption("PageSize", num_options, options)) == NULL)
2166 keyword = cupsGetOption("media", num_options, options);
2167
2168 if ((size = _ppdCacheGetSize(pc, keyword)) != NULL)
2169 {
2170 /*
2171 * Add a media-col value...
2172 */
2173
2174 media_size = ippNew();
2175 ippAddInteger(media_size, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2176 "x-dimension", size->width);
2177 ippAddInteger(media_size, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2178 "y-dimension", size->length);
2179
2180 media_col = ippNew();
2181 ippAddCollection(media_col, IPP_TAG_ZERO, "media-size", media_size);
2182
2183 media_source = _ppdCacheGetSource(pc, cupsGetOption("InputSlot",
2184 num_options,
2185 options));
2186 media_type = _ppdCacheGetType(pc, cupsGetOption("MediaType",
2187 num_options,
2188 options));
2189
2190 for (i = 0; i < media_col_sup->num_values; i ++)
2191 {
2192 if (!strcmp(media_col_sup->values[i].string.text,
2193 "media-left-margin"))
2194 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2195 "media-left-margin", size->left);
2196 else if (!strcmp(media_col_sup->values[i].string.text,
2197 "media-bottom-margin"))
2198 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2199 "media-bottom-margin", size->bottom);
2200 else if (!strcmp(media_col_sup->values[i].string.text,
2201 "media-right-margin"))
2202 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2203 "media-right-margin", size->right);
2204 else if (!strcmp(media_col_sup->values[i].string.text,
2205 "media-top-margin"))
2206 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
2207 "media-top-margin", size->top);
2208 else if (!strcmp(media_col_sup->values[i].string.text,
2209 "media-source") && media_source)
2210 ippAddString(media_col, IPP_TAG_ZERO, IPP_TAG_KEYWORD,
2211 "media-source", NULL, media_source);
2212 else if (!strcmp(media_col_sup->values[i].string.text,
2213 "media-type") && media_type)
2214 ippAddString(media_col, IPP_TAG_ZERO, IPP_TAG_KEYWORD,
2215 "media-type", NULL, media_type);
2216 }
2217
2218 ippAddCollection(request, IPP_TAG_JOB, "media-col", media_col);
2219 }
2220
2221 if ((keyword = cupsGetOption("output-bin", num_options,
2222 options)) == NULL)
2223 keyword = _ppdCacheGetBin(pc, cupsGetOption("OutputBin", num_options,
2224 options));
2225
2226 if (keyword)
2227 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "output-bin",
2228 NULL, keyword);
2229
2230 if ((keyword = cupsGetOption("output-mode", num_options,
2231 options)) != NULL)
2232 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "output-mode",
2233 NULL, keyword);
2234 else if ((keyword = cupsGetOption("ColorModel", num_options,
2235 options)) != NULL)
2236 {
2237 if (!_cups_strcasecmp(keyword, "Gray"))
2238 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "output-mode",
2239 NULL, "monochrome");
2240 else
2241 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "output-mode",
2242 NULL, "color");
2243 }
2244
2245 if ((keyword = cupsGetOption("print-quality", num_options,
2246 options)) != NULL)
2247 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality",
2248 atoi(keyword));
2249 else if ((keyword = cupsGetOption("cupsPrintQuality", num_options,
2250 options)) != NULL)
2251 {
2252 if (!_cups_strcasecmp(keyword, "draft"))
2253 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality",
2254 IPP_QUALITY_DRAFT);
2255 else if (!_cups_strcasecmp(keyword, "normal"))
2256 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality",
2257 IPP_QUALITY_NORMAL);
2258 else if (!_cups_strcasecmp(keyword, "high"))
2259 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality",
2260 IPP_QUALITY_HIGH);
2261 }
2262
2263 if ((keyword = cupsGetOption("sides", num_options, options)) != NULL)
2264 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides",
2265 NULL, keyword);
2266 else if (pc->sides_option &&
2267 (keyword = cupsGetOption(pc->sides_option, num_options,
2268 options)) != NULL)
2269 {
2270 if (!_cups_strcasecmp(keyword, pc->sides_1sided))
2271 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides",
2272 NULL, "one-sided");
2273 else if (!_cups_strcasecmp(keyword, pc->sides_2sided_long))
2274 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides",
2275 NULL, "two-sided-long-edge");
2276 if (!_cups_strcasecmp(keyword, pc->sides_2sided_short))
2277 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides",
2278 NULL, "two-sided-short-edge");
2279 }
2280
2281 if (doc_handling_sup &&
2282 (keyword = cupsGetOption("collate", num_options, options)) != NULL)
2283 {
2284 if (!_cups_strcasecmp(keyword, "true"))
2285 collate_str = "separate-documents-collated-copies";
2286 else
2287 collate_str = "separate-documents-uncollated-copies";
2288
2289 for (i = 0; i < doc_handling_sup->num_values; i ++)
2290 if (!strcmp(doc_handling_sup->values[i].string.text, collate_str))
2291 {
2292 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD,
2293 "multiple-document-handling", NULL, collate_str);
2294 break;
2295 }
2296 }
2297 }
2298 else
2299 {
2300 /*
2301 * When talking to another CUPS server, send all options...
2302 */
2303
2304 cupsEncodeOptions(request, num_options, options);
2305 }
2306
2307 if (copies > 1)
2308 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_INTEGER, "copies", copies);
2309 }
2310
2311 return (request);
2312 }
2313
2314
2315 /*
2316 * 'password_cb()' - Disable the password prompt for cupsDoFileRequest().
2317 */
2318
2319 static const char * /* O - Password */
2320 password_cb(const char *prompt) /* I - Prompt (not used) */
2321 {
2322 (void)prompt;
2323
2324 /*
2325 * Remember that we need to authenticate...
2326 */
2327
2328 auth_info_required = "username,password";
2329
2330 if (password && *password && password_tries < 3)
2331 {
2332 password_tries ++;
2333
2334 return (password);
2335 }
2336 else
2337 {
2338 /*
2339 * Give up after 3 tries or if we don't have a password to begin with...
2340 */
2341
2342 return (NULL);
2343 }
2344 }
2345
2346
2347 /*
2348 * 'report_attr()' - Report an IPP attribute value.
2349 */
2350
2351 static void
2352 report_attr(ipp_attribute_t *attr) /* I - Attribute */
2353 {
2354 int i; /* Looping var */
2355 char value[1024], /* Value string */
2356 *valptr, /* Pointer into value string */
2357 *attrptr; /* Pointer into attribute value */
2358 const char *cached; /* Cached attribute */
2359
2360
2361 /*
2362 * Convert the attribute values into quoted strings...
2363 */
2364
2365 for (i = 0, valptr = value;
2366 i < attr->num_values && valptr < (value + sizeof(value) - 10);
2367 i ++)
2368 {
2369 if (i > 0)
2370 *valptr++ = ',';
2371
2372 switch (attr->value_tag)
2373 {
2374 case IPP_TAG_INTEGER :
2375 case IPP_TAG_ENUM :
2376 snprintf(valptr, sizeof(value) - (valptr - value), "%d",
2377 attr->values[i].integer);
2378 valptr += strlen(valptr);
2379 break;
2380
2381 case IPP_TAG_TEXT :
2382 case IPP_TAG_NAME :
2383 case IPP_TAG_KEYWORD :
2384 *valptr++ = '\"';
2385 for (attrptr = attr->values[i].string.text;
2386 *attrptr && valptr < (value + sizeof(value) - 10);
2387 attrptr ++)
2388 {
2389 if (*attrptr == '\\' || *attrptr == '\"')
2390 *valptr++ = '\\';
2391
2392 *valptr++ = *attrptr;
2393 }
2394 *valptr++ = '\"';
2395 break;
2396
2397 default :
2398 /*
2399 * Unsupported value type...
2400 */
2401
2402 return;
2403 }
2404 }
2405
2406 *valptr = '\0';
2407
2408 _cupsMutexLock(&report_mutex);
2409
2410 if ((cached = cupsGetOption(attr->name, num_attr_cache,
2411 attr_cache)) == NULL || strcmp(cached, value))
2412 {
2413 /*
2414 * Tell the scheduler about the new values...
2415 */
2416
2417 num_attr_cache = cupsAddOption(attr->name, value, num_attr_cache,
2418 &attr_cache);
2419 fprintf(stderr, "ATTR: %s=%s\n", attr->name, value);
2420 }
2421
2422 _cupsMutexUnlock(&report_mutex);
2423 }
2424
2425
2426 /*
2427 * 'report_printer_state()' - Report the printer state.
2428 */
2429
2430 static void
2431 report_printer_state(ipp_t *ipp) /* I - IPP response */
2432 {
2433 ipp_attribute_t *pa, /* printer-alert */
2434 *pam, /* printer-alert-message */
2435 *psm, /* printer-state-message */
2436 *reasons, /* printer-state-reasons */
2437 *marker; /* marker-* attributes */
2438 char value[1024], /* State/message string */
2439 *valptr; /* Pointer into string */
2440 static int ipp_supplies = -1;
2441 /* Report supply levels? */
2442
2443
2444 /*
2445 * Report alerts and messages...
2446 */
2447
2448 if ((pa = ippFindAttribute(ipp, "printer-alert", IPP_TAG_TEXT)) != NULL)
2449 report_attr(pa);
2450
2451 if ((pam = ippFindAttribute(ipp, "printer-alert-message",
2452 IPP_TAG_TEXT)) != NULL)
2453 report_attr(pam);
2454
2455 if ((psm = ippFindAttribute(ipp, "printer-state-message",
2456 IPP_TAG_TEXT)) != NULL)
2457 {
2458 char *ptr; /* Pointer into message */
2459
2460
2461 strlcpy(value, "INFO: ", sizeof(value));
2462 for (ptr = psm->values[0].string.text, valptr = value + 6;
2463 *ptr && valptr < (value + sizeof(value) - 6);
2464 ptr ++)
2465 {
2466 if (*ptr < ' ' && *ptr > 0 && *ptr != '\t')
2467 {
2468 /*
2469 * Substitute "<XX>" for the control character; sprintf is safe because
2470 * we always leave 6 chars free at the end...
2471 */
2472
2473 sprintf(valptr, "<%02X>", *ptr);
2474 valptr += 4;
2475 }
2476 else
2477 *valptr++ = *ptr;
2478 }
2479
2480 *valptr++ = '\n';
2481 *valptr = '\0';
2482
2483 fputs(value, stderr);
2484 }
2485
2486 /*
2487 * Now report printer-state-reasons, filtering out some of the reasons we never
2488 * want to set...
2489 */
2490
2491 if ((reasons = ippFindAttribute(ipp, "printer-state-reasons",
2492 IPP_TAG_KEYWORD)) == NULL)
2493 return;
2494
2495 update_reasons(reasons, NULL);
2496
2497 /*
2498 * Relay the current marker-* attribute values...
2499 */
2500
2501 if (ipp_supplies < 0)
2502 {
2503 ppd_file_t *ppd; /* PPD file */
2504 ppd_attr_t *ppdattr; /* Attribute in PPD file */
2505
2506 if ((ppd = ppdOpenFile(getenv("PPD"))) != NULL &&
2507 (ppdattr = ppdFindAttr(ppd, "cupsIPPSupplies", NULL)) != NULL &&
2508 ppdattr->value && _cups_strcasecmp(ppdattr->value, "true"))
2509 ipp_supplies = 0;
2510 else
2511 ipp_supplies = 1;
2512
2513 ppdClose(ppd);
2514 }
2515
2516 if (ipp_supplies > 0)
2517 {
2518 if ((marker = ippFindAttribute(ipp, "marker-colors", IPP_TAG_NAME)) != NULL)
2519 report_attr(marker);
2520 if ((marker = ippFindAttribute(ipp, "marker-high-levels",
2521 IPP_TAG_INTEGER)) != NULL)
2522 report_attr(marker);
2523 if ((marker = ippFindAttribute(ipp, "marker-levels",
2524 IPP_TAG_INTEGER)) != NULL)
2525 report_attr(marker);
2526 if ((marker = ippFindAttribute(ipp, "marker-low-levels",
2527 IPP_TAG_INTEGER)) != NULL)
2528 report_attr(marker);
2529 if ((marker = ippFindAttribute(ipp, "marker-message",
2530 IPP_TAG_TEXT)) != NULL)
2531 report_attr(marker);
2532 if ((marker = ippFindAttribute(ipp, "marker-names", IPP_TAG_NAME)) != NULL)
2533 report_attr(marker);
2534 if ((marker = ippFindAttribute(ipp, "marker-types",
2535 IPP_TAG_KEYWORD)) != NULL)
2536 report_attr(marker);
2537 }
2538 }
2539
2540
2541 #if defined(HAVE_GSSAPI) && defined(HAVE_XPC)
2542 /*
2543 * 'run_as_user()' - Run the IPP backend as the printing user.
2544 *
2545 * This function uses an XPC-based user agent to run the backend as the printing
2546 * user. We need to do this in order to have access to the user's Kerberos
2547 * credentials.
2548 */
2549
2550 static int /* O - Exit status */
2551 run_as_user(int argc, /* I - Number of command-line args */
2552 char *argv[], /* I - Command-line arguments */
2553 uid_t uid, /* I - User ID */
2554 const char *device_uri, /* I - Device URI */
2555 int fd) /* I - File to print */
2556 {
2557 const char *auth_negotiate;/* AUTH_NEGOTIATE env var */
2558 xpc_connection_t conn; /* Connection to XPC service */
2559 xpc_object_t request; /* Request message dictionary */
2560 __block xpc_object_t response; /* Response message dictionary */
2561 dispatch_semaphore_t sem; /* Semaphore for waiting for response */
2562 int status = CUPS_BACKEND_FAILED;
2563 /* Status of request */
2564
2565
2566 fprintf(stderr, "DEBUG: Running IPP backend as UID %d.\n", (int)uid);
2567
2568 /*
2569 * Connect to the user agent for the specified UID...
2570 */
2571
2572 conn = xpc_connection_create_mach_service(kPMPrintUIToolAgent,
2573 dispatch_get_global_queue(0, 0), 0);
2574 if (!conn)
2575 {
2576 _cupsLangPrintFilter(stderr, "ERROR",
2577 _("Unable to start backend process."));
2578 fputs("DEBUG: Unable to create connection to agent.\n", stderr);
2579 goto cleanup;
2580 }
2581
2582 xpc_connection_set_event_handler(conn,
2583 ^(xpc_object_t event)
2584 {
2585 xpc_type_t messageType = xpc_get_type(event);
2586
2587 if (messageType == XPC_TYPE_ERROR)
2588 {
2589 if (event == XPC_ERROR_CONNECTION_INTERRUPTED)
2590 fprintf(stderr, "DEBUG: Interrupted connection to service %s.\n",
2591 xpc_connection_get_name(conn));
2592 else if (event == XPC_ERROR_CONNECTION_INVALID)
2593 fprintf(stderr, "DEBUG: Connection invalid for service %s.\n",
2594 xpc_connection_get_name(conn));
2595 else
2596 fprintf(stderr, "DEBUG: Unxpected error for service %s: %s\n",
2597 xpc_connection_get_name(conn),
2598 xpc_dictionary_get_string(event, XPC_ERROR_KEY_DESCRIPTION));
2599 }
2600 });
2601 xpc_connection_set_target_uid(conn, uid);
2602 xpc_connection_resume(conn);
2603
2604 /*
2605 * Try starting the backend...
2606 */
2607
2608 request = xpc_dictionary_create(NULL, NULL, 0);
2609 xpc_dictionary_set_int64(request, "command", kPMStartJob);
2610 xpc_dictionary_set_string(request, "device-uri", device_uri);
2611 xpc_dictionary_set_string(request, "job-id", argv[1]);
2612 xpc_dictionary_set_string(request, "user", argv[2]);
2613 xpc_dictionary_set_string(request, "title", argv[3]);
2614 xpc_dictionary_set_string(request, "copies", argv[4]);
2615 xpc_dictionary_set_string(request, "options", argv[5]);
2616 xpc_dictionary_set_string(request, "auth-info-required",
2617 getenv("AUTH_INFO_REQUIRED"));
2618 if ((auth_negotiate = getenv("AUTH_NEGOTIATE")) != NULL)
2619 xpc_dictionary_set_string(request, "auth-negotiate", auth_negotiate);
2620 xpc_dictionary_set_fd(request, "stdin", fd);
2621 xpc_dictionary_set_fd(request, "stderr", 2);
2622 xpc_dictionary_set_fd(request, "side-channel", CUPS_SC_FD);
2623
2624 sem = dispatch_semaphore_create(0);
2625 response = NULL;
2626
2627 xpc_connection_send_message_with_reply(conn, request,
2628 dispatch_get_global_queue(0,0),
2629 ^(xpc_object_t reply)
2630 {
2631 /* Save the response and wake up */
2632 if (xpc_get_type(reply)
2633 == XPC_TYPE_DICTIONARY)
2634 response = xpc_retain(reply);
2635
2636 dispatch_semaphore_signal(sem);
2637 });
2638
2639 dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
2640 xpc_release(request);
2641 dispatch_release(sem);
2642
2643 if (response)
2644 {
2645 child_pid = xpc_dictionary_get_int64(response, "child-pid");
2646
2647 xpc_release(response);
2648
2649 if (child_pid)
2650 fprintf(stderr, "DEBUG: Child PID=%d.\n", child_pid);
2651 else
2652 {
2653 _cupsLangPrintFilter(stderr, "ERROR",
2654 _("Unable to start backend process."));
2655 fputs("DEBUG: No child PID.\n", stderr);
2656 goto cleanup;
2657 }
2658 }
2659 else
2660 {
2661 _cupsLangPrintFilter(stderr, "ERROR",
2662 _("Unable to start backend process."));
2663 fputs("DEBUG: No reply from agent.\n", stderr);
2664 goto cleanup;
2665 }
2666
2667 /*
2668 * Then wait for the backend to finish...
2669 */
2670
2671 request = xpc_dictionary_create(NULL, NULL, 0);
2672 xpc_dictionary_set_int64(request, "command", kPMWaitForJob);
2673 xpc_dictionary_set_fd(request, "stderr", 2);
2674
2675 sem = dispatch_semaphore_create(0);
2676 response = NULL;
2677
2678 xpc_connection_send_message_with_reply(conn, request,
2679 dispatch_get_global_queue(0,0),
2680 ^(xpc_object_t reply)
2681 {
2682 /* Save the response and wake up */
2683 if (xpc_get_type(reply)
2684 == XPC_TYPE_DICTIONARY)
2685 response = xpc_retain(reply);
2686
2687 dispatch_semaphore_signal(sem);
2688 });
2689
2690 dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
2691 xpc_release(request);
2692 dispatch_release(sem);
2693
2694 if (response)
2695 {
2696 status = xpc_dictionary_get_int64(response, "status");
2697
2698 if (status == SIGTERM || status == SIGKILL || status == SIGPIPE)
2699 {
2700 fprintf(stderr, "DEBUG: Child terminated on signal %d.\n", status);
2701 status = CUPS_BACKEND_FAILED;
2702 }
2703 else if (WIFSIGNALED(status))
2704 {
2705 fprintf(stderr, "DEBUG: Child crashed on signal %d.\n", status);
2706 status = CUPS_BACKEND_STOP;
2707 }
2708 else if (WIFEXITED(status))
2709 {
2710 status = WEXITSTATUS(status);
2711 fprintf(stderr, "DEBUG: Child exited with status %d.\n", status);
2712 }
2713
2714 xpc_release(response);
2715 }
2716 else
2717 _cupsLangPrintFilter(stderr, "ERROR",
2718 _("Unable to get backend exit status."));
2719
2720 cleanup:
2721
2722 if (conn)
2723 {
2724 xpc_connection_suspend(conn);
2725 xpc_connection_cancel(conn);
2726 xpc_release(conn);
2727 }
2728
2729 return (status);
2730 }
2731 #endif /* HAVE_GSSAPI && HAVE_XPC */
2732
2733
2734 /*
2735 * 'sigterm_handler()' - Handle 'terminate' signals that stop the backend.
2736 */
2737
2738 static void
2739 sigterm_handler(int sig) /* I - Signal */
2740 {
2741 (void)sig; /* remove compiler warnings... */
2742
2743 #if defined(HAVE_GSSAPI) && defined(HAVE_XPC)
2744 if (child_pid)
2745 {
2746 kill(child_pid, sig);
2747 child_pid = 0;
2748 }
2749 #endif /* HAVE_GSSAPI && HAVE_XPC */
2750
2751 if (!job_canceled)
2752 {
2753 /*
2754 * Flag that the job should be canceled...
2755 */
2756
2757 job_canceled = 1;
2758 return;
2759 }
2760
2761 /*
2762 * The scheduler already tried to cancel us once, now just terminate
2763 * after removing our temp file!
2764 */
2765
2766 if (tmpfilename[0])
2767 unlink(tmpfilename);
2768
2769 exit(1);
2770 }
2771
2772
2773 /*
2774 * 'timeout_cb()' - Handle HTTP timeouts.
2775 */
2776
2777 static int /* O - 1 to continue, 0 to cancel */
2778 timeout_cb(http_t *http, /* I - Connection to server (unused) */
2779 void *user_data) /* I - User data (unused) */
2780 {
2781 (void)http;
2782 (void)user_data;
2783
2784 return (!job_canceled);
2785 }
2786
2787
2788 /*
2789 * 'update_reasons()' - Update the printer-state-reasons values.
2790 */
2791
2792 static void
2793 update_reasons(ipp_attribute_t *attr, /* I - printer-state-reasons or NULL */
2794 const char *s) /* I - STATE: string or NULL */
2795 {
2796 char op; /* Add (+), remove (-), replace (\0) */
2797 cups_array_t *new_reasons; /* New reasons array */
2798 char *reason, /* Current reason */
2799 add[2048], /* Reasons added string */
2800 *addptr, /* Pointer into add string */
2801 rem[2048], /* Reasons removed string */
2802 *remptr; /* Pointer into remove string */
2803 const char *addprefix, /* Current add string prefix */
2804 *remprefix; /* Current remove string prefix */
2805
2806
2807 fprintf(stderr, "DEBUG: update_reasons(attr=%d(%s%s), s=\"%s\")\n",
2808 attr ? attr->num_values : 0, attr ? attr->values[0].string.text : "",
2809 attr && attr->num_values > 1 ? ",..." : "", s ? s : "(null)");
2810
2811 /*
2812 * Create an array of new reason keyword strings...
2813 */
2814
2815 if (attr)
2816 {
2817 int i; /* Looping var */
2818
2819 new_reasons = cupsArrayNew((cups_array_func_t)strcmp, NULL);
2820 op = '\0';
2821
2822 for (i = 0; i < attr->num_values; i ++)
2823 {
2824 reason = attr->values[i].string.text;
2825
2826 if (strcmp(reason, "none") &&
2827 strcmp(reason, "none-report") &&
2828 strcmp(reason, "paused") &&
2829 strncmp(reason, "spool-area-full", 15) &&
2830 strcmp(reason, "com.apple.print.recoverable-warning") &&
2831 strncmp(reason, "cups-", 5))
2832 cupsArrayAdd(new_reasons, reason);
2833 }
2834 }
2835 else if (s)
2836 {
2837 if (*s == '+' || *s == '-')
2838 op = *s++;
2839 else
2840 op = '\0';
2841
2842 new_reasons = _cupsArrayNewStrings(s);
2843 }
2844 else
2845 return;
2846
2847 /*
2848 * Compute the changes...
2849 */
2850
2851 add[0] = '\0';
2852 addprefix = "STATE: +";
2853 addptr = add;
2854 rem[0] = '\0';
2855 remprefix = "STATE: -";
2856 remptr = rem;
2857
2858 fprintf(stderr, "DEBUG2: op='%c', new_reasons=%d, state_reasons=%d\n",
2859 op ? op : ' ', cupsArrayCount(new_reasons),
2860 cupsArrayCount(state_reasons));
2861
2862 _cupsMutexLock(&report_mutex);
2863
2864 if (op == '+')
2865 {
2866 /*
2867 * Add reasons...
2868 */
2869
2870 for (reason = (char *)cupsArrayFirst(new_reasons);
2871 reason;
2872 reason = (char *)cupsArrayNext(new_reasons))
2873 {
2874 if (!cupsArrayFind(state_reasons, reason))
2875 {
2876 if (!strncmp(reason, "cups-remote-", 12))
2877 {
2878 /*
2879 * If we are setting cups-remote-xxx, remove all other cups-remote-xxx
2880 * keywords...
2881 */
2882
2883 char *temp; /* Current reason in state_reasons */
2884
2885 cupsArraySave(state_reasons);
2886
2887 for (temp = (char *)cupsArrayFirst(state_reasons);
2888 temp;
2889 temp = (char *)cupsArrayNext(state_reasons))
2890 if (!strncmp(temp, "cups-remote-", 12))
2891 {
2892 snprintf(remptr, sizeof(rem) - (remptr - rem), "%s%s", remprefix,
2893 temp);
2894 remptr += strlen(remptr);
2895 remprefix = ",";
2896
2897 cupsArrayRemove(state_reasons, temp);
2898 break;
2899 }
2900
2901 cupsArrayRestore(state_reasons);
2902 }
2903
2904 cupsArrayAdd(state_reasons, reason);
2905
2906 snprintf(addptr, sizeof(add) - (addptr - add), "%s%s", addprefix,
2907 reason);
2908 addptr += strlen(addptr);
2909 addprefix = ",";
2910 }
2911 }
2912 }
2913 else if (op == '-')
2914 {
2915 /*
2916 * Remove reasons...
2917 */
2918
2919 for (reason = (char *)cupsArrayFirst(new_reasons);
2920 reason;
2921 reason = (char *)cupsArrayNext(new_reasons))
2922 {
2923 if (cupsArrayFind(state_reasons, reason))
2924 {
2925 snprintf(remptr, sizeof(rem) - (remptr - rem), "%s%s", remprefix,
2926 reason);
2927 remptr += strlen(remptr);
2928 remprefix = ",";
2929
2930 cupsArrayRemove(state_reasons, reason);
2931 }
2932 }
2933 }
2934 else
2935 {
2936 /*
2937 * Replace reasons...
2938 */
2939
2940 for (reason = (char *)cupsArrayFirst(state_reasons);
2941 reason;
2942 reason = (char *)cupsArrayNext(state_reasons))
2943 {
2944 if (strncmp(reason, "cups-", 5) && !cupsArrayFind(new_reasons, reason))
2945 {
2946 snprintf(remptr, sizeof(rem) - (remptr - rem), "%s%s", remprefix,
2947 reason);
2948 remptr += strlen(remptr);
2949 remprefix = ",";
2950
2951 cupsArrayRemove(state_reasons, reason);
2952 }
2953 }
2954
2955 for (reason = (char *)cupsArrayFirst(new_reasons);
2956 reason;
2957 reason = (char *)cupsArrayNext(new_reasons))
2958 {
2959 if (!cupsArrayFind(state_reasons, reason))
2960 {
2961 cupsArrayAdd(state_reasons, reason);
2962
2963 snprintf(addptr, sizeof(add) - (addptr - add), "%s%s", addprefix,
2964 reason);
2965 addptr += strlen(addptr);
2966 addprefix = ",";
2967 }
2968 }
2969 }
2970
2971 _cupsMutexUnlock(&report_mutex);
2972
2973 /*
2974 * Report changes and return...
2975 */
2976
2977 if (add[0] && rem[0])
2978 fprintf(stderr, "%s\n%s\n", add, rem);
2979 else if (add[0])
2980 fprintf(stderr, "%s\n", add);
2981 else if (rem[0])
2982 fprintf(stderr, "%s\n", rem);
2983 }
2984
2985 /*
2986 * End of "$Id: ipp.c 9759 2011-05-11 03:24:33Z mike $".
2987 */