]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/job.c
Remove unused var.
[thirdparty/cups.git] / scheduler / job.c
CommitLineData
ef416fc2 1/*
f2d18633 2 * "$Id$"
ef416fc2 3 *
7cf5915e 4 * Job management routines for the CUPS scheduler.
ef416fc2 5 *
12f89d24 6 * Copyright 2007-2012 by Apple Inc.
f7deaa1a 7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 8 *
9 * These coded instructions, statements, and computer programs are the
bc44d920 10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14 *
15 * Contents:
16 *
f3c17241 17 * cupsdAddJob() - Add a new job to the job queue.
82cc1f9a
MS
18 * cupsdCancelJobs() - Cancel all jobs for the given
19 * destination/user.
20 * cupsdCheckJobs() - Check the pending jobs and start any if the
21 * destination is available.
22 * cupsdCleanJobs() - Clean out old jobs.
23 * cupsdContinueJob() - Continue printing with the next file in a
24 * job.
25 * cupsdDeleteJob() - Free all memory used by a job.
26 * cupsdFreeAllJobs() - Free all jobs from memory.
27 * cupsdFindJob() - Find the specified job.
28 * cupsdGetPrinterJobCount() - Get the number of pending, processing, or
29 * held jobs in a printer or class.
30 * cupsdGetUserJobCount() - Get the number of pending, processing, or
31 * held jobs for a user.
32 * cupsdLoadAllJobs() - Load all jobs from disk.
33 * cupsdLoadJob() - Load a single job.
34 * cupsdMoveJob() - Move the specified job to a different
35 * destination.
36 * cupsdReleaseJob() - Release the specified job.
37 * cupsdRestartJob() - Restart the specified job.
38 * cupsdSaveAllJobs() - Save a summary of all jobs to disk.
39 * cupsdSaveJob() - Save a job to disk.
40 * cupsdSetJobHoldUntil() - Set the hold time for a job.
41 * cupsdSetJobPriority() - Set the priority of a job, moving it up/down
42 * in the list as needed.
43 * cupsdSetJobState() - Set the state of the specified print job.
44 * cupsdStopAllJobs() - Stop all print jobs.
bd7854cb 45 * cupsdUnloadCompletedJobs() - Flush completed job history from memory.
82cc1f9a
MS
46 * cupsdUpdateJobs() - Update the history/file files for all jobs.
47 * compare_active_jobs() - Compare the job IDs and priorities of two
48 * jobs.
49 * compare_jobs() - Compare the job IDs of two jobs.
50 * dump_job_history() - Dump any debug messages for a job.
51 * free_job_history() - Free any log history.
52 * finalize_job() - Cleanup after job filter processes and
53 * support data.
54 * get_options() - Get a string containing the job options.
55 * ipp_length() - Compute the size of the buffer needed to hold
56 * the textual IPP attributes.
57 * load_job_cache() - Load jobs from the job.cache file.
58 * load_next_job_id() - Load the NextJobId value from the job.cache
59 * file.
60 * load_request_root() - Load jobs from the RequestRoot directory.
61 * remove_job_files() - Remove the document files for a job.
62 * remove_job_history() - Remove the control file for a job.
63 * set_time() - Set one of the "time-at-xyz" attributes.
64 * start_job() - Start a print job.
65 * stop_job() - Stop a print job.
66 * unload_job() - Unload a job from memory.
67 * update_job() - Read a status update from a job's filters.
68 * update_job_attrs() - Update the job-printer-* attributes.
ef416fc2 69 */
70
71/*
72 * Include necessary headers...
73 */
74
75#include "cupsd.h"
76#include <grp.h>
77#include <cups/backend.h>
78#include <cups/dir.h>
88f9aafc
MS
79#ifdef __APPLE__
80# include <IOKit/pwr_mgt/IOPMLib.h>
81# ifdef HAVE_IOKIT_PWR_MGT_IOPMLIBPRIVATE_H
82# include <IOKit/pwr_mgt/IOPMLibPrivate.h>
83# endif /* HAVE_IOKIT_PWR_MGT_IOPMLIBPRIVATE_H */
84#endif /* __APPLE__ */
ef416fc2 85
86
b9faaae1
MS
87/*
88 * Design Notes for Job Management
89 * -------------------------------
90 *
91 * STATE CHANGES
92 *
93 * pending Do nothing/check jobs
94 * pending-held Send SIGTERM to filters and backend
95 * processing Do nothing/start job
96 * stopped Send SIGKILL to filters and backend
97 * canceled Send SIGTERM to filters and backend
98 * aborted Finalize
99 * completed Finalize
100 *
101 * Finalize clears the printer <-> job association, deletes the status
102 * buffer, closes all of the pipes, etc. and doesn't get run until all of
103 * the print processes are finished.
104 *
105 * UNLOADING OF JOBS (cupsdUnloadCompletedJobs)
106 *
107 * We unload the job attributes when they are not needed to reduce overall
108 * memory consumption. We don't unload jobs where job->state_value <
109 * IPP_JOB_STOPPED, job->printer != NULL, or job->access_time is recent.
110 *
111 * STARTING OF JOBS (start_job)
112 *
113 * When a job is started, a status buffer, several pipes, a security
114 * profile, and a backend process are created for the life of that job.
115 * These are shared for every file in a job. For remote print jobs, the
116 * IPP backend is provided with every file in the job and no filters are
117 * run.
118 *
119 * The job->printer member tracks which printer is printing a job, which
120 * can be different than the destination in job->dest for classes. The
121 * printer object also has a job pointer to track which job is being
122 * printed.
123 *
124 * PRINTING OF JOB FILES (cupsdContinueJob)
125 *
126 * Each file in a job is filtered by 0 or more programs. After getting the
127 * list of filters needed and the total cost, the job is either passed or
128 * put back to the processing state until the current FilterLevel comes down
129 * enough to allow printing.
130 *
131 * If we can print, we build a string for the print options and run each of
132 * the filters, piping the output from one into the next.
133 *
134 * JOB STATUS UPDATES (update_job)
135 *
136 * The update_job function gets called whenever there are pending messages
137 * on the status pipe. These generally are updates to the marker-*,
138 * printer-state-message, or printer-state-reasons attributes. On EOF,
139 * finalize_job is called to clean up.
140 *
141 * FINALIZING JOBS (finalize_job)
142 *
143 * When all filters and the backend are done, we set the job state to
144 * completed (no errors), aborted (filter errors or abort-job policy),
145 * pending-held (auth required or retry-job policy), or pending
146 * (retry-current-job or stop-printer policies) as appropriate.
147 *
148 * Then we close the pipes and free the status buffers and profiles.
149 *
150 * JOB FILE COMPLETION (process_children in main.c)
151 *
152 * For multiple-file jobs, process_children (in main.c) sees that all
153 * filters have exited and calls in to print the next file if there are
154 * more files in the job, otherwise it waits for the backend to exit and
155 * update_job to do the cleanup.
156 */
157
158
ef416fc2 159/*
160 * Local globals...
161 */
162
163static mime_filter_t gziptoany_filter =
164 {
165 NULL, /* Source type */
166 NULL, /* Destination type */
167 0, /* Cost */
168 "gziptoany" /* Filter program to run */
169 };
170
171
172/*
173 * Local functions...
174 */
175
176static int compare_active_jobs(void *first, void *second, void *data);
177static int compare_jobs(void *first, void *second, void *data);
178cb736 178static void dump_job_history(cupsd_job_t *job);
ef55b745 179static void finalize_job(cupsd_job_t *job, int set_job_state);
178cb736 180static void free_job_history(cupsd_job_t *job);
b9faaae1
MS
181static char *get_options(cupsd_job_t *job, int banner_page, char *copies,
182 size_t copies_size, char *title,
183 size_t title_size);
c7017ecc 184static size_t ipp_length(ipp_t *ipp);
bd7854cb 185static void load_job_cache(const char *filename);
186static void load_next_job_id(const char *filename);
187static void load_request_root(void);
82cc1f9a
MS
188static void remove_job_files(cupsd_job_t *job);
189static void remove_job_history(cupsd_job_t *job);
b9faaae1 190static void set_time(cupsd_job_t *job, const char *name);
e1d6a774 191static void start_job(cupsd_job_t *job, cupsd_printer_t *printer);
b9faaae1 192static void stop_job(cupsd_job_t *job, cupsd_jobaction_t action);
e1d6a774 193static void unload_job(cupsd_job_t *job);
f899b121 194static void update_job(cupsd_job_t *job);
4509bb49 195static void update_job_attrs(cupsd_job_t *job, int do_message);
ef416fc2 196
197
198/*
b9faaae1 199 * 'cupsdAddJob()' - Add a new job to the job queue.
ef416fc2 200 */
201
202cupsd_job_t * /* O - New job record */
203cupsdAddJob(int priority, /* I - Job priority */
204 const char *dest) /* I - Job destination */
205{
206 cupsd_job_t *job; /* New job record */
207
208
91c84a35
MS
209 if ((job = calloc(sizeof(cupsd_job_t), 1)) == NULL)
210 return (NULL);
ef416fc2 211
89d46774 212 job->id = NextJobId ++;
213 job->priority = priority;
214 job->back_pipes[0] = -1;
215 job->back_pipes[1] = -1;
216 job->print_pipes[0] = -1;
217 job->print_pipes[1] = -1;
f7deaa1a 218 job->side_pipes[0] = -1;
219 job->side_pipes[1] = -1;
89d46774 220 job->status_pipes[0] = -1;
221 job->status_pipes[1] = -1;
ef416fc2 222
223 cupsdSetString(&job->dest, dest);
224
225 /*
226 * Add the new job to the "all jobs" and "active jobs" lists...
227 */
228
229 cupsArrayAdd(Jobs, job);
230 cupsArrayAdd(ActiveJobs, job);
231
232 return (job);
233}
234
235
236/*
b9faaae1 237 * 'cupsdCancelJobs()' - Cancel all jobs for the given destination/user.
ef416fc2 238 */
239
240void
241cupsdCancelJobs(const char *dest, /* I - Destination to cancel */
242 const char *username, /* I - Username or NULL */
243 int purge) /* I - Purge jobs? */
244{
245 cupsd_job_t *job; /* Current job */
246
247
248 for (job = (cupsd_job_t *)cupsArrayFirst(Jobs);
249 job;
250 job = (cupsd_job_t *)cupsArrayNext(Jobs))
0a682745 251 {
b9faaae1 252 if ((!job->dest || !job->username) && !cupsdLoadJob(job))
0a682745
MS
253 continue;
254
b9faaae1
MS
255 if ((!dest || !strcmp(job->dest, dest)) &&
256 (!username || !strcmp(job->username, username)))
ef416fc2 257 {
258 /*
259 * Cancel all jobs matching this destination/user...
260 */
261
b9faaae1
MS
262 if (purge)
263 cupsdSetJobState(job, IPP_JOB_CANCELED, CUPSD_JOB_PURGE,
264 "Job purged by user.");
41681883 265 else if (job->state_value < IPP_JOB_CANCELED)
b9faaae1
MS
266 cupsdSetJobState(job, IPP_JOB_CANCELED, CUPSD_JOB_DEFAULT,
267 "Job canceled by user.");
ef416fc2 268 }
0a682745 269 }
ef416fc2 270
271 cupsdCheckJobs();
272}
273
274
275/*
276 * 'cupsdCheckJobs()' - Check the pending jobs and start any if the destination
277 * is available.
278 */
279
280void
281cupsdCheckJobs(void)
282{
283 cupsd_job_t *job; /* Current job in queue */
284 cupsd_printer_t *printer, /* Printer destination */
285 *pclass; /* Printer class destination */
ac884b6a 286 ipp_attribute_t *attr; /* Job attribute */
238c3832 287 time_t curtime; /* Current time */
ef416fc2 288
289
238c3832
MS
290 curtime = time(NULL);
291
a29fd7dd
MS
292 cupsdLogMessage(CUPSD_LOG_DEBUG2,
293 "cupsdCheckJobs: %d active jobs, sleeping=%d, reload=%d, "
294 "curtime=%ld", cupsArrayCount(ActiveJobs), Sleeping,
295 NeedReload, (long)curtime);
296
ef416fc2 297 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
298 job;
299 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
300 {
a29fd7dd
MS
301 cupsdLogMessage(CUPSD_LOG_DEBUG2,
302 "cupsdCheckJobs: Job %d - dest=\"%s\", printer=%p, "
303 "state=%d, cancel_time=%ld, hold_until=%ld, kill_time=%ld, "
304 "pending_cost=%d, pending_timeout=%ld", job->id, job->dest,
305 job->printer, job->state_value, (long)job->cancel_time,
306 (long)job->hold_until, (long)job->kill_time,
307 job->pending_cost, (long)job->pending_timeout);
308
238c3832
MS
309 /*
310 * Kill jobs if they are unresponsive...
311 */
312
313 if (job->kill_time && job->kill_time <= curtime)
314 {
dcb445bc 315 cupsdLogMessage(CUPSD_LOG_ERROR, "[Job %d] Stopping unresponsive job.",
10d09e33
MS
316 job->id);
317
238c3832
MS
318 stop_job(job, CUPSD_JOB_FORCE);
319 continue;
320 }
321
dcb445bc
MS
322 /*
323 * Cancel stuck jobs...
324 */
325
326 if (job->cancel_time && job->cancel_time <= curtime)
327 {
328 cupsdSetJobState(job, IPP_JOB_CANCELED, CUPSD_JOB_DEFAULT,
329 "Canceling stuck job after %d seconds.", MaxJobTime);
330 continue;
331 }
332
ef416fc2 333 /*
334 * Start held jobs if they are ready...
335 */
336
bd7854cb 337 if (job->state_value == IPP_JOB_HELD &&
ef416fc2 338 job->hold_until &&
238c3832 339 job->hold_until < curtime)
bd7854cb 340 {
09a101d6 341 if (job->pending_timeout)
91c84a35 342 {
dfd5680b
MS
343 /*
344 * This job is pending; check that we don't have an active Send-Document
345 * operation in progress on any of the client connections, then timeout
346 * the job so we can start printing...
347 */
348
349 cupsd_client_t *con; /* Current client connection */
350
dfd5680b
MS
351 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
352 con;
353 con = (cupsd_client_t *)cupsArrayNext(Clients))
354 if (con->request &&
355 con->request->request.op.operation_id == IPP_SEND_DOCUMENT)
356 break;
357
358 if (con)
359 continue;
360
91c84a35
MS
361 if (cupsdTimeoutJob(job))
362 continue;
363 }
09a101d6 364
b9faaae1
MS
365 cupsdSetJobState(job, IPP_JOB_PENDING, CUPSD_JOB_DEFAULT,
366 "Job submission timed out.");
bd7854cb 367 }
ef416fc2 368
e07d4801
MS
369 /*
370 * Continue jobs that are waiting on the FilterLimit...
371 */
372
373 if (job->pending_cost > 0 &&
374 ((FilterLevel + job->pending_cost) < FilterLimit || FilterLevel == 0))
375 cupsdContinueJob(job);
376
ef416fc2 377 /*
378 * Start pending jobs if the destination is available...
379 */
380
88f9aafc
MS
381 if (job->state_value == IPP_JOB_PENDING && !NeedReload &&
382#ifndef kIOPMAssertionTypeDenySystemSleep
383 !Sleeping &&
384#endif /* !kIOPMAssertionTypeDenySystemSleep */
7cf5915e 385 !DoingShutdown && !job->printer)
ef416fc2 386 {
387 printer = cupsdFindDest(job->dest);
388 pclass = NULL;
389
a2326b5b 390 while (printer && (printer->type & CUPS_PRINTER_CLASS))
ef416fc2 391 {
392 /*
393 * If the class is remote, just pass it to the remote server...
394 */
395
396 pclass = printer;
397
c0e1af83 398 if (pclass->state == IPP_PRINTER_STOPPED)
b86bc4cf 399 printer = NULL;
c0e1af83 400 else if (pclass->type & CUPS_PRINTER_REMOTE)
401 break;
402 else
403 printer = cupsdFindAvailablePrinter(printer->name);
ef416fc2 404 }
405
406 if (!printer && !pclass)
407 {
408 /*
409 * Whoa, the printer and/or class for this destination went away;
410 * cancel the job...
411 */
412
b9faaae1
MS
413 cupsdSetJobState(job, IPP_JOB_ABORTED, CUPSD_JOB_PURGE,
414 "Job aborted because the destination printer/class "
415 "has gone away.");
ef416fc2 416 }
61cf44e2 417 else if (printer && !printer->holding_new_jobs)
ef416fc2 418 {
419 /*
420 * See if the printer is available or remote and not printing a job;
421 * if so, start the job...
422 */
423
424 if (pclass)
425 {
426 /*
427 * Add/update a job-actual-printer-uri attribute for this job
428 * so that we know which printer actually printed the job...
429 */
430
ef416fc2 431 if ((attr = ippFindAttribute(job->attrs, "job-actual-printer-uri",
432 IPP_TAG_URI)) != NULL)
433 cupsdSetString(&attr->values[0].string.text, printer->uri);
434 else
435 ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_URI,
436 "job-actual-printer-uri", NULL, printer->uri);
3dfe78b3
MS
437
438 job->dirty = 1;
439 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
ef416fc2 440 }
441
a29fd7dd 442 if (!printer->job && printer->state == IPP_PRINTER_IDLE)
bc44d920 443 {
bc44d920 444 /*
445 * Start the job...
446 */
447
e1d6a774 448 start_job(job, printer);
bc44d920 449 }
ef416fc2 450 }
451 }
452 }
453}
454
455
456/*
457 * 'cupsdCleanJobs()' - Clean out old jobs.
458 */
459
460void
461cupsdCleanJobs(void)
462{
463 cupsd_job_t *job; /* Current job */
82cc1f9a
MS
464 time_t curtime; /* Current time */
465
ef416fc2 466
82cc1f9a
MS
467 cupsdLogMessage(CUPSD_LOG_DEBUG2,
468 "cupsdCleanJobs: MaxJobs=%d, JobHistory=%d, JobFiles=%d",
469 MaxJobs, JobHistory, JobFiles);
ef416fc2 470
82cc1f9a 471 if (MaxJobs <= 0 && JobHistory == INT_MAX && JobFiles == INT_MAX)
ef416fc2 472 return;
473
82cc1f9a
MS
474 curtime = time(NULL);
475 JobHistoryUpdate = 0;
476
ef416fc2 477 for (job = (cupsd_job_t *)cupsArrayFirst(Jobs);
82cc1f9a 478 job;
ef416fc2 479 job = (cupsd_job_t *)cupsArrayNext(Jobs))
82cc1f9a 480 {
b9faaae1 481 if (job->state_value >= IPP_JOB_CANCELED && !job->printer)
82cc1f9a
MS
482 {
483 /*
484 * Expire old jobs (or job files)...
485 */
486
487 if ((MaxJobs > 0 && cupsArrayCount(Jobs) >= MaxJobs) ||
488 (job->history_time && job->history_time <= curtime))
489 {
490 cupsdLogJob(job, CUPSD_LOG_DEBUG, "Removing from history.");
491 cupsdDeleteJob(job, CUPSD_JOB_PURGE);
492 }
493 else if (job->file_time && job->file_time <= curtime)
494 {
495 cupsdLogJob(job, CUPSD_LOG_DEBUG, "Removing document files.");
496 remove_job_files(job);
497
498 if (job->history_time < JobHistoryUpdate || !JobHistoryUpdate)
499 JobHistoryUpdate = job->history_time;
500 }
501 else
502 {
503 if (job->history_time < JobHistoryUpdate || !JobHistoryUpdate)
504 JobHistoryUpdate = job->history_time;
505
506 if (job->file_time < JobHistoryUpdate || !JobHistoryUpdate)
507 JobHistoryUpdate = job->file_time;
508 }
509 }
510 }
511
512 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdCleanJobs: JobHistoryUpdate=%ld",
513 (long)JobHistoryUpdate);
ef416fc2 514}
515
516
3dfe78b3 517/*
b9faaae1 518 * 'cupsdContinueJob()' - Continue printing with the next file in a job.
3dfe78b3
MS
519 */
520
521void
b9faaae1 522cupsdContinueJob(cupsd_job_t *job) /* I - Job */
3dfe78b3 523{
b9faaae1
MS
524 int i; /* Looping var */
525 int slot; /* Pipe slot */
e07d4801 526 cups_array_t *filters = NULL,/* Filters for job */
b9faaae1
MS
527 *prefilters; /* Filters with prefilters */
528 mime_filter_t *filter, /* Current filter */
529 *prefilter, /* Prefilter */
530 port_monitor; /* Port monitor filter */
531 char scheme[255]; /* Device URI scheme */
532 ipp_attribute_t *attr; /* Current attribute */
533 const char *ptr, /* Pointer into value */
534 *abort_message; /* Abort message */
f11a948a 535 ipp_jstate_t abort_state = IPP_JOB_STOPPED;
e07d4801 536 /* New job state on abort */
b9faaae1
MS
537 struct stat backinfo; /* Backend file information */
538 int backroot; /* Run backend as root? */
539 int pid; /* Process ID of new filter process */
540 int banner_page; /* 1 if banner page, 0 otherwise */
e07d4801
MS
541 int filterfds[2][2] = { { -1, -1 }, { -1, -1 } };
542 /* Pipes used between filters */
b9faaae1 543 int envc; /* Number of environment variables */
771bd8cb 544 struct stat fileinfo; /* Job file information */
e07d4801 545 char **argv = NULL, /* Filter command-line arguments */
b9faaae1
MS
546 filename[1024], /* Job filename */
547 command[1024], /* Full path to command */
548 jobid[255], /* Job ID string */
549 title[IPP_MAX_NAME],
550 /* Job title string */
551 copies[255], /* # copies string */
552 *options, /* Options string */
eac3a0a0 553 *envp[MAX_ENV + 21],
b9faaae1
MS
554 /* Environment variables */
555 charset[255], /* CHARSET env variable */
556 class_name[255],/* CLASS env variable */
557 classification[1024],
558 /* CLASSIFICATION env variable */
559 content_type[1024],
560 /* CONTENT_TYPE env variable */
561 device_uri[1024],
562 /* DEVICE_URI env variable */
6961465f 563 final_content_type[1024] = "",
b9faaae1
MS
564 /* FINAL_CONTENT_TYPE env variable */
565 lang[255], /* LANG env variable */
566#ifdef __APPLE__
567 apple_language[255],
568 /* APPLE_LANGUAGE env variable */
569#endif /* __APPLE__ */
22c9029b
MS
570 auth_info_required[255],
571 /* AUTH_INFO_REQUIRED env variable */
b9faaae1
MS
572 ppd[1024], /* PPD env variable */
573 printer_info[255],
574 /* PRINTER_INFO env variable */
575 printer_location[255],
576 /* PRINTER_LOCATION env variable */
577 printer_name[255],
578 /* PRINTER env variable */
eac3a0a0
MS
579 *printer_state_reasons = NULL,
580 /* PRINTER_STATE_REASONS env var */
b9faaae1
MS
581 rip_max_cache[255];
582 /* RIP_MAX_CACHE env variable */
583
584
585 cupsdLogMessage(CUPSD_LOG_DEBUG2,
586 "cupsdContinueJob(job=%p(%d)): current_file=%d, num_files=%d",
587 job, job->id, job->current_file, job->num_files);
3dfe78b3 588
3dfe78b3 589 /*
b9faaae1
MS
590 * Figure out what filters are required to convert from
591 * the source to the destination type...
3dfe78b3
MS
592 */
593
b9faaae1 594 FilterLevel -= job->cost;
3dfe78b3 595
e07d4801
MS
596 job->cost = 0;
597 job->pending_cost = 0;
598
599 memset(job->filters, 0, sizeof(job->filters));
600
b9faaae1 601 if (job->printer->raw)
3dfe78b3 602 {
b9faaae1
MS
603 /*
604 * Remote jobs and raw queues go directly to the printer without
605 * filtering...
606 */
3dfe78b3 607
b9faaae1 608 cupsdLogJob(job, CUPSD_LOG_DEBUG, "Sending job to queue tagged as raw...");
b9faaae1
MS
609 }
610 else
611 {
612 /*
613 * Local jobs get filtered...
614 */
3dfe78b3 615
771bd8cb
MS
616 snprintf(filename, sizeof(filename), "%s/d%05d-%03d", RequestRoot,
617 job->id, job->current_file + 1);
618 if (stat(filename, &fileinfo))
619 fileinfo.st_size = 0;
620
621 filters = mimeFilter2(MimeDatabase, job->filetypes[job->current_file],
622 fileinfo.st_size, job->printer->filetype,
623 &(job->cost));
ef416fc2 624
b9faaae1
MS
625 if (!filters)
626 {
627 cupsdLogJob(job, CUPSD_LOG_ERROR,
12f89d24 628 "Unable to convert file %d to printable format.",
b9faaae1 629 job->current_file);
ef416fc2 630
e07d4801 631 abort_message = "Aborting job because it cannot be printed.";
f11a948a
MS
632 abort_state = IPP_JOB_ABORTED;
633
12f89d24 634 ippSetString(job->attrs, &job->reasons, 0, "document-unprintable-error");
e07d4801 635 goto abort_job;
b9faaae1 636 }
ef416fc2 637
6961465f
MS
638 /*
639 * Figure out the final content type...
640 */
641
642 cupsdLogJob(job, CUPSD_LOG_DEBUG, "%d filters for job:",
643 cupsArrayCount(filters));
644 for (filter = (mime_filter_t *)cupsArrayFirst(filters);
645 filter;
646 filter = (mime_filter_t *)cupsArrayNext(filters))
647 cupsdLogJob(job, CUPSD_LOG_DEBUG, "%s (%s/%s to %s/%s, cost %d)",
648 filter->filter,
649 filter->src ? filter->src->super : "???",
650 filter->src ? filter->src->type : "???",
651 filter->dst ? filter->dst->super : "???",
652 filter->dst ? filter->dst->type : "???",
653 filter->cost);
654
655 if (!job->printer->remote)
656 {
657 for (filter = (mime_filter_t *)cupsArrayLast(filters);
658 filter && filter->dst;
659 filter = (mime_filter_t *)cupsArrayPrev(filters))
660 if (strcmp(filter->dst->super, "printer") ||
661 strcmp(filter->dst->type, job->printer->name))
662 break;
663
664 if (filter && filter->dst)
665 {
666 if ((ptr = strchr(filter->dst->type, '/')) != NULL)
667 snprintf(final_content_type, sizeof(final_content_type),
668 "FINAL_CONTENT_TYPE=%s", ptr + 1);
669 else
670 snprintf(final_content_type, sizeof(final_content_type),
671 "FINAL_CONTENT_TYPE=%s/%s", filter->dst->super,
672 filter->dst->type);
673 }
674 }
675
ef416fc2 676 /*
b9faaae1 677 * Remove NULL ("-") filters...
ef416fc2 678 */
679
b9faaae1
MS
680 for (filter = (mime_filter_t *)cupsArrayFirst(filters);
681 filter;
682 filter = (mime_filter_t *)cupsArrayNext(filters))
683 if (!strcmp(filter->filter, "-"))
684 cupsArrayRemove(filters, filter);
ef416fc2 685
b9faaae1
MS
686 if (cupsArrayCount(filters) == 0)
687 {
688 cupsArrayDelete(filters);
689 filters = NULL;
690 }
ef416fc2 691
b9faaae1
MS
692 /*
693 * If this printer has any pre-filters, insert the required pre-filter
694 * in the filters array...
695 */
ef416fc2 696
b9faaae1
MS
697 if (job->printer->prefiltertype && filters)
698 {
699 prefilters = cupsArrayNew(NULL, NULL);
700
701 for (filter = (mime_filter_t *)cupsArrayFirst(filters);
702 filter;
703 filter = (mime_filter_t *)cupsArrayNext(filters))
704 {
705 if ((prefilter = mimeFilterLookup(MimeDatabase, filter->src,
706 job->printer->prefiltertype)))
707 {
708 cupsArrayAdd(prefilters, prefilter);
709 job->cost += prefilter->cost;
710 }
ef416fc2 711
b9faaae1
MS
712 cupsArrayAdd(prefilters, filter);
713 }
e00b005a 714
b9faaae1
MS
715 cupsArrayDelete(filters);
716 filters = prefilters;
717 }
718 }
bc44d920 719
c168a833 720 /*
b9faaae1
MS
721 * Set a minimum cost of 100 for all jobs so that FilterLimit
722 * works with raw queues and other low-cost paths.
c168a833
MS
723 */
724
b9faaae1
MS
725 if (job->cost < 100)
726 job->cost = 100;
c168a833 727
745129be 728 /*
b9faaae1 729 * See if the filter cost is too high...
745129be
MS
730 */
731
b9faaae1
MS
732 if ((FilterLevel + job->cost) > FilterLimit && FilterLevel > 0 &&
733 FilterLimit > 0)
ef416fc2 734 {
735 /*
b9faaae1 736 * Don't print this job quite yet...
ef416fc2 737 */
738
b9faaae1 739 cupsArrayDelete(filters);
a74454a7 740
b9faaae1
MS
741 cupsdLogJob(job, CUPSD_LOG_INFO,
742 "Holding because filter limit has been reached.");
743 cupsdLogJob(job, CUPSD_LOG_DEBUG2,
744 "cupsdContinueJob: file=%d, cost=%d, level=%d, limit=%d",
745 job->current_file, job->cost, FilterLevel,
746 FilterLimit);
e07d4801
MS
747
748 job->pending_cost = job->cost;
749 job->cost = 0;
b9faaae1
MS
750 return;
751 }
a74454a7 752
b9faaae1 753 FilterLevel += job->cost;
a74454a7 754
b9faaae1
MS
755 /*
756 * Add decompression/raw filter as needed...
757 */
a74454a7 758
b9faaae1
MS
759 if ((!job->printer->raw && job->compressions[job->current_file]) ||
760 (!filters && !job->printer->remote &&
761 (job->num_files > 1 || !strncmp(job->printer->device_uri, "file:", 5))))
762 {
a74454a7 763 /*
b9faaae1 764 * Add gziptoany filter to the front of the list...
a74454a7 765 */
766
b9faaae1
MS
767 if (!filters)
768 filters = cupsArrayNew(NULL, NULL);
ef416fc2 769
b9faaae1
MS
770 if (!cupsArrayInsert(filters, &gziptoany_filter))
771 {
772 cupsdLogJob(job, CUPSD_LOG_DEBUG,
773 "Unable to add decompression filter - %s", strerror(errno));
ed486911 774
b9faaae1 775 cupsArrayDelete(filters);
ed486911 776
e07d4801 777 abort_message = "Stopping job because the scheduler ran out of memory.";
ed486911 778
e07d4801 779 goto abort_job;
b9faaae1
MS
780 }
781 }
ef416fc2 782
b9faaae1
MS
783 /*
784 * Add port monitor, if any...
785 */
ef416fc2 786
b9faaae1
MS
787 if (job->printer->port_monitor)
788 {
789 /*
790 * Add port monitor to the end of the list...
791 */
ef416fc2 792
b9faaae1
MS
793 if (!filters)
794 filters = cupsArrayNew(NULL, NULL);
ef416fc2 795
b9faaae1
MS
796 port_monitor.src = NULL;
797 port_monitor.dst = NULL;
798 port_monitor.cost = 0;
ef416fc2 799
b9faaae1
MS
800 snprintf(port_monitor.filter, sizeof(port_monitor.filter),
801 "%s/monitor/%s", ServerBin, job->printer->port_monitor);
ef416fc2 802
b9faaae1
MS
803 if (!cupsArrayAdd(filters, &port_monitor))
804 {
805 cupsdLogJob(job, CUPSD_LOG_DEBUG,
806 "Unable to add port monitor - %s", strerror(errno));
ef416fc2 807
e07d4801 808 abort_message = "Stopping job because the scheduler ran out of memory.";
07725fee 809
e07d4801 810 goto abort_job;
b9faaae1
MS
811 }
812 }
ef416fc2 813
b9faaae1
MS
814 /*
815 * Make sure we don't go over the "MAX_FILTERS" limit...
816 */
ef416fc2 817
b9faaae1
MS
818 if (cupsArrayCount(filters) > MAX_FILTERS)
819 {
820 cupsdLogJob(job, CUPSD_LOG_DEBUG,
12f89d24 821 "Too many filters (%d > %d), unable to print.",
b9faaae1 822 cupsArrayCount(filters), MAX_FILTERS);
ef416fc2 823
e07d4801 824 abort_message = "Aborting job because it needs too many filters to print.";
f11a948a
MS
825 abort_state = IPP_JOB_ABORTED;
826
12f89d24
MS
827 ippSetString(job->attrs, &job->reasons, 0, "document-unprintable-error");
828
e07d4801 829 goto abort_job;
b9faaae1 830 }
07725fee 831
b9faaae1
MS
832 /*
833 * Determine if we are printing a banner page or not...
834 */
07725fee 835
b9faaae1
MS
836 if (job->job_sheets == NULL)
837 {
838 cupsdLogJob(job, CUPSD_LOG_DEBUG, "No job-sheets attribute.");
839 if ((job->job_sheets =
840 ippFindAttribute(job->attrs, "job-sheets", IPP_TAG_ZERO)) != NULL)
841 cupsdLogJob(job, CUPSD_LOG_DEBUG,
12f89d24 842 "... but someone added one without setting job_sheets.");
b9faaae1
MS
843 }
844 else if (job->job_sheets->num_values == 1)
845 cupsdLogJob(job, CUPSD_LOG_DEBUG, "job-sheets=%s",
846 job->job_sheets->values[0].string.text);
847 else
848 cupsdLogJob(job, CUPSD_LOG_DEBUG, "job-sheets=%s,%s",
849 job->job_sheets->values[0].string.text,
850 job->job_sheets->values[1].string.text);
07725fee 851
a2326b5b 852 if (job->printer->type & CUPS_PRINTER_REMOTE)
b9faaae1
MS
853 banner_page = 0;
854 else if (job->job_sheets == NULL)
855 banner_page = 0;
88f9aafc 856 else if (_cups_strcasecmp(job->job_sheets->values[0].string.text, "none") != 0 &&
b9faaae1
MS
857 job->current_file == 0)
858 banner_page = 1;
859 else if (job->job_sheets->num_values > 1 &&
88f9aafc 860 _cups_strcasecmp(job->job_sheets->values[1].string.text, "none") != 0 &&
b9faaae1
MS
861 job->current_file == (job->num_files - 1))
862 banner_page = 1;
863 else
864 banner_page = 0;
07725fee 865
b9faaae1
MS
866 if ((options = get_options(job, banner_page, copies, sizeof(copies), title,
867 sizeof(title))) == NULL)
868 {
e07d4801 869 abort_message = "Stopping job because the scheduler ran out of memory.";
ef416fc2 870
e07d4801 871 goto abort_job;
b9faaae1 872 }
ef416fc2 873
b9faaae1
MS
874 /*
875 * Build the command-line arguments for the filters. Each filter
876 * has 6 or 7 arguments:
877 *
878 * argv[0] = printer
879 * argv[1] = job ID
880 * argv[2] = username
881 * argv[3] = title
882 * argv[4] = # copies
883 * argv[5] = options
884 * argv[6] = filename (optional; normally stdin)
885 *
886 * This allows legacy printer drivers that use the old System V
887 * printing interface to be used by CUPS.
888 *
889 * For remote jobs, we send all of the files in the argument list.
890 */
07725fee 891
b9faaae1
MS
892 if (job->printer->remote)
893 argv = calloc(7 + job->num_files, sizeof(char *));
894 else
895 argv = calloc(8, sizeof(char *));
07725fee 896
b9faaae1
MS
897 if (!argv)
898 {
899 cupsdLogMessage(CUPSD_LOG_DEBUG, "Unable to allocate argument array - %s",
900 strerror(errno));
07725fee 901
e07d4801
MS
902 abort_message = "Stopping job because the scheduler ran out of memory.";
903
904 goto abort_job;
b9faaae1 905 }
ef416fc2 906
b9faaae1 907 sprintf(jobid, "%d", job->id);
ef416fc2 908
b9faaae1
MS
909 argv[0] = job->printer->name;
910 argv[1] = jobid;
911 argv[2] = job->username;
912 argv[3] = title;
913 argv[4] = copies;
914 argv[5] = options;
ef416fc2 915
b9faaae1 916 if (job->printer->remote && job->num_files > 1)
ef416fc2 917 {
b9faaae1
MS
918 for (i = 0; i < job->num_files; i ++)
919 {
920 snprintf(filename, sizeof(filename), "%s/d%05d-%03d", RequestRoot,
921 job->id, i + 1);
922 argv[6 + i] = strdup(filename);
923 }
ef416fc2 924 }
925 else
926 {
b9faaae1
MS
927 snprintf(filename, sizeof(filename), "%s/d%05d-%03d", RequestRoot,
928 job->id, job->current_file + 1);
929 argv[6] = filename;
ef416fc2 930 }
ef416fc2 931
b9faaae1
MS
932 for (i = 0; argv[i]; i ++)
933 cupsdLogJob(job, CUPSD_LOG_DEBUG, "argv[%d]=\"%s\"", i, argv[i]);
ef416fc2 934
b9faaae1
MS
935 /*
936 * Create environment variable strings for the filters...
937 */
bd7854cb 938
b9faaae1
MS
939 attr = ippFindAttribute(job->attrs, "attributes-natural-language",
940 IPP_TAG_LANGUAGE);
ef416fc2 941
b9faaae1 942#ifdef __APPLE__
5a9febac 943 strlcpy(apple_language, "APPLE_LANGUAGE=", sizeof(apple_language));
b9faaae1
MS
944 _cupsAppleLanguage(attr->values[0].string.text,
945 apple_language + 15, sizeof(apple_language) - 15);
946#endif /* __APPLE__ */
ef416fc2 947
b9faaae1 948 switch (strlen(attr->values[0].string.text))
ef416fc2 949 {
b9faaae1
MS
950 default :
951 /*
952 * This is an unknown or badly formatted language code; use
953 * the POSIX locale...
954 */
ef416fc2 955
5a9febac 956 strlcpy(lang, "LANG=C", sizeof(lang));
b9faaae1 957 break;
ef416fc2 958
b9faaae1
MS
959 case 2 :
960 /*
961 * Just the language code (ll)...
962 */
ef416fc2 963
1340db2d 964 snprintf(lang, sizeof(lang), "LANG=%s.UTF-8",
b9faaae1
MS
965 attr->values[0].string.text);
966 break;
ef416fc2 967
b9faaae1
MS
968 case 5 :
969 /*
970 * Language and country code (ll-cc)...
971 */
ef416fc2 972
1340db2d 973 snprintf(lang, sizeof(lang), "LANG=%c%c_%c%c.UTF-8",
b9faaae1
MS
974 attr->values[0].string.text[0],
975 attr->values[0].string.text[1],
976 toupper(attr->values[0].string.text[3] & 255),
977 toupper(attr->values[0].string.text[4] & 255));
978 break;
979 }
ef416fc2 980
b9faaae1
MS
981 if ((attr = ippFindAttribute(job->attrs, "document-format",
982 IPP_TAG_MIMETYPE)) != NULL &&
983 (ptr = strstr(attr->values[0].string.text, "charset=")) != NULL)
984 snprintf(charset, sizeof(charset), "CHARSET=%s", ptr + 8);
985 else
986 strlcpy(charset, "CHARSET=utf-8", sizeof(charset));
ef416fc2 987
b9faaae1
MS
988 snprintf(content_type, sizeof(content_type), "CONTENT_TYPE=%s/%s",
989 job->filetypes[job->current_file]->super,
990 job->filetypes[job->current_file]->type);
991 snprintf(device_uri, sizeof(device_uri), "DEVICE_URI=%s",
992 job->printer->device_uri);
993 snprintf(ppd, sizeof(ppd), "PPD=%s/ppd/%s.ppd", ServerRoot,
994 job->printer->name);
995 snprintf(printer_info, sizeof(printer_name), "PRINTER_INFO=%s",
996 job->printer->info ? job->printer->info : "");
997 snprintf(printer_location, sizeof(printer_name), "PRINTER_LOCATION=%s",
998 job->printer->location ? job->printer->location : "");
999 snprintf(printer_name, sizeof(printer_name), "PRINTER=%s", job->printer->name);
eac3a0a0
MS
1000 if (job->printer->num_reasons > 0)
1001 {
1002 char *psrptr; /* Pointer into PRINTER_STATE_REASONS */
1003 size_t psrlen; /* Size of PRINTER_STATE_REASONS */
1004
1005 for (psrlen = 22, i = 0; i < job->printer->num_reasons; i ++)
1006 psrlen += strlen(job->printer->reasons[i]) + 1;
1007
1008 if ((printer_state_reasons = malloc(psrlen)) != NULL)
1009 {
1010 /*
1011 * All of these strcpy's are safe because we allocated the psr string...
1012 */
1013
5a9febac 1014 strlcpy(printer_state_reasons, "PRINTER_STATE_REASONS=", psrlen);
eac3a0a0
MS
1015 for (psrptr = printer_state_reasons + 22, i = 0;
1016 i < job->printer->num_reasons;
1017 i ++)
1018 {
1019 if (i)
1020 *psrptr++ = ',';
5a9febac
MS
1021 strlcpy(psrptr, job->printer->reasons[i],
1022 psrlen - (psrptr - printer_state_reasons));
eac3a0a0
MS
1023 psrptr += strlen(psrptr);
1024 }
1025 }
1026 }
b9faaae1 1027 snprintf(rip_max_cache, sizeof(rip_max_cache), "RIP_MAX_CACHE=%s", RIPCache);
ef416fc2 1028
22c9029b
MS
1029 if (job->printer->num_auth_info_required == 1)
1030 snprintf(auth_info_required, sizeof(auth_info_required),
1031 "AUTH_INFO_REQUIRED=%s",
1032 job->printer->auth_info_required[0]);
1033 else if (job->printer->num_auth_info_required == 2)
1034 snprintf(auth_info_required, sizeof(auth_info_required),
1035 "AUTH_INFO_REQUIRED=%s,%s",
1036 job->printer->auth_info_required[0],
1037 job->printer->auth_info_required[1]);
1038 else if (job->printer->num_auth_info_required == 3)
1039 snprintf(auth_info_required, sizeof(auth_info_required),
1040 "AUTH_INFO_REQUIRED=%s,%s,%s",
1041 job->printer->auth_info_required[0],
1042 job->printer->auth_info_required[1],
1043 job->printer->auth_info_required[2]);
1044 else if (job->printer->num_auth_info_required == 4)
1045 snprintf(auth_info_required, sizeof(auth_info_required),
1046 "AUTH_INFO_REQUIRED=%s,%s,%s,%s",
1047 job->printer->auth_info_required[0],
1048 job->printer->auth_info_required[1],
1049 job->printer->auth_info_required[2],
1050 job->printer->auth_info_required[3]);
1051 else
1052 strlcpy(auth_info_required, "AUTH_INFO_REQUIRED=none",
1053 sizeof(auth_info_required));
1054
b9faaae1 1055 envc = cupsdLoadEnv(envp, (int)(sizeof(envp) / sizeof(envp[0])));
ef416fc2 1056
b9faaae1
MS
1057 envp[envc ++] = charset;
1058 envp[envc ++] = lang;
1059#ifdef __APPLE__
1060 envp[envc ++] = apple_language;
1061#endif /* __APPLE__ */
1062 envp[envc ++] = ppd;
1063 envp[envc ++] = rip_max_cache;
1064 envp[envc ++] = content_type;
1065 envp[envc ++] = device_uri;
1066 envp[envc ++] = printer_info;
1067 envp[envc ++] = printer_location;
1068 envp[envc ++] = printer_name;
eac3a0a0
MS
1069 envp[envc ++] = printer_state_reasons ? printer_state_reasons :
1070 "PRINTER_STATE_REASONS=none";
b9faaae1
MS
1071 envp[envc ++] = banner_page ? "CUPS_FILETYPE=job-sheet" :
1072 "CUPS_FILETYPE=document";
ef416fc2 1073
6961465f
MS
1074 if (final_content_type[0])
1075 envp[envc ++] = final_content_type;
ef416fc2 1076
b9faaae1
MS
1077 if (Classification && !banner_page)
1078 {
1079 if ((attr = ippFindAttribute(job->attrs, "job-sheets",
1080 IPP_TAG_NAME)) == NULL)
1081 snprintf(classification, sizeof(classification), "CLASSIFICATION=%s",
1082 Classification);
1083 else if (attr->num_values > 1 &&
1084 strcmp(attr->values[1].string.text, "none") != 0)
1085 snprintf(classification, sizeof(classification), "CLASSIFICATION=%s",
1086 attr->values[1].string.text);
1087 else
1088 snprintf(classification, sizeof(classification), "CLASSIFICATION=%s",
1089 attr->values[0].string.text);
ef416fc2 1090
b9faaae1
MS
1091 envp[envc ++] = classification;
1092 }
ef416fc2 1093
a2326b5b 1094 if (job->dtype & CUPS_PRINTER_CLASS)
b9faaae1
MS
1095 {
1096 snprintf(class_name, sizeof(class_name), "CLASS=%s", job->dest);
1097 envp[envc ++] = class_name;
1098 }
ef416fc2 1099
22c9029b 1100 envp[envc ++] = auth_info_required;
88f9aafc
MS
1101
1102 for (i = 0;
1103 i < (int)(sizeof(job->auth_env) / sizeof(job->auth_env[0]));
1104 i ++)
1105 if (job->auth_env[i])
1106 envp[envc ++] = job->auth_env[i];
1107 else
1108 break;
1109
07ed0e9a
MS
1110 if (job->auth_uid)
1111 envp[envc ++] = job->auth_uid;
ef416fc2 1112
b9faaae1 1113 envp[envc] = NULL;
ef416fc2 1114
b9faaae1
MS
1115 for (i = 0; i < envc; i ++)
1116 if (!strncmp(envp[i], "AUTH_", 5))
1117 cupsdLogJob(job, CUPSD_LOG_DEBUG, "envp[%d]=\"AUTH_%c****\"", i,
1118 envp[i][5]);
1119 else if (strncmp(envp[i], "DEVICE_URI=", 11))
1120 cupsdLogJob(job, CUPSD_LOG_DEBUG, "envp[%d]=\"%s\"", i, envp[i]);
1121 else
1122 cupsdLogJob(job, CUPSD_LOG_DEBUG, "envp[%d]=\"DEVICE_URI=%s\"", i,
1123 job->printer->sanitized_device_uri);
ef416fc2 1124
b9faaae1
MS
1125 if (job->printer->remote)
1126 job->current_file = job->num_files;
1127 else
1128 job->current_file ++;
ef416fc2 1129
b9faaae1
MS
1130 /*
1131 * Now create processes for all of the filters...
1132 */
ef416fc2 1133
b9faaae1
MS
1134 for (i = 0, slot = 0, filter = (mime_filter_t *)cupsArrayFirst(filters);
1135 filter;
1136 i ++, filter = (mime_filter_t *)cupsArrayNext(filters))
1137 {
1138 if (filter->filter[0] != '/')
1139 snprintf(command, sizeof(command), "%s/filter/%s", ServerBin,
1140 filter->filter);
1141 else
1142 strlcpy(command, filter->filter, sizeof(command));
ef416fc2 1143
b9faaae1
MS
1144 if (i < (cupsArrayCount(filters) - 1))
1145 {
1146 if (cupsdOpenPipe(filterfds[slot]))
1147 {
1148 abort_message = "Stopping job because the scheduler could not create "
1149 "the filter pipes.";
ef416fc2 1150
b9faaae1
MS
1151 goto abort_job;
1152 }
1153 }
1154 else
1155 {
82f97232
MS
1156 if (job->current_file == 1 ||
1157 (job->printer->pc && job->printer->pc->single_file))
b9faaae1
MS
1158 {
1159 if (strncmp(job->printer->device_uri, "file:", 5) != 0)
1160 {
1161 if (cupsdOpenPipe(job->print_pipes))
1162 {
1163 abort_message = "Stopping job because the scheduler could not "
1164 "create the backend pipes.";
ef416fc2 1165
b9faaae1
MS
1166 goto abort_job;
1167 }
1168 }
1169 else
1170 {
1171 job->print_pipes[0] = -1;
1172 if (!strcmp(job->printer->device_uri, "file:/dev/null") ||
1173 !strcmp(job->printer->device_uri, "file:///dev/null"))
1174 job->print_pipes[1] = -1;
1175 else
1176 {
1177 if (!strncmp(job->printer->device_uri, "file:/dev/", 10))
1178 job->print_pipes[1] = open(job->printer->device_uri + 5,
1179 O_WRONLY | O_EXCL);
1180 else if (!strncmp(job->printer->device_uri, "file:///dev/", 12))
1181 job->print_pipes[1] = open(job->printer->device_uri + 7,
1182 O_WRONLY | O_EXCL);
1183 else if (!strncmp(job->printer->device_uri, "file:///", 8))
1184 job->print_pipes[1] = open(job->printer->device_uri + 7,
1185 O_WRONLY | O_CREAT | O_TRUNC, 0600);
1186 else
1187 job->print_pipes[1] = open(job->printer->device_uri + 5,
1188 O_WRONLY | O_CREAT | O_TRUNC, 0600);
ef416fc2 1189
b9faaae1
MS
1190 if (job->print_pipes[1] < 0)
1191 {
1192 abort_message = "Stopping job because the scheduler could not "
1193 "open the output file.";
bd7854cb 1194
b9faaae1
MS
1195 goto abort_job;
1196 }
ef416fc2 1197
b9faaae1
MS
1198 fcntl(job->print_pipes[1], F_SETFD,
1199 fcntl(job->print_pipes[1], F_GETFD) | FD_CLOEXEC);
1200 }
1201 }
1202 }
ef416fc2 1203
b9faaae1
MS
1204 filterfds[slot][0] = job->print_pipes[0];
1205 filterfds[slot][1] = job->print_pipes[1];
1206 }
ef416fc2 1207
b9faaae1
MS
1208 pid = cupsdStartProcess(command, argv, envp, filterfds[!slot][0],
1209 filterfds[slot][1], job->status_pipes[1],
1210 job->back_pipes[0], job->side_pipes[0], 0,
38e73f87 1211 job->profile, job, job->filters + i);
ef416fc2 1212
b9faaae1 1213 cupsdClosePipe(filterfds[!slot]);
ef416fc2 1214
b9faaae1
MS
1215 if (pid == 0)
1216 {
1217 cupsdLogJob(job, CUPSD_LOG_ERROR, "Unable to start filter \"%s\" - %s.",
1218 filter->filter, strerror(errno));
3dfe78b3 1219
f11a948a 1220 abort_message = "Stopping job because the scheduler could not execute a "
b9faaae1 1221 "filter.";
ef416fc2 1222
b9faaae1
MS
1223 goto abort_job;
1224 }
ef416fc2 1225
b9faaae1
MS
1226 cupsdLogJob(job, CUPSD_LOG_INFO, "Started filter %s (PID %d)", command,
1227 pid);
bd7854cb 1228
b9faaae1
MS
1229 argv[6] = NULL;
1230 slot = !slot;
bd7854cb 1231 }
1232
b9faaae1
MS
1233 cupsArrayDelete(filters);
1234 filters = NULL;
ef416fc2 1235
1236 /*
b9faaae1 1237 * Finally, pipe the final output into a backend process if needed...
ef416fc2 1238 */
1239
b9faaae1 1240 if (strncmp(job->printer->device_uri, "file:", 5) != 0)
bd7854cb 1241 {
82f97232
MS
1242 if (job->current_file == 1 || job->printer->remote ||
1243 (job->printer->pc && job->printer->pc->single_file))
b9faaae1
MS
1244 {
1245 sscanf(job->printer->device_uri, "%254[^:]", scheme);
1246 snprintf(command, sizeof(command), "%s/backend/%s", ServerBin, scheme);
ef416fc2 1247
b9faaae1
MS
1248 /*
1249 * See if the backend needs to run as root...
1250 */
ef416fc2 1251
b9faaae1
MS
1252 if (RunUser)
1253 backroot = 0;
1254 else if (stat(command, &backinfo))
1255 backroot = 0;
1256 else
1257 backroot = !(backinfo.st_mode & (S_IRWXG | S_IRWXO));
ef416fc2 1258
b9faaae1 1259 argv[0] = job->printer->sanitized_device_uri;
ef416fc2 1260
b9faaae1
MS
1261 filterfds[slot][0] = -1;
1262 filterfds[slot][1] = -1;
ef416fc2 1263
b9faaae1
MS
1264 pid = cupsdStartProcess(command, argv, envp, filterfds[!slot][0],
1265 filterfds[slot][1], job->status_pipes[1],
1266 job->back_pipes[1], job->side_pipes[1],
38e73f87 1267 backroot, job->profile, job, &(job->backend));
ef416fc2 1268
b9faaae1
MS
1269 if (pid == 0)
1270 {
1271 abort_message = "Stopping job because the sheduler could not execute "
1272 "the backend.";
1273
1274 goto abort_job;
1275 }
1276 else
1277 {
1278 cupsdLogJob(job, CUPSD_LOG_INFO, "Started backend %s (PID %d)",
1279 command, pid);
1280 }
1281 }
ef416fc2 1282
82f97232
MS
1283 if (job->current_file == job->num_files ||
1284 (job->printer->pc && job->printer->pc->single_file))
1285 cupsdClosePipe(job->print_pipes);
1286
b9faaae1
MS
1287 if (job->current_file == job->num_files)
1288 {
b9faaae1
MS
1289 cupsdClosePipe(job->back_pipes);
1290 cupsdClosePipe(job->side_pipes);
ef416fc2 1291
b9faaae1
MS
1292 close(job->status_pipes[1]);
1293 job->status_pipes[1] = -1;
1294 }
1295 }
1296 else
bd7854cb 1297 {
b9faaae1
MS
1298 filterfds[slot][0] = -1;
1299 filterfds[slot][1] = -1;
ef416fc2 1300
82f97232
MS
1301 if (job->current_file == job->num_files ||
1302 (job->printer->pc && job->printer->pc->single_file))
b9faaae1
MS
1303 cupsdClosePipe(job->print_pipes);
1304
82f97232
MS
1305 if (job->current_file == job->num_files)
1306 {
b9faaae1
MS
1307 close(job->status_pipes[1]);
1308 job->status_pipes[1] = -1;
1309 }
bd7854cb 1310 }
ef416fc2 1311
b9faaae1
MS
1312 cupsdClosePipe(filterfds[slot]);
1313
1314 if (job->printer->remote && job->num_files > 1)
bd7854cb 1315 {
b9faaae1
MS
1316 for (i = 0; i < job->num_files; i ++)
1317 free(argv[i + 6]);
bd7854cb 1318 }
ef416fc2 1319
b9faaae1 1320 free(argv);
eac3a0a0
MS
1321 if (printer_state_reasons)
1322 free(printer_state_reasons);
ef416fc2 1323
b9faaae1
MS
1324 cupsdAddSelect(job->status_buffer->fd, (cupsd_selfunc_t)update_job, NULL,
1325 job);
ef416fc2 1326
b9faaae1
MS
1327 cupsdAddEvent(CUPSD_EVENT_JOB_STATE, job->printer, job, "Job #%d started.",
1328 job->id);
ef416fc2 1329
b9faaae1 1330 return;
ef416fc2 1331
ef416fc2 1332
bd7854cb 1333 /*
b9faaae1
MS
1334 * If we get here, we need to abort the current job and close out all
1335 * files and pipes...
bd7854cb 1336 */
ef416fc2 1337
b9faaae1 1338 abort_job:
8b450588 1339
e07d4801
MS
1340 FilterLevel -= job->cost;
1341 job->cost = 0;
1342
b9faaae1
MS
1343 for (slot = 0; slot < 2; slot ++)
1344 cupsdClosePipe(filterfds[slot]);
1345
e07d4801
MS
1346 cupsArrayDelete(filters);
1347
1348 if (argv)
1349 {
1350 if (job->printer->remote && job->num_files > 1)
1351 {
1352 for (i = 0; i < job->num_files; i ++)
1353 free(argv[i + 6]);
1354 }
1355
1356 free(argv);
1357 }
1358
eac3a0a0
MS
1359 if (printer_state_reasons)
1360 free(printer_state_reasons);
1361
e07d4801
MS
1362 cupsdClosePipe(job->print_pipes);
1363 cupsdClosePipe(job->back_pipes);
1364 cupsdClosePipe(job->side_pipes);
1365
1366 cupsdRemoveSelect(job->status_pipes[0]);
b9faaae1
MS
1367 cupsdClosePipe(job->status_pipes);
1368 cupsdStatBufDelete(job->status_buffer);
1369 job->status_buffer = NULL;
1370
e07d4801
MS
1371 /*
1372 * Update the printer and job state.
1373 */
b9faaae1 1374
e07d4801
MS
1375 cupsdSetJobState(job, abort_state, CUPSD_JOB_DEFAULT, "%s", abort_message);
1376 cupsdSetPrinterState(job->printer, IPP_PRINTER_IDLE, 0);
1377 update_job_attrs(job, 0);
ef416fc2 1378
178cb736
MS
1379 if (job->history)
1380 free_job_history(job);
1381
e07d4801 1382 cupsArrayRemove(PrintingJobs, job);
ef416fc2 1383
e07d4801
MS
1384 /*
1385 * Clear the printer <-> job association...
1386 */
1387
1388 job->printer->job = NULL;
1389 job->printer = NULL;
b9faaae1 1390}
bd7854cb 1391
ef416fc2 1392
b9faaae1
MS
1393/*
1394 * 'cupsdDeleteJob()' - Free all memory used by a job.
1395 */
ef416fc2 1396
b9faaae1
MS
1397void
1398cupsdDeleteJob(cupsd_job_t *job, /* I - Job */
1399 cupsd_jobaction_t action)/* I - Action */
1400{
88f9aafc 1401 int i; /* Looping var */
22c9029b
MS
1402
1403
b9faaae1 1404 if (job->printer)
ef55b745 1405 finalize_job(job, 1);
ef416fc2 1406
b9faaae1 1407 if (action == CUPSD_JOB_PURGE)
82cc1f9a 1408 remove_job_history(job);
ef416fc2 1409
b9faaae1
MS
1410 cupsdClearString(&job->username);
1411 cupsdClearString(&job->dest);
88f9aafc
MS
1412 for (i = 0;
1413 i < (int)(sizeof(job->auth_env) / sizeof(job->auth_env[0]));
1414 i ++)
1415 cupsdClearString(job->auth_env + i);
07ed0e9a 1416 cupsdClearString(&job->auth_uid);
09a101d6 1417
82cc1f9a
MS
1418 if (action == CUPSD_JOB_PURGE)
1419 remove_job_files(job);
1420 else if (job->num_files > 0)
b9faaae1
MS
1421 {
1422 free(job->compressions);
1423 free(job->filetypes);
09a101d6 1424
82cc1f9a 1425 job->num_files = 0;
09a101d6 1426 }
ed6e7faf 1427
178cb736
MS
1428 if (job->history)
1429 free_job_history(job);
1430
b9faaae1 1431 unload_job(job);
dfd5680b 1432
b9faaae1
MS
1433 cupsArrayRemove(Jobs, job);
1434 cupsArrayRemove(ActiveJobs, job);
1435 cupsArrayRemove(PrintingJobs, job);
dfd5680b 1436
b9faaae1 1437 free(job);
ef416fc2 1438}
1439
1440
1441/*
b9faaae1 1442 * 'cupsdFreeAllJobs()' - Free all jobs from memory.
ef416fc2 1443 */
1444
1445void
b9faaae1 1446cupsdFreeAllJobs(void)
ef416fc2 1447{
b9faaae1 1448 cupsd_job_t *job; /* Current job */
ef416fc2 1449
ef416fc2 1450
b9faaae1 1451 if (!Jobs)
ef416fc2 1452 return;
1453
b9faaae1 1454 cupsdHoldSignals();
ef416fc2 1455
238c3832 1456 cupsdStopAllJobs(CUPSD_JOB_FORCE, 0);
b9faaae1 1457 cupsdSaveAllJobs();
e53920b9 1458
b9faaae1
MS
1459 for (job = (cupsd_job_t *)cupsArrayFirst(Jobs);
1460 job;
1461 job = (cupsd_job_t *)cupsArrayNext(Jobs))
1462 cupsdDeleteJob(job, CUPSD_JOB_DEFAULT);
ef416fc2 1463
b9faaae1
MS
1464 cupsdReleaseSignals();
1465}
ef416fc2 1466
bd7854cb 1467
b9faaae1
MS
1468/*
1469 * 'cupsdFindJob()' - Find the specified job.
1470 */
e53920b9 1471
b9faaae1
MS
1472cupsd_job_t * /* O - Job data */
1473cupsdFindJob(int id) /* I - Job ID */
1474{
1475 cupsd_job_t key; /* Search key */
ef416fc2 1476
ef416fc2 1477
b9faaae1 1478 key.id = id;
e53920b9 1479
b9faaae1 1480 return ((cupsd_job_t *)cupsArrayFind(Jobs, &key));
ef416fc2 1481}
1482
1483
1484/*
b9faaae1
MS
1485 * 'cupsdGetPrinterJobCount()' - Get the number of pending, processing,
1486 * or held jobs in a printer or class.
ef416fc2 1487 */
1488
b9faaae1
MS
1489int /* O - Job count */
1490cupsdGetPrinterJobCount(
1491 const char *dest) /* I - Printer or class name */
ef416fc2 1492{
b9faaae1
MS
1493 int count; /* Job count */
1494 cupsd_job_t *job; /* Current job */
005dd1eb 1495
005dd1eb 1496
b9faaae1
MS
1497 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs), count = 0;
1498 job;
1499 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
88f9aafc 1500 if (job->dest && !_cups_strcasecmp(job->dest, dest))
b9faaae1 1501 count ++;
ef416fc2 1502
b9faaae1 1503 return (count);
ef416fc2 1504}
1505
1506
1507/*
b9faaae1
MS
1508 * 'cupsdGetUserJobCount()' - Get the number of pending, processing,
1509 * or held jobs for a user.
ef416fc2 1510 */
1511
b9faaae1
MS
1512int /* O - Job count */
1513cupsdGetUserJobCount(
1514 const char *username) /* I - Username */
ef416fc2 1515{
b9faaae1
MS
1516 int count; /* Job count */
1517 cupsd_job_t *job; /* Current job */
07725fee 1518
07725fee 1519
b9faaae1
MS
1520 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs), count = 0;
1521 job;
1522 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
88f9aafc 1523 if (!_cups_strcasecmp(job->username, username))
b9faaae1 1524 count ++;
07725fee 1525
b9faaae1 1526 return (count);
ef416fc2 1527}
1528
1529
1530/*
b9faaae1 1531 * 'cupsdLoadAllJobs()' - Load all jobs from disk.
ef416fc2 1532 */
1533
1534void
b9faaae1 1535cupsdLoadAllJobs(void)
bd7854cb 1536{
b9faaae1
MS
1537 char filename[1024]; /* Full filename of job.cache file */
1538 struct stat fileinfo, /* Information on job.cache file */
1539 dirinfo; /* Information on RequestRoot dir */
bd7854cb 1540
bd7854cb 1541
bd7854cb 1542
1543 /*
b9faaae1 1544 * Create the job arrays as needed...
bd7854cb 1545 */
1546
b9faaae1
MS
1547 if (!Jobs)
1548 Jobs = cupsArrayNew(compare_jobs, NULL);
1549
1550 if (!ActiveJobs)
1551 ActiveJobs = cupsArrayNew(compare_active_jobs, NULL);
1552
1553 if (!PrintingJobs)
1554 PrintingJobs = cupsArrayNew(compare_jobs, NULL);
bd7854cb 1555
1556 /*
b9faaae1 1557 * See whether the job.cache file is older than the RequestRoot directory...
bd7854cb 1558 */
1559
b9faaae1 1560 snprintf(filename, sizeof(filename), "%s/job.cache", CacheDir);
bd7854cb 1561
b9faaae1
MS
1562 if (stat(filename, &fileinfo))
1563 {
1564 fileinfo.st_mtime = 0;
1565
1566 if (errno != ENOENT)
1567 cupsdLogMessage(CUPSD_LOG_ERROR,
1568 "Unable to get file information for \"%s\" - %s",
1569 filename, strerror(errno));
1570 }
1571
1572 if (stat(RequestRoot, &dirinfo))
1573 {
1574 dirinfo.st_mtime = 0;
1575
1576 if (errno != ENOENT)
1577 cupsdLogMessage(CUPSD_LOG_ERROR,
1578 "Unable to get directory information for \"%s\" - %s",
1579 RequestRoot, strerror(errno));
1580 }
bd7854cb 1581
1582 /*
b9faaae1 1583 * Load the most recent source for job data...
bd7854cb 1584 */
1585
b9faaae1 1586 if (dirinfo.st_mtime > fileinfo.st_mtime)
bd7854cb 1587 {
b9faaae1
MS
1588 load_request_root();
1589
1590 load_next_job_id(filename);
bd7854cb 1591 }
b9faaae1
MS
1592 else
1593 load_job_cache(filename);
bd7854cb 1594
b9faaae1
MS
1595 /*
1596 * Clean out old jobs as needed...
1597 */
1598
1599 if (MaxJobs > 0 && cupsArrayCount(Jobs) >= MaxJobs)
1600 cupsdCleanJobs();
bd7854cb 1601}
1602
1603
1604/*
b9faaae1 1605 * 'cupsdLoadJob()' - Load a single job.
bd7854cb 1606 */
1607
b9faaae1
MS
1608int /* O - 1 on success, 0 on failure */
1609cupsdLoadJob(cupsd_job_t *job) /* I - Job */
ef416fc2 1610{
88f9aafc 1611 int i; /* Looping var */
b9faaae1
MS
1612 char jobfile[1024]; /* Job filename */
1613 cups_file_t *fp; /* Job file */
1614 int fileid; /* Current file ID */
1615 ipp_attribute_t *attr; /* Job attribute */
1616 const char *dest; /* Destination name */
1617 cupsd_printer_t *destptr; /* Pointer to destination */
1618 mime_type_t **filetypes; /* New filetypes array */
1619 int *compressions; /* New compressions array */
ef416fc2 1620
1621
b9faaae1
MS
1622 if (job->attrs)
1623 {
1624 if (job->state_value > IPP_JOB_STOPPED)
1625 job->access_time = time(NULL);
bd7854cb 1626
b9faaae1
MS
1627 return (1);
1628 }
ef416fc2 1629
b9faaae1 1630 if ((job->attrs = ippNew()) == NULL)
ef416fc2 1631 {
12f89d24 1632 cupsdLogJob(job, CUPSD_LOG_ERROR, "Ran out of memory for job attributes.");
b9faaae1 1633 return (0);
ef416fc2 1634 }
1635
b9faaae1
MS
1636 /*
1637 * Load job attributes...
1638 */
ef416fc2 1639
b9faaae1 1640 cupsdLogMessage(CUPSD_LOG_DEBUG, "[Job %d] Loading attributes...", job->id);
bd7854cb 1641
b9faaae1 1642 snprintf(jobfile, sizeof(jobfile), "%s/c%05d", RequestRoot, job->id);
82cc1f9a
MS
1643 if ((fp = cupsdOpenConfFile(jobfile)) == NULL)
1644 goto error;
ef416fc2 1645
b9faaae1
MS
1646 if (ippReadIO(fp, (ipp_iocb_t)cupsFileRead, 1, NULL, job->attrs) != IPP_DATA)
1647 {
1648 cupsdLogMessage(CUPSD_LOG_ERROR,
321d8d57 1649 "[Job %d] Unable to read job control file \"%s\".", job->id,
b9faaae1
MS
1650 jobfile);
1651 cupsFileClose(fp);
1652 goto error;
1653 }
ef416fc2 1654
b9faaae1 1655 cupsFileClose(fp);
ef416fc2 1656
b9faaae1
MS
1657 /*
1658 * Copy attribute data to the job object...
1659 */
ef416fc2 1660
b9faaae1 1661 if (!ippFindAttribute(job->attrs, "time-at-creation", IPP_TAG_INTEGER))
ef416fc2 1662 {
b9faaae1
MS
1663 cupsdLogMessage(CUPSD_LOG_ERROR,
1664 "[Job %d] Missing or bad time-at-creation attribute in "
12f89d24 1665 "control file.", job->id);
b9faaae1 1666 goto error;
ef416fc2 1667 }
b9faaae1
MS
1668
1669 if ((job->state = ippFindAttribute(job->attrs, "job-state",
1670 IPP_TAG_ENUM)) == NULL)
ef416fc2 1671 {
b9faaae1
MS
1672 cupsdLogMessage(CUPSD_LOG_ERROR,
1673 "[Job %d] Missing or bad job-state attribute in control "
12f89d24 1674 "file.", job->id);
b9faaae1
MS
1675 goto error;
1676 }
ef416fc2 1677
82cc1f9a
MS
1678 job->state_value = (ipp_jstate_t)job->state->values[0].integer;
1679 job->file_time = 0;
1680 job->history_time = 0;
1681
1682 if (job->state_value >= IPP_JOB_CANCELED &&
1683 (attr = ippFindAttribute(job->attrs, "time-at-completed",
1684 IPP_TAG_INTEGER)) != NULL)
1685 {
1686 if (JobHistory < INT_MAX)
1687 job->history_time = attr->values[0].integer + JobHistory;
1688 else
1689 job->history_time = INT_MAX;
1690
1691 if (job->history_time < time(NULL))
1692 goto error; /* Expired, remove from history */
1693
1694 if (job->history_time < JobHistoryUpdate || !JobHistoryUpdate)
1695 JobHistoryUpdate = job->history_time;
1696
1697 if (JobFiles < INT_MAX)
1698 job->file_time = attr->values[0].integer + JobFiles;
1699 else
1700 job->file_time = INT_MAX;
1701
1702 if (job->file_time < JobHistoryUpdate || !JobHistoryUpdate)
1703 JobHistoryUpdate = job->file_time;
1704
1705 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdLoadJob: JobHistoryUpdate=%ld",
1706 (long)JobHistoryUpdate);
1707 }
ef416fc2 1708
b9faaae1 1709 if (!job->dest)
ef416fc2 1710 {
b9faaae1
MS
1711 if ((attr = ippFindAttribute(job->attrs, "job-printer-uri",
1712 IPP_TAG_URI)) == NULL)
1713 {
1714 cupsdLogMessage(CUPSD_LOG_ERROR,
12f89d24 1715 "[Job %d] No job-printer-uri attribute in control file.",
b9faaae1
MS
1716 job->id);
1717 goto error;
1718 }
ef416fc2 1719
b9faaae1
MS
1720 if ((dest = cupsdValidateDest(attr->values[0].string.text, &(job->dtype),
1721 &destptr)) == NULL)
1722 {
1723 cupsdLogMessage(CUPSD_LOG_ERROR,
12f89d24 1724 "[Job %d] Unable to queue job for destination \"%s\".",
b9faaae1
MS
1725 job->id, attr->values[0].string.text);
1726 goto error;
1727 }
ef416fc2 1728
b9faaae1 1729 cupsdSetString(&job->dest, dest);
f7deaa1a 1730 }
b9faaae1 1731 else if ((destptr = cupsdFindDest(job->dest)) == NULL)
ef416fc2 1732 {
b9faaae1 1733 cupsdLogMessage(CUPSD_LOG_ERROR,
12f89d24 1734 "[Job %d] Unable to queue job for destination \"%s\".",
b9faaae1
MS
1735 job->id, job->dest);
1736 goto error;
1737 }
ef416fc2 1738
12f89d24
MS
1739 if ((job->reasons = ippFindAttribute(job->attrs, "job-state-reasons",
1740 IPP_TAG_KEYWORD)) == NULL)
1741 {
1742 const char *reason; /* job-state-reason keyword */
1743
1744 cupsdLogMessage(CUPSD_LOG_DEBUG,
1745 "[Job %d] Adding missing job-state-reasons attribute to "
1746 " control file.", job->id);
1747
1748 switch (job->state_value)
1749 {
82cc1f9a 1750 default :
12f89d24
MS
1751 case IPP_JOB_PENDING :
1752 if (destptr->state == IPP_PRINTER_STOPPED)
1753 reason = "printer-stopped";
1754 else
1755 reason = "none";
1756 break;
1757
1758 case IPP_JOB_HELD :
1759 if ((attr = ippFindAttribute(job->attrs, "job-hold-until",
1760 IPP_TAG_ZERO)) != NULL &&
1761 (attr->value_tag == IPP_TAG_NAME ||
1762 attr->value_tag == IPP_TAG_NAMELANG ||
1763 attr->value_tag == IPP_TAG_KEYWORD) &&
1764 strcmp(attr->values[0].string.text, "no-hold"))
1765 reason = "job-hold-until-specified";
1766 else
1767 reason = "job-incoming";
1768 break;
1769
1770 case IPP_JOB_PROCESSING :
1771 reason = "job-printing";
1772 break;
1773
1774 case IPP_JOB_STOPPED :
1775 reason = "job-stopped";
1776 break;
1777
1778 case IPP_JOB_CANCELED :
1779 reason = "job-canceled-by-user";
1780 break;
1781
1782 case IPP_JOB_ABORTED :
1783 reason = "aborted-by-system";
1784 break;
1785
1786 case IPP_JOB_COMPLETED :
1787 reason = "job-completed-successfully";
1788 break;
1789 }
1790
1791 job->reasons = ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_KEYWORD,
1792 "job-state-reasons", NULL, reason);
1793 }
1794 else if (job->state_value == IPP_JOB_PENDING)
1795 {
1796 if (destptr->state == IPP_PRINTER_STOPPED)
1797 ippSetString(job->attrs, &job->reasons, 0, "printer-stopped");
1798 else
1799 ippSetString(job->attrs, &job->reasons, 0, "none");
1800 }
1801
b9faaae1
MS
1802 job->sheets = ippFindAttribute(job->attrs, "job-media-sheets-completed",
1803 IPP_TAG_INTEGER);
1804 job->job_sheets = ippFindAttribute(job->attrs, "job-sheets", IPP_TAG_NAME);
ef416fc2 1805
b9faaae1
MS
1806 if (!job->priority)
1807 {
1808 if ((attr = ippFindAttribute(job->attrs, "job-priority",
1809 IPP_TAG_INTEGER)) == NULL)
1810 {
1811 cupsdLogMessage(CUPSD_LOG_ERROR,
1812 "[Job %d] Missing or bad job-priority attribute in "
12f89d24 1813 "control file.", job->id);
b9faaae1
MS
1814 goto error;
1815 }
1816
1817 job->priority = attr->values[0].integer;
f7deaa1a 1818 }
b9faaae1
MS
1819
1820 if (!job->username)
ef416fc2 1821 {
b9faaae1
MS
1822 if ((attr = ippFindAttribute(job->attrs, "job-originating-user-name",
1823 IPP_TAG_NAME)) == NULL)
1824 {
1825 cupsdLogMessage(CUPSD_LOG_ERROR,
1826 "[Job %d] Missing or bad job-originating-user-name "
12f89d24 1827 "attribute in control file.", job->id);
b9faaae1
MS
1828 goto error;
1829 }
ef416fc2 1830
b9faaae1
MS
1831 cupsdSetString(&job->username, attr->values[0].string.text);
1832 }
ef416fc2 1833
b9faaae1
MS
1834 /*
1835 * Set the job hold-until time and state...
1836 */
1837
1838 if (job->state_value == IPP_JOB_HELD)
1839 {
1840 if ((attr = ippFindAttribute(job->attrs, "job-hold-until",
1841 IPP_TAG_KEYWORD)) == NULL)
1842 attr = ippFindAttribute(job->attrs, "job-hold-until", IPP_TAG_NAME);
1843
1844 if (attr)
1845 cupsdSetJobHoldUntil(job, attr->values[0].string.text, CUPSD_JOB_DEFAULT);
ef416fc2 1846 else
b9faaae1
MS
1847 {
1848 job->state->values[0].integer = IPP_JOB_PENDING;
1849 job->state_value = IPP_JOB_PENDING;
1850 }
f7deaa1a 1851 }
b9faaae1
MS
1852 else if (job->state_value == IPP_JOB_PROCESSING)
1853 {
1854 job->state->values[0].integer = IPP_JOB_PENDING;
1855 job->state_value = IPP_JOB_PENDING;
1856 }
1857
1858 if (!job->num_files)
ef416fc2 1859 {
1860 /*
b9faaae1 1861 * Find all the d##### files...
ef416fc2 1862 */
1863
b9faaae1
MS
1864 for (fileid = 1; fileid < 10000; fileid ++)
1865 {
1866 snprintf(jobfile, sizeof(jobfile), "%s/d%05d-%03d", RequestRoot,
1867 job->id, fileid);
ef416fc2 1868
b9faaae1
MS
1869 if (access(jobfile, 0))
1870 break;
1871
1872 cupsdLogMessage(CUPSD_LOG_DEBUG,
1873 "[Job %d] Auto-typing document file \"%s\"...", job->id,
1874 jobfile);
1875
1876 if (fileid > job->num_files)
1877 {
1878 if (job->num_files == 0)
1879 {
1880 compressions = (int *)calloc(fileid, sizeof(int));
1881 filetypes = (mime_type_t **)calloc(fileid, sizeof(mime_type_t *));
1882 }
1883 else
1884 {
1885 compressions = (int *)realloc(job->compressions,
1886 sizeof(int) * fileid);
1887 filetypes = (mime_type_t **)realloc(job->filetypes,
1888 sizeof(mime_type_t *) *
1889 fileid);
1890 }
1891
cb7f98ee
MS
1892 if (compressions)
1893 job->compressions = compressions;
1894
1895 if (filetypes)
1896 job->filetypes = filetypes;
1897
b9faaae1
MS
1898 if (!compressions || !filetypes)
1899 {
1900 cupsdLogMessage(CUPSD_LOG_ERROR,
12f89d24 1901 "[Job %d] Ran out of memory for job file types.",
b9faaae1 1902 job->id);
ef55b745
MS
1903
1904 ippDelete(job->attrs);
1905 job->attrs = NULL;
1906
ef55b745
MS
1907 if (job->compressions)
1908 {
1909 free(job->compressions);
1910 job->compressions = NULL;
1911 }
1912
1913 if (job->filetypes)
1914 {
1915 free(job->filetypes);
1916 job->filetypes = NULL;
1917 }
1918
1919 job->num_files = 0;
1920 return (0);
b9faaae1
MS
1921 }
1922
cb7f98ee 1923 job->num_files = fileid;
b9faaae1
MS
1924 }
1925
1926 job->filetypes[fileid - 1] = mimeFileType(MimeDatabase, jobfile, NULL,
1927 job->compressions + fileid - 1);
1928
1929 if (!job->filetypes[fileid - 1])
1930 job->filetypes[fileid - 1] = mimeType(MimeDatabase, "application",
1931 "vnd.cups-raw");
1932 }
ef416fc2 1933 }
b9faaae1
MS
1934
1935 /*
1936 * Load authentication information as needed...
1937 */
1938
1939 if (job->state_value < IPP_JOB_STOPPED)
ef416fc2 1940 {
b9faaae1 1941 snprintf(jobfile, sizeof(jobfile), "%s/a%05d", RequestRoot, job->id);
ef416fc2 1942
88f9aafc
MS
1943 for (i = 0;
1944 i < (int)(sizeof(job->auth_env) / sizeof(job->auth_env[0]));
1945 i ++)
1946 cupsdClearString(job->auth_env + i);
07ed0e9a 1947 cupsdClearString(&job->auth_uid);
ef416fc2 1948
b9faaae1
MS
1949 if ((fp = cupsFileOpen(jobfile, "r")) != NULL)
1950 {
dcb445bc
MS
1951 int bytes, /* Size of auth data */
1952 linenum = 1; /* Current line number */
85dda01c 1953 char line[65536], /* Line from file */
dcb445bc 1954 *value, /* Value from line */
85dda01c 1955 data[65536]; /* Decoded data */
ef416fc2 1956
ef416fc2 1957
dcb445bc 1958 if (cupsFileGets(fp, line, sizeof(line)) &&
94436c5a 1959 !strcmp(line, "CUPSD-AUTH-V3"))
b9faaae1 1960 {
dcb445bc
MS
1961 i = 0;
1962 while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
1963 {
1964 /*
1965 * Decode value...
1966 */
1967
94436c5a
MS
1968 if (strcmp(line, "negotiate") && strcmp(line, "uid"))
1969 {
1970 bytes = sizeof(data);
1971 httpDecode64_2(data, &bytes, value);
1972 }
b9faaae1 1973
dcb445bc
MS
1974 /*
1975 * Assign environment variables...
1976 */
1977
1978 if (!strcmp(line, "uid"))
1979 {
1980 cupsdSetStringf(&job->auth_uid, "AUTH_UID=%s", value);
1981 continue;
1982 }
1983 else if (i >= (int)(sizeof(job->auth_env) / sizeof(job->auth_env[0])))
1984 break;
1985
1986 if (!strcmp(line, "username"))
1987 cupsdSetStringf(job->auth_env + i, "AUTH_USERNAME=%s", data);
1988 else if (!strcmp(line, "domain"))
1989 cupsdSetStringf(job->auth_env + i, "AUTH_DOMAIN=%s", data);
1990 else if (!strcmp(line, "password"))
1991 cupsdSetStringf(job->auth_env + i, "AUTH_PASSWORD=%s", data);
1992 else if (!strcmp(line, "negotiate"))
94436c5a 1993 cupsdSetStringf(job->auth_env + i, "AUTH_NEGOTIATE=%s", value);
dcb445bc
MS
1994 else
1995 continue;
1996
1997 i ++;
1998 }
1999 }
07ed0e9a 2000
b9faaae1
MS
2001 cupsFileClose(fp);
2002 }
ef416fc2 2003 }
2004
b9faaae1
MS
2005 job->access_time = time(NULL);
2006 return (1);
2007
2008 /*
2009 * If we get here then something bad happened...
2010 */
2011
2012 error:
2013
2014 ippDelete(job->attrs);
2015 job->attrs = NULL;
ef55b745 2016
82cc1f9a
MS
2017 remove_job_history(job);
2018 remove_job_files(job);
b9faaae1
MS
2019
2020 return (0);
ef416fc2 2021}
2022
2023
2024/*
b9faaae1 2025 * 'cupsdMoveJob()' - Move the specified job to a different destination.
ef416fc2 2026 */
2027
2028void
b9faaae1
MS
2029cupsdMoveJob(cupsd_job_t *job, /* I - Job */
2030 cupsd_printer_t *p) /* I - Destination printer or class */
ef416fc2 2031{
b9faaae1
MS
2032 ipp_attribute_t *attr; /* job-printer-uri attribute */
2033 const char *olddest; /* Old destination */
2034 cupsd_printer_t *oldp; /* Old pointer */
ef416fc2 2035
2036
2037 /*
b9faaae1 2038 * Don't move completed jobs...
ef416fc2 2039 */
2040
b9faaae1 2041 if (job->state_value > IPP_JOB_STOPPED)
ef416fc2 2042 return;
2043
2044 /*
b9faaae1 2045 * Get the old destination...
ef416fc2 2046 */
2047
b9faaae1 2048 olddest = job->dest;
ef416fc2 2049
b9faaae1
MS
2050 if (job->printer)
2051 oldp = job->printer;
ef416fc2 2052 else
b9faaae1 2053 oldp = cupsdFindDest(olddest);
ef416fc2 2054
b9faaae1
MS
2055 /*
2056 * Change the destination information...
2057 */
2058
eac3a0a0
MS
2059 if (job->state_value > IPP_JOB_HELD)
2060 cupsdSetJobState(job, IPP_JOB_PENDING, CUPSD_JOB_DEFAULT,
2061 "Stopping job prior to move.");
b9faaae1
MS
2062
2063 cupsdAddEvent(CUPSD_EVENT_JOB_CONFIG_CHANGED, oldp, job,
2064 "Job #%d moved from %s to %s.", job->id, olddest,
2065 p->name);
2066
2067 cupsdSetString(&job->dest, p->name);
a2326b5b 2068 job->dtype = p->type & (CUPS_PRINTER_CLASS | CUPS_PRINTER_REMOTE);
b9faaae1
MS
2069
2070 if ((attr = ippFindAttribute(job->attrs, "job-printer-uri",
2071 IPP_TAG_URI)) != NULL)
2072 cupsdSetString(&(attr->values[0].string.text), p->uri);
2073
2074 cupsdAddEvent(CUPSD_EVENT_JOB_STOPPED, p, job,
2075 "Job #%d moved from %s to %s.", job->id, olddest,
2076 p->name);
ef416fc2 2077
3dfe78b3
MS
2078 job->dirty = 1;
2079 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
ef416fc2 2080}
2081
2082
2083/*
b9faaae1 2084 * 'cupsdReleaseJob()' - Release the specified job.
ef416fc2 2085 */
2086
2087void
b9faaae1 2088cupsdReleaseJob(cupsd_job_t *job) /* I - Job */
ef416fc2 2089{
b9faaae1
MS
2090 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdReleaseJob(job=%p(%d))", job,
2091 job->id);
ef416fc2 2092
b9faaae1
MS
2093 if (job->state_value == IPP_JOB_HELD)
2094 {
2095 /*
2096 * Add trailing banner as needed...
2097 */
ef416fc2 2098
b9faaae1
MS
2099 if (job->pending_timeout)
2100 cupsdTimeoutJob(job);
ef416fc2 2101
b9faaae1
MS
2102 cupsdSetJobState(job, IPP_JOB_PENDING, CUPSD_JOB_DEFAULT,
2103 "Job released by user.");
2104 }
e1d6a774 2105}
ef416fc2 2106
ef416fc2 2107
e1d6a774 2108/*
b9faaae1 2109 * 'cupsdRestartJob()' - Restart the specified job.
e1d6a774 2110 */
ef416fc2 2111
e1d6a774 2112void
b9faaae1 2113cupsdRestartJob(cupsd_job_t *job) /* I - Job */
e1d6a774 2114{
b9faaae1
MS
2115 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdRestartJob(job=%p(%d))", job,
2116 job->id);
ef416fc2 2117
b9faaae1
MS
2118 if (job->state_value == IPP_JOB_STOPPED || job->num_files)
2119 cupsdSetJobState(job, IPP_JOB_PENDING, CUPSD_JOB_DEFAULT,
2120 "Job restarted by user.");
2121}
ef416fc2 2122
ef416fc2 2123
b9faaae1
MS
2124/*
2125 * 'cupsdSaveAllJobs()' - Save a summary of all jobs to disk.
2126 */
ef416fc2 2127
b9faaae1
MS
2128void
2129cupsdSaveAllJobs(void)
2130{
2131 int i; /* Looping var */
321d8d57
MS
2132 cups_file_t *fp; /* job.cache file */
2133 char filename[1024], /* job.cache filename */
2134 temp[1024]; /* Temporary string */
b9faaae1
MS
2135 cupsd_job_t *job; /* Current job */
2136 time_t curtime; /* Current time */
2137 struct tm *curdate; /* Current date */
ef416fc2 2138
ef416fc2 2139
321d8d57
MS
2140 snprintf(filename, sizeof(filename), "%s/job.cache", CacheDir);
2141 if ((fp = cupsdCreateConfFile(filename, ConfigFilePerm)) == NULL)
c168a833 2142 return;
ef416fc2 2143
321d8d57 2144 cupsdLogMessage(CUPSD_LOG_INFO, "Saving job.cache...");
bd7854cb 2145
b9faaae1
MS
2146 /*
2147 * Write a small header to the file...
2148 */
bd7854cb 2149
b9faaae1
MS
2150 curtime = time(NULL);
2151 curdate = localtime(&curtime);
2152 strftime(temp, sizeof(temp) - 1, "%Y-%m-%d %H:%M", curdate);
ef416fc2 2153
b9faaae1
MS
2154 cupsFilePuts(fp, "# Job cache file for " CUPS_SVERSION "\n");
2155 cupsFilePrintf(fp, "# Written by cupsd on %s\n", temp);
2156 cupsFilePrintf(fp, "NextJobId %d\n", NextJobId);
f7deaa1a 2157
b9faaae1
MS
2158 /*
2159 * Write each job known to the system...
2160 */
f7deaa1a 2161
b9faaae1
MS
2162 for (job = (cupsd_job_t *)cupsArrayFirst(Jobs);
2163 job;
2164 job = (cupsd_job_t *)cupsArrayNext(Jobs))
ef416fc2 2165 {
b9faaae1
MS
2166 cupsFilePrintf(fp, "<Job %d>\n", job->id);
2167 cupsFilePrintf(fp, "State %d\n", job->state_value);
2168 cupsFilePrintf(fp, "Priority %d\n", job->priority);
8b116e60 2169 cupsFilePrintf(fp, "HoldUntil %d\n", (int)job->hold_until);
b9faaae1
MS
2170 cupsFilePrintf(fp, "Username %s\n", job->username);
2171 cupsFilePrintf(fp, "Destination %s\n", job->dest);
2172 cupsFilePrintf(fp, "DestType %d\n", job->dtype);
2173 cupsFilePrintf(fp, "NumFiles %d\n", job->num_files);
2174 for (i = 0; i < job->num_files; i ++)
2175 cupsFilePrintf(fp, "File %d %s/%s %d\n", i + 1, job->filetypes[i]->super,
2176 job->filetypes[i]->type, job->compressions[i]);
2177 cupsFilePuts(fp, "</Job>\n");
ef416fc2 2178 }
b9faaae1 2179
321d8d57 2180 cupsdCloseCreatedConfFile(fp, filename);
e1d6a774 2181}
ef416fc2 2182
ef416fc2 2183
e1d6a774 2184/*
b9faaae1 2185 * 'cupsdSaveJob()' - Save a job to disk.
e1d6a774 2186 */
ef416fc2 2187
e1d6a774 2188void
b9faaae1 2189cupsdSaveJob(cupsd_job_t *job) /* I - Job */
e1d6a774 2190{
82cc1f9a 2191 char filename[1024]; /* Job control filename */
b9faaae1 2192 cups_file_t *fp; /* Job file */
3dfe78b3 2193
ef416fc2 2194
b9faaae1
MS
2195 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdSaveJob(job=%p(%d)): job->attrs=%p",
2196 job, job->id, job->attrs);
ef416fc2 2197
b9faaae1 2198 snprintf(filename, sizeof(filename), "%s/c%05d", RequestRoot, job->id);
ef416fc2 2199
82cc1f9a 2200 if ((fp = cupsdCreateConfFile(filename, ConfigFilePerm & 0600)) == NULL)
b9faaae1 2201 return;
ef416fc2 2202
b9faaae1 2203 fchown(cupsFileNumber(fp), RunUser, Group);
ef416fc2 2204
b9faaae1 2205 job->attrs->state = IPP_IDLE;
ef416fc2 2206
b9faaae1
MS
2207 if (ippWriteIO(fp, (ipp_iocb_t)cupsFileWrite, 1, NULL,
2208 job->attrs) != IPP_DATA)
321d8d57 2209 {
b9faaae1 2210 cupsdLogMessage(CUPSD_LOG_ERROR,
321d8d57
MS
2211 "[Job %d] Unable to write job control file.", job->id);
2212 cupsFileClose(fp);
321d8d57
MS
2213 return;
2214 }
ef416fc2 2215
82cc1f9a 2216 if (!cupsdCloseCreatedConfFile(fp, filename))
cb7f98ee
MS
2217 {
2218 /*
2219 * Remove backup file and mark this job as clean...
2220 */
2221
2222 strlcat(filename, ".O", sizeof(filename));
2223 unlink(filename);
2224
82cc1f9a 2225 job->dirty = 0;
cb7f98ee 2226 }
e1d6a774 2227}
ef416fc2 2228
ef416fc2 2229
e1d6a774 2230/*
b9faaae1 2231 * 'cupsdSetJobHoldUntil()' - Set the hold time for a job.
e1d6a774 2232 */
ef416fc2 2233
b9faaae1
MS
2234void
2235cupsdSetJobHoldUntil(cupsd_job_t *job, /* I - Job */
2236 const char *when, /* I - When to resume */
2237 int update)/* I - Update job-hold-until attr? */
e1d6a774 2238{
b9faaae1
MS
2239 time_t curtime; /* Current time */
2240 struct tm *curdate; /* Current date */
2241 int hour; /* Hold hour */
2242 int minute; /* Hold minute */
2243 int second = 0; /* Hold second */
ef416fc2 2244
ef416fc2 2245
b9faaae1
MS
2246 cupsdLogMessage(CUPSD_LOG_DEBUG2,
2247 "cupsdSetJobHoldUntil(job=%p(%d), when=\"%s\", update=%d)",
2248 job, job->id, when, update);
ef416fc2 2249
b9faaae1 2250 if (update)
ef416fc2 2251 {
e1d6a774 2252 /*
b9faaae1 2253 * Update the job-hold-until attribute...
e1d6a774 2254 */
ef416fc2 2255
b9faaae1 2256 ipp_attribute_t *attr; /* job-hold-until attribute */
ef416fc2 2257
b9faaae1
MS
2258 if ((attr = ippFindAttribute(job->attrs, "job-hold-until",
2259 IPP_TAG_KEYWORD)) == NULL)
2260 attr = ippFindAttribute(job->attrs, "job-hold-until", IPP_TAG_NAME);
ef416fc2 2261
b9faaae1
MS
2262 if (attr)
2263 cupsdSetString(&(attr->values[0].string.text), when);
2264 else
2265 attr = ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_KEYWORD,
2266 "job-hold-until", NULL, when);
ef416fc2 2267
b9faaae1
MS
2268 if (attr)
2269 {
2270 if (isdigit(when[0] & 255))
2271 attr->value_tag = IPP_TAG_NAME;
2272 else
2273 attr->value_tag = IPP_TAG_KEYWORD;
2274
2275 job->dirty = 1;
2276 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
2277 }
3e7fe0ca
MS
2278
2279 ippSetString(job->attrs, &job->reasons, 0, "job-hold-until-specified");
b9faaae1 2280 }
ef416fc2 2281
b9faaae1
MS
2282 /*
2283 * Update the hold time...
2284 */
2285
3e7fe0ca
MS
2286 job->cancel_time = 0;
2287
b9faaae1
MS
2288 if (!strcmp(when, "indefinite") || !strcmp(when, "auth-info-required"))
2289 {
e1d6a774 2290 /*
b9faaae1 2291 * Hold indefinitely...
e1d6a774 2292 */
ef416fc2 2293
b9faaae1 2294 job->hold_until = 0;
3e7fe0ca
MS
2295
2296 if (MaxHoldTime > 0)
2297 job->cancel_time = time(NULL) + MaxHoldTime;
b9faaae1
MS
2298 }
2299 else if (!strcmp(when, "day-time"))
2300 {
e1d6a774 2301 /*
b9faaae1 2302 * Hold to 6am the next morning unless local time is < 6pm.
e1d6a774 2303 */
ef416fc2 2304
b9faaae1
MS
2305 curtime = time(NULL);
2306 curdate = localtime(&curtime);
ef416fc2 2307
b9faaae1
MS
2308 if (curdate->tm_hour < 18)
2309 job->hold_until = curtime;
2310 else
2311 job->hold_until = curtime +
2312 ((29 - curdate->tm_hour) * 60 + 59 -
2313 curdate->tm_min) * 60 + 60 - curdate->tm_sec;
2314 }
2315 else if (!strcmp(when, "evening") || !strcmp(when, "night"))
2316 {
2317 /*
2318 * Hold to 6pm unless local time is > 6pm or < 6am.
2319 */
ef416fc2 2320
b9faaae1
MS
2321 curtime = time(NULL);
2322 curdate = localtime(&curtime);
ef416fc2 2323
b9faaae1
MS
2324 if (curdate->tm_hour < 6 || curdate->tm_hour >= 18)
2325 job->hold_until = curtime;
2326 else
2327 job->hold_until = curtime +
2328 ((17 - curdate->tm_hour) * 60 + 59 -
2329 curdate->tm_min) * 60 + 60 - curdate->tm_sec;
2330 }
2331 else if (!strcmp(when, "second-shift"))
2332 {
2333 /*
2334 * Hold to 4pm unless local time is > 4pm.
2335 */
ef416fc2 2336
b9faaae1
MS
2337 curtime = time(NULL);
2338 curdate = localtime(&curtime);
ef416fc2 2339
b9faaae1
MS
2340 if (curdate->tm_hour >= 16)
2341 job->hold_until = curtime;
2342 else
2343 job->hold_until = curtime +
2344 ((15 - curdate->tm_hour) * 60 + 59 -
2345 curdate->tm_min) * 60 + 60 - curdate->tm_sec;
2346 }
2347 else if (!strcmp(when, "third-shift"))
2348 {
2349 /*
2350 * Hold to 12am unless local time is < 8am.
2351 */
ef416fc2 2352
b9faaae1
MS
2353 curtime = time(NULL);
2354 curdate = localtime(&curtime);
ef416fc2 2355
b9faaae1
MS
2356 if (curdate->tm_hour < 8)
2357 job->hold_until = curtime;
2358 else
2359 job->hold_until = curtime +
2360 ((23 - curdate->tm_hour) * 60 + 59 -
2361 curdate->tm_min) * 60 + 60 - curdate->tm_sec;
2362 }
2363 else if (!strcmp(when, "weekend"))
2364 {
2365 /*
2366 * Hold to weekend unless we are in the weekend.
2367 */
ef416fc2 2368
b9faaae1
MS
2369 curtime = time(NULL);
2370 curdate = localtime(&curtime);
ef416fc2 2371
b9faaae1
MS
2372 if (curdate->tm_wday == 0 || curdate->tm_wday == 6)
2373 job->hold_until = curtime;
2374 else
2375 job->hold_until = curtime +
2376 (((5 - curdate->tm_wday) * 24 +
2377 (17 - curdate->tm_hour)) * 60 + 59 -
2378 curdate->tm_min) * 60 + 60 - curdate->tm_sec;
2379 }
2380 else if (sscanf(when, "%d:%d:%d", &hour, &minute, &second) >= 2)
2381 {
2382 /*
2383 * Hold to specified GMT time (HH:MM or HH:MM:SS)...
2384 */
bd7854cb 2385
b9faaae1
MS
2386 curtime = time(NULL);
2387 curdate = gmtime(&curtime);
2388
2389 job->hold_until = curtime +
2390 ((hour - curdate->tm_hour) * 60 + minute -
2391 curdate->tm_min) * 60 + second - curdate->tm_sec;
2392
2393 /*
2394 * Hold until next day as needed...
2395 */
2396
2397 if (job->hold_until < curtime)
2398 job->hold_until += 24 * 60 * 60;
ef416fc2 2399 }
2400
b9faaae1
MS
2401 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdSetJobHoldUntil: hold_until=%d",
2402 (int)job->hold_until);
e1d6a774 2403}
ef416fc2 2404
ef416fc2 2405
e1d6a774 2406/*
b9faaae1
MS
2407 * 'cupsdSetJobPriority()' - Set the priority of a job, moving it up/down in
2408 * the list as needed.
e1d6a774 2409 */
ef416fc2 2410
b9faaae1
MS
2411void
2412cupsdSetJobPriority(
2413 cupsd_job_t *job, /* I - Job ID */
2414 int priority) /* I - New priority (0 to 100) */
e1d6a774 2415{
b9faaae1 2416 ipp_attribute_t *attr; /* Job attribute */
ef416fc2 2417
ef416fc2 2418
e1d6a774 2419 /*
b9faaae1 2420 * Don't change completed jobs...
e1d6a774 2421 */
bd7854cb 2422
b9faaae1 2423 if (job->state_value >= IPP_JOB_PROCESSING)
ef416fc2 2424 return;
ef416fc2 2425
e1d6a774 2426 /*
b9faaae1 2427 * Set the new priority and re-add the job into the active list...
e1d6a774 2428 */
ef416fc2 2429
b9faaae1 2430 cupsArrayRemove(ActiveJobs, job);
ef416fc2 2431
b9faaae1 2432 job->priority = priority;
ef416fc2 2433
b9faaae1
MS
2434 if ((attr = ippFindAttribute(job->attrs, "job-priority",
2435 IPP_TAG_INTEGER)) != NULL)
2436 attr->values[0].integer = priority;
2437 else
2438 ippAddInteger(job->attrs, IPP_TAG_JOB, IPP_TAG_INTEGER, "job-priority",
2439 priority);
ef416fc2 2440
b9faaae1 2441 cupsArrayAdd(ActiveJobs, job);
bd7854cb 2442
b9faaae1
MS
2443 job->dirty = 1;
2444 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
2445}
bd7854cb 2446
ef416fc2 2447
b9faaae1
MS
2448/*
2449 * 'cupsdSetJobState()' - Set the state of the specified print job.
2450 */
e1d6a774 2451
b9faaae1
MS
2452void
2453cupsdSetJobState(
2454 cupsd_job_t *job, /* I - Job to cancel */
2455 ipp_jstate_t newstate, /* I - New job state */
2456 cupsd_jobaction_t action, /* I - Action to take */
2457 const char *message, /* I - Message to log */
2458 ...) /* I - Additional arguments as needed */
2459{
2460 int i; /* Looping var */
2461 ipp_jstate_t oldstate; /* Old state */
2462 char filename[1024]; /* Job filename */
2463 ipp_attribute_t *attr; /* Job attribute */
ef416fc2 2464
ef416fc2 2465
b9faaae1
MS
2466 cupsdLogMessage(CUPSD_LOG_DEBUG2,
2467 "cupsdSetJobState(job=%p(%d), state=%d, newstate=%d, "
2468 "action=%d, message=\"%s\")", job, job->id, job->state_value,
2469 newstate, action, message ? message : "(null)");
ef416fc2 2470
bd7854cb 2471
b9faaae1
MS
2472 /*
2473 * Make sure we have the job attributes...
2474 */
e1d6a774 2475
b9faaae1
MS
2476 if (!cupsdLoadJob(job))
2477 return;
bd7854cb 2478
f99f3698
MS
2479 /*
2480 * Don't do anything if the state is unchanged and we aren't purging the
2481 * job...
2482 */
2483
2484 oldstate = job->state_value;
2485 if (newstate == oldstate && action != CUPSD_JOB_PURGE)
2486 return;
e1d6a774 2487
b9faaae1
MS
2488 /*
2489 * Stop any processes that are working on the current job...
2490 */
e1d6a774 2491
b9faaae1 2492 if (oldstate == IPP_JOB_PROCESSING)
ef55b745 2493 stop_job(job, action);
b9faaae1
MS
2494
2495 /*
2496 * Set the new job state...
2497 */
2498
0fa6c7fa
MS
2499 job->state_value = newstate;
2500
2501 if (job->state)
2502 job->state->values[0].integer = newstate;
b9faaae1
MS
2503
2504 switch (newstate)
2505 {
2506 case IPP_JOB_PENDING :
2507 /*
2508 * Update job-hold-until as needed...
2509 */
2510
2511 if ((attr = ippFindAttribute(job->attrs, "job-hold-until",
2512 IPP_TAG_KEYWORD)) == NULL)
2513 attr = ippFindAttribute(job->attrs, "job-hold-until", IPP_TAG_NAME);
2514
2515 if (attr)
ef416fc2 2516 {
b9faaae1
MS
2517 attr->value_tag = IPP_TAG_KEYWORD;
2518 cupsdSetString(&(attr->values[0].string.text), "no-hold");
e1d6a774 2519 }
ef416fc2 2520
b9faaae1
MS
2521 default :
2522 break;
ef416fc2 2523
b9faaae1
MS
2524 case IPP_JOB_ABORTED :
2525 case IPP_JOB_CANCELED :
2526 case IPP_JOB_COMPLETED :
2527 set_time(job, "time-at-completed");
12f89d24 2528 ippSetString(job->attrs, &job->reasons, 0, "processing-to-stop-point");
b9faaae1
MS
2529 break;
2530 }
ef416fc2 2531
b9faaae1
MS
2532 /*
2533 * Log message as needed...
2534 */
ef416fc2 2535
b9faaae1
MS
2536 if (message)
2537 {
2538 char buffer[2048]; /* Message buffer */
2539 va_list ap; /* Pointer to additional arguments */
ef416fc2 2540
b9faaae1
MS
2541 va_start(ap, message);
2542 vsnprintf(buffer, sizeof(buffer), message, ap);
2543 va_end(ap);
bd7854cb 2544
b9faaae1
MS
2545 if (newstate > IPP_JOB_STOPPED)
2546 cupsdAddEvent(CUPSD_EVENT_JOB_COMPLETED, job->printer, job, "%s", buffer);
2547 else
2548 cupsdAddEvent(CUPSD_EVENT_JOB_STATE, job->printer, job, "%s", buffer);
2549
2550 if (newstate == IPP_JOB_STOPPED || newstate == IPP_JOB_ABORTED)
2551 cupsdLogJob(job, CUPSD_LOG_ERROR, "%s", buffer);
2552 else
2553 cupsdLogJob(job, CUPSD_LOG_INFO, "%s", buffer);
2554 }
2555
2556 /*
2557 * Handle post-state-change actions...
2558 */
2559
2560 switch (newstate)
2561 {
2562 case IPP_JOB_PROCESSING :
e1d6a774 2563 /*
b9faaae1 2564 * Add the job to the "printing" list...
e1d6a774 2565 */
bd7854cb 2566
b9faaae1
MS
2567 if (!cupsArrayFind(PrintingJobs, job))
2568 cupsArrayAdd(PrintingJobs, job);
ef416fc2 2569
b9faaae1
MS
2570 /*
2571 * Set the processing time...
2572 */
ef416fc2 2573
b9faaae1
MS
2574 set_time(job, "time-at-processing");
2575
2576 case IPP_JOB_PENDING :
2577 case IPP_JOB_HELD :
2578 case IPP_JOB_STOPPED :
e1d6a774 2579 /*
b9faaae1 2580 * Make sure the job is in the active list...
e1d6a774 2581 */
ef416fc2 2582
b9faaae1
MS
2583 if (!cupsArrayFind(ActiveJobs, job))
2584 cupsArrayAdd(ActiveJobs, job);
ef416fc2 2585
b9faaae1
MS
2586 /*
2587 * Save the job state to disk...
2588 */
ef416fc2 2589
b9faaae1
MS
2590 job->dirty = 1;
2591 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
2592 break;
ef416fc2 2593
b9faaae1
MS
2594 case IPP_JOB_ABORTED :
2595 case IPP_JOB_CANCELED :
2596 case IPP_JOB_COMPLETED :
7a0cbd5e
MS
2597 if (newstate == IPP_JOB_CANCELED)
2598 {
2599 /*
2600 * Remove the job from the active list if there are no processes still
2601 * running for it...
2602 */
ef416fc2 2603
7a0cbd5e
MS
2604 for (i = 0; job->filters[i] < 0; i++);
2605
2606 if (!job->filters[i] && job->backend <= 0)
2607 cupsArrayRemove(ActiveJobs, job);
2608 }
2609 else
2610 {
2611 /*
2612 * Otherwise just remove the job from the active list immediately...
2613 */
2614
2615 cupsArrayRemove(ActiveJobs, job);
2616 }
ef416fc2 2617
b9faaae1 2618 /*
7a0cbd5e 2619 * Expire job subscriptions since the job is now "completed"...
b9faaae1 2620 */
ef416fc2 2621
7a0cbd5e 2622 cupsdExpireSubscriptions(NULL, job);
ef416fc2 2623
b9faaae1
MS
2624#ifdef __APPLE__
2625 /*
2626 * If we are going to sleep and the PrintingJobs count is now 0, allow the
2627 * sleep to happen immediately...
2628 */
ef416fc2 2629
b9faaae1
MS
2630 if (Sleeping && cupsArrayCount(PrintingJobs) == 0)
2631 cupsdAllowSleep();
2632#endif /* __APPLE__ */
ef416fc2 2633
b9faaae1
MS
2634 /*
2635 * Remove any authentication data...
2636 */
bd7854cb 2637
b9faaae1
MS
2638 snprintf(filename, sizeof(filename), "%s/a%05d", RequestRoot, job->id);
2639 if (cupsdRemoveFile(filename) && errno != ENOENT)
2640 cupsdLogMessage(CUPSD_LOG_ERROR,
2641 "Unable to remove authentication cache: %s",
2642 strerror(errno));
bd7854cb 2643
88f9aafc
MS
2644 for (i = 0;
2645 i < (int)(sizeof(job->auth_env) / sizeof(job->auth_env[0]));
2646 i ++)
2647 cupsdClearString(job->auth_env + i);
2648
07ed0e9a 2649 cupsdClearString(&job->auth_uid);
ef416fc2 2650
b9faaae1
MS
2651 /*
2652 * Remove the print file for good if we aren't preserving jobs or
2653 * files...
2654 */
e1d6a774 2655
b9faaae1 2656 if (!JobHistory || !JobFiles || action == CUPSD_JOB_PURGE)
82cc1f9a 2657 remove_job_files(job);
ef416fc2 2658
b9faaae1
MS
2659 if (JobHistory && action != CUPSD_JOB_PURGE)
2660 {
2661 /*
2662 * Save job state info...
2663 */
e1d6a774 2664
b9faaae1
MS
2665 job->dirty = 1;
2666 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
2667 }
ba55dc12
MS
2668 else if (!job->printer)
2669 {
2670 /*
2671 * Delete the job immediately if not actively printing...
2672 */
2673
2674 cupsdDeleteJob(job, CUPSD_JOB_PURGE);
2675 job = NULL;
2676 }
b9faaae1 2677 break;
e1d6a774 2678 }
2679
e07d4801
MS
2680 /*
2681 * Finalize the job immediately if we forced things...
2682 */
2683
ba55dc12 2684 if (action >= CUPSD_JOB_FORCE && job && job->printer)
ef55b745 2685 finalize_job(job, 0);
e07d4801 2686
e1d6a774 2687 /*
b9faaae1 2688 * Update the server "busy" state...
e1d6a774 2689 */
ef416fc2 2690
b9faaae1
MS
2691 cupsdSetBusyState();
2692}
e00b005a 2693
ef416fc2 2694
b9faaae1
MS
2695/*
2696 * 'cupsdStopAllJobs()' - Stop all print jobs.
2697 */
ef416fc2 2698
b9faaae1
MS
2699void
2700cupsdStopAllJobs(
238c3832
MS
2701 cupsd_jobaction_t action, /* I - Action */
2702 int kill_delay) /* I - Number of seconds before we kill */
b9faaae1
MS
2703{
2704 cupsd_job_t *job; /* Current job */
ef416fc2 2705
ef416fc2 2706
b9faaae1 2707 DEBUG_puts("cupsdStopAllJobs()");
ef416fc2 2708
b9faaae1
MS
2709 for (job = (cupsd_job_t *)cupsArrayFirst(PrintingJobs);
2710 job;
2711 job = (cupsd_job_t *)cupsArrayNext(PrintingJobs))
238c3832
MS
2712 {
2713 if (kill_delay)
2714 job->kill_time = time(NULL) + kill_delay;
2715
b9faaae1 2716 cupsdSetJobState(job, IPP_JOB_PENDING, action, NULL);
238c3832 2717 }
b9faaae1 2718}
bd7854cb 2719
bd7854cb 2720
b9faaae1
MS
2721/*
2722 * 'cupsdUnloadCompletedJobs()' - Flush completed job history from memory.
2723 */
ef416fc2 2724
b9faaae1
MS
2725void
2726cupsdUnloadCompletedJobs(void)
2727{
2728 cupsd_job_t *job; /* Current job */
2729 time_t expire; /* Expiration time */
ef416fc2 2730
b9faaae1
MS
2731
2732 expire = time(NULL) - 60;
2733
2734 for (job = (cupsd_job_t *)cupsArrayFirst(Jobs);
2735 job;
2736 job = (cupsd_job_t *)cupsArrayNext(Jobs))
2737 if (job->attrs && job->state_value >= IPP_JOB_STOPPED && !job->printer &&
2738 job->access_time < expire)
2739 {
2740 if (job->dirty)
2741 cupsdSaveJob(job);
2742
2743 unload_job(job);
2744 }
e1d6a774 2745}
ef416fc2 2746
ef416fc2 2747
82cc1f9a
MS
2748/*
2749 * 'cupsdUpdateJobs()' - Update the history/file files for all jobs.
2750 */
2751
2752void
2753cupsdUpdateJobs(void)
2754{
2755 cupsd_job_t *job; /* Current job */
2756 time_t curtime; /* Current time */
2757 ipp_attribute_t *attr; /* time-at-completed attribute */
2758
2759
2760 curtime = time(NULL);
2761 JobHistoryUpdate = 0;
2762
2763 for (job = (cupsd_job_t *)cupsArrayFirst(Jobs);
2764 job;
2765 job = (cupsd_job_t *)cupsArrayNext(Jobs))
2766 {
2767 if (job->state_value >= IPP_JOB_CANCELED &&
2768 (attr = ippFindAttribute(job->attrs, "time-at-completed",
2769 IPP_TAG_INTEGER)) != NULL)
2770 {
2771 /*
2772 * Update history/file expiration times...
2773 */
2774
2775 if (JobHistory < INT_MAX)
2776 job->history_time = attr->values[0].integer + JobHistory;
2777 else
2778 job->history_time = INT_MAX;
2779
2780 if (job->history_time < curtime)
2781 {
2782 cupsdDeleteJob(job, CUPSD_JOB_PURGE);
2783 continue;
2784 }
2785
2786 if (job->history_time < JobHistoryUpdate || !JobHistoryUpdate)
2787 JobHistoryUpdate = job->history_time;
2788
2789 if (JobFiles < INT_MAX)
2790 job->file_time = attr->values[0].integer + JobFiles;
2791 else
2792 job->file_time = INT_MAX;
2793
2794 if (job->file_time < JobHistoryUpdate || !JobHistoryUpdate)
2795 JobHistoryUpdate = job->file_time;
2796 }
2797 }
2798
2799 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdUpdateAllJobs: JobHistoryUpdate=%ld",
2800 (long)JobHistoryUpdate);
2801}
2802
2803
e1d6a774 2804/*
b9faaae1 2805 * 'compare_active_jobs()' - Compare the job IDs and priorities of two jobs.
e1d6a774 2806 */
ef416fc2 2807
b9faaae1
MS
2808static int /* O - Difference */
2809compare_active_jobs(void *first, /* I - First job */
2810 void *second, /* I - Second job */
2811 void *data) /* I - App data (not used) */
e1d6a774 2812{
b9faaae1 2813 int diff; /* Difference */
ef416fc2 2814
ef416fc2 2815
321d8d57
MS
2816 (void)data;
2817
b9faaae1
MS
2818 if ((diff = ((cupsd_job_t *)second)->priority -
2819 ((cupsd_job_t *)first)->priority) != 0)
2820 return (diff);
2821 else
2822 return (((cupsd_job_t *)first)->id - ((cupsd_job_t *)second)->id);
e1d6a774 2823}
bd7854cb 2824
ef416fc2 2825
e1d6a774 2826/*
b9faaae1 2827 * 'compare_jobs()' - Compare the job IDs of two jobs.
e1d6a774 2828 */
ef416fc2 2829
b9faaae1
MS
2830static int /* O - Difference */
2831compare_jobs(void *first, /* I - First job */
2832 void *second, /* I - Second job */
2833 void *data) /* I - App data (not used) */
e1d6a774 2834{
321d8d57
MS
2835 (void)data;
2836
b9faaae1
MS
2837 return (((cupsd_job_t *)first)->id - ((cupsd_job_t *)second)->id);
2838}
ef416fc2 2839
ef416fc2 2840
178cb736
MS
2841/*
2842 * 'dump_job_history()' - Dump any debug messages for a job.
2843 */
2844
2845static void
2846dump_job_history(cupsd_job_t *job) /* I - Job */
2847{
2848 int i, /* Looping var */
2849 oldsize; /* Current MaxLogSize */
2850 struct tm *date; /* Date/time value */
2851 cupsd_joblog_t *message; /* Current message */
2852 char temp[2048], /* Log message */
2853 *ptr, /* Pointer into log message */
2854 start[256], /* Start time */
2855 end[256]; /* End time */
2856 cupsd_printer_t *printer; /* Printer for job */
2857
2858
2859 /*
2860 * See if we have anything to dump...
2861 */
2862
2863 if (!job->history)
2864 return;
2865
2866 /*
2867 * Disable log rotation temporarily...
2868 */
2869
2870 oldsize = MaxLogSize;
2871 MaxLogSize = 0;
2872
2873 /*
2874 * Copy the debug messages to the log...
2875 */
2876
2877 message = (cupsd_joblog_t *)cupsArrayFirst(job->history);
2878 date = localtime(&(message->time));
2879 strftime(start, sizeof(start), "%X", date);
2880
2881 message = (cupsd_joblog_t *)cupsArrayLast(job->history);
2882 date = localtime(&(message->time));
2883 strftime(end, sizeof(end), "%X", date);
2884
2885 snprintf(temp, sizeof(temp),
2886 "[Job %d] The following messages were recorded from %s to %s",
2887 job->id, start, end);
2888 cupsdWriteErrorLog(CUPSD_LOG_DEBUG, temp);
2889
2890 for (message = (cupsd_joblog_t *)cupsArrayFirst(job->history);
2891 message;
2892 message = (cupsd_joblog_t *)cupsArrayNext(job->history))
2893 cupsdWriteErrorLog(CUPSD_LOG_DEBUG, message->message);
2894
2895 snprintf(temp, sizeof(temp), "[Job %d] End of messages", job->id);
2896 cupsdWriteErrorLog(CUPSD_LOG_DEBUG, temp);
2897
2898 /*
2899 * Log the printer state values...
2900 */
2901
2902 if ((printer = job->printer) == NULL)
2903 printer = cupsdFindDest(job->dest);
2904
2905 if (printer)
2906 {
2907 snprintf(temp, sizeof(temp), "[Job %d] printer-state=%d(%s)", job->id,
2908 printer->state,
2909 printer->state == IPP_PRINTER_IDLE ? "idle" :
2910 printer->state == IPP_PRINTER_PROCESSING ? "processing" :
2911 "stopped");
2912 cupsdWriteErrorLog(CUPSD_LOG_DEBUG, temp);
2913
2914 snprintf(temp, sizeof(temp), "[Job %d] printer-state-message=\"%s\"",
2915 job->id, printer->state_message);
2916 cupsdWriteErrorLog(CUPSD_LOG_DEBUG, temp);
2917
2918 snprintf(temp, sizeof(temp), "[Job %d] printer-state-reasons=", job->id);
2919 ptr = temp + strlen(temp);
2920 if (printer->num_reasons == 0)
2921 strlcpy(ptr, "none", sizeof(temp) - (ptr - temp));
2922 else
2923 {
2924 for (i = 0;
2925 i < printer->num_reasons && ptr < (temp + sizeof(temp) - 2);
2926 i ++)
2927 {
2928 if (i)
2929 *ptr++ = ',';
2930
2931 strlcpy(ptr, printer->reasons[i], sizeof(temp) - (ptr - temp));
2932 ptr += strlen(ptr);
2933 }
2934 }
2935 cupsdWriteErrorLog(CUPSD_LOG_DEBUG, temp);
2936 }
2937
2938 /*
2939 * Restore log file rotation...
2940 */
2941
2942 MaxLogSize = oldsize;
2943
2944 /*
2945 * Free all messages...
2946 */
2947
2948 free_job_history(job);
2949}
2950
2951
2952/*
2953 * 'free_job_history()' - Free any log history.
2954 */
2955
2956static void
2957free_job_history(cupsd_job_t *job) /* I - Job */
2958{
2959 char *message; /* Current message */
2960
2961
2962 if (!job->history)
2963 return;
2964
2965 for (message = (char *)cupsArrayFirst(job->history);
2966 message;
2967 message = (char *)cupsArrayNext(job->history))
2968 free(message);
2969
2970 cupsArrayDelete(job->history);
2971 job->history = NULL;
2972}
2973
2974
b9faaae1
MS
2975/*
2976 * 'finalize_job()' - Cleanup after job filter processes and support data.
2977 */
ef416fc2 2978
b9faaae1 2979static void
ef55b745
MS
2980finalize_job(cupsd_job_t *job, /* I - Job */
2981 int set_job_state) /* I - 1 = set the job state */
b9faaae1
MS
2982{
2983 ipp_pstate_t printer_state; /* New printer state value */
2984 ipp_jstate_t job_state; /* New job state value */
2985 const char *message; /* Message for job state */
2986 char buffer[1024]; /* Buffer for formatted messages */
e00b005a 2987
b9faaae1
MS
2988
2989 cupsdLogMessage(CUPSD_LOG_DEBUG2, "finalize_job(job=%p(%d))", job, job->id);
ef416fc2 2990
e1d6a774 2991 /*
4d301e69 2992 * Clear the "connecting-to-device" reason, which is only valid when a printer
07ed0e9a 2993 * is processing, along with any remote printing job state...
e1d6a774 2994 */
ef416fc2 2995
07ed0e9a
MS
2996 cupsdSetPrinterReasons(job->printer, "-connecting-to-device,"
2997 "cups-remote-pending,"
2998 "cups-remote-pending-held,"
2999 "cups-remote-processing,"
3000 "cups-remote-stopped,"
3001 "cups-remote-canceled,"
3002 "cups-remote-aborted,"
3003 "cups-remote-completed");
ef416fc2 3004
e1d6a774 3005 /*
b9faaae1
MS
3006 * Similarly, clear the "offline-report" reason for non-USB devices since we
3007 * rarely have current information for network devices...
e1d6a774 3008 */
ef416fc2 3009
a469f8a5
MS
3010 if (strncmp(job->printer->device_uri, "usb:", 4) &&
3011 strncmp(job->printer->device_uri, "ippusb:", 7))
b9faaae1 3012 cupsdSetPrinterReasons(job->printer, "-offline-report");
ef416fc2 3013
b9faaae1
MS
3014 /*
3015 * Free the security profile...
3016 */
ef416fc2 3017
b9faaae1
MS
3018 cupsdDestroyProfile(job->profile);
3019 job->profile = NULL;
ef416fc2 3020
10d09e33 3021 /*
a469f8a5 3022 * Clear the unresponsive job watchdog timers...
10d09e33
MS
3023 */
3024
a469f8a5
MS
3025 job->cancel_time = 0;
3026 job->kill_time = 0;
10d09e33 3027
b9faaae1
MS
3028 /*
3029 * Close pipes and status buffer...
3030 */
ef416fc2 3031
b9faaae1
MS
3032 cupsdClosePipe(job->print_pipes);
3033 cupsdClosePipe(job->back_pipes);
3034 cupsdClosePipe(job->side_pipes);
ef416fc2 3035
e07d4801
MS
3036 cupsdRemoveSelect(job->status_pipes[0]);
3037 cupsdClosePipe(job->status_pipes);
b9faaae1
MS
3038 cupsdStatBufDelete(job->status_buffer);
3039 job->status_buffer = NULL;
ef416fc2 3040
e1d6a774 3041 /*
b9faaae1 3042 * Process the exit status...
e1d6a774 3043 */
ef416fc2 3044
1340db2d
MS
3045 if (job->printer->state == IPP_PRINTER_PROCESSING)
3046 printer_state = IPP_PRINTER_IDLE;
3047 else
3048 printer_state = job->printer->state;
3049
3050 switch (job_state = job->state_value)
3051 {
3052 case IPP_JOB_PENDING :
3053 message = "Job paused.";
3054 break;
3055
3056 case IPP_JOB_HELD :
3057 message = "Job held.";
3058 break;
3059
3060 default :
3061 case IPP_JOB_PROCESSING :
3062 case IPP_JOB_COMPLETED :
f11a948a
MS
3063 job_state = IPP_JOB_COMPLETED;
3064 message = "Job completed.";
12f89d24 3065
6961465f
MS
3066 if (!job->status)
3067 ippSetString(job->attrs, &job->reasons, 0,
3068 "job-completed-successfully");
1340db2d
MS
3069 break;
3070
3071 case IPP_JOB_STOPPED :
3072 message = "Job stopped.";
12f89d24
MS
3073
3074 ippSetString(job->attrs, &job->reasons, 0, "job-stopped");
1340db2d
MS
3075 break;
3076
3077 case IPP_JOB_CANCELED :
3078 message = "Job canceled.";
12f89d24
MS
3079
3080 ippSetString(job->attrs, &job->reasons, 0, "job-canceled-by-user");
1340db2d
MS
3081 break;
3082
3083 case IPP_JOB_ABORTED :
3084 message = "Job aborted.";
3085 break;
3086 }
ef416fc2 3087
b9faaae1 3088 if (job->status < 0)
e1d6a774 3089 {
3090 /*
b9faaae1 3091 * Backend had errors...
e1d6a774 3092 */
ef416fc2 3093
b9faaae1
MS
3094 int exit_code; /* Exit code from backend */
3095
e1d6a774 3096 /*
b9faaae1
MS
3097 * Convert the status to an exit code. Due to the way the W* macros are
3098 * implemented on MacOS X (bug?), we have to store the exit status in a
3099 * variable first and then convert...
e1d6a774 3100 */
ef416fc2 3101
b9faaae1
MS
3102 exit_code = -job->status;
3103 if (WIFEXITED(exit_code))
3104 exit_code = WEXITSTATUS(exit_code);
3105 else
12f89d24
MS
3106 {
3107 ippSetString(job->attrs, &job->reasons, 0, "cups-backend-crashed");
b9faaae1 3108 exit_code = job->status;
12f89d24 3109 }
ef416fc2 3110
b9faaae1
MS
3111 cupsdLogJob(job, CUPSD_LOG_INFO, "Backend returned status %d (%s)",
3112 exit_code,
3113 exit_code == CUPS_BACKEND_FAILED ? "failed" :
3114 exit_code == CUPS_BACKEND_AUTH_REQUIRED ?
3115 "authentication required" :
3116 exit_code == CUPS_BACKEND_HOLD ? "hold job" :
3117 exit_code == CUPS_BACKEND_STOP ? "stop printer" :
3118 exit_code == CUPS_BACKEND_CANCEL ? "cancel job" :
a469f8a5
MS
3119 exit_code == CUPS_BACKEND_RETRY ? "retry job later" :
3120 exit_code == CUPS_BACKEND_RETRY_CURRENT ? "retry job immediately" :
b9faaae1 3121 exit_code < 0 ? "crashed" : "unknown");
ef416fc2 3122
ef416fc2 3123 /*
b9faaae1 3124 * Do what needs to be done...
ef416fc2 3125 */
3126
b9faaae1 3127 switch (exit_code)
f7deaa1a 3128 {
b9faaae1
MS
3129 default :
3130 case CUPS_BACKEND_FAILED :
3131 /*
3132 * Backend failure, use the error-policy to determine how to
3133 * act...
3134 */
f7deaa1a 3135
a2326b5b 3136 if (job->dtype & CUPS_PRINTER_CLASS)
b9faaae1
MS
3137 {
3138 /*
3139 * Queued on a class - mark the job as pending and we'll retry on
3140 * another printer...
3141 */
f7deaa1a 3142
8b116e60
MS
3143 if (job_state == IPP_JOB_COMPLETED)
3144 {
3145 job_state = IPP_JOB_PENDING;
3146 message = "Retrying job on another printer.";
12f89d24
MS
3147
3148 ippSetString(job->attrs, &job->reasons, 0,
3149 "resources-are-not-ready");
8b116e60 3150 }
b9faaae1
MS
3151 }
3152 else if (!strcmp(job->printer->error_policy, "retry-current-job"))
3153 {
3154 /*
3155 * The error policy is "retry-current-job" - mark the job as pending
3156 * and we'll retry on the same printer...
3157 */
f7deaa1a 3158
8b116e60
MS
3159 if (job_state == IPP_JOB_COMPLETED)
3160 {
3161 job_state = IPP_JOB_PENDING;
3162 message = "Retrying job on same printer.";
12f89d24
MS
3163
3164 ippSetString(job->attrs, &job->reasons, 0, "none");
8b116e60 3165 }
b9faaae1
MS
3166 }
3167 else if ((job->printer->type & CUPS_PRINTER_FAX) ||
3168 !strcmp(job->printer->error_policy, "retry-job"))
3169 {
8b116e60 3170 if (job_state == IPP_JOB_COMPLETED)
b9faaae1
MS
3171 {
3172 /*
8b116e60
MS
3173 * The job was queued on a fax or the error policy is "retry-job" -
3174 * hold the job if the number of retries is less than the
3175 * JobRetryLimit, otherwise abort the job.
b9faaae1 3176 */
ef416fc2 3177
8b116e60
MS
3178 job->tries ++;
3179
7cf5915e 3180 if (job->tries > JobRetryLimit && JobRetryLimit > 0)
8b116e60
MS
3181 {
3182 /*
3183 * Too many tries...
3184 */
3185
3186 snprintf(buffer, sizeof(buffer),
3187 "Job aborted after %d unsuccessful attempts.",
3188 JobRetryLimit);
3189 job_state = IPP_JOB_ABORTED;
3190 message = buffer;
12f89d24
MS
3191
3192 ippSetString(job->attrs, &job->reasons, 0, "aborted-by-system");
8b116e60
MS
3193 }
3194 else
3195 {
3196 /*
3197 * Try again in N seconds...
3198 */
ef416fc2 3199
8b116e60
MS
3200 snprintf(buffer, sizeof(buffer),
3201 "Job held for %d seconds since it could not be sent.",
3202 JobRetryInterval);
0268488e
MS
3203
3204 job->hold_until = time(NULL) + JobRetryInterval;
3205 job_state = IPP_JOB_HELD;
3206 message = buffer;
12f89d24
MS
3207
3208 ippSetString(job->attrs, &job->reasons, 0,
3209 "resources-are-not-ready");
8b116e60
MS
3210 }
3211 }
b9faaae1 3212 }
8b116e60
MS
3213 else if (!strcmp(job->printer->error_policy, "abort-job") &&
3214 job_state == IPP_JOB_COMPLETED)
b9faaae1
MS
3215 {
3216 job_state = IPP_JOB_ABORTED;
3217 message = "Job aborted due to backend errors; please consult "
3218 "the error_log file for details.";
12f89d24
MS
3219
3220 ippSetString(job->attrs, &job->reasons, 0, "aborted-by-system");
b9faaae1 3221 }
f11a948a 3222 else if (job->state_value == IPP_JOB_PROCESSING)
b9faaae1 3223 {
f11a948a 3224 job_state = IPP_JOB_PENDING;
b9faaae1 3225 printer_state = IPP_PRINTER_STOPPED;
b9faaae1 3226 message = "Printer stopped due to backend errors; please "
8b116e60 3227 "consult the error_log file for details.";
12f89d24
MS
3228
3229 ippSetString(job->attrs, &job->reasons, 0, "none");
b9faaae1
MS
3230 }
3231 break;
bd7854cb 3232
b9faaae1
MS
3233 case CUPS_BACKEND_CANCEL :
3234 /*
f3c17241 3235 * Cancel the job...
b9faaae1 3236 */
bd7854cb 3237
8b116e60
MS
3238 if (job_state == IPP_JOB_COMPLETED)
3239 {
f3c17241
MS
3240 job_state = IPP_JOB_CANCELED;
3241 message = "Job canceled at printer.";
12f89d24 3242
f3c17241 3243 ippSetString(job->attrs, &job->reasons, 0, "canceled-at-device");
8b116e60 3244 }
b9faaae1 3245 break;
bd7854cb 3246
b9faaae1 3247 case CUPS_BACKEND_HOLD :
8b116e60
MS
3248 if (job_state == IPP_JOB_COMPLETED)
3249 {
3250 /*
3251 * Hold the job...
3252 */
bd7854cb 3253
6961465f 3254 const char *reason = ippGetString(job->reasons, 0, NULL);
bd7854cb 3255
6961465f
MS
3256 cupsdLogJob(job, CUPSD_LOG_DEBUG, "job-state-reasons=\"%s\"",
3257 reason);
3258
3259 if (!reason || strncmp(reason, "account-", 8))
3260 {
3261 cupsdSetJobHoldUntil(job, "indefinite", 1);
3262
3263 ippSetString(job->attrs, &job->reasons, 0,
3264 "job-hold-until-specified");
3265 message = "Job held indefinitely due to backend errors; please "
8b116e60 3266 "consult the error_log file for details.";
6961465f
MS
3267 }
3268 else if (!strcmp(reason, "account-info-needed"))
3269 {
3270 cupsdSetJobHoldUntil(job, "indefinite", 0);
3271
3272 message = "Job held indefinitely - account information is "
3273 "required.";
3274 }
3275 else if (!strcmp(reason, "account-closed"))
3276 {
3277 cupsdSetJobHoldUntil(job, "indefinite", 0);
3278
3279 message = "Job held indefinitely - account has been closed.";
3280 }
3281 else if (!strcmp(reason, "account-limit-reached"))
3282 {
3283 cupsdSetJobHoldUntil(job, "indefinite", 0);
3284
3285 message = "Job held indefinitely - account limit has been "
3286 "reached.";
3287 }
3288 else
3289 {
3290 cupsdSetJobHoldUntil(job, "indefinite", 0);
3291
3292 message = "Job held indefinitely - account authorization failed.";
3293 }
3294
3295 job_state = IPP_JOB_HELD;
8b116e60 3296 }
b9faaae1 3297 break;
2abf387c 3298
b9faaae1
MS
3299 case CUPS_BACKEND_STOP :
3300 /*
3301 * Stop the printer...
3302 */
bd7854cb 3303
b9faaae1 3304 printer_state = IPP_PRINTER_STOPPED;
b9faaae1
MS
3305 message = "Printer stopped due to backend errors; please "
3306 "consult the error_log file for details.";
8b116e60
MS
3307
3308 if (job_state == IPP_JOB_COMPLETED)
12f89d24 3309 {
8b116e60 3310 job_state = IPP_JOB_PENDING;
12f89d24
MS
3311
3312 ippSetString(job->attrs, &job->reasons, 0,
3313 "resources-are-not-ready");
3314 }
b9faaae1 3315 break;
bd7854cb 3316
b9faaae1
MS
3317 case CUPS_BACKEND_AUTH_REQUIRED :
3318 /*
3319 * Hold the job for authentication...
3320 */
bd7854cb 3321
8b116e60
MS
3322 if (job_state == IPP_JOB_COMPLETED)
3323 {
3324 cupsdSetJobHoldUntil(job, "auth-info-required", 1);
ef416fc2 3325
8b116e60
MS
3326 job_state = IPP_JOB_HELD;
3327 message = "Job held for authentication.";
12f89d24 3328
a469f8a5
MS
3329 if (strncmp(job->reasons->values[0].string.text, "account-", 8))
3330 ippSetString(job->attrs, &job->reasons, 0,
3331 "cups-held-for-authentication");
8b116e60 3332 }
b9faaae1 3333 break;
22c9029b
MS
3334
3335 case CUPS_BACKEND_RETRY :
3336 if (job_state == IPP_JOB_COMPLETED)
3337 {
3338 /*
3339 * Hold the job if the number of retries is less than the
3340 * JobRetryLimit, otherwise abort the job.
3341 */
3342
3343 job->tries ++;
3344
3345 if (job->tries > JobRetryLimit && JobRetryLimit > 0)
3346 {
3347 /*
3348 * Too many tries...
3349 */
3350
3351 snprintf(buffer, sizeof(buffer),
3352 "Job aborted after %d unsuccessful attempts.",
3353 JobRetryLimit);
3354 job_state = IPP_JOB_ABORTED;
3355 message = buffer;
12f89d24
MS
3356
3357 ippSetString(job->attrs, &job->reasons, 0, "aborted-by-system");
22c9029b
MS
3358 }
3359 else
3360 {
3361 /*
3362 * Try again in N seconds...
3363 */
3364
3365 snprintf(buffer, sizeof(buffer),
3366 "Job held for %d seconds since it could not be sent.",
3367 JobRetryInterval);
3368
3369 job->hold_until = time(NULL) + JobRetryInterval;
3370 job_state = IPP_JOB_HELD;
3371 message = buffer;
12f89d24
MS
3372
3373 ippSetString(job->attrs, &job->reasons, 0,
3374 "resources-are-not-ready");
22c9029b
MS
3375 }
3376 }
3377 break;
3378
3379 case CUPS_BACKEND_RETRY_CURRENT :
3380 /*
3381 * Mark the job as pending and retry on the same printer...
3382 */
3383
3384 if (job_state == IPP_JOB_COMPLETED)
3385 {
3386 job_state = IPP_JOB_PENDING;
3387 message = "Retrying job on same printer.";
12f89d24
MS
3388
3389 ippSetString(job->attrs, &job->reasons, 0, "none");
22c9029b
MS
3390 }
3391 break;
e1d6a774 3392 }
3393 }
b9faaae1 3394 else if (job->status > 0)
ef416fc2 3395 {
3396 /*
b9faaae1 3397 * Filter had errors; stop job...
ef416fc2 3398 */
3399
8b116e60
MS
3400 if (job_state == IPP_JOB_COMPLETED)
3401 {
3402 job_state = IPP_JOB_STOPPED;
3403 message = "Job stopped due to filter errors; please consult the "
3404 "error_log file for details.";
12f89d24
MS
3405
3406 if (WIFSIGNALED(job->status))
3407 ippSetString(job->attrs, &job->reasons, 0, "cups-filter-crashed");
3408 else
3409 ippSetString(job->attrs, &job->reasons, 0, "job-completed-with-errors");
8b116e60 3410 }
e1d6a774 3411 }
e00b005a 3412
3dfe78b3 3413 /*
b9faaae1 3414 * Update the printer and job state.
3dfe78b3
MS
3415 */
3416
321d8d57 3417 if (set_job_state && job_state != job->state_value)
ef55b745
MS
3418 cupsdSetJobState(job, job_state, CUPSD_JOB_DEFAULT, "%s", message);
3419
b9faaae1
MS
3420 cupsdSetPrinterState(job->printer, printer_state,
3421 printer_state == IPP_PRINTER_STOPPED);
3422 update_job_attrs(job, 0);
3dfe78b3 3423
178cb736
MS
3424 if (job->history)
3425 {
a4845881
MS
3426 if (job->status &&
3427 (job->state_value == IPP_JOB_ABORTED ||
3428 job->state_value == IPP_JOB_STOPPED))
178cb736
MS
3429 dump_job_history(job);
3430 else
3431 free_job_history(job);
3432 }
3433
b9faaae1 3434 cupsArrayRemove(PrintingJobs, job);
3dfe78b3 3435
a29fd7dd
MS
3436 /*
3437 * Apply any PPD updates...
3438 */
3439
3440 if (job->num_keywords)
3441 {
3442 if (cupsdUpdatePrinterPPD(job->printer, job->num_keywords, job->keywords))
3443 cupsdSetPrinterAttrs(job->printer);
3444
3445 cupsFreeOptions(job->num_keywords, job->keywords);
3446
3447 job->num_keywords = 0;
3448 job->keywords = NULL;
3449 }
3450
e1d6a774 3451 /*
b9faaae1 3452 * Clear the printer <-> job association...
e1d6a774 3453 */
ef416fc2 3454
b9faaae1
MS
3455 job->printer->job = NULL;
3456 job->printer = NULL;
ef416fc2 3457
e1d6a774 3458 /*
b9faaae1 3459 * Try printing another job...
e1d6a774 3460 */
ef416fc2 3461
b9faaae1
MS
3462 if (printer_state != IPP_PRINTER_STOPPED)
3463 cupsdCheckJobs();
3464}
ef416fc2 3465
ef416fc2 3466
b9faaae1
MS
3467/*
3468 * 'get_options()' - Get a string containing the job options.
3469 */
3470
3471static char * /* O - Options string */
3472get_options(cupsd_job_t *job, /* I - Job */
3473 int banner_page, /* I - Printing a banner page? */
3474 char *copies, /* I - Copies buffer */
3475 size_t copies_size, /* I - Size of copies buffer */
3476 char *title, /* I - Title buffer */
3477 size_t title_size) /* I - Size of title buffer */
3478{
3479 int i; /* Looping var */
c7017ecc 3480 size_t newlength; /* New option buffer length */
b9faaae1
MS
3481 char *optptr, /* Pointer to options */
3482 *valptr; /* Pointer in value string */
3483 ipp_attribute_t *attr; /* Current attribute */
f14324a7 3484 _ppd_cache_t *pc; /* PPD cache and mapping data */
c7017ecc
MS
3485 int num_pwgppds; /* Number of PWG->PPD options */
3486 cups_option_t *pwgppds, /* PWG->PPD options */
3487 *pwgppd, /* Current PWG->PPD option */
3488 *preset; /* Current preset option */
f14324a7
MS
3489 int print_color_mode,
3490 /* Output mode (if any) */
c7017ecc
MS
3491 print_quality; /* Print quality (if any) */
3492 const char *ppd; /* PPD option choice */
3493 int exact; /* Did we get an exact match? */
b9faaae1 3494 static char *options = NULL;/* Full list of options */
c7017ecc 3495 static size_t optlength = 0; /* Length of option buffer */
b9faaae1 3496
ef416fc2 3497
e1d6a774 3498 /*
c7017ecc
MS
3499 * Building the options string is harder than it needs to be, but for the
3500 * moment we need to pass strings for command-line args and not IPP attribute
3501 * pointers... :)
e1d6a774 3502 *
c7017ecc 3503 * First build an options array for any PWG->PPD mapped option/choice pairs.
e1d6a774 3504 */
ef416fc2 3505
f14324a7 3506 pc = job->printer->pc;
c7017ecc
MS
3507 num_pwgppds = 0;
3508 pwgppds = NULL;
ef416fc2 3509
f14324a7 3510 if (pc &&
7cf5915e
MS
3511 !ippFindAttribute(job->attrs,
3512 "com.apple.print.DocumentTicket.PMSpoolFormat",
3513 IPP_TAG_ZERO) &&
0268488e 3514 !ippFindAttribute(job->attrs, "APPrinterPreset", IPP_TAG_ZERO) &&
5a9febac 3515 (ippFindAttribute(job->attrs, "print-color-mode", IPP_TAG_ZERO) ||
7cf5915e 3516 ippFindAttribute(job->attrs, "print-quality", IPP_TAG_ZERO)))
c7017ecc 3517 {
7cf5915e 3518 /*
5a9febac 3519 * Map print-color-mode and print-quality to a preset...
7cf5915e
MS
3520 */
3521
f14324a7 3522 if ((attr = ippFindAttribute(job->attrs, "print-color-mode",
5a9febac
MS
3523 IPP_TAG_KEYWORD)) != NULL &&
3524 !strcmp(attr->values[0].string.text, "monochrome"))
f14324a7 3525 print_color_mode = _PWG_PRINT_COLOR_MODE_MONOCHROME;
c7017ecc 3526 else
f14324a7 3527 print_color_mode = _PWG_PRINT_COLOR_MODE_COLOR;
c7017ecc
MS
3528
3529 if ((attr = ippFindAttribute(job->attrs, "print-quality",
10d09e33 3530 IPP_TAG_ENUM)) != NULL &&
c7017ecc
MS
3531 attr->values[0].integer >= IPP_QUALITY_DRAFT &&
3532 attr->values[0].integer <= IPP_QUALITY_HIGH)
3533 print_quality = attr->values[0].integer - IPP_QUALITY_DRAFT;
3534 else
030ae6a1 3535 print_quality = _PWG_PRINT_QUALITY_NORMAL;
c7017ecc 3536
f14324a7 3537 if (pc->num_presets[print_color_mode][print_quality] == 0)
c7017ecc
MS
3538 {
3539 /*
3540 * Try to find a preset that works so that we maximize the chances of us
3541 * getting a good print using IPP attributes.
3542 */
3543
f14324a7 3544 if (pc->num_presets[print_color_mode][_PWG_PRINT_QUALITY_NORMAL] > 0)
c7017ecc 3545 print_quality = _PWG_PRINT_QUALITY_NORMAL;
f14324a7
MS
3546 else if (pc->num_presets[_PWG_PRINT_COLOR_MODE_COLOR][print_quality] > 0)
3547 print_color_mode = _PWG_PRINT_COLOR_MODE_COLOR;
c7017ecc
MS
3548 else
3549 {
f14324a7
MS
3550 print_quality = _PWG_PRINT_QUALITY_NORMAL;
3551 print_color_mode = _PWG_PRINT_COLOR_MODE_COLOR;
c7017ecc
MS
3552 }
3553 }
3554
f14324a7 3555 if (pc->num_presets[print_color_mode][print_quality] > 0)
c7017ecc
MS
3556 {
3557 /*
3558 * Copy the preset options as long as the corresponding names are not
3559 * already defined in the IPP request...
3560 */
3561
f14324a7
MS
3562 for (i = pc->num_presets[print_color_mode][print_quality],
3563 preset = pc->presets[print_color_mode][print_quality];
c7017ecc
MS
3564 i > 0;
3565 i --, preset ++)
3566 {
3567 if (!ippFindAttribute(job->attrs, preset->name, IPP_TAG_ZERO))
3568 num_pwgppds = cupsAddOption(preset->name, preset->value, num_pwgppds,
3569 &pwgppds);
3570 }
3571 }
7cf5915e 3572 }
c7017ecc 3573
f14324a7 3574 if (pc)
7cf5915e 3575 {
4220952d
MS
3576 if (!ippFindAttribute(job->attrs, "InputSlot", IPP_TAG_ZERO) &&
3577 !ippFindAttribute(job->attrs, "HPPaperSource", IPP_TAG_ZERO))
3578 {
f14324a7
MS
3579 if ((ppd = _ppdCacheGetInputSlot(pc, job->attrs, NULL)) != NULL)
3580 num_pwgppds = cupsAddOption(pc->source_option, ppd, num_pwgppds,
4220952d 3581 &pwgppds);
4220952d 3582 }
4220952d 3583 if (!ippFindAttribute(job->attrs, "MediaType", IPP_TAG_ZERO) &&
f14324a7 3584 (ppd = _ppdCacheGetMediaType(pc, job->attrs, NULL)) != NULL)
4220952d 3585 num_pwgppds = cupsAddOption("MediaType", ppd, num_pwgppds, &pwgppds);
c7017ecc 3586
4220952d
MS
3587 if (!ippFindAttribute(job->attrs, "PageRegion", IPP_TAG_ZERO) &&
3588 !ippFindAttribute(job->attrs, "PageSize", IPP_TAG_ZERO) &&
f14324a7 3589 (ppd = _ppdCacheGetPageSize(pc, job->attrs, NULL, &exact)) != NULL)
030ae6a1 3590 {
4220952d 3591 num_pwgppds = cupsAddOption("PageSize", ppd, num_pwgppds, &pwgppds);
c7017ecc 3592
030ae6a1
MS
3593 if (!ippFindAttribute(job->attrs, "media", IPP_TAG_ZERO))
3594 num_pwgppds = cupsAddOption("media", ppd, num_pwgppds, &pwgppds);
3595 }
3596
4220952d
MS
3597 if (!ippFindAttribute(job->attrs, "OutputBin", IPP_TAG_ZERO) &&
3598 (attr = ippFindAttribute(job->attrs, "output-bin",
3599 IPP_TAG_ZERO)) != NULL &&
3600 (attr->value_tag == IPP_TAG_KEYWORD ||
3601 attr->value_tag == IPP_TAG_NAME) &&
f14324a7 3602 (ppd = _ppdCacheGetOutputBin(pc, attr->values[0].string.text)) != NULL)
0268488e
MS
3603 {
3604 /*
3605 * Map output-bin to OutputBin option...
3606 */
3607
4220952d 3608 num_pwgppds = cupsAddOption("OutputBin", ppd, num_pwgppds, &pwgppds);
0268488e
MS
3609 }
3610
f14324a7
MS
3611 if (pc->sides_option &&
3612 !ippFindAttribute(job->attrs, pc->sides_option, IPP_TAG_ZERO) &&
0268488e
MS
3613 (attr = ippFindAttribute(job->attrs, "sides", IPP_TAG_KEYWORD)) != NULL)
3614 {
3615 /*
3616 * Map sides to duplex option...
3617 */
3618
3619 if (!strcmp(attr->values[0].string.text, "one-sided"))
f14324a7 3620 num_pwgppds = cupsAddOption(pc->sides_option, pc->sides_1sided,
0268488e
MS
3621 num_pwgppds, &pwgppds);
3622 else if (!strcmp(attr->values[0].string.text, "two-sided-long-edge"))
f14324a7 3623 num_pwgppds = cupsAddOption(pc->sides_option, pc->sides_2sided_long,
0268488e
MS
3624 num_pwgppds, &pwgppds);
3625 else if (!strcmp(attr->values[0].string.text, "two-sided-short-edge"))
f14324a7 3626 num_pwgppds = cupsAddOption(pc->sides_option, pc->sides_2sided_short,
0268488e
MS
3627 num_pwgppds, &pwgppds);
3628 }
dcb445bc
MS
3629
3630 /*
3631 * Map finishings values...
3632 */
3633
3634 num_pwgppds = _ppdCacheGetFinishingOptions(pc, job->attrs,
3635 IPP_FINISHINGS_NONE, num_pwgppds,
3636 &pwgppds);
4220952d 3637 }
c7017ecc
MS
3638
3639 /*
3640 * Figure out how much room we need...
3641 */
3642
3643 newlength = ipp_length(job->attrs);
3644
3645 for (i = num_pwgppds, pwgppd = pwgppds; i > 0; i --, pwgppd ++)
3646 newlength += 1 + strlen(pwgppd->name) + 1 + strlen(pwgppd->value);
3647
3648 /*
3649 * Then allocate/reallocate the option buffer as needed...
3650 */
3651
85dda01c
MS
3652 if (newlength == 0) /* This can never happen, but Clang */
3653 newlength = 1; /* thinks it can... */
3654
c7017ecc 3655 if (newlength > optlength || !options)
e1d6a774 3656 {
b9faaae1 3657 if (!options)
c7017ecc 3658 optptr = malloc(newlength);
e1d6a774 3659 else
c7017ecc 3660 optptr = realloc(options, newlength);
ef416fc2 3661
b9faaae1 3662 if (!optptr)
e1d6a774 3663 {
75bd9771 3664 cupsdLogJob(job, CUPSD_LOG_CRIT,
12f89d24 3665 "Unable to allocate " CUPS_LLFMT " bytes for option buffer.",
c7017ecc 3666 CUPS_LLCAST newlength);
b9faaae1 3667 return (NULL);
e1d6a774 3668 }
ef416fc2 3669
e1d6a774 3670 options = optptr;
c7017ecc 3671 optlength = newlength;
e1d6a774 3672 }
ef416fc2 3673
e1d6a774 3674 /*
3675 * Now loop through the attributes and convert them to the textual
3676 * representation used by the filters...
3677 */
ef416fc2 3678
e1d6a774 3679 optptr = options;
3680 *optptr = '\0';
bd7854cb 3681
1340db2d
MS
3682 snprintf(title, title_size, "%s-%d", job->printer->name, job->id);
3683 strlcpy(copies, "1", copies_size);
bd7854cb 3684
e1d6a774 3685 for (attr = job->attrs->attrs; attr != NULL; attr = attr->next)
bd7854cb 3686 {
e1d6a774 3687 if (!strcmp(attr->name, "copies") &&
3688 attr->value_tag == IPP_TAG_INTEGER)
3689 {
3690 /*
3691 * Don't use the # copies attribute if we are printing the job sheets...
3692 */
bd7854cb 3693
e1d6a774 3694 if (!banner_page)
1340db2d 3695 snprintf(copies, copies_size, "%d", attr->values[0].integer);
e1d6a774 3696 }
3697 else if (!strcmp(attr->name, "job-name") &&
3698 (attr->value_tag == IPP_TAG_NAME ||
3699 attr->value_tag == IPP_TAG_NAMELANG))
1340db2d 3700 strlcpy(title, attr->values[0].string.text, title_size);
e1d6a774 3701 else if (attr->group_tag == IPP_TAG_JOB)
3702 {
3703 /*
3704 * Filter out other unwanted attributes...
3705 */
bd7854cb 3706
c7017ecc
MS
3707 if (attr->value_tag == IPP_TAG_NOVALUE ||
3708 attr->value_tag == IPP_TAG_MIMETYPE ||
e1d6a774 3709 attr->value_tag == IPP_TAG_NAMELANG ||
3710 attr->value_tag == IPP_TAG_TEXTLANG ||
db8b865d
MS
3711 (attr->value_tag == IPP_TAG_URI && strcmp(attr->name, "job-uuid") &&
3712 strcmp(attr->name, "job-authorization-uri")) ||
e1d6a774 3713 attr->value_tag == IPP_TAG_URISCHEME ||
3714 attr->value_tag == IPP_TAG_BEGIN_COLLECTION) /* Not yet supported */
3715 continue;
bd7854cb 3716
5a9febac
MS
3717 if (!strcmp(attr->name, "job-hold-until") ||
3718 !strcmp(attr->name, "job-id") ||
3719 !strcmp(attr->name, "job-k-octets") ||
3720 !strcmp(attr->name, "job-media-sheets") ||
3721 !strcmp(attr->name, "job-media-sheets-completed") ||
3722 !strcmp(attr->name, "job-state") ||
3723 !strcmp(attr->name, "job-state-reasons"))
e1d6a774 3724 continue;
bd7854cb 3725
e1d6a774 3726 if (!strncmp(attr->name, "job-", 4) &&
5a9febac
MS
3727 strcmp(attr->name, "job-account-id") &&
3728 strcmp(attr->name, "job-accounting-user-id") &&
a469f8a5 3729 strcmp(attr->name, "job-authorization-uri") &&
e4572d57 3730 strcmp(attr->name, "job-billing") &&
5d6412a9 3731 strcmp(attr->name, "job-impressions") &&
c5571a1d 3732 strcmp(attr->name, "job-originating-host-name") &&
5a9febac 3733 strcmp(attr->name, "job-password") &&
a469f8a5 3734 strcmp(attr->name, "job-password-encryption") &&
e4572d57 3735 strcmp(attr->name, "job-uuid") &&
b9faaae1 3736 !(job->printer->type & CUPS_PRINTER_REMOTE))
e1d6a774 3737 continue;
ef416fc2 3738
5d6412a9
MS
3739 if ((!strcmp(attr->name, "job-impressions") ||
3740 !strcmp(attr->name, "page-label") ||
e1d6a774 3741 !strcmp(attr->name, "page-border") ||
3742 !strncmp(attr->name, "number-up", 9) ||
b94498cf 3743 !strcmp(attr->name, "page-ranges") ||
e1d6a774 3744 !strcmp(attr->name, "page-set") ||
88f9aafc
MS
3745 !_cups_strcasecmp(attr->name, "AP_FIRSTPAGE_InputSlot") ||
3746 !_cups_strcasecmp(attr->name, "AP_FIRSTPAGE_ManualFeed") ||
3747 !_cups_strcasecmp(attr->name, "com.apple.print.PrintSettings."
db1f069b 3748 "PMTotalSidesImaged..n.") ||
88f9aafc 3749 !_cups_strcasecmp(attr->name, "com.apple.print.PrintSettings."
db1f069b 3750 "PMTotalBeginPages..n.")) &&
e1d6a774 3751 banner_page)
3752 continue;
ef416fc2 3753
e1d6a774 3754 /*
3755 * Otherwise add them to the list...
3756 */
ef416fc2 3757
e1d6a774 3758 if (optptr > options)
3759 strlcat(optptr, " ", optlength - (optptr - options));
ef416fc2 3760
e1d6a774 3761 if (attr->value_tag != IPP_TAG_BOOLEAN)
3762 {
3763 strlcat(optptr, attr->name, optlength - (optptr - options));
3764 strlcat(optptr, "=", optlength - (optptr - options));
3765 }
ef416fc2 3766
e1d6a774 3767 for (i = 0; i < attr->num_values; i ++)
3768 {
3769 if (i)
3770 strlcat(optptr, ",", optlength - (optptr - options));
ef416fc2 3771
e1d6a774 3772 optptr += strlen(optptr);
ef416fc2 3773
e1d6a774 3774 switch (attr->value_tag)
3775 {
3776 case IPP_TAG_INTEGER :
3777 case IPP_TAG_ENUM :
3778 snprintf(optptr, optlength - (optptr - options),
3779 "%d", attr->values[i].integer);
3780 break;
ef416fc2 3781
e1d6a774 3782 case IPP_TAG_BOOLEAN :
3783 if (!attr->values[i].boolean)
3784 strlcat(optptr, "no", optlength - (optptr - options));
ef416fc2 3785
4220952d
MS
3786 strlcat(optptr, attr->name,
3787 optlength - (optptr - options));
3788 break;
3789
e1d6a774 3790 case IPP_TAG_RANGE :
3791 if (attr->values[i].range.lower == attr->values[i].range.upper)
3792 snprintf(optptr, optlength - (optptr - options) - 1,
3793 "%d", attr->values[i].range.lower);
3794 else
3795 snprintf(optptr, optlength - (optptr - options) - 1,
3796 "%d-%d", attr->values[i].range.lower,
3797 attr->values[i].range.upper);
3798 break;
ef416fc2 3799
e1d6a774 3800 case IPP_TAG_RESOLUTION :
3801 snprintf(optptr, optlength - (optptr - options) - 1,
3802 "%dx%d%s", attr->values[i].resolution.xres,
3803 attr->values[i].resolution.yres,
3804 attr->values[i].resolution.units == IPP_RES_PER_INCH ?
3e7fe0ca 3805 "dpi" : "dpcm");
e1d6a774 3806 break;
ef416fc2 3807
e1d6a774 3808 case IPP_TAG_STRING :
3809 case IPP_TAG_TEXT :
3810 case IPP_TAG_NAME :
3811 case IPP_TAG_KEYWORD :
3812 case IPP_TAG_CHARSET :
3813 case IPP_TAG_LANGUAGE :
3814 case IPP_TAG_URI :
3815 for (valptr = attr->values[i].string.text; *valptr;)
3816 {
3817 if (strchr(" \t\n\\\'\"", *valptr))
3818 *optptr++ = '\\';
3819 *optptr++ = *valptr++;
3820 }
3821
3822 *optptr = '\0';
3823 break;
3824
3825 default :
3826 break; /* anti-compiler-warning-code */
3827 }
3828 }
3829
3830 optptr += strlen(optptr);
3831 }
3832 }
3833
c7017ecc
MS
3834 /*
3835 * Finally loop through the PWG->PPD mapped options and add them...
3836 */
3837
3838 for (i = num_pwgppds, pwgppd = pwgppds; i > 0; i --, pwgppd ++)
3839 {
3840 *optptr++ = ' ';
5a9febac 3841 strlcpy(optptr, pwgppd->name, optlength - (optptr - options));
c7017ecc
MS
3842 optptr += strlen(optptr);
3843 *optptr++ = '=';
5a9febac 3844 strlcpy(optptr, pwgppd->value, optlength - (optptr - options));
c7017ecc
MS
3845 optptr += strlen(optptr);
3846 }
3847
3848 cupsFreeOptions(num_pwgppds, pwgppds);
3849
3850 /*
3851 * Return the options string...
3852 */
b9faaae1
MS
3853
3854 return (options);
3855}
3856
3857
3858/*
3859 * 'ipp_length()' - Compute the size of the buffer needed to hold
3860 * the textual IPP attributes.
3861 */
3862
c7017ecc 3863static size_t /* O - Size of attribute buffer */
b9faaae1
MS
3864ipp_length(ipp_t *ipp) /* I - IPP request */
3865{
c7017ecc 3866 size_t bytes; /* Number of bytes */
b9faaae1
MS
3867 int i; /* Looping var */
3868 ipp_attribute_t *attr; /* Current attribute */
3869
3870
3871 /*
3872 * Loop through all attributes...
e1d6a774 3873 */
3874
b9faaae1 3875 bytes = 0;
e1d6a774 3876
b9faaae1 3877 for (attr = ipp->attrs; attr != NULL; attr = attr->next)
91c84a35 3878 {
b9faaae1
MS
3879 /*
3880 * Skip attributes that won't be sent to filters...
3881 */
91c84a35 3882
c7017ecc
MS
3883 if (attr->value_tag == IPP_TAG_NOVALUE ||
3884 attr->value_tag == IPP_TAG_MIMETYPE ||
b9faaae1
MS
3885 attr->value_tag == IPP_TAG_NAMELANG ||
3886 attr->value_tag == IPP_TAG_TEXTLANG ||
3887 attr->value_tag == IPP_TAG_URI ||
3888 attr->value_tag == IPP_TAG_URISCHEME)
3889 continue;
91c84a35 3890
b9faaae1
MS
3891 /*
3892 * Add space for a leading space and commas between each value.
3893 * For the first attribute, the leading space isn't used, so the
3894 * extra byte can be used as the nul terminator...
3895 */
e1d6a774 3896
b9faaae1
MS
3897 bytes ++; /* " " separator */
3898 bytes += attr->num_values; /* "," separators */
e1d6a774 3899
b9faaae1
MS
3900 /*
3901 * Boolean attributes appear as "foo,nofoo,foo,nofoo", while
3902 * other attributes appear as "foo=value1,value2,...,valueN".
3903 */
3904
3905 if (attr->value_tag != IPP_TAG_BOOLEAN)
3906 bytes += strlen(attr->name);
3907 else
3908 bytes += attr->num_values * strlen(attr->name);
3909
3910 /*
3911 * Now add the size required for each value in the attribute...
3912 */
3913
3914 switch (attr->value_tag)
ef416fc2 3915 {
b9faaae1
MS
3916 case IPP_TAG_INTEGER :
3917 case IPP_TAG_ENUM :
3918 /*
3919 * Minimum value of a signed integer is -2147483647, or 11 digits.
3920 */
3921
3922 bytes += attr->num_values * 11;
3923 break;
3924
3925 case IPP_TAG_BOOLEAN :
3926 /*
3927 * Add two bytes for each false ("no") value...
3928 */
3929
3930 for (i = 0; i < attr->num_values; i ++)
3931 if (!attr->values[i].boolean)
3932 bytes += 2;
3933 break;
3934
3935 case IPP_TAG_RANGE :
3936 /*
3937 * A range is two signed integers separated by a hyphen, or
3938 * 23 characters max.
3939 */
3940
3941 bytes += attr->num_values * 23;
3942 break;
3943
3944 case IPP_TAG_RESOLUTION :
3945 /*
3946 * A resolution is two signed integers separated by an "x" and
3947 * suffixed by the units, or 26 characters max.
3948 */
3949
3950 bytes += attr->num_values * 26;
3951 break;
3952
3953 case IPP_TAG_STRING :
3954 case IPP_TAG_TEXT :
3955 case IPP_TAG_NAME :
3956 case IPP_TAG_KEYWORD :
3957 case IPP_TAG_CHARSET :
3958 case IPP_TAG_LANGUAGE :
3959 case IPP_TAG_URI :
3960 /*
3961 * Strings can contain characters that need quoting. We need
3962 * at least 2 * len + 2 characters to cover the quotes and
3963 * any backslashes in the string.
3964 */
3965
3966 for (i = 0; i < attr->num_values; i ++)
3967 bytes += 2 * strlen(attr->values[i].string.text) + 2;
3968 break;
3969
3970 default :
3971 break; /* anti-compiler-warning-code */
e1d6a774 3972 }
3973 }
b9faaae1
MS
3974
3975 return (bytes);
3976}
3977
3978
3979/*
3980 * 'load_job_cache()' - Load jobs from the job.cache file.
3981 */
3982
3983static void
3984load_job_cache(const char *filename) /* I - job.cache filename */
3985{
3986 cups_file_t *fp; /* job.cache file */
3987 char line[1024], /* Line buffer */
3988 *value; /* Value on line */
3989 int linenum; /* Line number in file */
3990 cupsd_job_t *job; /* Current job */
3991 int jobid; /* Job ID */
3992 char jobfile[1024]; /* Job filename */
3993
3994
3995 /*
3996 * Open the job.cache file...
3997 */
3998
321d8d57 3999 if ((fp = cupsdOpenConfFile(filename)) == NULL)
e1d6a774 4000 {
b9faaae1 4001 load_request_root();
b9faaae1
MS
4002 return;
4003 }
ef416fc2 4004
e1d6a774 4005 /*
b9faaae1 4006 * Read entries from the job cache file and create jobs as needed.
e1d6a774 4007 */
ef416fc2 4008
b9faaae1
MS
4009 cupsdLogMessage(CUPSD_LOG_INFO, "Loading job cache file \"%s\"...",
4010 filename);
ef416fc2 4011
b9faaae1
MS
4012 linenum = 0;
4013 job = NULL;
4014
4015 while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
4016 {
88f9aafc 4017 if (!_cups_strcasecmp(line, "NextJobId"))
b9faaae1
MS
4018 {
4019 if (value)
4020 NextJobId = atoi(value);
4021 }
88f9aafc 4022 else if (!_cups_strcasecmp(line, "<Job"))
b9faaae1
MS
4023 {
4024 if (job)
4025 {
12f89d24 4026 cupsdLogMessage(CUPSD_LOG_ERROR, "Missing </Job> directive on line %d.",
b9faaae1
MS
4027 linenum);
4028 continue;
4029 }
4030
4031 if (!value)
4032 {
12f89d24 4033 cupsdLogMessage(CUPSD_LOG_ERROR, "Missing job ID on line %d.", linenum);
b9faaae1
MS
4034 continue;
4035 }
4036
4037 jobid = atoi(value);
4038
4039 if (jobid < 1)
4040 {
12f89d24 4041 cupsdLogMessage(CUPSD_LOG_ERROR, "Bad job ID %d on line %d.", jobid,
b9faaae1
MS
4042 linenum);
4043 continue;
4044 }
4045
4046 snprintf(jobfile, sizeof(jobfile), "%s/c%05d", RequestRoot, jobid);
4047 if (access(jobfile, 0))
4048 {
321d8d57
MS
4049 snprintf(jobfile, sizeof(jobfile), "%s/c%05d.N", RequestRoot, jobid);
4050 if (access(jobfile, 0))
4051 {
12f89d24 4052 cupsdLogMessage(CUPSD_LOG_ERROR, "[Job %d] Files have gone away.",
321d8d57
MS
4053 jobid);
4054 continue;
4055 }
b9faaae1
MS
4056 }
4057
4058 job = calloc(1, sizeof(cupsd_job_t));
4059 if (!job)
4060 {
4061 cupsdLogMessage(CUPSD_LOG_EMERG,
12f89d24 4062 "[Job %d] Unable to allocate memory for job.", jobid);
b9faaae1
MS
4063 break;
4064 }
4065
4066 job->id = jobid;
4067 job->back_pipes[0] = -1;
4068 job->back_pipes[1] = -1;
4069 job->print_pipes[0] = -1;
4070 job->print_pipes[1] = -1;
4071 job->side_pipes[0] = -1;
4072 job->side_pipes[1] = -1;
4073 job->status_pipes[0] = -1;
4074 job->status_pipes[1] = -1;
4075
4076 cupsdLogMessage(CUPSD_LOG_DEBUG, "[Job %d] Loading from cache...",
4077 job->id);
4078 }
4079 else if (!job)
4080 {
4081 cupsdLogMessage(CUPSD_LOG_ERROR,
12f89d24 4082 "Missing <Job #> directive on line %d.", linenum);
b9faaae1
MS
4083 continue;
4084 }
88f9aafc 4085 else if (!_cups_strcasecmp(line, "</Job>"))
b9faaae1
MS
4086 {
4087 cupsArrayAdd(Jobs, job);
4088
f701418f
MS
4089 if (job->state_value <= IPP_JOB_STOPPED && cupsdLoadJob(job))
4090 cupsArrayAdd(ActiveJobs, job);
b9faaae1
MS
4091
4092 job = NULL;
4093 }
4094 else if (!value)
4095 {
12f89d24 4096 cupsdLogMessage(CUPSD_LOG_ERROR, "Missing value on line %d.", linenum);
b9faaae1
MS
4097 continue;
4098 }
88f9aafc 4099 else if (!_cups_strcasecmp(line, "State"))
b9faaae1
MS
4100 {
4101 job->state_value = (ipp_jstate_t)atoi(value);
4102
4103 if (job->state_value < IPP_JOB_PENDING)
4104 job->state_value = IPP_JOB_PENDING;
4105 else if (job->state_value > IPP_JOB_COMPLETED)
4106 job->state_value = IPP_JOB_COMPLETED;
4107 }
88f9aafc 4108 else if (!_cups_strcasecmp(line, "HoldUntil"))
8b116e60
MS
4109 {
4110 job->hold_until = atoi(value);
4111 }
88f9aafc 4112 else if (!_cups_strcasecmp(line, "Priority"))
b9faaae1
MS
4113 {
4114 job->priority = atoi(value);
4115 }
88f9aafc 4116 else if (!_cups_strcasecmp(line, "Username"))
b9faaae1
MS
4117 {
4118 cupsdSetString(&job->username, value);
4119 }
88f9aafc 4120 else if (!_cups_strcasecmp(line, "Destination"))
b9faaae1
MS
4121 {
4122 cupsdSetString(&job->dest, value);
4123 }
88f9aafc 4124 else if (!_cups_strcasecmp(line, "DestType"))
b9faaae1
MS
4125 {
4126 job->dtype = (cups_ptype_t)atoi(value);
4127 }
88f9aafc 4128 else if (!_cups_strcasecmp(line, "NumFiles"))
b9faaae1
MS
4129 {
4130 job->num_files = atoi(value);
4131
4132 if (job->num_files < 0)
4133 {
12f89d24 4134 cupsdLogMessage(CUPSD_LOG_ERROR, "Bad NumFiles value %d on line %d.",
b9faaae1
MS
4135 job->num_files, linenum);
4136 job->num_files = 0;
4137 continue;
4138 }
4139
4140 if (job->num_files > 0)
4141 {
4142 snprintf(jobfile, sizeof(jobfile), "%s/d%05d-001", RequestRoot,
4143 job->id);
4144 if (access(jobfile, 0))
4145 {
12f89d24 4146 cupsdLogMessage(CUPSD_LOG_INFO, "[Job %d] Data files have gone away.",
b9faaae1
MS
4147 job->id);
4148 job->num_files = 0;
4149 continue;
4150 }
4151
4152 job->filetypes = calloc(job->num_files, sizeof(mime_type_t *));
4153 job->compressions = calloc(job->num_files, sizeof(int));
4154
4155 if (!job->filetypes || !job->compressions)
4156 {
4157 cupsdLogMessage(CUPSD_LOG_EMERG,
12f89d24 4158 "[Job %d] Unable to allocate memory for %d files.",
b9faaae1
MS
4159 job->id, job->num_files);
4160 break;
4161 }
4162 }
4163 }
88f9aafc 4164 else if (!_cups_strcasecmp(line, "File"))
b9faaae1
MS
4165 {
4166 int number, /* File number */
4167 compression; /* Compression value */
4168 char super[MIME_MAX_SUPER], /* MIME super type */
4169 type[MIME_MAX_TYPE]; /* MIME type */
4170
4171
4172 if (sscanf(value, "%d%*[ \t]%15[^/]/%255s%d", &number, super, type,
4173 &compression) != 4)
4174 {
12f89d24 4175 cupsdLogMessage(CUPSD_LOG_ERROR, "Bad File on line %d.", linenum);
b9faaae1
MS
4176 continue;
4177 }
4178
4179 if (number < 1 || number > job->num_files)
4180 {
12f89d24 4181 cupsdLogMessage(CUPSD_LOG_ERROR, "Bad File number %d on line %d.",
b9faaae1
MS
4182 number, linenum);
4183 continue;
4184 }
0a682745 4185
b9faaae1 4186 number --;
ef416fc2 4187
b9faaae1
MS
4188 job->compressions[number] = compression;
4189 job->filetypes[number] = mimeType(MimeDatabase, super, type);
ef416fc2 4190
b9faaae1
MS
4191 if (!job->filetypes[number])
4192 {
e1d6a774 4193 /*
b9faaae1 4194 * If the original MIME type is unknown, auto-type it!
e1d6a774 4195 */
ef416fc2 4196
b9faaae1 4197 cupsdLogMessage(CUPSD_LOG_ERROR,
12f89d24 4198 "[Job %d] Unknown MIME type %s/%s for file %d.",
b9faaae1
MS
4199 job->id, super, type, number + 1);
4200
4201 snprintf(jobfile, sizeof(jobfile), "%s/d%05d-%03d", RequestRoot,
4202 job->id, number + 1);
4203 job->filetypes[number] = mimeFileType(MimeDatabase, jobfile, NULL,
4204 job->compressions + number);
ef416fc2 4205
e1d6a774 4206 /*
b9faaae1 4207 * If that didn't work, assume it is raw...
e1d6a774 4208 */
ef416fc2 4209
b9faaae1
MS
4210 if (!job->filetypes[number])
4211 job->filetypes[number] = mimeType(MimeDatabase, "application",
4212 "vnd.cups-raw");
4213 }
4214 }
4215 else
12f89d24 4216 cupsdLogMessage(CUPSD_LOG_ERROR, "Unknown %s directive on line %d.",
b9faaae1 4217 line, linenum);
ef416fc2 4218 }
4219
cb7f98ee
MS
4220 if (job)
4221 {
4222 cupsdLogMessage(CUPSD_LOG_ERROR,
4223 "Missing </Job> directive on line %d.", linenum);
4224 cupsdDeleteJob(job, CUPSD_JOB_PURGE);
4225 }
4226
b9faaae1
MS
4227 cupsFileClose(fp);
4228}
ef416fc2 4229
4230
b9faaae1
MS
4231/*
4232 * 'load_next_job_id()' - Load the NextJobId value from the job.cache file.
4233 */
bd7854cb 4234
b9faaae1
MS
4235static void
4236load_next_job_id(const char *filename) /* I - job.cache filename */
4237{
4238 cups_file_t *fp; /* job.cache file */
4239 char line[1024], /* Line buffer */
4240 *value; /* Value on line */
4241 int linenum; /* Line number in file */
4242 int next_job_id; /* NextJobId value from line */
db0bd74a 4243
db0bd74a 4244
b9faaae1
MS
4245 /*
4246 * Read the NextJobId directive from the job.cache file and use
4247 * the value (if any).
4248 */
bd7854cb 4249
b9faaae1 4250 if ((fp = cupsFileOpen(filename, "r")) == NULL)
e1d6a774 4251 {
b9faaae1
MS
4252 if (errno != ENOENT)
4253 cupsdLogMessage(CUPSD_LOG_ERROR,
4254 "Unable to open job cache file \"%s\": %s",
4255 filename, strerror(errno));
bd7854cb 4256
b9faaae1 4257 return;
e1d6a774 4258 }
bd7854cb 4259
b9faaae1
MS
4260 cupsdLogMessage(CUPSD_LOG_INFO,
4261 "Loading NextJobId from job cache file \"%s\"...", filename);
4262
4263 linenum = 0;
4264
4265 while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
bd7854cb 4266 {
88f9aafc 4267 if (!_cups_strcasecmp(line, "NextJobId"))
b9faaae1
MS
4268 {
4269 if (value)
4270 {
4271 next_job_id = atoi(value);
4272
4273 if (next_job_id > NextJobId)
4274 NextJobId = next_job_id;
4275 }
4276 break;
4277 }
e1d6a774 4278 }
bd7854cb 4279
b9faaae1
MS
4280 cupsFileClose(fp);
4281}
09a101d6 4282
f7deaa1a 4283
b9faaae1
MS
4284/*
4285 * 'load_request_root()' - Load jobs from the RequestRoot directory.
4286 */
bd7854cb 4287
b9faaae1
MS
4288static void
4289load_request_root(void)
4290{
4291 cups_dir_t *dir; /* Directory */
4292 cups_dentry_t *dent; /* Directory entry */
4293 cupsd_job_t *job; /* New job */
e1d6a774 4294
bd7854cb 4295
4296 /*
b9faaae1 4297 * Open the requests directory...
bd7854cb 4298 */
4299
b9faaae1 4300 cupsdLogMessage(CUPSD_LOG_DEBUG, "Scanning %s for jobs...", RequestRoot);
bd7854cb 4301
b9faaae1 4302 if ((dir = cupsDirOpen(RequestRoot)) == NULL)
bd7854cb 4303 {
b9faaae1
MS
4304 cupsdLogMessage(CUPSD_LOG_ERROR,
4305 "Unable to open spool directory \"%s\": %s",
4306 RequestRoot, strerror(errno));
4307 return;
e1d6a774 4308 }
bd7854cb 4309
b9faaae1
MS
4310 /*
4311 * Read all the c##### files...
4312 */
bd7854cb 4313
b9faaae1
MS
4314 while ((dent = cupsDirRead(dir)) != NULL)
4315 if (strlen(dent->filename) >= 6 && dent->filename[0] == 'c')
bd7854cb 4316 {
b9faaae1
MS
4317 /*
4318 * Allocate memory for the job...
4319 */
bd7854cb 4320
b9faaae1 4321 if ((job = calloc(sizeof(cupsd_job_t), 1)) == NULL)
bd7854cb 4322 {
12f89d24 4323 cupsdLogMessage(CUPSD_LOG_ERROR, "Ran out of memory for jobs.");
b9faaae1
MS
4324 cupsDirClose(dir);
4325 return;
4326 }
bd7854cb 4327
b9faaae1
MS
4328 /*
4329 * Assign the job ID...
4330 */
bd7854cb 4331
b9faaae1
MS
4332 job->id = atoi(dent->filename + 1);
4333 job->back_pipes[0] = -1;
4334 job->back_pipes[1] = -1;
4335 job->print_pipes[0] = -1;
4336 job->print_pipes[1] = -1;
4337 job->side_pipes[0] = -1;
4338 job->side_pipes[1] = -1;
4339 job->status_pipes[0] = -1;
4340 job->status_pipes[1] = -1;
bd7854cb 4341
b9faaae1
MS
4342 if (job->id >= NextJobId)
4343 NextJobId = job->id + 1;
ed486911 4344
b9faaae1
MS
4345 /*
4346 * Load the job...
4347 */
ed486911 4348
f701418f
MS
4349 if (cupsdLoadJob(job))
4350 {
4351 /*
4352 * Insert the job into the array, sorting by job priority and ID...
4353 */
bd7854cb 4354
f701418f 4355 cupsArrayAdd(Jobs, job);
e1d6a774 4356
f701418f
MS
4357 if (job->state_value <= IPP_JOB_STOPPED)
4358 cupsArrayAdd(ActiveJobs, job);
4359 else
4360 unload_job(job);
4361 }
0fa6c7fa
MS
4362 else
4363 free(job);
bd7854cb 4364 }
bd7854cb 4365
b9faaae1
MS
4366 cupsDirClose(dir);
4367}
bd7854cb 4368
4369
82cc1f9a
MS
4370/*
4371 * 'remove_job_files()' - Remove the document files for a job.
4372 */
4373
4374static void
4375remove_job_files(cupsd_job_t *job) /* I - Job */
4376{
4377 int i; /* Looping var */
4378 char filename[1024]; /* Document filename */
4379
4380
4381 if (job->num_files <= 0)
4382 return;
4383
4384 for (i = 1; i <= job->num_files; i ++)
4385 {
4386 snprintf(filename, sizeof(filename), "%s/d%05d-%03d", RequestRoot,
4387 job->id, i);
cb7f98ee 4388 cupsdUnlinkOrRemoveFile(filename);
82cc1f9a
MS
4389 }
4390
4391 free(job->filetypes);
4392 free(job->compressions);
4393
4394 job->file_time = 0;
4395 job->num_files = 0;
4396 job->filetypes = NULL;
4397 job->compressions = NULL;
4398
4399 LastEvent |= CUPSD_EVENT_PRINTER_STATE_CHANGED;
4400}
4401
4402
4403/*
4404 * 'remove_job_history()' - Remove the control file for a job.
4405 */
4406
4407static void
4408remove_job_history(cupsd_job_t *job) /* I - Job */
4409{
4410 char filename[1024]; /* Control filename */
4411
4412
4413 /*
4414 * Remove the job info file...
4415 */
4416
4417 snprintf(filename, sizeof(filename), "%s/c%05d", RequestRoot,
4418 job->id);
cb7f98ee 4419 cupsdUnlinkOrRemoveFile(filename);
82cc1f9a
MS
4420
4421 LastEvent |= CUPSD_EVENT_PRINTER_STATE_CHANGED;
4422}
4423
4424
b9faaae1
MS
4425/*
4426 * 'set_time()' - Set one of the "time-at-xyz" attributes.
4427 */
bd7854cb 4428
b9faaae1
MS
4429static void
4430set_time(cupsd_job_t *job, /* I - Job to update */
4431 const char *name) /* I - Name of attribute */
4432{
4433 ipp_attribute_t *attr; /* Time attribute */
82cc1f9a
MS
4434 time_t curtime; /* Current time */
4435
bd7854cb 4436
82cc1f9a
MS
4437 curtime = time(NULL);
4438
4439 cupsdLogJob(job, CUPSD_LOG_DEBUG, "%s=%ld", name, (long)curtime);
bd7854cb 4440
b9faaae1
MS
4441 if ((attr = ippFindAttribute(job->attrs, name, IPP_TAG_ZERO)) != NULL)
4442 {
4443 attr->value_tag = IPP_TAG_INTEGER;
82cc1f9a
MS
4444 attr->values[0].integer = curtime;
4445 }
4446
4447 if (!strcmp(name, "time-at-completed"))
4448 {
0fa6c7fa 4449 if (JobHistory < INT_MAX && attr)
82cc1f9a
MS
4450 job->history_time = attr->values[0].integer + JobHistory;
4451 else
4452 job->history_time = INT_MAX;
4453
4454 if (job->history_time < JobHistoryUpdate || !JobHistoryUpdate)
4455 JobHistoryUpdate = job->history_time;
4456
0fa6c7fa 4457 if (JobFiles < INT_MAX && attr)
82cc1f9a
MS
4458 job->file_time = attr->values[0].integer + JobFiles;
4459 else
4460 job->file_time = INT_MAX;
4461
4462 if (job->file_time < JobHistoryUpdate || !JobHistoryUpdate)
4463 JobHistoryUpdate = job->file_time;
4464
4465 cupsdLogMessage(CUPSD_LOG_DEBUG2, "set_time: JobHistoryUpdate=%ld",
4466 (long)JobHistoryUpdate);
b9faaae1
MS
4467 }
4468}
bd7854cb 4469
e1d6a774 4470
b9faaae1
MS
4471/*
4472 * 'start_job()' - Start a print job.
4473 */
e1d6a774 4474
b9faaae1
MS
4475static void
4476start_job(cupsd_job_t *job, /* I - Job ID */
4477 cupsd_printer_t *printer) /* I - Printer to print job */
4478{
cb7f98ee
MS
4479 const char *filename; /* Support filename */
4480
4481
b9faaae1
MS
4482 cupsdLogMessage(CUPSD_LOG_DEBUG2, "start_job(job=%p(%d), printer=%p(%s))",
4483 job, job->id, printer, printer->name);
bd7854cb 4484
b9faaae1
MS
4485 /*
4486 * Make sure we have some files around before we try to print...
4487 */
bd7854cb 4488
b9faaae1
MS
4489 if (job->num_files == 0)
4490 {
12f89d24 4491 ippSetString(job->attrs, &job->reasons, 0, "aborted-by-system");
b9faaae1
MS
4492 cupsdSetJobState(job, IPP_JOB_ABORTED, CUPSD_JOB_DEFAULT,
4493 "Aborting job because it has no files.");
4494 return;
4495 }
bd7854cb 4496
b9faaae1
MS
4497 /*
4498 * Update the printer and job state to "processing"...
4499 */
bd7854cb 4500
b9faaae1
MS
4501 if (!cupsdLoadJob(job))
4502 return;
89d46774 4503
3e7fe0ca
MS
4504 if (!job->printer_message)
4505 job->printer_message = ippFindAttribute(job->attrs,
4506 "job-printer-state-message",
4507 IPP_TAG_TEXT);
88f9aafc
MS
4508 if (job->printer_message)
4509 cupsdSetString(&(job->printer_message->values[0].string.text), "");
4510
12f89d24 4511 ippSetString(job->attrs, &job->reasons, 0, "job-printing");
b9faaae1
MS
4512 cupsdSetJobState(job, IPP_JOB_PROCESSING, CUPSD_JOB_DEFAULT, NULL);
4513 cupsdSetPrinterState(printer, IPP_PRINTER_PROCESSING, 0);
07ed0e9a
MS
4514 cupsdSetPrinterReasons(printer, "-cups-remote-pending,"
4515 "cups-remote-pending-held,"
4516 "cups-remote-processing,"
4517 "cups-remote-stopped,"
4518 "cups-remote-canceled,"
4519 "cups-remote-aborted,"
4520 "cups-remote-completed");
f7deaa1a 4521
1340db2d
MS
4522 job->cost = 0;
4523 job->current_file = 0;
82cc1f9a
MS
4524 job->file_time = 0;
4525 job->history_time = 0;
1340db2d
MS
4526 job->progress = 0;
4527 job->printer = printer;
4528 printer->job = job;
f7deaa1a 4529
dcb445bc
MS
4530 if (MaxJobTime > 0)
4531 job->cancel_time = time(NULL) + MaxJobTime;
4532 else
4533 job->cancel_time = 0;
4534
cb7f98ee
MS
4535 /*
4536 * Check for support files...
4537 */
4538
4539 cupsdSetPrinterReasons(job->printer, "-cups-missing-filter-warning,"
4540 "cups-insecure-filter-warning");
4541
4542 if (printer->pc)
4543 {
4544 for (filename = (const char *)cupsArrayFirst(printer->pc->support_files);
4545 filename;
4546 filename = (const char *)cupsArrayNext(printer->pc->support_files))
4547 {
4548 if (_cupsFileCheck(filename, _CUPS_FILE_CHECK_FILE, !RunUser,
4549 cupsdLogFCMessage, printer))
4550 break;
4551 }
4552 }
4553
b9faaae1
MS
4554 /*
4555 * Setup the last exit status and security profiles...
4556 */
89d46774 4557
b9faaae1
MS
4558 job->status = 0;
4559 job->profile = cupsdCreateProfile(job->id);
bd7854cb 4560
b9faaae1
MS
4561 /*
4562 * Create the status pipes and buffer...
4563 */
bd7854cb 4564
b9faaae1
MS
4565 if (cupsdOpenPipe(job->status_pipes))
4566 {
4567 cupsdLogJob(job, CUPSD_LOG_DEBUG,
4568 "Unable to create job status pipes - %s.", strerror(errno));
89d46774 4569
b9faaae1
MS
4570 cupsdSetJobState(job, IPP_JOB_STOPPED, CUPSD_JOB_DEFAULT,
4571 "Job stopped because the scheduler could not create the "
4572 "job status pipes.");
89d46774 4573
b9faaae1
MS
4574 cupsdDestroyProfile(job->profile);
4575 job->profile = NULL;
4576 return;
e1d6a774 4577 }
bd7854cb 4578
b9faaae1
MS
4579 job->status_buffer = cupsdStatBufNew(job->status_pipes[0], NULL);
4580 job->status_level = CUPSD_LOG_INFO;
4581
4582 /*
4583 * Create the backchannel pipes and make them non-blocking...
4584 */
bd7854cb 4585
b9faaae1 4586 if (cupsdOpenPipe(job->back_pipes))
e1d6a774 4587 {
b9faaae1
MS
4588 cupsdLogJob(job, CUPSD_LOG_DEBUG,
4589 "Unable to create back-channel pipes - %s.", strerror(errno));
4590
4591 cupsdSetJobState(job, IPP_JOB_STOPPED, CUPSD_JOB_DEFAULT,
4592 "Job stopped because the scheduler could not create the "
4593 "back-channel pipes.");
4594
4595 cupsdClosePipe(job->status_pipes);
4596 cupsdStatBufDelete(job->status_buffer);
4597 job->status_buffer = NULL;
4598
4599 cupsdDestroyProfile(job->profile);
4600 job->profile = NULL;
4601 return;
e1d6a774 4602 }
bd7854cb 4603
b9faaae1
MS
4604 fcntl(job->back_pipes[0], F_SETFL,
4605 fcntl(job->back_pipes[0], F_GETFL) | O_NONBLOCK);
4606 fcntl(job->back_pipes[1], F_SETFL,
4607 fcntl(job->back_pipes[1], F_GETFL) | O_NONBLOCK);
ef416fc2 4608
b9faaae1
MS
4609 /*
4610 * Create the side-channel pipes and make them non-blocking...
4611 */
ef416fc2 4612
b9faaae1
MS
4613 if (socketpair(AF_LOCAL, SOCK_STREAM, 0, job->side_pipes))
4614 {
4615 cupsdLogJob(job, CUPSD_LOG_DEBUG,
4616 "Unable to create side-channel pipes - %s.", strerror(errno));
ef416fc2 4617
b9faaae1
MS
4618 cupsdSetJobState(job, IPP_JOB_STOPPED, CUPSD_JOB_DEFAULT,
4619 "Job stopped because the scheduler could not create the "
4620 "side-channel pipes.");
ef416fc2 4621
b9faaae1
MS
4622 cupsdClosePipe(job->back_pipes);
4623
4624 cupsdClosePipe(job->status_pipes);
4625 cupsdStatBufDelete(job->status_buffer);
4626 job->status_buffer = NULL;
4627
4628 cupsdDestroyProfile(job->profile);
4629 job->profile = NULL;
4630 return;
4631 }
4632
4633 fcntl(job->side_pipes[0], F_SETFL,
4634 fcntl(job->side_pipes[0], F_GETFL) | O_NONBLOCK);
4635 fcntl(job->side_pipes[1], F_SETFL,
4636 fcntl(job->side_pipes[1], F_GETFL) | O_NONBLOCK);
ef416fc2 4637
7a0cbd5e
MS
4638 fcntl(job->side_pipes[0], F_SETFD,
4639 fcntl(job->side_pipes[0], F_GETFD) | FD_CLOEXEC);
4640 fcntl(job->side_pipes[1], F_SETFD,
4641 fcntl(job->side_pipes[1], F_GETFD) | FD_CLOEXEC);
4642
ef416fc2 4643 /*
b9faaae1 4644 * Now start the first file in the job...
ef416fc2 4645 */
4646
b9faaae1
MS
4647 cupsdContinueJob(job);
4648}
ef416fc2 4649
ef416fc2 4650
b9faaae1
MS
4651/*
4652 * 'stop_job()' - Stop a print job.
4653 */
ef416fc2 4654
b9faaae1
MS
4655static void
4656stop_job(cupsd_job_t *job, /* I - Job */
4657 cupsd_jobaction_t action) /* I - Action */
4658{
4659 int i; /* Looping var */
b94498cf 4660
ef416fc2 4661
b9faaae1
MS
4662 cupsdLogMessage(CUPSD_LOG_DEBUG2, "stop_job(job=%p(%d), action=%d)", job,
4663 job->id, action);
ef416fc2 4664
b9faaae1
MS
4665 FilterLevel -= job->cost;
4666 job->cost = 0;
ef416fc2 4667
238c3832
MS
4668 if (action == CUPSD_JOB_DEFAULT && !job->kill_time)
4669 job->kill_time = time(NULL) + JobKillDelay;
ef55b745 4670 else if (action >= CUPSD_JOB_FORCE)
238c3832
MS
4671 job->kill_time = 0;
4672
b9faaae1
MS
4673 for (i = 0; job->filters[i]; i ++)
4674 if (job->filters[i] > 0)
ef55b745
MS
4675 {
4676 cupsdEndProcess(job->filters[i], action >= CUPSD_JOB_FORCE);
4677
4678 if (action >= CUPSD_JOB_FORCE)
4679 job->filters[i] = -job->filters[i];
4680 }
b9faaae1
MS
4681
4682 if (job->backend > 0)
ef55b745
MS
4683 {
4684 cupsdEndProcess(job->backend, action >= CUPSD_JOB_FORCE);
4685
4686 if (action >= CUPSD_JOB_FORCE)
4687 job->backend = -job->backend;
4688 }
4689
4690 if (action >= CUPSD_JOB_FORCE)
4691 {
4692 /*
4693 * Clear job status...
4694 */
4695
4696 job->status = 0;
4697 }
e1d6a774 4698}
ef416fc2 4699
e1d6a774 4700
4701/*
4702 * 'unload_job()' - Unload a job from memory.
4703 */
4704
4705static void
4706unload_job(cupsd_job_t *job) /* I - Job */
4707{
4708 if (!job->attrs)
4709 return;
4710
ed6e7faf 4711 cupsdLogMessage(CUPSD_LOG_DEBUG, "[Job %d] Unloading...", job->id);
e1d6a774 4712
4713 ippDelete(job->attrs);
4714
cc0d019f
MS
4715 job->attrs = NULL;
4716 job->state = NULL;
12f89d24 4717 job->reasons = NULL;
cc0d019f
MS
4718 job->sheets = NULL;
4719 job->job_sheets = NULL;
4720 job->printer_message = NULL;
4721 job->printer_reasons = NULL;
ef416fc2 4722}
4723
4724
4725/*
f899b121 4726 * 'update_job()' - Read a status update from a job's filters.
4727 */
4728
4729void
09a101d6 4730update_job(cupsd_job_t *job) /* I - Job to check */
f899b121 4731{
4732 int i; /* Looping var */
4733 int copies; /* Number of copies printed */
178cb736
MS
4734 char message[CUPSD_SB_BUFFER_SIZE],
4735 /* Message text */
f899b121 4736 *ptr; /* Pointer update... */
4737 int loglevel, /* Log level for message */
4738 event = 0; /* Events? */
f0ab5bff
MS
4739 static const char * const levels[] = /* Log levels */
4740 {
4741 "NONE",
4742 "EMERG",
4743 "ALERT",
4744 "CRIT",
4745 "ERROR",
4746 "WARN",
4747 "NOTICE",
4748 "INFO",
4749 "DEBUG",
4750 "DEBUG2"
4751 };
f899b121 4752
4753
f0ab5bff
MS
4754 /*
4755 * Get the printer associated with this job; if the printer is stopped for
4756 * any reason then job->printer will be reset to NULL, so make sure we have
4757 * a valid pointer...
4758 */
4759
f899b121 4760 while ((ptr = cupsdStatBufUpdate(job->status_buffer, &loglevel,
4761 message, sizeof(message))) != NULL)
4762 {
4763 /*
4764 * Process page and printer state messages as needed...
4765 */
4766
4767 if (loglevel == CUPSD_LOG_PAGE)
4768 {
4769 /*
4770 * Page message; send the message to the page_log file and update the
4771 * job sheet count...
4772 */
4773
75bd9771 4774 cupsdLogJob(job, CUPSD_LOG_DEBUG, "PAGE: %s", message);
dd1abb6b 4775
91c84a35 4776 if (job->sheets)
f899b121 4777 {
88f9aafc 4778 if (!_cups_strncasecmp(message, "total ", 6))
f899b121 4779 {
4780 /*
4781 * Got a total count of pages from a backend or filter...
4782 */
4783
4784 copies = atoi(message + 6);
4785 copies -= job->sheets->values[0].integer; /* Just track the delta */
4786 }
4787 else if (!sscanf(message, "%*d%d", &copies))
4788 copies = 1;
4789
4790 job->sheets->values[0].integer += copies;
4791
b9faaae1 4792 if (job->printer->page_limit)
ba55dc12 4793 cupsdUpdateQuota(job->printer, job->username, copies, 0);
f899b121 4794 }
4795
4796 cupsdLogPage(job, message);
4797
91c84a35 4798 if (job->sheets)
b9faaae1 4799 cupsdAddEvent(CUPSD_EVENT_JOB_PROGRESS, job->printer, job,
91c84a35 4800 "Printed %d page(s).", job->sheets->values[0].integer);
f899b121 4801 }
a469f8a5
MS
4802 else if (loglevel == CUPSD_LOG_JOBSTATE)
4803 {
4804 /*
4805 * Support "keyword" to set job-state-reasons to the specified keyword.
4806 * This is sufficient for the current paid printing stuff.
4807 */
4808
4809 cupsdLogJob(job, CUPSD_LOG_DEBUG, "JOBSTATE: %s", message);
4810
4811 ippSetString(job->attrs, &job->reasons, 0, message);
4812 }
f899b121 4813 else if (loglevel == CUPSD_LOG_STATE)
4814 {
75bd9771 4815 cupsdLogJob(job, CUPSD_LOG_DEBUG, "STATE: %s", message);
dd1abb6b 4816
09a101d6 4817 if (!strcmp(message, "paused"))
c24d2134 4818 {
b9faaae1 4819 cupsdStopPrinter(job->printer, 1);
c24d2134
MS
4820 return;
4821 }
0fa6c7fa 4822 else if (message[0] && cupsdSetPrinterReasons(job->printer, message))
dcb445bc 4823 {
d9bca400 4824 event |= CUPSD_EVENT_PRINTER_STATE;
bc44d920 4825
dcb445bc
MS
4826 if (MaxJobTime > 0 && strstr(message, "connecting-to-device") != NULL)
4827 {
4828 /*
4829 * Reset cancel time after connecting to the device...
4830 */
4831
4832 for (i = 0; i < job->printer->num_reasons; i ++)
4833 if (!strcmp(job->printer->reasons[i], "connecting-to-device"))
4834 break;
4835
4836 if (i >= job->printer->num_reasons)
4837 job->cancel_time = time(NULL) + MaxJobTime;
4838 }
4839 }
4840
4509bb49 4841 update_job_attrs(job, 0);
f899b121 4842 }
4843 else if (loglevel == CUPSD_LOG_ATTR)
4844 {
4845 /*
4846 * Set attribute(s)...
4847 */
4848
4849 int num_attrs; /* Number of attributes */
4850 cups_option_t *attrs; /* Attributes */
4851 const char *attr; /* Attribute */
4852
75bd9771 4853 cupsdLogJob(job, CUPSD_LOG_DEBUG, "ATTR: %s", message);
dd1abb6b 4854
f899b121 4855 num_attrs = cupsParseOptions(message, 0, &attrs);
4856
5a9febac
MS
4857 if ((attr = cupsGetOption("auth-info-default", num_attrs,
4858 attrs)) != NULL)
4859 {
4860 job->printer->num_options = cupsAddOption("auth-info", attr,
4861 job->printer->num_options,
4862 &(job->printer->options));
4863 cupsdSetPrinterAttrs(job->printer);
4864
4865 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
4866 }
4867
f899b121 4868 if ((attr = cupsGetOption("auth-info-required", num_attrs,
4869 attrs)) != NULL)
7ff4fea9 4870 {
b9faaae1
MS
4871 cupsdSetAuthInfoRequired(job->printer, attr, NULL);
4872 cupsdSetPrinterAttrs(job->printer);
3dfe78b3 4873
a2326b5b 4874 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
7ff4fea9 4875 }
f899b121 4876
9a4f8274
MS
4877 if ((attr = cupsGetOption("job-media-progress", num_attrs,
4878 attrs)) != NULL)
4879 {
4880 int progress = atoi(attr);
4881
4882
4883 if (progress >= 0 && progress <= 100)
4884 {
4885 job->progress = progress;
4886
4887 if (job->sheets)
b9faaae1 4888 cupsdAddEvent(CUPSD_EVENT_JOB_PROGRESS, job->printer, job,
9a4f8274
MS
4889 "Printing page %d, %d%%",
4890 job->sheets->values[0].integer, job->progress);
4891 }
4892 }
4893
323c5de1 4894 if ((attr = cupsGetOption("printer-alert", num_attrs, attrs)) != NULL)
4895 {
b9faaae1 4896 cupsdSetString(&job->printer->alert, attr);
d9bca400 4897 event |= CUPSD_EVENT_PRINTER_STATE;
323c5de1 4898 }
4899
4900 if ((attr = cupsGetOption("printer-alert-description", num_attrs,
4901 attrs)) != NULL)
4902 {
b9faaae1 4903 cupsdSetString(&job->printer->alert_description, attr);
d9bca400 4904 event |= CUPSD_EVENT_PRINTER_STATE;
323c5de1 4905 }
4906
5a738aea
MS
4907 if ((attr = cupsGetOption("marker-colors", num_attrs, attrs)) != NULL)
4908 {
b9faaae1
MS
4909 cupsdSetPrinterAttr(job->printer, "marker-colors", (char *)attr);
4910 job->printer->marker_time = time(NULL);
5a738aea 4911 event |= CUPSD_EVENT_PRINTER_STATE;
52f6f666 4912 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
5a738aea
MS
4913 }
4914
4915 if ((attr = cupsGetOption("marker-levels", num_attrs, attrs)) != NULL)
4916 {
b9faaae1
MS
4917 cupsdSetPrinterAttr(job->printer, "marker-levels", (char *)attr);
4918 job->printer->marker_time = time(NULL);
5a738aea 4919 event |= CUPSD_EVENT_PRINTER_STATE;
52f6f666 4920 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
5a738aea
MS
4921 }
4922
ed6e7faf
MS
4923 if ((attr = cupsGetOption("marker-low-levels", num_attrs, attrs)) != NULL)
4924 {
b9faaae1
MS
4925 cupsdSetPrinterAttr(job->printer, "marker-low-levels", (char *)attr);
4926 job->printer->marker_time = time(NULL);
ed6e7faf
MS
4927 event |= CUPSD_EVENT_PRINTER_STATE;
4928 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
4929 }
4930
4931 if ((attr = cupsGetOption("marker-high-levels", num_attrs, attrs)) != NULL)
4932 {
b9faaae1
MS
4933 cupsdSetPrinterAttr(job->printer, "marker-high-levels", (char *)attr);
4934 job->printer->marker_time = time(NULL);
ed6e7faf
MS
4935 event |= CUPSD_EVENT_PRINTER_STATE;
4936 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
4937 }
4938
75bd9771
MS
4939 if ((attr = cupsGetOption("marker-message", num_attrs, attrs)) != NULL)
4940 {
b9faaae1
MS
4941 cupsdSetPrinterAttr(job->printer, "marker-message", (char *)attr);
4942 job->printer->marker_time = time(NULL);
75bd9771 4943 event |= CUPSD_EVENT_PRINTER_STATE;
52f6f666 4944 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
75bd9771
MS
4945 }
4946
5a738aea
MS
4947 if ((attr = cupsGetOption("marker-names", num_attrs, attrs)) != NULL)
4948 {
b9faaae1
MS
4949 cupsdSetPrinterAttr(job->printer, "marker-names", (char *)attr);
4950 job->printer->marker_time = time(NULL);
5a738aea 4951 event |= CUPSD_EVENT_PRINTER_STATE;
52f6f666 4952 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
5a738aea
MS
4953 }
4954
4955 if ((attr = cupsGetOption("marker-types", num_attrs, attrs)) != NULL)
4956 {
b9faaae1
MS
4957 cupsdSetPrinterAttr(job->printer, "marker-types", (char *)attr);
4958 job->printer->marker_time = time(NULL);
5a738aea 4959 event |= CUPSD_EVENT_PRINTER_STATE;
52f6f666 4960 cupsdMarkDirty(CUPSD_DIRTY_PRINTERS);
5a738aea
MS
4961 }
4962
f899b121 4963 cupsFreeOptions(num_attrs, attrs);
4964 }
c9fc04c6
MS
4965 else if (loglevel == CUPSD_LOG_PPD)
4966 {
4967 /*
4968 * Set attribute(s)...
4969 */
4970
75bd9771 4971 cupsdLogJob(job, CUPSD_LOG_DEBUG, "PPD: %s", message);
dd1abb6b 4972
a29fd7dd
MS
4973 job->num_keywords = cupsParseOptions(message, job->num_keywords,
4974 &job->keywords);
c9fc04c6 4975 }
4d301e69 4976 else
f899b121 4977 {
4d301e69
MS
4978 /*
4979 * Strip legacy message prefix...
4980 */
f899b121 4981
4d301e69 4982 if (!strncmp(message, "recoverable:", 12))
d2354e63 4983 {
4d301e69
MS
4984 ptr = message + 12;
4985 while (isspace(*ptr & 255))
4986 ptr ++;
d2354e63 4987 }
4d301e69 4988 else if (!strncmp(message, "recovered:", 10))
acb056cb 4989 {
4d301e69
MS
4990 ptr = message + 10;
4991 while (isspace(*ptr & 255))
4992 ptr ++;
acb056cb 4993 }
4d301e69
MS
4994 else
4995 ptr = message;
4996
dcb445bc
MS
4997 if (*ptr)
4998 cupsdLogJob(job, loglevel, "%s", ptr);
f899b121 4999
5180a04c
MS
5000 if (loglevel < CUPSD_LOG_DEBUG &&
5001 strcmp(job->printer->state_message, ptr))
1f0275e3 5002 {
4d301e69 5003 strlcpy(job->printer->state_message, ptr,
b9faaae1 5004 sizeof(job->printer->state_message));
4509bb49 5005
8b116e60 5006 event |= CUPSD_EVENT_PRINTER_STATE | CUPSD_EVENT_JOB_PROGRESS;
4509bb49 5007
229681c1 5008 if (loglevel <= job->status_level && job->status_level > CUPSD_LOG_ERROR)
1f0275e3
MS
5009 {
5010 /*
b9faaae1 5011 * Some messages show in the job-printer-state-message attribute...
1f0275e3 5012 */
09a101d6 5013
1f0275e3
MS
5014 if (loglevel != CUPSD_LOG_NOTICE)
5015 job->status_level = loglevel;
01ce6322 5016
1f0275e3 5017 update_job_attrs(job, 1);
f0ab5bff
MS
5018
5019 cupsdLogJob(job, CUPSD_LOG_DEBUG,
5020 "Set job-printer-state-message to \"%s\", "
5021 "current level=%s",
5022 job->printer_message->values[0].string.text,
5023 levels[job->status_level]);
1f0275e3 5024 }
75bd9771 5025 }
f899b121 5026 }
5027
5028 if (!strchr(job->status_buffer->buffer, '\n'))
5029 break;
5030 }
5031
f8b3a85b
MS
5032 if (event & CUPSD_EVENT_JOB_PROGRESS)
5033 cupsdAddEvent(CUPSD_EVENT_JOB_PROGRESS, job->printer, job,
5034 "%s", job->printer->state_message);
5180a04c 5035 if (event & CUPSD_EVENT_PRINTER_STATE)
b9faaae1
MS
5036 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, job->printer, NULL,
5037 (job->printer->type & CUPS_PRINTER_CLASS) ?
f899b121 5038 "Class \"%s\" state changed." :
5039 "Printer \"%s\" state changed.",
b9faaae1 5040 job->printer->name);
f899b121 5041
8b116e60 5042
f899b121 5043 if (ptr == NULL && !job->status_buffer->bufused)
5044 {
5045 /*
5046 * See if all of the filters and the backend have returned their
5047 * exit statuses.
5048 */
5049
5050 for (i = 0; job->filters[i] < 0; i ++);
5051
5052 if (job->filters[i])
d7871c8c
MS
5053 {
5054 /*
5055 * EOF but we haven't collected the exit status of all filters...
5056 */
5057
5058 cupsdCheckProcess();
f899b121 5059 return;
d7871c8c 5060 }
f899b121 5061
5062 if (job->current_file >= job->num_files && job->backend > 0)
d7871c8c
MS
5063 {
5064 /*
5065 * EOF but we haven't collected the exit status of the backend...
5066 */
5067
5068 cupsdCheckProcess();
f899b121 5069 return;
d7871c8c 5070 }
f899b121 5071
5072 /*
5073 * Handle the end of job stuff...
5074 */
5075
ef55b745 5076 finalize_job(job, 1);
b9faaae1
MS
5077
5078 /*
5079 * Check for new jobs...
5080 */
5081
5082 cupsdCheckJobs();
f899b121 5083 }
5084}
5085
5086
5087/*
bc44d920 5088 * 'update_job_attrs()' - Update the job-printer-* attributes.
5089 */
5090
5091void
4509bb49 5092update_job_attrs(cupsd_job_t *job, /* I - Job to update */
b9faaae1 5093 int do_message)/* I - 1 = copy job-printer-state message */
bc44d920 5094{
5095 int i; /* Looping var */
5096 int num_reasons; /* Actual number of reasons */
5097 const char * const *reasons; /* Reasons */
f0ab5bff 5098 static const char *none = "none"; /* "none" reason */
bc44d920 5099
5100
5101 /*
5102 * Get/create the job-printer-state-* attributes...
5103 */
5104
5105 if (!job->printer_message)
5106 {
5107 if ((job->printer_message = ippFindAttribute(job->attrs,
5108 "job-printer-state-message",
5109 IPP_TAG_TEXT)) == NULL)
5110 job->printer_message = ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_TEXT,
5111 "job-printer-state-message",
5112 NULL, "");
5113 }
5114
5115 if (!job->printer_reasons)
5116 job->printer_reasons = ippFindAttribute(job->attrs,
5117 "job-printer-state-reasons",
5118 IPP_TAG_KEYWORD);
5119
bc44d920 5120 /*
b9faaae1 5121 * Copy or clear the printer-state-message value as needed...
bc44d920 5122 */
5123
b9faaae1
MS
5124 if (job->state_value != IPP_JOB_PROCESSING &&
5125 job->status_level == CUPSD_LOG_INFO)
dcb445bc 5126 {
b9faaae1 5127 cupsdSetString(&(job->printer_message->values[0].string.text), "");
dcb445bc
MS
5128
5129 job->dirty = 1;
5130 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
5131 }
b9faaae1 5132 else if (job->printer->state_message[0] && do_message)
dcb445bc 5133 {
bc44d920 5134 cupsdSetString(&(job->printer_message->values[0].string.text),
b9faaae1 5135 job->printer->state_message);
ef55b745 5136
dcb445bc
MS
5137 job->dirty = 1;
5138 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
5139 }
5140
bc44d920 5141 /*
5142 * ... and the printer-state-reasons value...
5143 */
5144
b9faaae1 5145 if (job->printer->num_reasons == 0)
bc44d920 5146 {
5147 num_reasons = 1;
f0ab5bff 5148 reasons = &none;
bc44d920 5149 }
5150 else
5151 {
b9faaae1
MS
5152 num_reasons = job->printer->num_reasons;
5153 reasons = (const char * const *)job->printer->reasons;
bc44d920 5154 }
5155
5156 if (!job->printer_reasons || job->printer_reasons->num_values != num_reasons)
5157 {
b9faaae1
MS
5158 /*
5159 * Replace/create a job-printer-state-reasons attribute...
5160 */
5161
bc44d920 5162 ippDeleteAttribute(job->attrs, job->printer_reasons);
5163
5164 job->printer_reasons = ippAddStrings(job->attrs,
5165 IPP_TAG_JOB, IPP_TAG_KEYWORD,
5166 "job-printer-state-reasons",
5167 num_reasons, NULL, NULL);
5168 }
b9faaae1 5169 else
d2354e63 5170 {
b9faaae1
MS
5171 /*
5172 * Don't bother clearing the reason strings if they are the same...
5173 */
5174
5175 for (i = 0; i < num_reasons; i ++)
5176 if (strcmp(job->printer_reasons->values[i].string.text, reasons[i]))
5177 break;
5178
5179 if (i >= num_reasons)
5180 return;
5181
5182 /*
5183 * Not the same, so free the current strings...
5184 */
5185
5186 for (i = 0; i < num_reasons; i ++)
d2354e63
MS
5187 _cupsStrFree(job->printer_reasons->values[i].string.text);
5188 }
bc44d920 5189
b9faaae1
MS
5190 /*
5191 * Copy the reasons...
5192 */
5193
bc44d920 5194 for (i = 0; i < num_reasons; i ++)
d2354e63 5195 job->printer_reasons->values[i].string.text = _cupsStrAlloc(reasons[i]);
dcb445bc
MS
5196
5197 job->dirty = 1;
5198 cupsdMarkDirty(CUPSD_DIRTY_JOBS);
bc44d920 5199}
5200
5201
5202/*
f2d18633 5203 * End of "$Id$".
ef416fc2 5204 */