]> git.ipfire.org Git - thirdparty/cups.git/blob - scheduler/ipp.c
Fix build errors on Fedora.
[thirdparty/cups.git] / scheduler / ipp.c
1 /*
2 * "$Id$"
3 *
4 * IPP routines for the CUPS scheduler.
5 *
6 * Copyright 2007-2014 by Apple Inc.
7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
8 *
9 * This file contains Kerberos support code, copyright 2006 by
10 * Jelmer Vernooij.
11 *
12 * These coded instructions, statements, and computer programs are the
13 * property of Apple Inc. and are protected by Federal copyright
14 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
15 * which should have been included with this file. If this file is
16 * file is missing or damaged, see the license at "http://www.cups.org/".
17 */
18
19 /*
20 * Include necessary headers...
21 */
22
23 #include "cupsd.h"
24 #include <cups/ppd-private.h>
25
26 #ifdef __APPLE__
27 /*# include <ApplicationServices/ApplicationServices.h>
28 extern CFUUIDRef ColorSyncCreateUUIDFromUInt32(unsigned id);
29 # include <CoreFoundation/CoreFoundation.h>*/
30 # ifdef HAVE_MEMBERSHIP_H
31 # include <membership.h>
32 # endif /* HAVE_MEMBERSHIP_H */
33 # ifdef HAVE_MEMBERSHIPPRIV_H
34 # include <membershipPriv.h>
35 # else
36 extern int mbr_user_name_to_uuid(const char* name, uuid_t uu);
37 extern int mbr_group_name_to_uuid(const char* name, uuid_t uu);
38 extern int mbr_check_membership_by_id(uuid_t user, gid_t group, int* ismember);
39 # endif /* HAVE_MEMBERSHIPPRIV_H */
40 #endif /* __APPLE__ */
41
42
43 /*
44 * Local functions...
45 */
46
47 static void accept_jobs(cupsd_client_t *con, ipp_attribute_t *uri);
48 static void add_class(cupsd_client_t *con, ipp_attribute_t *uri);
49 static int add_file(cupsd_client_t *con, cupsd_job_t *job,
50 mime_type_t *filetype, int compression);
51 static cupsd_job_t *add_job(cupsd_client_t *con, cupsd_printer_t *printer,
52 mime_type_t *filetype);
53 static void add_job_subscriptions(cupsd_client_t *con, cupsd_job_t *job);
54 static void add_job_uuid(cupsd_job_t *job);
55 static void add_printer(cupsd_client_t *con, ipp_attribute_t *uri);
56 static void add_printer_state_reasons(cupsd_client_t *con,
57 cupsd_printer_t *p);
58 static void add_queued_job_count(cupsd_client_t *con, cupsd_printer_t *p);
59 static void apply_printer_defaults(cupsd_printer_t *printer,
60 cupsd_job_t *job);
61 static void authenticate_job(cupsd_client_t *con, ipp_attribute_t *uri);
62 static void cancel_all_jobs(cupsd_client_t *con, ipp_attribute_t *uri);
63 static void cancel_job(cupsd_client_t *con, ipp_attribute_t *uri);
64 static void cancel_subscription(cupsd_client_t *con, int id);
65 static int check_rss_recipient(const char *recipient);
66 static int check_quotas(cupsd_client_t *con, cupsd_printer_t *p);
67 static void close_job(cupsd_client_t *con, ipp_attribute_t *uri);
68 static void copy_attrs(ipp_t *to, ipp_t *from, cups_array_t *ra,
69 ipp_tag_t group, int quickcopy,
70 cups_array_t *exclude);
71 static int copy_banner(cupsd_client_t *con, cupsd_job_t *job,
72 const char *name);
73 static int copy_file(const char *from, const char *to);
74 static int copy_model(cupsd_client_t *con, const char *from,
75 const char *to);
76 static void copy_job_attrs(cupsd_client_t *con,
77 cupsd_job_t *job,
78 cups_array_t *ra, cups_array_t *exclude);
79 static void copy_printer_attrs(cupsd_client_t *con,
80 cupsd_printer_t *printer,
81 cups_array_t *ra);
82 static void copy_subscription_attrs(cupsd_client_t *con,
83 cupsd_subscription_t *sub,
84 cups_array_t *ra,
85 cups_array_t *exclude);
86 static void create_job(cupsd_client_t *con, ipp_attribute_t *uri);
87 static cups_array_t *create_requested_array(ipp_t *request);
88 static void create_subscription(cupsd_client_t *con, ipp_attribute_t *uri);
89 static void delete_printer(cupsd_client_t *con, ipp_attribute_t *uri);
90 static void get_default(cupsd_client_t *con);
91 static void get_devices(cupsd_client_t *con);
92 static void get_document(cupsd_client_t *con, ipp_attribute_t *uri);
93 static void get_jobs(cupsd_client_t *con, ipp_attribute_t *uri);
94 static void get_job_attrs(cupsd_client_t *con, ipp_attribute_t *uri);
95 static void get_notifications(cupsd_client_t *con);
96 static void get_ppd(cupsd_client_t *con, ipp_attribute_t *uri);
97 static void get_ppds(cupsd_client_t *con);
98 static void get_printers(cupsd_client_t *con, int type);
99 static void get_printer_attrs(cupsd_client_t *con, ipp_attribute_t *uri);
100 static void get_printer_supported(cupsd_client_t *con, ipp_attribute_t *uri);
101 static void get_subscription_attrs(cupsd_client_t *con, int sub_id);
102 static void get_subscriptions(cupsd_client_t *con, ipp_attribute_t *uri);
103 static const char *get_username(cupsd_client_t *con);
104 static void hold_job(cupsd_client_t *con, ipp_attribute_t *uri);
105 static void hold_new_jobs(cupsd_client_t *con, ipp_attribute_t *uri);
106 static void move_job(cupsd_client_t *con, ipp_attribute_t *uri);
107 static int ppd_parse_line(const char *line, char *option, int olen,
108 char *choice, int clen);
109 static void print_job(cupsd_client_t *con, ipp_attribute_t *uri);
110 static void read_job_ticket(cupsd_client_t *con);
111 static void reject_jobs(cupsd_client_t *con, ipp_attribute_t *uri);
112 static void release_held_new_jobs(cupsd_client_t *con,
113 ipp_attribute_t *uri);
114 static void release_job(cupsd_client_t *con, ipp_attribute_t *uri);
115 static void renew_subscription(cupsd_client_t *con, int sub_id);
116 static void restart_job(cupsd_client_t *con, ipp_attribute_t *uri);
117 static void save_auth_info(cupsd_client_t *con, cupsd_job_t *job,
118 ipp_attribute_t *auth_info);
119 static void send_document(cupsd_client_t *con, ipp_attribute_t *uri);
120 static void send_http_error(cupsd_client_t *con, http_status_t status,
121 cupsd_printer_t *printer);
122 static void send_ipp_status(cupsd_client_t *con, ipp_status_t status,
123 const char *message, ...)
124 __attribute__((__format__(__printf__, 3, 4)));
125 static void set_default(cupsd_client_t *con, ipp_attribute_t *uri);
126 static void set_job_attrs(cupsd_client_t *con, ipp_attribute_t *uri);
127 static void set_printer_attrs(cupsd_client_t *con, ipp_attribute_t *uri);
128 static void set_printer_defaults(cupsd_client_t *con,
129 cupsd_printer_t *printer);
130 static void start_printer(cupsd_client_t *con, ipp_attribute_t *uri);
131 static void stop_printer(cupsd_client_t *con, ipp_attribute_t *uri);
132 static void url_encode_attr(ipp_attribute_t *attr, char *buffer, size_t bufsize);
133 static char *url_encode_string(const char *s, char *buffer, size_t bufsize);
134 static int user_allowed(cupsd_printer_t *p, const char *username);
135 static void validate_job(cupsd_client_t *con, ipp_attribute_t *uri);
136 static int validate_name(const char *name);
137 static int validate_user(cupsd_job_t *job, cupsd_client_t *con, const char *owner, char *username, size_t userlen);
138
139
140 /*
141 * 'cupsdProcessIPPRequest()' - Process an incoming IPP request.
142 */
143
144 int /* O - 1 on success, 0 on failure */
145 cupsdProcessIPPRequest(
146 cupsd_client_t *con) /* I - Client connection */
147 {
148 ipp_tag_t group; /* Current group tag */
149 ipp_attribute_t *attr; /* Current attribute */
150 ipp_attribute_t *charset; /* Character set attribute */
151 ipp_attribute_t *language; /* Language attribute */
152 ipp_attribute_t *uri = NULL; /* Printer or job URI attribute */
153 ipp_attribute_t *username; /* requesting-user-name attr */
154 int sub_id; /* Subscription ID */
155
156
157 cupsdLogMessage(CUPSD_LOG_DEBUG2,
158 "cupsdProcessIPPRequest(%p[%d]): operation_id = %04x",
159 con, con->number, con->request->request.op.operation_id);
160
161 /*
162 * First build an empty response message for this request...
163 */
164
165 con->response = ippNew();
166
167 con->response->request.status.version[0] =
168 con->request->request.op.version[0];
169 con->response->request.status.version[1] =
170 con->request->request.op.version[1];
171 con->response->request.status.request_id =
172 con->request->request.op.request_id;
173
174 /*
175 * Then validate the request header and required attributes...
176 */
177
178 if (con->request->request.any.version[0] != 1 &&
179 con->request->request.any.version[0] != 2)
180 {
181 /*
182 * Return an error, since we only support IPP 1.x and 2.x.
183 */
184
185 cupsdAddEvent(CUPSD_EVENT_SERVER_AUDIT, NULL, NULL,
186 "%04X %s Bad request version number %d.%d",
187 IPP_VERSION_NOT_SUPPORTED, con->http->hostname,
188 con->request->request.any.version[0],
189 con->request->request.any.version[1]);
190
191 send_ipp_status(con, IPP_VERSION_NOT_SUPPORTED,
192 _("Bad request version number %d.%d."),
193 con->request->request.any.version[0],
194 con->request->request.any.version[1]);
195 }
196 else if (con->request->request.any.request_id < 1)
197 {
198 /*
199 * Return an error, since request IDs must be between 1 and 2^31-1
200 */
201
202 cupsdAddEvent(CUPSD_EVENT_SERVER_AUDIT, NULL, NULL,
203 "%04X %s Bad request ID %d",
204 IPP_BAD_REQUEST, con->http->hostname,
205 con->request->request.any.request_id);
206
207 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad request ID %d."),
208 con->request->request.any.request_id);
209 }
210 else if (!con->request->attrs)
211 {
212 cupsdAddEvent(CUPSD_EVENT_SERVER_AUDIT, NULL, NULL,
213 "%04X %s No attributes in request",
214 IPP_BAD_REQUEST, con->http->hostname);
215
216 send_ipp_status(con, IPP_BAD_REQUEST, _("No attributes in request."));
217 }
218 else
219 {
220 /*
221 * Make sure that the attributes are provided in the correct order and
222 * don't repeat groups...
223 */
224
225 for (attr = con->request->attrs, group = attr->group_tag;
226 attr;
227 attr = attr->next)
228 if (attr->group_tag < group && attr->group_tag != IPP_TAG_ZERO)
229 {
230 /*
231 * Out of order; return an error...
232 */
233
234 cupsdAddEvent(CUPSD_EVENT_SERVER_AUDIT, NULL, NULL,
235 "%04X %s Attribute groups are out of order",
236 IPP_BAD_REQUEST, con->http->hostname);
237
238 send_ipp_status(con, IPP_BAD_REQUEST,
239 _("Attribute groups are out of order (%x < %x)."),
240 attr->group_tag, group);
241 break;
242 }
243 else
244 group = attr->group_tag;
245
246 if (!attr)
247 {
248 /*
249 * Then make sure that the first three attributes are:
250 *
251 * attributes-charset
252 * attributes-natural-language
253 * printer-uri/job-uri
254 */
255
256 attr = con->request->attrs;
257 if (attr && attr->name &&
258 !strcmp(attr->name, "attributes-charset") &&
259 (attr->value_tag & IPP_TAG_MASK) == IPP_TAG_CHARSET)
260 charset = attr;
261 else
262 charset = NULL;
263
264 if (attr)
265 attr = attr->next;
266
267 if (attr && attr->name &&
268 !strcmp(attr->name, "attributes-natural-language") &&
269 (attr->value_tag & IPP_TAG_MASK) == IPP_TAG_LANGUAGE)
270 {
271 language = attr;
272
273 /*
274 * Reset language for this request if different from Accept-Language.
275 */
276
277 if (!con->language ||
278 strcmp(attr->values[0].string.text, con->language->language))
279 {
280 cupsLangFree(con->language);
281 con->language = cupsLangGet(attr->values[0].string.text);
282 }
283 }
284 else
285 language = NULL;
286
287 if ((attr = ippFindAttribute(con->request, "printer-uri",
288 IPP_TAG_URI)) != NULL)
289 uri = attr;
290 else if ((attr = ippFindAttribute(con->request, "job-uri",
291 IPP_TAG_URI)) != NULL)
292 uri = attr;
293 else if (con->request->request.op.operation_id == CUPS_GET_PPD)
294 uri = ippFindAttribute(con->request, "ppd-name", IPP_TAG_NAME);
295 else
296 uri = NULL;
297
298 if (charset)
299 ippAddString(con->response, IPP_TAG_OPERATION, IPP_TAG_CHARSET,
300 "attributes-charset", NULL,
301 charset->values[0].string.text);
302 else
303 ippAddString(con->response, IPP_TAG_OPERATION, IPP_TAG_CHARSET,
304 "attributes-charset", NULL, "utf-8");
305
306 if (language)
307 ippAddString(con->response, IPP_TAG_OPERATION, IPP_TAG_LANGUAGE,
308 "attributes-natural-language", NULL,
309 language->values[0].string.text);
310 else
311 ippAddString(con->response, IPP_TAG_OPERATION, IPP_TAG_LANGUAGE,
312 "attributes-natural-language", NULL, DefaultLanguage);
313
314 if (charset &&
315 _cups_strcasecmp(charset->values[0].string.text, "us-ascii") &&
316 _cups_strcasecmp(charset->values[0].string.text, "utf-8"))
317 {
318 /*
319 * Bad character set...
320 */
321
322 cupsdLogMessage(CUPSD_LOG_ERROR, "Unsupported character set \"%s\"",
323 charset->values[0].string.text);
324 cupsdAddEvent(CUPSD_EVENT_SERVER_AUDIT, NULL, NULL,
325 "%04X %s Unsupported attributes-charset value \"%s\"",
326 IPP_CHARSET, con->http->hostname,
327 charset->values[0].string.text);
328 send_ipp_status(con, IPP_BAD_REQUEST,
329 _("Unsupported character set \"%s\"."),
330 charset->values[0].string.text);
331 }
332 else if (!charset || !language ||
333 (!uri &&
334 con->request->request.op.operation_id != CUPS_GET_DEFAULT &&
335 con->request->request.op.operation_id != CUPS_GET_PRINTERS &&
336 con->request->request.op.operation_id != CUPS_GET_CLASSES &&
337 con->request->request.op.operation_id != CUPS_GET_DEVICES &&
338 con->request->request.op.operation_id != CUPS_GET_PPDS))
339 {
340 /*
341 * Return an error, since attributes-charset,
342 * attributes-natural-language, and printer-uri/job-uri are required
343 * for all operations.
344 */
345
346 if (!charset)
347 {
348 cupsdLogMessage(CUPSD_LOG_ERROR,
349 "Missing attributes-charset attribute");
350
351 cupsdAddEvent(CUPSD_EVENT_SERVER_AUDIT, NULL, NULL,
352 "%04X %s Missing attributes-charset attribute",
353 IPP_BAD_REQUEST, con->http->hostname);
354 }
355
356 if (!language)
357 {
358 cupsdLogMessage(CUPSD_LOG_ERROR,
359 "Missing attributes-natural-language attribute");
360
361 cupsdAddEvent(CUPSD_EVENT_SERVER_AUDIT, NULL, NULL,
362 "%04X %s Missing attributes-natural-language attribute",
363 IPP_BAD_REQUEST, con->http->hostname);
364 }
365
366 if (!uri)
367 {
368 cupsdLogMessage(CUPSD_LOG_ERROR,
369 "Missing printer-uri, job-uri, or ppd-name "
370 "attribute");
371
372 cupsdAddEvent(CUPSD_EVENT_SERVER_AUDIT, NULL, NULL,
373 "%04X %s Missing printer-uri, job-uri, or ppd-name "
374 "attribute", IPP_BAD_REQUEST, con->http->hostname);
375 }
376
377 cupsdLogMessage(CUPSD_LOG_DEBUG, "Request attributes follow...");
378
379 for (attr = con->request->attrs; attr; attr = attr->next)
380 cupsdLogMessage(CUPSD_LOG_DEBUG,
381 "attr \"%s\": group_tag = %x, value_tag = %x",
382 attr->name ? attr->name : "(null)", attr->group_tag,
383 attr->value_tag);
384
385 cupsdLogMessage(CUPSD_LOG_DEBUG, "End of attributes...");
386
387 send_ipp_status(con, IPP_BAD_REQUEST,
388 _("Missing required attributes."));
389 }
390 else
391 {
392 /*
393 * OK, all the checks pass so far; make sure requesting-user-name is
394 * not "root" from a remote host...
395 */
396
397 if ((username = ippFindAttribute(con->request, "requesting-user-name",
398 IPP_TAG_NAME)) != NULL)
399 {
400 /*
401 * Check for root user...
402 */
403
404 if (!strcmp(username->values[0].string.text, "root") &&
405 _cups_strcasecmp(con->http->hostname, "localhost") &&
406 strcmp(con->username, "root"))
407 {
408 /*
409 * Remote unauthenticated user masquerading as local root...
410 */
411
412 _cupsStrFree(username->values[0].string.text);
413 username->values[0].string.text = _cupsStrAlloc(RemoteRoot);
414 }
415 }
416
417 if ((attr = ippFindAttribute(con->request, "notify-subscription-id",
418 IPP_TAG_INTEGER)) != NULL)
419 sub_id = attr->values[0].integer;
420 else
421 sub_id = 0;
422
423 /*
424 * Then try processing the operation...
425 */
426
427 if (uri)
428 cupsdLogMessage(CUPSD_LOG_DEBUG, "%s %s",
429 ippOpString(con->request->request.op.operation_id),
430 uri->values[0].string.text);
431 else
432 cupsdLogMessage(CUPSD_LOG_DEBUG, "%s",
433 ippOpString(con->request->request.op.operation_id));
434
435 switch (con->request->request.op.operation_id)
436 {
437 case IPP_PRINT_JOB :
438 print_job(con, uri);
439 break;
440
441 case IPP_VALIDATE_JOB :
442 validate_job(con, uri);
443 break;
444
445 case IPP_CREATE_JOB :
446 create_job(con, uri);
447 break;
448
449 case IPP_SEND_DOCUMENT :
450 send_document(con, uri);
451 break;
452
453 case IPP_CANCEL_JOB :
454 cancel_job(con, uri);
455 break;
456
457 case IPP_GET_JOB_ATTRIBUTES :
458 get_job_attrs(con, uri);
459 break;
460
461 case IPP_GET_JOBS :
462 get_jobs(con, uri);
463 break;
464
465 case IPP_GET_PRINTER_ATTRIBUTES :
466 get_printer_attrs(con, uri);
467 break;
468
469 case IPP_GET_PRINTER_SUPPORTED_VALUES :
470 get_printer_supported(con, uri);
471 break;
472
473 case IPP_HOLD_JOB :
474 hold_job(con, uri);
475 break;
476
477 case IPP_RELEASE_JOB :
478 release_job(con, uri);
479 break;
480
481 case IPP_RESTART_JOB :
482 restart_job(con, uri);
483 break;
484
485 case IPP_PAUSE_PRINTER :
486 stop_printer(con, uri);
487 break;
488
489 case IPP_RESUME_PRINTER :
490 start_printer(con, uri);
491 break;
492
493 case IPP_PURGE_JOBS :
494 case IPP_CANCEL_JOBS :
495 case IPP_CANCEL_MY_JOBS :
496 cancel_all_jobs(con, uri);
497 break;
498
499 case IPP_SET_JOB_ATTRIBUTES :
500 set_job_attrs(con, uri);
501 break;
502
503 case IPP_SET_PRINTER_ATTRIBUTES :
504 set_printer_attrs(con, uri);
505 break;
506
507 case IPP_HOLD_NEW_JOBS :
508 hold_new_jobs(con, uri);
509 break;
510
511 case IPP_RELEASE_HELD_NEW_JOBS :
512 release_held_new_jobs(con, uri);
513 break;
514
515 case IPP_CLOSE_JOB :
516 close_job(con, uri);
517 break;
518
519 case CUPS_GET_DEFAULT :
520 get_default(con);
521 break;
522
523 case CUPS_GET_PRINTERS :
524 get_printers(con, 0);
525 break;
526
527 case CUPS_GET_CLASSES :
528 get_printers(con, CUPS_PRINTER_CLASS);
529 break;
530
531 case CUPS_ADD_PRINTER :
532 add_printer(con, uri);
533 break;
534
535 case CUPS_DELETE_PRINTER :
536 delete_printer(con, uri);
537 break;
538
539 case CUPS_ADD_CLASS :
540 add_class(con, uri);
541 break;
542
543 case CUPS_DELETE_CLASS :
544 delete_printer(con, uri);
545 break;
546
547 case CUPS_ACCEPT_JOBS :
548 case IPP_ENABLE_PRINTER :
549 accept_jobs(con, uri);
550 break;
551
552 case CUPS_REJECT_JOBS :
553 case IPP_DISABLE_PRINTER :
554 reject_jobs(con, uri);
555 break;
556
557 case CUPS_SET_DEFAULT :
558 set_default(con, uri);
559 break;
560
561 case CUPS_GET_DEVICES :
562 get_devices(con);
563 break;
564
565 case CUPS_GET_DOCUMENT :
566 get_document(con, uri);
567 break;
568
569 case CUPS_GET_PPD :
570 get_ppd(con, uri);
571 break;
572
573 case CUPS_GET_PPDS :
574 get_ppds(con);
575 break;
576
577 case CUPS_MOVE_JOB :
578 move_job(con, uri);
579 break;
580
581 case CUPS_AUTHENTICATE_JOB :
582 authenticate_job(con, uri);
583 break;
584
585 case IPP_CREATE_PRINTER_SUBSCRIPTION :
586 case IPP_CREATE_JOB_SUBSCRIPTION :
587 create_subscription(con, uri);
588 break;
589
590 case IPP_GET_SUBSCRIPTION_ATTRIBUTES :
591 get_subscription_attrs(con, sub_id);
592 break;
593
594 case IPP_GET_SUBSCRIPTIONS :
595 get_subscriptions(con, uri);
596 break;
597
598 case IPP_RENEW_SUBSCRIPTION :
599 renew_subscription(con, sub_id);
600 break;
601
602 case IPP_CANCEL_SUBSCRIPTION :
603 cancel_subscription(con, sub_id);
604 break;
605
606 case IPP_GET_NOTIFICATIONS :
607 get_notifications(con);
608 break;
609
610 default :
611 cupsdAddEvent(CUPSD_EVENT_SERVER_AUDIT, NULL, NULL,
612 "%04X %s Operation %04X (%s) not supported",
613 IPP_OPERATION_NOT_SUPPORTED, con->http->hostname,
614 con->request->request.op.operation_id,
615 ippOpString(con->request->request.op.operation_id));
616
617 send_ipp_status(con, IPP_OPERATION_NOT_SUPPORTED,
618 _("%s not supported."),
619 ippOpString(
620 con->request->request.op.operation_id));
621 break;
622 }
623 }
624 }
625 }
626
627 if (con->response)
628 {
629 /*
630 * Sending data from the scheduler...
631 */
632
633 cupsdLogMessage(con->response->request.status.status_code
634 >= IPP_BAD_REQUEST &&
635 con->response->request.status.status_code
636 != IPP_NOT_FOUND ? CUPSD_LOG_ERROR : CUPSD_LOG_DEBUG,
637 "[Client %d] Returning IPP %s for %s (%s) from %s",
638 con->number,
639 ippErrorString(con->response->request.status.status_code),
640 ippOpString(con->request->request.op.operation_id),
641 uri ? uri->values[0].string.text : "no URI",
642 con->http->hostname);
643
644 httpClearFields(con->http);
645
646 #ifdef CUPSD_USE_CHUNKING
647 /*
648 * Because older versions of CUPS (1.1.17 and older) and some IPP
649 * clients do not implement chunking properly, we cannot use
650 * chunking by default. This may become the default in future
651 * CUPS releases, or we might add a configuration directive for
652 * it.
653 */
654
655 if (con->http->version == HTTP_1_1)
656 {
657 cupsdLogMessage(CUPSD_LOG_DEBUG,
658 "[Client %d] Transfer-Encoding: chunked",
659 con->number);
660
661 cupsdSetLength(con->http, 0);
662 }
663 else
664 #endif /* CUPSD_USE_CHUNKING */
665 {
666 size_t length; /* Length of response */
667
668
669 length = ippLength(con->response);
670
671 if (con->file >= 0 && !con->pipe_pid)
672 {
673 struct stat fileinfo; /* File information */
674
675 if (!fstat(con->file, &fileinfo))
676 length += (size_t)fileinfo.st_size;
677 }
678
679 cupsdLogMessage(CUPSD_LOG_DEBUG,
680 "[Client %d] Content-Length: " CUPS_LLFMT,
681 con->number, CUPS_LLCAST length);
682 httpSetLength(con->http, length);
683 }
684
685 if (cupsdSendHeader(con, HTTP_OK, "application/ipp", CUPSD_AUTH_NONE))
686 {
687 /*
688 * Tell the caller the response header was sent successfully...
689 */
690
691 cupsdAddSelect(httpGetFd(con->http), (cupsd_selfunc_t)cupsdReadClient,
692 (cupsd_selfunc_t)cupsdWriteClient, con);
693
694 return (1);
695 }
696 else
697 {
698 /*
699 * Tell the caller the response header could not be sent...
700 */
701
702 return (0);
703 }
704 }
705 else
706 {
707 /*
708 * Sending data from a subprocess like cups-deviced; tell the caller
709 * everything is A-OK so far...
710 */
711
712 return (1);
713 }
714 }
715
716
717 /*
718 * 'cupsdTimeoutJob()' - Timeout a job waiting on job files.
719 */
720
721 int /* O - 0 on success, -1 on error */
722 cupsdTimeoutJob(cupsd_job_t *job) /* I - Job to timeout */
723 {
724 cupsd_printer_t *printer; /* Destination printer or class */
725 ipp_attribute_t *attr; /* job-sheets attribute */
726 int kbytes; /* Kilobytes in banner */
727
728
729 job->pending_timeout = 0;
730
731 /*
732 * See if we need to add the ending sheet...
733 */
734
735 if (!cupsdLoadJob(job))
736 return (-1);
737
738 printer = cupsdFindDest(job->dest);
739 attr = ippFindAttribute(job->attrs, "job-sheets", IPP_TAG_NAME);
740
741 if (printer && !(printer->type & CUPS_PRINTER_REMOTE) &&
742 attr && attr->num_values > 1)
743 {
744 /*
745 * Yes...
746 */
747
748 cupsdLogJob(job, CUPSD_LOG_INFO, "Adding end banner page \"%s\".",
749 attr->values[1].string.text);
750
751 if ((kbytes = copy_banner(NULL, job, attr->values[1].string.text)) < 0)
752 return (-1);
753
754 cupsdUpdateQuota(printer, job->username, 0, kbytes);
755 }
756
757 return (0);
758 }
759
760
761 /*
762 * 'accept_jobs()' - Accept print jobs to a printer.
763 */
764
765 static void
766 accept_jobs(cupsd_client_t *con, /* I - Client connection */
767 ipp_attribute_t *uri) /* I - Printer or class URI */
768 {
769 http_status_t status; /* Policy status */
770 cups_ptype_t dtype; /* Destination type (printer/class) */
771 cupsd_printer_t *printer; /* Printer data */
772
773
774 cupsdLogMessage(CUPSD_LOG_DEBUG2, "accept_jobs(%p[%d], %s)", con,
775 con->number, uri->values[0].string.text);
776
777 /*
778 * Is the destination valid?
779 */
780
781 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
782 {
783 /*
784 * Bad URI...
785 */
786
787 send_ipp_status(con, IPP_NOT_FOUND,
788 _("The printer or class does not exist."));
789 return;
790 }
791
792 /*
793 * Check policy...
794 */
795
796 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
797 {
798 send_http_error(con, status, printer);
799 return;
800 }
801
802 /*
803 * Accept jobs sent to the printer...
804 */
805
806 printer->accepting = 1;
807 printer->state_message[0] = '\0';
808
809 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, printer, NULL,
810 "Now accepting jobs.");
811
812 if (dtype & CUPS_PRINTER_CLASS)
813 {
814 cupsdMarkDirty(CUPSD_DIRTY_CLASSES);
815
816 cupsdLogMessage(CUPSD_LOG_INFO, "Class \"%s\" now accepting jobs (\"%s\").",
817 printer->name, get_username(con));
818 }
819 else
820 {
821 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
822
823 cupsdLogMessage(CUPSD_LOG_INFO,
824 "Printer \"%s\" now accepting jobs (\"%s\").",
825 printer->name, get_username(con));
826 }
827
828 /*
829 * Everything was ok, so return OK status...
830 */
831
832 con->response->request.status.status_code = IPP_OK;
833 }
834
835
836 /*
837 * 'add_class()' - Add a class to the system.
838 */
839
840 static void
841 add_class(cupsd_client_t *con, /* I - Client connection */
842 ipp_attribute_t *uri) /* I - URI of class */
843 {
844 http_status_t status; /* Policy status */
845 int i; /* Looping var */
846 char scheme[HTTP_MAX_URI], /* Method portion of URI */
847 username[HTTP_MAX_URI], /* Username portion of URI */
848 host[HTTP_MAX_URI], /* Host portion of URI */
849 resource[HTTP_MAX_URI]; /* Resource portion of URI */
850 int port; /* Port portion of URI */
851 cupsd_printer_t *pclass, /* Class */
852 *member; /* Member printer/class */
853 cups_ptype_t dtype; /* Destination type */
854 ipp_attribute_t *attr; /* Printer attribute */
855 int modify; /* Non-zero if we just modified */
856 int need_restart_job; /* Need to restart job? */
857
858
859 cupsdLogMessage(CUPSD_LOG_DEBUG2, "add_class(%p[%d], %s)", con,
860 con->number, uri->values[0].string.text);
861
862 /*
863 * Do we have a valid URI?
864 */
865
866 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
867 sizeof(scheme), username, sizeof(username), host,
868 sizeof(host), &port, resource, sizeof(resource));
869
870
871 if (strncmp(resource, "/classes/", 9) || strlen(resource) == 9)
872 {
873 /*
874 * No, return an error...
875 */
876
877 send_ipp_status(con, IPP_BAD_REQUEST,
878 _("The printer-uri must be of the form "
879 "\"ipp://HOSTNAME/classes/CLASSNAME\"."));
880 return;
881 }
882
883 /*
884 * Do we have a valid printer name?
885 */
886
887 if (!validate_name(resource + 9))
888 {
889 /*
890 * No, return an error...
891 */
892
893 send_ipp_status(con, IPP_BAD_REQUEST,
894 _("The printer-uri \"%s\" contains invalid characters."),
895 uri->values[0].string.text);
896 return;
897 }
898
899 /*
900 * See if the class already exists; if not, create a new class...
901 */
902
903 if ((pclass = cupsdFindClass(resource + 9)) == NULL)
904 {
905 /*
906 * Class doesn't exist; see if we have a printer of the same name...
907 */
908
909 if ((pclass = cupsdFindPrinter(resource + 9)) != NULL)
910 {
911 /*
912 * Yes, return an error...
913 */
914
915 send_ipp_status(con, IPP_NOT_POSSIBLE,
916 _("A printer named \"%s\" already exists."),
917 resource + 9);
918 return;
919 }
920
921 /*
922 * No, check the default policy and then add the class...
923 */
924
925 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
926 {
927 send_http_error(con, status, NULL);
928 return;
929 }
930
931 pclass = cupsdAddClass(resource + 9);
932 modify = 0;
933 }
934 else if ((status = cupsdCheckPolicy(pclass->op_policy_ptr, con,
935 NULL)) != HTTP_OK)
936 {
937 send_http_error(con, status, pclass);
938 return;
939 }
940 else
941 modify = 1;
942
943 /*
944 * Look for attributes and copy them over as needed...
945 */
946
947 need_restart_job = 0;
948
949 if ((attr = ippFindAttribute(con->request, "printer-location",
950 IPP_TAG_TEXT)) != NULL)
951 cupsdSetString(&pclass->location, attr->values[0].string.text);
952
953 if ((attr = ippFindAttribute(con->request, "printer-info",
954 IPP_TAG_TEXT)) != NULL)
955 cupsdSetString(&pclass->info, attr->values[0].string.text);
956
957 if ((attr = ippFindAttribute(con->request, "printer-is-accepting-jobs",
958 IPP_TAG_BOOLEAN)) != NULL &&
959 attr->values[0].boolean != pclass->accepting)
960 {
961 cupsdLogMessage(CUPSD_LOG_INFO,
962 "Setting %s printer-is-accepting-jobs to %d (was %d.)",
963 pclass->name, attr->values[0].boolean, pclass->accepting);
964
965 pclass->accepting = attr->values[0].boolean;
966
967 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, pclass, NULL, "%s accepting jobs.",
968 pclass->accepting ? "Now" : "No longer");
969 }
970
971 if ((attr = ippFindAttribute(con->request, "printer-is-shared",
972 IPP_TAG_BOOLEAN)) != NULL)
973 {
974 if (pclass->shared && !attr->values[0].boolean)
975 cupsdDeregisterPrinter(pclass, 1);
976
977 cupsdLogMessage(CUPSD_LOG_INFO,
978 "Setting %s printer-is-shared to %d (was %d.)",
979 pclass->name, attr->values[0].boolean, pclass->shared);
980
981 pclass->shared = attr->values[0].boolean;
982 }
983
984 if ((attr = ippFindAttribute(con->request, "printer-state",
985 IPP_TAG_ENUM)) != NULL)
986 {
987 if (attr->values[0].integer != IPP_PRINTER_IDLE &&
988 attr->values[0].integer != IPP_PRINTER_STOPPED)
989 {
990 send_ipp_status(con, IPP_BAD_REQUEST,
991 _("Attempt to set %s printer-state to bad value %d."),
992 pclass->name, attr->values[0].integer);
993 return;
994 }
995
996 cupsdLogMessage(CUPSD_LOG_INFO, "Setting %s printer-state to %d (was %d.)",
997 pclass->name, attr->values[0].integer, pclass->state);
998
999 if (attr->values[0].integer == IPP_PRINTER_STOPPED)
1000 cupsdStopPrinter(pclass, 0);
1001 else
1002 {
1003 cupsdSetPrinterState(pclass, (ipp_pstate_t)(attr->values[0].integer), 0);
1004 need_restart_job = 1;
1005 }
1006 }
1007 if ((attr = ippFindAttribute(con->request, "printer-state-message",
1008 IPP_TAG_TEXT)) != NULL)
1009 {
1010 strlcpy(pclass->state_message, attr->values[0].string.text,
1011 sizeof(pclass->state_message));
1012
1013 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, pclass, NULL, "%s",
1014 pclass->state_message);
1015 }
1016 if ((attr = ippFindAttribute(con->request, "member-uris",
1017 IPP_TAG_URI)) != NULL)
1018 {
1019 /*
1020 * Clear the printer array as needed...
1021 */
1022
1023 need_restart_job = 1;
1024
1025 if (pclass->num_printers > 0)
1026 {
1027 free(pclass->printers);
1028 pclass->num_printers = 0;
1029 }
1030
1031 /*
1032 * Add each printer or class that is listed...
1033 */
1034
1035 for (i = 0; i < attr->num_values; i ++)
1036 {
1037 /*
1038 * Search for the printer or class URI...
1039 */
1040
1041 if (!cupsdValidateDest(attr->values[i].string.text, &dtype, &member))
1042 {
1043 /*
1044 * Bad URI...
1045 */
1046
1047 send_ipp_status(con, IPP_NOT_FOUND,
1048 _("The printer or class does not exist."));
1049 return;
1050 }
1051 else if (dtype & CUPS_PRINTER_CLASS)
1052 {
1053 send_ipp_status(con, IPP_BAD_REQUEST,
1054 _("Nested classes are not allowed."));
1055 return;
1056 }
1057
1058 /*
1059 * Add it to the class...
1060 */
1061
1062 cupsdAddPrinterToClass(pclass, member);
1063 }
1064 }
1065
1066 set_printer_defaults(con, pclass);
1067
1068 if ((attr = ippFindAttribute(con->request, "auth-info-required",
1069 IPP_TAG_KEYWORD)) != NULL)
1070 cupsdSetAuthInfoRequired(pclass, NULL, attr);
1071
1072 /*
1073 * Update the printer class attributes and return...
1074 */
1075
1076 cupsdSetPrinterAttrs(pclass);
1077 cupsdMarkDirty(CUPSD_DIRTY_CLASSES);
1078
1079 if (need_restart_job && pclass->job)
1080 {
1081 /*
1082 * Reset the current job to a "pending" status...
1083 */
1084
1085 cupsdSetJobState(pclass->job, IPP_JOB_PENDING, CUPSD_JOB_FORCE,
1086 "Job restarted because the class was modified.");
1087 }
1088
1089 cupsdMarkDirty(CUPSD_DIRTY_PRINTCAP);
1090
1091 if (modify)
1092 {
1093 cupsdAddEvent(CUPSD_EVENT_PRINTER_MODIFIED,
1094 pclass, NULL, "Class \"%s\" modified by \"%s\".",
1095 pclass->name, get_username(con));
1096
1097 cupsdLogMessage(CUPSD_LOG_INFO, "Class \"%s\" modified by \"%s\".",
1098 pclass->name, get_username(con));
1099 }
1100 else
1101 {
1102 cupsdAddEvent(CUPSD_EVENT_PRINTER_ADDED,
1103 pclass, NULL, "New class \"%s\" added by \"%s\".",
1104 pclass->name, get_username(con));
1105
1106 cupsdLogMessage(CUPSD_LOG_INFO, "New class \"%s\" added by \"%s\".",
1107 pclass->name, get_username(con));
1108 }
1109
1110 con->response->request.status.status_code = IPP_OK;
1111 }
1112
1113
1114 /*
1115 * 'add_file()' - Add a file to a job.
1116 */
1117
1118 static int /* O - 0 on success, -1 on error */
1119 add_file(cupsd_client_t *con, /* I - Connection to client */
1120 cupsd_job_t *job, /* I - Job to add to */
1121 mime_type_t *filetype, /* I - Type of file */
1122 int compression) /* I - Compression */
1123 {
1124 mime_type_t **filetypes; /* New filetypes array... */
1125 int *compressions; /* New compressions array... */
1126
1127
1128 cupsdLogMessage(CUPSD_LOG_DEBUG2,
1129 "add_file(con=%p[%d], job=%d, filetype=%s/%s, "
1130 "compression=%d)", con, con ? con->number : -1, job->id,
1131 filetype->super, filetype->type, compression);
1132
1133 /*
1134 * Add the file to the job...
1135 */
1136
1137 if (job->num_files == 0)
1138 {
1139 compressions = (int *)malloc(sizeof(int));
1140 filetypes = (mime_type_t **)malloc(sizeof(mime_type_t *));
1141 }
1142 else
1143 {
1144 compressions = (int *)realloc(job->compressions,
1145 (size_t)(job->num_files + 1) * sizeof(int));
1146 filetypes = (mime_type_t **)realloc(job->filetypes,
1147 (size_t)(job->num_files + 1) *
1148 sizeof(mime_type_t *));
1149 }
1150
1151 if (compressions)
1152 job->compressions = compressions;
1153
1154 if (filetypes)
1155 job->filetypes = filetypes;
1156
1157 if (!compressions || !filetypes)
1158 {
1159 cupsdSetJobState(job, IPP_JOB_ABORTED, CUPSD_JOB_PURGE,
1160 "Job aborted because the scheduler ran out of memory.");
1161
1162 if (con)
1163 send_ipp_status(con, IPP_INTERNAL_ERROR,
1164 _("Unable to allocate memory for file types."));
1165
1166 return (-1);
1167 }
1168
1169 job->compressions[job->num_files] = compression;
1170 job->filetypes[job->num_files] = filetype;
1171
1172 job->num_files ++;
1173
1174 job->dirty = 1;
1175 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
1176
1177 return (0);
1178 }
1179
1180
1181 /*
1182 * 'add_job()' - Add a job to a print queue.
1183 */
1184
1185 static cupsd_job_t * /* O - Job object */
1186 add_job(cupsd_client_t *con, /* I - Client connection */
1187 cupsd_printer_t *printer, /* I - Destination printer */
1188 mime_type_t *filetype) /* I - First print file type, if any */
1189 {
1190 http_status_t status; /* Policy status */
1191 ipp_attribute_t *attr, /* Current attribute */
1192 *auth_info; /* auth-info attribute */
1193 const char *mandatory; /* Current mandatory job attribute */
1194 const char *val; /* Default option value */
1195 int priority; /* Job priority */
1196 cupsd_job_t *job; /* Current job */
1197 char job_uri[HTTP_MAX_URI]; /* Job URI */
1198 int kbytes; /* Size of print file */
1199 int i; /* Looping var */
1200 int lowerpagerange; /* Page range bound */
1201 int exact; /* Did we have an exact match? */
1202 ipp_attribute_t *media_col, /* media-col attribute */
1203 *media_margin; /* media-*-margin attribute */
1204 ipp_t *unsup_col; /* media-col in unsupported response */
1205 static const char * const readonly[] =/* List of read-only attributes */
1206 {
1207 "job-id",
1208 "job-k-octets-completed",
1209 "job-impressions-completed",
1210 "job-media-sheets-completed",
1211 "job-state",
1212 "job-state-message",
1213 "job-state-reasons",
1214 "time-at-completed",
1215 "time-at-creation",
1216 "time-at-processing"
1217 };
1218
1219
1220 cupsdLogMessage(CUPSD_LOG_DEBUG2, "add_job(%p[%d], %p(%s), %p(%s/%s))",
1221 con, con->number, printer, printer->name,
1222 filetype, filetype ? filetype->super : "none",
1223 filetype ? filetype->type : "none");
1224
1225 /*
1226 * Check remote printing to non-shared printer...
1227 */
1228
1229 if (!printer->shared &&
1230 _cups_strcasecmp(con->http->hostname, "localhost") &&
1231 _cups_strcasecmp(con->http->hostname, ServerName))
1232 {
1233 send_ipp_status(con, IPP_NOT_AUTHORIZED,
1234 _("The printer or class is not shared."));
1235 return (NULL);
1236 }
1237
1238 /*
1239 * Check policy...
1240 */
1241
1242 auth_info = ippFindAttribute(con->request, "auth-info", IPP_TAG_TEXT);
1243
1244 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
1245 {
1246 send_http_error(con, status, printer);
1247 return (NULL);
1248 }
1249 else if (printer->num_auth_info_required == 1 &&
1250 !strcmp(printer->auth_info_required[0], "negotiate") &&
1251 !con->username[0])
1252 {
1253 send_http_error(con, HTTP_UNAUTHORIZED, printer);
1254 return (NULL);
1255 }
1256 #ifdef HAVE_SSL
1257 else if (auth_info && !con->http->tls &&
1258 !httpAddrLocalhost(con->http->hostaddr))
1259 {
1260 /*
1261 * Require encryption of auth-info over non-local connections...
1262 */
1263
1264 send_http_error(con, HTTP_UPGRADE_REQUIRED, printer);
1265 return (NULL);
1266 }
1267 #endif /* HAVE_SSL */
1268
1269 /*
1270 * See if the printer is accepting jobs...
1271 */
1272
1273 if (!printer->accepting)
1274 {
1275 send_ipp_status(con, IPP_NOT_ACCEPTING,
1276 _("Destination \"%s\" is not accepting jobs."),
1277 printer->name);
1278 return (NULL);
1279 }
1280
1281 /*
1282 * Validate job template attributes; for now just document-format,
1283 * copies, job-sheets, number-up, page-ranges, mandatory attributes, and
1284 * media...
1285 */
1286
1287 for (i = 0; i < (int)(sizeof(readonly) / sizeof(readonly[0])); i ++)
1288 {
1289 if ((attr = ippFindAttribute(con->request, readonly[i],
1290 IPP_TAG_ZERO)) != NULL)
1291 {
1292 ippDeleteAttribute(con->request, attr);
1293
1294 if (StrictConformance)
1295 {
1296 send_ipp_status(con, IPP_BAD_REQUEST,
1297 _("The '%s' Job Description attribute cannot be "
1298 "supplied in a job creation request."), readonly[i]);
1299 return (NULL);
1300 }
1301
1302 cupsdLogMessage(CUPSD_LOG_INFO,
1303 "Unexpected '%s' Job Description attribute in a job "
1304 "creation request.", readonly[i]);
1305 }
1306 }
1307
1308 if (printer->pc)
1309 {
1310 for (mandatory = (char *)cupsArrayFirst(printer->pc->mandatory);
1311 mandatory;
1312 mandatory = (char *)cupsArrayNext(printer->pc->mandatory))
1313 {
1314 if (!ippFindAttribute(con->request, mandatory, IPP_TAG_ZERO))
1315 {
1316 /*
1317 * Missing a required attribute...
1318 */
1319
1320 send_ipp_status(con, IPP_CONFLICT,
1321 _("The \"%s\" attribute is required for print jobs."),
1322 mandatory);
1323 return (NULL);
1324 }
1325 }
1326 }
1327
1328 if (filetype && printer->filetypes &&
1329 !cupsArrayFind(printer->filetypes, filetype))
1330 {
1331 char mimetype[MIME_MAX_SUPER + MIME_MAX_TYPE + 2];
1332 /* MIME media type string */
1333
1334
1335 snprintf(mimetype, sizeof(mimetype), "%s/%s", filetype->super,
1336 filetype->type);
1337
1338 send_ipp_status(con, IPP_DOCUMENT_FORMAT,
1339 _("Unsupported format \"%s\"."), mimetype);
1340
1341 ippAddString(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_MIMETYPE,
1342 "document-format", NULL, mimetype);
1343
1344 return (NULL);
1345 }
1346
1347 if ((attr = ippFindAttribute(con->request, "copies",
1348 IPP_TAG_INTEGER)) != NULL)
1349 {
1350 if (attr->values[0].integer < 1 || attr->values[0].integer > MaxCopies)
1351 {
1352 send_ipp_status(con, IPP_ATTRIBUTES, _("Bad copies value %d."),
1353 attr->values[0].integer);
1354 ippAddInteger(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_INTEGER,
1355 "copies", attr->values[0].integer);
1356 return (NULL);
1357 }
1358 }
1359
1360 if ((attr = ippFindAttribute(con->request, "job-sheets",
1361 IPP_TAG_ZERO)) != NULL)
1362 {
1363 if (attr->value_tag != IPP_TAG_KEYWORD &&
1364 attr->value_tag != IPP_TAG_NAME)
1365 {
1366 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-sheets value type."));
1367 return (NULL);
1368 }
1369
1370 if (attr->num_values > 2)
1371 {
1372 send_ipp_status(con, IPP_BAD_REQUEST,
1373 _("Too many job-sheets values (%d > 2)."),
1374 attr->num_values);
1375 return (NULL);
1376 }
1377
1378 for (i = 0; i < attr->num_values; i ++)
1379 if (strcmp(attr->values[i].string.text, "none") &&
1380 !cupsdFindBanner(attr->values[i].string.text))
1381 {
1382 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-sheets value \"%s\"."),
1383 attr->values[i].string.text);
1384 return (NULL);
1385 }
1386 }
1387
1388 if ((attr = ippFindAttribute(con->request, "number-up",
1389 IPP_TAG_INTEGER)) != NULL)
1390 {
1391 if (attr->values[0].integer != 1 &&
1392 attr->values[0].integer != 2 &&
1393 attr->values[0].integer != 4 &&
1394 attr->values[0].integer != 6 &&
1395 attr->values[0].integer != 9 &&
1396 attr->values[0].integer != 16)
1397 {
1398 send_ipp_status(con, IPP_ATTRIBUTES, _("Bad number-up value %d."),
1399 attr->values[0].integer);
1400 ippAddInteger(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_INTEGER,
1401 "number-up", attr->values[0].integer);
1402 return (NULL);
1403 }
1404 }
1405
1406 if ((attr = ippFindAttribute(con->request, "page-ranges",
1407 IPP_TAG_RANGE)) != NULL)
1408 {
1409 for (i = 0, lowerpagerange = 1; i < attr->num_values; i ++)
1410 {
1411 if (attr->values[i].range.lower < lowerpagerange ||
1412 attr->values[i].range.lower > attr->values[i].range.upper)
1413 {
1414 send_ipp_status(con, IPP_BAD_REQUEST,
1415 _("Bad page-ranges values %d-%d."),
1416 attr->values[i].range.lower,
1417 attr->values[i].range.upper);
1418 return (NULL);
1419 }
1420
1421 lowerpagerange = attr->values[i].range.upper + 1;
1422 }
1423 }
1424
1425 /*
1426 * Do media selection as needed...
1427 */
1428
1429 if (!ippFindAttribute(con->request, "PageRegion", IPP_TAG_ZERO) &&
1430 !ippFindAttribute(con->request, "PageSize", IPP_TAG_ZERO) &&
1431 _ppdCacheGetPageSize(printer->pc, con->request, NULL, &exact))
1432 {
1433 if (!exact &&
1434 (media_col = ippFindAttribute(con->request, "media-col",
1435 IPP_TAG_BEGIN_COLLECTION)) != NULL)
1436 {
1437 send_ipp_status(con, IPP_OK_SUBST, _("Unsupported margins."));
1438
1439 unsup_col = ippNew();
1440 if ((media_margin = ippFindAttribute(media_col->values[0].collection,
1441 "media-bottom-margin",
1442 IPP_TAG_INTEGER)) != NULL)
1443 ippAddInteger(unsup_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
1444 "media-bottom-margin", media_margin->values[0].integer);
1445
1446 if ((media_margin = ippFindAttribute(media_col->values[0].collection,
1447 "media-left-margin",
1448 IPP_TAG_INTEGER)) != NULL)
1449 ippAddInteger(unsup_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
1450 "media-left-margin", media_margin->values[0].integer);
1451
1452 if ((media_margin = ippFindAttribute(media_col->values[0].collection,
1453 "media-right-margin",
1454 IPP_TAG_INTEGER)) != NULL)
1455 ippAddInteger(unsup_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
1456 "media-right-margin", media_margin->values[0].integer);
1457
1458 if ((media_margin = ippFindAttribute(media_col->values[0].collection,
1459 "media-top-margin",
1460 IPP_TAG_INTEGER)) != NULL)
1461 ippAddInteger(unsup_col, IPP_TAG_ZERO, IPP_TAG_INTEGER,
1462 "media-top-margin", media_margin->values[0].integer);
1463
1464 ippAddCollection(con->response, IPP_TAG_UNSUPPORTED_GROUP, "media-col",
1465 unsup_col);
1466 ippDelete(unsup_col);
1467 }
1468 }
1469
1470 /*
1471 * Make sure we aren't over our limit...
1472 */
1473
1474 if (MaxJobs && cupsArrayCount(Jobs) >= MaxJobs)
1475 cupsdCleanJobs();
1476
1477 if (MaxJobs && cupsArrayCount(Jobs) >= MaxJobs)
1478 {
1479 send_ipp_status(con, IPP_NOT_POSSIBLE, _("Too many active jobs."));
1480 return (NULL);
1481 }
1482
1483 if ((i = check_quotas(con, printer)) < 0)
1484 {
1485 send_ipp_status(con, IPP_NOT_POSSIBLE, _("Quota limit reached."));
1486 return (NULL);
1487 }
1488 else if (i == 0)
1489 {
1490 send_ipp_status(con, IPP_NOT_AUTHORIZED, _("Not allowed to print."));
1491 return (NULL);
1492 }
1493
1494 /*
1495 * Create the job and set things up...
1496 */
1497
1498 if ((attr = ippFindAttribute(con->request, "job-priority",
1499 IPP_TAG_INTEGER)) != NULL)
1500 priority = attr->values[0].integer;
1501 else
1502 {
1503 if ((val = cupsGetOption("job-priority", printer->num_options,
1504 printer->options)) != NULL)
1505 priority = atoi(val);
1506 else
1507 priority = 50;
1508
1509 ippAddInteger(con->request, IPP_TAG_JOB, IPP_TAG_INTEGER, "job-priority",
1510 priority);
1511 }
1512
1513 if ((attr = ippFindAttribute(con->request, "job-name", IPP_TAG_ZERO)) == NULL)
1514 ippAddString(con->request, IPP_TAG_JOB, IPP_TAG_NAME, "job-name", NULL,
1515 "Untitled");
1516 else if ((attr->value_tag != IPP_TAG_NAME &&
1517 attr->value_tag != IPP_TAG_NAMELANG) ||
1518 attr->num_values != 1)
1519 {
1520 send_ipp_status(con, IPP_ATTRIBUTES,
1521 _("Bad job-name value: Wrong type or count."));
1522 if ((attr = ippCopyAttribute(con->response, attr, 0)) != NULL)
1523 attr->group_tag = IPP_TAG_UNSUPPORTED_GROUP;
1524 return (NULL);
1525 }
1526 else if (!ippValidateAttribute(attr))
1527 {
1528 send_ipp_status(con, IPP_ATTRIBUTES, _("Bad job-name value: %s"),
1529 cupsLastErrorString());
1530 if ((attr = ippCopyAttribute(con->response, attr, 0)) != NULL)
1531 attr->group_tag = IPP_TAG_UNSUPPORTED_GROUP;
1532 return (NULL);
1533 }
1534
1535 if ((job = cupsdAddJob(priority, printer->name)) == NULL)
1536 {
1537 send_ipp_status(con, IPP_INTERNAL_ERROR,
1538 _("Unable to add job for destination \"%s\"."),
1539 printer->name);
1540 return (NULL);
1541 }
1542
1543 job->dtype = printer->type & (CUPS_PRINTER_CLASS | CUPS_PRINTER_REMOTE);
1544 job->attrs = con->request;
1545 job->dirty = 1;
1546 con->request = ippNewRequest(job->attrs->request.op.operation_id);
1547
1548 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
1549
1550 add_job_uuid(job);
1551 apply_printer_defaults(printer, job);
1552
1553 attr = ippFindAttribute(job->attrs, "requesting-user-name", IPP_TAG_NAME);
1554
1555 if (con->username[0])
1556 {
1557 cupsdSetString(&job->username, con->username);
1558
1559 if (attr)
1560 cupsdSetString(&attr->values[0].string.text, con->username);
1561 }
1562 else if (attr)
1563 {
1564 cupsdLogMessage(CUPSD_LOG_DEBUG,
1565 "add_job: requesting-user-name=\"%s\"",
1566 attr->values[0].string.text);
1567
1568 cupsdSetString(&job->username, attr->values[0].string.text);
1569 }
1570 else
1571 cupsdSetString(&job->username, "anonymous");
1572
1573 if (!attr)
1574 ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_NAME,
1575 "job-originating-user-name", NULL, job->username);
1576 else
1577 {
1578 attr->group_tag = IPP_TAG_JOB;
1579 _cupsStrFree(attr->name);
1580 attr->name = _cupsStrAlloc("job-originating-user-name");
1581 }
1582
1583 if (con->username[0] || auth_info)
1584 {
1585 save_auth_info(con, job, auth_info);
1586
1587 /*
1588 * Remove the auth-info attribute from the attribute data...
1589 */
1590
1591 if (auth_info)
1592 ippDeleteAttribute(job->attrs, auth_info);
1593 }
1594
1595 if ((attr = ippFindAttribute(job->attrs, "job-originating-host-name",
1596 IPP_TAG_ZERO)) != NULL)
1597 {
1598 /*
1599 * Request contains a job-originating-host-name attribute; validate it...
1600 */
1601
1602 if (attr->value_tag != IPP_TAG_NAME ||
1603 attr->num_values != 1 ||
1604 strcmp(con->http->hostname, "localhost"))
1605 {
1606 /*
1607 * Can't override the value if we aren't connected via localhost.
1608 * Also, we can only have 1 value and it must be a name value.
1609 */
1610
1611 switch (attr->value_tag)
1612 {
1613 case IPP_TAG_STRING :
1614 case IPP_TAG_TEXTLANG :
1615 case IPP_TAG_NAMELANG :
1616 case IPP_TAG_TEXT :
1617 case IPP_TAG_NAME :
1618 case IPP_TAG_KEYWORD :
1619 case IPP_TAG_URI :
1620 case IPP_TAG_URISCHEME :
1621 case IPP_TAG_CHARSET :
1622 case IPP_TAG_LANGUAGE :
1623 case IPP_TAG_MIMETYPE :
1624 /*
1625 * Free old strings...
1626 */
1627
1628 for (i = 0; i < attr->num_values; i ++)
1629 {
1630 _cupsStrFree(attr->values[i].string.text);
1631 attr->values[i].string.text = NULL;
1632 if (attr->values[i].string.language)
1633 {
1634 _cupsStrFree(attr->values[i].string.language);
1635 attr->values[i].string.language = NULL;
1636 }
1637 }
1638
1639 default :
1640 break;
1641 }
1642
1643 /*
1644 * Use the default connection hostname instead...
1645 */
1646
1647 attr->value_tag = IPP_TAG_NAME;
1648 attr->num_values = 1;
1649 attr->values[0].string.text = _cupsStrAlloc(con->http->hostname);
1650 }
1651
1652 attr->group_tag = IPP_TAG_JOB;
1653 }
1654 else
1655 {
1656 /*
1657 * No job-originating-host-name attribute, so use the hostname from
1658 * the connection...
1659 */
1660
1661 ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_NAME,
1662 "job-originating-host-name", NULL, con->http->hostname);
1663 }
1664
1665 ippAddInteger(job->attrs, IPP_TAG_JOB, IPP_TAG_INTEGER, "time-at-creation",
1666 time(NULL));
1667 attr = ippAddInteger(job->attrs, IPP_TAG_JOB, IPP_TAG_INTEGER,
1668 "time-at-processing", 0);
1669 attr->value_tag = IPP_TAG_NOVALUE;
1670 attr = ippAddInteger(job->attrs, IPP_TAG_JOB, IPP_TAG_INTEGER,
1671 "time-at-completed", 0);
1672 attr->value_tag = IPP_TAG_NOVALUE;
1673
1674 /*
1675 * Add remaining job attributes...
1676 */
1677
1678 ippAddInteger(job->attrs, IPP_TAG_JOB, IPP_TAG_INTEGER, "job-id", job->id);
1679 job->state = ippAddInteger(job->attrs, IPP_TAG_JOB, IPP_TAG_ENUM,
1680 "job-state", IPP_JOB_STOPPED);
1681 job->state_value = (ipp_jstate_t)job->state->values[0].integer;
1682 job->reasons = ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_KEYWORD,
1683 "job-state-reasons", NULL, "job-incoming");
1684 job->sheets = ippAddInteger(job->attrs, IPP_TAG_JOB, IPP_TAG_INTEGER,
1685 "job-media-sheets-completed", 0);
1686 ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_URI, "job-printer-uri", NULL,
1687 printer->uri);
1688
1689 if ((attr = ippFindAttribute(job->attrs, "job-k-octets",
1690 IPP_TAG_INTEGER)) != NULL)
1691 attr->values[0].integer = 0;
1692 else
1693 ippAddInteger(job->attrs, IPP_TAG_JOB, IPP_TAG_INTEGER, "job-k-octets", 0);
1694
1695 if ((attr = ippFindAttribute(job->attrs, "job-hold-until",
1696 IPP_TAG_KEYWORD)) == NULL)
1697 attr = ippFindAttribute(job->attrs, "job-hold-until", IPP_TAG_NAME);
1698 if (!attr)
1699 {
1700 if ((val = cupsGetOption("job-hold-until", printer->num_options,
1701 printer->options)) == NULL)
1702 val = "no-hold";
1703
1704 attr = ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_KEYWORD,
1705 "job-hold-until", NULL, val);
1706 }
1707 if (attr && strcmp(attr->values[0].string.text, "no-hold"))
1708 {
1709 /*
1710 * Hold job until specified time...
1711 */
1712
1713 cupsdSetJobHoldUntil(job, attr->values[0].string.text, 0);
1714
1715 job->state->values[0].integer = IPP_JOB_HELD;
1716 job->state_value = IPP_JOB_HELD;
1717
1718 ippSetString(job->attrs, &job->reasons, 0, "job-hold-until-specified");
1719 }
1720 else if (job->attrs->request.op.operation_id == IPP_CREATE_JOB)
1721 {
1722 job->hold_until = time(NULL) + MultipleOperationTimeout;
1723 job->state->values[0].integer = IPP_JOB_HELD;
1724 job->state_value = IPP_JOB_HELD;
1725 }
1726 else
1727 {
1728 job->state->values[0].integer = IPP_JOB_PENDING;
1729 job->state_value = IPP_JOB_PENDING;
1730
1731 ippSetString(job->attrs, &job->reasons, 0, "none");
1732 }
1733
1734 if (!(printer->type & CUPS_PRINTER_REMOTE) || Classification)
1735 {
1736 /*
1737 * Add job sheets options...
1738 */
1739
1740 if ((attr = ippFindAttribute(job->attrs, "job-sheets",
1741 IPP_TAG_ZERO)) == NULL)
1742 {
1743 cupsdLogMessage(CUPSD_LOG_DEBUG,
1744 "Adding default job-sheets values \"%s,%s\"...",
1745 printer->job_sheets[0], printer->job_sheets[1]);
1746
1747 attr = ippAddStrings(job->attrs, IPP_TAG_JOB, IPP_TAG_NAME, "job-sheets",
1748 2, NULL, NULL);
1749 attr->values[0].string.text = _cupsStrRetain(printer->job_sheets[0]);
1750 attr->values[1].string.text = _cupsStrRetain(printer->job_sheets[1]);
1751 }
1752
1753 job->job_sheets = attr;
1754
1755 /*
1756 * Enforce classification level if set...
1757 */
1758
1759 if (Classification)
1760 {
1761 cupsdLogMessage(CUPSD_LOG_INFO,
1762 "Classification=\"%s\", ClassifyOverride=%d",
1763 Classification ? Classification : "(null)",
1764 ClassifyOverride);
1765
1766 if (ClassifyOverride)
1767 {
1768 if (!strcmp(attr->values[0].string.text, "none") &&
1769 (attr->num_values == 1 ||
1770 !strcmp(attr->values[1].string.text, "none")))
1771 {
1772 /*
1773 * Force the leading banner to have the classification on it...
1774 */
1775
1776 cupsdSetString(&attr->values[0].string.text, Classification);
1777
1778 cupsdLogJob(job, CUPSD_LOG_NOTICE, "CLASSIFICATION FORCED "
1779 "job-sheets=\"%s,none\", "
1780 "job-originating-user-name=\"%s\"",
1781 Classification, job->username);
1782 }
1783 else if (attr->num_values == 2 &&
1784 strcmp(attr->values[0].string.text,
1785 attr->values[1].string.text) &&
1786 strcmp(attr->values[0].string.text, "none") &&
1787 strcmp(attr->values[1].string.text, "none"))
1788 {
1789 /*
1790 * Can't put two different security markings on the same document!
1791 */
1792
1793 cupsdSetString(&attr->values[1].string.text, attr->values[0].string.text);
1794
1795 cupsdLogJob(job, CUPSD_LOG_NOTICE, "CLASSIFICATION FORCED "
1796 "job-sheets=\"%s,%s\", "
1797 "job-originating-user-name=\"%s\"",
1798 attr->values[0].string.text,
1799 attr->values[1].string.text, job->username);
1800 }
1801 else if (strcmp(attr->values[0].string.text, Classification) &&
1802 strcmp(attr->values[0].string.text, "none") &&
1803 (attr->num_values == 1 ||
1804 (strcmp(attr->values[1].string.text, Classification) &&
1805 strcmp(attr->values[1].string.text, "none"))))
1806 {
1807 if (attr->num_values == 1)
1808 cupsdLogJob(job, CUPSD_LOG_NOTICE,
1809 "CLASSIFICATION OVERRIDDEN "
1810 "job-sheets=\"%s\", "
1811 "job-originating-user-name=\"%s\"",
1812 attr->values[0].string.text, job->username);
1813 else
1814 cupsdLogJob(job, CUPSD_LOG_NOTICE,
1815 "CLASSIFICATION OVERRIDDEN "
1816 "job-sheets=\"%s,%s\",fffff "
1817 "job-originating-user-name=\"%s\"",
1818 attr->values[0].string.text,
1819 attr->values[1].string.text, job->username);
1820 }
1821 }
1822 else if (strcmp(attr->values[0].string.text, Classification) &&
1823 (attr->num_values == 1 ||
1824 strcmp(attr->values[1].string.text, Classification)))
1825 {
1826 /*
1827 * Force the banner to have the classification on it...
1828 */
1829
1830 if (attr->num_values > 1 &&
1831 !strcmp(attr->values[0].string.text, attr->values[1].string.text))
1832 {
1833 cupsdSetString(&(attr->values[0].string.text), Classification);
1834 cupsdSetString(&(attr->values[1].string.text), Classification);
1835 }
1836 else
1837 {
1838 if (attr->num_values == 1 ||
1839 strcmp(attr->values[0].string.text, "none"))
1840 cupsdSetString(&(attr->values[0].string.text), Classification);
1841
1842 if (attr->num_values > 1 &&
1843 strcmp(attr->values[1].string.text, "none"))
1844 cupsdSetString(&(attr->values[1].string.text), Classification);
1845 }
1846
1847 if (attr->num_values > 1)
1848 cupsdLogJob(job, CUPSD_LOG_NOTICE,
1849 "CLASSIFICATION FORCED "
1850 "job-sheets=\"%s,%s\", "
1851 "job-originating-user-name=\"%s\"",
1852 attr->values[0].string.text,
1853 attr->values[1].string.text, job->username);
1854 else
1855 cupsdLogJob(job, CUPSD_LOG_NOTICE,
1856 "CLASSIFICATION FORCED "
1857 "job-sheets=\"%s\", "
1858 "job-originating-user-name=\"%s\"",
1859 Classification, job->username);
1860 }
1861 }
1862
1863 /*
1864 * See if we need to add the starting sheet...
1865 */
1866
1867 if (!(printer->type & CUPS_PRINTER_REMOTE))
1868 {
1869 cupsdLogJob(job, CUPSD_LOG_INFO, "Adding start banner page \"%s\".",
1870 attr->values[0].string.text);
1871
1872 if ((kbytes = copy_banner(con, job, attr->values[0].string.text)) < 0)
1873 {
1874 cupsdSetJobState(job, IPP_JOB_ABORTED, CUPSD_JOB_PURGE,
1875 "Aborting job because the start banner could not be "
1876 "copied.");
1877 return (NULL);
1878 }
1879
1880 cupsdUpdateQuota(printer, job->username, 0, kbytes);
1881 }
1882 }
1883 else if ((attr = ippFindAttribute(job->attrs, "job-sheets",
1884 IPP_TAG_ZERO)) != NULL)
1885 job->job_sheets = attr;
1886
1887 /*
1888 * Fill in the response info...
1889 */
1890
1891 httpAssembleURIf(HTTP_URI_CODING_ALL, job_uri, sizeof(job_uri), "ipp", NULL,
1892 con->clientname, con->clientport, "/jobs/%d", job->id);
1893 ippAddString(con->response, IPP_TAG_JOB, IPP_TAG_URI, "job-uri", NULL,
1894 job_uri);
1895
1896 ippAddInteger(con->response, IPP_TAG_JOB, IPP_TAG_INTEGER, "job-id", job->id);
1897
1898 ippAddInteger(con->response, IPP_TAG_JOB, IPP_TAG_ENUM, "job-state",
1899 job->state_value);
1900 ippAddString(con->response, IPP_TAG_JOB, IPP_TAG_KEYWORD, "job-state-reasons",
1901 NULL, job->reasons->values[0].string.text);
1902
1903 con->response->request.status.status_code = IPP_OK;
1904
1905 /*
1906 * Add any job subscriptions...
1907 */
1908
1909 add_job_subscriptions(con, job);
1910
1911 /*
1912 * Set all but the first two attributes to the job attributes group...
1913 */
1914
1915 for (attr = job->attrs->attrs->next->next; attr; attr = attr->next)
1916 attr->group_tag = IPP_TAG_JOB;
1917
1918 /*
1919 * Fire the "job created" event...
1920 */
1921
1922 cupsdAddEvent(CUPSD_EVENT_JOB_CREATED, printer, job, "Job created.");
1923
1924 /*
1925 * Return the new job...
1926 */
1927
1928 return (job);
1929 }
1930
1931
1932 /*
1933 * 'add_job_subscriptions()' - Add any subscriptions for a job.
1934 */
1935
1936 static void
1937 add_job_subscriptions(
1938 cupsd_client_t *con, /* I - Client connection */
1939 cupsd_job_t *job) /* I - Newly created job */
1940 {
1941 int i; /* Looping var */
1942 ipp_attribute_t *prev, /* Previous attribute */
1943 *next, /* Next attribute */
1944 *attr; /* Current attribute */
1945 cupsd_subscription_t *sub; /* Subscription object */
1946 const char *recipient, /* notify-recipient-uri */
1947 *pullmethod; /* notify-pull-method */
1948 ipp_attribute_t *user_data; /* notify-user-data */
1949 int interval; /* notify-time-interval */
1950 unsigned mask; /* notify-events */
1951
1952
1953 /*
1954 * Find the first subscription group attribute; return if we have
1955 * none...
1956 */
1957
1958 for (attr = job->attrs->attrs; attr; attr = attr->next)
1959 if (attr->group_tag == IPP_TAG_SUBSCRIPTION)
1960 break;
1961
1962 if (!attr)
1963 return;
1964
1965 /*
1966 * Process the subscription attributes in the request...
1967 */
1968
1969 while (attr)
1970 {
1971 recipient = NULL;
1972 pullmethod = NULL;
1973 user_data = NULL;
1974 interval = 0;
1975 mask = CUPSD_EVENT_NONE;
1976
1977 while (attr && attr->group_tag != IPP_TAG_ZERO)
1978 {
1979 if (!strcmp(attr->name, "notify-recipient-uri") &&
1980 attr->value_tag == IPP_TAG_URI)
1981 {
1982 /*
1983 * Validate the recipient scheme against the ServerBin/notifier
1984 * directory...
1985 */
1986
1987 char notifier[1024], /* Notifier filename */
1988 scheme[HTTP_MAX_URI], /* Scheme portion of URI */
1989 userpass[HTTP_MAX_URI], /* Username portion of URI */
1990 host[HTTP_MAX_URI], /* Host portion of URI */
1991 resource[HTTP_MAX_URI]; /* Resource portion of URI */
1992 int port; /* Port portion of URI */
1993
1994
1995 recipient = attr->values[0].string.text;
1996
1997 if (httpSeparateURI(HTTP_URI_CODING_ALL, recipient,
1998 scheme, sizeof(scheme), userpass, sizeof(userpass),
1999 host, sizeof(host), &port,
2000 resource, sizeof(resource)) < HTTP_URI_OK)
2001 {
2002 send_ipp_status(con, IPP_NOT_POSSIBLE,
2003 _("Bad notify-recipient-uri \"%s\"."), recipient);
2004 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_ENUM,
2005 "notify-status-code", IPP_URI_SCHEME);
2006 return;
2007 }
2008
2009 snprintf(notifier, sizeof(notifier), "%s/notifier/%s", ServerBin,
2010 scheme);
2011 if (access(notifier, X_OK))
2012 {
2013 send_ipp_status(con, IPP_NOT_POSSIBLE,
2014 _("notify-recipient-uri URI \"%s\" uses unknown "
2015 "scheme."), recipient);
2016 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_ENUM,
2017 "notify-status-code", IPP_URI_SCHEME);
2018 return;
2019 }
2020
2021 if (!strcmp(scheme, "rss") && !check_rss_recipient(recipient))
2022 {
2023 send_ipp_status(con, IPP_NOT_POSSIBLE,
2024 _("notify-recipient-uri URI \"%s\" is already used."),
2025 recipient);
2026 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_ENUM,
2027 "notify-status-code", IPP_ATTRIBUTES);
2028 return;
2029 }
2030 }
2031 else if (!strcmp(attr->name, "notify-pull-method") &&
2032 attr->value_tag == IPP_TAG_KEYWORD)
2033 {
2034 pullmethod = attr->values[0].string.text;
2035
2036 if (strcmp(pullmethod, "ippget"))
2037 {
2038 send_ipp_status(con, IPP_NOT_POSSIBLE,
2039 _("Bad notify-pull-method \"%s\"."), pullmethod);
2040 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_ENUM,
2041 "notify-status-code", IPP_ATTRIBUTES);
2042 return;
2043 }
2044 }
2045 else if (!strcmp(attr->name, "notify-charset") &&
2046 attr->value_tag == IPP_TAG_CHARSET &&
2047 strcmp(attr->values[0].string.text, "us-ascii") &&
2048 strcmp(attr->values[0].string.text, "utf-8"))
2049 {
2050 send_ipp_status(con, IPP_CHARSET,
2051 _("Character set \"%s\" not supported."),
2052 attr->values[0].string.text);
2053 return;
2054 }
2055 else if (!strcmp(attr->name, "notify-natural-language") &&
2056 (attr->value_tag != IPP_TAG_LANGUAGE ||
2057 strcmp(attr->values[0].string.text, DefaultLanguage)))
2058 {
2059 send_ipp_status(con, IPP_CHARSET,
2060 _("Language \"%s\" not supported."),
2061 attr->values[0].string.text);
2062 return;
2063 }
2064 else if (!strcmp(attr->name, "notify-user-data") &&
2065 attr->value_tag == IPP_TAG_STRING)
2066 {
2067 if (attr->num_values > 1 || attr->values[0].unknown.length > 63)
2068 {
2069 send_ipp_status(con, IPP_REQUEST_VALUE,
2070 _("The notify-user-data value is too large "
2071 "(%d > 63 octets)."),
2072 attr->values[0].unknown.length);
2073 return;
2074 }
2075
2076 user_data = attr;
2077 }
2078 else if (!strcmp(attr->name, "notify-events") &&
2079 attr->value_tag == IPP_TAG_KEYWORD)
2080 {
2081 for (i = 0; i < attr->num_values; i ++)
2082 mask |= cupsdEventValue(attr->values[i].string.text);
2083 }
2084 else if (!strcmp(attr->name, "notify-lease-duration"))
2085 {
2086 send_ipp_status(con, IPP_BAD_REQUEST,
2087 _("The notify-lease-duration attribute cannot be "
2088 "used with job subscriptions."));
2089 return;
2090 }
2091 else if (!strcmp(attr->name, "notify-time-interval") &&
2092 attr->value_tag == IPP_TAG_INTEGER)
2093 interval = attr->values[0].integer;
2094
2095 attr = attr->next;
2096 }
2097
2098 if (!recipient && !pullmethod)
2099 break;
2100
2101 if (mask == CUPSD_EVENT_NONE)
2102 mask = CUPSD_EVENT_JOB_COMPLETED;
2103
2104 if ((sub = cupsdAddSubscription(mask, cupsdFindDest(job->dest), job,
2105 recipient, 0)) != NULL)
2106 {
2107 sub->interval = interval;
2108
2109 cupsdSetString(&sub->owner, job->username);
2110
2111 if (user_data)
2112 {
2113 sub->user_data_len = user_data->values[0].unknown.length;
2114 memcpy(sub->user_data, user_data->values[0].unknown.data,
2115 (size_t)sub->user_data_len);
2116 }
2117
2118 ippAddSeparator(con->response);
2119 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_INTEGER,
2120 "notify-subscription-id", sub->id);
2121
2122 cupsdLogMessage(CUPSD_LOG_DEBUG, "Added subscription %d for job %d",
2123 sub->id, job->id);
2124 }
2125
2126 if (attr)
2127 attr = attr->next;
2128 }
2129
2130 cupsdMarkDirty(CUPSD_DIRTY_SUBSCRIPTIONS);
2131
2132 /*
2133 * Remove all of the subscription attributes from the job request...
2134 *
2135 * TODO: Optimize this since subscription groups have to come at the
2136 * end of the request...
2137 */
2138
2139 for (attr = job->attrs->attrs, prev = NULL; attr; attr = next)
2140 {
2141 next = attr->next;
2142
2143 if (attr->group_tag == IPP_TAG_SUBSCRIPTION ||
2144 attr->group_tag == IPP_TAG_ZERO)
2145 {
2146 /*
2147 * Free and remove this attribute...
2148 */
2149
2150 ippDeleteAttribute(NULL, attr);
2151
2152 if (prev)
2153 prev->next = next;
2154 else
2155 job->attrs->attrs = next;
2156 }
2157 else
2158 prev = attr;
2159 }
2160
2161 job->attrs->last = prev;
2162 job->attrs->current = prev;
2163 }
2164
2165
2166 /*
2167 * 'add_job_uuid()' - Add job-uuid attribute to a job.
2168 *
2169 * See RFC 4122 for the definition of UUIDs and the format.
2170 */
2171
2172 static void
2173 add_job_uuid(cupsd_job_t *job) /* I - Job */
2174 {
2175 char uuid[64]; /* job-uuid string */
2176
2177
2178 /*
2179 * Add a job-uuid attribute if none exists...
2180 */
2181
2182 if (!ippFindAttribute(job->attrs, "job-uuid", IPP_TAG_URI))
2183 ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_URI, "job-uuid", NULL,
2184 httpAssembleUUID(ServerName, RemotePort, job->dest, job->id,
2185 uuid, sizeof(uuid)));
2186 }
2187
2188
2189 /*
2190 * 'add_printer()' - Add a printer to the system.
2191 */
2192
2193 static void
2194 add_printer(cupsd_client_t *con, /* I - Client connection */
2195 ipp_attribute_t *uri) /* I - URI of printer */
2196 {
2197 http_status_t status; /* Policy status */
2198 int i; /* Looping var */
2199 char scheme[HTTP_MAX_URI], /* Method portion of URI */
2200 username[HTTP_MAX_URI], /* Username portion of URI */
2201 host[HTTP_MAX_URI], /* Host portion of URI */
2202 resource[HTTP_MAX_URI]; /* Resource portion of URI */
2203 int port; /* Port portion of URI */
2204 cupsd_printer_t *printer; /* Printer/class */
2205 ipp_attribute_t *attr; /* Printer attribute */
2206 cups_file_t *fp; /* Script/PPD file */
2207 char line[1024]; /* Line from file... */
2208 char srcfile[1024], /* Source Script/PPD file */
2209 dstfile[1024]; /* Destination Script/PPD file */
2210 int modify; /* Non-zero if we are modifying */
2211 int changed_driver, /* Changed the PPD/interface script? */
2212 need_restart_job, /* Need to restart job? */
2213 set_device_uri, /* Did we set the device URI? */
2214 set_port_monitor; /* Did we set the port monitor? */
2215
2216
2217 cupsdLogMessage(CUPSD_LOG_DEBUG2, "add_printer(%p[%d], %s)", con,
2218 con->number, uri->values[0].string.text);
2219
2220 /*
2221 * Do we have a valid URI?
2222 */
2223
2224 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
2225 sizeof(scheme), username, sizeof(username), host,
2226 sizeof(host), &port, resource, sizeof(resource));
2227
2228 if (strncmp(resource, "/printers/", 10) || strlen(resource) == 10)
2229 {
2230 /*
2231 * No, return an error...
2232 */
2233
2234 send_ipp_status(con, IPP_BAD_REQUEST,
2235 _("The printer-uri must be of the form "
2236 "\"ipp://HOSTNAME/printers/PRINTERNAME\"."));
2237 return;
2238 }
2239
2240 /*
2241 * Do we have a valid printer name?
2242 */
2243
2244 if (!validate_name(resource + 10))
2245 {
2246 /*
2247 * No, return an error...
2248 */
2249
2250 send_ipp_status(con, IPP_BAD_REQUEST,
2251 _("The printer-uri \"%s\" contains invalid characters."),
2252 uri->values[0].string.text);
2253 return;
2254 }
2255
2256 /*
2257 * See if the printer already exists; if not, create a new printer...
2258 */
2259
2260 if ((printer = cupsdFindPrinter(resource + 10)) == NULL)
2261 {
2262 /*
2263 * Printer doesn't exist; see if we have a class of the same name...
2264 */
2265
2266 if ((printer = cupsdFindClass(resource + 10)) != NULL)
2267 {
2268 /*
2269 * Yes, return an error...
2270 */
2271
2272 send_ipp_status(con, IPP_NOT_POSSIBLE,
2273 _("A class named \"%s\" already exists."),
2274 resource + 10);
2275 return;
2276 }
2277
2278 /*
2279 * No, check the default policy then add the printer...
2280 */
2281
2282 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
2283 {
2284 send_http_error(con, status, NULL);
2285 return;
2286 }
2287
2288 printer = cupsdAddPrinter(resource + 10);
2289 modify = 0;
2290 }
2291 else if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con,
2292 NULL)) != HTTP_OK)
2293 {
2294 send_http_error(con, status, printer);
2295 return;
2296 }
2297 else
2298 modify = 1;
2299
2300 /*
2301 * Look for attributes and copy them over as needed...
2302 */
2303
2304 changed_driver = 0;
2305 need_restart_job = 0;
2306
2307 if ((attr = ippFindAttribute(con->request, "printer-location",
2308 IPP_TAG_TEXT)) != NULL)
2309 cupsdSetString(&printer->location, attr->values[0].string.text);
2310
2311 if ((attr = ippFindAttribute(con->request, "printer-info",
2312 IPP_TAG_TEXT)) != NULL)
2313 cupsdSetString(&printer->info, attr->values[0].string.text);
2314
2315 set_device_uri = 0;
2316
2317 if ((attr = ippFindAttribute(con->request, "device-uri",
2318 IPP_TAG_URI)) != NULL)
2319 {
2320 /*
2321 * Do we have a valid device URI?
2322 */
2323
2324 http_uri_status_t uri_status; /* URI separation status */
2325 char old_device_uri[1024];
2326 /* Old device URI */
2327 static const char * const uri_status_strings[] =
2328 {
2329 "URI too large.",
2330 "Bad arguments to function.",
2331 "Bad resource path.",
2332 "Bad port number.",
2333 "Bad hostname/address.",
2334 "Bad username/password.",
2335 "Bad URI scheme.",
2336 "Bad URI.",
2337 "OK",
2338 "Missing URI scheme.",
2339 "Unknown URI scheme",
2340 "Missing resource path."
2341 };
2342
2343
2344 need_restart_job = 1;
2345
2346 uri_status = httpSeparateURI(HTTP_URI_CODING_ALL,
2347 attr->values[0].string.text,
2348 scheme, sizeof(scheme),
2349 username, sizeof(username),
2350 host, sizeof(host), &port,
2351 resource, sizeof(resource));
2352
2353 cupsdLogMessage(CUPSD_LOG_DEBUG,
2354 "%s device-uri: %s", printer->name,
2355 uri_status_strings[uri_status - HTTP_URI_STATUS_OVERFLOW]);
2356
2357 if (uri_status < HTTP_URI_OK)
2358 {
2359 send_ipp_status(con, IPP_NOT_POSSIBLE, _("Bad device-uri \"%s\"."),
2360 attr->values[0].string.text);
2361 return;
2362 }
2363
2364 if (!strcmp(scheme, "file"))
2365 {
2366 /*
2367 * See if the administrator has enabled file devices...
2368 */
2369
2370 if (!FileDevice && strcmp(resource, "/dev/null"))
2371 {
2372 /*
2373 * File devices are disabled and the URL is not file:/dev/null...
2374 */
2375
2376 send_ipp_status(con, IPP_NOT_POSSIBLE,
2377 _("File device URIs have been disabled. "
2378 "To enable, see the FileDevice directive in "
2379 "\"%s/cups-files.conf\"."),
2380 ServerRoot);
2381 return;
2382 }
2383 }
2384 else
2385 {
2386 /*
2387 * See if the backend exists and is executable...
2388 */
2389
2390 snprintf(srcfile, sizeof(srcfile), "%s/backend/%s", ServerBin, scheme);
2391 if (access(srcfile, X_OK))
2392 {
2393 /*
2394 * Could not find device in list!
2395 */
2396
2397 send_ipp_status(con, IPP_NOT_POSSIBLE,
2398 _("Bad device-uri scheme \"%s\"."), scheme);
2399 return;
2400 }
2401 }
2402
2403 if (printer->sanitized_device_uri)
2404 strlcpy(old_device_uri, printer->sanitized_device_uri,
2405 sizeof(old_device_uri));
2406 else
2407 old_device_uri[0] = '\0';
2408
2409 cupsdSetDeviceURI(printer, attr->values[0].string.text);
2410
2411 cupsdLogMessage(CUPSD_LOG_INFO,
2412 "Setting %s device-uri to \"%s\" (was \"%s\".)",
2413 printer->name, printer->sanitized_device_uri,
2414 old_device_uri);
2415
2416 set_device_uri = 1;
2417 }
2418
2419 set_port_monitor = 0;
2420
2421 if ((attr = ippFindAttribute(con->request, "port-monitor",
2422 IPP_TAG_NAME)) != NULL)
2423 {
2424 ipp_attribute_t *supported; /* port-monitor-supported attribute */
2425
2426
2427 need_restart_job = 1;
2428
2429 supported = ippFindAttribute(printer->ppd_attrs, "port-monitor-supported",
2430 IPP_TAG_NAME);
2431 if (supported)
2432 {
2433 for (i = 0; i < supported->num_values; i ++)
2434 if (!strcmp(supported->values[i].string.text,
2435 attr->values[0].string.text))
2436 break;
2437 }
2438
2439 if (!supported || i >= supported->num_values)
2440 {
2441 send_ipp_status(con, IPP_NOT_POSSIBLE, _("Bad port-monitor \"%s\"."),
2442 attr->values[0].string.text);
2443 return;
2444 }
2445
2446 cupsdLogMessage(CUPSD_LOG_INFO,
2447 "Setting %s port-monitor to \"%s\" (was \"%s\".)",
2448 printer->name, attr->values[0].string.text,
2449 printer->port_monitor ? printer->port_monitor : "none");
2450
2451 if (strcmp(attr->values[0].string.text, "none"))
2452 cupsdSetString(&printer->port_monitor, attr->values[0].string.text);
2453 else
2454 cupsdClearString(&printer->port_monitor);
2455
2456 set_port_monitor = 1;
2457 }
2458
2459 if ((attr = ippFindAttribute(con->request, "printer-is-accepting-jobs",
2460 IPP_TAG_BOOLEAN)) != NULL &&
2461 attr->values[0].boolean != printer->accepting)
2462 {
2463 cupsdLogMessage(CUPSD_LOG_INFO,
2464 "Setting %s printer-is-accepting-jobs to %d (was %d.)",
2465 printer->name, attr->values[0].boolean, printer->accepting);
2466
2467 printer->accepting = attr->values[0].boolean;
2468
2469 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, printer, NULL,
2470 "%s accepting jobs.",
2471 printer->accepting ? "Now" : "No longer");
2472 }
2473
2474 if ((attr = ippFindAttribute(con->request, "printer-is-shared",
2475 IPP_TAG_BOOLEAN)) != NULL)
2476 {
2477 if (attr->values[0].boolean &&
2478 printer->num_auth_info_required == 1 &&
2479 !strcmp(printer->auth_info_required[0], "negotiate"))
2480 {
2481 send_ipp_status(con, IPP_BAD_REQUEST,
2482 _("Cannot share a remote Kerberized printer."));
2483 return;
2484 }
2485
2486 if (printer->shared && !attr->values[0].boolean)
2487 cupsdDeregisterPrinter(printer, 1);
2488
2489 cupsdLogMessage(CUPSD_LOG_INFO,
2490 "Setting %s printer-is-shared to %d (was %d.)",
2491 printer->name, attr->values[0].boolean, printer->shared);
2492
2493 printer->shared = attr->values[0].boolean;
2494 }
2495
2496 if ((attr = ippFindAttribute(con->request, "printer-state",
2497 IPP_TAG_ENUM)) != NULL)
2498 {
2499 if (attr->values[0].integer != IPP_PRINTER_IDLE &&
2500 attr->values[0].integer != IPP_PRINTER_STOPPED)
2501 {
2502 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad printer-state value %d."),
2503 attr->values[0].integer);
2504 return;
2505 }
2506
2507 cupsdLogMessage(CUPSD_LOG_INFO, "Setting %s printer-state to %d (was %d.)",
2508 printer->name, attr->values[0].integer, printer->state);
2509
2510 if (attr->values[0].integer == IPP_PRINTER_STOPPED)
2511 cupsdStopPrinter(printer, 0);
2512 else
2513 {
2514 need_restart_job = 1;
2515 cupsdSetPrinterState(printer, (ipp_pstate_t)(attr->values[0].integer), 0);
2516 }
2517 }
2518
2519 if ((attr = ippFindAttribute(con->request, "printer-state-message",
2520 IPP_TAG_TEXT)) != NULL)
2521 {
2522 strlcpy(printer->state_message, attr->values[0].string.text,
2523 sizeof(printer->state_message));
2524
2525 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, printer, NULL, "%s",
2526 printer->state_message);
2527 }
2528
2529 if ((attr = ippFindAttribute(con->request, "printer-state-reasons",
2530 IPP_TAG_KEYWORD)) != NULL)
2531 {
2532 if (attr->num_values >
2533 (int)(sizeof(printer->reasons) / sizeof(printer->reasons[0])))
2534 {
2535 send_ipp_status(con, IPP_NOT_POSSIBLE,
2536 _("Too many printer-state-reasons values (%d > %d)."),
2537 attr->num_values,
2538 (int)(sizeof(printer->reasons) /
2539 sizeof(printer->reasons[0])));
2540 return;
2541 }
2542
2543 for (i = 0; i < printer->num_reasons; i ++)
2544 _cupsStrFree(printer->reasons[i]);
2545
2546 printer->num_reasons = 0;
2547 for (i = 0; i < attr->num_values; i ++)
2548 {
2549 if (!strcmp(attr->values[i].string.text, "none"))
2550 continue;
2551
2552 printer->reasons[printer->num_reasons] =
2553 _cupsStrRetain(attr->values[i].string.text);
2554 printer->num_reasons ++;
2555
2556 if (!strcmp(attr->values[i].string.text, "paused") &&
2557 printer->state != IPP_PRINTER_STOPPED)
2558 {
2559 cupsdLogMessage(CUPSD_LOG_INFO,
2560 "Setting %s printer-state to %d (was %d.)",
2561 printer->name, IPP_PRINTER_STOPPED, printer->state);
2562 cupsdStopPrinter(printer, 0);
2563 }
2564 }
2565
2566 if (PrintcapFormat == PRINTCAP_PLIST)
2567 cupsdMarkDirty(CUPSD_DIRTY_PRINTCAP);
2568
2569 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, printer, NULL,
2570 "Printer \"%s\" state changed.", printer->name);
2571 }
2572
2573 set_printer_defaults(con, printer);
2574
2575 if ((attr = ippFindAttribute(con->request, "auth-info-required",
2576 IPP_TAG_KEYWORD)) != NULL)
2577 cupsdSetAuthInfoRequired(printer, NULL, attr);
2578
2579 /*
2580 * See if we have all required attributes...
2581 */
2582
2583 if (!printer->device_uri)
2584 cupsdSetString(&printer->device_uri, "file:///dev/null");
2585
2586 /*
2587 * See if we have an interface script or PPD file attached to the request...
2588 */
2589
2590 if (con->filename)
2591 {
2592 need_restart_job = 1;
2593 changed_driver = 1;
2594
2595 strlcpy(srcfile, con->filename, sizeof(srcfile));
2596
2597 if ((fp = cupsFileOpen(srcfile, "rb")))
2598 {
2599 /*
2600 * Yes; get the first line from it...
2601 */
2602
2603 line[0] = '\0';
2604 cupsFileGets(fp, line, sizeof(line));
2605 cupsFileClose(fp);
2606
2607 /*
2608 * Then see what kind of file it is...
2609 */
2610
2611 snprintf(dstfile, sizeof(dstfile), "%s/interfaces/%s", ServerRoot,
2612 printer->name);
2613
2614 if (!strncmp(line, "*PPD-Adobe", 10))
2615 {
2616 /*
2617 * The new file is a PPD file, so remove any old interface script
2618 * that might be lying around...
2619 */
2620
2621 unlink(dstfile);
2622 }
2623 else
2624 {
2625 /*
2626 * This must be an interface script, so move the file over to the
2627 * interfaces directory and make it executable...
2628 */
2629
2630 if (copy_file(srcfile, dstfile))
2631 {
2632 send_ipp_status(con, IPP_INTERNAL_ERROR,
2633 _("Unable to copy interface script - %s"),
2634 strerror(errno));
2635 return;
2636 }
2637
2638 cupsdLogMessage(CUPSD_LOG_DEBUG,
2639 "Copied interface script successfully");
2640 chmod(dstfile, 0755);
2641 }
2642
2643 snprintf(dstfile, sizeof(dstfile), "%s/ppd/%s.ppd", ServerRoot,
2644 printer->name);
2645
2646 if (!strncmp(line, "*PPD-Adobe", 10))
2647 {
2648 /*
2649 * The new file is a PPD file, so move the file over to the
2650 * ppd directory and make it readable by all...
2651 */
2652
2653 if (copy_file(srcfile, dstfile))
2654 {
2655 send_ipp_status(con, IPP_INTERNAL_ERROR,
2656 _("Unable to copy PPD file - %s"),
2657 strerror(errno));
2658 return;
2659 }
2660
2661 cupsdLogMessage(CUPSD_LOG_DEBUG,
2662 "Copied PPD file successfully");
2663 chmod(dstfile, 0644);
2664 }
2665 else
2666 {
2667 /*
2668 * This must be an interface script, so remove any old PPD file that
2669 * may be lying around...
2670 */
2671
2672 unlink(dstfile);
2673 }
2674 }
2675 }
2676 else if ((attr = ippFindAttribute(con->request, "ppd-name",
2677 IPP_TAG_NAME)) != NULL)
2678 {
2679 need_restart_job = 1;
2680 changed_driver = 1;
2681
2682 if (!strcmp(attr->values[0].string.text, "raw"))
2683 {
2684 /*
2685 * Raw driver, remove any existing PPD or interface script files.
2686 */
2687
2688 snprintf(dstfile, sizeof(dstfile), "%s/interfaces/%s", ServerRoot,
2689 printer->name);
2690 unlink(dstfile);
2691
2692 snprintf(dstfile, sizeof(dstfile), "%s/ppd/%s.ppd", ServerRoot,
2693 printer->name);
2694 unlink(dstfile);
2695 }
2696 else
2697 {
2698 /*
2699 * PPD model file...
2700 */
2701
2702 snprintf(dstfile, sizeof(dstfile), "%s/interfaces/%s", ServerRoot,
2703 printer->name);
2704 unlink(dstfile);
2705
2706 snprintf(dstfile, sizeof(dstfile), "%s/ppd/%s.ppd", ServerRoot,
2707 printer->name);
2708
2709 if (copy_model(con, attr->values[0].string.text, dstfile))
2710 {
2711 send_ipp_status(con, IPP_INTERNAL_ERROR, _("Unable to copy PPD file."));
2712 return;
2713 }
2714
2715 cupsdLogMessage(CUPSD_LOG_DEBUG,
2716 "Copied PPD file successfully");
2717 chmod(dstfile, 0644);
2718 }
2719 }
2720
2721 if (changed_driver)
2722 {
2723 /*
2724 * If we changed the PPD/interface script, then remove the printer's cache
2725 * file and clear the printer-state-reasons...
2726 */
2727
2728 char cache_name[1024]; /* Cache filename for printer attrs */
2729
2730 snprintf(cache_name, sizeof(cache_name), "%s/%s.data", CacheDir,
2731 printer->name);
2732 unlink(cache_name);
2733
2734 cupsdSetPrinterReasons(printer, "none");
2735
2736 /*
2737 * (Re)register color profiles...
2738 */
2739
2740 cupsdRegisterColor(printer);
2741 }
2742
2743 /*
2744 * If we set the device URI but not the port monitor, check which port
2745 * monitor to use by default...
2746 */
2747
2748 if (set_device_uri && !set_port_monitor)
2749 {
2750 ppd_file_t *ppd; /* PPD file */
2751 ppd_attr_t *ppdattr; /* cupsPortMonitor attribute */
2752
2753
2754 httpSeparateURI(HTTP_URI_CODING_ALL, printer->device_uri, scheme,
2755 sizeof(scheme), username, sizeof(username), host,
2756 sizeof(host), &port, resource, sizeof(resource));
2757
2758 snprintf(srcfile, sizeof(srcfile), "%s/ppd/%s.ppd", ServerRoot,
2759 printer->name);
2760 if ((ppd = _ppdOpenFile(srcfile, _PPD_LOCALIZATION_NONE)) != NULL)
2761 {
2762 for (ppdattr = ppdFindAttr(ppd, "cupsPortMonitor", NULL);
2763 ppdattr;
2764 ppdattr = ppdFindNextAttr(ppd, "cupsPortMonitor", NULL))
2765 if (!strcmp(scheme, ppdattr->spec))
2766 {
2767 cupsdLogMessage(CUPSD_LOG_INFO,
2768 "Setting %s port-monitor to \"%s\" (was \"%s\".)",
2769 printer->name, ppdattr->value,
2770 printer->port_monitor ? printer->port_monitor
2771 : "none");
2772
2773 if (strcmp(ppdattr->value, "none"))
2774 cupsdSetString(&printer->port_monitor, ppdattr->value);
2775 else
2776 cupsdClearString(&printer->port_monitor);
2777
2778 break;
2779 }
2780
2781 ppdClose(ppd);
2782 }
2783 }
2784
2785 /*
2786 * Update the printer attributes and return...
2787 */
2788
2789 cupsdSetPrinterAttrs(printer);
2790 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
2791
2792 if (need_restart_job && printer->job)
2793 {
2794 /*
2795 * Restart the current job...
2796 */
2797
2798 cupsdSetJobState(printer->job, IPP_JOB_PENDING, CUPSD_JOB_FORCE,
2799 "Job restarted because the printer was modified.");
2800 }
2801
2802 cupsdMarkDirty(CUPSD_DIRTY_PRINTCAP);
2803
2804 if (modify)
2805 {
2806 cupsdAddEvent(CUPSD_EVENT_PRINTER_MODIFIED,
2807 printer, NULL, "Printer \"%s\" modified by \"%s\".",
2808 printer->name, get_username(con));
2809
2810 cupsdLogMessage(CUPSD_LOG_INFO, "Printer \"%s\" modified by \"%s\".",
2811 printer->name, get_username(con));
2812 }
2813 else
2814 {
2815 cupsdAddEvent(CUPSD_EVENT_PRINTER_ADDED,
2816 printer, NULL, "New printer \"%s\" added by \"%s\".",
2817 printer->name, get_username(con));
2818
2819 cupsdLogMessage(CUPSD_LOG_INFO, "New printer \"%s\" added by \"%s\".",
2820 printer->name, get_username(con));
2821 }
2822
2823 con->response->request.status.status_code = IPP_OK;
2824 }
2825
2826
2827 /*
2828 * 'add_printer_state_reasons()' - Add the "printer-state-reasons" attribute
2829 * based upon the printer state...
2830 */
2831
2832 static void
2833 add_printer_state_reasons(
2834 cupsd_client_t *con, /* I - Client connection */
2835 cupsd_printer_t *p) /* I - Printer info */
2836 {
2837 cupsdLogMessage(CUPSD_LOG_DEBUG2,
2838 "add_printer_state_reasons(%p[%d], %p[%s])",
2839 con, con->number, p, p->name);
2840
2841 if (p->num_reasons == 0)
2842 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_KEYWORD,
2843 "printer-state-reasons", NULL, "none");
2844 else
2845 ippAddStrings(con->response, IPP_TAG_PRINTER, IPP_TAG_KEYWORD,
2846 "printer-state-reasons", p->num_reasons, NULL,
2847 (const char * const *)p->reasons);
2848 }
2849
2850
2851 /*
2852 * 'add_queued_job_count()' - Add the "queued-job-count" attribute for
2853 * the specified printer or class.
2854 */
2855
2856 static void
2857 add_queued_job_count(
2858 cupsd_client_t *con, /* I - Client connection */
2859 cupsd_printer_t *p) /* I - Printer or class */
2860 {
2861 int count; /* Number of jobs on destination */
2862
2863
2864 cupsdLogMessage(CUPSD_LOG_DEBUG2, "add_queued_job_count(%p[%d], %p[%s])",
2865 con, con->number, p, p->name);
2866
2867 count = cupsdGetPrinterJobCount(p->name);
2868
2869 ippAddInteger(con->response, IPP_TAG_PRINTER, IPP_TAG_INTEGER,
2870 "queued-job-count", count);
2871 }
2872
2873
2874 /*
2875 * 'apply_printer_defaults()' - Apply printer default options to a job.
2876 */
2877
2878 static void
2879 apply_printer_defaults(
2880 cupsd_printer_t *printer, /* I - Printer */
2881 cupsd_job_t *job) /* I - Job */
2882 {
2883 int i, /* Looping var */
2884 num_options; /* Number of default options */
2885 cups_option_t *options, /* Default options */
2886 *option; /* Current option */
2887
2888
2889 /*
2890 * Collect all of the default options and add the missing ones to the
2891 * job object...
2892 */
2893
2894 for (i = printer->num_options, num_options = 0, options = NULL,
2895 option = printer->options;
2896 i > 0;
2897 i --, option ++)
2898 if (!ippFindAttribute(job->attrs, option->name, IPP_TAG_ZERO))
2899 {
2900 num_options = cupsAddOption(option->name, option->value, num_options,
2901 &options);
2902 }
2903
2904 /*
2905 * Encode these options as attributes in the job object...
2906 */
2907
2908 cupsEncodeOptions2(job->attrs, num_options, options, IPP_TAG_JOB);
2909 cupsFreeOptions(num_options, options);
2910 }
2911
2912
2913 /*
2914 * 'authenticate_job()' - Set job authentication info.
2915 */
2916
2917 static void
2918 authenticate_job(cupsd_client_t *con, /* I - Client connection */
2919 ipp_attribute_t *uri) /* I - Job URI */
2920 {
2921 ipp_attribute_t *attr, /* job-id attribute */
2922 *auth_info; /* auth-info attribute */
2923 int jobid; /* Job ID */
2924 cupsd_job_t *job; /* Current job */
2925 char scheme[HTTP_MAX_URI],
2926 /* Method portion of URI */
2927 username[HTTP_MAX_URI],
2928 /* Username portion of URI */
2929 host[HTTP_MAX_URI],
2930 /* Host portion of URI */
2931 resource[HTTP_MAX_URI];
2932 /* Resource portion of URI */
2933 int port; /* Port portion of URI */
2934
2935
2936 cupsdLogMessage(CUPSD_LOG_DEBUG2, "authenticate_job(%p[%d], %s)",
2937 con, con->number, uri->values[0].string.text);
2938
2939 /*
2940 * Start with "everything is OK" status...
2941 */
2942
2943 con->response->request.status.status_code = IPP_OK;
2944
2945 /*
2946 * See if we have a job URI or a printer URI...
2947 */
2948
2949 if (!strcmp(uri->name, "printer-uri"))
2950 {
2951 /*
2952 * Got a printer URI; see if we also have a job-id attribute...
2953 */
2954
2955 if ((attr = ippFindAttribute(con->request, "job-id",
2956 IPP_TAG_INTEGER)) == NULL)
2957 {
2958 send_ipp_status(con, IPP_BAD_REQUEST,
2959 _("Got a printer-uri attribute but no job-id."));
2960 return;
2961 }
2962
2963 jobid = attr->values[0].integer;
2964 }
2965 else
2966 {
2967 /*
2968 * Got a job URI; parse it to get the job ID...
2969 */
2970
2971 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
2972 sizeof(scheme), username, sizeof(username), host,
2973 sizeof(host), &port, resource, sizeof(resource));
2974
2975 if (strncmp(resource, "/jobs/", 6))
2976 {
2977 /*
2978 * Not a valid URI!
2979 */
2980
2981 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-uri \"%s\"."),
2982 uri->values[0].string.text);
2983 return;
2984 }
2985
2986 jobid = atoi(resource + 6);
2987 }
2988
2989 /*
2990 * See if the job exists...
2991 */
2992
2993 if ((job = cupsdFindJob(jobid)) == NULL)
2994 {
2995 /*
2996 * Nope - return a "not found" error...
2997 */
2998
2999 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."), jobid);
3000 return;
3001 }
3002
3003 /*
3004 * See if the job has been completed...
3005 */
3006
3007 if (job->state_value != IPP_JOB_HELD)
3008 {
3009 /*
3010 * Return a "not-possible" error...
3011 */
3012
3013 send_ipp_status(con, IPP_NOT_POSSIBLE,
3014 _("Job #%d is not held for authentication."),
3015 jobid);
3016 return;
3017 }
3018
3019 /*
3020 * See if we have already authenticated...
3021 */
3022
3023 auth_info = ippFindAttribute(con->request, "auth-info", IPP_TAG_TEXT);
3024
3025 if (!con->username[0] && !auth_info)
3026 {
3027 cupsd_printer_t *printer; /* Job destination */
3028
3029 /*
3030 * No auth data. If we need to authenticate via Kerberos, send a
3031 * HTTP auth challenge, otherwise just return an IPP error...
3032 */
3033
3034 printer = cupsdFindDest(job->dest);
3035
3036 if (printer && printer->num_auth_info_required > 0 &&
3037 !strcmp(printer->auth_info_required[0], "negotiate"))
3038 send_http_error(con, HTTP_UNAUTHORIZED, printer);
3039 else
3040 send_ipp_status(con, IPP_NOT_AUTHORIZED,
3041 _("No authentication information provided."));
3042 return;
3043 }
3044
3045 /*
3046 * See if the job is owned by the requesting user...
3047 */
3048
3049 if (!validate_user(job, con, job->username, username, sizeof(username)))
3050 {
3051 send_http_error(con, con->username[0] ? HTTP_FORBIDDEN : HTTP_UNAUTHORIZED,
3052 cupsdFindDest(job->dest));
3053 return;
3054 }
3055
3056 /*
3057 * Save the authentication information for this job...
3058 */
3059
3060 save_auth_info(con, job, auth_info);
3061
3062 /*
3063 * Reset the job-hold-until value to "no-hold"...
3064 */
3065
3066 if ((attr = ippFindAttribute(job->attrs, "job-hold-until",
3067 IPP_TAG_KEYWORD)) == NULL)
3068 attr = ippFindAttribute(job->attrs, "job-hold-until", IPP_TAG_NAME);
3069
3070 if (attr)
3071 {
3072 attr->value_tag = IPP_TAG_KEYWORD;
3073 cupsdSetString(&(attr->values[0].string.text), "no-hold");
3074 }
3075
3076 /*
3077 * Release the job and return...
3078 */
3079
3080 cupsdReleaseJob(job);
3081
3082 cupsdAddEvent(CUPSD_EVENT_JOB_STATE, NULL, job, "Job authenticated by user");
3083
3084 cupsdLogJob(job, CUPSD_LOG_INFO, "Authenticated by \"%s\".", con->username);
3085
3086 cupsdCheckJobs();
3087 }
3088
3089
3090 /*
3091 * 'cancel_all_jobs()' - Cancel all or selected print jobs.
3092 */
3093
3094 static void
3095 cancel_all_jobs(cupsd_client_t *con, /* I - Client connection */
3096 ipp_attribute_t *uri) /* I - Job or Printer URI */
3097 {
3098 int i; /* Looping var */
3099 http_status_t status; /* Policy status */
3100 cups_ptype_t dtype; /* Destination type */
3101 char scheme[HTTP_MAX_URI], /* Scheme portion of URI */
3102 userpass[HTTP_MAX_URI], /* Username portion of URI */
3103 hostname[HTTP_MAX_URI], /* Host portion of URI */
3104 resource[HTTP_MAX_URI]; /* Resource portion of URI */
3105 int port; /* Port portion of URI */
3106 ipp_attribute_t *attr; /* Attribute in request */
3107 const char *username = NULL; /* Username */
3108 cupsd_jobaction_t purge = CUPSD_JOB_DEFAULT;
3109 /* Purge? */
3110 cupsd_printer_t *printer; /* Printer */
3111 ipp_attribute_t *job_ids; /* job-ids attribute */
3112 cupsd_job_t *job; /* Job */
3113
3114
3115 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cancel_all_jobs(%p[%d], %s)", con,
3116 con->number, uri->values[0].string.text);
3117
3118 /*
3119 * Get the jobs to cancel/purge...
3120 */
3121
3122 switch (con->request->request.op.operation_id)
3123 {
3124 case IPP_PURGE_JOBS :
3125 /*
3126 * Get the username (if any) for the jobs we want to cancel (only if
3127 * "my-jobs" is specified...
3128 */
3129
3130 if ((attr = ippFindAttribute(con->request, "my-jobs",
3131 IPP_TAG_BOOLEAN)) != NULL &&
3132 attr->values[0].boolean)
3133 {
3134 if ((attr = ippFindAttribute(con->request, "requesting-user-name",
3135 IPP_TAG_NAME)) != NULL)
3136 username = attr->values[0].string.text;
3137 else
3138 {
3139 send_ipp_status(con, IPP_BAD_REQUEST,
3140 _("Missing requesting-user-name attribute."));
3141 return;
3142 }
3143 }
3144
3145 /*
3146 * Look for the "purge-jobs" attribute...
3147 */
3148
3149 if ((attr = ippFindAttribute(con->request, "purge-jobs",
3150 IPP_TAG_BOOLEAN)) != NULL)
3151 purge = attr->values[0].boolean ? CUPSD_JOB_PURGE : CUPSD_JOB_DEFAULT;
3152 else
3153 purge = CUPSD_JOB_PURGE;
3154 break;
3155
3156 case IPP_CANCEL_MY_JOBS :
3157 if (con->username[0])
3158 username = con->username;
3159 else if ((attr = ippFindAttribute(con->request, "requesting-user-name",
3160 IPP_TAG_NAME)) != NULL)
3161 username = attr->values[0].string.text;
3162 else
3163 {
3164 send_ipp_status(con, IPP_BAD_REQUEST,
3165 _("Missing requesting-user-name attribute."));
3166 return;
3167 }
3168
3169 default :
3170 break;
3171 }
3172
3173 job_ids = ippFindAttribute(con->request, "job-ids", IPP_TAG_INTEGER);
3174
3175 /*
3176 * See if we have a printer URI...
3177 */
3178
3179 if (strcmp(uri->name, "printer-uri"))
3180 {
3181 send_ipp_status(con, IPP_BAD_REQUEST,
3182 _("The printer-uri attribute is required."));
3183 return;
3184 }
3185
3186 /*
3187 * And if the destination is valid...
3188 */
3189
3190 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
3191 {
3192 /*
3193 * Bad URI?
3194 */
3195
3196 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text,
3197 scheme, sizeof(scheme), userpass, sizeof(userpass),
3198 hostname, sizeof(hostname), &port,
3199 resource, sizeof(resource));
3200
3201 if ((!strncmp(resource, "/printers/", 10) && resource[10]) ||
3202 (!strncmp(resource, "/classes/", 9) && resource[9]))
3203 {
3204 send_ipp_status(con, IPP_NOT_FOUND,
3205 _("The printer or class does not exist."));
3206 return;
3207 }
3208
3209 /*
3210 * Check policy...
3211 */
3212
3213 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
3214 {
3215 send_http_error(con, status, NULL);
3216 return;
3217 }
3218
3219 if (job_ids)
3220 {
3221 for (i = 0; i < job_ids->num_values; i ++)
3222 {
3223 if ((job = cupsdFindJob(job_ids->values[i].integer)) == NULL)
3224 break;
3225
3226 if (con->request->request.op.operation_id == IPP_CANCEL_MY_JOBS &&
3227 _cups_strcasecmp(job->username, username))
3228 break;
3229 }
3230
3231 if (i < job_ids->num_values)
3232 {
3233 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."),
3234 job_ids->values[i].integer);
3235 return;
3236 }
3237
3238 for (i = 0; i < job_ids->num_values; i ++)
3239 {
3240 job = cupsdFindJob(job_ids->values[i].integer);
3241
3242 cupsdSetJobState(job, IPP_JOB_CANCELED, purge,
3243 purge == CUPSD_JOB_PURGE ? "Job purged by user." :
3244 "Job canceled by user.");
3245 }
3246
3247 cupsdLogMessage(CUPSD_LOG_INFO, "Selected jobs were %s by \"%s\".",
3248 purge == CUPSD_JOB_PURGE ? "purged" : "canceled",
3249 get_username(con));
3250 }
3251 else
3252 {
3253 /*
3254 * Cancel all jobs on all printers...
3255 */
3256
3257 cupsdCancelJobs(NULL, username, purge);
3258
3259 cupsdLogMessage(CUPSD_LOG_INFO, "All jobs were %s by \"%s\".",
3260 purge == CUPSD_JOB_PURGE ? "purged" : "canceled",
3261 get_username(con));
3262 }
3263 }
3264 else
3265 {
3266 /*
3267 * Check policy...
3268 */
3269
3270 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con,
3271 NULL)) != HTTP_OK)
3272 {
3273 send_http_error(con, status, printer);
3274 return;
3275 }
3276
3277 if (job_ids)
3278 {
3279 for (i = 0; i < job_ids->num_values; i ++)
3280 {
3281 if ((job = cupsdFindJob(job_ids->values[i].integer)) == NULL ||
3282 _cups_strcasecmp(job->dest, printer->name))
3283 break;
3284
3285 if (con->request->request.op.operation_id == IPP_CANCEL_MY_JOBS &&
3286 _cups_strcasecmp(job->username, username))
3287 break;
3288 }
3289
3290 if (i < job_ids->num_values)
3291 {
3292 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."),
3293 job_ids->values[i].integer);
3294 return;
3295 }
3296
3297 for (i = 0; i < job_ids->num_values; i ++)
3298 {
3299 job = cupsdFindJob(job_ids->values[i].integer);
3300
3301 cupsdSetJobState(job, IPP_JOB_CANCELED, purge,
3302 purge == CUPSD_JOB_PURGE ? "Job purged by user." :
3303 "Job canceled by user.");
3304 }
3305
3306 cupsdLogMessage(CUPSD_LOG_INFO, "Selected jobs were %s by \"%s\".",
3307 purge == CUPSD_JOB_PURGE ? "purged" : "canceled",
3308 get_username(con));
3309 }
3310 else
3311 {
3312 /*
3313 * Cancel all of the jobs on the named printer...
3314 */
3315
3316 cupsdCancelJobs(printer->name, username, purge);
3317
3318 cupsdLogMessage(CUPSD_LOG_INFO, "All jobs on \"%s\" were %s by \"%s\".",
3319 printer->name,
3320 purge == CUPSD_JOB_PURGE ? "purged" : "canceled",
3321 get_username(con));
3322 }
3323 }
3324
3325 con->response->request.status.status_code = IPP_OK;
3326 }
3327
3328
3329 /*
3330 * 'cancel_job()' - Cancel a print job.
3331 */
3332
3333 static void
3334 cancel_job(cupsd_client_t *con, /* I - Client connection */
3335 ipp_attribute_t *uri) /* I - Job or Printer URI */
3336 {
3337 ipp_attribute_t *attr; /* Current attribute */
3338 int jobid; /* Job ID */
3339 char scheme[HTTP_MAX_URI], /* Scheme portion of URI */
3340 username[HTTP_MAX_URI], /* Username portion of URI */
3341 host[HTTP_MAX_URI], /* Host portion of URI */
3342 resource[HTTP_MAX_URI]; /* Resource portion of URI */
3343 int port; /* Port portion of URI */
3344 cupsd_job_t *job; /* Job information */
3345 cups_ptype_t dtype; /* Destination type (printer/class) */
3346 cupsd_printer_t *printer; /* Printer data */
3347 cupsd_jobaction_t purge; /* Purge the job? */
3348
3349
3350 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cancel_job(%p[%d], %s)", con,
3351 con->number, uri->values[0].string.text);
3352
3353 /*
3354 * See if we have a job URI or a printer URI...
3355 */
3356
3357 if (!strcmp(uri->name, "printer-uri"))
3358 {
3359 /*
3360 * Got a printer URI; see if we also have a job-id attribute...
3361 */
3362
3363 if ((attr = ippFindAttribute(con->request, "job-id",
3364 IPP_TAG_INTEGER)) == NULL)
3365 {
3366 send_ipp_status(con, IPP_BAD_REQUEST,
3367 _("Got a printer-uri attribute but no job-id."));
3368 return;
3369 }
3370
3371 if ((jobid = attr->values[0].integer) == 0)
3372 {
3373 /*
3374 * Find the current job on the specified printer...
3375 */
3376
3377 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
3378 {
3379 /*
3380 * Bad URI...
3381 */
3382
3383 send_ipp_status(con, IPP_NOT_FOUND,
3384 _("The printer or class does not exist."));
3385 return;
3386 }
3387
3388 /*
3389 * See if there are any pending jobs...
3390 */
3391
3392 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
3393 job;
3394 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
3395 if (job->state_value <= IPP_JOB_PROCESSING &&
3396 !_cups_strcasecmp(job->dest, printer->name))
3397 break;
3398
3399 if (job)
3400 jobid = job->id;
3401 else
3402 {
3403 /*
3404 * No, try stopped jobs...
3405 */
3406
3407 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
3408 job;
3409 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
3410 if (job->state_value == IPP_JOB_STOPPED &&
3411 !_cups_strcasecmp(job->dest, printer->name))
3412 break;
3413
3414 if (job)
3415 jobid = job->id;
3416 else
3417 {
3418 send_ipp_status(con, IPP_NOT_POSSIBLE, _("No active jobs on %s."),
3419 printer->name);
3420 return;
3421 }
3422 }
3423 }
3424 }
3425 else
3426 {
3427 /*
3428 * Got a job URI; parse it to get the job ID...
3429 */
3430
3431 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
3432 sizeof(scheme), username, sizeof(username), host,
3433 sizeof(host), &port, resource, sizeof(resource));
3434
3435 if (strncmp(resource, "/jobs/", 6))
3436 {
3437 /*
3438 * Not a valid URI!
3439 */
3440
3441 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-uri \"%s\"."),
3442 uri->values[0].string.text);
3443 return;
3444 }
3445
3446 jobid = atoi(resource + 6);
3447 }
3448
3449 /*
3450 * Look for the "purge-job" attribute...
3451 */
3452
3453 if ((attr = ippFindAttribute(con->request, "purge-job",
3454 IPP_TAG_BOOLEAN)) != NULL)
3455 purge = attr->values[0].boolean ? CUPSD_JOB_PURGE : CUPSD_JOB_DEFAULT;
3456 else
3457 purge = CUPSD_JOB_DEFAULT;
3458
3459 /*
3460 * See if the job exists...
3461 */
3462
3463 if ((job = cupsdFindJob(jobid)) == NULL)
3464 {
3465 /*
3466 * Nope - return a "not found" error...
3467 */
3468
3469 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."), jobid);
3470 return;
3471 }
3472
3473 /*
3474 * See if the job is owned by the requesting user...
3475 */
3476
3477 if (!validate_user(job, con, job->username, username, sizeof(username)))
3478 {
3479 send_http_error(con, con->username[0] ? HTTP_FORBIDDEN : HTTP_UNAUTHORIZED,
3480 cupsdFindDest(job->dest));
3481 return;
3482 }
3483
3484 /*
3485 * See if the job is already completed, canceled, or aborted; if so,
3486 * we can't cancel...
3487 */
3488
3489 if (job->state_value >= IPP_JOB_CANCELED && purge != CUPSD_JOB_PURGE)
3490 {
3491 switch (job->state_value)
3492 {
3493 case IPP_JOB_CANCELED :
3494 send_ipp_status(con, IPP_NOT_POSSIBLE,
3495 _("Job #%d is already canceled - can\'t cancel."),
3496 jobid);
3497 break;
3498
3499 case IPP_JOB_ABORTED :
3500 send_ipp_status(con, IPP_NOT_POSSIBLE,
3501 _("Job #%d is already aborted - can\'t cancel."),
3502 jobid);
3503 break;
3504
3505 default :
3506 send_ipp_status(con, IPP_NOT_POSSIBLE,
3507 _("Job #%d is already completed - can\'t cancel."),
3508 jobid);
3509 break;
3510 }
3511
3512 return;
3513 }
3514
3515 /*
3516 * Cancel the job and return...
3517 */
3518
3519 cupsdSetJobState(job, IPP_JOB_CANCELED, purge,
3520 purge == CUPSD_JOB_PURGE ? "Job purged by \"%s\"" :
3521 "Job canceled by \"%s\"",
3522 username);
3523 cupsdCheckJobs();
3524
3525 if (purge == CUPSD_JOB_PURGE)
3526 cupsdLogMessage(CUPSD_LOG_INFO, "[Job %d] Purged by \"%s\".", jobid,
3527 username);
3528 else
3529 cupsdLogMessage(CUPSD_LOG_INFO, "[Job %d] Canceled by \"%s\".", jobid,
3530 username);
3531
3532 con->response->request.status.status_code = IPP_OK;
3533 }
3534
3535
3536 /*
3537 * 'cancel_subscription()' - Cancel a subscription.
3538 */
3539
3540 static void
3541 cancel_subscription(
3542 cupsd_client_t *con, /* I - Client connection */
3543 int sub_id) /* I - Subscription ID */
3544 {
3545 http_status_t status; /* Policy status */
3546 cupsd_subscription_t *sub; /* Subscription */
3547
3548
3549 cupsdLogMessage(CUPSD_LOG_DEBUG2,
3550 "cancel_subscription(con=%p[%d], sub_id=%d)",
3551 con, con->number, sub_id);
3552
3553 /*
3554 * Is the subscription ID valid?
3555 */
3556
3557 if ((sub = cupsdFindSubscription(sub_id)) == NULL)
3558 {
3559 /*
3560 * Bad subscription ID...
3561 */
3562
3563 send_ipp_status(con, IPP_NOT_FOUND,
3564 _("Subscription #%d does not exist."), sub_id);
3565 return;
3566 }
3567
3568 /*
3569 * Check policy...
3570 */
3571
3572 if ((status = cupsdCheckPolicy(sub->dest ? sub->dest->op_policy_ptr :
3573 DefaultPolicyPtr,
3574 con, sub->owner)) != HTTP_OK)
3575 {
3576 send_http_error(con, status, sub->dest);
3577 return;
3578 }
3579
3580 /*
3581 * Cancel the subscription...
3582 */
3583
3584 cupsdDeleteSubscription(sub, 1);
3585
3586 con->response->request.status.status_code = IPP_OK;
3587 }
3588
3589
3590 /*
3591 * 'check_rss_recipient()' - Check that we do not have a duplicate RSS feed URI.
3592 */
3593
3594 static int /* O - 1 if OK, 0 if not */
3595 check_rss_recipient(
3596 const char *recipient) /* I - Recipient URI */
3597 {
3598 cupsd_subscription_t *sub; /* Current subscription */
3599
3600
3601 for (sub = (cupsd_subscription_t *)cupsArrayFirst(Subscriptions);
3602 sub;
3603 sub = (cupsd_subscription_t *)cupsArrayNext(Subscriptions))
3604 if (sub->recipient)
3605 {
3606 /*
3607 * Compare the URIs up to the first ?...
3608 */
3609
3610 const char *r1, *r2;
3611
3612 for (r1 = recipient, r2 = sub->recipient;
3613 *r1 == *r2 && *r1 && *r1 != '?' && *r2 && *r2 != '?';
3614 r1 ++, r2 ++);
3615
3616 if (*r1 == *r2)
3617 return (0);
3618 }
3619
3620 return (1);
3621 }
3622
3623
3624 /*
3625 * 'check_quotas()' - Check quotas for a printer and user.
3626 */
3627
3628 static int /* O - 1 if OK, 0 if forbidden,
3629 -1 if limit reached */
3630 check_quotas(cupsd_client_t *con, /* I - Client connection */
3631 cupsd_printer_t *p) /* I - Printer or class */
3632 {
3633 char username[33], /* Username */
3634 *name; /* Current user name */
3635 cupsd_quota_t *q; /* Quota data */
3636 #ifdef HAVE_MBR_UID_TO_UUID
3637 /*
3638 * Use Apple membership APIs which require that all names represent
3639 * valid user account or group records accessible by the server.
3640 */
3641
3642 uuid_t usr_uuid; /* UUID for job requesting user */
3643 uuid_t usr2_uuid; /* UUID for ACL user name entry */
3644 uuid_t grp_uuid; /* UUID for ACL group name entry */
3645 int mbr_err; /* Error from membership function */
3646 int is_member; /* Is this user a member? */
3647 #else
3648 /*
3649 * Use standard POSIX APIs for checking users and groups...
3650 */
3651
3652 struct passwd *pw; /* User password data */
3653 #endif /* HAVE_MBR_UID_TO_UUID */
3654
3655
3656 cupsdLogMessage(CUPSD_LOG_DEBUG2, "check_quotas(%p[%d], %p[%s])",
3657 con, con->number, p, p->name);
3658
3659 /*
3660 * Figure out who is printing...
3661 */
3662
3663 strlcpy(username, get_username(con), sizeof(username));
3664
3665 if ((name = strchr(username, '@')) != NULL)
3666 *name = '\0'; /* Strip @REALM */
3667
3668 /*
3669 * Check global active job limits for printers and users...
3670 */
3671
3672 if (MaxJobsPerPrinter)
3673 {
3674 /*
3675 * Check if there are too many pending jobs on this printer...
3676 */
3677
3678 if (cupsdGetPrinterJobCount(p->name) >= MaxJobsPerPrinter)
3679 {
3680 cupsdLogMessage(CUPSD_LOG_INFO, "Too many jobs for printer \"%s\"...",
3681 p->name);
3682 return (-1);
3683 }
3684 }
3685
3686 if (MaxJobsPerUser)
3687 {
3688 /*
3689 * Check if there are too many pending jobs for this user...
3690 */
3691
3692 if (cupsdGetUserJobCount(username) >= MaxJobsPerUser)
3693 {
3694 cupsdLogMessage(CUPSD_LOG_INFO, "Too many jobs for user \"%s\"...",
3695 username);
3696 return (-1);
3697 }
3698 }
3699
3700 /*
3701 * Check against users...
3702 */
3703
3704 if (cupsArrayCount(p->users) == 0 && p->k_limit == 0 && p->page_limit == 0)
3705 return (1);
3706
3707 if (cupsArrayCount(p->users))
3708 {
3709 #ifdef HAVE_MBR_UID_TO_UUID
3710 /*
3711 * Get UUID for job requesting user...
3712 */
3713
3714 if (mbr_user_name_to_uuid((char *)username, usr_uuid))
3715 {
3716 /*
3717 * Unknown user...
3718 */
3719
3720 cupsdLogMessage(CUPSD_LOG_DEBUG,
3721 "check_quotas: UUID lookup failed for user \"%s\"",
3722 username);
3723 cupsdLogMessage(CUPSD_LOG_INFO,
3724 "Denying user \"%s\" access to printer \"%s\" "
3725 "(unknown user)...",
3726 username, p->name);
3727 return (0);
3728 }
3729 #else
3730 /*
3731 * Get UID and GID of requesting user...
3732 */
3733
3734 pw = getpwnam(username);
3735 endpwent();
3736 #endif /* HAVE_MBR_UID_TO_UUID */
3737
3738 for (name = (char *)cupsArrayFirst(p->users);
3739 name;
3740 name = (char *)cupsArrayNext(p->users))
3741 if (name[0] == '@')
3742 {
3743 /*
3744 * Check group membership...
3745 */
3746
3747 #ifdef HAVE_MBR_UID_TO_UUID
3748 if (name[1] == '#')
3749 {
3750 if (uuid_parse(name + 2, grp_uuid))
3751 uuid_clear(grp_uuid);
3752 }
3753 else if ((mbr_err = mbr_group_name_to_uuid(name + 1, grp_uuid)) != 0)
3754 {
3755 /*
3756 * Invalid ACL entries are ignored for matching; just record a
3757 * warning in the log...
3758 */
3759
3760 cupsdLogMessage(CUPSD_LOG_DEBUG,
3761 "check_quotas: UUID lookup failed for ACL entry "
3762 "\"%s\" (err=%d)", name, mbr_err);
3763 cupsdLogMessage(CUPSD_LOG_WARN,
3764 "Access control entry \"%s\" not a valid group name; "
3765 "entry ignored", name);
3766 }
3767
3768 if ((mbr_err = mbr_check_membership(usr_uuid, grp_uuid,
3769 &is_member)) != 0)
3770 {
3771 /*
3772 * At this point, there should be no errors, but check anyways...
3773 */
3774
3775 cupsdLogMessage(CUPSD_LOG_DEBUG,
3776 "check_quotas: group \"%s\" membership check "
3777 "failed (err=%d)", name + 1, mbr_err);
3778 is_member = 0;
3779 }
3780
3781 /*
3782 * Stop if we found a match...
3783 */
3784
3785 if (is_member)
3786 break;
3787
3788 #else
3789 if (cupsdCheckGroup(username, pw, name + 1))
3790 break;
3791 #endif /* HAVE_MBR_UID_TO_UUID */
3792 }
3793 #ifdef HAVE_MBR_UID_TO_UUID
3794 else
3795 {
3796 if (name[0] == '#')
3797 {
3798 if (uuid_parse(name + 1, usr2_uuid))
3799 uuid_clear(usr2_uuid);
3800 }
3801 else if ((mbr_err = mbr_user_name_to_uuid(name, usr2_uuid)) != 0)
3802 {
3803 /*
3804 * Invalid ACL entries are ignored for matching; just record a
3805 * warning in the log...
3806 */
3807
3808 cupsdLogMessage(CUPSD_LOG_DEBUG,
3809 "check_quotas: UUID lookup failed for ACL entry "
3810 "\"%s\" (err=%d)", name, mbr_err);
3811 cupsdLogMessage(CUPSD_LOG_WARN,
3812 "Access control entry \"%s\" not a valid user name; "
3813 "entry ignored", name);
3814 }
3815
3816 if (!uuid_compare(usr_uuid, usr2_uuid))
3817 break;
3818 }
3819 #else
3820 else if (!_cups_strcasecmp(username, name))
3821 break;
3822 #endif /* HAVE_MBR_UID_TO_UUID */
3823
3824 if ((name != NULL) == p->deny_users)
3825 {
3826 cupsdLogMessage(CUPSD_LOG_INFO,
3827 "Denying user \"%s\" access to printer \"%s\"...",
3828 username, p->name);
3829 return (0);
3830 }
3831 }
3832
3833 /*
3834 * Check quotas...
3835 */
3836
3837 if (p->k_limit || p->page_limit)
3838 {
3839 if ((q = cupsdUpdateQuota(p, username, 0, 0)) == NULL)
3840 {
3841 cupsdLogMessage(CUPSD_LOG_ERROR,
3842 "Unable to allocate quota data for user \"%s\"",
3843 username);
3844 return (-1);
3845 }
3846
3847 if ((q->k_count >= p->k_limit && p->k_limit) ||
3848 (q->page_count >= p->page_limit && p->page_limit))
3849 {
3850 cupsdLogMessage(CUPSD_LOG_INFO, "User \"%s\" is over the quota limit...",
3851 username);
3852 return (-1);
3853 }
3854 }
3855
3856 /*
3857 * If we have gotten this far, we're done!
3858 */
3859
3860 return (1);
3861 }
3862
3863
3864 /*
3865 * 'close_job()' - Close a multi-file job.
3866 */
3867
3868 static void
3869 close_job(cupsd_client_t *con, /* I - Client connection */
3870 ipp_attribute_t *uri) /* I - Printer URI */
3871 {
3872 cupsd_job_t *job; /* Job */
3873 ipp_attribute_t *attr; /* Attribute */
3874 char job_uri[HTTP_MAX_URI],
3875 /* Job URI */
3876 username[256]; /* User name */
3877
3878
3879 cupsdLogMessage(CUPSD_LOG_DEBUG2, "close_job(%p[%d], %s)", con,
3880 con->number, uri->values[0].string.text);
3881
3882 /*
3883 * See if we have a job URI or a printer URI...
3884 */
3885
3886 if (strcmp(uri->name, "printer-uri"))
3887 {
3888 /*
3889 * job-uri is not supported by Close-Job!
3890 */
3891
3892 send_ipp_status(con, IPP_BAD_REQUEST,
3893 _("Close-Job doesn't support the job-uri attribute."));
3894 return;
3895 }
3896
3897 /*
3898 * Got a printer URI; see if we also have a job-id attribute...
3899 */
3900
3901 if ((attr = ippFindAttribute(con->request, "job-id",
3902 IPP_TAG_INTEGER)) == NULL)
3903 {
3904 send_ipp_status(con, IPP_BAD_REQUEST,
3905 _("Got a printer-uri attribute but no job-id."));
3906 return;
3907 }
3908
3909 if ((job = cupsdFindJob(attr->values[0].integer)) == NULL)
3910 {
3911 /*
3912 * Nope - return a "not found" error...
3913 */
3914
3915 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."),
3916 attr->values[0].integer);
3917 return;
3918 }
3919
3920 /*
3921 * See if the job is owned by the requesting user...
3922 */
3923
3924 if (!validate_user(job, con, job->username, username, sizeof(username)))
3925 {
3926 send_http_error(con, con->username[0] ? HTTP_FORBIDDEN : HTTP_UNAUTHORIZED,
3927 cupsdFindDest(job->dest));
3928 return;
3929 }
3930
3931 /*
3932 * Add any ending sheet...
3933 */
3934
3935 if (cupsdTimeoutJob(job))
3936 return;
3937
3938 if (job->state_value == IPP_JOB_STOPPED)
3939 {
3940 job->state->values[0].integer = IPP_JOB_PENDING;
3941 job->state_value = IPP_JOB_PENDING;
3942 }
3943 else if (job->state_value == IPP_JOB_HELD)
3944 {
3945 if ((attr = ippFindAttribute(job->attrs, "job-hold-until",
3946 IPP_TAG_KEYWORD)) == NULL)
3947 attr = ippFindAttribute(job->attrs, "job-hold-until", IPP_TAG_NAME);
3948
3949 if (!attr || !strcmp(attr->values[0].string.text, "no-hold"))
3950 {
3951 job->state->values[0].integer = IPP_JOB_PENDING;
3952 job->state_value = IPP_JOB_PENDING;
3953 }
3954 }
3955
3956 job->dirty = 1;
3957 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
3958
3959 /*
3960 * Fill in the response info...
3961 */
3962
3963 httpAssembleURIf(HTTP_URI_CODING_ALL, job_uri, sizeof(job_uri), "ipp", NULL,
3964 con->clientname, con->clientport, "/jobs/%d", job->id);
3965 ippAddString(con->response, IPP_TAG_JOB, IPP_TAG_URI, "job-uri", NULL,
3966 job_uri);
3967
3968 ippAddInteger(con->response, IPP_TAG_JOB, IPP_TAG_INTEGER, "job-id", job->id);
3969
3970 ippAddInteger(con->response, IPP_TAG_JOB, IPP_TAG_ENUM, "job-state",
3971 job->state_value);
3972
3973 con->response->request.status.status_code = IPP_OK;
3974
3975 /*
3976 * Start the job if necessary...
3977 */
3978
3979 cupsdCheckJobs();
3980 }
3981
3982
3983 /*
3984 * 'copy_attrs()' - Copy attributes from one request to another.
3985 */
3986
3987 static void
3988 copy_attrs(ipp_t *to, /* I - Destination request */
3989 ipp_t *from, /* I - Source request */
3990 cups_array_t *ra, /* I - Requested attributes */
3991 ipp_tag_t group, /* I - Group to copy */
3992 int quickcopy, /* I - Do a quick copy? */
3993 cups_array_t *exclude) /* I - Attributes to exclude? */
3994 {
3995 ipp_attribute_t *fromattr; /* Source attribute */
3996
3997
3998 cupsdLogMessage(CUPSD_LOG_DEBUG2,
3999 "copy_attrs(to=%p, from=%p, ra=%p, group=%x, quickcopy=%d)",
4000 to, from, ra, group, quickcopy);
4001
4002 if (!to || !from)
4003 return;
4004
4005 for (fromattr = from->attrs; fromattr; fromattr = fromattr->next)
4006 {
4007 /*
4008 * Filter attributes as needed...
4009 */
4010
4011 if ((group != IPP_TAG_ZERO && fromattr->group_tag != group &&
4012 fromattr->group_tag != IPP_TAG_ZERO) || !fromattr->name)
4013 continue;
4014
4015 if (!strcmp(fromattr->name, "document-password") ||
4016 !strcmp(fromattr->name, "job-authorization-uri") ||
4017 !strcmp(fromattr->name, "job-password") ||
4018 !strcmp(fromattr->name, "job-password-encryption") ||
4019 !strcmp(fromattr->name, "job-printer-uri"))
4020 continue;
4021
4022 if (exclude &&
4023 (cupsArrayFind(exclude, fromattr->name) ||
4024 cupsArrayFind(exclude, "all")))
4025 {
4026 /*
4027 * We need to exclude this attribute for security reasons; we require the
4028 * job-id attribute regardless of the security settings for IPP
4029 * conformance.
4030 *
4031 * The job-printer-uri attribute is handled by copy_job_attrs().
4032 *
4033 * Subscription attribute security is handled by copy_subscription_attrs().
4034 */
4035
4036 if (strcmp(fromattr->name, "job-id"))
4037 continue;
4038 }
4039
4040 if (!ra || cupsArrayFind(ra, fromattr->name))
4041 {
4042 /*
4043 * Don't send collection attributes by default to IPP/1.x clients
4044 * since many do not support collections. Also don't send
4045 * media-col-database unless specifically requested by the client.
4046 */
4047
4048 if (fromattr->value_tag == IPP_TAG_BEGIN_COLLECTION &&
4049 !ra &&
4050 (to->request.status.version[0] == 1 ||
4051 !strcmp(fromattr->name, "media-col-database")))
4052 continue;
4053
4054 ippCopyAttribute(to, fromattr, quickcopy);
4055 }
4056 }
4057 }
4058
4059
4060 /*
4061 * 'copy_banner()' - Copy a banner file to the requests directory for the
4062 * specified job.
4063 */
4064
4065 static int /* O - Size of banner file in kbytes */
4066 copy_banner(cupsd_client_t *con, /* I - Client connection */
4067 cupsd_job_t *job, /* I - Job information */
4068 const char *name) /* I - Name of banner */
4069 {
4070 int i; /* Looping var */
4071 int kbytes; /* Size of banner file in kbytes */
4072 char filename[1024]; /* Job filename */
4073 cupsd_banner_t *banner; /* Pointer to banner */
4074 cups_file_t *in; /* Input file */
4075 cups_file_t *out; /* Output file */
4076 int ch; /* Character from file */
4077 char attrname[255], /* Name of attribute */
4078 *s; /* Pointer into name */
4079 ipp_attribute_t *attr; /* Attribute */
4080
4081
4082 cupsdLogMessage(CUPSD_LOG_DEBUG2,
4083 "copy_banner(con=%p[%d], job=%p[%d], name=\"%s\")",
4084 con, con ? con->number : -1, job, job->id,
4085 name ? name : "(null)");
4086
4087 /*
4088 * Find the banner; return if not found or "none"...
4089 */
4090
4091 if (!name || !strcmp(name, "none") ||
4092 (banner = cupsdFindBanner(name)) == NULL)
4093 return (0);
4094
4095 /*
4096 * Open the banner and job files...
4097 */
4098
4099 if (add_file(con, job, banner->filetype, 0))
4100 return (-1);
4101
4102 snprintf(filename, sizeof(filename), "%s/d%05d-%03d", RequestRoot, job->id,
4103 job->num_files);
4104 if ((out = cupsFileOpen(filename, "w")) == NULL)
4105 {
4106 cupsdLogMessage(CUPSD_LOG_ERROR,
4107 "Unable to create banner job file %s - %s",
4108 filename, strerror(errno));
4109 job->num_files --;
4110 return (0);
4111 }
4112
4113 fchmod(cupsFileNumber(out), 0640);
4114 fchown(cupsFileNumber(out), RunUser, Group);
4115
4116 /*
4117 * Try the localized banner file under the subdirectory...
4118 */
4119
4120 strlcpy(attrname, job->attrs->attrs->next->values[0].string.text,
4121 sizeof(attrname));
4122 if (strlen(attrname) > 2 && attrname[2] == '-')
4123 {
4124 /*
4125 * Convert ll-cc to ll_CC...
4126 */
4127
4128 attrname[2] = '_';
4129 attrname[3] = (char)toupper(attrname[3] & 255);
4130 attrname[4] = (char)toupper(attrname[4] & 255);
4131 }
4132
4133 snprintf(filename, sizeof(filename), "%s/banners/%s/%s", DataDir,
4134 attrname, name);
4135
4136 if (access(filename, 0) && strlen(attrname) > 2)
4137 {
4138 /*
4139 * Wasn't able to find "ll_CC" locale file; try the non-national
4140 * localization banner directory.
4141 */
4142
4143 attrname[2] = '\0';
4144
4145 snprintf(filename, sizeof(filename), "%s/banners/%s/%s", DataDir,
4146 attrname, name);
4147 }
4148
4149 if (access(filename, 0))
4150 {
4151 /*
4152 * Use the non-localized banner file.
4153 */
4154
4155 snprintf(filename, sizeof(filename), "%s/banners/%s", DataDir, name);
4156 }
4157
4158 if ((in = cupsFileOpen(filename, "r")) == NULL)
4159 {
4160 cupsFileClose(out);
4161 unlink(filename);
4162 cupsdLogMessage(CUPSD_LOG_ERROR,
4163 "Unable to open banner template file %s - %s",
4164 filename, strerror(errno));
4165 job->num_files --;
4166 return (0);
4167 }
4168
4169 /*
4170 * Parse the file to the end...
4171 */
4172
4173 while ((ch = cupsFileGetChar(in)) != EOF)
4174 if (ch == '{')
4175 {
4176 /*
4177 * Get an attribute name...
4178 */
4179
4180 for (s = attrname; (ch = cupsFileGetChar(in)) != EOF;)
4181 if (!isalpha(ch & 255) && ch != '-' && ch != '?')
4182 break;
4183 else if (s < (attrname + sizeof(attrname) - 1))
4184 *s++ = (char)ch;
4185 else
4186 break;
4187
4188 *s = '\0';
4189
4190 if (ch != '}')
4191 {
4192 /*
4193 * Ignore { followed by stuff that is not an attribute name...
4194 */
4195
4196 cupsFilePrintf(out, "{%s%c", attrname, ch);
4197 continue;
4198 }
4199
4200 /*
4201 * See if it is defined...
4202 */
4203
4204 if (attrname[0] == '?')
4205 s = attrname + 1;
4206 else
4207 s = attrname;
4208
4209 if (!strcmp(s, "printer-name"))
4210 {
4211 cupsFilePuts(out, job->dest);
4212 continue;
4213 }
4214 else if ((attr = ippFindAttribute(job->attrs, s, IPP_TAG_ZERO)) == NULL)
4215 {
4216 /*
4217 * See if we have a leading question mark...
4218 */
4219
4220 if (attrname[0] != '?')
4221 {
4222 /*
4223 * Nope, write to file as-is; probably a PostScript procedure...
4224 */
4225
4226 cupsFilePrintf(out, "{%s}", attrname);
4227 }
4228
4229 continue;
4230 }
4231
4232 /*
4233 * Output value(s)...
4234 */
4235
4236 for (i = 0; i < attr->num_values; i ++)
4237 {
4238 if (i)
4239 cupsFilePutChar(out, ',');
4240
4241 switch (attr->value_tag)
4242 {
4243 case IPP_TAG_INTEGER :
4244 case IPP_TAG_ENUM :
4245 if (!strncmp(s, "time-at-", 8))
4246 {
4247 struct timeval tv; /* Time value */
4248
4249 tv.tv_sec = attr->values[i].integer;
4250 tv.tv_usec = 0;
4251
4252 cupsFilePuts(out, cupsdGetDateTime(&tv, CUPSD_TIME_STANDARD));
4253 }
4254 else
4255 cupsFilePrintf(out, "%d", attr->values[i].integer);
4256 break;
4257
4258 case IPP_TAG_BOOLEAN :
4259 cupsFilePrintf(out, "%d", attr->values[i].boolean);
4260 break;
4261
4262 case IPP_TAG_NOVALUE :
4263 cupsFilePuts(out, "novalue");
4264 break;
4265
4266 case IPP_TAG_RANGE :
4267 cupsFilePrintf(out, "%d-%d", attr->values[i].range.lower,
4268 attr->values[i].range.upper);
4269 break;
4270
4271 case IPP_TAG_RESOLUTION :
4272 cupsFilePrintf(out, "%dx%d%s", attr->values[i].resolution.xres,
4273 attr->values[i].resolution.yres,
4274 attr->values[i].resolution.units == IPP_RES_PER_INCH ?
4275 "dpi" : "dpcm");
4276 break;
4277
4278 case IPP_TAG_URI :
4279 case IPP_TAG_STRING :
4280 case IPP_TAG_TEXT :
4281 case IPP_TAG_NAME :
4282 case IPP_TAG_KEYWORD :
4283 case IPP_TAG_CHARSET :
4284 case IPP_TAG_LANGUAGE :
4285 if (!_cups_strcasecmp(banner->filetype->type, "postscript"))
4286 {
4287 /*
4288 * Need to quote strings for PS banners...
4289 */
4290
4291 const char *p;
4292
4293 for (p = attr->values[i].string.text; *p; p ++)
4294 {
4295 if (*p == '(' || *p == ')' || *p == '\\')
4296 {
4297 cupsFilePutChar(out, '\\');
4298 cupsFilePutChar(out, *p);
4299 }
4300 else if (*p < 32 || *p > 126)
4301 cupsFilePrintf(out, "\\%03o", *p & 255);
4302 else
4303 cupsFilePutChar(out, *p);
4304 }
4305 }
4306 else
4307 cupsFilePuts(out, attr->values[i].string.text);
4308 break;
4309
4310 default :
4311 break; /* anti-compiler-warning-code */
4312 }
4313 }
4314 }
4315 else if (ch == '\\') /* Quoted char */
4316 {
4317 ch = cupsFileGetChar(in);
4318
4319 if (ch != '{') /* Only do special handling for \{ */
4320 cupsFilePutChar(out, '\\');
4321
4322 cupsFilePutChar(out, ch);
4323 }
4324 else
4325 cupsFilePutChar(out, ch);
4326
4327 cupsFileClose(in);
4328
4329 kbytes = (cupsFileTell(out) + 1023) / 1024;
4330
4331 if ((attr = ippFindAttribute(job->attrs, "job-k-octets",
4332 IPP_TAG_INTEGER)) != NULL)
4333 attr->values[0].integer += kbytes;
4334
4335 cupsFileClose(out);
4336
4337 return (kbytes);
4338 }
4339
4340
4341 /*
4342 * 'copy_file()' - Copy a PPD file or interface script...
4343 */
4344
4345 static int /* O - 0 = success, -1 = error */
4346 copy_file(const char *from, /* I - Source file */
4347 const char *to) /* I - Destination file */
4348 {
4349 cups_file_t *src, /* Source file */
4350 *dst; /* Destination file */
4351 int bytes; /* Bytes to read/write */
4352 char buffer[2048]; /* Copy buffer */
4353
4354
4355 cupsdLogMessage(CUPSD_LOG_DEBUG2, "copy_file(\"%s\", \"%s\")", from, to);
4356
4357 /*
4358 * Open the source and destination file for a copy...
4359 */
4360
4361 if ((src = cupsFileOpen(from, "rb")) == NULL)
4362 return (-1);
4363
4364 if ((dst = cupsFileOpen(to, "wb")) == NULL)
4365 {
4366 cupsFileClose(src);
4367 return (-1);
4368 }
4369
4370 /*
4371 * Copy the source file to the destination...
4372 */
4373
4374 while ((bytes = cupsFileRead(src, buffer, sizeof(buffer))) > 0)
4375 if (cupsFileWrite(dst, buffer, (size_t)bytes) < bytes)
4376 {
4377 cupsFileClose(src);
4378 cupsFileClose(dst);
4379 return (-1);
4380 }
4381
4382 /*
4383 * Close both files and return...
4384 */
4385
4386 cupsFileClose(src);
4387
4388 return (cupsFileClose(dst));
4389 }
4390
4391
4392 /*
4393 * 'copy_model()' - Copy a PPD model file, substituting default values
4394 * as needed...
4395 */
4396
4397 static int /* O - 0 = success, -1 = error */
4398 copy_model(cupsd_client_t *con, /* I - Client connection */
4399 const char *from, /* I - Source file */
4400 const char *to) /* I - Destination file */
4401 {
4402 fd_set input; /* select() input set */
4403 struct timeval timeout; /* select() timeout */
4404 int maxfd; /* Max file descriptor for select() */
4405 char tempfile[1024]; /* Temporary PPD file */
4406 int tempfd; /* Temporary PPD file descriptor */
4407 int temppid; /* Process ID of cups-driverd */
4408 int temppipe[2]; /* Temporary pipes */
4409 char *argv[4], /* Command-line arguments */
4410 *envp[MAX_ENV]; /* Environment */
4411 cups_file_t *src, /* Source file */
4412 *dst; /* Destination file */
4413 ppd_file_t *ppd; /* PPD file */
4414 int bytes, /* Bytes from pipe */
4415 total; /* Total bytes from pipe */
4416 char buffer[2048]; /* Copy buffer */
4417 int i; /* Looping var */
4418 char option[PPD_MAX_NAME], /* Option name */
4419 choice[PPD_MAX_NAME]; /* Choice name */
4420 ppd_size_t *size; /* Default size */
4421 int num_defaults; /* Number of default options */
4422 cups_option_t *defaults; /* Default options */
4423 char cups_protocol[PPD_MAX_LINE];
4424 /* cupsProtocol attribute */
4425
4426
4427 cupsdLogMessage(CUPSD_LOG_DEBUG2,
4428 "copy_model(con=%p, from=\"%s\", to=\"%s\")",
4429 con, from, to);
4430
4431 /*
4432 * Run cups-driverd to get the PPD file...
4433 */
4434
4435 argv[0] = "cups-driverd";
4436 argv[1] = "cat";
4437 argv[2] = (char *)from;
4438 argv[3] = NULL;
4439
4440 cupsdLoadEnv(envp, (int)(sizeof(envp) / sizeof(envp[0])));
4441
4442 snprintf(buffer, sizeof(buffer), "%s/daemon/cups-driverd", ServerBin);
4443 snprintf(tempfile, sizeof(tempfile), "%s/%d.ppd", TempDir, con->number);
4444 tempfd = open(tempfile, O_WRONLY | O_CREAT | O_TRUNC, 0600);
4445 if (tempfd < 0 || cupsdOpenPipe(temppipe))
4446 return (-1);
4447
4448 cupsdLogMessage(CUPSD_LOG_DEBUG,
4449 "copy_model: Running \"cups-driverd cat %s\"...", from);
4450
4451 if (!cupsdStartProcess(buffer, argv, envp, -1, temppipe[1], CGIPipes[1],
4452 -1, -1, 0, DefaultProfile, NULL, &temppid))
4453 {
4454 close(tempfd);
4455 unlink(tempfile);
4456
4457 return (-1);
4458 }
4459
4460 close(temppipe[1]);
4461
4462 /*
4463 * Wait up to 30 seconds for the PPD file to be copied...
4464 */
4465
4466 total = 0;
4467
4468 if (temppipe[0] > CGIPipes[0])
4469 maxfd = temppipe[0] + 1;
4470 else
4471 maxfd = CGIPipes[0] + 1;
4472
4473 for (;;)
4474 {
4475 /*
4476 * See if we have data ready...
4477 */
4478
4479 FD_ZERO(&input);
4480 FD_SET(temppipe[0], &input);
4481 FD_SET(CGIPipes[0], &input);
4482
4483 timeout.tv_sec = 30;
4484 timeout.tv_usec = 0;
4485
4486 if ((i = select(maxfd, &input, NULL, NULL, &timeout)) < 0)
4487 {
4488 if (errno == EINTR)
4489 continue;
4490 else
4491 break;
4492 }
4493 else if (i == 0)
4494 {
4495 /*
4496 * We have timed out...
4497 */
4498
4499 break;
4500 }
4501
4502 if (FD_ISSET(temppipe[0], &input))
4503 {
4504 /*
4505 * Read the PPD file from the pipe, and write it to the PPD file.
4506 */
4507
4508 if ((bytes = read(temppipe[0], buffer, sizeof(buffer))) > 0)
4509 {
4510 if (write(tempfd, buffer, (size_t)bytes) < bytes)
4511 break;
4512
4513 total += bytes;
4514 }
4515 else
4516 break;
4517 }
4518
4519 if (FD_ISSET(CGIPipes[0], &input))
4520 cupsdUpdateCGI();
4521 }
4522
4523 close(temppipe[0]);
4524 close(tempfd);
4525
4526 if (!total)
4527 {
4528 /*
4529 * No data from cups-deviced...
4530 */
4531
4532 cupsdLogMessage(CUPSD_LOG_ERROR, "copy_model: empty PPD file");
4533 unlink(tempfile);
4534 return (-1);
4535 }
4536
4537 /*
4538 * Open the source file for a copy...
4539 */
4540
4541 if ((src = cupsFileOpen(tempfile, "rb")) == NULL)
4542 {
4543 unlink(tempfile);
4544 return (-1);
4545 }
4546
4547 /*
4548 * Read the source file and see what page sizes are supported...
4549 */
4550
4551 if ((ppd = _ppdOpen(src, _PPD_LOCALIZATION_NONE)) == NULL)
4552 {
4553 cupsFileClose(src);
4554 unlink(tempfile);
4555 return (-1);
4556 }
4557
4558 /*
4559 * Open the destination (if possible) and set the default options...
4560 */
4561
4562 num_defaults = 0;
4563 defaults = NULL;
4564 cups_protocol[0] = '\0';
4565
4566 if ((dst = cupsFileOpen(to, "rb")) != NULL)
4567 {
4568 /*
4569 * Read all of the default lines from the old PPD...
4570 */
4571
4572 while (cupsFileGets(dst, buffer, sizeof(buffer)))
4573 if (!strncmp(buffer, "*Default", 8))
4574 {
4575 /*
4576 * Add the default option...
4577 */
4578
4579 if (!ppd_parse_line(buffer, option, sizeof(option),
4580 choice, sizeof(choice)))
4581 {
4582 ppd_option_t *ppdo; /* PPD option */
4583
4584
4585 /*
4586 * Only add the default if the default hasn't already been
4587 * set and the choice exists in the new PPD...
4588 */
4589
4590 if (!cupsGetOption(option, num_defaults, defaults) &&
4591 (ppdo = ppdFindOption(ppd, option)) != NULL &&
4592 ppdFindChoice(ppdo, choice))
4593 num_defaults = cupsAddOption(option, choice, num_defaults,
4594 &defaults);
4595 }
4596 }
4597 else if (!strncmp(buffer, "*cupsProtocol:", 14))
4598 strlcpy(cups_protocol, buffer, sizeof(cups_protocol));
4599
4600 cupsFileClose(dst);
4601 }
4602 else if ((size = ppdPageSize(ppd, DefaultPaperSize)) != NULL)
4603 {
4604 /*
4605 * Add the default media sizes...
4606 */
4607
4608 num_defaults = cupsAddOption("PageSize", size->name,
4609 num_defaults, &defaults);
4610 num_defaults = cupsAddOption("PageRegion", size->name,
4611 num_defaults, &defaults);
4612 num_defaults = cupsAddOption("PaperDimension", size->name,
4613 num_defaults, &defaults);
4614 num_defaults = cupsAddOption("ImageableArea", size->name,
4615 num_defaults, &defaults);
4616 }
4617
4618 ppdClose(ppd);
4619
4620 /*
4621 * Open the destination file for a copy...
4622 */
4623
4624 if ((dst = cupsFileOpen(to, "wb")) == NULL)
4625 {
4626 cupsFreeOptions(num_defaults, defaults);
4627 cupsFileClose(src);
4628 unlink(tempfile);
4629 return (-1);
4630 }
4631
4632 /*
4633 * Copy the source file to the destination...
4634 */
4635
4636 cupsFileRewind(src);
4637
4638 while (cupsFileGets(src, buffer, sizeof(buffer)))
4639 {
4640 if (!strncmp(buffer, "*Default", 8))
4641 {
4642 /*
4643 * Check for an previous default option choice...
4644 */
4645
4646 if (!ppd_parse_line(buffer, option, sizeof(option),
4647 choice, sizeof(choice)))
4648 {
4649 const char *val; /* Default option value */
4650
4651
4652 if ((val = cupsGetOption(option, num_defaults, defaults)) != NULL)
4653 {
4654 /*
4655 * Substitute the previous choice...
4656 */
4657
4658 snprintf(buffer, sizeof(buffer), "*Default%s: %s", option, val);
4659 }
4660 }
4661 }
4662
4663 cupsFilePrintf(dst, "%s\n", buffer);
4664 }
4665
4666 if (cups_protocol[0])
4667 cupsFilePrintf(dst, "%s\n", cups_protocol);
4668
4669 cupsFreeOptions(num_defaults, defaults);
4670
4671 /*
4672 * Close both files and return...
4673 */
4674
4675 cupsFileClose(src);
4676
4677 unlink(tempfile);
4678
4679 return (cupsFileClose(dst));
4680 }
4681
4682
4683 /*
4684 * 'copy_job_attrs()' - Copy job attributes.
4685 */
4686
4687 static void
4688 copy_job_attrs(cupsd_client_t *con, /* I - Client connection */
4689 cupsd_job_t *job, /* I - Job */
4690 cups_array_t *ra, /* I - Requested attributes array */
4691 cups_array_t *exclude) /* I - Private attributes array */
4692 {
4693 char job_uri[HTTP_MAX_URI]; /* Job URI */
4694
4695
4696 /*
4697 * Send the requested attributes for each job...
4698 */
4699
4700 if (!cupsArrayFind(exclude, "all"))
4701 {
4702 if ((!exclude || !cupsArrayFind(exclude, "number-of-documents")) &&
4703 (!ra || cupsArrayFind(ra, "number-of-documents")))
4704 ippAddInteger(con->response, IPP_TAG_JOB, IPP_TAG_INTEGER,
4705 "number-of-documents", job->num_files);
4706
4707 if ((!exclude || !cupsArrayFind(exclude, "job-media-progress")) &&
4708 (!ra || cupsArrayFind(ra, "job-media-progress")))
4709 ippAddInteger(con->response, IPP_TAG_JOB, IPP_TAG_INTEGER,
4710 "job-media-progress", job->progress);
4711
4712 if ((!exclude || !cupsArrayFind(exclude, "job-more-info")) &&
4713 (!ra || cupsArrayFind(ra, "job-more-info")))
4714 {
4715 httpAssembleURIf(HTTP_URI_CODING_ALL, job_uri, sizeof(job_uri), "http",
4716 NULL, con->clientname, con->clientport, "/jobs/%d",
4717 job->id);
4718 ippAddString(con->response, IPP_TAG_JOB, IPP_TAG_URI,
4719 "job-more-info", NULL, job_uri);
4720 }
4721
4722 if (job->state_value > IPP_JOB_PROCESSING &&
4723 (!exclude || !cupsArrayFind(exclude, "job-preserved")) &&
4724 (!ra || cupsArrayFind(ra, "job-preserved")))
4725 ippAddBoolean(con->response, IPP_TAG_JOB, "job-preserved",
4726 job->num_files > 0);
4727
4728 if ((!exclude || !cupsArrayFind(exclude, "job-printer-up-time")) &&
4729 (!ra || cupsArrayFind(ra, "job-printer-up-time")))
4730 ippAddInteger(con->response, IPP_TAG_JOB, IPP_TAG_INTEGER,
4731 "job-printer-up-time", time(NULL));
4732 }
4733
4734 if (!ra || cupsArrayFind(ra, "job-printer-uri"))
4735 {
4736 httpAssembleURIf(HTTP_URI_CODING_ALL, job_uri, sizeof(job_uri), "ipp", NULL,
4737 con->clientname, con->clientport,
4738 (job->dtype & CUPS_PRINTER_CLASS) ? "/classes/%s" :
4739 "/printers/%s",
4740 job->dest);
4741 ippAddString(con->response, IPP_TAG_JOB, IPP_TAG_URI,
4742 "job-printer-uri", NULL, job_uri);
4743 }
4744
4745 if (!ra || cupsArrayFind(ra, "job-uri"))
4746 {
4747 httpAssembleURIf(HTTP_URI_CODING_ALL, job_uri, sizeof(job_uri), "ipp", NULL,
4748 con->clientname, con->clientport, "/jobs/%d",
4749 job->id);
4750 ippAddString(con->response, IPP_TAG_JOB, IPP_TAG_URI,
4751 "job-uri", NULL, job_uri);
4752 }
4753
4754 copy_attrs(con->response, job->attrs, ra, IPP_TAG_JOB, 0, exclude);
4755 }
4756
4757
4758 /*
4759 * 'copy_printer_attrs()' - Copy printer attributes.
4760 */
4761
4762 static void
4763 copy_printer_attrs(
4764 cupsd_client_t *con, /* I - Client connection */
4765 cupsd_printer_t *printer, /* I - Printer */
4766 cups_array_t *ra) /* I - Requested attributes array */
4767 {
4768 char printer_uri[HTTP_MAX_URI];
4769 /* Printer URI */
4770 char printer_icons[HTTP_MAX_URI];
4771 /* Printer icons */
4772 time_t curtime; /* Current time */
4773 int i; /* Looping var */
4774
4775
4776 /*
4777 * Copy the printer attributes to the response using requested-attributes
4778 * and document-format attributes that may be provided by the client.
4779 */
4780
4781 curtime = time(NULL);
4782
4783 if (!ra || cupsArrayFind(ra, "marker-change-time"))
4784 ippAddInteger(con->response, IPP_TAG_PRINTER, IPP_TAG_INTEGER,
4785 "marker-change-time", printer->marker_time);
4786
4787 if (printer->num_printers > 0 &&
4788 (!ra || cupsArrayFind(ra, "member-uris")))
4789 {
4790 ipp_attribute_t *member_uris; /* member-uris attribute */
4791 cupsd_printer_t *p2; /* Printer in class */
4792 ipp_attribute_t *p2_uri; /* printer-uri-supported for class printer */
4793
4794
4795 if ((member_uris = ippAddStrings(con->response, IPP_TAG_PRINTER,
4796 IPP_TAG_URI, "member-uris",
4797 printer->num_printers, NULL,
4798 NULL)) != NULL)
4799 {
4800 for (i = 0; i < printer->num_printers; i ++)
4801 {
4802 p2 = printer->printers[i];
4803
4804 if ((p2_uri = ippFindAttribute(p2->attrs, "printer-uri-supported",
4805 IPP_TAG_URI)) != NULL)
4806 member_uris->values[i].string.text =
4807 _cupsStrRetain(p2_uri->values[0].string.text);
4808 else
4809 {
4810 httpAssembleURIf(HTTP_URI_CODING_ALL, printer_uri,
4811 sizeof(printer_uri), "ipp", NULL, con->clientname,
4812 con->clientport,
4813 (p2->type & CUPS_PRINTER_CLASS) ?
4814 "/classes/%s" : "/printers/%s", p2->name);
4815 member_uris->values[i].string.text = _cupsStrAlloc(printer_uri);
4816 }
4817 }
4818 }
4819 }
4820
4821 if (printer->alert && (!ra || cupsArrayFind(ra, "printer-alert")))
4822 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_STRING,
4823 "printer-alert", NULL, printer->alert);
4824
4825 if (printer->alert_description &&
4826 (!ra || cupsArrayFind(ra, "printer-alert-description")))
4827 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_TEXT,
4828 "printer-alert-description", NULL,
4829 printer->alert_description);
4830
4831 if (!ra || cupsArrayFind(ra, "printer-current-time"))
4832 ippAddDate(con->response, IPP_TAG_PRINTER, "printer-current-time",
4833 ippTimeToDate(curtime));
4834
4835 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
4836 if (!ra || cupsArrayFind(ra, "printer-dns-sd-name"))
4837 {
4838 if (printer->reg_name)
4839 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_NAME,
4840 "printer-dns-sd-name", NULL, printer->reg_name);
4841 else
4842 ippAddInteger(con->response, IPP_TAG_PRINTER, IPP_TAG_NOVALUE,
4843 "printer-dns-sd-name", 0);
4844 }
4845 #endif /* HAVE_DNSSD || HAVE_AVAHI */
4846
4847 if (!ra || cupsArrayFind(ra, "printer-error-policy"))
4848 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_NAME,
4849 "printer-error-policy", NULL, printer->error_policy);
4850
4851 if (!ra || cupsArrayFind(ra, "printer-error-policy-supported"))
4852 {
4853 static const char * const errors[] =/* printer-error-policy-supported values */
4854 {
4855 "abort-job",
4856 "retry-current-job",
4857 "retry-job",
4858 "stop-printer"
4859 };
4860
4861 if (printer->type & CUPS_PRINTER_CLASS)
4862 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_NAME | IPP_TAG_COPY,
4863 "printer-error-policy-supported", NULL, "retry-current-job");
4864 else
4865 ippAddStrings(con->response, IPP_TAG_PRINTER, IPP_TAG_NAME | IPP_TAG_COPY,
4866 "printer-error-policy-supported",
4867 sizeof(errors) / sizeof(errors[0]), NULL, errors);
4868 }
4869
4870 if (!ra || cupsArrayFind(ra, "printer-icons"))
4871 {
4872 httpAssembleURIf(HTTP_URI_CODING_ALL, printer_icons, sizeof(printer_icons),
4873 "http", NULL, con->clientname, con->clientport,
4874 "/icons/%s.png", printer->name);
4875 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_URI, "printer-icons",
4876 NULL, printer_icons);
4877 cupsdLogMessage(CUPSD_LOG_DEBUG2, "printer-icons=\"%s\"", printer_icons);
4878 }
4879
4880 if (!ra || cupsArrayFind(ra, "printer-is-accepting-jobs"))
4881 ippAddBoolean(con->response, IPP_TAG_PRINTER, "printer-is-accepting-jobs", (char)printer->accepting);
4882
4883 if (!ra || cupsArrayFind(ra, "printer-is-shared"))
4884 ippAddBoolean(con->response, IPP_TAG_PRINTER, "printer-is-shared", (char)printer->shared);
4885
4886 if (!ra || cupsArrayFind(ra, "printer-more-info"))
4887 {
4888 httpAssembleURIf(HTTP_URI_CODING_ALL, printer_uri, sizeof(printer_uri),
4889 "http", NULL, con->clientname, con->clientport,
4890 (printer->type & CUPS_PRINTER_CLASS) ?
4891 "/classes/%s" : "/printers/%s", printer->name);
4892 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_URI,
4893 "printer-more-info", NULL, printer_uri);
4894 }
4895
4896 if (!ra || cupsArrayFind(ra, "printer-op-policy"))
4897 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_NAME,
4898 "printer-op-policy", NULL, printer->op_policy);
4899
4900 if (!ra || cupsArrayFind(ra, "printer-state"))
4901 ippAddInteger(con->response, IPP_TAG_PRINTER, IPP_TAG_ENUM, "printer-state",
4902 printer->state);
4903
4904 if (!ra || cupsArrayFind(ra, "printer-state-change-time"))
4905 ippAddInteger(con->response, IPP_TAG_PRINTER, IPP_TAG_INTEGER,
4906 "printer-state-change-time", printer->state_time);
4907
4908 if (!ra || cupsArrayFind(ra, "printer-state-message"))
4909 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_TEXT,
4910 "printer-state-message", NULL, printer->state_message);
4911
4912 if (!ra || cupsArrayFind(ra, "printer-state-reasons"))
4913 add_printer_state_reasons(con, printer);
4914
4915 if (!ra || cupsArrayFind(ra, "printer-type"))
4916 {
4917 cups_ptype_t type; /* printer-type value */
4918
4919 /*
4920 * Add the CUPS-specific printer-type attribute...
4921 */
4922
4923 type = printer->type;
4924
4925 if (printer == DefaultPrinter)
4926 type |= CUPS_PRINTER_DEFAULT;
4927
4928 if (!printer->accepting)
4929 type |= CUPS_PRINTER_REJECTING;
4930
4931 if (!printer->shared)
4932 type |= CUPS_PRINTER_NOT_SHARED;
4933
4934 ippAddInteger(con->response, IPP_TAG_PRINTER, IPP_TAG_ENUM, "printer-type", (int)type);
4935 }
4936
4937 if (!ra || cupsArrayFind(ra, "printer-up-time"))
4938 ippAddInteger(con->response, IPP_TAG_PRINTER, IPP_TAG_INTEGER,
4939 "printer-up-time", curtime);
4940
4941 if (!ra || cupsArrayFind(ra, "printer-uri-supported"))
4942 {
4943 httpAssembleURIf(HTTP_URI_CODING_ALL, printer_uri, sizeof(printer_uri),
4944 "ipp", NULL, con->clientname, con->clientport,
4945 (printer->type & CUPS_PRINTER_CLASS) ?
4946 "/classes/%s" : "/printers/%s", printer->name);
4947 ippAddString(con->response, IPP_TAG_PRINTER, IPP_TAG_URI,
4948 "printer-uri-supported", NULL, printer_uri);
4949 cupsdLogMessage(CUPSD_LOG_DEBUG2, "printer-uri-supported=\"%s\"",
4950 printer_uri);
4951 }
4952
4953 if (!ra || cupsArrayFind(ra, "queued-job-count"))
4954 add_queued_job_count(con, printer);
4955
4956 copy_attrs(con->response, printer->attrs, ra, IPP_TAG_ZERO, 0, NULL);
4957 if (printer->ppd_attrs)
4958 copy_attrs(con->response, printer->ppd_attrs, ra, IPP_TAG_ZERO, 0, NULL);
4959 copy_attrs(con->response, CommonData, ra, IPP_TAG_ZERO, IPP_TAG_COPY, NULL);
4960 }
4961
4962
4963 /*
4964 * 'copy_subscription_attrs()' - Copy subscription attributes.
4965 */
4966
4967 static void
4968 copy_subscription_attrs(
4969 cupsd_client_t *con, /* I - Client connection */
4970 cupsd_subscription_t *sub, /* I - Subscription */
4971 cups_array_t *ra, /* I - Requested attributes array */
4972 cups_array_t *exclude) /* I - Private attributes array */
4973 {
4974 ipp_attribute_t *attr; /* Current attribute */
4975 char printer_uri[HTTP_MAX_URI];
4976 /* Printer URI */
4977 int count; /* Number of events */
4978 unsigned mask; /* Current event mask */
4979 const char *name; /* Current event name */
4980
4981
4982 cupsdLogMessage(CUPSD_LOG_DEBUG2,
4983 "copy_subscription_attrs(con=%p, sub=%p, ra=%p, exclude=%p)",
4984 con, sub, ra, exclude);
4985
4986 /*
4987 * Copy the subscription attributes to the response using the
4988 * requested-attributes attribute that may be provided by the client.
4989 */
4990
4991 if (!exclude || !cupsArrayFind(exclude, "all"))
4992 {
4993 if ((!exclude || !cupsArrayFind(exclude, "notify-events")) &&
4994 (!ra || cupsArrayFind(ra, "notify-events")))
4995 {
4996 cupsdLogMessage(CUPSD_LOG_DEBUG2, "copy_subscription_attrs: notify-events");
4997
4998 if ((name = cupsdEventName((cupsd_eventmask_t)sub->mask)) != NULL)
4999 {
5000 /*
5001 * Simple event list...
5002 */
5003
5004 ippAddString(con->response, IPP_TAG_SUBSCRIPTION,
5005 (ipp_tag_t)(IPP_TAG_KEYWORD | IPP_TAG_COPY),
5006 "notify-events", NULL, name);
5007 }
5008 else
5009 {
5010 /*
5011 * Complex event list...
5012 */
5013
5014 for (mask = 1, count = 0; mask < CUPSD_EVENT_ALL; mask <<= 1)
5015 if (sub->mask & mask)
5016 count ++;
5017
5018 attr = ippAddStrings(con->response, IPP_TAG_SUBSCRIPTION,
5019 (ipp_tag_t)(IPP_TAG_KEYWORD | IPP_TAG_COPY),
5020 "notify-events", count, NULL, NULL);
5021
5022 for (mask = 1, count = 0; mask < CUPSD_EVENT_ALL; mask <<= 1)
5023 if (sub->mask & mask)
5024 {
5025 attr->values[count].string.text =
5026 (char *)cupsdEventName((cupsd_eventmask_t)mask);
5027
5028 count ++;
5029 }
5030 }
5031 }
5032
5033 if ((!exclude || !cupsArrayFind(exclude, "notify-lease-duration")) &&
5034 (!sub->job && (!ra || cupsArrayFind(ra, "notify-lease-duration"))))
5035 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_INTEGER,
5036 "notify-lease-duration", sub->lease);
5037
5038 if ((!exclude || !cupsArrayFind(exclude, "notify-recipient-uri")) &&
5039 (sub->recipient && (!ra || cupsArrayFind(ra, "notify-recipient-uri"))))
5040 ippAddString(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_URI,
5041 "notify-recipient-uri", NULL, sub->recipient);
5042 else if ((!exclude || !cupsArrayFind(exclude, "notify-pull-method")) &&
5043 (!ra || cupsArrayFind(ra, "notify-pull-method")))
5044 ippAddString(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_KEYWORD,
5045 "notify-pull-method", NULL, "ippget");
5046
5047 if ((!exclude || !cupsArrayFind(exclude, "notify-subscriber-user-name")) &&
5048 (!ra || cupsArrayFind(ra, "notify-subscriber-user-name")))
5049 ippAddString(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_NAME,
5050 "notify-subscriber-user-name", NULL, sub->owner);
5051
5052 if ((!exclude || !cupsArrayFind(exclude, "notify-time-interval")) &&
5053 (!ra || cupsArrayFind(ra, "notify-time-interval")))
5054 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_INTEGER,
5055 "notify-time-interval", sub->interval);
5056
5057 if (sub->user_data_len > 0 &&
5058 (!exclude || !cupsArrayFind(exclude, "notify-user-data")) &&
5059 (!ra || cupsArrayFind(ra, "notify-user-data")))
5060 ippAddOctetString(con->response, IPP_TAG_SUBSCRIPTION, "notify-user-data",
5061 sub->user_data, sub->user_data_len);
5062 }
5063
5064 if (sub->job && (!ra || cupsArrayFind(ra, "notify-job-id")))
5065 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_INTEGER,
5066 "notify-job-id", sub->job->id);
5067
5068 if (sub->dest && (!ra || cupsArrayFind(ra, "notify-printer-uri")))
5069 {
5070 httpAssembleURIf(HTTP_URI_CODING_ALL, printer_uri, sizeof(printer_uri),
5071 "ipp", NULL, con->clientname, con->clientport,
5072 "/printers/%s", sub->dest->name);
5073 ippAddString(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_URI,
5074 "notify-printer-uri", NULL, printer_uri);
5075 }
5076
5077 if (!ra || cupsArrayFind(ra, "notify-subscription-id"))
5078 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_INTEGER,
5079 "notify-subscription-id", sub->id);
5080 }
5081
5082
5083 /*
5084 * 'create_job()' - Print a file to a printer or class.
5085 */
5086
5087 static void
5088 create_job(cupsd_client_t *con, /* I - Client connection */
5089 ipp_attribute_t *uri) /* I - Printer URI */
5090 {
5091 int i; /* Looping var */
5092 cupsd_printer_t *printer; /* Printer */
5093 cupsd_job_t *job; /* New job */
5094 static const char * const forbidden_attrs[] =
5095 { /* List of forbidden attributes */
5096 "compression",
5097 "document-format",
5098 "document-name",
5099 "document-natural-language"
5100 };
5101
5102
5103 cupsdLogMessage(CUPSD_LOG_DEBUG2, "create_job(%p[%d], %s)", con,
5104 con->number, uri->values[0].string.text);
5105
5106 /*
5107 * Is the destination valid?
5108 */
5109
5110 if (!cupsdValidateDest(uri->values[0].string.text, NULL, &printer))
5111 {
5112 /*
5113 * Bad URI...
5114 */
5115
5116 send_ipp_status(con, IPP_NOT_FOUND,
5117 _("The printer or class does not exist."));
5118 return;
5119 }
5120
5121 /*
5122 * Check for invalid Create-Job attributes and log a warning or error depending
5123 * on whether cupsd is running in "strict conformance" mode...
5124 */
5125
5126 for (i = 0;
5127 i < (int)(sizeof(forbidden_attrs) / sizeof(forbidden_attrs[0]));
5128 i ++)
5129 if (ippFindAttribute(con->request, forbidden_attrs[i], IPP_TAG_ZERO))
5130 {
5131 if (StrictConformance)
5132 {
5133 send_ipp_status(con, IPP_BAD_REQUEST,
5134 _("The '%s' operation attribute cannot be supplied in a "
5135 "Create-Job request."), forbidden_attrs[i]);
5136 return;
5137 }
5138
5139 cupsdLogMessage(CUPSD_LOG_WARN,
5140 "Unexpected '%s' operation attribute in a Create-Job "
5141 "request.", forbidden_attrs[i]);
5142 }
5143
5144 /*
5145 * Create the job object...
5146 */
5147
5148 if ((job = add_job(con, printer, NULL)) == NULL)
5149 return;
5150
5151 job->pending_timeout = 1;
5152
5153 /*
5154 * Save and log the job...
5155 */
5156
5157 cupsdLogJob(job, CUPSD_LOG_INFO, "Queued on \"%s\" by \"%s\".",
5158 job->dest, job->username);
5159 }
5160
5161
5162 /*
5163 * 'create_requested_array()' - Create an array for the requested-attributes.
5164 */
5165
5166 static cups_array_t * /* O - Array of attributes or NULL */
5167 create_requested_array(ipp_t *request) /* I - IPP request */
5168 {
5169 cups_array_t *ra; /* Requested attributes array */
5170
5171
5172 /*
5173 * Create the array for standard attributes...
5174 */
5175
5176 ra = ippCreateRequestedArray(request);
5177
5178 /*
5179 * Add CUPS defaults as needed...
5180 */
5181
5182 if (cupsArrayFind(ra, "printer-defaults"))
5183 {
5184 /*
5185 * Include user-set defaults...
5186 */
5187
5188 char *name; /* Option name */
5189
5190 cupsArrayRemove(ra, "printer-defaults");
5191
5192 for (name = (char *)cupsArrayFirst(CommonDefaults);
5193 name;
5194 name = (char *)cupsArrayNext(CommonDefaults))
5195 if (!cupsArrayFind(ra, name))
5196 cupsArrayAdd(ra, name);
5197 }
5198
5199 return (ra);
5200 }
5201
5202
5203 /*
5204 * 'create_subscription()' - Create a notification subscription.
5205 */
5206
5207 static void
5208 create_subscription(
5209 cupsd_client_t *con, /* I - Client connection */
5210 ipp_attribute_t *uri) /* I - Printer URI */
5211 {
5212 http_status_t status; /* Policy status */
5213 int i; /* Looping var */
5214 ipp_attribute_t *attr; /* Current attribute */
5215 cups_ptype_t dtype; /* Destination type (printer/class) */
5216 char scheme[HTTP_MAX_URI],
5217 /* Scheme portion of URI */
5218 userpass[HTTP_MAX_URI],
5219 /* Username portion of URI */
5220 host[HTTP_MAX_URI],
5221 /* Host portion of URI */
5222 resource[HTTP_MAX_URI];
5223 /* Resource portion of URI */
5224 int port; /* Port portion of URI */
5225 cupsd_printer_t *printer; /* Printer/class */
5226 cupsd_job_t *job; /* Job */
5227 int jobid; /* Job ID */
5228 cupsd_subscription_t *sub; /* Subscription object */
5229 const char *username, /* requesting-user-name or
5230 authenticated username */
5231 *recipient, /* notify-recipient-uri */
5232 *pullmethod; /* notify-pull-method */
5233 ipp_attribute_t *user_data; /* notify-user-data */
5234 int interval, /* notify-time-interval */
5235 lease; /* notify-lease-duration */
5236 unsigned mask; /* notify-events */
5237 ipp_attribute_t *notify_events,/* notify-events(-default) */
5238 *notify_lease; /* notify-lease-duration(-default) */
5239
5240
5241 #ifdef DEBUG
5242 for (attr = con->request->attrs; attr; attr = attr->next)
5243 {
5244 if (attr->group_tag != IPP_TAG_ZERO)
5245 cupsdLogMessage(CUPSD_LOG_DEBUG2, "g%04x v%04x %s", attr->group_tag,
5246 attr->value_tag, attr->name);
5247 else
5248 cupsdLogMessage(CUPSD_LOG_DEBUG2, "----SEP----");
5249 }
5250 #endif /* DEBUG */
5251
5252 /*
5253 * Is the destination valid?
5254 */
5255
5256 cupsdLogMessage(CUPSD_LOG_DEBUG,
5257 "cupsdCreateSubscription(con=%p(%d), uri=\"%s\")",
5258 con, con->number, uri->values[0].string.text);
5259
5260 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
5261 sizeof(scheme), userpass, sizeof(userpass), host,
5262 sizeof(host), &port, resource, sizeof(resource));
5263
5264 if (!strcmp(resource, "/"))
5265 {
5266 dtype = (cups_ptype_t)0;
5267 printer = NULL;
5268 }
5269 else if (!strncmp(resource, "/printers", 9) && strlen(resource) <= 10)
5270 {
5271 dtype = (cups_ptype_t)0;
5272 printer = NULL;
5273 }
5274 else if (!strncmp(resource, "/classes", 8) && strlen(resource) <= 9)
5275 {
5276 dtype = CUPS_PRINTER_CLASS;
5277 printer = NULL;
5278 }
5279 else if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
5280 {
5281 /*
5282 * Bad URI...
5283 */
5284
5285 send_ipp_status(con, IPP_NOT_FOUND,
5286 _("The printer or class does not exist."));
5287 return;
5288 }
5289
5290 /*
5291 * Check policy...
5292 */
5293
5294 if (printer)
5295 {
5296 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con,
5297 NULL)) != HTTP_OK)
5298 {
5299 send_http_error(con, status, printer);
5300 return;
5301 }
5302 }
5303 else if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
5304 {
5305 send_http_error(con, status, NULL);
5306 return;
5307 }
5308
5309 /*
5310 * Get the user that is requesting the subscription...
5311 */
5312
5313 username = get_username(con);
5314
5315 /*
5316 * Find the first subscription group attribute; return if we have
5317 * none...
5318 */
5319
5320 for (attr = con->request->attrs; attr; attr = attr->next)
5321 if (attr->group_tag == IPP_TAG_SUBSCRIPTION)
5322 break;
5323
5324 if (!attr)
5325 {
5326 send_ipp_status(con, IPP_BAD_REQUEST,
5327 _("No subscription attributes in request."));
5328 return;
5329 }
5330
5331 /*
5332 * Process the subscription attributes in the request...
5333 */
5334
5335 con->response->request.status.status_code = IPP_BAD_REQUEST;
5336
5337 while (attr)
5338 {
5339 recipient = NULL;
5340 pullmethod = NULL;
5341 user_data = NULL;
5342 interval = 0;
5343 lease = DefaultLeaseDuration;
5344 jobid = 0;
5345 mask = CUPSD_EVENT_NONE;
5346
5347 if (printer)
5348 {
5349 notify_events = ippFindAttribute(printer->attrs, "notify-events-default",
5350 IPP_TAG_KEYWORD);
5351 notify_lease = ippFindAttribute(printer->attrs,
5352 "notify-lease-duration-default",
5353 IPP_TAG_INTEGER);
5354
5355 if (notify_lease)
5356 lease = notify_lease->values[0].integer;
5357 }
5358 else
5359 {
5360 notify_events = NULL;
5361 notify_lease = NULL;
5362 }
5363
5364 while (attr && attr->group_tag != IPP_TAG_ZERO)
5365 {
5366 if (!strcmp(attr->name, "notify-recipient-uri") &&
5367 attr->value_tag == IPP_TAG_URI)
5368 {
5369 /*
5370 * Validate the recipient scheme against the ServerBin/notifier
5371 * directory...
5372 */
5373
5374 char notifier[1024]; /* Notifier filename */
5375
5376
5377 recipient = attr->values[0].string.text;
5378
5379 if (httpSeparateURI(HTTP_URI_CODING_ALL, recipient,
5380 scheme, sizeof(scheme), userpass, sizeof(userpass),
5381 host, sizeof(host), &port,
5382 resource, sizeof(resource)) < HTTP_URI_OK)
5383 {
5384 send_ipp_status(con, IPP_NOT_POSSIBLE,
5385 _("Bad notify-recipient-uri \"%s\"."), recipient);
5386 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_ENUM,
5387 "notify-status-code", IPP_URI_SCHEME);
5388 return;
5389 }
5390
5391 snprintf(notifier, sizeof(notifier), "%s/notifier/%s", ServerBin,
5392 scheme);
5393 if (access(notifier, X_OK))
5394 {
5395 send_ipp_status(con, IPP_NOT_POSSIBLE,
5396 _("notify-recipient-uri URI \"%s\" uses unknown "
5397 "scheme."), recipient);
5398 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_ENUM,
5399 "notify-status-code", IPP_URI_SCHEME);
5400 return;
5401 }
5402
5403 if (!strcmp(scheme, "rss") && !check_rss_recipient(recipient))
5404 {
5405 send_ipp_status(con, IPP_NOT_POSSIBLE,
5406 _("notify-recipient-uri URI \"%s\" is already used."),
5407 recipient);
5408 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_ENUM,
5409 "notify-status-code", IPP_ATTRIBUTES);
5410 return;
5411 }
5412 }
5413 else if (!strcmp(attr->name, "notify-pull-method") &&
5414 attr->value_tag == IPP_TAG_KEYWORD)
5415 {
5416 pullmethod = attr->values[0].string.text;
5417
5418 if (strcmp(pullmethod, "ippget"))
5419 {
5420 send_ipp_status(con, IPP_NOT_POSSIBLE,
5421 _("Bad notify-pull-method \"%s\"."), pullmethod);
5422 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_ENUM,
5423 "notify-status-code", IPP_ATTRIBUTES);
5424 return;
5425 }
5426 }
5427 else if (!strcmp(attr->name, "notify-charset") &&
5428 attr->value_tag == IPP_TAG_CHARSET &&
5429 strcmp(attr->values[0].string.text, "us-ascii") &&
5430 strcmp(attr->values[0].string.text, "utf-8"))
5431 {
5432 send_ipp_status(con, IPP_CHARSET,
5433 _("Character set \"%s\" not supported."),
5434 attr->values[0].string.text);
5435 return;
5436 }
5437 else if (!strcmp(attr->name, "notify-natural-language") &&
5438 (attr->value_tag != IPP_TAG_LANGUAGE ||
5439 strcmp(attr->values[0].string.text, DefaultLanguage)))
5440 {
5441 send_ipp_status(con, IPP_CHARSET,
5442 _("Language \"%s\" not supported."),
5443 attr->values[0].string.text);
5444 return;
5445 }
5446 else if (!strcmp(attr->name, "notify-user-data") &&
5447 attr->value_tag == IPP_TAG_STRING)
5448 {
5449 if (attr->num_values > 1 || attr->values[0].unknown.length > 63)
5450 {
5451 send_ipp_status(con, IPP_REQUEST_VALUE,
5452 _("The notify-user-data value is too large "
5453 "(%d > 63 octets)."),
5454 attr->values[0].unknown.length);
5455 return;
5456 }
5457
5458 user_data = attr;
5459 }
5460 else if (!strcmp(attr->name, "notify-events") &&
5461 attr->value_tag == IPP_TAG_KEYWORD)
5462 notify_events = attr;
5463 else if (!strcmp(attr->name, "notify-lease-duration") &&
5464 attr->value_tag == IPP_TAG_INTEGER)
5465 lease = attr->values[0].integer;
5466 else if (!strcmp(attr->name, "notify-time-interval") &&
5467 attr->value_tag == IPP_TAG_INTEGER)
5468 interval = attr->values[0].integer;
5469 else if (!strcmp(attr->name, "notify-job-id") &&
5470 attr->value_tag == IPP_TAG_INTEGER)
5471 jobid = attr->values[0].integer;
5472
5473 attr = attr->next;
5474 }
5475
5476 if (notify_events)
5477 {
5478 for (i = 0; i < notify_events->num_values; i ++)
5479 mask |= cupsdEventValue(notify_events->values[i].string.text);
5480 }
5481
5482 if (recipient)
5483 cupsdLogMessage(CUPSD_LOG_DEBUG, "recipient=\"%s\"", recipient);
5484 if (pullmethod)
5485 cupsdLogMessage(CUPSD_LOG_DEBUG, "pullmethod=\"%s\"", pullmethod);
5486 cupsdLogMessage(CUPSD_LOG_DEBUG, "notify-lease-duration=%d", lease);
5487 cupsdLogMessage(CUPSD_LOG_DEBUG, "notify-time-interval=%d", interval);
5488
5489 if (!recipient && !pullmethod)
5490 break;
5491
5492 if (mask == CUPSD_EVENT_NONE)
5493 {
5494 if (jobid)
5495 mask = CUPSD_EVENT_JOB_COMPLETED;
5496 else if (printer)
5497 mask = CUPSD_EVENT_PRINTER_STATE_CHANGED;
5498 else
5499 {
5500 send_ipp_status(con, IPP_BAD_REQUEST,
5501 _("notify-events not specified."));
5502 return;
5503 }
5504 }
5505
5506 if (MaxLeaseDuration && (lease == 0 || lease > MaxLeaseDuration))
5507 {
5508 cupsdLogMessage(CUPSD_LOG_INFO,
5509 "create_subscription: Limiting notify-lease-duration to "
5510 "%d seconds.",
5511 MaxLeaseDuration);
5512 lease = MaxLeaseDuration;
5513 }
5514
5515 if (jobid)
5516 {
5517 if ((job = cupsdFindJob(jobid)) == NULL)
5518 {
5519 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."),
5520 jobid);
5521 return;
5522 }
5523 }
5524 else
5525 job = NULL;
5526
5527 if ((sub = cupsdAddSubscription(mask, printer, job, recipient, 0)) == NULL)
5528 {
5529 send_ipp_status(con, IPP_TOO_MANY_SUBSCRIPTIONS,
5530 _("There are too many subscriptions."));
5531 return;
5532 }
5533
5534 if (job)
5535 cupsdLogMessage(CUPSD_LOG_DEBUG, "Added subscription #%d for job %d.",
5536 sub->id, job->id);
5537 else if (printer)
5538 cupsdLogMessage(CUPSD_LOG_DEBUG,
5539 "Added subscription #%d for printer \"%s\".",
5540 sub->id, printer->name);
5541 else
5542 cupsdLogMessage(CUPSD_LOG_DEBUG, "Added subscription #%d for server.",
5543 sub->id);
5544
5545 sub->interval = interval;
5546 sub->lease = lease;
5547 sub->expire = lease ? time(NULL) + lease : 0;
5548
5549 cupsdSetString(&sub->owner, username);
5550
5551 if (user_data)
5552 {
5553 sub->user_data_len = user_data->values[0].unknown.length;
5554 memcpy(sub->user_data, user_data->values[0].unknown.data,
5555 (size_t)sub->user_data_len);
5556 }
5557
5558 ippAddSeparator(con->response);
5559 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_INTEGER,
5560 "notify-subscription-id", sub->id);
5561
5562 con->response->request.status.status_code = IPP_OK;
5563
5564 if (attr)
5565 attr = attr->next;
5566 }
5567
5568 cupsdMarkDirty(CUPSD_DIRTY_SUBSCRIPTIONS);
5569 }
5570
5571
5572 /*
5573 * 'delete_printer()' - Remove a printer or class from the system.
5574 */
5575
5576 static void
5577 delete_printer(cupsd_client_t *con, /* I - Client connection */
5578 ipp_attribute_t *uri) /* I - URI of printer or class */
5579 {
5580 http_status_t status; /* Policy status */
5581 cups_ptype_t dtype; /* Destination type (printer/class) */
5582 cupsd_printer_t *printer; /* Printer/class */
5583 char filename[1024]; /* Script/PPD filename */
5584
5585
5586 cupsdLogMessage(CUPSD_LOG_DEBUG2, "delete_printer(%p[%d], %s)", con,
5587 con->number, uri->values[0].string.text);
5588
5589 /*
5590 * Do we have a valid URI?
5591 */
5592
5593 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
5594 {
5595 /*
5596 * Bad URI...
5597 */
5598
5599 send_ipp_status(con, IPP_NOT_FOUND,
5600 _("The printer or class does not exist."));
5601 return;
5602 }
5603
5604 /*
5605 * Check policy...
5606 */
5607
5608 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
5609 {
5610 send_http_error(con, status, NULL);
5611 return;
5612 }
5613
5614 /*
5615 * Remove old jobs...
5616 */
5617
5618 cupsdCancelJobs(printer->name, NULL, 1);
5619
5620 /*
5621 * Remove old subscriptions and send a "deleted printer" event...
5622 */
5623
5624 cupsdAddEvent(CUPSD_EVENT_PRINTER_DELETED, printer, NULL,
5625 "%s \"%s\" deleted by \"%s\".",
5626 (dtype & CUPS_PRINTER_CLASS) ? "Class" : "Printer",
5627 printer->name, get_username(con));
5628
5629 cupsdExpireSubscriptions(printer, NULL);
5630
5631 /*
5632 * Remove any old PPD or script files...
5633 */
5634
5635 snprintf(filename, sizeof(filename), "%s/interfaces/%s", ServerRoot,
5636 printer->name);
5637 unlink(filename);
5638 snprintf(filename, sizeof(filename), "%s/interfaces/%s.O", ServerRoot,
5639 printer->name);
5640 unlink(filename);
5641
5642 snprintf(filename, sizeof(filename), "%s/ppd/%s.ppd", ServerRoot,
5643 printer->name);
5644 unlink(filename);
5645 snprintf(filename, sizeof(filename), "%s/ppd/%s.ppd.O", ServerRoot,
5646 printer->name);
5647 unlink(filename);
5648
5649 snprintf(filename, sizeof(filename), "%s/%s.png", CacheDir, printer->name);
5650 unlink(filename);
5651
5652 snprintf(filename, sizeof(filename), "%s/%s.data", CacheDir, printer->name);
5653 unlink(filename);
5654
5655 /*
5656 * Unregister color profiles...
5657 */
5658
5659 cupsdUnregisterColor(printer);
5660
5661 if (dtype & CUPS_PRINTER_CLASS)
5662 {
5663 cupsdLogMessage(CUPSD_LOG_INFO, "Class \"%s\" deleted by \"%s\".",
5664 printer->name, get_username(con));
5665
5666 cupsdDeletePrinter(printer, 0);
5667 cupsdMarkDirty(CUPSD_DIRTY_CLASSES);
5668 }
5669 else
5670 {
5671 cupsdLogMessage(CUPSD_LOG_INFO, "Printer \"%s\" deleted by \"%s\".",
5672 printer->name, get_username(con));
5673
5674 if (cupsdDeletePrinter(printer, 0))
5675 cupsdMarkDirty(CUPSD_DIRTY_CLASSES);
5676
5677 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
5678 }
5679
5680 cupsdMarkDirty(CUPSD_DIRTY_PRINTCAP);
5681
5682 /*
5683 * Return with no errors...
5684 */
5685
5686 con->response->request.status.status_code = IPP_OK;
5687 }
5688
5689
5690 /*
5691 * 'get_default()' - Get the default destination.
5692 */
5693
5694 static void
5695 get_default(cupsd_client_t *con) /* I - Client connection */
5696 {
5697 http_status_t status; /* Policy status */
5698 cups_array_t *ra; /* Requested attributes array */
5699
5700
5701 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_default(%p[%d])", con, con->number);
5702
5703 /*
5704 * Check policy...
5705 */
5706
5707 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
5708 {
5709 send_http_error(con, status, NULL);
5710 return;
5711 }
5712
5713 if (DefaultPrinter)
5714 {
5715 ra = create_requested_array(con->request);
5716
5717 copy_printer_attrs(con, DefaultPrinter, ra);
5718
5719 cupsArrayDelete(ra);
5720
5721 con->response->request.status.status_code = IPP_OK;
5722 }
5723 else
5724 send_ipp_status(con, IPP_NOT_FOUND, _("No default printer."));
5725 }
5726
5727
5728 /*
5729 * 'get_devices()' - Get the list of available devices on the local system.
5730 */
5731
5732 static void
5733 get_devices(cupsd_client_t *con) /* I - Client connection */
5734 {
5735 http_status_t status; /* Policy status */
5736 ipp_attribute_t *limit, /* limit attribute */
5737 *timeout, /* timeout attribute */
5738 *requested, /* requested-attributes attribute */
5739 *exclude, /* exclude-schemes attribute */
5740 *include; /* include-schemes attribute */
5741 char command[1024], /* cups-deviced command */
5742 options[2048], /* Options to pass to command */
5743 requested_str[256],
5744 /* String for requested attributes */
5745 exclude_str[512],
5746 /* String for excluded schemes */
5747 include_str[512];
5748 /* String for included schemes */
5749
5750
5751 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_devices(%p[%d])", con, con->number);
5752
5753 /*
5754 * Check policy...
5755 */
5756
5757 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
5758 {
5759 send_http_error(con, status, NULL);
5760 return;
5761 }
5762
5763 /*
5764 * Run cups-deviced command with the given options...
5765 */
5766
5767 limit = ippFindAttribute(con->request, "limit", IPP_TAG_INTEGER);
5768 timeout = ippFindAttribute(con->request, "timeout", IPP_TAG_INTEGER);
5769 requested = ippFindAttribute(con->request, "requested-attributes",
5770 IPP_TAG_KEYWORD);
5771 exclude = ippFindAttribute(con->request, "exclude-schemes", IPP_TAG_NAME);
5772 include = ippFindAttribute(con->request, "include-schemes", IPP_TAG_NAME);
5773
5774 if (requested)
5775 url_encode_attr(requested, requested_str, sizeof(requested_str));
5776 else
5777 strlcpy(requested_str, "requested-attributes=all", sizeof(requested_str));
5778
5779 if (exclude)
5780 url_encode_attr(exclude, exclude_str, sizeof(exclude_str));
5781 else
5782 exclude_str[0] = '\0';
5783
5784 if (include)
5785 url_encode_attr(include, include_str, sizeof(include_str));
5786 else
5787 include_str[0] = '\0';
5788
5789 snprintf(command, sizeof(command), "%s/daemon/cups-deviced", ServerBin);
5790 snprintf(options, sizeof(options),
5791 "%d+%d+%d+%d+%s%s%s%s%s",
5792 con->request->request.op.request_id,
5793 limit ? limit->values[0].integer : 0,
5794 timeout ? timeout->values[0].integer : 15,
5795 (int)User,
5796 requested_str,
5797 exclude_str[0] ? "%20" : "", exclude_str,
5798 include_str[0] ? "%20" : "", include_str);
5799
5800 if (cupsdSendCommand(con, command, options, 1))
5801 {
5802 /*
5803 * Command started successfully, don't send an IPP response here...
5804 */
5805
5806 ippDelete(con->response);
5807 con->response = NULL;
5808 }
5809 else
5810 {
5811 /*
5812 * Command failed, return "internal error" so the user knows something
5813 * went wrong...
5814 */
5815
5816 send_ipp_status(con, IPP_INTERNAL_ERROR,
5817 _("cups-deviced failed to execute."));
5818 }
5819 }
5820
5821
5822 /*
5823 * 'get_document()' - Get a copy of a job file.
5824 */
5825
5826 static void
5827 get_document(cupsd_client_t *con, /* I - Client connection */
5828 ipp_attribute_t *uri) /* I - Job URI */
5829 {
5830 http_status_t status; /* Policy status */
5831 ipp_attribute_t *attr; /* Current attribute */
5832 int jobid; /* Job ID */
5833 int docnum; /* Document number */
5834 cupsd_job_t *job; /* Current job */
5835 char scheme[HTTP_MAX_URI], /* Method portion of URI */
5836 username[HTTP_MAX_URI], /* Username portion of URI */
5837 host[HTTP_MAX_URI], /* Host portion of URI */
5838 resource[HTTP_MAX_URI]; /* Resource portion of URI */
5839 int port; /* Port portion of URI */
5840 char filename[1024], /* Filename for document */
5841 format[1024]; /* Format for document */
5842
5843
5844 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_document(%p[%d], %s)", con,
5845 con->number, uri->values[0].string.text);
5846
5847 /*
5848 * See if we have a job URI or a printer URI...
5849 */
5850
5851 if (!strcmp(uri->name, "printer-uri"))
5852 {
5853 /*
5854 * Got a printer URI; see if we also have a job-id attribute...
5855 */
5856
5857 if ((attr = ippFindAttribute(con->request, "job-id",
5858 IPP_TAG_INTEGER)) == NULL)
5859 {
5860 send_ipp_status(con, IPP_BAD_REQUEST,
5861 _("Got a printer-uri attribute but no job-id."));
5862 return;
5863 }
5864
5865 jobid = attr->values[0].integer;
5866 }
5867 else
5868 {
5869 /*
5870 * Got a job URI; parse it to get the job ID...
5871 */
5872
5873 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
5874 sizeof(scheme), username, sizeof(username), host,
5875 sizeof(host), &port, resource, sizeof(resource));
5876
5877 if (strncmp(resource, "/jobs/", 6))
5878 {
5879 /*
5880 * Not a valid URI!
5881 */
5882
5883 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-uri \"%s\"."),
5884 uri->values[0].string.text);
5885 return;
5886 }
5887
5888 jobid = atoi(resource + 6);
5889 }
5890
5891 /*
5892 * See if the job exists...
5893 */
5894
5895 if ((job = cupsdFindJob(jobid)) == NULL)
5896 {
5897 /*
5898 * Nope - return a "not found" error...
5899 */
5900
5901 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."), jobid);
5902 return;
5903 }
5904
5905 /*
5906 * Check policy...
5907 */
5908
5909 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con,
5910 job->username)) != HTTP_OK)
5911 {
5912 send_http_error(con, status, NULL);
5913 return;
5914 }
5915
5916 /*
5917 * Get the document number...
5918 */
5919
5920 if ((attr = ippFindAttribute(con->request, "document-number",
5921 IPP_TAG_INTEGER)) == NULL)
5922 {
5923 send_ipp_status(con, IPP_BAD_REQUEST,
5924 _("Missing document-number attribute."));
5925 return;
5926 }
5927
5928 if ((docnum = attr->values[0].integer) < 1 || docnum > job->num_files ||
5929 attr->num_values > 1)
5930 {
5931 send_ipp_status(con, IPP_NOT_FOUND,
5932 _("Document #%d does not exist in job #%d."), docnum,
5933 jobid);
5934 return;
5935 }
5936
5937 snprintf(filename, sizeof(filename), "%s/d%05d-%03d", RequestRoot, jobid,
5938 docnum);
5939 if ((con->file = open(filename, O_RDONLY)) == -1)
5940 {
5941 cupsdLogMessage(CUPSD_LOG_ERROR,
5942 "Unable to open document %d in job %d - %s", docnum, jobid,
5943 strerror(errno));
5944 send_ipp_status(con, IPP_NOT_FOUND,
5945 _("Unable to open document #%d in job #%d."), docnum,
5946 jobid);
5947 return;
5948 }
5949
5950 fcntl(con->file, F_SETFD, fcntl(con->file, F_GETFD) | FD_CLOEXEC);
5951
5952 cupsdLoadJob(job);
5953
5954 snprintf(format, sizeof(format), "%s/%s", job->filetypes[docnum - 1]->super,
5955 job->filetypes[docnum - 1]->type);
5956
5957 ippAddString(con->response, IPP_TAG_JOB, IPP_TAG_MIMETYPE, "document-format",
5958 NULL, format);
5959 ippAddInteger(con->response, IPP_TAG_JOB, IPP_TAG_INTEGER, "document-number",
5960 docnum);
5961 if ((attr = ippFindAttribute(job->attrs, "document-name",
5962 IPP_TAG_NAME)) != NULL)
5963 ippAddString(con->response, IPP_TAG_JOB, IPP_TAG_NAME, "document-name",
5964 NULL, attr->values[0].string.text);
5965 }
5966
5967
5968 /*
5969 * 'get_job_attrs()' - Get job attributes.
5970 */
5971
5972 static void
5973 get_job_attrs(cupsd_client_t *con, /* I - Client connection */
5974 ipp_attribute_t *uri) /* I - Job URI */
5975 {
5976 http_status_t status; /* Policy status */
5977 ipp_attribute_t *attr; /* Current attribute */
5978 int jobid; /* Job ID */
5979 cupsd_job_t *job; /* Current job */
5980 cupsd_printer_t *printer; /* Current printer */
5981 cupsd_policy_t *policy; /* Current security policy */
5982 char scheme[HTTP_MAX_URI], /* Scheme portion of URI */
5983 username[HTTP_MAX_URI], /* Username portion of URI */
5984 host[HTTP_MAX_URI], /* Host portion of URI */
5985 resource[HTTP_MAX_URI]; /* Resource portion of URI */
5986 int port; /* Port portion of URI */
5987 cups_array_t *ra, /* Requested attributes array */
5988 *exclude; /* Private attributes array */
5989
5990
5991 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_job_attrs(%p[%d], %s)", con,
5992 con->number, uri->values[0].string.text);
5993
5994 /*
5995 * See if we have a job URI or a printer URI...
5996 */
5997
5998 if (!strcmp(uri->name, "printer-uri"))
5999 {
6000 /*
6001 * Got a printer URI; see if we also have a job-id attribute...
6002 */
6003
6004 if ((attr = ippFindAttribute(con->request, "job-id",
6005 IPP_TAG_INTEGER)) == NULL)
6006 {
6007 send_ipp_status(con, IPP_BAD_REQUEST,
6008 _("Got a printer-uri attribute but no job-id."));
6009 return;
6010 }
6011
6012 jobid = attr->values[0].integer;
6013 }
6014 else
6015 {
6016 /*
6017 * Got a job URI; parse it to get the job ID...
6018 */
6019
6020 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
6021 sizeof(scheme), username, sizeof(username), host,
6022 sizeof(host), &port, resource, sizeof(resource));
6023
6024 if (strncmp(resource, "/jobs/", 6))
6025 {
6026 /*
6027 * Not a valid URI!
6028 */
6029
6030 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-uri \"%s\"."),
6031 uri->values[0].string.text);
6032 return;
6033 }
6034
6035 jobid = atoi(resource + 6);
6036 }
6037
6038 /*
6039 * See if the job exists...
6040 */
6041
6042 if ((job = cupsdFindJob(jobid)) == NULL)
6043 {
6044 /*
6045 * Nope - return a "not found" error...
6046 */
6047
6048 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."), jobid);
6049 return;
6050 }
6051
6052 /*
6053 * Check policy...
6054 */
6055
6056 if ((printer = job->printer) == NULL)
6057 printer = cupsdFindDest(job->dest);
6058
6059 if (printer)
6060 policy = printer->op_policy_ptr;
6061 else
6062 policy = DefaultPolicyPtr;
6063
6064 if ((status = cupsdCheckPolicy(policy, con, job->username)) != HTTP_OK)
6065 {
6066 send_http_error(con, status, NULL);
6067 return;
6068 }
6069
6070 exclude = cupsdGetPrivateAttrs(policy, con, printer, job->username);
6071
6072 /*
6073 * Copy attributes...
6074 */
6075
6076 cupsdLoadJob(job);
6077
6078 ra = create_requested_array(con->request);
6079 copy_job_attrs(con, job, ra, exclude);
6080 cupsArrayDelete(ra);
6081
6082 con->response->request.status.status_code = IPP_OK;
6083 }
6084
6085
6086 /*
6087 * 'get_jobs()' - Get a list of jobs for the specified printer.
6088 */
6089
6090 static void
6091 get_jobs(cupsd_client_t *con, /* I - Client connection */
6092 ipp_attribute_t *uri) /* I - Printer URI */
6093 {
6094 http_status_t status; /* Policy status */
6095 ipp_attribute_t *attr; /* Current attribute */
6096 const char *dest; /* Destination */
6097 cups_ptype_t dtype; /* Destination type (printer/class) */
6098 cups_ptype_t dmask; /* Destination type mask */
6099 char scheme[HTTP_MAX_URI], /* Scheme portion of URI */
6100 username[HTTP_MAX_URI], /* Username portion of URI */
6101 host[HTTP_MAX_URI], /* Host portion of URI */
6102 resource[HTTP_MAX_URI]; /* Resource portion of URI */
6103 int port; /* Port portion of URI */
6104 int job_comparison; /* Job comparison */
6105 ipp_jstate_t job_state; /* job-state value */
6106 int first_job_id; /* First job ID */
6107 int limit; /* Maximum number of jobs to return */
6108 int count; /* Number of jobs that match */
6109 ipp_attribute_t *job_ids; /* job-ids attribute */
6110 cupsd_job_t *job; /* Current job pointer */
6111 cupsd_printer_t *printer; /* Printer */
6112 cups_array_t *list; /* Which job list... */
6113 cups_array_t *ra, /* Requested attributes array */
6114 *exclude; /* Private attributes array */
6115 cupsd_policy_t *policy; /* Current policy */
6116
6117
6118 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_jobs(%p[%d], %s)", con, con->number,
6119 uri->values[0].string.text);
6120
6121 /*
6122 * Is the destination valid?
6123 */
6124
6125 if (strcmp(uri->name, "printer-uri"))
6126 {
6127 send_ipp_status(con, IPP_BAD_REQUEST, _("No printer-uri in request."));
6128 return;
6129 }
6130
6131 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
6132 sizeof(scheme), username, sizeof(username), host,
6133 sizeof(host), &port, resource, sizeof(resource));
6134
6135 if (!strcmp(resource, "/") || !strcmp(resource, "/jobs"))
6136 {
6137 dest = NULL;
6138 dtype = (cups_ptype_t)0;
6139 dmask = (cups_ptype_t)0;
6140 printer = NULL;
6141 }
6142 else if (!strncmp(resource, "/printers", 9) && strlen(resource) <= 10)
6143 {
6144 dest = NULL;
6145 dtype = (cups_ptype_t)0;
6146 dmask = CUPS_PRINTER_CLASS;
6147 printer = NULL;
6148 }
6149 else if (!strncmp(resource, "/classes", 8) && strlen(resource) <= 9)
6150 {
6151 dest = NULL;
6152 dtype = CUPS_PRINTER_CLASS;
6153 dmask = CUPS_PRINTER_CLASS;
6154 printer = NULL;
6155 }
6156 else if ((dest = cupsdValidateDest(uri->values[0].string.text, &dtype,
6157 &printer)) == NULL)
6158 {
6159 /*
6160 * Bad URI...
6161 */
6162
6163 send_ipp_status(con, IPP_NOT_FOUND,
6164 _("The printer or class does not exist."));
6165 return;
6166 }
6167 else
6168 {
6169 dtype &= CUPS_PRINTER_CLASS;
6170 dmask = CUPS_PRINTER_CLASS;
6171 }
6172
6173 /*
6174 * Check policy...
6175 */
6176
6177 if (printer)
6178 policy = printer->op_policy_ptr;
6179 else
6180 policy = DefaultPolicyPtr;
6181
6182 if ((status = cupsdCheckPolicy(policy, con, NULL)) != HTTP_OK)
6183 {
6184 send_http_error(con, status, NULL);
6185 return;
6186 }
6187
6188 job_ids = ippFindAttribute(con->request, "job-ids", IPP_TAG_INTEGER);
6189
6190 /*
6191 * See if the "which-jobs" attribute have been specified...
6192 */
6193
6194 if ((attr = ippFindAttribute(con->request, "which-jobs",
6195 IPP_TAG_KEYWORD)) != NULL && job_ids)
6196 {
6197 send_ipp_status(con, IPP_CONFLICT,
6198 _("The %s attribute cannot be provided with job-ids."),
6199 "which-jobs");
6200 return;
6201 }
6202 else if (!attr || !strcmp(attr->values[0].string.text, "not-completed"))
6203 {
6204 job_comparison = -1;
6205 job_state = IPP_JOB_STOPPED;
6206 list = ActiveJobs;
6207 }
6208 else if (!strcmp(attr->values[0].string.text, "completed"))
6209 {
6210 job_comparison = 1;
6211 job_state = IPP_JOB_CANCELED;
6212 list = Jobs;
6213 }
6214 else if (!strcmp(attr->values[0].string.text, "aborted"))
6215 {
6216 job_comparison = 0;
6217 job_state = IPP_JOB_ABORTED;
6218 list = Jobs;
6219 }
6220 else if (!strcmp(attr->values[0].string.text, "all"))
6221 {
6222 job_comparison = 1;
6223 job_state = IPP_JOB_PENDING;
6224 list = Jobs;
6225 }
6226 else if (!strcmp(attr->values[0].string.text, "canceled"))
6227 {
6228 job_comparison = 0;
6229 job_state = IPP_JOB_CANCELED;
6230 list = Jobs;
6231 }
6232 else if (!strcmp(attr->values[0].string.text, "pending"))
6233 {
6234 job_comparison = 0;
6235 job_state = IPP_JOB_PENDING;
6236 list = ActiveJobs;
6237 }
6238 else if (!strcmp(attr->values[0].string.text, "pending-held"))
6239 {
6240 job_comparison = 0;
6241 job_state = IPP_JOB_HELD;
6242 list = ActiveJobs;
6243 }
6244 else if (!strcmp(attr->values[0].string.text, "processing"))
6245 {
6246 job_comparison = 0;
6247 job_state = IPP_JOB_PROCESSING;
6248 list = PrintingJobs;
6249 }
6250 else if (!strcmp(attr->values[0].string.text, "processing-stopped"))
6251 {
6252 job_comparison = 0;
6253 job_state = IPP_JOB_STOPPED;
6254 list = ActiveJobs;
6255 }
6256 else
6257 {
6258 send_ipp_status(con, IPP_ATTRIBUTES,
6259 _("The which-jobs value \"%s\" is not supported."),
6260 attr->values[0].string.text);
6261 ippAddString(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_KEYWORD,
6262 "which-jobs", NULL, attr->values[0].string.text);
6263 return;
6264 }
6265
6266 /*
6267 * See if they want to limit the number of jobs reported...
6268 */
6269
6270 if ((attr = ippFindAttribute(con->request, "limit",
6271 IPP_TAG_INTEGER)) != NULL)
6272 {
6273 if (job_ids)
6274 {
6275 send_ipp_status(con, IPP_CONFLICT,
6276 _("The %s attribute cannot be provided with job-ids."),
6277 "limit");
6278 return;
6279 }
6280
6281 limit = attr->values[0].integer;
6282 }
6283 else
6284 limit = 0;
6285
6286 if ((attr = ippFindAttribute(con->request, "first-job-id",
6287 IPP_TAG_INTEGER)) != NULL)
6288 {
6289 if (job_ids)
6290 {
6291 send_ipp_status(con, IPP_CONFLICT,
6292 _("The %s attribute cannot be provided with job-ids."),
6293 "first-job-id");
6294 return;
6295 }
6296
6297 first_job_id = attr->values[0].integer;
6298 }
6299 else
6300 first_job_id = 1;
6301
6302 /*
6303 * See if we only want to see jobs for a specific user...
6304 */
6305
6306 if ((attr = ippFindAttribute(con->request, "my-jobs",
6307 IPP_TAG_BOOLEAN)) != NULL && job_ids)
6308 {
6309 send_ipp_status(con, IPP_CONFLICT,
6310 _("The %s attribute cannot be provided with job-ids."),
6311 "my-jobs");
6312 return;
6313 }
6314 else if (attr && attr->values[0].boolean)
6315 strlcpy(username, get_username(con), sizeof(username));
6316 else
6317 username[0] = '\0';
6318
6319 ra = create_requested_array(con->request);
6320
6321 /*
6322 * OK, build a list of jobs for this printer...
6323 */
6324
6325 if (job_ids)
6326 {
6327 int i; /* Looping var */
6328
6329 for (i = 0; i < job_ids->num_values; i ++)
6330 {
6331 if (!cupsdFindJob(job_ids->values[i].integer))
6332 break;
6333 }
6334
6335 if (i < job_ids->num_values)
6336 {
6337 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."),
6338 job_ids->values[i].integer);
6339 return;
6340 }
6341
6342 for (i = 0; i < job_ids->num_values; i ++)
6343 {
6344 job = cupsdFindJob(job_ids->values[i].integer);
6345
6346 cupsdLoadJob(job);
6347
6348 if (!job->attrs)
6349 {
6350 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_jobs: No attributes for job %d",
6351 job->id);
6352 continue;
6353 }
6354
6355 if (i > 0)
6356 ippAddSeparator(con->response);
6357
6358 exclude = cupsdGetPrivateAttrs(job->printer ?
6359 job->printer->op_policy_ptr :
6360 policy, con, job->printer,
6361 job->username);
6362
6363 copy_job_attrs(con, job, ra, exclude);
6364 }
6365 }
6366 else
6367 {
6368 for (count = 0, job = (cupsd_job_t *)cupsArrayFirst(list);
6369 (limit <= 0 || count < limit) && job;
6370 job = (cupsd_job_t *)cupsArrayNext(list))
6371 {
6372 /*
6373 * Filter out jobs that don't match...
6374 */
6375
6376 cupsdLogMessage(CUPSD_LOG_DEBUG2,
6377 "get_jobs: job->id=%d, dest=\"%s\", username=\"%s\", "
6378 "state_value=%d, attrs=%p", job->id, job->dest,
6379 job->username, job->state_value, job->attrs);
6380
6381 if (!job->dest || !job->username)
6382 cupsdLoadJob(job);
6383
6384 if (!job->dest || !job->username)
6385 continue;
6386
6387 if ((dest && strcmp(job->dest, dest)) &&
6388 (!job->printer || !dest || strcmp(job->printer->name, dest)))
6389 continue;
6390 if ((job->dtype & dmask) != dtype &&
6391 (!job->printer || (job->printer->type & dmask) != dtype))
6392 continue;
6393
6394 if ((job_comparison < 0 && job->state_value > job_state) ||
6395 (job_comparison == 0 && job->state_value != job_state) ||
6396 (job_comparison > 0 && job->state_value < job_state))
6397 continue;
6398
6399 if (job->id < first_job_id)
6400 continue;
6401
6402 cupsdLoadJob(job);
6403
6404 if (!job->attrs)
6405 {
6406 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_jobs: No attributes for job %d",
6407 job->id);
6408 continue;
6409 }
6410
6411 if (username[0] && _cups_strcasecmp(username, job->username))
6412 continue;
6413
6414 if (count > 0)
6415 ippAddSeparator(con->response);
6416
6417 count ++;
6418
6419 exclude = cupsdGetPrivateAttrs(job->printer ?
6420 job->printer->op_policy_ptr :
6421 policy, con, job->printer,
6422 job->username);
6423
6424 copy_job_attrs(con, job, ra, exclude);
6425 }
6426
6427 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_jobs: count=%d", count);
6428 }
6429
6430 cupsArrayDelete(ra);
6431
6432 con->response->request.status.status_code = IPP_OK;
6433 }
6434
6435
6436 /*
6437 * 'get_notifications()' - Get events for a subscription.
6438 */
6439
6440 static void
6441 get_notifications(cupsd_client_t *con) /* I - Client connection */
6442 {
6443 int i, j; /* Looping vars */
6444 http_status_t status; /* Policy status */
6445 cupsd_subscription_t *sub; /* Subscription */
6446 ipp_attribute_t *ids, /* notify-subscription-ids */
6447 *sequences; /* notify-sequence-numbers */
6448 int min_seq; /* Minimum sequence number */
6449 int interval; /* Poll interval */
6450
6451
6452 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_notifications(con=%p[%d])",
6453 con, con->number);
6454
6455 /*
6456 * Get subscription attributes...
6457 */
6458
6459 ids = ippFindAttribute(con->request, "notify-subscription-ids",
6460 IPP_TAG_INTEGER);
6461 sequences = ippFindAttribute(con->request, "notify-sequence-numbers",
6462 IPP_TAG_INTEGER);
6463
6464 if (!ids)
6465 {
6466 send_ipp_status(con, IPP_BAD_REQUEST,
6467 _("Missing notify-subscription-ids attribute."));
6468 return;
6469 }
6470
6471 /*
6472 * Are the subscription IDs valid?
6473 */
6474
6475 for (i = 0, interval = 60; i < ids->num_values; i ++)
6476 {
6477 if ((sub = cupsdFindSubscription(ids->values[i].integer)) == NULL)
6478 {
6479 /*
6480 * Bad subscription ID...
6481 */
6482
6483 send_ipp_status(con, IPP_NOT_FOUND, _("Subscription #%d does not exist."),
6484 ids->values[i].integer);
6485 return;
6486 }
6487
6488 /*
6489 * Check policy...
6490 */
6491
6492 if ((status = cupsdCheckPolicy(sub->dest ? sub->dest->op_policy_ptr :
6493 DefaultPolicyPtr,
6494 con, sub->owner)) != HTTP_OK)
6495 {
6496 send_http_error(con, status, sub->dest);
6497 return;
6498 }
6499
6500 /*
6501 * Check the subscription type and update the interval accordingly.
6502 */
6503
6504 if (sub->job && sub->job->state_value == IPP_JOB_PROCESSING &&
6505 interval > 10)
6506 interval = 10;
6507 else if (sub->job && sub->job->state_value >= IPP_JOB_STOPPED)
6508 interval = 0;
6509 else if (sub->dest && sub->dest->state == IPP_PRINTER_PROCESSING &&
6510 interval > 30)
6511 interval = 30;
6512 }
6513
6514 /*
6515 * Tell the client to poll again in N seconds...
6516 */
6517
6518 if (interval > 0)
6519 ippAddInteger(con->response, IPP_TAG_OPERATION, IPP_TAG_INTEGER,
6520 "notify-get-interval", interval);
6521
6522 ippAddInteger(con->response, IPP_TAG_OPERATION, IPP_TAG_INTEGER,
6523 "printer-up-time", time(NULL));
6524
6525 /*
6526 * Copy the subscription event attributes to the response.
6527 */
6528
6529 con->response->request.status.status_code =
6530 interval ? IPP_OK : IPP_OK_EVENTS_COMPLETE;
6531
6532 for (i = 0; i < ids->num_values; i ++)
6533 {
6534 /*
6535 * Get the subscription and sequence number...
6536 */
6537
6538 sub = cupsdFindSubscription(ids->values[i].integer);
6539
6540 if (sequences && i < sequences->num_values)
6541 min_seq = sequences->values[i].integer;
6542 else
6543 min_seq = 1;
6544
6545 /*
6546 * If we don't have any new events, nothing to do here...
6547 */
6548
6549 if (min_seq > (sub->first_event_id + cupsArrayCount(sub->events)))
6550 continue;
6551
6552 /*
6553 * Otherwise copy all of the new events...
6554 */
6555
6556 if (sub->first_event_id > min_seq)
6557 j = 0;
6558 else
6559 j = min_seq - sub->first_event_id;
6560
6561 for (; j < cupsArrayCount(sub->events); j ++)
6562 {
6563 ippAddSeparator(con->response);
6564
6565 copy_attrs(con->response,
6566 ((cupsd_event_t *)cupsArrayIndex(sub->events, j))->attrs, NULL,
6567 IPP_TAG_EVENT_NOTIFICATION, 0, NULL);
6568 }
6569 }
6570 }
6571
6572
6573 /*
6574 * 'get_ppd()' - Get a named PPD from the local system.
6575 */
6576
6577 static void
6578 get_ppd(cupsd_client_t *con, /* I - Client connection */
6579 ipp_attribute_t *uri) /* I - Printer URI or PPD name */
6580 {
6581 http_status_t status; /* Policy status */
6582 cupsd_printer_t *dest; /* Destination */
6583 cups_ptype_t dtype; /* Destination type */
6584
6585
6586 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_ppd(%p[%d], %p[%s=%s])", con,
6587 con->number, uri, uri->name, uri->values[0].string.text);
6588
6589 if (!strcmp(uri->name, "ppd-name"))
6590 {
6591 /*
6592 * Return a PPD file from cups-driverd...
6593 */
6594
6595 char command[1024], /* cups-driverd command */
6596 options[1024], /* Options to pass to command */
6597 ppd_name[1024]; /* ppd-name */
6598
6599
6600 /*
6601 * Check policy...
6602 */
6603
6604 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
6605 {
6606 send_http_error(con, status, NULL);
6607 return;
6608 }
6609
6610 /*
6611 * Run cups-driverd command with the given options...
6612 */
6613
6614 snprintf(command, sizeof(command), "%s/daemon/cups-driverd", ServerBin);
6615 url_encode_string(uri->values[0].string.text, ppd_name, sizeof(ppd_name));
6616 snprintf(options, sizeof(options), "get+%d+%s",
6617 con->request->request.op.request_id, ppd_name);
6618
6619 if (cupsdSendCommand(con, command, options, 0))
6620 {
6621 /*
6622 * Command started successfully, don't send an IPP response here...
6623 */
6624
6625 ippDelete(con->response);
6626 con->response = NULL;
6627 }
6628 else
6629 {
6630 /*
6631 * Command failed, return "internal error" so the user knows something
6632 * went wrong...
6633 */
6634
6635 send_ipp_status(con, IPP_INTERNAL_ERROR,
6636 _("cups-driverd failed to execute."));
6637 }
6638 }
6639 else if (!strcmp(uri->name, "printer-uri") &&
6640 cupsdValidateDest(uri->values[0].string.text, &dtype, &dest))
6641 {
6642 int i; /* Looping var */
6643 char filename[1024]; /* PPD filename */
6644
6645
6646 /*
6647 * Check policy...
6648 */
6649
6650 if ((status = cupsdCheckPolicy(dest->op_policy_ptr, con, NULL)) != HTTP_OK)
6651 {
6652 send_http_error(con, status, dest);
6653 return;
6654 }
6655
6656 /*
6657 * See if we need the PPD for a class or remote printer...
6658 */
6659
6660 snprintf(filename, sizeof(filename), "%s/ppd/%s.ppd", ServerRoot,
6661 dest->name);
6662
6663 if ((dtype & CUPS_PRINTER_REMOTE) && access(filename, 0))
6664 {
6665 con->response->request.status.status_code = CUPS_SEE_OTHER;
6666 ippAddString(con->response, IPP_TAG_OPERATION, IPP_TAG_URI,
6667 "printer-uri", NULL, dest->uri);
6668 return;
6669 }
6670 else if (dtype & CUPS_PRINTER_CLASS)
6671 {
6672 for (i = 0; i < dest->num_printers; i ++)
6673 if (!(dest->printers[i]->type & CUPS_PRINTER_CLASS))
6674 {
6675 snprintf(filename, sizeof(filename), "%s/ppd/%s.ppd", ServerRoot,
6676 dest->printers[i]->name);
6677
6678 if (!access(filename, 0))
6679 break;
6680 }
6681
6682 if (i < dest->num_printers)
6683 dest = dest->printers[i];
6684 else
6685 {
6686 con->response->request.status.status_code = CUPS_SEE_OTHER;
6687 ippAddString(con->response, IPP_TAG_OPERATION, IPP_TAG_URI,
6688 "printer-uri", NULL, dest->printers[0]->uri);
6689 return;
6690 }
6691 }
6692
6693 /*
6694 * Found the printer with the PPD file, now see if there is one...
6695 */
6696
6697 if ((con->file = open(filename, O_RDONLY)) < 0)
6698 {
6699 send_ipp_status(con, IPP_NOT_FOUND,
6700 _("The PPD file \"%s\" could not be opened: %s"),
6701 uri->values[0].string.text, strerror(errno));
6702 return;
6703 }
6704
6705 fcntl(con->file, F_SETFD, fcntl(con->file, F_GETFD) | FD_CLOEXEC);
6706
6707 con->pipe_pid = 0;
6708
6709 con->response->request.status.status_code = IPP_OK;
6710 }
6711 else
6712 send_ipp_status(con, IPP_NOT_FOUND,
6713 _("The PPD file \"%s\" could not be found."),
6714 uri->values[0].string.text);
6715 }
6716
6717
6718 /*
6719 * 'get_ppds()' - Get the list of PPD files on the local system.
6720 */
6721
6722 static void
6723 get_ppds(cupsd_client_t *con) /* I - Client connection */
6724 {
6725 http_status_t status; /* Policy status */
6726 ipp_attribute_t *limit, /* Limit attribute */
6727 *device, /* ppd-device-id attribute */
6728 *language, /* ppd-natural-language attribute */
6729 *make, /* ppd-make attribute */
6730 *model, /* ppd-make-and-model attribute */
6731 *model_number, /* ppd-model-number attribute */
6732 *product, /* ppd-product attribute */
6733 *psversion, /* ppd-psverion attribute */
6734 *type, /* ppd-type attribute */
6735 *requested, /* requested-attributes attribute */
6736 *exclude, /* exclude-schemes attribute */
6737 *include; /* include-schemes attribute */
6738 char command[1024], /* cups-driverd command */
6739 options[4096], /* Options to pass to command */
6740 device_str[256],/* Escaped ppd-device-id string */
6741 language_str[256],
6742 /* Escaped ppd-natural-language */
6743 make_str[256], /* Escaped ppd-make string */
6744 model_str[256], /* Escaped ppd-make-and-model string */
6745 model_number_str[256],
6746 /* ppd-model-number string */
6747 product_str[256],
6748 /* Escaped ppd-product string */
6749 psversion_str[256],
6750 /* Escaped ppd-psversion string */
6751 type_str[256], /* Escaped ppd-type string */
6752 requested_str[256],
6753 /* String for requested attributes */
6754 exclude_str[512],
6755 /* String for excluded schemes */
6756 include_str[512];
6757 /* String for included schemes */
6758
6759
6760 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_ppds(%p[%d])", con, con->number);
6761
6762 /*
6763 * Check policy...
6764 */
6765
6766 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
6767 {
6768 send_http_error(con, status, NULL);
6769 return;
6770 }
6771
6772 /*
6773 * Run cups-driverd command with the given options...
6774 */
6775
6776 limit = ippFindAttribute(con->request, "limit", IPP_TAG_INTEGER);
6777 device = ippFindAttribute(con->request, "ppd-device-id", IPP_TAG_TEXT);
6778 language = ippFindAttribute(con->request, "ppd-natural-language",
6779 IPP_TAG_LANGUAGE);
6780 make = ippFindAttribute(con->request, "ppd-make", IPP_TAG_TEXT);
6781 model = ippFindAttribute(con->request, "ppd-make-and-model",
6782 IPP_TAG_TEXT);
6783 model_number = ippFindAttribute(con->request, "ppd-model-number",
6784 IPP_TAG_INTEGER);
6785 product = ippFindAttribute(con->request, "ppd-product", IPP_TAG_TEXT);
6786 psversion = ippFindAttribute(con->request, "ppd-psversion", IPP_TAG_TEXT);
6787 type = ippFindAttribute(con->request, "ppd-type", IPP_TAG_KEYWORD);
6788 requested = ippFindAttribute(con->request, "requested-attributes",
6789 IPP_TAG_KEYWORD);
6790 exclude = ippFindAttribute(con->request, "exclude-schemes",
6791 IPP_TAG_NAME);
6792 include = ippFindAttribute(con->request, "include-schemes",
6793 IPP_TAG_NAME);
6794
6795 if (requested)
6796 url_encode_attr(requested, requested_str, sizeof(requested_str));
6797 else
6798 strlcpy(requested_str, "requested-attributes=all", sizeof(requested_str));
6799
6800 if (device)
6801 url_encode_attr(device, device_str, sizeof(device_str));
6802 else
6803 device_str[0] = '\0';
6804
6805 if (language)
6806 url_encode_attr(language, language_str, sizeof(language_str));
6807 else
6808 language_str[0] = '\0';
6809
6810 if (make)
6811 url_encode_attr(make, make_str, sizeof(make_str));
6812 else
6813 make_str[0] = '\0';
6814
6815 if (model)
6816 url_encode_attr(model, model_str, sizeof(model_str));
6817 else
6818 model_str[0] = '\0';
6819
6820 if (model_number)
6821 snprintf(model_number_str, sizeof(model_number_str), "ppd-model-number=%d",
6822 model_number->values[0].integer);
6823 else
6824 model_number_str[0] = '\0';
6825
6826 if (product)
6827 url_encode_attr(product, product_str, sizeof(product_str));
6828 else
6829 product_str[0] = '\0';
6830
6831 if (psversion)
6832 url_encode_attr(psversion, psversion_str, sizeof(psversion_str));
6833 else
6834 psversion_str[0] = '\0';
6835
6836 if (type)
6837 url_encode_attr(type, type_str, sizeof(type_str));
6838 else
6839 type_str[0] = '\0';
6840
6841 if (exclude)
6842 url_encode_attr(exclude, exclude_str, sizeof(exclude_str));
6843 else
6844 exclude_str[0] = '\0';
6845
6846 if (include)
6847 url_encode_attr(include, include_str, sizeof(include_str));
6848 else
6849 include_str[0] = '\0';
6850
6851 snprintf(command, sizeof(command), "%s/daemon/cups-driverd", ServerBin);
6852 snprintf(options, sizeof(options),
6853 "list+%d+%d+%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
6854 con->request->request.op.request_id,
6855 limit ? limit->values[0].integer : 0,
6856 requested_str,
6857 device ? "%20" : "", device_str,
6858 language ? "%20" : "", language_str,
6859 make ? "%20" : "", make_str,
6860 model ? "%20" : "", model_str,
6861 model_number ? "%20" : "", model_number_str,
6862 product ? "%20" : "", product_str,
6863 psversion ? "%20" : "", psversion_str,
6864 type ? "%20" : "", type_str,
6865 exclude_str[0] ? "%20" : "", exclude_str,
6866 include_str[0] ? "%20" : "", include_str);
6867
6868 if (cupsdSendCommand(con, command, options, 0))
6869 {
6870 /*
6871 * Command started successfully, don't send an IPP response here...
6872 */
6873
6874 ippDelete(con->response);
6875 con->response = NULL;
6876 }
6877 else
6878 {
6879 /*
6880 * Command failed, return "internal error" so the user knows something
6881 * went wrong...
6882 */
6883
6884 send_ipp_status(con, IPP_INTERNAL_ERROR,
6885 _("cups-driverd failed to execute."));
6886 }
6887 }
6888
6889
6890 /*
6891 * 'get_printer_attrs()' - Get printer attributes.
6892 */
6893
6894 static void
6895 get_printer_attrs(cupsd_client_t *con, /* I - Client connection */
6896 ipp_attribute_t *uri) /* I - Printer URI */
6897 {
6898 http_status_t status; /* Policy status */
6899 cups_ptype_t dtype; /* Destination type (printer/class) */
6900 cupsd_printer_t *printer; /* Printer/class */
6901 cups_array_t *ra; /* Requested attributes array */
6902
6903
6904 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_printer_attrs(%p[%d], %s)", con,
6905 con->number, uri->values[0].string.text);
6906
6907 /*
6908 * Is the destination valid?
6909 */
6910
6911 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
6912 {
6913 /*
6914 * Bad URI...
6915 */
6916
6917 send_ipp_status(con, IPP_NOT_FOUND,
6918 _("The printer or class does not exist."));
6919 return;
6920 }
6921
6922 /*
6923 * Check policy...
6924 */
6925
6926 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
6927 {
6928 send_http_error(con, status, printer);
6929 return;
6930 }
6931
6932 /*
6933 * Send the attributes...
6934 */
6935
6936 ra = create_requested_array(con->request);
6937
6938 copy_printer_attrs(con, printer, ra);
6939
6940 cupsArrayDelete(ra);
6941
6942 con->response->request.status.status_code = IPP_OK;
6943 }
6944
6945
6946 /*
6947 * 'get_printer_supported()' - Get printer supported values.
6948 */
6949
6950 static void
6951 get_printer_supported(
6952 cupsd_client_t *con, /* I - Client connection */
6953 ipp_attribute_t *uri) /* I - Printer URI */
6954 {
6955 http_status_t status; /* Policy status */
6956 cups_ptype_t dtype; /* Destination type (printer/class) */
6957 cupsd_printer_t *printer; /* Printer/class */
6958
6959
6960 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_printer_supported(%p[%d], %s)", con,
6961 con->number, uri->values[0].string.text);
6962
6963 /*
6964 * Is the destination valid?
6965 */
6966
6967 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
6968 {
6969 /*
6970 * Bad URI...
6971 */
6972
6973 send_ipp_status(con, IPP_NOT_FOUND,
6974 _("The printer or class does not exist."));
6975 return;
6976 }
6977
6978 /*
6979 * Check policy...
6980 */
6981
6982 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
6983 {
6984 send_http_error(con, status, printer);
6985 return;
6986 }
6987
6988 /*
6989 * Return a list of attributes that can be set via Set-Printer-Attributes.
6990 */
6991
6992 ippAddInteger(con->response, IPP_TAG_PRINTER, IPP_TAG_ADMINDEFINE,
6993 "printer-info", 0);
6994 ippAddInteger(con->response, IPP_TAG_PRINTER, IPP_TAG_ADMINDEFINE,
6995 "printer-location", 0);
6996
6997 con->response->request.status.status_code = IPP_OK;
6998 }
6999
7000
7001 /*
7002 * 'get_printers()' - Get a list of printers or classes.
7003 */
7004
7005 static void
7006 get_printers(cupsd_client_t *con, /* I - Client connection */
7007 int type) /* I - 0 or CUPS_PRINTER_CLASS */
7008 {
7009 http_status_t status; /* Policy status */
7010 ipp_attribute_t *attr; /* Current attribute */
7011 int limit; /* Max number of printers to return */
7012 int count; /* Number of printers that match */
7013 cupsd_printer_t *printer; /* Current printer pointer */
7014 cups_ptype_t printer_type, /* printer-type attribute */
7015 printer_mask; /* printer-type-mask attribute */
7016 char *location; /* Location string */
7017 const char *username; /* Current user */
7018 char *first_printer_name; /* first-printer-name attribute */
7019 cups_array_t *ra; /* Requested attributes array */
7020 int local; /* Local connection? */
7021
7022
7023 cupsdLogMessage(CUPSD_LOG_DEBUG2, "get_printers(%p[%d], %x)", con,
7024 con->number, type);
7025
7026 /*
7027 * Check policy...
7028 */
7029
7030 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
7031 {
7032 send_http_error(con, status, NULL);
7033 return;
7034 }
7035
7036 /*
7037 * Check for printers...
7038 */
7039
7040 if (!Printers || !cupsArrayCount(Printers))
7041 {
7042 send_ipp_status(con, IPP_NOT_FOUND, _("No destinations added."));
7043 return;
7044 }
7045
7046 /*
7047 * See if they want to limit the number of printers reported...
7048 */
7049
7050 if ((attr = ippFindAttribute(con->request, "limit",
7051 IPP_TAG_INTEGER)) != NULL)
7052 limit = attr->values[0].integer;
7053 else
7054 limit = 10000000;
7055
7056 if ((attr = ippFindAttribute(con->request, "first-printer-name",
7057 IPP_TAG_NAME)) != NULL)
7058 first_printer_name = attr->values[0].string.text;
7059 else
7060 first_printer_name = NULL;
7061
7062 /*
7063 * Support filtering...
7064 */
7065
7066 if ((attr = ippFindAttribute(con->request, "printer-type",
7067 IPP_TAG_ENUM)) != NULL)
7068 printer_type = (cups_ptype_t)attr->values[0].integer;
7069 else
7070 printer_type = (cups_ptype_t)0;
7071
7072 if ((attr = ippFindAttribute(con->request, "printer-type-mask",
7073 IPP_TAG_ENUM)) != NULL)
7074 printer_mask = (cups_ptype_t)attr->values[0].integer;
7075 else
7076 printer_mask = (cups_ptype_t)0;
7077
7078 local = httpAddrLocalhost(&(con->clientaddr));
7079
7080 if ((attr = ippFindAttribute(con->request, "printer-location",
7081 IPP_TAG_TEXT)) != NULL)
7082 location = attr->values[0].string.text;
7083 else
7084 location = NULL;
7085
7086 if (con->username[0])
7087 username = con->username;
7088 else if ((attr = ippFindAttribute(con->request, "requesting-user-name",
7089 IPP_TAG_NAME)) != NULL)
7090 username = attr->values[0].string.text;
7091 else
7092 username = NULL;
7093
7094 ra = create_requested_array(con->request);
7095
7096 /*
7097 * OK, build a list of printers for this printer...
7098 */
7099
7100 if (first_printer_name)
7101 {
7102 if ((printer = cupsdFindDest(first_printer_name)) == NULL)
7103 printer = (cupsd_printer_t *)cupsArrayFirst(Printers);
7104 }
7105 else
7106 printer = (cupsd_printer_t *)cupsArrayFirst(Printers);
7107
7108 for (count = 0;
7109 count < limit && printer;
7110 printer = (cupsd_printer_t *)cupsArrayNext(Printers))
7111 {
7112 if (!local && !printer->shared)
7113 continue;
7114
7115 if ((!type || (printer->type & CUPS_PRINTER_CLASS) == type) &&
7116 (printer->type & printer_mask) == printer_type &&
7117 (!location ||
7118 (printer->location && !_cups_strcasecmp(printer->location, location))))
7119 {
7120 /*
7121 * If a username is specified, see if it is allowed or denied
7122 * access...
7123 */
7124
7125 if (cupsArrayCount(printer->users) && username &&
7126 !user_allowed(printer, username))
7127 continue;
7128
7129 /*
7130 * Add the group separator as needed...
7131 */
7132
7133 if (count > 0)
7134 ippAddSeparator(con->response);
7135
7136 count ++;
7137
7138 /*
7139 * Send the attributes...
7140 */
7141
7142 copy_printer_attrs(con, printer, ra);
7143 }
7144 }
7145
7146 cupsArrayDelete(ra);
7147
7148 con->response->request.status.status_code = IPP_OK;
7149 }
7150
7151
7152 /*
7153 * 'get_subscription_attrs()' - Get subscription attributes.
7154 */
7155
7156 static void
7157 get_subscription_attrs(
7158 cupsd_client_t *con, /* I - Client connection */
7159 int sub_id) /* I - Subscription ID */
7160 {
7161 http_status_t status; /* Policy status */
7162 cupsd_subscription_t *sub; /* Subscription */
7163 cupsd_policy_t *policy; /* Current security policy */
7164 cups_array_t *ra, /* Requested attributes array */
7165 *exclude; /* Private attributes array */
7166
7167
7168 cupsdLogMessage(CUPSD_LOG_DEBUG2,
7169 "get_subscription_attrs(con=%p[%d], sub_id=%d)",
7170 con, con->number, sub_id);
7171
7172 /*
7173 * Is the subscription ID valid?
7174 */
7175
7176 if ((sub = cupsdFindSubscription(sub_id)) == NULL)
7177 {
7178 /*
7179 * Bad subscription ID...
7180 */
7181
7182 send_ipp_status(con, IPP_NOT_FOUND, _("Subscription #%d does not exist."),
7183 sub_id);
7184 return;
7185 }
7186
7187 /*
7188 * Check policy...
7189 */
7190
7191 if (sub->dest)
7192 policy = sub->dest->op_policy_ptr;
7193 else
7194 policy = DefaultPolicyPtr;
7195
7196 if ((status = cupsdCheckPolicy(policy, con, sub->owner)) != HTTP_OK)
7197 {
7198 send_http_error(con, status, sub->dest);
7199 return;
7200 }
7201
7202 exclude = cupsdGetPrivateAttrs(policy, con, sub->dest, sub->owner);
7203
7204 /*
7205 * Copy the subscription attributes to the response using the
7206 * requested-attributes attribute that may be provided by the client.
7207 */
7208
7209 ra = create_requested_array(con->request);
7210
7211 copy_subscription_attrs(con, sub, ra, exclude);
7212
7213 cupsArrayDelete(ra);
7214
7215 con->response->request.status.status_code = IPP_OK;
7216 }
7217
7218
7219 /*
7220 * 'get_subscriptions()' - Get subscriptions.
7221 */
7222
7223 static void
7224 get_subscriptions(cupsd_client_t *con, /* I - Client connection */
7225 ipp_attribute_t *uri) /* I - Printer/job URI */
7226 {
7227 http_status_t status; /* Policy status */
7228 int count; /* Number of subscriptions */
7229 int limit; /* Limit */
7230 cupsd_subscription_t *sub; /* Subscription */
7231 cups_array_t *ra; /* Requested attributes array */
7232 ipp_attribute_t *attr; /* Attribute */
7233 cups_ptype_t dtype; /* Destination type (printer/class) */
7234 char scheme[HTTP_MAX_URI],
7235 /* Scheme portion of URI */
7236 username[HTTP_MAX_URI],
7237 /* Username portion of URI */
7238 host[HTTP_MAX_URI],
7239 /* Host portion of URI */
7240 resource[HTTP_MAX_URI];
7241 /* Resource portion of URI */
7242 int port; /* Port portion of URI */
7243 cupsd_job_t *job; /* Job pointer */
7244 cupsd_printer_t *printer; /* Printer */
7245 cupsd_policy_t *policy; /* Policy */
7246 cups_array_t *exclude; /* Private attributes array */
7247
7248
7249 cupsdLogMessage(CUPSD_LOG_DEBUG2,
7250 "get_subscriptions(con=%p[%d], uri=%s)",
7251 con, con->number, uri->values[0].string.text);
7252
7253 /*
7254 * Is the destination valid?
7255 */
7256
7257 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
7258 sizeof(scheme), username, sizeof(username), host,
7259 sizeof(host), &port, resource, sizeof(resource));
7260
7261 if (!strcmp(resource, "/") ||
7262 (!strncmp(resource, "/jobs", 5) && strlen(resource) <= 6) ||
7263 (!strncmp(resource, "/printers", 9) && strlen(resource) <= 10) ||
7264 (!strncmp(resource, "/classes", 8) && strlen(resource) <= 9))
7265 {
7266 printer = NULL;
7267 job = NULL;
7268 }
7269 else if (!strncmp(resource, "/jobs/", 6) && resource[6])
7270 {
7271 printer = NULL;
7272 job = cupsdFindJob(atoi(resource + 6));
7273
7274 if (!job)
7275 {
7276 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."),
7277 atoi(resource + 6));
7278 return;
7279 }
7280 }
7281 else if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
7282 {
7283 /*
7284 * Bad URI...
7285 */
7286
7287 send_ipp_status(con, IPP_NOT_FOUND,
7288 _("The printer or class does not exist."));
7289 return;
7290 }
7291 else if ((attr = ippFindAttribute(con->request, "notify-job-id",
7292 IPP_TAG_INTEGER)) != NULL)
7293 {
7294 job = cupsdFindJob(attr->values[0].integer);
7295
7296 if (!job)
7297 {
7298 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."),
7299 attr->values[0].integer);
7300 return;
7301 }
7302 }
7303 else
7304 job = NULL;
7305
7306 /*
7307 * Check policy...
7308 */
7309
7310 if (printer)
7311 policy = printer->op_policy_ptr;
7312 else
7313 policy = DefaultPolicyPtr;
7314
7315 if ((status = cupsdCheckPolicy(policy, con, NULL)) != HTTP_OK)
7316 {
7317 send_http_error(con, status, printer);
7318 return;
7319 }
7320
7321 /*
7322 * Copy the subscription attributes to the response using the
7323 * requested-attributes attribute that may be provided by the client.
7324 */
7325
7326 ra = create_requested_array(con->request);
7327
7328 if ((attr = ippFindAttribute(con->request, "limit",
7329 IPP_TAG_INTEGER)) != NULL)
7330 limit = attr->values[0].integer;
7331 else
7332 limit = 0;
7333
7334 /*
7335 * See if we only want to see subscriptions for a specific user...
7336 */
7337
7338 if ((attr = ippFindAttribute(con->request, "my-subscriptions",
7339 IPP_TAG_BOOLEAN)) != NULL &&
7340 attr->values[0].boolean)
7341 strlcpy(username, get_username(con), sizeof(username));
7342 else
7343 username[0] = '\0';
7344
7345 for (sub = (cupsd_subscription_t *)cupsArrayFirst(Subscriptions), count = 0;
7346 sub;
7347 sub = (cupsd_subscription_t *)cupsArrayNext(Subscriptions))
7348 if ((!printer || sub->dest == printer) && (!job || sub->job == job) &&
7349 (!username[0] || !_cups_strcasecmp(username, sub->owner)))
7350 {
7351 ippAddSeparator(con->response);
7352
7353 exclude = cupsdGetPrivateAttrs(sub->dest ? sub->dest->op_policy_ptr :
7354 policy, con, sub->dest,
7355 sub->owner);
7356
7357 copy_subscription_attrs(con, sub, ra, exclude);
7358
7359 count ++;
7360 if (limit && count >= limit)
7361 break;
7362 }
7363
7364 cupsArrayDelete(ra);
7365
7366 if (count)
7367 con->response->request.status.status_code = IPP_OK;
7368 else
7369 send_ipp_status(con, IPP_NOT_FOUND, _("No subscriptions found."));
7370 }
7371
7372
7373 /*
7374 * 'get_username()' - Get the username associated with a request.
7375 */
7376
7377 static const char * /* O - Username */
7378 get_username(cupsd_client_t *con) /* I - Connection */
7379 {
7380 ipp_attribute_t *attr; /* Attribute */
7381
7382
7383 if (con->username[0])
7384 return (con->username);
7385 else if ((attr = ippFindAttribute(con->request, "requesting-user-name",
7386 IPP_TAG_NAME)) != NULL)
7387 return (attr->values[0].string.text);
7388 else
7389 return ("anonymous");
7390 }
7391
7392
7393 /*
7394 * 'hold_job()' - Hold a print job.
7395 */
7396
7397 static void
7398 hold_job(cupsd_client_t *con, /* I - Client connection */
7399 ipp_attribute_t *uri) /* I - Job or Printer URI */
7400 {
7401 ipp_attribute_t *attr; /* Current job-hold-until */
7402 const char *when; /* New value */
7403 int jobid; /* Job ID */
7404 char scheme[HTTP_MAX_URI], /* Method portion of URI */
7405 username[HTTP_MAX_URI], /* Username portion of URI */
7406 host[HTTP_MAX_URI], /* Host portion of URI */
7407 resource[HTTP_MAX_URI]; /* Resource portion of URI */
7408 int port; /* Port portion of URI */
7409 cupsd_job_t *job; /* Job information */
7410
7411
7412 cupsdLogMessage(CUPSD_LOG_DEBUG2, "hold_job(%p[%d], %s)", con, con->number,
7413 uri->values[0].string.text);
7414
7415 /*
7416 * See if we have a job URI or a printer URI...
7417 */
7418
7419 if (!strcmp(uri->name, "printer-uri"))
7420 {
7421 /*
7422 * Got a printer URI; see if we also have a job-id attribute...
7423 */
7424
7425 if ((attr = ippFindAttribute(con->request, "job-id",
7426 IPP_TAG_INTEGER)) == NULL)
7427 {
7428 send_ipp_status(con, IPP_BAD_REQUEST,
7429 _("Got a printer-uri attribute but no job-id."));
7430 return;
7431 }
7432
7433 jobid = attr->values[0].integer;
7434 }
7435 else
7436 {
7437 /*
7438 * Got a job URI; parse it to get the job ID...
7439 */
7440
7441 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
7442 sizeof(scheme), username, sizeof(username), host,
7443 sizeof(host), &port, resource, sizeof(resource));
7444
7445 if (strncmp(resource, "/jobs/", 6))
7446 {
7447 /*
7448 * Not a valid URI!
7449 */
7450
7451 send_ipp_status(con, IPP_BAD_REQUEST,
7452 _("Bad job-uri \"%s\"."),
7453 uri->values[0].string.text);
7454 return;
7455 }
7456
7457 jobid = atoi(resource + 6);
7458 }
7459
7460 /*
7461 * See if the job exists...
7462 */
7463
7464 if ((job = cupsdFindJob(jobid)) == NULL)
7465 {
7466 /*
7467 * Nope - return a "not found" error...
7468 */
7469
7470 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."), jobid);
7471 return;
7472 }
7473
7474 /*
7475 * See if the job is owned by the requesting user...
7476 */
7477
7478 if (!validate_user(job, con, job->username, username, sizeof(username)))
7479 {
7480 send_http_error(con, con->username[0] ? HTTP_FORBIDDEN : HTTP_UNAUTHORIZED,
7481 cupsdFindDest(job->dest));
7482 return;
7483 }
7484
7485 /*
7486 * See if the job is in a state that allows holding...
7487 */
7488
7489 if (job->state_value > IPP_JOB_STOPPED)
7490 {
7491 /*
7492 * Return a "not-possible" error...
7493 */
7494
7495 send_ipp_status(con, IPP_NOT_POSSIBLE,
7496 _("Job #%d is finished and cannot be altered."),
7497 job->id);
7498 return;
7499 }
7500
7501 /*
7502 * Hold the job and return...
7503 */
7504
7505 if ((attr = ippFindAttribute(con->request, "job-hold-until",
7506 IPP_TAG_KEYWORD)) == NULL)
7507 attr = ippFindAttribute(con->request, "job-hold-until", IPP_TAG_NAME);
7508
7509 if (attr)
7510 {
7511 when = attr->values[0].string.text;
7512
7513 cupsdAddEvent(CUPSD_EVENT_JOB_CONFIG_CHANGED, cupsdFindDest(job->dest), job,
7514 "Job job-hold-until value changed by user.");
7515 }
7516 else
7517 when = "indefinite";
7518
7519 cupsdSetJobHoldUntil(job, when, 1);
7520 cupsdSetJobState(job, IPP_JOB_HELD, CUPSD_JOB_DEFAULT, "Job held by \"%s\".",
7521 username);
7522
7523 con->response->request.status.status_code = IPP_OK;
7524 }
7525
7526
7527 /*
7528 * 'hold_new_jobs()' - Hold pending/new jobs on a printer or class.
7529 */
7530
7531 static void
7532 hold_new_jobs(cupsd_client_t *con, /* I - Connection */
7533 ipp_attribute_t *uri) /* I - Printer URI */
7534 {
7535 http_status_t status; /* Policy status */
7536 cups_ptype_t dtype; /* Destination type (printer/class) */
7537 cupsd_printer_t *printer; /* Printer data */
7538
7539
7540 cupsdLogMessage(CUPSD_LOG_DEBUG2, "hold_new_jobs(%p[%d], %s)", con,
7541 con->number, uri->values[0].string.text);
7542
7543 /*
7544 * Is the destination valid?
7545 */
7546
7547 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
7548 {
7549 /*
7550 * Bad URI...
7551 */
7552
7553 send_ipp_status(con, IPP_NOT_FOUND,
7554 _("The printer or class does not exist."));
7555 return;
7556 }
7557
7558 /*
7559 * Check policy...
7560 */
7561
7562 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
7563 {
7564 send_http_error(con, status, printer);
7565 return;
7566 }
7567
7568 /*
7569 * Hold pending/new jobs sent to the printer...
7570 */
7571
7572 printer->holding_new_jobs = 1;
7573
7574 cupsdSetPrinterReasons(printer, "+hold-new-jobs");
7575
7576 if (dtype & CUPS_PRINTER_CLASS)
7577 cupsdLogMessage(CUPSD_LOG_INFO,
7578 "Class \"%s\" now holding pending/new jobs (\"%s\").",
7579 printer->name, get_username(con));
7580 else
7581 cupsdLogMessage(CUPSD_LOG_INFO,
7582 "Printer \"%s\" now holding pending/new jobs (\"%s\").",
7583 printer->name, get_username(con));
7584
7585 /*
7586 * Everything was ok, so return OK status...
7587 */
7588
7589 con->response->request.status.status_code = IPP_OK;
7590 }
7591
7592
7593 /*
7594 * 'move_job()' - Move a job to a new destination.
7595 */
7596
7597 static void
7598 move_job(cupsd_client_t *con, /* I - Client connection */
7599 ipp_attribute_t *uri) /* I - Job URI */
7600 {
7601 http_status_t status; /* Policy status */
7602 ipp_attribute_t *attr; /* Current attribute */
7603 int jobid; /* Job ID */
7604 cupsd_job_t *job; /* Current job */
7605 const char *src; /* Source printer/class */
7606 cups_ptype_t stype, /* Source type (printer or class) */
7607 dtype; /* Destination type (printer/class) */
7608 char scheme[HTTP_MAX_URI], /* Scheme portion of URI */
7609 username[HTTP_MAX_URI], /* Username portion of URI */
7610 host[HTTP_MAX_URI], /* Host portion of URI */
7611 resource[HTTP_MAX_URI]; /* Resource portion of URI */
7612 int port; /* Port portion of URI */
7613 cupsd_printer_t *sprinter, /* Source printer */
7614 *dprinter; /* Destination printer */
7615
7616
7617 cupsdLogMessage(CUPSD_LOG_DEBUG2, "move_job(%p[%d], %s)", con, con->number,
7618 uri->values[0].string.text);
7619
7620 /*
7621 * Get the new printer or class...
7622 */
7623
7624 if ((attr = ippFindAttribute(con->request, "job-printer-uri",
7625 IPP_TAG_URI)) == NULL)
7626 {
7627 /*
7628 * Need job-printer-uri...
7629 */
7630
7631 send_ipp_status(con, IPP_BAD_REQUEST,
7632 _("job-printer-uri attribute missing."));
7633 return;
7634 }
7635
7636 if (!cupsdValidateDest(attr->values[0].string.text, &dtype, &dprinter))
7637 {
7638 /*
7639 * Bad URI...
7640 */
7641
7642 send_ipp_status(con, IPP_NOT_FOUND,
7643 _("The printer or class does not exist."));
7644 return;
7645 }
7646
7647 /*
7648 * See if we have a job URI or a printer URI...
7649 */
7650
7651 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
7652 sizeof(scheme), username, sizeof(username), host,
7653 sizeof(host), &port, resource, sizeof(resource));
7654
7655 if (!strcmp(uri->name, "printer-uri"))
7656 {
7657 /*
7658 * Got a printer URI; see if we also have a job-id attribute...
7659 */
7660
7661 if ((attr = ippFindAttribute(con->request, "job-id",
7662 IPP_TAG_INTEGER)) == NULL)
7663 {
7664 /*
7665 * Move all jobs...
7666 */
7667
7668 if ((src = cupsdValidateDest(uri->values[0].string.text, &stype,
7669 &sprinter)) == NULL)
7670 {
7671 /*
7672 * Bad URI...
7673 */
7674
7675 send_ipp_status(con, IPP_NOT_FOUND,
7676 _("The printer or class does not exist."));
7677 return;
7678 }
7679
7680 job = NULL;
7681 }
7682 else
7683 {
7684 /*
7685 * Otherwise, just move a single job...
7686 */
7687
7688 if ((job = cupsdFindJob(attr->values[0].integer)) == NULL)
7689 {
7690 /*
7691 * Nope - return a "not found" error...
7692 */
7693
7694 send_ipp_status(con, IPP_NOT_FOUND,
7695 _("Job #%d does not exist."), attr->values[0].integer);
7696 return;
7697 }
7698 else
7699 {
7700 /*
7701 * Job found, initialize source pointers...
7702 */
7703
7704 src = NULL;
7705 sprinter = NULL;
7706 }
7707 }
7708 }
7709 else
7710 {
7711 /*
7712 * Got a job URI; parse it to get the job ID...
7713 */
7714
7715 if (strncmp(resource, "/jobs/", 6))
7716 {
7717 /*
7718 * Not a valid URI!
7719 */
7720
7721 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-uri \"%s\"."),
7722 uri->values[0].string.text);
7723 return;
7724 }
7725
7726 /*
7727 * See if the job exists...
7728 */
7729
7730 jobid = atoi(resource + 6);
7731
7732 if ((job = cupsdFindJob(jobid)) == NULL)
7733 {
7734 /*
7735 * Nope - return a "not found" error...
7736 */
7737
7738 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."), jobid);
7739 return;
7740 }
7741 else
7742 {
7743 /*
7744 * Job found, initialize source pointers...
7745 */
7746
7747 src = NULL;
7748 sprinter = NULL;
7749 }
7750 }
7751
7752 /*
7753 * Check the policy of the destination printer...
7754 */
7755
7756 if ((status = cupsdCheckPolicy(dprinter->op_policy_ptr, con,
7757 job ? job->username : NULL)) != HTTP_OK)
7758 {
7759 send_http_error(con, status, dprinter);
7760 return;
7761 }
7762
7763 /*
7764 * Now move the job or jobs...
7765 */
7766
7767 if (job)
7768 {
7769 /*
7770 * See if the job has been completed...
7771 */
7772
7773 if (job->state_value > IPP_JOB_STOPPED)
7774 {
7775 /*
7776 * Return a "not-possible" error...
7777 */
7778
7779 send_ipp_status(con, IPP_NOT_POSSIBLE,
7780 _("Job #%d is finished and cannot be altered."),
7781 job->id);
7782 return;
7783 }
7784
7785 /*
7786 * See if the job is owned by the requesting user...
7787 */
7788
7789 if (!validate_user(job, con, job->username, username, sizeof(username)))
7790 {
7791 send_http_error(con, con->username[0] ? HTTP_FORBIDDEN : HTTP_UNAUTHORIZED,
7792 cupsdFindDest(job->dest));
7793 return;
7794 }
7795
7796 /*
7797 * Move the job to a different printer or class...
7798 */
7799
7800 cupsdMoveJob(job, dprinter);
7801 }
7802 else
7803 {
7804 /*
7805 * Got the source printer, now look through the jobs...
7806 */
7807
7808 for (job = (cupsd_job_t *)cupsArrayFirst(Jobs);
7809 job;
7810 job = (cupsd_job_t *)cupsArrayNext(Jobs))
7811 {
7812 /*
7813 * See if the job is pointing at the source printer or has not been
7814 * completed...
7815 */
7816
7817 if (_cups_strcasecmp(job->dest, src) ||
7818 job->state_value > IPP_JOB_STOPPED)
7819 continue;
7820
7821 /*
7822 * See if the job can be moved by the requesting user...
7823 */
7824
7825 if (!validate_user(job, con, job->username, username, sizeof(username)))
7826 continue;
7827
7828 /*
7829 * Move the job to a different printer or class...
7830 */
7831
7832 cupsdMoveJob(job, dprinter);
7833 }
7834 }
7835
7836 /*
7837 * Start jobs if possible...
7838 */
7839
7840 cupsdCheckJobs();
7841
7842 /*
7843 * Return with "everything is OK" status...
7844 */
7845
7846 con->response->request.status.status_code = IPP_OK;
7847 }
7848
7849
7850 /*
7851 * 'ppd_parse_line()' - Parse a PPD default line.
7852 */
7853
7854 static int /* O - 0 on success, -1 on failure */
7855 ppd_parse_line(const char *line, /* I - Line */
7856 char *option, /* O - Option name */
7857 int olen, /* I - Size of option name */
7858 char *choice, /* O - Choice name */
7859 int clen) /* I - Size of choice name */
7860 {
7861 /*
7862 * Verify this is a default option line...
7863 */
7864
7865 if (strncmp(line, "*Default", 8))
7866 return (-1);
7867
7868 /*
7869 * Read the option name...
7870 */
7871
7872 for (line += 8, olen --;
7873 *line > ' ' && *line < 0x7f && *line != ':' && *line != '/';
7874 line ++)
7875 if (olen > 0)
7876 {
7877 *option++ = *line;
7878 olen --;
7879 }
7880
7881 *option = '\0';
7882
7883 /*
7884 * Skip everything else up to the colon (:)...
7885 */
7886
7887 while (*line && *line != ':')
7888 line ++;
7889
7890 if (!*line)
7891 return (-1);
7892
7893 line ++;
7894
7895 /*
7896 * Now grab the option choice, skipping leading whitespace...
7897 */
7898
7899 while (isspace(*line & 255))
7900 line ++;
7901
7902 for (clen --;
7903 *line > ' ' && *line < 0x7f && *line != ':' && *line != '/';
7904 line ++)
7905 if (clen > 0)
7906 {
7907 *choice++ = *line;
7908 clen --;
7909 }
7910
7911 *choice = '\0';
7912
7913 /*
7914 * Return with no errors...
7915 */
7916
7917 return (0);
7918 }
7919
7920
7921 /*
7922 * 'print_job()' - Print a file to a printer or class.
7923 */
7924
7925 static void
7926 print_job(cupsd_client_t *con, /* I - Client connection */
7927 ipp_attribute_t *uri) /* I - Printer URI */
7928 {
7929 ipp_attribute_t *attr; /* Current attribute */
7930 ipp_attribute_t *format; /* Document-format attribute */
7931 const char *default_format; /* document-format-default value */
7932 cupsd_job_t *job; /* New job */
7933 char filename[1024]; /* Job filename */
7934 mime_type_t *filetype; /* Type of file */
7935 char super[MIME_MAX_SUPER], /* Supertype of file */
7936 type[MIME_MAX_TYPE], /* Subtype of file */
7937 mimetype[MIME_MAX_SUPER + MIME_MAX_TYPE + 2];
7938 /* Textual name of mime type */
7939 cupsd_printer_t *printer; /* Printer data */
7940 struct stat fileinfo; /* File information */
7941 int kbytes; /* Size of file */
7942 int compression; /* Document compression */
7943
7944
7945 cupsdLogMessage(CUPSD_LOG_DEBUG2, "print_job(%p[%d], %s)", con, con->number,
7946 uri->values[0].string.text);
7947
7948 /*
7949 * Validate print file attributes, for now just document-format and
7950 * compression (CUPS only supports "none" and "gzip")...
7951 */
7952
7953 compression = CUPS_FILE_NONE;
7954
7955 if ((attr = ippFindAttribute(con->request, "compression",
7956 IPP_TAG_KEYWORD)) != NULL)
7957 {
7958 if (strcmp(attr->values[0].string.text, "none")
7959 #ifdef HAVE_LIBZ
7960 && strcmp(attr->values[0].string.text, "gzip")
7961 #endif /* HAVE_LIBZ */
7962 )
7963 {
7964 send_ipp_status(con, IPP_ATTRIBUTES,
7965 _("Unsupported compression \"%s\"."),
7966 attr->values[0].string.text);
7967 ippAddString(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_KEYWORD,
7968 "compression", NULL, attr->values[0].string.text);
7969 return;
7970 }
7971
7972 #ifdef HAVE_LIBZ
7973 if (!strcmp(attr->values[0].string.text, "gzip"))
7974 compression = CUPS_FILE_GZIP;
7975 #endif /* HAVE_LIBZ */
7976 }
7977
7978 /*
7979 * Do we have a file to print?
7980 */
7981
7982 if (!con->filename)
7983 {
7984 send_ipp_status(con, IPP_BAD_REQUEST, _("No file in print request."));
7985 return;
7986 }
7987
7988 /*
7989 * Is the destination valid?
7990 */
7991
7992 if (!cupsdValidateDest(uri->values[0].string.text, NULL, &printer))
7993 {
7994 /*
7995 * Bad URI...
7996 */
7997
7998 send_ipp_status(con, IPP_NOT_FOUND,
7999 _("The printer or class does not exist."));
8000 return;
8001 }
8002
8003 /*
8004 * Is it a format we support?
8005 */
8006
8007 if ((format = ippFindAttribute(con->request, "document-format",
8008 IPP_TAG_MIMETYPE)) != NULL)
8009 {
8010 /*
8011 * Grab format from client...
8012 */
8013
8014 if (sscanf(format->values[0].string.text, "%15[^/]/%255[^;]", super,
8015 type) != 2)
8016 {
8017 send_ipp_status(con, IPP_BAD_REQUEST,
8018 _("Bad document-format \"%s\"."),
8019 format->values[0].string.text);
8020 return;
8021 }
8022 }
8023 else if ((default_format = cupsGetOption("document-format",
8024 printer->num_options,
8025 printer->options)) != NULL)
8026 {
8027 /*
8028 * Use default document format...
8029 */
8030
8031 if (sscanf(default_format, "%15[^/]/%255[^;]", super, type) != 2)
8032 {
8033 send_ipp_status(con, IPP_BAD_REQUEST,
8034 _("Bad document-format \"%s\"."),
8035 default_format);
8036 return;
8037 }
8038 }
8039 else
8040 {
8041 /*
8042 * Auto-type it!
8043 */
8044
8045 strlcpy(super, "application", sizeof(super));
8046 strlcpy(type, "octet-stream", sizeof(type));
8047 }
8048
8049 if (!strcmp(super, "application") && !strcmp(type, "octet-stream"))
8050 {
8051 /*
8052 * Auto-type the file...
8053 */
8054
8055 ipp_attribute_t *doc_name; /* document-name attribute */
8056
8057
8058 cupsdLogMessage(CUPSD_LOG_DEBUG, "[Job ???] Auto-typing file...");
8059
8060 doc_name = ippFindAttribute(con->request, "document-name", IPP_TAG_NAME);
8061 filetype = mimeFileType(MimeDatabase, con->filename,
8062 doc_name ? doc_name->values[0].string.text : NULL,
8063 &compression);
8064
8065 if (!filetype)
8066 filetype = mimeType(MimeDatabase, super, type);
8067
8068 cupsdLogMessage(CUPSD_LOG_INFO, "[Job ???] Request file type is %s/%s.",
8069 filetype->super, filetype->type);
8070 }
8071 else
8072 filetype = mimeType(MimeDatabase, super, type);
8073
8074 if (filetype &&
8075 (!format ||
8076 (!strcmp(super, "application") && !strcmp(type, "octet-stream"))))
8077 {
8078 /*
8079 * Replace the document-format attribute value with the auto-typed or
8080 * default one.
8081 */
8082
8083 snprintf(mimetype, sizeof(mimetype), "%s/%s", filetype->super,
8084 filetype->type);
8085
8086 if (format)
8087 {
8088 _cupsStrFree(format->values[0].string.text);
8089
8090 format->values[0].string.text = _cupsStrAlloc(mimetype);
8091 }
8092 else
8093 ippAddString(con->request, IPP_TAG_JOB, IPP_TAG_MIMETYPE,
8094 "document-format", NULL, mimetype);
8095 }
8096 else if (!filetype)
8097 {
8098 send_ipp_status(con, IPP_DOCUMENT_FORMAT,
8099 _("Unsupported document-format \"%s\"."),
8100 format ? format->values[0].string.text :
8101 "application/octet-stream");
8102 cupsdLogMessage(CUPSD_LOG_INFO,
8103 "Hint: Do you have the raw file printing rules enabled?");
8104
8105 if (format)
8106 ippAddString(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_MIMETYPE,
8107 "document-format", NULL, format->values[0].string.text);
8108
8109 return;
8110 }
8111
8112 /*
8113 * Read any embedded job ticket info from PS files...
8114 */
8115
8116 if (!_cups_strcasecmp(filetype->super, "application") &&
8117 (!_cups_strcasecmp(filetype->type, "postscript") ||
8118 !_cups_strcasecmp(filetype->type, "pdf")))
8119 read_job_ticket(con);
8120
8121 /*
8122 * Create the job object...
8123 */
8124
8125 if ((job = add_job(con, printer, filetype)) == NULL)
8126 return;
8127
8128 /*
8129 * Update quota data...
8130 */
8131
8132 if (stat(con->filename, &fileinfo))
8133 kbytes = 0;
8134 else
8135 kbytes = (fileinfo.st_size + 1023) / 1024;
8136
8137 cupsdUpdateQuota(printer, job->username, 0, kbytes);
8138
8139 if ((attr = ippFindAttribute(job->attrs, "job-k-octets",
8140 IPP_TAG_INTEGER)) != NULL)
8141 attr->values[0].integer += kbytes;
8142
8143 /*
8144 * Add the job file...
8145 */
8146
8147 if (add_file(con, job, filetype, compression))
8148 return;
8149
8150 snprintf(filename, sizeof(filename), "%s/d%05d-%03d", RequestRoot, job->id,
8151 job->num_files);
8152 rename(con->filename, filename);
8153 cupsdClearString(&con->filename);
8154
8155 /*
8156 * See if we need to add the ending sheet...
8157 */
8158
8159 if (cupsdTimeoutJob(job))
8160 return;
8161
8162 /*
8163 * Log and save the job...
8164 */
8165
8166 cupsdLogJob(job, CUPSD_LOG_INFO,
8167 "File of type %s/%s queued by \"%s\".",
8168 filetype->super, filetype->type, job->username);
8169 cupsdLogJob(job, CUPSD_LOG_DEBUG, "hold_until=%d", (int)job->hold_until);
8170 cupsdLogJob(job, CUPSD_LOG_INFO, "Queued on \"%s\" by \"%s\".",
8171 job->dest, job->username);
8172
8173 /*
8174 * Start the job if possible...
8175 */
8176
8177 cupsdCheckJobs();
8178 }
8179
8180
8181 /*
8182 * 'read_job_ticket()' - Read a job ticket embedded in a print file.
8183 *
8184 * This function only gets called when printing a single PDF or PostScript
8185 * file using the Print-Job operation. It doesn't work for Create-Job +
8186 * Send-File, since the job attributes need to be set at job creation
8187 * time for banners to work. The embedded job ticket stuff is here
8188 * primarily to allow the Windows printer driver for CUPS to pass in JCL
8189 * options and IPP attributes which otherwise would be lost.
8190 *
8191 * The format of a job ticket is simple:
8192 *
8193 * %cupsJobTicket: attr1=value1 attr2=value2 ... attrN=valueN
8194 *
8195 * %cupsJobTicket: attr1=value1
8196 * %cupsJobTicket: attr2=value2
8197 * ...
8198 * %cupsJobTicket: attrN=valueN
8199 *
8200 * Job ticket lines must appear immediately after the first line that
8201 * specifies PostScript (%!PS-Adobe-3.0) or PDF (%PDF) format, and CUPS
8202 * stops looking for job ticket info when it finds a line that does not begin
8203 * with "%cupsJobTicket:".
8204 *
8205 * The maximum length of a job ticket line, including the prefix, is
8206 * 255 characters to conform with the Adobe DSC.
8207 *
8208 * Read-only attributes are rejected with a notice to the error log in
8209 * case a malicious user tries anything. Since the job ticket is read
8210 * prior to attribute validation in print_job(), job ticket attributes
8211 * will go through the same validation as IPP attributes...
8212 */
8213
8214 static void
8215 read_job_ticket(cupsd_client_t *con) /* I - Client connection */
8216 {
8217 cups_file_t *fp; /* File to read from */
8218 char line[256]; /* Line data */
8219 int num_options; /* Number of options */
8220 cups_option_t *options; /* Options */
8221 ipp_t *ticket; /* New attributes */
8222 ipp_attribute_t *attr, /* Current attribute */
8223 *attr2, /* Job attribute */
8224 *prev2; /* Previous job attribute */
8225
8226
8227 /*
8228 * First open the print file...
8229 */
8230
8231 if ((fp = cupsFileOpen(con->filename, "rb")) == NULL)
8232 {
8233 cupsdLogMessage(CUPSD_LOG_ERROR,
8234 "Unable to open print file for job ticket - %s",
8235 strerror(errno));
8236 return;
8237 }
8238
8239 /*
8240 * Skip the first line...
8241 */
8242
8243 if (cupsFileGets(fp, line, sizeof(line)) == NULL)
8244 {
8245 cupsdLogMessage(CUPSD_LOG_ERROR,
8246 "Unable to read from print file for job ticket - %s",
8247 strerror(errno));
8248 cupsFileClose(fp);
8249 return;
8250 }
8251
8252 if (strncmp(line, "%!PS-Adobe-", 11) && strncmp(line, "%PDF-", 5))
8253 {
8254 /*
8255 * Not a DSC-compliant file, so no job ticket info will be available...
8256 */
8257
8258 cupsFileClose(fp);
8259 return;
8260 }
8261
8262 /*
8263 * Read job ticket info from the file...
8264 */
8265
8266 num_options = 0;
8267 options = NULL;
8268
8269 while (cupsFileGets(fp, line, sizeof(line)))
8270 {
8271 /*
8272 * Stop at the first non-ticket line...
8273 */
8274
8275 if (strncmp(line, "%cupsJobTicket:", 15))
8276 break;
8277
8278 /*
8279 * Add the options to the option array...
8280 */
8281
8282 num_options = cupsParseOptions(line + 15, num_options, &options);
8283 }
8284
8285 /*
8286 * Done with the file; see if we have any options...
8287 */
8288
8289 cupsFileClose(fp);
8290
8291 if (num_options == 0)
8292 return;
8293
8294 /*
8295 * OK, convert the options to an attribute list, and apply them to
8296 * the request...
8297 */
8298
8299 ticket = ippNew();
8300 cupsEncodeOptions(ticket, num_options, options);
8301
8302 /*
8303 * See what the user wants to change.
8304 */
8305
8306 for (attr = ticket->attrs; attr; attr = attr->next)
8307 {
8308 if (attr->group_tag != IPP_TAG_JOB || !attr->name)
8309 continue;
8310
8311 if (!strcmp(attr->name, "job-originating-host-name") ||
8312 !strcmp(attr->name, "job-originating-user-name") ||
8313 !strcmp(attr->name, "job-media-sheets-completed") ||
8314 !strcmp(attr->name, "job-k-octets") ||
8315 !strcmp(attr->name, "job-id") ||
8316 !strncmp(attr->name, "job-state", 9) ||
8317 !strncmp(attr->name, "time-at-", 8))
8318 continue; /* Read-only attrs */
8319
8320 if ((attr2 = ippFindAttribute(con->request, attr->name,
8321 IPP_TAG_ZERO)) != NULL)
8322 {
8323 /*
8324 * Some other value; first free the old value...
8325 */
8326
8327 if (con->request->attrs == attr2)
8328 {
8329 con->request->attrs = attr2->next;
8330 prev2 = NULL;
8331 }
8332 else
8333 {
8334 for (prev2 = con->request->attrs; prev2; prev2 = prev2->next)
8335 if (prev2->next == attr2)
8336 {
8337 prev2->next = attr2->next;
8338 break;
8339 }
8340 }
8341
8342 if (con->request->last == attr2)
8343 con->request->last = prev2;
8344
8345 ippDeleteAttribute(NULL, attr2);
8346 }
8347
8348 /*
8349 * Add new option by copying it...
8350 */
8351
8352 ippCopyAttribute(con->request, attr, 0);
8353 }
8354
8355 /*
8356 * Then free the attribute list and option array...
8357 */
8358
8359 ippDelete(ticket);
8360 cupsFreeOptions(num_options, options);
8361 }
8362
8363
8364 /*
8365 * 'reject_jobs()' - Reject print jobs to a printer.
8366 */
8367
8368 static void
8369 reject_jobs(cupsd_client_t *con, /* I - Client connection */
8370 ipp_attribute_t *uri) /* I - Printer or class URI */
8371 {
8372 http_status_t status; /* Policy status */
8373 cups_ptype_t dtype; /* Destination type (printer/class) */
8374 cupsd_printer_t *printer; /* Printer data */
8375 ipp_attribute_t *attr; /* printer-state-message text */
8376
8377
8378 cupsdLogMessage(CUPSD_LOG_DEBUG2, "reject_jobs(%p[%d], %s)", con,
8379 con->number, uri->values[0].string.text);
8380
8381 /*
8382 * Is the destination valid?
8383 */
8384
8385 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
8386 {
8387 /*
8388 * Bad URI...
8389 */
8390
8391 send_ipp_status(con, IPP_NOT_FOUND,
8392 _("The printer or class does not exist."));
8393 return;
8394 }
8395
8396 /*
8397 * Check policy...
8398 */
8399
8400 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
8401 {
8402 send_http_error(con, status, printer);
8403 return;
8404 }
8405
8406 /*
8407 * Reject jobs sent to the printer...
8408 */
8409
8410 printer->accepting = 0;
8411
8412 if ((attr = ippFindAttribute(con->request, "printer-state-message",
8413 IPP_TAG_TEXT)) == NULL)
8414 strlcpy(printer->state_message, "Rejecting Jobs",
8415 sizeof(printer->state_message));
8416 else
8417 strlcpy(printer->state_message, attr->values[0].string.text,
8418 sizeof(printer->state_message));
8419
8420 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, printer, NULL,
8421 "No longer accepting jobs.");
8422
8423 if (dtype & CUPS_PRINTER_CLASS)
8424 {
8425 cupsdMarkDirty(CUPSD_DIRTY_CLASSES);
8426
8427 cupsdLogMessage(CUPSD_LOG_INFO, "Class \"%s\" rejecting jobs (\"%s\").",
8428 printer->name, get_username(con));
8429 }
8430 else
8431 {
8432 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
8433
8434 cupsdLogMessage(CUPSD_LOG_INFO, "Printer \"%s\" rejecting jobs (\"%s\").",
8435 printer->name, get_username(con));
8436 }
8437
8438 /*
8439 * Everything was ok, so return OK status...
8440 */
8441
8442 con->response->request.status.status_code = IPP_OK;
8443 }
8444
8445
8446 /*
8447 * 'release_held_new_jobs()' - Release pending/new jobs on a printer or class.
8448 */
8449
8450 static void
8451 release_held_new_jobs(
8452 cupsd_client_t *con, /* I - Connection */
8453 ipp_attribute_t *uri) /* I - Printer URI */
8454 {
8455 http_status_t status; /* Policy status */
8456 cups_ptype_t dtype; /* Destination type (printer/class) */
8457 cupsd_printer_t *printer; /* Printer data */
8458
8459
8460 cupsdLogMessage(CUPSD_LOG_DEBUG2, "release_held_new_jobs(%p[%d], %s)", con,
8461 con->number, uri->values[0].string.text);
8462
8463 /*
8464 * Is the destination valid?
8465 */
8466
8467 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
8468 {
8469 /*
8470 * Bad URI...
8471 */
8472
8473 send_ipp_status(con, IPP_NOT_FOUND,
8474 _("The printer or class does not exist."));
8475 return;
8476 }
8477
8478 /*
8479 * Check policy...
8480 */
8481
8482 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
8483 {
8484 send_http_error(con, status, printer);
8485 return;
8486 }
8487
8488 /*
8489 * Hold pending/new jobs sent to the printer...
8490 */
8491
8492 printer->holding_new_jobs = 0;
8493
8494 cupsdSetPrinterReasons(printer, "-hold-new-jobs");
8495
8496 if (dtype & CUPS_PRINTER_CLASS)
8497 cupsdLogMessage(CUPSD_LOG_INFO,
8498 "Class \"%s\" now printing pending/new jobs (\"%s\").",
8499 printer->name, get_username(con));
8500 else
8501 cupsdLogMessage(CUPSD_LOG_INFO,
8502 "Printer \"%s\" now printing pending/new jobs (\"%s\").",
8503 printer->name, get_username(con));
8504
8505 /*
8506 * Everything was ok, so return OK status...
8507 */
8508
8509 con->response->request.status.status_code = IPP_OK;
8510 }
8511
8512
8513 /*
8514 * 'release_job()' - Release a held print job.
8515 */
8516
8517 static void
8518 release_job(cupsd_client_t *con, /* I - Client connection */
8519 ipp_attribute_t *uri) /* I - Job or Printer URI */
8520 {
8521 ipp_attribute_t *attr; /* Current attribute */
8522 int jobid; /* Job ID */
8523 char scheme[HTTP_MAX_URI], /* Method portion of URI */
8524 username[HTTP_MAX_URI], /* Username portion of URI */
8525 host[HTTP_MAX_URI], /* Host portion of URI */
8526 resource[HTTP_MAX_URI]; /* Resource portion of URI */
8527 int port; /* Port portion of URI */
8528 cupsd_job_t *job; /* Job information */
8529
8530
8531 cupsdLogMessage(CUPSD_LOG_DEBUG2, "release_job(%p[%d], %s)", con,
8532 con->number, uri->values[0].string.text);
8533
8534 /*
8535 * See if we have a job URI or a printer URI...
8536 */
8537
8538 if (!strcmp(uri->name, "printer-uri"))
8539 {
8540 /*
8541 * Got a printer URI; see if we also have a job-id attribute...
8542 */
8543
8544 if ((attr = ippFindAttribute(con->request, "job-id",
8545 IPP_TAG_INTEGER)) == NULL)
8546 {
8547 send_ipp_status(con, IPP_BAD_REQUEST,
8548 _("Got a printer-uri attribute but no job-id."));
8549 return;
8550 }
8551
8552 jobid = attr->values[0].integer;
8553 }
8554 else
8555 {
8556 /*
8557 * Got a job URI; parse it to get the job ID...
8558 */
8559
8560 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
8561 sizeof(scheme), username, sizeof(username), host,
8562 sizeof(host), &port, resource, sizeof(resource));
8563
8564 if (strncmp(resource, "/jobs/", 6))
8565 {
8566 /*
8567 * Not a valid URI!
8568 */
8569
8570 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-uri \"%s\"."),
8571 uri->values[0].string.text);
8572 return;
8573 }
8574
8575 jobid = atoi(resource + 6);
8576 }
8577
8578 /*
8579 * See if the job exists...
8580 */
8581
8582 if ((job = cupsdFindJob(jobid)) == NULL)
8583 {
8584 /*
8585 * Nope - return a "not found" error...
8586 */
8587
8588 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."), jobid);
8589 return;
8590 }
8591
8592 /*
8593 * See if job is "held"...
8594 */
8595
8596 if (job->state_value != IPP_JOB_HELD)
8597 {
8598 /*
8599 * Nope - return a "not possible" error...
8600 */
8601
8602 send_ipp_status(con, IPP_NOT_POSSIBLE, _("Job #%d is not held."), jobid);
8603 return;
8604 }
8605
8606 /*
8607 * See if the job is owned by the requesting user...
8608 */
8609
8610 if (!validate_user(job, con, job->username, username, sizeof(username)))
8611 {
8612 send_http_error(con, con->username[0] ? HTTP_FORBIDDEN : HTTP_UNAUTHORIZED,
8613 cupsdFindDest(job->dest));
8614 return;
8615 }
8616
8617 /*
8618 * Reset the job-hold-until value to "no-hold"...
8619 */
8620
8621 if ((attr = ippFindAttribute(job->attrs, "job-hold-until",
8622 IPP_TAG_KEYWORD)) == NULL)
8623 attr = ippFindAttribute(job->attrs, "job-hold-until", IPP_TAG_NAME);
8624
8625 if (attr)
8626 {
8627 _cupsStrFree(attr->values[0].string.text);
8628
8629 attr->value_tag = IPP_TAG_KEYWORD;
8630 attr->values[0].string.text = _cupsStrAlloc("no-hold");
8631
8632 cupsdAddEvent(CUPSD_EVENT_JOB_CONFIG_CHANGED, cupsdFindDest(job->dest), job,
8633 "Job job-hold-until value changed by user.");
8634 ippSetString(job->attrs, &job->reasons, 0, "none");
8635 }
8636
8637 /*
8638 * Release the job and return...
8639 */
8640
8641 cupsdReleaseJob(job);
8642
8643 cupsdAddEvent(CUPSD_EVENT_JOB_STATE, cupsdFindDest(job->dest), job,
8644 "Job released by user.");
8645
8646 cupsdLogJob(job, CUPSD_LOG_INFO, "Released by \"%s\".", username);
8647
8648 con->response->request.status.status_code = IPP_OK;
8649
8650 cupsdCheckJobs();
8651 }
8652
8653
8654 /*
8655 * 'renew_subscription()' - Renew an existing subscription...
8656 */
8657
8658 static void
8659 renew_subscription(
8660 cupsd_client_t *con, /* I - Client connection */
8661 int sub_id) /* I - Subscription ID */
8662 {
8663 http_status_t status; /* Policy status */
8664 cupsd_subscription_t *sub; /* Subscription */
8665 ipp_attribute_t *lease; /* notify-lease-duration */
8666
8667
8668 cupsdLogMessage(CUPSD_LOG_DEBUG2,
8669 "renew_subscription(con=%p[%d], sub_id=%d)",
8670 con, con->number, sub_id);
8671
8672 /*
8673 * Is the subscription ID valid?
8674 */
8675
8676 if ((sub = cupsdFindSubscription(sub_id)) == NULL)
8677 {
8678 /*
8679 * Bad subscription ID...
8680 */
8681
8682 send_ipp_status(con, IPP_NOT_FOUND, _("Subscription #%d does not exist."),
8683 sub_id);
8684 return;
8685 }
8686
8687 if (sub->job)
8688 {
8689 /*
8690 * Job subscriptions cannot be renewed...
8691 */
8692
8693 send_ipp_status(con, IPP_NOT_POSSIBLE,
8694 _("Job subscriptions cannot be renewed."));
8695 return;
8696 }
8697
8698 /*
8699 * Check policy...
8700 */
8701
8702 if ((status = cupsdCheckPolicy(sub->dest ? sub->dest->op_policy_ptr :
8703 DefaultPolicyPtr,
8704 con, sub->owner)) != HTTP_OK)
8705 {
8706 send_http_error(con, status, sub->dest);
8707 return;
8708 }
8709
8710 /*
8711 * Renew the subscription...
8712 */
8713
8714 lease = ippFindAttribute(con->request, "notify-lease-duration",
8715 IPP_TAG_INTEGER);
8716
8717 sub->lease = lease ? lease->values[0].integer : DefaultLeaseDuration;
8718
8719 if (MaxLeaseDuration && (sub->lease == 0 || sub->lease > MaxLeaseDuration))
8720 {
8721 cupsdLogMessage(CUPSD_LOG_INFO,
8722 "renew_subscription: Limiting notify-lease-duration to "
8723 "%d seconds.",
8724 MaxLeaseDuration);
8725 sub->lease = MaxLeaseDuration;
8726 }
8727
8728 sub->expire = sub->lease ? time(NULL) + sub->lease : 0;
8729
8730 cupsdMarkDirty(CUPSD_DIRTY_SUBSCRIPTIONS);
8731
8732 con->response->request.status.status_code = IPP_OK;
8733
8734 ippAddInteger(con->response, IPP_TAG_SUBSCRIPTION, IPP_TAG_INTEGER,
8735 "notify-lease-duration", sub->lease);
8736 }
8737
8738
8739 /*
8740 * 'restart_job()' - Restart an old print job.
8741 */
8742
8743 static void
8744 restart_job(cupsd_client_t *con, /* I - Client connection */
8745 ipp_attribute_t *uri) /* I - Job or Printer URI */
8746 {
8747 ipp_attribute_t *attr; /* Current attribute */
8748 int jobid; /* Job ID */
8749 cupsd_job_t *job; /* Job information */
8750 char scheme[HTTP_MAX_URI], /* Method portion of URI */
8751 username[HTTP_MAX_URI], /* Username portion of URI */
8752 host[HTTP_MAX_URI], /* Host portion of URI */
8753 resource[HTTP_MAX_URI]; /* Resource portion of URI */
8754 int port; /* Port portion of URI */
8755
8756
8757 cupsdLogMessage(CUPSD_LOG_DEBUG2, "restart_job(%p[%d], %s)", con,
8758 con->number, uri->values[0].string.text);
8759
8760 /*
8761 * See if we have a job URI or a printer URI...
8762 */
8763
8764 if (!strcmp(uri->name, "printer-uri"))
8765 {
8766 /*
8767 * Got a printer URI; see if we also have a job-id attribute...
8768 */
8769
8770 if ((attr = ippFindAttribute(con->request, "job-id",
8771 IPP_TAG_INTEGER)) == NULL)
8772 {
8773 send_ipp_status(con, IPP_BAD_REQUEST,
8774 _("Got a printer-uri attribute but no job-id."));
8775 return;
8776 }
8777
8778 jobid = attr->values[0].integer;
8779 }
8780 else
8781 {
8782 /*
8783 * Got a job URI; parse it to get the job ID...
8784 */
8785
8786 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
8787 sizeof(scheme), username, sizeof(username), host,
8788 sizeof(host), &port, resource, sizeof(resource));
8789
8790 if (strncmp(resource, "/jobs/", 6))
8791 {
8792 /*
8793 * Not a valid URI!
8794 */
8795
8796 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-uri \"%s\"."),
8797 uri->values[0].string.text);
8798 return;
8799 }
8800
8801 jobid = atoi(resource + 6);
8802 }
8803
8804 /*
8805 * See if the job exists...
8806 */
8807
8808 if ((job = cupsdFindJob(jobid)) == NULL)
8809 {
8810 /*
8811 * Nope - return a "not found" error...
8812 */
8813
8814 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."), jobid);
8815 return;
8816 }
8817
8818 /*
8819 * See if job is in any of the "completed" states...
8820 */
8821
8822 if (job->state_value <= IPP_JOB_PROCESSING)
8823 {
8824 /*
8825 * Nope - return a "not possible" error...
8826 */
8827
8828 send_ipp_status(con, IPP_NOT_POSSIBLE, _("Job #%d is not complete."),
8829 jobid);
8830 return;
8831 }
8832
8833 /*
8834 * See if we have retained the job files...
8835 */
8836
8837 cupsdLoadJob(job);
8838
8839 if (!job->attrs || job->num_files == 0)
8840 {
8841 /*
8842 * Nope - return a "not possible" error...
8843 */
8844
8845 send_ipp_status(con, IPP_NOT_POSSIBLE,
8846 _("Job #%d cannot be restarted - no files."), jobid);
8847 return;
8848 }
8849
8850 /*
8851 * See if the job is owned by the requesting user...
8852 */
8853
8854 if (!validate_user(job, con, job->username, username, sizeof(username)))
8855 {
8856 send_http_error(con, con->username[0] ? HTTP_FORBIDDEN : HTTP_UNAUTHORIZED,
8857 cupsdFindDest(job->dest));
8858 return;
8859 }
8860
8861 /*
8862 * See if the job-hold-until attribute is specified...
8863 */
8864
8865 if ((attr = ippFindAttribute(con->request, "job-hold-until",
8866 IPP_TAG_KEYWORD)) == NULL)
8867 attr = ippFindAttribute(con->request, "job-hold-until", IPP_TAG_NAME);
8868
8869 if (attr && strcmp(attr->values[0].string.text, "no-hold"))
8870 {
8871 /*
8872 * Return the job to a held state...
8873 */
8874
8875 cupsdLogJob(job, CUPSD_LOG_DEBUG,
8876 "Restarted by \"%s\" with job-hold-until=%s.",
8877 username, attr->values[0].string.text);
8878 cupsdSetJobHoldUntil(job, attr->values[0].string.text, 0);
8879
8880 cupsdAddEvent(CUPSD_EVENT_JOB_CONFIG_CHANGED | CUPSD_EVENT_JOB_STATE,
8881 NULL, job, "Job restarted by user with job-hold-until=%s",
8882 attr->values[0].string.text);
8883 }
8884 else
8885 {
8886 /*
8887 * Restart the job...
8888 */
8889
8890 cupsdRestartJob(job);
8891 cupsdCheckJobs();
8892 }
8893
8894 cupsdLogJob(job, CUPSD_LOG_INFO, "Restarted by \"%s\".", username);
8895
8896 con->response->request.status.status_code = IPP_OK;
8897 }
8898
8899
8900 /*
8901 * 'save_auth_info()' - Save authentication information for a job.
8902 */
8903
8904 static void
8905 save_auth_info(
8906 cupsd_client_t *con, /* I - Client connection */
8907 cupsd_job_t *job, /* I - Job */
8908 ipp_attribute_t *auth_info) /* I - auth-info attribute, if any */
8909 {
8910 int i; /* Looping var */
8911 char filename[1024]; /* Job authentication filename */
8912 cups_file_t *fp; /* Job authentication file */
8913 char line[65536]; /* Line for file */
8914 cupsd_printer_t *dest; /* Destination printer/class */
8915
8916
8917 /*
8918 * This function saves the in-memory authentication information for
8919 * a job so that it can be used to authenticate with a remote host.
8920 * The information is stored in a file that is readable only by the
8921 * root user. The fields are Base-64 encoded, each on a separate line,
8922 * followed by random number (up to 1024) of newlines to limit the
8923 * amount of information that is exposed.
8924 *
8925 * Because of the potential for exposing of authentication information,
8926 * this functionality is only enabled when running cupsd as root.
8927 *
8928 * This caching only works for the Basic and BasicDigest authentication
8929 * types. Digest authentication cannot be cached this way, and in
8930 * the future Kerberos authentication may make all of this obsolete.
8931 *
8932 * Authentication information is saved whenever an authenticated
8933 * Print-Job, Create-Job, or CUPS-Authenticate-Job operation is
8934 * performed.
8935 *
8936 * This information is deleted after a job is completed or canceled,
8937 * so reprints may require subsequent re-authentication.
8938 */
8939
8940 if (RunUser)
8941 return;
8942
8943 if ((dest = cupsdFindDest(job->dest)) == NULL)
8944 return;
8945
8946 /*
8947 * Create the authentication file and change permissions...
8948 */
8949
8950 snprintf(filename, sizeof(filename), "%s/a%05d", RequestRoot, job->id);
8951 if ((fp = cupsFileOpen(filename, "w")) == NULL)
8952 {
8953 cupsdLogMessage(CUPSD_LOG_ERROR,
8954 "Unable to save authentication info to \"%s\" - %s",
8955 filename, strerror(errno));
8956 return;
8957 }
8958
8959 fchown(cupsFileNumber(fp), 0, 0);
8960 fchmod(cupsFileNumber(fp), 0400);
8961
8962 cupsFilePuts(fp, "CUPSD-AUTH-V3\n");
8963
8964 for (i = 0;
8965 i < (int)(sizeof(job->auth_env) / sizeof(job->auth_env[0]));
8966 i ++)
8967 cupsdClearString(job->auth_env + i);
8968
8969 if (auth_info && auth_info->num_values == dest->num_auth_info_required)
8970 {
8971 /*
8972 * Write 1 to 3 auth values...
8973 */
8974
8975 for (i = 0;
8976 i < auth_info->num_values &&
8977 i < (int)(sizeof(job->auth_env) / sizeof(job->auth_env[0]));
8978 i ++)
8979 {
8980 if (strcmp(dest->auth_info_required[i], "negotiate"))
8981 {
8982 httpEncode64_2(line, sizeof(line), auth_info->values[i].string.text, (int)strlen(auth_info->values[i].string.text));
8983 cupsFilePutConf(fp, dest->auth_info_required[i], line);
8984 }
8985 else
8986 cupsFilePutConf(fp, dest->auth_info_required[i],
8987 auth_info->values[i].string.text);
8988
8989 if (!strcmp(dest->auth_info_required[i], "username"))
8990 cupsdSetStringf(job->auth_env + i, "AUTH_USERNAME=%s",
8991 auth_info->values[i].string.text);
8992 else if (!strcmp(dest->auth_info_required[i], "domain"))
8993 cupsdSetStringf(job->auth_env + i, "AUTH_DOMAIN=%s",
8994 auth_info->values[i].string.text);
8995 else if (!strcmp(dest->auth_info_required[i], "password"))
8996 cupsdSetStringf(job->auth_env + i, "AUTH_PASSWORD=%s",
8997 auth_info->values[i].string.text);
8998 else if (!strcmp(dest->auth_info_required[i], "negotiate"))
8999 cupsdSetStringf(job->auth_env + i, "AUTH_NEGOTIATE=%s",
9000 auth_info->values[i].string.text);
9001 else
9002 i --;
9003 }
9004 }
9005 else if (auth_info && auth_info->num_values == 2 &&
9006 dest->num_auth_info_required == 1 &&
9007 !strcmp(dest->auth_info_required[0], "negotiate"))
9008 {
9009 /*
9010 * Allow fallback to username+password for Kerberized queues...
9011 */
9012
9013 httpEncode64_2(line, sizeof(line), auth_info->values[0].string.text, (int)strlen(auth_info->values[0].string.text));
9014 cupsFilePutConf(fp, "username", line);
9015
9016 cupsdSetStringf(job->auth_env + 0, "AUTH_USERNAME=%s",
9017 auth_info->values[0].string.text);
9018
9019 httpEncode64_2(line, sizeof(line), auth_info->values[1].string.text, (int)strlen(auth_info->values[1].string.text));
9020 cupsFilePutConf(fp, "password", line);
9021
9022 cupsdSetStringf(job->auth_env + 1, "AUTH_PASSWORD=%s",
9023 auth_info->values[1].string.text);
9024 }
9025 else if (con->username[0])
9026 {
9027 /*
9028 * Write the authenticated username...
9029 */
9030
9031 httpEncode64_2(line, sizeof(line), con->username, (int)strlen(con->username));
9032 cupsFilePutConf(fp, "username", line);
9033
9034 cupsdSetStringf(job->auth_env + 0, "AUTH_USERNAME=%s", con->username);
9035
9036 /*
9037 * Write the authenticated password...
9038 */
9039
9040 httpEncode64_2(line, sizeof(line), con->password, (int)strlen(con->password));
9041 cupsFilePutConf(fp, "password", line);
9042
9043 cupsdSetStringf(job->auth_env + 1, "AUTH_PASSWORD=%s", con->password);
9044 }
9045
9046 #ifdef HAVE_GSSAPI
9047 if (con->gss_uid > 0)
9048 {
9049 cupsFilePrintf(fp, "uid %d\n", (int)con->gss_uid);
9050 cupsdSetStringf(&job->auth_uid, "AUTH_UID=%d", (int)con->gss_uid);
9051 }
9052 #endif /* HAVE_GSSAPI */
9053
9054 /*
9055 * Write a random number of newlines to the end of the file...
9056 */
9057
9058 for (i = (CUPS_RAND() % 1024); i >= 0; i --)
9059 cupsFilePutChar(fp, '\n');
9060
9061 /*
9062 * Close the file and return...
9063 */
9064
9065 cupsFileClose(fp);
9066 }
9067
9068
9069 /*
9070 * 'send_document()' - Send a file to a printer or class.
9071 */
9072
9073 static void
9074 send_document(cupsd_client_t *con, /* I - Client connection */
9075 ipp_attribute_t *uri) /* I - Printer URI */
9076 {
9077 ipp_attribute_t *attr; /* Current attribute */
9078 ipp_attribute_t *format; /* Request's document-format attribute */
9079 ipp_attribute_t *jformat; /* Job's document-format attribute */
9080 const char *default_format;/* document-format-default value */
9081 int jobid; /* Job ID number */
9082 cupsd_job_t *job; /* Current job */
9083 char job_uri[HTTP_MAX_URI],
9084 /* Job URI */
9085 scheme[HTTP_MAX_URI],
9086 /* Method portion of URI */
9087 username[HTTP_MAX_URI],
9088 /* Username portion of URI */
9089 host[HTTP_MAX_URI],
9090 /* Host portion of URI */
9091 resource[HTTP_MAX_URI];
9092 /* Resource portion of URI */
9093 int port; /* Port portion of URI */
9094 mime_type_t *filetype; /* Type of file */
9095 char super[MIME_MAX_SUPER],
9096 /* Supertype of file */
9097 type[MIME_MAX_TYPE],
9098 /* Subtype of file */
9099 mimetype[MIME_MAX_SUPER + MIME_MAX_TYPE + 2];
9100 /* Textual name of mime type */
9101 char filename[1024]; /* Job filename */
9102 cupsd_printer_t *printer; /* Current printer */
9103 struct stat fileinfo; /* File information */
9104 int kbytes; /* Size of file */
9105 int compression; /* Type of compression */
9106 int start_job; /* Start the job? */
9107
9108
9109 cupsdLogMessage(CUPSD_LOG_DEBUG2, "send_document(%p[%d], %s)", con,
9110 con->number, uri->values[0].string.text);
9111
9112 /*
9113 * See if we have a job URI or a printer URI...
9114 */
9115
9116 if (!strcmp(uri->name, "printer-uri"))
9117 {
9118 /*
9119 * Got a printer URI; see if we also have a job-id attribute...
9120 */
9121
9122 if ((attr = ippFindAttribute(con->request, "job-id",
9123 IPP_TAG_INTEGER)) == NULL)
9124 {
9125 send_ipp_status(con, IPP_BAD_REQUEST,
9126 _("Got a printer-uri attribute but no job-id."));
9127 return;
9128 }
9129
9130 jobid = attr->values[0].integer;
9131 }
9132 else
9133 {
9134 /*
9135 * Got a job URI; parse it to get the job ID...
9136 */
9137
9138 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
9139 sizeof(scheme), username, sizeof(username), host,
9140 sizeof(host), &port, resource, sizeof(resource));
9141
9142 if (strncmp(resource, "/jobs/", 6))
9143 {
9144 /*
9145 * Not a valid URI!
9146 */
9147
9148 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-uri \"%s\"."),
9149 uri->values[0].string.text);
9150 return;
9151 }
9152
9153 jobid = atoi(resource + 6);
9154 }
9155
9156 /*
9157 * See if the job exists...
9158 */
9159
9160 if ((job = cupsdFindJob(jobid)) == NULL)
9161 {
9162 /*
9163 * Nope - return a "not found" error...
9164 */
9165
9166 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."), jobid);
9167 return;
9168 }
9169
9170 printer = cupsdFindDest(job->dest);
9171
9172 /*
9173 * See if the job is owned by the requesting user...
9174 */
9175
9176 if (!validate_user(job, con, job->username, username, sizeof(username)))
9177 {
9178 send_http_error(con, con->username[0] ? HTTP_FORBIDDEN : HTTP_UNAUTHORIZED,
9179 cupsdFindDest(job->dest));
9180 return;
9181 }
9182
9183 /*
9184 * OK, see if the client is sending the document compressed - CUPS
9185 * only supports "none" and "gzip".
9186 */
9187
9188 compression = CUPS_FILE_NONE;
9189
9190 if ((attr = ippFindAttribute(con->request, "compression",
9191 IPP_TAG_KEYWORD)) != NULL)
9192 {
9193 if (strcmp(attr->values[0].string.text, "none")
9194 #ifdef HAVE_LIBZ
9195 && strcmp(attr->values[0].string.text, "gzip")
9196 #endif /* HAVE_LIBZ */
9197 )
9198 {
9199 send_ipp_status(con, IPP_ATTRIBUTES, _("Unsupported compression \"%s\"."),
9200 attr->values[0].string.text);
9201 ippAddString(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_KEYWORD,
9202 "compression", NULL, attr->values[0].string.text);
9203 return;
9204 }
9205
9206 #ifdef HAVE_LIBZ
9207 if (!strcmp(attr->values[0].string.text, "gzip"))
9208 compression = CUPS_FILE_GZIP;
9209 #endif /* HAVE_LIBZ */
9210 }
9211
9212 /*
9213 * Do we have a file to print?
9214 */
9215
9216 if ((attr = ippFindAttribute(con->request, "last-document",
9217 IPP_TAG_BOOLEAN)) == NULL)
9218 {
9219 send_ipp_status(con, IPP_BAD_REQUEST,
9220 _("Missing last-document attribute in request."));
9221 return;
9222 }
9223
9224 if (!con->filename)
9225 {
9226 /*
9227 * Check for an empty request with "last-document" set to true, which is
9228 * used to close an "open" job by RFC 2911, section 3.3.2.
9229 */
9230
9231 if (job->num_files > 0 && attr->values[0].boolean)
9232 goto last_document;
9233
9234 send_ipp_status(con, IPP_BAD_REQUEST, _("No file in print request."));
9235 return;
9236 }
9237
9238 /*
9239 * Is it a format we support?
9240 */
9241
9242 if ((format = ippFindAttribute(con->request, "document-format",
9243 IPP_TAG_MIMETYPE)) != NULL)
9244 {
9245 /*
9246 * Grab format from client...
9247 */
9248
9249 if (sscanf(format->values[0].string.text, "%15[^/]/%255[^;]",
9250 super, type) != 2)
9251 {
9252 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad document-format \"%s\"."),
9253 format->values[0].string.text);
9254 return;
9255 }
9256 }
9257 else if ((default_format = cupsGetOption("document-format",
9258 printer->num_options,
9259 printer->options)) != NULL)
9260 {
9261 /*
9262 * Use default document format...
9263 */
9264
9265 if (sscanf(default_format, "%15[^/]/%255[^;]", super, type) != 2)
9266 {
9267 send_ipp_status(con, IPP_BAD_REQUEST,
9268 _("Bad document-format-default \"%s\"."), default_format);
9269 return;
9270 }
9271 }
9272 else
9273 {
9274 /*
9275 * No document format attribute? Auto-type it!
9276 */
9277
9278 strlcpy(super, "application", sizeof(super));
9279 strlcpy(type, "octet-stream", sizeof(type));
9280 }
9281
9282 if (!strcmp(super, "application") && !strcmp(type, "octet-stream"))
9283 {
9284 /*
9285 * Auto-type the file...
9286 */
9287
9288 ipp_attribute_t *doc_name; /* document-name attribute */
9289
9290
9291 cupsdLogJob(job, CUPSD_LOG_DEBUG, "Auto-typing file...");
9292
9293 doc_name = ippFindAttribute(con->request, "document-name", IPP_TAG_NAME);
9294 filetype = mimeFileType(MimeDatabase, con->filename,
9295 doc_name ? doc_name->values[0].string.text : NULL,
9296 &compression);
9297
9298 if (!filetype)
9299 filetype = mimeType(MimeDatabase, super, type);
9300
9301 if (filetype)
9302 cupsdLogJob(job, CUPSD_LOG_DEBUG, "Request file type is %s/%s.",
9303 filetype->super, filetype->type);
9304 }
9305 else
9306 filetype = mimeType(MimeDatabase, super, type);
9307
9308 if (filetype)
9309 {
9310 /*
9311 * Replace the document-format attribute value with the auto-typed or
9312 * default one.
9313 */
9314
9315 snprintf(mimetype, sizeof(mimetype), "%s/%s", filetype->super,
9316 filetype->type);
9317
9318 if ((jformat = ippFindAttribute(job->attrs, "document-format",
9319 IPP_TAG_MIMETYPE)) != NULL)
9320 {
9321 _cupsStrFree(jformat->values[0].string.text);
9322
9323 jformat->values[0].string.text = _cupsStrAlloc(mimetype);
9324 }
9325 else
9326 ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_MIMETYPE,
9327 "document-format", NULL, mimetype);
9328 }
9329 else if (!filetype)
9330 {
9331 send_ipp_status(con, IPP_DOCUMENT_FORMAT,
9332 _("Unsupported document-format \"%s/%s\"."), super, type);
9333 cupsdLogMessage(CUPSD_LOG_INFO,
9334 "Hint: Do you have the raw file printing rules enabled?");
9335
9336 if (format)
9337 ippAddString(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_MIMETYPE,
9338 "document-format", NULL, format->values[0].string.text);
9339
9340 return;
9341 }
9342
9343 if (printer->filetypes && !cupsArrayFind(printer->filetypes, filetype))
9344 {
9345 snprintf(mimetype, sizeof(mimetype), "%s/%s", filetype->super,
9346 filetype->type);
9347
9348 send_ipp_status(con, IPP_DOCUMENT_FORMAT,
9349 _("Unsupported document-format \"%s\"."), mimetype);
9350
9351 ippAddString(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_MIMETYPE,
9352 "document-format", NULL, mimetype);
9353
9354 return;
9355 }
9356
9357 /*
9358 * Add the file to the job...
9359 */
9360
9361 cupsdLoadJob(job);
9362
9363 if (add_file(con, job, filetype, compression))
9364 return;
9365
9366 if (stat(con->filename, &fileinfo))
9367 kbytes = 0;
9368 else
9369 kbytes = (fileinfo.st_size + 1023) / 1024;
9370
9371 cupsdUpdateQuota(printer, job->username, 0, kbytes);
9372
9373 if ((attr = ippFindAttribute(job->attrs, "job-k-octets",
9374 IPP_TAG_INTEGER)) != NULL)
9375 attr->values[0].integer += kbytes;
9376
9377 snprintf(filename, sizeof(filename), "%s/d%05d-%03d", RequestRoot, job->id,
9378 job->num_files);
9379 rename(con->filename, filename);
9380
9381 cupsdClearString(&con->filename);
9382
9383 cupsdLogJob(job, CUPSD_LOG_INFO, "File of type %s/%s queued by \"%s\".",
9384 filetype->super, filetype->type, job->username);
9385
9386 /*
9387 * Start the job if this is the last document...
9388 */
9389
9390 last_document:
9391
9392 if ((attr = ippFindAttribute(con->request, "last-document",
9393 IPP_TAG_BOOLEAN)) != NULL &&
9394 attr->values[0].boolean)
9395 {
9396 /*
9397 * See if we need to add the ending sheet...
9398 */
9399
9400 if (cupsdTimeoutJob(job))
9401 return;
9402
9403 if (job->state_value == IPP_JOB_STOPPED)
9404 {
9405 job->state->values[0].integer = IPP_JOB_PENDING;
9406 job->state_value = IPP_JOB_PENDING;
9407
9408 ippSetString(job->attrs, &job->reasons, 0, "none");
9409 }
9410 else if (job->state_value == IPP_JOB_HELD)
9411 {
9412 if ((attr = ippFindAttribute(job->attrs, "job-hold-until",
9413 IPP_TAG_KEYWORD)) == NULL)
9414 attr = ippFindAttribute(job->attrs, "job-hold-until", IPP_TAG_NAME);
9415
9416 if (!attr || !strcmp(attr->values[0].string.text, "no-hold"))
9417 {
9418 job->state->values[0].integer = IPP_JOB_PENDING;
9419 job->state_value = IPP_JOB_PENDING;
9420
9421 ippSetString(job->attrs, &job->reasons, 0, "none");
9422 }
9423 else
9424 ippSetString(job->attrs, &job->reasons, 0, "job-hold-until-specified");
9425 }
9426
9427 job->dirty = 1;
9428 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
9429
9430 start_job = 1;
9431 }
9432 else
9433 {
9434 if ((attr = ippFindAttribute(job->attrs, "job-hold-until",
9435 IPP_TAG_KEYWORD)) == NULL)
9436 attr = ippFindAttribute(job->attrs, "job-hold-until", IPP_TAG_NAME);
9437
9438 if (!attr || !strcmp(attr->values[0].string.text, "no-hold"))
9439 {
9440 job->state->values[0].integer = IPP_JOB_HELD;
9441 job->state_value = IPP_JOB_HELD;
9442 job->hold_until = time(NULL) + MultipleOperationTimeout;
9443
9444 ippSetString(job->attrs, &job->reasons, 0, "job-incoming");
9445
9446 job->dirty = 1;
9447 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
9448 }
9449
9450 start_job = 0;
9451 }
9452
9453 /*
9454 * Fill in the response info...
9455 */
9456
9457 httpAssembleURIf(HTTP_URI_CODING_ALL, job_uri, sizeof(job_uri), "ipp", NULL,
9458 con->clientname, con->clientport, "/jobs/%d", jobid);
9459 ippAddString(con->response, IPP_TAG_JOB, IPP_TAG_URI, "job-uri", NULL,
9460 job_uri);
9461
9462 ippAddInteger(con->response, IPP_TAG_JOB, IPP_TAG_INTEGER, "job-id", jobid);
9463
9464 ippAddInteger(con->response, IPP_TAG_JOB, IPP_TAG_ENUM, "job-state",
9465 job->state_value);
9466 ippAddString(con->response, IPP_TAG_JOB, IPP_TAG_KEYWORD, "job-state-reasons",
9467 NULL, job->reasons->values[0].string.text);
9468
9469 con->response->request.status.status_code = IPP_OK;
9470
9471 /*
9472 * Start the job if necessary...
9473 */
9474
9475 if (start_job)
9476 cupsdCheckJobs();
9477 }
9478
9479
9480 /*
9481 * 'send_http_error()' - Send a HTTP error back to the IPP client.
9482 */
9483
9484 static void
9485 send_http_error(
9486 cupsd_client_t *con, /* I - Client connection */
9487 http_status_t status, /* I - HTTP status code */
9488 cupsd_printer_t *printer) /* I - Printer, if any */
9489 {
9490 ipp_attribute_t *uri; /* Request URI, if any */
9491
9492
9493 if ((uri = ippFindAttribute(con->request, "printer-uri",
9494 IPP_TAG_URI)) == NULL)
9495 uri = ippFindAttribute(con->request, "job-uri", IPP_TAG_URI);
9496
9497 cupsdLogMessage(status == HTTP_FORBIDDEN ? CUPSD_LOG_ERROR : CUPSD_LOG_DEBUG,
9498 "[Client %d] Returning HTTP %s for %s (%s) from %s",
9499 con->number, httpStatus(status),
9500 con->request ?
9501 ippOpString(con->request->request.op.operation_id) :
9502 "no operation-id",
9503 uri ? uri->values[0].string.text : "no URI",
9504 con->http->hostname);
9505
9506 if (printer)
9507 {
9508 int auth_type; /* Type of authentication required */
9509
9510
9511 auth_type = CUPSD_AUTH_NONE;
9512
9513 if (status == HTTP_UNAUTHORIZED &&
9514 printer->num_auth_info_required > 0 &&
9515 !strcmp(printer->auth_info_required[0], "negotiate") &&
9516 con->request &&
9517 (con->request->request.op.operation_id == IPP_PRINT_JOB ||
9518 con->request->request.op.operation_id == IPP_CREATE_JOB ||
9519 con->request->request.op.operation_id == CUPS_AUTHENTICATE_JOB))
9520 {
9521 /*
9522 * Creating and authenticating jobs requires Kerberos...
9523 */
9524
9525 auth_type = CUPSD_AUTH_NEGOTIATE;
9526 }
9527 else
9528 {
9529 /*
9530 * Use policy/location-defined authentication requirements...
9531 */
9532
9533 char resource[HTTP_MAX_URI]; /* Resource portion of URI */
9534 cupsd_location_t *auth; /* Pointer to authentication element */
9535
9536
9537 if (printer->type & CUPS_PRINTER_CLASS)
9538 snprintf(resource, sizeof(resource), "/classes/%s", printer->name);
9539 else
9540 snprintf(resource, sizeof(resource), "/printers/%s", printer->name);
9541
9542 if ((auth = cupsdFindBest(resource, HTTP_POST)) == NULL ||
9543 auth->type == CUPSD_AUTH_NONE)
9544 auth = cupsdFindPolicyOp(printer->op_policy_ptr,
9545 con->request ?
9546 con->request->request.op.operation_id :
9547 IPP_PRINT_JOB);
9548
9549 if (auth)
9550 {
9551 if (auth->type == CUPSD_AUTH_DEFAULT)
9552 auth_type = cupsdDefaultAuthType();
9553 else
9554 auth_type = auth->type;
9555 }
9556 }
9557
9558 cupsdSendError(con, status, auth_type);
9559 }
9560 else
9561 cupsdSendError(con, status, CUPSD_AUTH_NONE);
9562
9563 ippDelete(con->response);
9564 con->response = NULL;
9565
9566 return;
9567 }
9568
9569
9570 /*
9571 * 'send_ipp_status()' - Send a status back to the IPP client.
9572 */
9573
9574 static void
9575 send_ipp_status(cupsd_client_t *con, /* I - Client connection */
9576 ipp_status_t status, /* I - IPP status code */
9577 const char *message,/* I - Status message */
9578 ...) /* I - Additional args as needed */
9579 {
9580 va_list ap; /* Pointer to additional args */
9581 char formatted[1024]; /* Formatted errror message */
9582
9583
9584 va_start(ap, message);
9585 vsnprintf(formatted, sizeof(formatted),
9586 _cupsLangString(con->language, message), ap);
9587 va_end(ap);
9588
9589 cupsdLogMessage(CUPSD_LOG_DEBUG, "%s %s: %s",
9590 ippOpString(con->request->request.op.operation_id),
9591 ippErrorString(status), formatted);
9592
9593 con->response->request.status.status_code = status;
9594
9595 if (ippFindAttribute(con->response, "attributes-charset",
9596 IPP_TAG_ZERO) == NULL)
9597 ippAddString(con->response, IPP_TAG_OPERATION, IPP_TAG_CHARSET,
9598 "attributes-charset", NULL, "utf-8");
9599
9600 if (ippFindAttribute(con->response, "attributes-natural-language",
9601 IPP_TAG_ZERO) == NULL)
9602 ippAddString(con->response, IPP_TAG_OPERATION, IPP_TAG_LANGUAGE,
9603 "attributes-natural-language", NULL, DefaultLanguage);
9604
9605 ippAddString(con->response, IPP_TAG_OPERATION, IPP_TAG_TEXT,
9606 "status-message", NULL, formatted);
9607 }
9608
9609
9610 /*
9611 * 'set_default()' - Set the default destination...
9612 */
9613
9614 static void
9615 set_default(cupsd_client_t *con, /* I - Client connection */
9616 ipp_attribute_t *uri) /* I - Printer URI */
9617 {
9618 http_status_t status; /* Policy status */
9619 cups_ptype_t dtype; /* Destination type (printer/class) */
9620 cupsd_printer_t *printer, /* Printer */
9621 *oldprinter; /* Old default printer */
9622
9623
9624 cupsdLogMessage(CUPSD_LOG_DEBUG2, "set_default(%p[%d], %s)", con,
9625 con->number, uri->values[0].string.text);
9626
9627 /*
9628 * Is the destination valid?
9629 */
9630
9631 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
9632 {
9633 /*
9634 * Bad URI...
9635 */
9636
9637 send_ipp_status(con, IPP_NOT_FOUND,
9638 _("The printer or class does not exist."));
9639 return;
9640 }
9641
9642 /*
9643 * Check policy...
9644 */
9645
9646 if ((status = cupsdCheckPolicy(DefaultPolicyPtr, con, NULL)) != HTTP_OK)
9647 {
9648 send_http_error(con, status, NULL);
9649 return;
9650 }
9651
9652 /*
9653 * Set it as the default...
9654 */
9655
9656 oldprinter = DefaultPrinter;
9657 DefaultPrinter = printer;
9658
9659 if (oldprinter)
9660 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, oldprinter, NULL,
9661 "%s is no longer the default printer.", oldprinter->name);
9662
9663 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, printer, NULL,
9664 "%s is now the default printer.", printer->name);
9665
9666 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS | CUPSD_DIRTY_CLASSES |
9667 CUPSD_DIRTY_PRINTCAP);
9668
9669 cupsdLogMessage(CUPSD_LOG_INFO,
9670 "Default destination set to \"%s\" by \"%s\".",
9671 printer->name, get_username(con));
9672
9673 /*
9674 * Everything was ok, so return OK status...
9675 */
9676
9677 con->response->request.status.status_code = IPP_OK;
9678 }
9679
9680
9681 /*
9682 * 'set_job_attrs()' - Set job attributes.
9683 */
9684
9685 static void
9686 set_job_attrs(cupsd_client_t *con, /* I - Client connection */
9687 ipp_attribute_t *uri) /* I - Job URI */
9688 {
9689 ipp_attribute_t *attr, /* Current attribute */
9690 *attr2; /* Job attribute */
9691 int jobid; /* Job ID */
9692 cupsd_job_t *job; /* Current job */
9693 char scheme[HTTP_MAX_URI],
9694 /* Method portion of URI */
9695 username[HTTP_MAX_URI],
9696 /* Username portion of URI */
9697 host[HTTP_MAX_URI],
9698 /* Host portion of URI */
9699 resource[HTTP_MAX_URI];
9700 /* Resource portion of URI */
9701 int port; /* Port portion of URI */
9702 int event; /* Events? */
9703 int check_jobs; /* Check jobs? */
9704
9705
9706 cupsdLogMessage(CUPSD_LOG_DEBUG2, "set_job_attrs(%p[%d], %s)", con,
9707 con->number, uri->values[0].string.text);
9708
9709 /*
9710 * Start with "everything is OK" status...
9711 */
9712
9713 con->response->request.status.status_code = IPP_OK;
9714
9715 /*
9716 * See if we have a job URI or a printer URI...
9717 */
9718
9719 if (!strcmp(uri->name, "printer-uri"))
9720 {
9721 /*
9722 * Got a printer URI; see if we also have a job-id attribute...
9723 */
9724
9725 if ((attr = ippFindAttribute(con->request, "job-id",
9726 IPP_TAG_INTEGER)) == NULL)
9727 {
9728 send_ipp_status(con, IPP_BAD_REQUEST,
9729 _("Got a printer-uri attribute but no job-id."));
9730 return;
9731 }
9732
9733 jobid = attr->values[0].integer;
9734 }
9735 else
9736 {
9737 /*
9738 * Got a job URI; parse it to get the job ID...
9739 */
9740
9741 httpSeparateURI(HTTP_URI_CODING_ALL, uri->values[0].string.text, scheme,
9742 sizeof(scheme), username, sizeof(username), host,
9743 sizeof(host), &port, resource, sizeof(resource));
9744
9745 if (strncmp(resource, "/jobs/", 6))
9746 {
9747 /*
9748 * Not a valid URI!
9749 */
9750
9751 send_ipp_status(con, IPP_BAD_REQUEST, _("Bad job-uri \"%s\"."),
9752 uri->values[0].string.text);
9753 return;
9754 }
9755
9756 jobid = atoi(resource + 6);
9757 }
9758
9759 /*
9760 * See if the job exists...
9761 */
9762
9763 if ((job = cupsdFindJob(jobid)) == NULL)
9764 {
9765 /*
9766 * Nope - return a "not found" error...
9767 */
9768
9769 send_ipp_status(con, IPP_NOT_FOUND, _("Job #%d does not exist."), jobid);
9770 return;
9771 }
9772
9773 /*
9774 * See if the job has been completed...
9775 */
9776
9777 if (job->state_value > IPP_JOB_STOPPED)
9778 {
9779 /*
9780 * Return a "not-possible" error...
9781 */
9782
9783 send_ipp_status(con, IPP_NOT_POSSIBLE,
9784 _("Job #%d is finished and cannot be altered."), jobid);
9785 return;
9786 }
9787
9788 /*
9789 * See if the job is owned by the requesting user...
9790 */
9791
9792 if (!validate_user(job, con, job->username, username, sizeof(username)))
9793 {
9794 send_http_error(con, con->username[0] ? HTTP_FORBIDDEN : HTTP_UNAUTHORIZED,
9795 cupsdFindDest(job->dest));
9796 return;
9797 }
9798
9799 /*
9800 * See what the user wants to change.
9801 */
9802
9803 cupsdLoadJob(job);
9804
9805 check_jobs = 0;
9806 event = 0;
9807
9808 for (attr = con->request->attrs; attr; attr = attr->next)
9809 {
9810 if (attr->group_tag != IPP_TAG_JOB || !attr->name)
9811 continue;
9812
9813 if (!strcmp(attr->name, "attributes-charset") ||
9814 !strcmp(attr->name, "attributes-natural-language") ||
9815 !strcmp(attr->name, "document-compression") ||
9816 !strcmp(attr->name, "document-format") ||
9817 !strcmp(attr->name, "job-detailed-status-messages") ||
9818 !strcmp(attr->name, "job-document-access-errors") ||
9819 !strcmp(attr->name, "job-id") ||
9820 !strcmp(attr->name, "job-impressions-completed") ||
9821 !strcmp(attr->name, "job-k-octets") ||
9822 !strcmp(attr->name, "job-originating-host-name") ||
9823 !strcmp(attr->name, "job-originating-user-name") ||
9824 !strcmp(attr->name, "job-printer-up-time") ||
9825 !strcmp(attr->name, "job-printer-uri") ||
9826 !strcmp(attr->name, "job-sheets") ||
9827 !strcmp(attr->name, "job-state-message") ||
9828 !strcmp(attr->name, "job-state-reasons") ||
9829 !strcmp(attr->name, "job-uri") ||
9830 !strcmp(attr->name, "number-of-documents") ||
9831 !strcmp(attr->name, "number-of-intervening-jobs") ||
9832 !strcmp(attr->name, "output-device-assigned") ||
9833 !strncmp(attr->name, "date-time-at-", 13) ||
9834 !strncmp(attr->name, "job-k-octets", 12) ||
9835 !strncmp(attr->name, "job-media-sheets", 16) ||
9836 !strncmp(attr->name, "time-at-", 8))
9837 {
9838 /*
9839 * Read-only attrs!
9840 */
9841
9842 send_ipp_status(con, IPP_ATTRIBUTES_NOT_SETTABLE,
9843 _("%s cannot be changed."), attr->name);
9844
9845 attr2 = ippCopyAttribute(con->response, attr, 0);
9846 ippSetGroupTag(con->response, &attr2, IPP_TAG_UNSUPPORTED_GROUP);
9847 continue;
9848 }
9849
9850 if (!strcmp(attr->name, "job-priority"))
9851 {
9852 /*
9853 * Change the job priority...
9854 */
9855
9856 if (attr->value_tag != IPP_TAG_INTEGER)
9857 {
9858 send_ipp_status(con, IPP_REQUEST_VALUE, _("Bad job-priority value."));
9859
9860 attr2 = ippCopyAttribute(con->response, attr, 0);
9861 ippSetGroupTag(con->response, &attr2, IPP_TAG_UNSUPPORTED_GROUP);
9862 }
9863 else if (job->state_value >= IPP_JOB_PROCESSING)
9864 {
9865 send_ipp_status(con, IPP_NOT_POSSIBLE,
9866 _("Job is completed and cannot be changed."));
9867 return;
9868 }
9869 else if (con->response->request.status.status_code == IPP_OK)
9870 {
9871 cupsdLogJob(job, CUPSD_LOG_DEBUG, "Setting job-priority to %d",
9872 attr->values[0].integer);
9873 cupsdSetJobPriority(job, attr->values[0].integer);
9874
9875 check_jobs = 1;
9876 event |= CUPSD_EVENT_JOB_CONFIG_CHANGED |
9877 CUPSD_EVENT_PRINTER_QUEUE_ORDER_CHANGED;
9878 }
9879 }
9880 else if (!strcmp(attr->name, "job-state"))
9881 {
9882 /*
9883 * Change the job state...
9884 */
9885
9886 if (attr->value_tag != IPP_TAG_ENUM)
9887 {
9888 send_ipp_status(con, IPP_REQUEST_VALUE, _("Bad job-state value."));
9889
9890 attr2 = ippCopyAttribute(con->response, attr, 0);
9891 ippSetGroupTag(con->response, &attr2, IPP_TAG_UNSUPPORTED_GROUP);
9892 }
9893 else
9894 {
9895 switch (attr->values[0].integer)
9896 {
9897 case IPP_JOB_PENDING :
9898 case IPP_JOB_HELD :
9899 if (job->state_value > IPP_JOB_HELD)
9900 {
9901 send_ipp_status(con, IPP_NOT_POSSIBLE,
9902 _("Job state cannot be changed."));
9903 return;
9904 }
9905 else if (con->response->request.status.status_code == IPP_OK)
9906 {
9907 cupsdLogJob(job, CUPSD_LOG_DEBUG, "Setting job-state to %d",
9908 attr->values[0].integer);
9909 cupsdSetJobState(job, (ipp_jstate_t)attr->values[0].integer, CUPSD_JOB_DEFAULT, "Job state changed by \"%s\"", username);
9910 check_jobs = 1;
9911 }
9912 break;
9913
9914 case IPP_JOB_PROCESSING :
9915 case IPP_JOB_STOPPED :
9916 if (job->state_value != attr->values[0].integer)
9917 {
9918 send_ipp_status(con, IPP_NOT_POSSIBLE,
9919 _("Job state cannot be changed."));
9920 return;
9921 }
9922 break;
9923
9924 case IPP_JOB_CANCELED :
9925 case IPP_JOB_ABORTED :
9926 case IPP_JOB_COMPLETED :
9927 if (job->state_value > IPP_JOB_PROCESSING)
9928 {
9929 send_ipp_status(con, IPP_NOT_POSSIBLE,
9930 _("Job state cannot be changed."));
9931 return;
9932 }
9933 else if (con->response->request.status.status_code == IPP_OK)
9934 {
9935 cupsdLogJob(job, CUPSD_LOG_DEBUG, "Setting job-state to %d",
9936 attr->values[0].integer);
9937 cupsdSetJobState(job, (ipp_jstate_t)attr->values[0].integer,
9938 CUPSD_JOB_DEFAULT,
9939 "Job state changed by \"%s\"", username);
9940 check_jobs = 1;
9941 }
9942 break;
9943 }
9944 }
9945 }
9946 else if (con->response->request.status.status_code != IPP_OK)
9947 continue;
9948 else if ((attr2 = ippFindAttribute(job->attrs, attr->name,
9949 IPP_TAG_ZERO)) != NULL)
9950 {
9951 /*
9952 * Some other value; first free the old value...
9953 */
9954
9955 if (job->attrs->prev)
9956 job->attrs->prev->next = attr2->next;
9957 else
9958 job->attrs->attrs = attr2->next;
9959
9960 if (job->attrs->last == attr2)
9961 job->attrs->last = job->attrs->prev;
9962
9963 ippDeleteAttribute(NULL, attr2);
9964
9965 /*
9966 * Then copy the attribute...
9967 */
9968
9969 ippCopyAttribute(job->attrs, attr, 0);
9970
9971 /*
9972 * See if the job-name or job-hold-until is being changed.
9973 */
9974
9975 if (!strcmp(attr->name, "job-hold-until"))
9976 {
9977 cupsdLogJob(job, CUPSD_LOG_DEBUG, "Setting job-hold-until to %s",
9978 attr->values[0].string.text);
9979 cupsdSetJobHoldUntil(job, attr->values[0].string.text, 0);
9980
9981 if (!strcmp(attr->values[0].string.text, "no-hold"))
9982 {
9983 cupsdReleaseJob(job);
9984 check_jobs = 1;
9985 }
9986 else
9987 cupsdSetJobState(job, IPP_JOB_HELD, CUPSD_JOB_DEFAULT,
9988 "Job held by \"%s\".", username);
9989
9990 event |= CUPSD_EVENT_JOB_CONFIG_CHANGED | CUPSD_EVENT_JOB_STATE;
9991 }
9992 }
9993 else if (attr->value_tag == IPP_TAG_DELETEATTR)
9994 {
9995 /*
9996 * Delete the attribute...
9997 */
9998
9999 if ((attr2 = ippFindAttribute(job->attrs, attr->name,
10000 IPP_TAG_ZERO)) != NULL)
10001 {
10002 if (job->attrs->prev)
10003 job->attrs->prev->next = attr2->next;
10004 else
10005 job->attrs->attrs = attr2->next;
10006
10007 if (attr2 == job->attrs->last)
10008 job->attrs->last = job->attrs->prev;
10009
10010 ippDeleteAttribute(NULL, attr2);
10011
10012 event |= CUPSD_EVENT_JOB_CONFIG_CHANGED;
10013 }
10014 }
10015 else
10016 {
10017 /*
10018 * Add new option by copying it...
10019 */
10020
10021 ippCopyAttribute(job->attrs, attr, 0);
10022
10023 event |= CUPSD_EVENT_JOB_CONFIG_CHANGED;
10024 }
10025 }
10026
10027 /*
10028 * Save the job...
10029 */
10030
10031 job->dirty = 1;
10032 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
10033
10034 /*
10035 * Send events as needed...
10036 */
10037
10038 if (event & CUPSD_EVENT_PRINTER_QUEUE_ORDER_CHANGED)
10039 cupsdAddEvent(CUPSD_EVENT_PRINTER_QUEUE_ORDER_CHANGED,
10040 cupsdFindDest(job->dest), job,
10041 "Job priority changed by user.");
10042
10043 if (event & CUPSD_EVENT_JOB_STATE)
10044 cupsdAddEvent(CUPSD_EVENT_JOB_STATE, cupsdFindDest(job->dest), job,
10045 job->state_value == IPP_JOB_HELD ?
10046 "Job held by user." : "Job restarted by user.");
10047
10048 if (event & CUPSD_EVENT_JOB_CONFIG_CHANGED)
10049 cupsdAddEvent(CUPSD_EVENT_JOB_CONFIG_CHANGED, cupsdFindDest(job->dest), job,
10050 "Job options changed by user.");
10051
10052 /*
10053 * Start jobs if possible...
10054 */
10055
10056 if (check_jobs)
10057 cupsdCheckJobs();
10058 }
10059
10060
10061 /*
10062 * 'set_printer_attrs()' - Set printer attributes.
10063 */
10064
10065 static void
10066 set_printer_attrs(cupsd_client_t *con, /* I - Client connection */
10067 ipp_attribute_t *uri) /* I - Printer */
10068 {
10069 http_status_t status; /* Policy status */
10070 cups_ptype_t dtype; /* Destination type (printer/class) */
10071 cupsd_printer_t *printer; /* Printer/class */
10072 ipp_attribute_t *attr; /* Printer attribute */
10073 int changed = 0; /* Was anything changed? */
10074
10075
10076 cupsdLogMessage(CUPSD_LOG_DEBUG2, "set_printer_attrs(%p[%d], %s)", con,
10077 con->number, uri->values[0].string.text);
10078
10079 /*
10080 * Is the destination valid?
10081 */
10082
10083 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
10084 {
10085 /*
10086 * Bad URI...
10087 */
10088
10089 send_ipp_status(con, IPP_NOT_FOUND,
10090 _("The printer or class does not exist."));
10091 return;
10092 }
10093
10094 /*
10095 * Check policy...
10096 */
10097
10098 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
10099 {
10100 send_http_error(con, status, printer);
10101 return;
10102 }
10103
10104 /*
10105 * Return a list of attributes that can be set via Set-Printer-Attributes.
10106 */
10107
10108 if ((attr = ippFindAttribute(con->request, "printer-location",
10109 IPP_TAG_TEXT)) != NULL)
10110 {
10111 cupsdSetString(&printer->location, attr->values[0].string.text);
10112 changed = 1;
10113 }
10114
10115 if ((attr = ippFindAttribute(con->request, "printer-info",
10116 IPP_TAG_TEXT)) != NULL)
10117 {
10118 cupsdSetString(&printer->info, attr->values[0].string.text);
10119 changed = 1;
10120 }
10121
10122 /*
10123 * Update the printer attributes and return...
10124 */
10125
10126 if (changed)
10127 {
10128 cupsdSetPrinterAttrs(printer);
10129 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
10130
10131 cupsdAddEvent(CUPSD_EVENT_PRINTER_CONFIG, printer, NULL,
10132 "Printer \"%s\" description or location changed by \"%s\".",
10133 printer->name, get_username(con));
10134
10135 cupsdLogMessage(CUPSD_LOG_INFO,
10136 "Printer \"%s\" description or location changed by \"%s\".",
10137 printer->name, get_username(con));
10138 }
10139
10140 con->response->request.status.status_code = IPP_OK;
10141 }
10142
10143
10144 /*
10145 * 'set_printer_defaults()' - Set printer default options from a request.
10146 */
10147
10148 static void
10149 set_printer_defaults(
10150 cupsd_client_t *con, /* I - Client connection */
10151 cupsd_printer_t *printer) /* I - Printer */
10152 {
10153 int i; /* Looping var */
10154 ipp_attribute_t *attr; /* Current attribute */
10155 size_t namelen; /* Length of attribute name */
10156 char name[256], /* New attribute name */
10157 value[256]; /* String version of integer attrs */
10158
10159
10160 for (attr = con->request->attrs; attr; attr = attr->next)
10161 {
10162 /*
10163 * Skip non-printer attributes...
10164 */
10165
10166 if (attr->group_tag != IPP_TAG_PRINTER || !attr->name)
10167 continue;
10168
10169 cupsdLogMessage(CUPSD_LOG_DEBUG2, "set_printer_defaults: %s", attr->name);
10170
10171 if (!strcmp(attr->name, "job-sheets-default"))
10172 {
10173 /*
10174 * Only allow keywords and names...
10175 */
10176
10177 if (attr->value_tag != IPP_TAG_NAME && attr->value_tag != IPP_TAG_KEYWORD)
10178 continue;
10179
10180 /*
10181 * Only allow job-sheets-default to be set when running without a
10182 * system high classification level...
10183 */
10184
10185 if (Classification)
10186 continue;
10187
10188 cupsdSetString(&printer->job_sheets[0], attr->values[0].string.text);
10189
10190 if (attr->num_values > 1)
10191 cupsdSetString(&printer->job_sheets[1], attr->values[1].string.text);
10192 else
10193 cupsdSetString(&printer->job_sheets[1], "none");
10194 }
10195 else if (!strcmp(attr->name, "requesting-user-name-allowed"))
10196 {
10197 cupsdFreeStrings(&(printer->users));
10198
10199 printer->deny_users = 0;
10200
10201 if (attr->value_tag == IPP_TAG_NAME &&
10202 (attr->num_values > 1 ||
10203 strcmp(attr->values[0].string.text, "all")))
10204 {
10205 for (i = 0; i < attr->num_values; i ++)
10206 cupsdAddString(&(printer->users), attr->values[i].string.text);
10207 }
10208 }
10209 else if (!strcmp(attr->name, "requesting-user-name-denied"))
10210 {
10211 cupsdFreeStrings(&(printer->users));
10212
10213 printer->deny_users = 1;
10214
10215 if (attr->value_tag == IPP_TAG_NAME &&
10216 (attr->num_values > 1 ||
10217 strcmp(attr->values[0].string.text, "none")))
10218 {
10219 for (i = 0; i < attr->num_values; i ++)
10220 cupsdAddString(&(printer->users), attr->values[i].string.text);
10221 }
10222 }
10223 else if (!strcmp(attr->name, "job-quota-period"))
10224 {
10225 if (attr->value_tag != IPP_TAG_INTEGER)
10226 continue;
10227
10228 cupsdLogMessage(CUPSD_LOG_DEBUG, "Setting job-quota-period to %d...",
10229 attr->values[0].integer);
10230 cupsdFreeQuotas(printer);
10231
10232 printer->quota_period = attr->values[0].integer;
10233 }
10234 else if (!strcmp(attr->name, "job-k-limit"))
10235 {
10236 if (attr->value_tag != IPP_TAG_INTEGER)
10237 continue;
10238
10239 cupsdLogMessage(CUPSD_LOG_DEBUG, "Setting job-k-limit to %d...",
10240 attr->values[0].integer);
10241 cupsdFreeQuotas(printer);
10242
10243 printer->k_limit = attr->values[0].integer;
10244 }
10245 else if (!strcmp(attr->name, "job-page-limit"))
10246 {
10247 if (attr->value_tag != IPP_TAG_INTEGER)
10248 continue;
10249
10250 cupsdLogMessage(CUPSD_LOG_DEBUG, "Setting job-page-limit to %d...",
10251 attr->values[0].integer);
10252 cupsdFreeQuotas(printer);
10253
10254 printer->page_limit = attr->values[0].integer;
10255 }
10256 else if (!strcmp(attr->name, "printer-op-policy"))
10257 {
10258 cupsd_policy_t *p; /* Policy */
10259
10260
10261 if (attr->value_tag != IPP_TAG_NAME)
10262 continue;
10263
10264 if ((p = cupsdFindPolicy(attr->values[0].string.text)) != NULL)
10265 {
10266 cupsdLogMessage(CUPSD_LOG_DEBUG,
10267 "Setting printer-op-policy to \"%s\"...",
10268 attr->values[0].string.text);
10269 cupsdSetString(&printer->op_policy, attr->values[0].string.text);
10270 printer->op_policy_ptr = p;
10271 }
10272 else
10273 {
10274 send_ipp_status(con, IPP_NOT_POSSIBLE,
10275 _("Unknown printer-op-policy \"%s\"."),
10276 attr->values[0].string.text);
10277 return;
10278 }
10279 }
10280 else if (!strcmp(attr->name, "printer-error-policy"))
10281 {
10282 if (attr->value_tag != IPP_TAG_NAME && attr->value_tag != IPP_TAG_KEYWORD)
10283 continue;
10284
10285 if (strcmp(attr->values[0].string.text, "retry-current-job") &&
10286 ((printer->type & CUPS_PRINTER_CLASS) ||
10287 (strcmp(attr->values[0].string.text, "abort-job") &&
10288 strcmp(attr->values[0].string.text, "retry-job") &&
10289 strcmp(attr->values[0].string.text, "stop-printer"))))
10290 {
10291 send_ipp_status(con, IPP_NOT_POSSIBLE,
10292 _("Unknown printer-error-policy \"%s\"."),
10293 attr->values[0].string.text);
10294 return;
10295 }
10296
10297 cupsdLogMessage(CUPSD_LOG_DEBUG,
10298 "Setting printer-error-policy to \"%s\"...",
10299 attr->values[0].string.text);
10300 cupsdSetString(&printer->error_policy, attr->values[0].string.text);
10301 }
10302
10303 /*
10304 * Skip any other non-default attributes...
10305 */
10306
10307 namelen = strlen(attr->name);
10308 if (namelen < 9 || strcmp(attr->name + namelen - 8, "-default") ||
10309 namelen > (sizeof(name) - 1) || attr->num_values != 1)
10310 continue;
10311
10312 /*
10313 * OK, anything else must be a user-defined default...
10314 */
10315
10316 strlcpy(name, attr->name, sizeof(name));
10317 name[namelen - 8] = '\0'; /* Strip "-default" */
10318
10319 switch (attr->value_tag)
10320 {
10321 case IPP_TAG_DELETEATTR :
10322 printer->num_options = cupsRemoveOption(name,
10323 printer->num_options,
10324 &(printer->options));
10325 cupsdLogMessage(CUPSD_LOG_DEBUG,
10326 "Deleting %s", attr->name);
10327 break;
10328
10329 case IPP_TAG_NAME :
10330 case IPP_TAG_TEXT :
10331 case IPP_TAG_KEYWORD :
10332 case IPP_TAG_URI :
10333 printer->num_options = cupsAddOption(name,
10334 attr->values[0].string.text,
10335 printer->num_options,
10336 &(printer->options));
10337 cupsdLogMessage(CUPSD_LOG_DEBUG,
10338 "Setting %s to \"%s\"...", attr->name,
10339 attr->values[0].string.text);
10340 break;
10341
10342 case IPP_TAG_BOOLEAN :
10343 printer->num_options = cupsAddOption(name,
10344 attr->values[0].boolean ?
10345 "true" : "false",
10346 printer->num_options,
10347 &(printer->options));
10348 cupsdLogMessage(CUPSD_LOG_DEBUG,
10349 "Setting %s to %s...", attr->name,
10350 attr->values[0].boolean ? "true" : "false");
10351 break;
10352
10353 case IPP_TAG_INTEGER :
10354 case IPP_TAG_ENUM :
10355 sprintf(value, "%d", attr->values[0].integer);
10356 printer->num_options = cupsAddOption(name, value,
10357 printer->num_options,
10358 &(printer->options));
10359 cupsdLogMessage(CUPSD_LOG_DEBUG,
10360 "Setting %s to %s...", attr->name, value);
10361 break;
10362
10363 case IPP_TAG_RANGE :
10364 sprintf(value, "%d-%d", attr->values[0].range.lower,
10365 attr->values[0].range.upper);
10366 printer->num_options = cupsAddOption(name, value,
10367 printer->num_options,
10368 &(printer->options));
10369 cupsdLogMessage(CUPSD_LOG_DEBUG,
10370 "Setting %s to %s...", attr->name, value);
10371 break;
10372
10373 case IPP_TAG_RESOLUTION :
10374 sprintf(value, "%dx%d%s", attr->values[0].resolution.xres,
10375 attr->values[0].resolution.yres,
10376 attr->values[0].resolution.units == IPP_RES_PER_INCH ?
10377 "dpi" : "dpcm");
10378 printer->num_options = cupsAddOption(name, value,
10379 printer->num_options,
10380 &(printer->options));
10381 cupsdLogMessage(CUPSD_LOG_DEBUG,
10382 "Setting %s to %s...", attr->name, value);
10383 break;
10384
10385 default :
10386 /* Do nothing for other values */
10387 break;
10388 }
10389 }
10390 }
10391
10392
10393 /*
10394 * 'start_printer()' - Start a printer.
10395 */
10396
10397 static void
10398 start_printer(cupsd_client_t *con, /* I - Client connection */
10399 ipp_attribute_t *uri) /* I - Printer URI */
10400 {
10401 int i; /* Temporary variable */
10402 http_status_t status; /* Policy status */
10403 cups_ptype_t dtype; /* Destination type (printer/class) */
10404 cupsd_printer_t *printer; /* Printer data */
10405
10406
10407 cupsdLogMessage(CUPSD_LOG_DEBUG2, "start_printer(%p[%d], %s)", con,
10408 con->number, uri->values[0].string.text);
10409
10410 /*
10411 * Is the destination valid?
10412 */
10413
10414 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
10415 {
10416 /*
10417 * Bad URI...
10418 */
10419
10420 send_ipp_status(con, IPP_NOT_FOUND,
10421 _("The printer or class does not exist."));
10422 return;
10423 }
10424
10425 /*
10426 * Check policy...
10427 */
10428
10429 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
10430 {
10431 send_http_error(con, status, printer);
10432 return;
10433 }
10434
10435 /*
10436 * Start the printer...
10437 */
10438
10439 printer->state_message[0] = '\0';
10440
10441 cupsdStartPrinter(printer, 1);
10442
10443 if (dtype & CUPS_PRINTER_CLASS)
10444 cupsdLogMessage(CUPSD_LOG_INFO, "Class \"%s\" started by \"%s\".",
10445 printer->name, get_username(con));
10446 else
10447 cupsdLogMessage(CUPSD_LOG_INFO, "Printer \"%s\" started by \"%s\".",
10448 printer->name, get_username(con));
10449
10450 cupsdCheckJobs();
10451
10452 /*
10453 * Check quotas...
10454 */
10455
10456 if ((i = check_quotas(con, printer)) < 0)
10457 {
10458 send_ipp_status(con, IPP_NOT_POSSIBLE, _("Quota limit reached."));
10459 return;
10460 }
10461 else if (i == 0)
10462 {
10463 send_ipp_status(con, IPP_NOT_AUTHORIZED, _("Not allowed to print."));
10464 return;
10465 }
10466
10467 /*
10468 * Everything was ok, so return OK status...
10469 */
10470
10471 con->response->request.status.status_code = IPP_OK;
10472 }
10473
10474
10475 /*
10476 * 'stop_printer()' - Stop a printer.
10477 */
10478
10479 static void
10480 stop_printer(cupsd_client_t *con, /* I - Client connection */
10481 ipp_attribute_t *uri) /* I - Printer URI */
10482 {
10483 http_status_t status; /* Policy status */
10484 cups_ptype_t dtype; /* Destination type (printer/class) */
10485 cupsd_printer_t *printer; /* Printer data */
10486 ipp_attribute_t *attr; /* printer-state-message attribute */
10487
10488
10489 cupsdLogMessage(CUPSD_LOG_DEBUG2, "stop_printer(%p[%d], %s)", con,
10490 con->number, uri->values[0].string.text);
10491
10492 /*
10493 * Is the destination valid?
10494 */
10495
10496 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
10497 {
10498 /*
10499 * Bad URI...
10500 */
10501
10502 send_ipp_status(con, IPP_NOT_FOUND,
10503 _("The printer or class does not exist."));
10504 return;
10505 }
10506
10507 /*
10508 * Check policy...
10509 */
10510
10511 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
10512 {
10513 send_http_error(con, status, printer);
10514 return;
10515 }
10516
10517 /*
10518 * Stop the printer...
10519 */
10520
10521 if ((attr = ippFindAttribute(con->request, "printer-state-message",
10522 IPP_TAG_TEXT)) == NULL)
10523 strlcpy(printer->state_message, "Paused", sizeof(printer->state_message));
10524 else
10525 {
10526 strlcpy(printer->state_message, attr->values[0].string.text,
10527 sizeof(printer->state_message));
10528 }
10529
10530 cupsdStopPrinter(printer, 1);
10531
10532 if (dtype & CUPS_PRINTER_CLASS)
10533 cupsdLogMessage(CUPSD_LOG_INFO, "Class \"%s\" stopped by \"%s\".",
10534 printer->name, get_username(con));
10535 else
10536 cupsdLogMessage(CUPSD_LOG_INFO, "Printer \"%s\" stopped by \"%s\".",
10537 printer->name, get_username(con));
10538
10539 /*
10540 * Everything was ok, so return OK status...
10541 */
10542
10543 con->response->request.status.status_code = IPP_OK;
10544 }
10545
10546
10547 /*
10548 * 'url_encode_attr()' - URL-encode a string attribute.
10549 */
10550
10551 static void
10552 url_encode_attr(ipp_attribute_t *attr, /* I - Attribute */
10553 char *buffer,/* I - String buffer */
10554 size_t bufsize)/* I - Size of buffer */
10555 {
10556 int i; /* Looping var */
10557 char *bufptr, /* Pointer into buffer */
10558 *bufend; /* End of buffer */
10559
10560
10561 strlcpy(buffer, attr->name, bufsize);
10562 bufptr = buffer + strlen(buffer);
10563 bufend = buffer + bufsize - 1;
10564
10565 for (i = 0; i < attr->num_values; i ++)
10566 {
10567 if (bufptr >= bufend)
10568 break;
10569
10570 if (i)
10571 *bufptr++ = ',';
10572 else
10573 *bufptr++ = '=';
10574
10575 if (bufptr >= bufend)
10576 break;
10577
10578 *bufptr++ = '\'';
10579
10580 bufptr = url_encode_string(attr->values[i].string.text, bufptr, (size_t)(bufend - bufptr + 1));
10581
10582 if (bufptr >= bufend)
10583 break;
10584
10585 *bufptr++ = '\'';
10586 }
10587
10588 *bufptr = '\0';
10589 }
10590
10591
10592 /*
10593 * 'url_encode_string()' - URL-encode a string.
10594 */
10595
10596 static char * /* O - End of string */
10597 url_encode_string(const char *s, /* I - String */
10598 char *buffer, /* I - String buffer */
10599 size_t bufsize) /* I - Size of buffer */
10600 {
10601 char *bufptr, /* Pointer into buffer */
10602 *bufend; /* End of buffer */
10603 static const char *hex = "0123456789ABCDEF";
10604 /* Hex digits */
10605
10606
10607 bufptr = buffer;
10608 bufend = buffer + bufsize - 1;
10609
10610 while (*s && bufptr < bufend)
10611 {
10612 if (*s == ' ' || *s == '%' || *s == '+')
10613 {
10614 if (bufptr >= (bufend - 2))
10615 break;
10616
10617 *bufptr++ = '%';
10618 *bufptr++ = hex[(*s >> 4) & 15];
10619 *bufptr++ = hex[*s & 15];
10620
10621 s ++;
10622 }
10623 else if (*s == '\'' || *s == '\\')
10624 {
10625 if (bufptr >= (bufend - 1))
10626 break;
10627
10628 *bufptr++ = '\\';
10629 *bufptr++ = *s++;
10630 }
10631 else
10632 *bufptr++ = *s++;
10633 }
10634
10635 *bufptr = '\0';
10636
10637 return (bufptr);
10638 }
10639
10640
10641 /*
10642 * 'user_allowed()' - See if a user is allowed to print to a queue.
10643 */
10644
10645 static int /* O - 0 if not allowed, 1 if allowed */
10646 user_allowed(cupsd_printer_t *p, /* I - Printer or class */
10647 const char *username) /* I - Username */
10648 {
10649 struct passwd *pw; /* User password data */
10650 char baseuser[256], /* Base username */
10651 *baseptr, /* Pointer to "@" in base username */
10652 *name; /* Current user name */
10653
10654
10655 if (cupsArrayCount(p->users) == 0)
10656 return (1);
10657
10658 if (!strcmp(username, "root"))
10659 return (1);
10660
10661 if (strchr(username, '@'))
10662 {
10663 /*
10664 * Strip @REALM for username check...
10665 */
10666
10667 strlcpy(baseuser, username, sizeof(baseuser));
10668
10669 if ((baseptr = strchr(baseuser, '@')) != NULL)
10670 *baseptr = '\0';
10671
10672 username = baseuser;
10673 }
10674
10675 pw = getpwnam(username);
10676 endpwent();
10677
10678 for (name = (char *)cupsArrayFirst(p->users);
10679 name;
10680 name = (char *)cupsArrayNext(p->users))
10681 {
10682 if (name[0] == '@')
10683 {
10684 /*
10685 * Check group membership...
10686 */
10687
10688 if (cupsdCheckGroup(username, pw, name + 1))
10689 break;
10690 }
10691 else if (name[0] == '#')
10692 {
10693 /*
10694 * Check UUID...
10695 */
10696
10697 if (cupsdCheckGroup(username, pw, name))
10698 break;
10699 }
10700 else if (!_cups_strcasecmp(username, name))
10701 break;
10702 }
10703
10704 return ((name != NULL) != p->deny_users);
10705 }
10706
10707
10708 /*
10709 * 'validate_job()' - Validate printer options and destination.
10710 */
10711
10712 static void
10713 validate_job(cupsd_client_t *con, /* I - Client connection */
10714 ipp_attribute_t *uri) /* I - Printer URI */
10715 {
10716 http_status_t status; /* Policy status */
10717 ipp_attribute_t *attr, /* Current attribute */
10718 *auth_info; /* auth-info attribute */
10719 ipp_attribute_t *format, /* Document-format attribute */
10720 *name; /* Job-name attribute */
10721 cups_ptype_t dtype; /* Destination type (printer/class) */
10722 char super[MIME_MAX_SUPER],
10723 /* Supertype of file */
10724 type[MIME_MAX_TYPE];
10725 /* Subtype of file */
10726 cupsd_printer_t *printer; /* Printer */
10727
10728
10729 cupsdLogMessage(CUPSD_LOG_DEBUG2, "validate_job(%p[%d], %s)", con,
10730 con->number, uri->values[0].string.text);
10731
10732 /*
10733 * OK, see if the client is sending the document compressed - CUPS
10734 * doesn't support compression yet...
10735 */
10736
10737 if ((attr = ippFindAttribute(con->request, "compression",
10738 IPP_TAG_KEYWORD)) != NULL)
10739 {
10740 if (strcmp(attr->values[0].string.text, "none")
10741 #ifdef HAVE_LIBZ
10742 && strcmp(attr->values[0].string.text, "gzip")
10743 #endif /* HAVE_LIBZ */
10744 )
10745 {
10746 send_ipp_status(con, IPP_ATTRIBUTES,
10747 _("Unsupported 'compression' value \"%s\"."),
10748 attr->values[0].string.text);
10749 ippAddString(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_KEYWORD,
10750 "compression", NULL, attr->values[0].string.text);
10751 return;
10752 }
10753 }
10754
10755 /*
10756 * Is it a format we support?
10757 */
10758
10759 if ((format = ippFindAttribute(con->request, "document-format",
10760 IPP_TAG_MIMETYPE)) != NULL)
10761 {
10762 if (sscanf(format->values[0].string.text, "%15[^/]/%255[^;]",
10763 super, type) != 2)
10764 {
10765 send_ipp_status(con, IPP_BAD_REQUEST,
10766 _("Bad 'document-format' value \"%s\"."),
10767 format->values[0].string.text);
10768 return;
10769 }
10770
10771 if ((strcmp(super, "application") || strcmp(type, "octet-stream")) &&
10772 !mimeType(MimeDatabase, super, type))
10773 {
10774 cupsdLogMessage(CUPSD_LOG_INFO,
10775 "Hint: Do you have the raw file printing rules enabled?");
10776 send_ipp_status(con, IPP_DOCUMENT_FORMAT,
10777 _("Unsupported 'document-format' value \"%s\"."),
10778 format->values[0].string.text);
10779 ippAddString(con->response, IPP_TAG_UNSUPPORTED_GROUP, IPP_TAG_MIMETYPE,
10780 "document-format", NULL, format->values[0].string.text);
10781 return;
10782 }
10783 }
10784
10785 /*
10786 * Is the job-name valid?
10787 */
10788
10789 if ((name = ippFindAttribute(con->request, "job-name", IPP_TAG_ZERO)) != NULL)
10790 {
10791 int bad_name = 0; /* Is the job-name value bad? */
10792
10793 if ((name->value_tag != IPP_TAG_NAME && name->value_tag != IPP_TAG_NAMELANG) ||
10794 name->num_values != 1)
10795 {
10796 bad_name = 1;
10797 }
10798 else
10799 {
10800 /*
10801 * Validate that job-name conforms to RFC 5198 (Network Unicode) and
10802 * IPP Everywhere requirements for "name" values...
10803 */
10804
10805 const unsigned char *nameptr; /* Pointer into "job-name" attribute */
10806
10807 for (nameptr = (unsigned char *)name->values[0].string.text;
10808 *nameptr;
10809 nameptr ++)
10810 {
10811 if (*nameptr < ' ' && *nameptr != '\t')
10812 break;
10813 else if (*nameptr == 0x7f)
10814 break;
10815 else if ((*nameptr & 0xe0) == 0xc0)
10816 {
10817 if ((nameptr[1] & 0xc0) != 0x80)
10818 break;
10819
10820 nameptr ++;
10821 }
10822 else if ((*nameptr & 0xf0) == 0xe0)
10823 {
10824 if ((nameptr[1] & 0xc0) != 0x80 ||
10825 (nameptr[2] & 0xc0) != 0x80)
10826 break;
10827
10828 nameptr += 2;
10829 }
10830 else if ((*nameptr & 0xf8) == 0xf0)
10831 {
10832 if ((nameptr[1] & 0xc0) != 0x80 ||
10833 (nameptr[2] & 0xc0) != 0x80 ||
10834 (nameptr[3] & 0xc0) != 0x80)
10835 break;
10836
10837 nameptr += 3;
10838 }
10839 else if (*nameptr & 0x80)
10840 break;
10841 }
10842
10843 if (*nameptr)
10844 bad_name = 1;
10845 }
10846
10847 if (bad_name)
10848 {
10849 if (StrictConformance)
10850 {
10851 send_ipp_status(con, IPP_ATTRIBUTES,
10852 _("Unsupported 'job-name' value."));
10853 ippCopyAttribute(con->response, name, 0);
10854 return;
10855 }
10856 else
10857 {
10858 cupsdLogMessage(CUPSD_LOG_WARN,
10859 "Unsupported 'job-name' value, deleting from request.");
10860 ippDeleteAttribute(con->request, name);
10861 }
10862 }
10863 }
10864
10865 /*
10866 * Is the destination valid?
10867 */
10868
10869 if (!cupsdValidateDest(uri->values[0].string.text, &dtype, &printer))
10870 {
10871 /*
10872 * Bad URI...
10873 */
10874
10875 send_ipp_status(con, IPP_NOT_FOUND,
10876 _("The printer or class does not exist."));
10877 return;
10878 }
10879
10880 /*
10881 * Check policy...
10882 */
10883
10884 auth_info = ippFindAttribute(con->request, "auth-info", IPP_TAG_TEXT);
10885
10886 if ((status = cupsdCheckPolicy(printer->op_policy_ptr, con, NULL)) != HTTP_OK)
10887 {
10888 send_http_error(con, status, printer);
10889 return;
10890 }
10891 else if (printer->num_auth_info_required == 1 &&
10892 !strcmp(printer->auth_info_required[0], "negotiate") &&
10893 !con->username[0])
10894 {
10895 send_http_error(con, HTTP_UNAUTHORIZED, printer);
10896 return;
10897 }
10898 #ifdef HAVE_SSL
10899 else if (auth_info && !con->http->tls &&
10900 !httpAddrLocalhost(con->http->hostaddr))
10901 {
10902 /*
10903 * Require encryption of auth-info over non-local connections...
10904 */
10905
10906 send_http_error(con, HTTP_UPGRADE_REQUIRED, printer);
10907 return;
10908 }
10909 #endif /* HAVE_SSL */
10910
10911 /*
10912 * Everything was ok, so return OK status...
10913 */
10914
10915 con->response->request.status.status_code = IPP_OK;
10916 }
10917
10918
10919 /*
10920 * 'validate_name()' - Make sure the printer name only contains valid chars.
10921 */
10922
10923 static int /* O - 0 if name is no good, 1 if good */
10924 validate_name(const char *name) /* I - Name to check */
10925 {
10926 const char *ptr; /* Pointer into name */
10927
10928
10929 /*
10930 * Scan the whole name...
10931 */
10932
10933 for (ptr = name; *ptr; ptr ++)
10934 if ((*ptr > 0 && *ptr <= ' ') || *ptr == 127 || *ptr == '/' || *ptr == '#')
10935 return (0);
10936
10937 /*
10938 * All the characters are good; validate the length, too...
10939 */
10940
10941 return ((ptr - name) < 128);
10942 }
10943
10944
10945 /*
10946 * 'validate_user()' - Validate the user for the request.
10947 */
10948
10949 static int /* O - 1 if permitted, 0 otherwise */
10950 validate_user(cupsd_job_t *job, /* I - Job */
10951 cupsd_client_t *con, /* I - Client connection */
10952 const char *owner, /* I - Owner of job/resource */
10953 char *username, /* O - Authenticated username */
10954 size_t userlen) /* I - Length of username */
10955 {
10956 cupsd_printer_t *printer; /* Printer for job */
10957
10958
10959 cupsdLogMessage(CUPSD_LOG_DEBUG2, "validate_user(job=%d, con=%d, owner=\"%s\", username=%p, userlen=" CUPS_LLFMT ")", job->id, con ? con->number : 0, owner ? owner : "(null)", username, CUPS_LLCAST userlen);
10960
10961 /*
10962 * Validate input...
10963 */
10964
10965 if (!con || !owner || !username || userlen <= 0)
10966 return (0);
10967
10968 /*
10969 * Get the best authenticated username that is available.
10970 */
10971
10972 strlcpy(username, get_username(con), userlen);
10973
10974 /*
10975 * Check the username against the owner...
10976 */
10977
10978 printer = cupsdFindDest(job->dest);
10979
10980 return (cupsdCheckPolicy(printer ? printer->op_policy_ptr : DefaultPolicyPtr,
10981 con, owner) == HTTP_OK);
10982 }
10983
10984
10985 /*
10986 * End of "$Id$".
10987 */