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