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