]> git.ipfire.org Git - thirdparty/cups.git/blob - scheduler/main.c
Merge changes from CUPS 1.4svn-r7485.
[thirdparty/cups.git] / scheduler / main.c
1 /*
2 * "$Id: main.c 6914 2007-09-05 21:05:04Z mike $"
3 *
4 * Scheduler main loop for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 2007-2008 by Apple Inc.
7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
8 *
9 * These coded instructions, statements, and computer programs are the
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 * "LICENSE" which should have been included with this file. If this
13 * file is missing or damaged, see the license at "http://www.cups.org/".
14 *
15 * Contents:
16 *
17 * main() - Main entry for the CUPS scheduler.
18 * cupsdClosePipe() - Close a pipe as necessary.
19 * cupsdOpenPipe() - Create a pipe which is closed on exec.
20 * cupsdHoldSignals() - Hold child and termination signals.
21 * cupsdReleaseSignals() - Release signals for delivery.
22 * cupsdSetString() - Set a string value.
23 * cupsdSetStringf() - Set a formatted string value.
24 * launchd_checkin() - Check-in with launchd and collect the
25 * listening fds.
26 * launchd_checkout() - Check-out with launchd.
27 * parent_handler() - Catch USR1/CHLD signals...
28 * process_children() - Process all dead children...
29 * sigchld_handler() - Handle 'child' signals from old processes.
30 * sighup_handler() - Handle 'hangup' signals to reconfigure the
31 * scheduler.
32 * sigterm_handler() - Handle 'terminate' signals that stop the
33 * scheduler.
34 * select_timeout() - Calculate the select timeout value.
35 * usage() - Show scheduler usage.
36 */
37
38 /*
39 * Include necessary headers...
40 */
41
42 #define _MAIN_C_
43 #include "cupsd.h"
44 #include <sys/resource.h>
45 #include <syslog.h>
46 #include <grp.h>
47 #include <cups/dir.h>
48
49 #ifdef HAVE_LAUNCH_H
50 # include <launch.h>
51 # include <libgen.h>
52 # define CUPS_KEEPALIVE CUPS_CACHEDIR "/org.cups.cupsd"
53 /* Name of the launchd KeepAlive file */
54 # ifndef LAUNCH_JOBKEY_KEEPALIVE
55 # define LAUNCH_JOBKEY_KEEPALIVE "KeepAlive"
56 # endif /* !LAUNCH_JOBKEY_KEEPALIVE */
57 # ifndef LAUNCH_JOBKEY_PATHSTATE
58 # define LAUNCH_JOBKEY_PATHSTATE "PathState"
59 # endif /* !LAUNCH_JOBKEY_PATHSTATE */
60 # ifndef LAUNCH_JOBKEY_SERVICEIPC
61 # define LAUNCH_JOBKEY_SERVICEIPC "ServiceIPC"
62 # endif /* !LAUNCH_JOBKEY_SERVICEIPC */
63 #endif /* HAVE_LAUNCH_H */
64
65 #if defined(HAVE_MALLOC_H) && defined(HAVE_MALLINFO)
66 # include <malloc.h>
67 #endif /* HAVE_MALLOC_H && HAVE_MALLINFO */
68 #ifdef HAVE_NOTIFY_H
69 # include <notify.h>
70 #endif /* HAVE_NOTIFY_H */
71
72 #if defined(__APPLE__) && defined(HAVE_DLFCN_H)
73 # include <dlfcn.h>
74 #endif /* __APPLE__ && HAVE_DLFCN_H */
75
76
77 /*
78 * Local functions...
79 */
80
81 #ifdef HAVE_LAUNCHD
82 static void launchd_checkin(void);
83 static void launchd_checkout(void);
84 #endif /* HAVE_LAUNCHD */
85 static void parent_handler(int sig);
86 static void process_children(void);
87 static void sigchld_handler(int sig);
88 static void sighup_handler(int sig);
89 static void sigterm_handler(int sig);
90 static long select_timeout(int fds);
91 static void usage(int status);
92
93
94 /*
95 * Local globals...
96 */
97
98 static int parent_signal = 0;
99 /* Set to signal number from child */
100 static int holdcount = 0; /* Number of times "hold" was called */
101 #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
102 static sigset_t holdmask; /* Old POSIX signal mask */
103 #endif /* HAVE_SIGACTION && !HAVE_SIGSET */
104 static int dead_children = 0;
105 /* Dead children? */
106 static int stop_scheduler = 0;
107 /* Should the scheduler stop? */
108
109 #if defined(__APPLE__) && defined(HAVE_DLFCN_H)
110 static const char *PSQLibPath = "/usr/lib/libPrintServiceQuota.dylib";
111 static const char *PSQLibFuncName = "PSQUpdateQuota";
112 static void *PSQLibRef; /* libPrintServiceQuota.dylib */
113 #endif /* HAVE_DLFCN_H */
114
115
116 /*
117 * 'main()' - Main entry for the CUPS scheduler.
118 */
119
120 int /* O - Exit status */
121 main(int argc, /* I - Number of command-line args */
122 char *argv[]) /* I - Command-line arguments */
123 {
124 int i; /* Looping var */
125 char *opt; /* Option character */
126 int fg; /* Run in the foreground */
127 int fds; /* Number of ready descriptors */
128 cupsd_client_t *con; /* Current client */
129 cupsd_job_t *job; /* Current job */
130 cupsd_listener_t *lis; /* Current listener */
131 time_t current_time, /* Current time */
132 activity, /* Client activity timer */
133 browse_time, /* Next browse send time */
134 senddoc_time, /* Send-Document time */
135 expire_time, /* Subscription expire time */
136 report_time, /* Malloc/client/job report time */
137 event_time; /* Last time an event notification was done */
138 long timeout; /* Timeout for cupsdDoSelect() */
139 struct rlimit limit; /* Runtime limit */
140 #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
141 struct sigaction action; /* Actions for POSIX signals */
142 #endif /* HAVE_SIGACTION && !HAVE_SIGSET */
143 #ifdef __sgi
144 cups_file_t *fp; /* Fake lpsched lock file */
145 struct stat statbuf; /* Needed for checking lpsched FIFO */
146 #endif /* __sgi */
147 #ifdef __APPLE__
148 int run_as_child = 0;
149 /* Needed for Mac OS X fork/exec */
150 #else
151 time_t netif_time = 0; /* Time since last network update */
152 #endif /* __APPLE__ */
153 #if HAVE_LAUNCHD
154 int launchd_idle_exit;
155 /* Idle exit on select timeout? */
156 #endif /* HAVE_LAUNCHD */
157
158
159 #ifdef HAVE_GETEUID
160 /*
161 * Check for setuid invocation, which we do not support!
162 */
163
164 if (getuid() != geteuid())
165 {
166 fputs("cupsd: Cannot run as a setuid program!\n", stderr);
167 return (1);
168 }
169 #endif /* HAVE_GETEUID */
170
171 /*
172 * Check for command-line arguments...
173 */
174
175 fg = 0;
176
177 #ifdef HAVE_LAUNCHD
178 if (getenv("CUPSD_LAUNCHD"))
179 {
180 Launchd = 1;
181 fg = 1;
182 }
183 #endif /* HAVE_LAUNCHD */
184
185 for (i = 1; i < argc; i ++)
186 if (argv[i][0] == '-')
187 for (opt = argv[i] + 1; *opt != '\0'; opt ++)
188 switch (*opt)
189 {
190 #ifdef __APPLE__
191 case 'C' : /* Run as child with config file */
192 run_as_child = 1;
193 fg = -1;
194 #endif /* __APPLE__ */
195
196 case 'c' : /* Configuration file */
197 i ++;
198 if (i >= argc)
199 {
200 _cupsLangPuts(stderr, _("cupsd: Expected config filename "
201 "after \"-c\" option!\n"));
202 usage(1);
203 }
204
205 if (argv[i][0] == '/')
206 {
207 /*
208 * Absolute directory...
209 */
210
211 cupsdSetString(&ConfigurationFile, argv[i]);
212 }
213 else
214 {
215 /*
216 * Relative directory...
217 */
218
219 char *current; /* Current directory */
220
221
222 /*
223 * Allocate a buffer for the current working directory to
224 * reduce run-time stack usage; this approximates the
225 * behavior of some implementations of getcwd() when they
226 * are passed a NULL pointer.
227 */
228
229 if ((current = malloc(1024)) == NULL)
230 {
231 _cupsLangPuts(stderr,
232 _("cupsd: Unable to get current directory!\n"));
233 return (1);
234 }
235
236 if (!getcwd(current, 1024))
237 {
238 _cupsLangPuts(stderr,
239 _("cupsd: Unable to get current directory!\n"));
240 free(current);
241 return (1);
242 }
243
244 cupsdSetStringf(&ConfigurationFile, "%s/%s", current, argv[i]);
245 free(current);
246 }
247 break;
248
249 case 'f' : /* Run in foreground... */
250 fg = 1;
251 break;
252
253 case 'F' : /* Run in foreground, but disconnect from terminal... */
254 fg = -1;
255 break;
256
257 case 'h' : /* Show usage/help */
258 usage(0);
259 break;
260
261 case 'l' : /* Started by launchd... */
262 #ifdef HAVE_LAUNCHD
263 Launchd = 1;
264 fg = 1;
265 #else
266 _cupsLangPuts(stderr, _("cupsd: launchd(8) support not compiled "
267 "in, running in normal mode.\n"));
268 fg = 0;
269 #endif /* HAVE_LAUNCHD */
270 break;
271
272 case 'p' : /* Stop immediately for profiling */
273 puts("Warning: -p option is for internal testing use only!");
274 stop_scheduler = 1;
275 fg = 1;
276 break;
277
278 case 't' : /* Test the cupsd.conf file... */
279 TestConfigFile = 1;
280 fg = 1;
281 break;
282
283 default : /* Unknown option */
284 _cupsLangPrintf(stderr, _("cupsd: Unknown option \"%c\" - "
285 "aborting!\n"), *opt);
286 usage(1);
287 break;
288 }
289 else
290 {
291 _cupsLangPrintf(stderr, _("cupsd: Unknown argument \"%s\" - aborting!\n"),
292 argv[i]);
293 usage(1);
294 }
295
296 if (!ConfigurationFile)
297 cupsdSetString(&ConfigurationFile, CUPS_SERVERROOT "/cupsd.conf");
298
299 /*
300 * If the user hasn't specified "-f", run in the background...
301 */
302
303 if (!fg)
304 {
305 /*
306 * Setup signal handlers for the parent...
307 */
308
309 #ifdef HAVE_SIGSET /* Use System V signals over POSIX to avoid bugs */
310 sigset(SIGUSR1, parent_handler);
311 sigset(SIGCHLD, parent_handler);
312
313 sigset(SIGHUP, SIG_IGN);
314 #elif defined(HAVE_SIGACTION)
315 memset(&action, 0, sizeof(action));
316 sigemptyset(&action.sa_mask);
317 sigaddset(&action.sa_mask, SIGUSR1);
318 action.sa_handler = parent_handler;
319 sigaction(SIGUSR1, &action, NULL);
320 sigaction(SIGCHLD, &action, NULL);
321
322 sigemptyset(&action.sa_mask);
323 action.sa_handler = SIG_IGN;
324 sigaction(SIGHUP, &action, NULL);
325 #else
326 signal(SIGUSR1, parent_handler);
327 signal(SIGCLD, parent_handler);
328
329 signal(SIGHUP, SIG_IGN);
330 #endif /* HAVE_SIGSET */
331
332 if (fork() > 0)
333 {
334 /*
335 * OK, wait for the child to startup and send us SIGUSR1 or to crash
336 * and the OS send us SIGCHLD... We also need to ignore SIGHUP which
337 * might be sent by the init script to restart the scheduler...
338 */
339
340 for (; parent_signal == 0;)
341 sleep(1);
342
343 if (parent_signal == SIGUSR1)
344 return (0);
345
346 if (wait(&i) < 0)
347 {
348 perror("cupsd");
349 return (1);
350 }
351 else if (WIFEXITED(i))
352 {
353 fprintf(stderr, "cupsd: Child exited with status %d!\n",
354 WEXITSTATUS(i));
355 return (2);
356 }
357 else
358 {
359 fprintf(stderr, "cupsd: Child exited on signal %d!\n", WTERMSIG(i));
360 return (3);
361 }
362 }
363
364 #ifdef __APPLE__
365 /*
366 * Since CoreFoundation has an overly-agressive check for whether a
367 * process has forked but not exec'd (whether CF has been called or
368 * not...), we now have to exec ourselves with the "-f" option to
369 * eliminate their bogus warning messages.
370 */
371
372 execlp(argv[0], argv[0], "-C", ConfigurationFile, (char *)0);
373 exit(errno);
374 #endif /* __APPLE__ */
375 }
376
377 if (fg < 1)
378 {
379 /*
380 * Make sure we aren't tying up any filesystems...
381 */
382
383 chdir("/");
384
385 #ifndef DEBUG
386 /*
387 * Disable core dumps...
388 */
389
390 getrlimit(RLIMIT_CORE, &limit);
391 limit.rlim_cur = 0;
392 setrlimit(RLIMIT_CORE, &limit);
393
394 /*
395 * Disconnect from the controlling terminal...
396 */
397
398 setsid();
399
400 /*
401 * Close all open files...
402 */
403
404 getrlimit(RLIMIT_NOFILE, &limit);
405
406 for (i = 0; i < limit.rlim_cur && i < 1024; i ++)
407 close(i);
408
409 /*
410 * Redirect stdin/out/err to /dev/null...
411 */
412
413 open("/dev/null", O_RDONLY);
414 open("/dev/null", O_WRONLY);
415 open("/dev/null", O_WRONLY);
416 #endif /* DEBUG */
417 }
418
419 /*
420 * Set the timezone info...
421 */
422
423 tzset();
424
425 #ifdef LC_TIME
426 setlocale(LC_TIME, "");
427 #endif /* LC_TIME */
428
429 /*
430 * Set the maximum number of files...
431 */
432
433 getrlimit(RLIMIT_NOFILE, &limit);
434
435 #if !defined(HAVE_POLL) && !defined(HAVE_EPOLL) && !defined(HAVE_KQUEUE)
436 if (limit.rlim_max > FD_SETSIZE)
437 MaxFDs = FD_SETSIZE;
438 else
439 #endif /* !HAVE_POLL && !HAVE_EPOLL && !HAVE_KQUEUE */
440 #ifdef RLIM_INFINITY
441 if (limit.rlim_max == RLIM_INFINITY)
442 MaxFDs = 16384;
443 else
444 #endif /* RLIM_INFINITY */
445 MaxFDs = limit.rlim_max;
446
447 limit.rlim_cur = MaxFDs;
448
449 setrlimit(RLIMIT_NOFILE, &limit);
450
451 cupsdStartSelect();
452
453 /*
454 * Read configuration...
455 */
456
457 if (!cupsdReadConfiguration())
458 {
459 if (TestConfigFile)
460 printf("%s contains errors\n", ConfigurationFile);
461 else
462 syslog(LOG_LPR, "Unable to read configuration file \'%s\' - exiting!",
463 ConfigurationFile);
464 return (1);
465 }
466 else if (TestConfigFile)
467 {
468 printf("%s is OK\n", ConfigurationFile);
469 return (0);
470 }
471
472 if (!strncmp(TempDir, RequestRoot, strlen(RequestRoot)))
473 {
474 /*
475 * Clean out the temporary directory...
476 */
477
478 cups_dir_t *dir; /* Temporary directory */
479 cups_dentry_t *dent; /* Directory entry */
480 char tempfile[1024]; /* Temporary filename */
481
482
483 if ((dir = cupsDirOpen(TempDir)) != NULL)
484 {
485 cupsdLogMessage(CUPSD_LOG_INFO,
486 "Cleaning out old temporary files in \"%s\"...", TempDir);
487
488 while ((dent = cupsDirRead(dir)) != NULL)
489 {
490 snprintf(tempfile, sizeof(tempfile), "%s/%s", TempDir, dent->filename);
491
492 if (cupsdRemoveFile(tempfile))
493 cupsdLogMessage(CUPSD_LOG_ERROR,
494 "Unable to remove temporary file \"%s\" - %s",
495 tempfile, strerror(errno));
496 else
497 cupsdLogMessage(CUPSD_LOG_DEBUG, "Removed temporary file \"%s\"...",
498 tempfile);
499 }
500
501 cupsDirClose(dir);
502 }
503 else
504 cupsdLogMessage(CUPSD_LOG_ERROR,
505 "Unable to open temporary directory \"%s\" - %s",
506 TempDir, strerror(errno));
507 }
508
509 #if HAVE_LAUNCHD
510 if (Launchd)
511 {
512 /*
513 * If we were started by launchd get the listen sockets file descriptors...
514 */
515
516 launchd_checkin();
517 }
518 #endif /* HAVE_LAUNCHD */
519
520 #if defined(__APPLE__) && defined(HAVE_DLFCN_H)
521 /*
522 * Load Print Service quota enforcement library (X Server only)
523 */
524
525 PSQLibRef = dlopen(PSQLibPath, RTLD_LAZY);
526
527 if (PSQLibRef)
528 PSQUpdateQuotaProc = dlsym(PSQLibRef, PSQLibFuncName);
529 #endif /* __APPLE__ && HAVE_DLFCN_H */
530
531 #ifdef HAVE_GSSAPI
532 # ifdef __APPLE__
533 /*
534 * If the weak-linked GSSAPI/Kerberos library is not present, don't try
535 * to use it...
536 */
537
538 if (krb5_init_context != NULL)
539 # endif /* __APPLE__ */
540
541 /*
542 * Setup a Kerberos context for the scheduler to use...
543 */
544
545 if (krb5_init_context(&KerberosContext))
546 {
547 KerberosContext = NULL;
548
549 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to initialize Kerberos context");
550 }
551 #endif /* HAVE_GSSAPI */
552
553 /*
554 * Startup the server...
555 */
556
557 cupsdStartServer();
558
559 /*
560 * Catch hangup and child signals and ignore broken pipes...
561 */
562
563 #ifdef HAVE_SIGSET /* Use System V signals over POSIX to avoid bugs */
564 sigset(SIGCHLD, sigchld_handler);
565 sigset(SIGHUP, sighup_handler);
566 sigset(SIGPIPE, SIG_IGN);
567 sigset(SIGTERM, sigterm_handler);
568 #elif defined(HAVE_SIGACTION)
569 memset(&action, 0, sizeof(action));
570
571 sigemptyset(&action.sa_mask);
572 sigaddset(&action.sa_mask, SIGTERM);
573 sigaddset(&action.sa_mask, SIGCHLD);
574 action.sa_handler = sigchld_handler;
575 sigaction(SIGCHLD, &action, NULL);
576
577 sigemptyset(&action.sa_mask);
578 sigaddset(&action.sa_mask, SIGHUP);
579 action.sa_handler = sighup_handler;
580 sigaction(SIGHUP, &action, NULL);
581
582 sigemptyset(&action.sa_mask);
583 action.sa_handler = SIG_IGN;
584 sigaction(SIGPIPE, &action, NULL);
585
586 sigemptyset(&action.sa_mask);
587 sigaddset(&action.sa_mask, SIGTERM);
588 sigaddset(&action.sa_mask, SIGCHLD);
589 action.sa_handler = sigterm_handler;
590 sigaction(SIGTERM, &action, NULL);
591 #else
592 signal(SIGCLD, sigchld_handler); /* No, SIGCLD isn't a typo... */
593 signal(SIGHUP, sighup_handler);
594 signal(SIGPIPE, SIG_IGN);
595 signal(SIGTERM, sigterm_handler);
596 #endif /* HAVE_SIGSET */
597
598 #ifdef __sgi
599 /*
600 * Try to create a fake lpsched lock file if one is not already there.
601 * Some Adobe applications need it under IRIX in order to enable
602 * printing...
603 */
604
605 if ((fp = cupsFileOpen("/var/spool/lp/SCHEDLOCK", "w")) == NULL)
606 {
607 syslog(LOG_LPR, "Unable to create fake lpsched lock file "
608 "\"/var/spool/lp/SCHEDLOCK\"\' - %s!",
609 strerror(errno));
610 }
611 else
612 {
613 fchmod(cupsFileNumber(fp), 0644);
614 fchown(cupsFileNumber(fp), User, Group);
615
616 cupsFileClose(fp);
617 }
618 #endif /* __sgi */
619
620 /*
621 * Initialize authentication certificates...
622 */
623
624 cupsdInitCerts();
625
626 /*
627 * If we are running in the background, signal the parent process that
628 * we are up and running...
629 */
630
631 #ifdef __APPLE__
632 if (!fg || run_as_child)
633 #else
634 if (!fg)
635 #endif /* __APPLE__ */
636 {
637 /*
638 * Send a signal to the parent process, but only if the parent is
639 * not PID 1 (init). This avoids accidentally shutting down the
640 * system on OpenBSD if you CTRL-C the server before it is up...
641 */
642
643 i = getppid(); /* Save parent PID to avoid race condition */
644
645 if (i != 1)
646 kill(i, SIGUSR1);
647 }
648
649 #ifdef __APPLE__
650 /*
651 * Start power management framework...
652 */
653
654 cupsdStartSystemMonitor();
655 #endif /* __APPLE__ */
656
657 /*
658 * Start any pending print jobs...
659 */
660
661 cupsdCheckJobs();
662
663 /*
664 * Loop forever...
665 */
666
667 current_time = time(NULL);
668 browse_time = current_time;
669 event_time = current_time;
670 expire_time = current_time;
671 fds = 1;
672 report_time = 0;
673 senddoc_time = current_time;
674
675 while (!stop_scheduler)
676 {
677 #ifdef DEBUG
678 cupsdLogMessage(CUPSD_LOG_DEBUG2,
679 "main: Top of loop, dead_children=%d, NeedReload=%d",
680 dead_children, NeedReload);
681 #endif /* DEBUG */
682
683 /*
684 * Check if there are dead children to handle...
685 */
686
687 if (dead_children)
688 process_children();
689
690 /*
691 * Check if we need to load the server configuration file...
692 */
693
694 if (NeedReload)
695 {
696 /*
697 * Close any idle clients...
698 */
699
700 if (cupsArrayCount(Clients) > 0)
701 {
702 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
703 con;
704 con = (cupsd_client_t *)cupsArrayNext(Clients))
705 if (con->http.state == HTTP_WAITING)
706 cupsdCloseClient(con);
707 else
708 con->http.keep_alive = HTTP_KEEPALIVE_OFF;
709
710 cupsdPauseListening();
711 }
712
713 /*
714 * Check for any active jobs...
715 */
716
717 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
718 job;
719 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
720 if (job->state_value == IPP_JOB_PROCESSING)
721 break;
722
723 /*
724 * Restart if all clients are closed and all jobs finished, or
725 * if the reload timeout has elapsed...
726 */
727
728 if ((cupsArrayCount(Clients) == 0 &&
729 (!job || NeedReload != RELOAD_ALL)) ||
730 (time(NULL) - ReloadTime) >= ReloadTimeout)
731 {
732 /*
733 * Shutdown the server...
734 */
735
736 cupsdStopServer();
737
738 /*
739 * Read configuration...
740 */
741
742 if (!cupsdReadConfiguration())
743 {
744 syslog(LOG_LPR, "Unable to read configuration file \'%s\' - exiting!",
745 ConfigurationFile);
746 break;
747 }
748
749 #if HAVE_LAUNCHD
750 if (Launchd)
751 {
752 /*
753 * If we were started by launchd get the listen sockets file descriptors...
754 */
755
756 launchd_checkin();
757 }
758 #endif /* HAVE_LAUNCHD */
759
760 /*
761 * Startup the server...
762 */
763
764 cupsdStartServer();
765 }
766 }
767
768 /*
769 * Check for available input or ready output. If cupsdDoSelect()
770 * returns 0 or -1, something bad happened and we should exit
771 * immediately.
772 *
773 * Note that we at least have one listening socket open at all
774 * times.
775 */
776
777 if ((timeout = select_timeout(fds)) > 1 && LastEvent)
778 timeout = 1;
779
780 #if HAVE_LAUNCHD
781 /*
782 * If no other work is scheduled and we're being controlled by
783 * launchd then timeout after 'LaunchdTimeout' seconds of
784 * inactivity...
785 */
786
787 if (timeout == 86400 && Launchd && LaunchdTimeout && !NumPolled &&
788 !cupsArrayCount(ActiveJobs) &&
789 (!Browsing ||
790 (!BrowseRemoteProtocols &&
791 (!NumBrowsers || !BrowseLocalProtocols ||
792 cupsArrayCount(Printers) == 0))))
793 {
794 timeout = LaunchdTimeout;
795 launchd_idle_exit = 1;
796 }
797 else
798 launchd_idle_exit = 0;
799 #endif /* HAVE_LAUNCHD */
800
801 if ((fds = cupsdDoSelect(timeout)) < 0)
802 {
803 /*
804 * Got an error from select!
805 */
806
807 #ifdef HAVE_DNSSD
808 cupsd_printer_t *p; /* Current printer */
809 #endif /* HAVE_DNSSD */
810
811
812 if (errno == EINTR) /* Just interrupted by a signal */
813 continue;
814
815 /*
816 * Log all sorts of debug info to help track down the problem.
817 */
818
819 cupsdLogMessage(CUPSD_LOG_EMERG, "cupsdDoSelect() failed - %s!",
820 strerror(errno));
821
822 for (i = 0, con = (cupsd_client_t *)cupsArrayFirst(Clients);
823 con;
824 i ++, con = (cupsd_client_t *)cupsArrayNext(Clients))
825 cupsdLogMessage(CUPSD_LOG_EMERG,
826 "Clients[%d] = %d, file = %d, state = %d",
827 i, con->http.fd, con->file, con->http.state);
828
829 for (i = 0, lis = (cupsd_listener_t *)cupsArrayFirst(Listeners);
830 lis;
831 i ++, lis = (cupsd_listener_t *)cupsArrayNext(Listeners))
832 cupsdLogMessage(CUPSD_LOG_EMERG, "Listeners[%d] = %d", i, lis->fd);
833
834 cupsdLogMessage(CUPSD_LOG_EMERG, "BrowseSocket = %d", BrowseSocket);
835
836 cupsdLogMessage(CUPSD_LOG_EMERG, "CGIPipes[0] = %d", CGIPipes[0]);
837
838 #ifdef __APPLE__
839 cupsdLogMessage(CUPSD_LOG_EMERG, "SysEventPipes[0] = %d",
840 SysEventPipes[0]);
841 #endif /* __APPLE__ */
842
843 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
844 job;
845 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
846 cupsdLogMessage(CUPSD_LOG_EMERG, "Jobs[%d] = %d < [%d %d] > [%d %d]",
847 job->id,
848 job->status_buffer ? job->status_buffer->fd : -1,
849 job->print_pipes[0], job->print_pipes[1],
850 job->back_pipes[0], job->back_pipes[1]);
851
852 #ifdef HAVE_DNSSD
853 for (p = (cupsd_printer_t *)cupsArrayFirst(Printers);
854 p;
855 p = (cupsd_printer_t *)cupsArrayNext(Printers))
856 cupsdLogMessage(CUPSD_LOG_EMERG, "printer[%s] %d", p->name,
857 p->dnssd_ipp_fd);
858 #endif /* HAVE_DNSSD */
859
860 break;
861 }
862
863 current_time = time(NULL);
864
865 /*
866 * Write dirty config/state files...
867 */
868
869 if (DirtyCleanTime && current_time >= DirtyCleanTime)
870 {
871 cupsdCleanDirty();
872 cupsdSetBusyState();
873 }
874
875 #ifndef __APPLE__
876 /*
877 * Update the network interfaces once a minute...
878 */
879
880 if ((current_time - netif_time) >= 60)
881 {
882 netif_time = current_time;
883 NetIFUpdate = 1;
884 }
885 #endif /* !__APPLE__ */
886
887 #if HAVE_LAUNCHD
888 /*
889 * If no other work was scheduled and we're being controlled by launchd
890 * then timeout after 'LaunchdTimeout' seconds of inactivity...
891 */
892
893 if (!fds && launchd_idle_exit)
894 {
895 cupsdLogMessage(CUPSD_LOG_INFO,
896 "Printer sharing is off and there are no jobs pending, "
897 "will restart on demand.");
898 stop_scheduler = 1;
899 break;
900 }
901 #endif /* HAVE_LAUNCHD */
902
903 /*
904 * Resume listening for new connections as needed...
905 */
906
907 if (ListeningPaused && ListeningPaused <= current_time &&
908 cupsArrayCount(Clients) < MaxClients)
909 cupsdResumeListening();
910
911 /*
912 * Expire subscriptions and unload completed jobs as needed...
913 */
914
915 if (current_time > expire_time)
916 {
917 if (cupsArrayCount(Subscriptions) > 0)
918 cupsdExpireSubscriptions(NULL, NULL);
919
920 cupsdUnloadCompletedJobs();
921
922 expire_time = current_time;
923 }
924
925 /*
926 * Update the browse list as needed...
927 */
928
929 if (Browsing)
930 {
931 #ifdef HAVE_LIBSLP
932 if ((BrowseRemoteProtocols & BROWSE_SLP) &&
933 BrowseSLPRefresh <= current_time)
934 cupsdUpdateSLPBrowse();
935 #endif /* HAVE_LIBSLP */
936
937 #ifdef HAVE_LDAP
938 if ((BrowseRemoteProtocols & BROWSE_LDAP) &&
939 BrowseLDAPRefresh <= current_time)
940 cupsdUpdateLDAPBrowse();
941 #endif /* HAVE_LDAP */
942 }
943
944 if (Browsing && BrowseLocalProtocols && current_time > browse_time)
945 {
946 cupsdSendBrowseList();
947 browse_time = current_time;
948 }
949
950 /*
951 * Update the root certificate once every 5 minutes if we have client
952 * connections...
953 */
954
955 if ((current_time - RootCertTime) >= RootCertDuration && RootCertDuration &&
956 !RunUser && cupsArrayCount(Clients))
957 {
958 /*
959 * Update the root certificate...
960 */
961
962 cupsdDeleteCert(0);
963 cupsdAddCert(0, "root", NULL);
964 }
965
966 /*
967 * Check for new data on the client sockets...
968 */
969
970 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
971 con;
972 con = (cupsd_client_t *)cupsArrayNext(Clients))
973 {
974 /*
975 * Process pending data in the input buffer...
976 */
977
978 if (con->http.used)
979 {
980 cupsdReadClient(con);
981 continue;
982 }
983
984 /*
985 * Check the activity and close old clients...
986 */
987
988 activity = current_time - Timeout;
989 if (con->http.activity < activity && !con->pipe_pid)
990 {
991 cupsdLogMessage(CUPSD_LOG_DEBUG,
992 "Closing client %d after %d seconds of inactivity...",
993 con->http.fd, Timeout);
994
995 cupsdCloseClient(con);
996 continue;
997 }
998 }
999
1000 /*
1001 * Update any pending multi-file documents...
1002 */
1003
1004 if ((current_time - senddoc_time) >= 10)
1005 {
1006 cupsdCheckJobs();
1007 senddoc_time = current_time;
1008 }
1009
1010 /*
1011 * Log statistics at most once a minute when in debug mode...
1012 */
1013
1014 if ((current_time - report_time) >= 60 && LogLevel >= CUPSD_LOG_DEBUG)
1015 {
1016 size_t string_count, /* String count */
1017 alloc_bytes, /* Allocated string bytes */
1018 total_bytes; /* Total string bytes */
1019 #ifdef HAVE_MALLINFO
1020 struct mallinfo mem; /* Malloc information */
1021
1022
1023 mem = mallinfo();
1024 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: malloc-arena=%lu", mem.arena);
1025 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: malloc-used=%lu",
1026 mem.usmblks + mem.uordblks);
1027 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: malloc-free=%lu",
1028 mem.fsmblks + mem.fordblks);
1029 #endif /* HAVE_MALLINFO */
1030
1031 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: clients=%d",
1032 cupsArrayCount(Clients));
1033 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: jobs=%d",
1034 cupsArrayCount(Jobs));
1035 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: jobs-active=%d",
1036 cupsArrayCount(ActiveJobs));
1037 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: printers=%d",
1038 cupsArrayCount(Printers));
1039 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: printers-implicit=%d",
1040 cupsArrayCount(ImplicitPrinters));
1041
1042 string_count = _cupsStrStatistics(&alloc_bytes, &total_bytes);
1043 cupsdLogMessage(CUPSD_LOG_DEBUG,
1044 "Report: stringpool-string-count=" CUPS_LLFMT,
1045 CUPS_LLCAST string_count);
1046 cupsdLogMessage(CUPSD_LOG_DEBUG,
1047 "Report: stringpool-alloc-bytes=" CUPS_LLFMT,
1048 CUPS_LLCAST alloc_bytes);
1049 cupsdLogMessage(CUPSD_LOG_DEBUG,
1050 "Report: stringpool-total-bytes=" CUPS_LLFMT,
1051 CUPS_LLCAST total_bytes);
1052
1053 report_time = current_time;
1054 }
1055
1056 /*
1057 * Handle OS-specific event notification for any events that have
1058 * accumulated. Don't send these more than once a second...
1059 */
1060
1061 if (LastEvent && (current_time - event_time) >= 1)
1062 {
1063 #ifdef HAVE_NOTIFY_POST
1064 if (LastEvent & (CUPSD_EVENT_PRINTER_ADDED |
1065 CUPSD_EVENT_PRINTER_DELETED |
1066 CUPSD_EVENT_PRINTER_MODIFIED))
1067 {
1068 cupsdLogMessage(CUPSD_LOG_DEBUG2,
1069 "notify_post(\"com.apple.printerListChange\")");
1070 notify_post("com.apple.printerListChange");
1071 }
1072
1073 if (LastEvent & CUPSD_EVENT_PRINTER_STATE_CHANGED)
1074 {
1075 cupsdLogMessage(CUPSD_LOG_DEBUG2,
1076 "notify_post(\"com.apple.printerHistoryChange\")");
1077 notify_post("com.apple.printerHistoryChange");
1078 }
1079
1080 if (LastEvent & (CUPSD_EVENT_JOB_STATE_CHANGED |
1081 CUPSD_EVENT_JOB_CONFIG_CHANGED |
1082 CUPSD_EVENT_JOB_PROGRESS))
1083 {
1084 cupsdLogMessage(CUPSD_LOG_DEBUG2,
1085 "notify_post(\"com.apple.jobChange\")");
1086 notify_post("com.apple.jobChange");
1087 }
1088 #endif /* HAVE_NOTIFY_POST */
1089
1090 /*
1091 * Reset the accumulated events...
1092 */
1093
1094 LastEvent = CUPSD_EVENT_NONE;
1095 event_time = current_time;
1096 }
1097 }
1098
1099 /*
1100 * Log a message based on what happened...
1101 */
1102
1103 if (stop_scheduler)
1104 cupsdLogMessage(CUPSD_LOG_INFO, "Scheduler shutting down normally.");
1105 else
1106 cupsdLogMessage(CUPSD_LOG_ERROR,
1107 "Scheduler shutting down due to program error.");
1108
1109 /*
1110 * Close all network clients...
1111 */
1112
1113 cupsdStopServer();
1114
1115 #ifdef HAVE_LAUNCHD
1116 /*
1117 * Update the launchd KeepAlive file as needed...
1118 */
1119
1120 if (Launchd)
1121 launchd_checkout();
1122 #endif /* HAVE_LAUNCHD */
1123
1124 /*
1125 * Stop all jobs...
1126 */
1127
1128 cupsdFreeAllJobs();
1129
1130 #ifdef __APPLE__
1131 /*
1132 * Stop monitoring system event monitoring...
1133 */
1134
1135 cupsdStopSystemMonitor();
1136 #endif /* __APPLE__ */
1137
1138 #ifdef HAVE_GSSAPI
1139 /*
1140 * Free the scheduler's Kerberos context...
1141 */
1142
1143 # ifdef __APPLE__
1144 /*
1145 * If the weak-linked GSSAPI/Kerberos library is not present, don't try
1146 * to use it...
1147 */
1148
1149 if (krb5_init_context != NULL)
1150 # endif /* __APPLE__ */
1151 if (KerberosContext)
1152 krb5_free_context(KerberosContext);
1153 #endif /* HAVE_GSSAPI */
1154
1155 #ifdef __APPLE__
1156 #ifdef HAVE_DLFCN_H
1157 /*
1158 * Unload Print Service quota enforcement library (X Server only)
1159 */
1160
1161 PSQUpdateQuotaProc = NULL;
1162 if (PSQLibRef)
1163 {
1164 dlclose(PSQLibRef);
1165 PSQLibRef = NULL;
1166 }
1167 #endif /* HAVE_DLFCN_H */
1168 #endif /* __APPLE__ */
1169
1170 #ifdef __sgi
1171 /*
1172 * Remove the fake IRIX lpsched lock file, but only if the existing
1173 * file is not a FIFO which indicates that the real IRIX lpsched is
1174 * running...
1175 */
1176
1177 if (!stat("/var/spool/lp/FIFO", &statbuf))
1178 if (!S_ISFIFO(statbuf.st_mode))
1179 unlink("/var/spool/lp/SCHEDLOCK");
1180 #endif /* __sgi */
1181
1182 cupsdStopSelect();
1183
1184 return (!stop_scheduler);
1185 }
1186
1187
1188 /*
1189 * 'cupsdClosePipe()' - Close a pipe as necessary.
1190 */
1191
1192 void
1193 cupsdClosePipe(int *fds) /* I - Pipe file descriptors (2) */
1194 {
1195 /*
1196 * Close file descriptors as needed...
1197 */
1198
1199 if (fds[0] >= 0)
1200 {
1201 close(fds[0]);
1202 fds[0] = -1;
1203 }
1204
1205 if (fds[1] >= 0)
1206 {
1207 close(fds[1]);
1208 fds[1] = -1;
1209 }
1210 }
1211
1212
1213 /*
1214 * 'cupsdOpenPipe()' - Create a pipe which is closed on exec.
1215 */
1216
1217 int /* O - 0 on success, -1 on error */
1218 cupsdOpenPipe(int *fds) /* O - Pipe file descriptors (2) */
1219 {
1220 /*
1221 * Create the pipe...
1222 */
1223
1224 if (pipe(fds))
1225 {
1226 fds[0] = -1;
1227 fds[1] = -1;
1228
1229 return (-1);
1230 }
1231
1232 /*
1233 * Set the "close on exec" flag on each end of the pipe...
1234 */
1235
1236 if (fcntl(fds[0], F_SETFD, fcntl(fds[0], F_GETFD) | FD_CLOEXEC))
1237 {
1238 close(fds[0]);
1239 close(fds[1]);
1240
1241 fds[0] = -1;
1242 fds[1] = -1;
1243
1244 return (-1);
1245 }
1246
1247 if (fcntl(fds[1], F_SETFD, fcntl(fds[1], F_GETFD) | FD_CLOEXEC))
1248 {
1249 close(fds[0]);
1250 close(fds[1]);
1251
1252 fds[0] = -1;
1253 fds[1] = -1;
1254
1255 return (-1);
1256 }
1257
1258 /*
1259 * Return 0 indicating success...
1260 */
1261
1262 return (0);
1263 }
1264
1265
1266 /*
1267 * 'cupsdClearString()' - Clear a string.
1268 */
1269
1270 void
1271 cupsdClearString(char **s) /* O - String value */
1272 {
1273 if (s && *s)
1274 {
1275 _cupsStrFree(*s);
1276 *s = NULL;
1277 }
1278 }
1279
1280
1281 /*
1282 * 'cupsdHoldSignals()' - Hold child and termination signals.
1283 */
1284
1285 void
1286 cupsdHoldSignals(void)
1287 {
1288 #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
1289 sigset_t newmask; /* New POSIX signal mask */
1290 #endif /* HAVE_SIGACTION && !HAVE_SIGSET */
1291
1292
1293 holdcount ++;
1294 if (holdcount > 1)
1295 return;
1296
1297 #ifdef HAVE_SIGSET
1298 sighold(SIGTERM);
1299 sighold(SIGCHLD);
1300 #elif defined(HAVE_SIGACTION)
1301 sigemptyset(&newmask);
1302 sigaddset(&newmask, SIGTERM);
1303 sigaddset(&newmask, SIGCHLD);
1304 sigprocmask(SIG_BLOCK, &newmask, &holdmask);
1305 #endif /* HAVE_SIGSET */
1306 }
1307
1308
1309 /*
1310 * 'cupsdReleaseSignals()' - Release signals for delivery.
1311 */
1312
1313 void
1314 cupsdReleaseSignals(void)
1315 {
1316 holdcount --;
1317 if (holdcount > 0)
1318 return;
1319
1320 #ifdef HAVE_SIGSET
1321 sigrelse(SIGTERM);
1322 sigrelse(SIGCHLD);
1323 #elif defined(HAVE_SIGACTION)
1324 sigprocmask(SIG_SETMASK, &holdmask, NULL);
1325 #endif /* HAVE_SIGSET */
1326 }
1327
1328
1329 /*
1330 * 'cupsdSetString()' - Set a string value.
1331 */
1332
1333 void
1334 cupsdSetString(char **s, /* O - New string */
1335 const char *v) /* I - String value */
1336 {
1337 if (!s || *s == v)
1338 return;
1339
1340 if (*s)
1341 _cupsStrFree(*s);
1342
1343 if (v)
1344 *s = _cupsStrAlloc(v);
1345 else
1346 *s = NULL;
1347 }
1348
1349
1350 /*
1351 * 'cupsdSetStringf()' - Set a formatted string value.
1352 */
1353
1354 void
1355 cupsdSetStringf(char **s, /* O - New string */
1356 const char *f, /* I - Printf-style format string */
1357 ...) /* I - Additional args as needed */
1358 {
1359 char v[4096]; /* Formatting string value */
1360 va_list ap; /* Argument pointer */
1361 char *olds; /* Old string */
1362
1363
1364 if (!s)
1365 return;
1366
1367 olds = *s;
1368
1369 if (f)
1370 {
1371 va_start(ap, f);
1372 vsnprintf(v, sizeof(v), f, ap);
1373 va_end(ap);
1374
1375 *s = _cupsStrAlloc(v);
1376 }
1377 else
1378 *s = NULL;
1379
1380 if (olds)
1381 _cupsStrFree(olds);
1382 }
1383
1384
1385 #ifdef HAVE_LAUNCHD
1386 /*
1387 * 'launchd_checkin()' - Check-in with launchd and collect the listening fds.
1388 */
1389
1390 static void
1391 launchd_checkin(void)
1392 {
1393 int i, /* Looping var */
1394 count, /* Numebr of listeners */
1395 portnum; /* Port number */
1396 launch_data_t ld_msg, /* Launch data message */
1397 ld_resp, /* Launch data response */
1398 ld_array, /* Launch data array */
1399 ld_sockets, /* Launch data sockets dictionary */
1400 tmp; /* Launch data */
1401 cupsd_listener_t *lis; /* Listeners array */
1402 http_addr_t addr; /* Address variable */
1403 socklen_t addrlen; /* Length of address */
1404 int fd; /* File descriptor */
1405 char s[256]; /* String addresss */
1406
1407
1408 cupsdLogMessage(CUPSD_LOG_DEBUG, "launchd_checkin: pid=%d", (int)getpid());
1409
1410 /*
1411 * Check-in with launchd...
1412 */
1413
1414 ld_msg = launch_data_new_string(LAUNCH_KEY_CHECKIN);
1415 if ((ld_resp = launch_msg(ld_msg)) == NULL)
1416 {
1417 cupsdLogMessage(CUPSD_LOG_ERROR,
1418 "launchd_checkin: launch_msg(\"" LAUNCH_KEY_CHECKIN
1419 "\") IPC failure");
1420 exit(EXIT_FAILURE);
1421 }
1422
1423 if (launch_data_get_type(ld_resp) == LAUNCH_DATA_ERRNO)
1424 {
1425 errno = launch_data_get_errno(ld_resp);
1426 cupsdLogMessage(CUPSD_LOG_ERROR, "launchd_checkin: Check-in failed: %s",
1427 strerror(errno));
1428 exit(EXIT_FAILURE);
1429 }
1430
1431 /*
1432 * Get the sockets dictionary...
1433 */
1434
1435 if (!(ld_sockets = launch_data_dict_lookup(ld_resp, LAUNCH_JOBKEY_SOCKETS)))
1436 {
1437 cupsdLogMessage(CUPSD_LOG_ERROR,
1438 "launchd_checkin: No sockets found to answer requests on!");
1439 exit(EXIT_FAILURE);
1440 }
1441
1442 /*
1443 * Get the array of listener sockets...
1444 */
1445
1446 if (!(ld_array = launch_data_dict_lookup(ld_sockets, "Listeners")))
1447 {
1448 cupsdLogMessage(CUPSD_LOG_ERROR,
1449 "launchd_checkin: No sockets found to answer requests on!");
1450 exit(EXIT_FAILURE);
1451 }
1452
1453 /*
1454 * Add listening fd(s) to the Listener array...
1455 */
1456
1457 if (launch_data_get_type(ld_array) == LAUNCH_DATA_ARRAY)
1458 {
1459 count = launch_data_array_get_count(ld_array);
1460
1461 for (i = 0; i < count; i ++)
1462 {
1463 /*
1464 * Get the launchd file descriptor and address...
1465 */
1466
1467 tmp = launch_data_array_get_index(ld_array, i);
1468 fd = launch_data_get_fd(tmp);
1469 addrlen = sizeof(addr);
1470
1471 if (getsockname(fd, (struct sockaddr *)&addr, &addrlen))
1472 {
1473 cupsdLogMessage(CUPSD_LOG_ERROR,
1474 "launchd_checkin: Unable to get local address - %s",
1475 strerror(errno));
1476 continue;
1477 }
1478
1479 /*
1480 * Try to match the launchd socket address to one of the listeners...
1481 */
1482
1483 for (lis = (cupsd_listener_t *)cupsArrayFirst(Listeners);
1484 lis;
1485 lis = (cupsd_listener_t *)cupsArrayNext(Listeners))
1486 if (httpAddrEqual(&lis->address, &addr))
1487 break;
1488
1489 /*
1490 * Add a new listener If there's no match...
1491 */
1492
1493 if (lis)
1494 {
1495 cupsdLogMessage(CUPSD_LOG_DEBUG,
1496 "launchd_checkin: Matched existing listener %s with fd %d...",
1497 httpAddrString(&(lis->address), s, sizeof(s)), fd);
1498 }
1499 else
1500 {
1501 cupsdLogMessage(CUPSD_LOG_DEBUG,
1502 "launchd_checkin: Adding new listener %s with fd %d...",
1503 httpAddrString(&addr, s, sizeof(s)), fd);
1504
1505 if ((lis = calloc(1, sizeof(cupsd_listener_t))) == NULL)
1506 {
1507 cupsdLogMessage(CUPSD_LOG_ERROR,
1508 "launchd_checkin: Unable to allocate listener - %s.",
1509 strerror(errno));
1510 exit(EXIT_FAILURE);
1511 }
1512
1513 cupsArrayAdd(Listeners, lis);
1514
1515 memcpy(&lis->address, &addr, sizeof(lis->address));
1516 }
1517
1518 lis->fd = fd;
1519
1520 # ifdef HAVE_SSL
1521 portnum = 0;
1522
1523 # ifdef AF_INET6
1524 if (lis->address.addr.sa_family == AF_INET6)
1525 portnum = ntohs(lis->address.ipv6.sin6_port);
1526 else
1527 # endif /* AF_INET6 */
1528 if (lis->address.addr.sa_family == AF_INET)
1529 portnum = ntohs(lis->address.ipv4.sin_port);
1530
1531 if (portnum == 443)
1532 lis->encryption = HTTP_ENCRYPT_ALWAYS;
1533 # endif /* HAVE_SSL */
1534 }
1535 }
1536
1537 launch_data_free(ld_msg);
1538 launch_data_free(ld_resp);
1539 }
1540
1541
1542 /*
1543 * 'launchd_checkout()' - Update the launchd KeepAlive file as needed.
1544 */
1545
1546 static void
1547 launchd_checkout(void)
1548 {
1549 int fd; /* File descriptor */
1550
1551
1552 /*
1553 * Create or remove the launchd KeepAlive file based on whether
1554 * there are active jobs, polling, browsing for remote printers or
1555 * shared printers to advertise...
1556 */
1557
1558 if ((cupsArrayCount(ActiveJobs) || NumPolled ||
1559 (Browsing &&
1560 (BrowseRemoteProtocols ||
1561 (BrowseLocalProtocols && NumBrowsers && cupsArrayCount(Printers))))))
1562 {
1563 cupsdLogMessage(CUPSD_LOG_DEBUG,
1564 "Creating launchd keepalive file \"" CUPS_KEEPALIVE "\"...");
1565
1566 if ((fd = open(CUPS_KEEPALIVE, O_RDONLY | O_CREAT | O_EXCL, S_IRUSR)) >= 0)
1567 close(fd);
1568 }
1569 else
1570 {
1571 cupsdLogMessage(CUPSD_LOG_DEBUG,
1572 "Removing launchd keepalive file \"" CUPS_KEEPALIVE "\"...");
1573
1574 unlink(CUPS_KEEPALIVE);
1575 }
1576 }
1577 #endif /* HAVE_LAUNCHD */
1578
1579
1580 /*
1581 * 'parent_handler()' - Catch USR1/CHLD signals...
1582 */
1583
1584 static void
1585 parent_handler(int sig) /* I - Signal */
1586 {
1587 /*
1588 * Store the signal we got from the OS and return...
1589 */
1590
1591 parent_signal = sig;
1592 }
1593
1594
1595 /*
1596 * 'process_children()' - Process all dead children...
1597 */
1598
1599 static void
1600 process_children(void)
1601 {
1602 int status; /* Exit status of child */
1603 int pid; /* Process ID of child */
1604 cupsd_job_t *job; /* Current job */
1605 int i; /* Looping var */
1606 char name[1024]; /* Process name */
1607
1608
1609 cupsdLogMessage(CUPSD_LOG_DEBUG2, "process_children()");
1610
1611 /*
1612 * Reset the dead_children flag...
1613 */
1614
1615 dead_children = 0;
1616
1617 /*
1618 * Collect the exit status of some children...
1619 */
1620
1621 #ifdef HAVE_WAITPID
1622 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
1623 #elif defined(HAVE_WAIT3)
1624 while ((pid = wait3(&status, WNOHANG, NULL)) > 0)
1625 #else
1626 if ((pid = wait(&status)) > 0)
1627 #endif /* HAVE_WAITPID */
1628 {
1629 /*
1630 * Ignore SIGTERM errors - that comes when a job is canceled...
1631 */
1632
1633 cupsdFinishProcess(pid, name, sizeof(name));
1634
1635 /*
1636 * Delete certificates for CGI processes...
1637 */
1638
1639 if (pid)
1640 cupsdDeleteCert(pid);
1641
1642 /*
1643 * Lookup the PID in the jobs list...
1644 */
1645
1646 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
1647 job;
1648 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
1649 if (job->state_value == IPP_JOB_PROCESSING)
1650 {
1651 for (i = 0; job->filters[i]; i ++)
1652 if (job->filters[i] == pid)
1653 break;
1654
1655 if (job->filters[i] || job->backend == pid)
1656 {
1657 /*
1658 * OK, this process has gone away; what's left?
1659 */
1660
1661 if (job->filters[i])
1662 job->filters[i] = -pid;
1663 else
1664 job->backend = -pid;
1665
1666 if (job->state_value == IPP_JOB_CANCELED)
1667 status = 0; /* Ignore errors when canceling jobs */
1668
1669 if (status && job->status >= 0)
1670 {
1671 /*
1672 * An error occurred; save the exit status so we know to stop
1673 * the printer or cancel the job when all of the filters finish...
1674 *
1675 * A negative status indicates that the backend failed and the
1676 * printer needs to be stopped.
1677 */
1678
1679 if (job->filters[i])
1680 job->status = status; /* Filter failed */
1681 else
1682 job->status = -status; /* Backend failed */
1683
1684 if (job->printer && !(job->printer->type & CUPS_PRINTER_FAX) &&
1685 job->status_level > CUPSD_LOG_ERROR)
1686 {
1687 job->status_level = CUPSD_LOG_ERROR;
1688
1689 snprintf(job->printer->state_message,
1690 sizeof(job->printer->state_message), "%s failed", name);
1691 cupsdAddPrinterHistory(job->printer);
1692 }
1693 }
1694
1695 /*
1696 * If this is not the last file in a job, see if all of the
1697 * filters are done, and if so move to the next file.
1698 */
1699
1700 if (job->current_file < job->num_files)
1701 {
1702 for (i = 0; job->filters[i] < 0; i ++);
1703
1704 if (!job->filters[i])
1705 {
1706 /*
1707 * Process the next file...
1708 */
1709
1710 cupsdFinishJob(job);
1711 }
1712 }
1713 break;
1714 }
1715 }
1716
1717 /*
1718 * Show the exit status as needed...
1719 */
1720
1721 if (status == SIGTERM)
1722 status = 0;
1723
1724 if (status)
1725 {
1726 if (WIFEXITED(status))
1727 cupsdLogMessage(CUPSD_LOG_ERROR, "PID %d (%s) stopped with status %d!",
1728 pid, name, WEXITSTATUS(status));
1729 else
1730 cupsdLogMessage(CUPSD_LOG_ERROR, "PID %d (%s) crashed on signal %d!",
1731 pid, name, WTERMSIG(status));
1732
1733 if (LogLevel < CUPSD_LOG_DEBUG)
1734 cupsdLogMessage(CUPSD_LOG_INFO,
1735 "Hint: Try setting the LogLevel to \"debug\" to find "
1736 "out more.");
1737 }
1738 else
1739 cupsdLogMessage(CUPSD_LOG_DEBUG, "PID %d (%s) exited with no errors.",
1740 pid, name);
1741 }
1742 }
1743
1744
1745 /*
1746 * 'sigchld_handler()' - Handle 'child' signals from old processes.
1747 */
1748
1749 static void
1750 sigchld_handler(int sig) /* I - Signal number */
1751 {
1752 (void)sig;
1753
1754 /*
1755 * Flag that we have dead children...
1756 */
1757
1758 dead_children = 1;
1759
1760 /*
1761 * Reset the signal handler as needed...
1762 */
1763
1764 #if !defined(HAVE_SIGSET) && !defined(HAVE_SIGACTION)
1765 signal(SIGCLD, sigchld_handler);
1766 #endif /* !HAVE_SIGSET && !HAVE_SIGACTION */
1767 }
1768
1769
1770 /*
1771 * 'sighup_handler()' - Handle 'hangup' signals to reconfigure the scheduler.
1772 */
1773
1774 static void
1775 sighup_handler(int sig) /* I - Signal number */
1776 {
1777 (void)sig;
1778
1779 NeedReload = RELOAD_ALL;
1780 ReloadTime = time(NULL);
1781
1782 #if !defined(HAVE_SIGSET) && !defined(HAVE_SIGACTION)
1783 signal(SIGHUP, sighup_handler);
1784 #endif /* !HAVE_SIGSET && !HAVE_SIGACTION */
1785 }
1786
1787
1788 /*
1789 * 'sigterm_handler()' - Handle 'terminate' signals that stop the scheduler.
1790 */
1791
1792 static void
1793 sigterm_handler(int sig) /* I - Signal number */
1794 {
1795 (void)sig; /* remove compiler warnings... */
1796
1797 /*
1798 * Flag that we should stop and return...
1799 */
1800
1801 stop_scheduler = 1;
1802 }
1803
1804
1805 /*
1806 * 'select_timeout()' - Calculate the select timeout value.
1807 *
1808 */
1809
1810 static long /* O - Number of seconds */
1811 select_timeout(int fds) /* I - Number of descriptors returned */
1812 {
1813 long timeout; /* Timeout for select */
1814 time_t now; /* Current time */
1815 cupsd_client_t *con; /* Client information */
1816 cupsd_printer_t *p; /* Printer information */
1817 cupsd_job_t *job; /* Job information */
1818 cupsd_subscription_t *sub; /* Subscription information */
1819 const char *why; /* Debugging aid */
1820
1821
1822 /*
1823 * Check to see if any of the clients have pending data to be
1824 * processed; if so, the timeout should be 0...
1825 */
1826
1827 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
1828 con;
1829 con = (cupsd_client_t *)cupsArrayNext(Clients))
1830 if (con->http.used > 0)
1831 return (0);
1832
1833 /*
1834 * If select has been active in the last second (fds > 0) or we have
1835 * many resources in use then don't bother trying to optimize the
1836 * timeout, just make it 1 second.
1837 */
1838
1839 if (fds > 0 || cupsArrayCount(Clients) > 50)
1840 return (1);
1841
1842 /*
1843 * Otherwise, check all of the possible events that we need to wake for...
1844 */
1845
1846 now = time(NULL);
1847 timeout = now + 86400; /* 86400 == 1 day */
1848 why = "do nothing";
1849
1850 /*
1851 * Check whether we are accepting new connections...
1852 */
1853
1854 if (ListeningPaused > 0 && cupsArrayCount(Clients) < MaxClients &&
1855 ListeningPaused < timeout)
1856 {
1857 if (ListeningPaused <= now)
1858 timeout = now;
1859 else
1860 timeout = ListeningPaused;
1861
1862 why = "resume listening";
1863 }
1864
1865 /*
1866 * Check the activity and close old clients...
1867 */
1868
1869 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
1870 con;
1871 con = (cupsd_client_t *)cupsArrayNext(Clients))
1872 if ((con->http.activity + Timeout) < timeout)
1873 {
1874 timeout = con->http.activity + Timeout;
1875 why = "timeout a client connection";
1876 }
1877
1878 /*
1879 * Update the browse list as needed...
1880 */
1881
1882 if (Browsing && BrowseLocalProtocols)
1883 {
1884 #ifdef HAVE_LIBSLP
1885 if ((BrowseLocalProtocols & BROWSE_SLP) && (BrowseSLPRefresh < timeout))
1886 {
1887 timeout = BrowseSLPRefresh;
1888 why = "update SLP browsing";
1889 }
1890 #endif /* HAVE_LIBSLP */
1891
1892 #ifdef HAVE_LDAP
1893 if ((BrowseLocalProtocols & BROWSE_LDAP) && (BrowseLDAPRefresh < timeout))
1894 {
1895 timeout = BrowseLDAPRefresh;
1896 why = "update LDAP browsing";
1897 }
1898 #endif /* HAVE_LDAP */
1899
1900 if ((BrowseLocalProtocols & BROWSE_CUPS) && NumBrowsers)
1901 {
1902 for (p = (cupsd_printer_t *)cupsArrayFirst(Printers);
1903 p;
1904 p = (cupsd_printer_t *)cupsArrayNext(Printers))
1905 {
1906 if (p->type & CUPS_PRINTER_REMOTE)
1907 {
1908 if ((p->browse_time + BrowseTimeout) < timeout)
1909 {
1910 timeout = p->browse_time + BrowseTimeout;
1911 why = "browse timeout a printer";
1912 }
1913 }
1914 else if (p->shared && !(p->type & CUPS_PRINTER_IMPLICIT))
1915 {
1916 if (BrowseInterval && (p->browse_time + BrowseInterval) < timeout)
1917 {
1918 timeout = p->browse_time + BrowseInterval;
1919 why = "send browse update";
1920 }
1921 }
1922 }
1923 }
1924 }
1925
1926 /*
1927 * Check for any active jobs...
1928 */
1929
1930 if (DirtyCleanTime && timeout > DirtyCleanTime)
1931 {
1932 timeout = DirtyCleanTime;
1933 why = "write dirty config/state files";
1934 }
1935
1936 /*
1937 * Check for any active jobs...
1938 */
1939
1940 if (timeout > (now + 10) && ActiveJobs)
1941 {
1942 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
1943 job;
1944 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
1945 if (job->state_value <= IPP_JOB_PROCESSING)
1946 {
1947 timeout = now + 10;
1948 why = "process active jobs";
1949 break;
1950 }
1951 }
1952
1953 #ifdef HAVE_MALLINFO
1954 /*
1955 * Log memory usage every minute...
1956 */
1957
1958 if (LogLevel >= CUPSD_LOG_DEBUG && (mallinfo_time + 60) < timeout)
1959 {
1960 timeout = mallinfo_time + 60;
1961 why = "display memory usage";
1962 }
1963 #endif /* HAVE_MALLINFO */
1964
1965 /*
1966 * Expire subscriptions as needed...
1967 */
1968
1969 for (sub = (cupsd_subscription_t *)cupsArrayFirst(Subscriptions);
1970 sub;
1971 sub = (cupsd_subscription_t *)cupsArrayNext(Subscriptions))
1972 if (!sub->job && sub->expire && sub->expire < timeout)
1973 {
1974 timeout = sub->expire;
1975 why = "expire subscription";
1976 }
1977
1978 /*
1979 * Adjust from absolute to relative time. If p->browse_time above
1980 * was 0 then we can end up with a negative value here, so check.
1981 * We add 1 second to the timeout since events occur after the
1982 * timeout expires, and limit the timeout to 86400 seconds (1 day)
1983 * to avoid select() timeout limits present on some operating
1984 * systems...
1985 */
1986
1987 timeout = timeout - now + 1;
1988
1989 if (timeout < 1)
1990 timeout = 1;
1991 else if (timeout > 86400)
1992 timeout = 86400;
1993
1994 /*
1995 * Log and return the timeout value...
1996 */
1997
1998 cupsdLogMessage(CUPSD_LOG_DEBUG2, "select_timeout(%d): %ld seconds to %s",
1999 fds, timeout, why);
2000
2001 return (timeout);
2002 }
2003
2004
2005 /*
2006 * 'usage()' - Show scheduler usage.
2007 */
2008
2009 static void
2010 usage(int status) /* O - Exit status */
2011 {
2012 _cupsLangPuts(status ? stderr : stdout,
2013 _("Usage: cupsd [-c config-file] [-f] [-F] [-h] [-l]\n"
2014 "\n"
2015 "-c config-file Load alternate configuration file\n"
2016 "-f Run in the foreground\n"
2017 "-F Run in the foreground but detach\n"
2018 "-h Show this usage message\n"
2019 "-l Run cupsd from launchd(8)\n"));
2020 exit(status);
2021 }
2022
2023
2024 /*
2025 * End of "$Id: main.c 6914 2007-09-05 21:05:04Z mike $".
2026 */