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