]> git.ipfire.org Git - thirdparty/cups.git/blob - scheduler/main.c
Merge changes from CUPS 1.4svn-r8305.
[thirdparty/cups.git] / scheduler / main.c
1 /*
2 * "$Id: main.c 7925 2008-09-10 17:47:26Z mike $"
3 *
4 * Scheduler main loop for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 2007-2009 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 * select_timeout() - Calculate the select timeout value.
30 * sigchld_handler() - Handle 'child' signals from old processes.
31 * sighup_handler() - Handle 'hangup' signals to reconfigure the
32 * scheduler.
33 * sigterm_handler() - Handle 'terminate' signals that stop the
34 * scheduler.
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 (unlink(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 launchd_checkout();
518 }
519 #endif /* HAVE_LAUNCHD */
520
521 #if defined(__APPLE__) && defined(HAVE_DLFCN_H)
522 /*
523 * Load Print Service quota enforcement library (X Server only)
524 */
525
526 PSQLibRef = dlopen(PSQLibPath, RTLD_LAZY);
527
528 if (PSQLibRef)
529 PSQUpdateQuotaProc = dlsym(PSQLibRef, PSQLibFuncName);
530 #endif /* __APPLE__ && HAVE_DLFCN_H */
531
532 /*
533 * Startup the server...
534 */
535
536 cupsdStartServer();
537
538 /*
539 * Catch hangup and child signals and ignore broken pipes...
540 */
541
542 #ifdef HAVE_SIGSET /* Use System V signals over POSIX to avoid bugs */
543 sigset(SIGCHLD, sigchld_handler);
544 sigset(SIGHUP, sighup_handler);
545 sigset(SIGPIPE, SIG_IGN);
546 sigset(SIGTERM, sigterm_handler);
547 #elif defined(HAVE_SIGACTION)
548 memset(&action, 0, sizeof(action));
549
550 sigemptyset(&action.sa_mask);
551 sigaddset(&action.sa_mask, SIGTERM);
552 sigaddset(&action.sa_mask, SIGCHLD);
553 action.sa_handler = sigchld_handler;
554 sigaction(SIGCHLD, &action, NULL);
555
556 sigemptyset(&action.sa_mask);
557 sigaddset(&action.sa_mask, SIGHUP);
558 action.sa_handler = sighup_handler;
559 sigaction(SIGHUP, &action, NULL);
560
561 sigemptyset(&action.sa_mask);
562 action.sa_handler = SIG_IGN;
563 sigaction(SIGPIPE, &action, NULL);
564
565 sigemptyset(&action.sa_mask);
566 sigaddset(&action.sa_mask, SIGTERM);
567 sigaddset(&action.sa_mask, SIGCHLD);
568 action.sa_handler = sigterm_handler;
569 sigaction(SIGTERM, &action, NULL);
570 #else
571 signal(SIGCLD, sigchld_handler); /* No, SIGCLD isn't a typo... */
572 signal(SIGHUP, sighup_handler);
573 signal(SIGPIPE, SIG_IGN);
574 signal(SIGTERM, sigterm_handler);
575 #endif /* HAVE_SIGSET */
576
577 #ifdef __sgi
578 /*
579 * Try to create a fake lpsched lock file if one is not already there.
580 * Some Adobe applications need it under IRIX in order to enable
581 * printing...
582 */
583
584 if ((fp = cupsFileOpen("/var/spool/lp/SCHEDLOCK", "w")) == NULL)
585 {
586 syslog(LOG_LPR, "Unable to create fake lpsched lock file "
587 "\"/var/spool/lp/SCHEDLOCK\"\' - %s!",
588 strerror(errno));
589 }
590 else
591 {
592 fchmod(cupsFileNumber(fp), 0644);
593 fchown(cupsFileNumber(fp), User, Group);
594
595 cupsFileClose(fp);
596 }
597 #endif /* __sgi */
598
599 /*
600 * Initialize authentication certificates...
601 */
602
603 cupsdInitCerts();
604
605 /*
606 * If we are running in the background, signal the parent process that
607 * we are up and running...
608 */
609
610 #ifdef __APPLE__
611 if (!fg || run_as_child)
612 #else
613 if (!fg)
614 #endif /* __APPLE__ */
615 {
616 /*
617 * Send a signal to the parent process, but only if the parent is
618 * not PID 1 (init). This avoids accidentally shutting down the
619 * system on OpenBSD if you CTRL-C the server before it is up...
620 */
621
622 i = getppid(); /* Save parent PID to avoid race condition */
623
624 if (i != 1)
625 kill(i, SIGUSR1);
626 }
627
628 #ifdef __APPLE__
629 /*
630 * Start power management framework...
631 */
632
633 cupsdStartSystemMonitor();
634 #endif /* __APPLE__ */
635
636 /*
637 * Send server-started event...
638 */
639
640 #ifdef HAVE_LAUNCHD
641 if (Launchd)
642 cupsdAddEvent(CUPSD_EVENT_SERVER_STARTED, NULL, NULL,
643 "Scheduler started via launchd.");
644 else
645 #endif /* HAVE_LAUNCHD */
646 if (fg)
647 cupsdAddEvent(CUPSD_EVENT_SERVER_STARTED, NULL, NULL,
648 "Scheduler started in foreground.");
649 else
650 cupsdAddEvent(CUPSD_EVENT_SERVER_STARTED, NULL, NULL,
651 "Scheduler started in background.");
652
653 /*
654 * Start any pending print jobs...
655 */
656
657 cupsdCheckJobs();
658
659 /*
660 * Loop forever...
661 */
662
663 current_time = time(NULL);
664 browse_time = current_time;
665 event_time = current_time;
666 expire_time = current_time;
667 fds = 1;
668 report_time = 0;
669 senddoc_time = current_time;
670
671 while (!stop_scheduler)
672 {
673 #ifdef DEBUG
674 cupsdLogMessage(CUPSD_LOG_DEBUG2,
675 "main: Top of loop, dead_children=%d, NeedReload=%d",
676 dead_children, NeedReload);
677 #endif /* DEBUG */
678
679 /*
680 * Check if there are dead children to handle...
681 */
682
683 if (dead_children)
684 process_children();
685
686 /*
687 * Check if we need to load the server configuration file...
688 */
689
690 if (NeedReload)
691 {
692 /*
693 * Close any idle clients...
694 */
695
696 if (cupsArrayCount(Clients) > 0)
697 {
698 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
699 con;
700 con = (cupsd_client_t *)cupsArrayNext(Clients))
701 if (con->http.state == HTTP_WAITING)
702 cupsdCloseClient(con);
703 else
704 con->http.keep_alive = HTTP_KEEPALIVE_OFF;
705
706 cupsdPauseListening();
707 }
708
709 /*
710 * Check for any active jobs...
711 */
712
713 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
714 job;
715 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
716 if (job->state_value == IPP_JOB_PROCESSING)
717 break;
718
719 /*
720 * Restart if all clients are closed and all jobs finished, or
721 * if the reload timeout has elapsed...
722 */
723
724 if ((cupsArrayCount(Clients) == 0 &&
725 (!job || NeedReload != RELOAD_ALL)) ||
726 (time(NULL) - ReloadTime) >= ReloadTimeout)
727 {
728 /*
729 * Shutdown the server...
730 */
731
732 cupsdStopServer();
733
734 /*
735 * Read configuration...
736 */
737
738 if (!cupsdReadConfiguration())
739 {
740 syslog(LOG_LPR, "Unable to read configuration file \'%s\' - exiting!",
741 ConfigurationFile);
742 break;
743 }
744
745 #if HAVE_LAUNCHD
746 if (Launchd)
747 {
748 /*
749 * If we were started by launchd get the listen sockets file descriptors...
750 */
751
752 launchd_checkin();
753 launchd_checkout();
754 }
755 #endif /* HAVE_LAUNCHD */
756
757 /*
758 * Startup the server...
759 */
760
761 cupsdStartServer();
762
763 /*
764 * Send a server-restarted event...
765 */
766
767 cupsdAddEvent(CUPSD_EVENT_SERVER_RESTARTED, NULL, NULL,
768 "Scheduler restarted.");
769 }
770 }
771
772 /*
773 * Check for available input or ready output. If cupsdDoSelect()
774 * returns 0 or -1, something bad happened and we should exit
775 * immediately.
776 *
777 * Note that we at least have one listening socket open at all
778 * times.
779 */
780
781 if ((timeout = select_timeout(fds)) > 1 && LastEvent)
782 timeout = 1;
783
784 #if HAVE_LAUNCHD
785 /*
786 * If no other work is scheduled and we're being controlled by
787 * launchd then timeout after 'LaunchdTimeout' seconds of
788 * inactivity...
789 */
790
791 if (timeout == 86400 && Launchd && LaunchdTimeout && !NumPolled &&
792 !cupsArrayCount(ActiveJobs) &&
793 (!Browsing ||
794 (!BrowseRemoteProtocols &&
795 (!NumBrowsers || !BrowseLocalProtocols ||
796 cupsArrayCount(Printers) == 0))))
797 {
798 timeout = LaunchdTimeout;
799 launchd_idle_exit = 1;
800 }
801 else
802 launchd_idle_exit = 0;
803 #endif /* HAVE_LAUNCHD */
804
805 if ((fds = cupsdDoSelect(timeout)) < 0)
806 {
807 /*
808 * Got an error from select!
809 */
810
811 #ifdef HAVE_DNSSD
812 cupsd_printer_t *p; /* Current printer */
813 #endif /* HAVE_DNSSD */
814
815
816 if (errno == EINTR) /* Just interrupted by a signal */
817 continue;
818
819 /*
820 * Log all sorts of debug info to help track down the problem.
821 */
822
823 cupsdLogMessage(CUPSD_LOG_EMERG, "cupsdDoSelect() failed - %s!",
824 strerror(errno));
825
826 for (i = 0, con = (cupsd_client_t *)cupsArrayFirst(Clients);
827 con;
828 i ++, con = (cupsd_client_t *)cupsArrayNext(Clients))
829 cupsdLogMessage(CUPSD_LOG_EMERG,
830 "Clients[%d] = %d, file = %d, state = %d",
831 i, con->http.fd, con->file, con->http.state);
832
833 for (i = 0, lis = (cupsd_listener_t *)cupsArrayFirst(Listeners);
834 lis;
835 i ++, lis = (cupsd_listener_t *)cupsArrayNext(Listeners))
836 cupsdLogMessage(CUPSD_LOG_EMERG, "Listeners[%d] = %d", i, lis->fd);
837
838 cupsdLogMessage(CUPSD_LOG_EMERG, "BrowseSocket = %d", BrowseSocket);
839
840 cupsdLogMessage(CUPSD_LOG_EMERG, "CGIPipes[0] = %d", CGIPipes[0]);
841
842 #ifdef __APPLE__
843 cupsdLogMessage(CUPSD_LOG_EMERG, "SysEventPipes[0] = %d",
844 SysEventPipes[0]);
845 #endif /* __APPLE__ */
846
847 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
848 job;
849 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
850 cupsdLogMessage(CUPSD_LOG_EMERG, "Jobs[%d] = %d < [%d %d] > [%d %d]",
851 job->id,
852 job->status_buffer ? job->status_buffer->fd : -1,
853 job->print_pipes[0], job->print_pipes[1],
854 job->back_pipes[0], job->back_pipes[1]);
855
856 #ifdef HAVE_DNSSD
857 for (p = (cupsd_printer_t *)cupsArrayFirst(Printers);
858 p;
859 p = (cupsd_printer_t *)cupsArrayNext(Printers))
860 cupsdLogMessage(CUPSD_LOG_EMERG, "printer[%s] reg_name=\"%s\"", p->name,
861 p->reg_name ? p->reg_name : "(null)");
862 #endif /* HAVE_DNSSD */
863
864 break;
865 }
866
867 current_time = time(NULL);
868
869 /*
870 * Write dirty config/state files...
871 */
872
873 if (DirtyCleanTime && current_time >= DirtyCleanTime)
874 cupsdCleanDirty();
875
876 #ifdef __APPLE__
877 /*
878 * If we are going to sleep and still have pending jobs, stop them after
879 * a period of time...
880 */
881
882 if (SleepJobs > 0 && current_time >= SleepJobs &&
883 cupsArrayCount(PrintingJobs) > 0)
884 {
885 SleepJobs = 0;
886 cupsdStopAllJobs(0);
887 }
888 #endif /* __APPLE__ */
889
890 #ifndef __APPLE__
891 /*
892 * Update the network interfaces once a minute...
893 */
894
895 if ((current_time - netif_time) >= 60)
896 {
897 netif_time = current_time;
898 NetIFUpdate = 1;
899 }
900 #endif /* !__APPLE__ */
901
902 #if HAVE_LAUNCHD
903 /*
904 * If no other work was scheduled and we're being controlled by launchd
905 * then timeout after 'LaunchdTimeout' seconds of inactivity...
906 */
907
908 if (!fds && launchd_idle_exit)
909 {
910 cupsdLogMessage(CUPSD_LOG_INFO,
911 "Printer sharing is off and there are no jobs pending, "
912 "will restart on demand.");
913 stop_scheduler = 1;
914 break;
915 }
916 #endif /* HAVE_LAUNCHD */
917
918 /*
919 * Resume listening for new connections as needed...
920 */
921
922 if (ListeningPaused && ListeningPaused <= current_time &&
923 cupsArrayCount(Clients) < MaxClients)
924 cupsdResumeListening();
925
926 /*
927 * Expire subscriptions and unload completed jobs as needed...
928 */
929
930 if (current_time > expire_time)
931 {
932 if (cupsArrayCount(Subscriptions) > 0)
933 cupsdExpireSubscriptions(NULL, NULL);
934
935 cupsdUnloadCompletedJobs();
936
937 expire_time = current_time;
938 }
939
940 /*
941 * Update the browse list as needed...
942 */
943
944 if (Browsing)
945 {
946 #ifdef HAVE_LIBSLP
947 if ((BrowseRemoteProtocols & BROWSE_SLP) &&
948 BrowseSLPRefresh <= current_time)
949 cupsdUpdateSLPBrowse();
950 #endif /* HAVE_LIBSLP */
951
952 #ifdef HAVE_LDAP
953 if ((BrowseRemoteProtocols & BROWSE_LDAP) &&
954 BrowseLDAPRefresh <= current_time)
955 cupsdUpdateLDAPBrowse();
956 #endif /* HAVE_LDAP */
957 }
958
959 if (Browsing && current_time > browse_time)
960 {
961 cupsdSendBrowseList();
962 browse_time = current_time;
963 }
964
965 /*
966 * Update the root certificate once every 5 minutes if we have client
967 * connections...
968 */
969
970 if ((current_time - RootCertTime) >= RootCertDuration && RootCertDuration &&
971 !RunUser && cupsArrayCount(Clients))
972 {
973 /*
974 * Update the root certificate...
975 */
976
977 cupsdDeleteCert(0);
978 cupsdAddCert(0, "root", NULL);
979 }
980
981 /*
982 * Check for new data on the client sockets...
983 */
984
985 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
986 con;
987 con = (cupsd_client_t *)cupsArrayNext(Clients))
988 {
989 /*
990 * Process pending data in the input buffer...
991 */
992
993 if (con->http.used)
994 {
995 cupsdReadClient(con);
996 continue;
997 }
998
999 /*
1000 * Check the activity and close old clients...
1001 */
1002
1003 activity = current_time - Timeout;
1004 if (con->http.activity < activity && !con->pipe_pid)
1005 {
1006 cupsdLogMessage(CUPSD_LOG_DEBUG,
1007 "Closing client %d after %d seconds of inactivity...",
1008 con->http.fd, Timeout);
1009
1010 cupsdCloseClient(con);
1011 continue;
1012 }
1013 }
1014
1015 /*
1016 * Update any pending multi-file documents...
1017 */
1018
1019 if ((current_time - senddoc_time) >= 10)
1020 {
1021 cupsdCheckJobs();
1022 senddoc_time = current_time;
1023 }
1024
1025 /*
1026 * Log statistics at most once a minute when in debug mode...
1027 */
1028
1029 if ((current_time - report_time) >= 60 && LogLevel >= CUPSD_LOG_DEBUG)
1030 {
1031 size_t string_count, /* String count */
1032 alloc_bytes, /* Allocated string bytes */
1033 total_bytes; /* Total string bytes */
1034 #ifdef HAVE_MALLINFO
1035 struct mallinfo mem; /* Malloc information */
1036
1037
1038 mem = mallinfo();
1039 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: malloc-arena=%lu", mem.arena);
1040 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: malloc-used=%lu",
1041 mem.usmblks + mem.uordblks);
1042 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: malloc-free=%lu",
1043 mem.fsmblks + mem.fordblks);
1044 #endif /* HAVE_MALLINFO */
1045
1046 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: clients=%d",
1047 cupsArrayCount(Clients));
1048 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: jobs=%d",
1049 cupsArrayCount(Jobs));
1050 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: jobs-active=%d",
1051 cupsArrayCount(ActiveJobs));
1052 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: printers=%d",
1053 cupsArrayCount(Printers));
1054 cupsdLogMessage(CUPSD_LOG_DEBUG, "Report: printers-implicit=%d",
1055 cupsArrayCount(ImplicitPrinters));
1056
1057 string_count = _cupsStrStatistics(&alloc_bytes, &total_bytes);
1058 cupsdLogMessage(CUPSD_LOG_DEBUG,
1059 "Report: stringpool-string-count=" CUPS_LLFMT,
1060 CUPS_LLCAST string_count);
1061 cupsdLogMessage(CUPSD_LOG_DEBUG,
1062 "Report: stringpool-alloc-bytes=" CUPS_LLFMT,
1063 CUPS_LLCAST alloc_bytes);
1064 cupsdLogMessage(CUPSD_LOG_DEBUG,
1065 "Report: stringpool-total-bytes=" CUPS_LLFMT,
1066 CUPS_LLCAST total_bytes);
1067
1068 report_time = current_time;
1069 }
1070
1071 /*
1072 * Handle OS-specific event notification for any events that have
1073 * accumulated. Don't send these more than once a second...
1074 */
1075
1076 if (LastEvent && (current_time - event_time) >= 1)
1077 {
1078 #ifdef HAVE_NOTIFY_POST
1079 if (LastEvent & (CUPSD_EVENT_PRINTER_ADDED |
1080 CUPSD_EVENT_PRINTER_DELETED |
1081 CUPSD_EVENT_PRINTER_MODIFIED))
1082 {
1083 cupsdLogMessage(CUPSD_LOG_DEBUG2,
1084 "notify_post(\"com.apple.printerListChange\")");
1085 notify_post("com.apple.printerListChange");
1086 }
1087
1088 if (LastEvent & CUPSD_EVENT_PRINTER_STATE_CHANGED)
1089 {
1090 cupsdLogMessage(CUPSD_LOG_DEBUG2,
1091 "notify_post(\"com.apple.printerHistoryChange\")");
1092 notify_post("com.apple.printerHistoryChange");
1093 }
1094
1095 if (LastEvent & (CUPSD_EVENT_JOB_STATE_CHANGED |
1096 CUPSD_EVENT_JOB_CONFIG_CHANGED |
1097 CUPSD_EVENT_JOB_PROGRESS))
1098 {
1099 cupsdLogMessage(CUPSD_LOG_DEBUG2,
1100 "notify_post(\"com.apple.jobChange\")");
1101 notify_post("com.apple.jobChange");
1102 }
1103 #endif /* HAVE_NOTIFY_POST */
1104
1105 /*
1106 * Reset the accumulated events...
1107 */
1108
1109 LastEvent = CUPSD_EVENT_NONE;
1110 event_time = current_time;
1111 }
1112 }
1113
1114 /*
1115 * Log a message based on what happened...
1116 */
1117
1118 if (stop_scheduler)
1119 {
1120 cupsdLogMessage(CUPSD_LOG_INFO, "Scheduler shutting down normally.");
1121 cupsdAddEvent(CUPSD_EVENT_SERVER_STOPPED, NULL, NULL,
1122 "Scheduler shutting down normally.");
1123 }
1124 else
1125 {
1126 cupsdLogMessage(CUPSD_LOG_ERROR,
1127 "Scheduler shutting down due to program error.");
1128 cupsdAddEvent(CUPSD_EVENT_SERVER_STOPPED, NULL, NULL,
1129 "Scheduler shutting down due to program error.");
1130 }
1131
1132 /*
1133 * Close all network clients...
1134 */
1135
1136 cupsdStopServer();
1137
1138 #ifdef HAVE_LAUNCHD
1139 /*
1140 * Update the launchd KeepAlive file as needed...
1141 */
1142
1143 if (Launchd)
1144 launchd_checkout();
1145 #endif /* HAVE_LAUNCHD */
1146
1147 /*
1148 * Stop all jobs...
1149 */
1150
1151 cupsdFreeAllJobs();
1152
1153 #ifdef __APPLE__
1154 /*
1155 * Stop monitoring system event monitoring...
1156 */
1157
1158 cupsdStopSystemMonitor();
1159 #endif /* __APPLE__ */
1160
1161 #ifdef HAVE_GSSAPI
1162 /*
1163 * Free the scheduler's Kerberos context...
1164 */
1165
1166 # ifdef __APPLE__
1167 /*
1168 * If the weak-linked GSSAPI/Kerberos library is not present, don't try
1169 * to use it...
1170 */
1171
1172 if (krb5_init_context != NULL)
1173 # endif /* __APPLE__ */
1174 if (KerberosContext)
1175 krb5_free_context(KerberosContext);
1176 #endif /* HAVE_GSSAPI */
1177
1178 #if defined(__APPLE__) && defined(HAVE_DLFCN_H)
1179 /*
1180 * Unload Print Service quota enforcement library (X Server only)
1181 */
1182
1183 PSQUpdateQuotaProc = NULL;
1184 if (PSQLibRef)
1185 {
1186 dlclose(PSQLibRef);
1187 PSQLibRef = NULL;
1188 }
1189 #endif /* __APPLE__ && HAVE_DLFCN_H */
1190
1191 #ifdef __sgi
1192 /*
1193 * Remove the fake IRIX lpsched lock file, but only if the existing
1194 * file is not a FIFO which indicates that the real IRIX lpsched is
1195 * running...
1196 */
1197
1198 if (!stat("/var/spool/lp/FIFO", &statbuf))
1199 if (!S_ISFIFO(statbuf.st_mode))
1200 unlink("/var/spool/lp/SCHEDLOCK");
1201 #endif /* __sgi */
1202
1203 cupsdStopSelect();
1204
1205 return (!stop_scheduler);
1206 }
1207
1208
1209 /*
1210 * 'cupsdClosePipe()' - Close a pipe as necessary.
1211 */
1212
1213 void
1214 cupsdClosePipe(int *fds) /* I - Pipe file descriptors (2) */
1215 {
1216 /*
1217 * Close file descriptors as needed...
1218 */
1219
1220 if (fds[0] >= 0)
1221 {
1222 close(fds[0]);
1223 fds[0] = -1;
1224 }
1225
1226 if (fds[1] >= 0)
1227 {
1228 close(fds[1]);
1229 fds[1] = -1;
1230 }
1231 }
1232
1233
1234 /*
1235 * 'cupsdOpenPipe()' - Create a pipe which is closed on exec.
1236 */
1237
1238 int /* O - 0 on success, -1 on error */
1239 cupsdOpenPipe(int *fds) /* O - Pipe file descriptors (2) */
1240 {
1241 /*
1242 * Create the pipe...
1243 */
1244
1245 if (pipe(fds))
1246 {
1247 fds[0] = -1;
1248 fds[1] = -1;
1249
1250 return (-1);
1251 }
1252
1253 /*
1254 * Set the "close on exec" flag on each end of the pipe...
1255 */
1256
1257 if (fcntl(fds[0], F_SETFD, fcntl(fds[0], F_GETFD) | FD_CLOEXEC))
1258 {
1259 close(fds[0]);
1260 close(fds[1]);
1261
1262 fds[0] = -1;
1263 fds[1] = -1;
1264
1265 return (-1);
1266 }
1267
1268 if (fcntl(fds[1], F_SETFD, fcntl(fds[1], F_GETFD) | FD_CLOEXEC))
1269 {
1270 close(fds[0]);
1271 close(fds[1]);
1272
1273 fds[0] = -1;
1274 fds[1] = -1;
1275
1276 return (-1);
1277 }
1278
1279 /*
1280 * Return 0 indicating success...
1281 */
1282
1283 return (0);
1284 }
1285
1286
1287 /*
1288 * 'cupsdClearString()' - Clear a string.
1289 */
1290
1291 void
1292 cupsdClearString(char **s) /* O - String value */
1293 {
1294 if (s && *s)
1295 {
1296 _cupsStrFree(*s);
1297 *s = NULL;
1298 }
1299 }
1300
1301
1302 /*
1303 * 'cupsdHoldSignals()' - Hold child and termination signals.
1304 */
1305
1306 void
1307 cupsdHoldSignals(void)
1308 {
1309 #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
1310 sigset_t newmask; /* New POSIX signal mask */
1311 #endif /* HAVE_SIGACTION && !HAVE_SIGSET */
1312
1313
1314 holdcount ++;
1315 if (holdcount > 1)
1316 return;
1317
1318 #ifdef HAVE_SIGSET
1319 sighold(SIGTERM);
1320 sighold(SIGCHLD);
1321 #elif defined(HAVE_SIGACTION)
1322 sigemptyset(&newmask);
1323 sigaddset(&newmask, SIGTERM);
1324 sigaddset(&newmask, SIGCHLD);
1325 sigprocmask(SIG_BLOCK, &newmask, &holdmask);
1326 #endif /* HAVE_SIGSET */
1327 }
1328
1329
1330 /*
1331 * 'cupsdReleaseSignals()' - Release signals for delivery.
1332 */
1333
1334 void
1335 cupsdReleaseSignals(void)
1336 {
1337 holdcount --;
1338 if (holdcount > 0)
1339 return;
1340
1341 #ifdef HAVE_SIGSET
1342 sigrelse(SIGTERM);
1343 sigrelse(SIGCHLD);
1344 #elif defined(HAVE_SIGACTION)
1345 sigprocmask(SIG_SETMASK, &holdmask, NULL);
1346 #endif /* HAVE_SIGSET */
1347 }
1348
1349
1350 /*
1351 * 'cupsdSetString()' - Set a string value.
1352 */
1353
1354 void
1355 cupsdSetString(char **s, /* O - New string */
1356 const char *v) /* I - String value */
1357 {
1358 if (!s || *s == v)
1359 return;
1360
1361 if (*s)
1362 _cupsStrFree(*s);
1363
1364 if (v)
1365 *s = _cupsStrAlloc(v);
1366 else
1367 *s = NULL;
1368 }
1369
1370
1371 /*
1372 * 'cupsdSetStringf()' - Set a formatted string value.
1373 */
1374
1375 void
1376 cupsdSetStringf(char **s, /* O - New string */
1377 const char *f, /* I - Printf-style format string */
1378 ...) /* I - Additional args as needed */
1379 {
1380 char v[4096]; /* Formatting string value */
1381 va_list ap; /* Argument pointer */
1382 char *olds; /* Old string */
1383
1384
1385 if (!s)
1386 return;
1387
1388 olds = *s;
1389
1390 if (f)
1391 {
1392 va_start(ap, f);
1393 vsnprintf(v, sizeof(v), f, ap);
1394 va_end(ap);
1395
1396 *s = _cupsStrAlloc(v);
1397 }
1398 else
1399 *s = NULL;
1400
1401 if (olds)
1402 _cupsStrFree(olds);
1403 }
1404
1405
1406 #ifdef HAVE_LAUNCHD
1407 /*
1408 * 'launchd_checkin()' - Check-in with launchd and collect the listening fds.
1409 */
1410
1411 static void
1412 launchd_checkin(void)
1413 {
1414 size_t i, /* Looping var */
1415 count; /* Numebr of listeners */
1416 int portnum; /* Port number */
1417 launch_data_t ld_msg, /* Launch data message */
1418 ld_resp, /* Launch data response */
1419 ld_array, /* Launch data array */
1420 ld_sockets, /* Launch data sockets dictionary */
1421 tmp; /* Launch data */
1422 cupsd_listener_t *lis; /* Listeners array */
1423 http_addr_t addr; /* Address variable */
1424 socklen_t addrlen; /* Length of address */
1425 int fd; /* File descriptor */
1426 char s[256]; /* String addresss */
1427
1428
1429 cupsdLogMessage(CUPSD_LOG_DEBUG, "launchd_checkin: pid=%d", (int)getpid());
1430
1431 /*
1432 * Check-in with launchd...
1433 */
1434
1435 ld_msg = launch_data_new_string(LAUNCH_KEY_CHECKIN);
1436 if ((ld_resp = launch_msg(ld_msg)) == NULL)
1437 {
1438 cupsdLogMessage(CUPSD_LOG_ERROR,
1439 "launchd_checkin: launch_msg(\"" LAUNCH_KEY_CHECKIN
1440 "\") IPC failure");
1441 exit(EXIT_FAILURE);
1442 return; /* anti-compiler-warning */
1443 }
1444
1445 if (launch_data_get_type(ld_resp) == LAUNCH_DATA_ERRNO)
1446 {
1447 errno = launch_data_get_errno(ld_resp);
1448 cupsdLogMessage(CUPSD_LOG_ERROR, "launchd_checkin: Check-in failed: %s",
1449 strerror(errno));
1450 exit(EXIT_FAILURE);
1451 return; /* anti-compiler-warning */
1452 }
1453
1454 /*
1455 * Get the sockets dictionary...
1456 */
1457
1458 if ((ld_sockets = launch_data_dict_lookup(ld_resp, LAUNCH_JOBKEY_SOCKETS))
1459 == NULL)
1460 {
1461 cupsdLogMessage(CUPSD_LOG_ERROR,
1462 "launchd_checkin: No sockets found to answer requests on!");
1463 exit(EXIT_FAILURE);
1464 return; /* anti-compiler-warning */
1465 }
1466
1467 /*
1468 * Get the array of listener sockets...
1469 */
1470
1471 if ((ld_array = launch_data_dict_lookup(ld_sockets, "Listeners")) == NULL)
1472 {
1473 cupsdLogMessage(CUPSD_LOG_ERROR,
1474 "launchd_checkin: No sockets found to answer requests on!");
1475 exit(EXIT_FAILURE);
1476 return; /* anti-compiler-warning */
1477 }
1478
1479 /*
1480 * Add listening fd(s) to the Listener array...
1481 */
1482
1483 if (launch_data_get_type(ld_array) == LAUNCH_DATA_ARRAY)
1484 {
1485 count = launch_data_array_get_count(ld_array);
1486
1487 for (i = 0; i < count; i ++)
1488 {
1489 /*
1490 * Get the launchd file descriptor and address...
1491 */
1492
1493 if ((tmp = launch_data_array_get_index(ld_array, i)) != NULL)
1494 {
1495 fd = launch_data_get_fd(tmp);
1496 addrlen = sizeof(addr);
1497
1498 if (getsockname(fd, (struct sockaddr *)&addr, &addrlen))
1499 {
1500 cupsdLogMessage(CUPSD_LOG_ERROR,
1501 "launchd_checkin: Unable to get local address - %s",
1502 strerror(errno));
1503 continue;
1504 }
1505
1506 /*
1507 * Try to match the launchd socket address to one of the listeners...
1508 */
1509
1510 for (lis = (cupsd_listener_t *)cupsArrayFirst(Listeners);
1511 lis;
1512 lis = (cupsd_listener_t *)cupsArrayNext(Listeners))
1513 if (httpAddrEqual(&lis->address, &addr))
1514 break;
1515
1516 /*
1517 * Add a new listener If there's no match...
1518 */
1519
1520 if (lis)
1521 {
1522 cupsdLogMessage(CUPSD_LOG_DEBUG,
1523 "launchd_checkin: Matched existing listener %s with fd %d...",
1524 httpAddrString(&(lis->address), s, sizeof(s)), fd);
1525 }
1526 else
1527 {
1528 cupsdLogMessage(CUPSD_LOG_DEBUG,
1529 "launchd_checkin: Adding new listener %s with fd %d...",
1530 httpAddrString(&addr, s, sizeof(s)), fd);
1531
1532 if ((lis = calloc(1, sizeof(cupsd_listener_t))) == NULL)
1533 {
1534 cupsdLogMessage(CUPSD_LOG_ERROR,
1535 "launchd_checkin: Unable to allocate listener - %s.",
1536 strerror(errno));
1537 exit(EXIT_FAILURE);
1538 }
1539
1540 cupsArrayAdd(Listeners, lis);
1541
1542 memcpy(&lis->address, &addr, sizeof(lis->address));
1543 }
1544
1545 lis->fd = fd;
1546
1547 # ifdef HAVE_SSL
1548 portnum = 0;
1549
1550 # ifdef AF_INET6
1551 if (lis->address.addr.sa_family == AF_INET6)
1552 portnum = ntohs(lis->address.ipv6.sin6_port);
1553 else
1554 # endif /* AF_INET6 */
1555 if (lis->address.addr.sa_family == AF_INET)
1556 portnum = ntohs(lis->address.ipv4.sin_port);
1557
1558 if (portnum == 443)
1559 lis->encryption = HTTP_ENCRYPT_ALWAYS;
1560 # endif /* HAVE_SSL */
1561 }
1562 }
1563 }
1564
1565 launch_data_free(ld_msg);
1566 launch_data_free(ld_resp);
1567 }
1568
1569
1570 /*
1571 * 'launchd_checkout()' - Update the launchd KeepAlive file as needed.
1572 */
1573
1574 static void
1575 launchd_checkout(void)
1576 {
1577 int fd; /* File descriptor */
1578
1579
1580 /*
1581 * Create or remove the launchd KeepAlive file based on whether
1582 * there are active jobs, polling, browsing for remote printers or
1583 * shared printers to advertise...
1584 */
1585
1586 if ((cupsArrayCount(ActiveJobs) || NumPolled ||
1587 (Browsing &&
1588 (BrowseRemoteProtocols ||
1589 (BrowseLocalProtocols && NumBrowsers && cupsArrayCount(Printers))))))
1590 {
1591 cupsdLogMessage(CUPSD_LOG_DEBUG,
1592 "Creating launchd keepalive file \"" CUPS_KEEPALIVE "\"...");
1593
1594 if ((fd = open(CUPS_KEEPALIVE, O_RDONLY | O_CREAT | O_EXCL, S_IRUSR)) >= 0)
1595 close(fd);
1596 }
1597 else
1598 {
1599 cupsdLogMessage(CUPSD_LOG_DEBUG,
1600 "Removing launchd keepalive file \"" CUPS_KEEPALIVE "\"...");
1601
1602 unlink(CUPS_KEEPALIVE);
1603 }
1604 }
1605 #endif /* HAVE_LAUNCHD */
1606
1607
1608 /*
1609 * 'parent_handler()' - Catch USR1/CHLD signals...
1610 */
1611
1612 static void
1613 parent_handler(int sig) /* I - Signal */
1614 {
1615 /*
1616 * Store the signal we got from the OS and return...
1617 */
1618
1619 parent_signal = sig;
1620 }
1621
1622
1623 /*
1624 * 'process_children()' - Process all dead children...
1625 */
1626
1627 static void
1628 process_children(void)
1629 {
1630 int status; /* Exit status of child */
1631 int pid; /* Process ID of child */
1632 cupsd_job_t *job; /* Current job */
1633 int i; /* Looping var */
1634 char name[1024]; /* Process name */
1635
1636
1637 cupsdLogMessage(CUPSD_LOG_DEBUG2, "process_children()");
1638
1639 /*
1640 * Reset the dead_children flag...
1641 */
1642
1643 dead_children = 0;
1644
1645 /*
1646 * Collect the exit status of some children...
1647 */
1648
1649 #ifdef HAVE_WAITPID
1650 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
1651 #elif defined(HAVE_WAIT3)
1652 while ((pid = wait3(&status, WNOHANG, NULL)) > 0)
1653 #else
1654 if ((pid = wait(&status)) > 0)
1655 #endif /* HAVE_WAITPID */
1656 {
1657 /*
1658 * Ignore SIGTERM errors - that comes when a job is canceled...
1659 */
1660
1661 cupsdFinishProcess(pid, name, sizeof(name));
1662
1663 /*
1664 * Delete certificates for CGI processes...
1665 */
1666
1667 if (pid)
1668 cupsdDeleteCert(pid);
1669
1670 /*
1671 * Lookup the PID in the jobs list...
1672 */
1673
1674 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
1675 job;
1676 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
1677 if (job->state_value >= IPP_JOB_HELD && (job->filters[0] || job->backend))
1678 {
1679 for (i = 0; job->filters[i]; i ++)
1680 if (job->filters[i] == pid)
1681 break;
1682
1683 if (job->filters[i] || job->backend == pid)
1684 {
1685 /*
1686 * OK, this process has gone away; what's left?
1687 */
1688
1689 if (job->filters[i])
1690 job->filters[i] = -pid;
1691 else
1692 job->backend = -pid;
1693
1694 if (status && job->status >= 0)
1695 {
1696 /*
1697 * An error occurred; save the exit status so we know to stop
1698 * the printer or cancel the job when all of the filters finish...
1699 *
1700 * A negative status indicates that the backend failed and the
1701 * printer needs to be stopped.
1702 */
1703
1704 if (job->filters[i])
1705 job->status = status; /* Filter failed */
1706 else
1707 job->status = -status; /* Backend failed */
1708
1709 if (job->printer && !(job->printer->type & CUPS_PRINTER_FAX) &&
1710 job->status_level > CUPSD_LOG_ERROR)
1711 {
1712 job->status_level = CUPSD_LOG_ERROR;
1713
1714 snprintf(job->printer->state_message,
1715 sizeof(job->printer->state_message), "%s failed", name);
1716 cupsdAddPrinterHistory(job->printer);
1717 }
1718 }
1719
1720 /*
1721 * If this is not the last file in a job, see if all of the
1722 * filters are done, and if so move to the next file.
1723 */
1724
1725 if (job->current_file < job->num_files)
1726 {
1727 for (i = 0; job->filters[i] < 0; i ++);
1728
1729 if (!job->filters[i])
1730 {
1731 /*
1732 * Process the next file...
1733 */
1734
1735 cupsdFinishJob(job);
1736 }
1737 }
1738 break;
1739 }
1740 }
1741
1742 /*
1743 * Show the exit status as needed...
1744 */
1745
1746 if (status == SIGTERM)
1747 status = 0;
1748
1749 if (status)
1750 {
1751 if (WIFEXITED(status))
1752 cupsdLogMessage(CUPSD_LOG_DEBUG, "PID %d (%s) stopped with status %d!",
1753 pid, name, WEXITSTATUS(status));
1754 else
1755 cupsdLogMessage(CUPSD_LOG_ERROR, "PID %d (%s) crashed on signal %d!",
1756 pid, name, WTERMSIG(status));
1757
1758 if (LogLevel < CUPSD_LOG_DEBUG)
1759 cupsdLogMessage(CUPSD_LOG_INFO,
1760 "Hint: Try setting the LogLevel to \"debug\" to find "
1761 "out more.");
1762 }
1763 else
1764 cupsdLogMessage(CUPSD_LOG_DEBUG, "PID %d (%s) exited with no errors.",
1765 pid, name);
1766 }
1767
1768 /*
1769 * If wait*() is interrupted by a signal, tell main() to call us again...
1770 */
1771
1772 if (pid < 0 && errno == EINTR)
1773 dead_children = 1;
1774 }
1775
1776
1777 /*
1778 * 'select_timeout()' - Calculate the select timeout value.
1779 *
1780 */
1781
1782 static long /* O - Number of seconds */
1783 select_timeout(int fds) /* I - Number of descriptors returned */
1784 {
1785 long timeout; /* Timeout for select */
1786 time_t now; /* Current time */
1787 cupsd_client_t *con; /* Client information */
1788 cupsd_printer_t *p; /* Printer information */
1789 cupsd_job_t *job; /* Job information */
1790 cupsd_subscription_t *sub; /* Subscription information */
1791 const char *why; /* Debugging aid */
1792
1793
1794 /*
1795 * Check to see if any of the clients have pending data to be
1796 * processed; if so, the timeout should be 0...
1797 */
1798
1799 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
1800 con;
1801 con = (cupsd_client_t *)cupsArrayNext(Clients))
1802 if (con->http.used > 0)
1803 return (0);
1804
1805 /*
1806 * If select has been active in the last second (fds > 0) or we have
1807 * many resources in use then don't bother trying to optimize the
1808 * timeout, just make it 1 second.
1809 */
1810
1811 if (fds > 0 || cupsArrayCount(Clients) > 50)
1812 return (1);
1813
1814 /*
1815 * Otherwise, check all of the possible events that we need to wake for...
1816 */
1817
1818 now = time(NULL);
1819 timeout = now + 86400; /* 86400 == 1 day */
1820 why = "do nothing";
1821
1822 #ifdef __APPLE__
1823 /*
1824 * When going to sleep, wake up to cancel jobs that don't complete in time.
1825 */
1826
1827 if (SleepJobs > 0 && SleepJobs < timeout)
1828 {
1829 timeout = SleepJobs;
1830 why = "cancel jobs before sleeping";
1831 }
1832 #endif /* __APPLE__ */
1833
1834 /*
1835 * Check whether we are accepting new connections...
1836 */
1837
1838 if (ListeningPaused > 0 && cupsArrayCount(Clients) < MaxClients &&
1839 ListeningPaused < timeout)
1840 {
1841 if (ListeningPaused <= now)
1842 timeout = now;
1843 else
1844 timeout = ListeningPaused;
1845
1846 why = "resume listening";
1847 }
1848
1849 /*
1850 * Check the activity and close old clients...
1851 */
1852
1853 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
1854 con;
1855 con = (cupsd_client_t *)cupsArrayNext(Clients))
1856 if ((con->http.activity + Timeout) < timeout)
1857 {
1858 timeout = con->http.activity + Timeout;
1859 why = "timeout a client connection";
1860 }
1861
1862 /*
1863 * Update the browse list as needed...
1864 */
1865
1866 if (Browsing && BrowseLocalProtocols)
1867 {
1868 #ifdef HAVE_LIBSLP
1869 if ((BrowseLocalProtocols & BROWSE_SLP) && (BrowseSLPRefresh < timeout))
1870 {
1871 timeout = BrowseSLPRefresh;
1872 why = "update SLP browsing";
1873 }
1874 #endif /* HAVE_LIBSLP */
1875
1876 #ifdef HAVE_LDAP
1877 if ((BrowseLocalProtocols & BROWSE_LDAP) && (BrowseLDAPRefresh < timeout))
1878 {
1879 timeout = BrowseLDAPRefresh;
1880 why = "update LDAP browsing";
1881 }
1882 #endif /* HAVE_LDAP */
1883
1884 if ((BrowseLocalProtocols & BROWSE_CUPS) && NumBrowsers)
1885 {
1886 for (p = (cupsd_printer_t *)cupsArrayFirst(Printers);
1887 p;
1888 p = (cupsd_printer_t *)cupsArrayNext(Printers))
1889 {
1890 if (p->type & CUPS_PRINTER_REMOTE)
1891 {
1892 if ((p->browse_time + BrowseTimeout) < timeout)
1893 {
1894 timeout = p->browse_time + BrowseTimeout;
1895 why = "browse timeout a printer";
1896 }
1897 }
1898 else if (p->shared && !(p->type & CUPS_PRINTER_IMPLICIT))
1899 {
1900 if (BrowseInterval && (p->browse_time + BrowseInterval) < timeout)
1901 {
1902 timeout = p->browse_time + BrowseInterval;
1903 why = "send browse update";
1904 }
1905 }
1906 }
1907 }
1908 }
1909
1910 /*
1911 * Check for any active jobs...
1912 */
1913
1914 if (DirtyCleanTime && timeout > DirtyCleanTime)
1915 {
1916 timeout = DirtyCleanTime;
1917 why = "write dirty config/state files";
1918 }
1919
1920 /*
1921 * Check for any active jobs...
1922 */
1923
1924 if (timeout > (now + 10) && ActiveJobs)
1925 {
1926 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
1927 job;
1928 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
1929 if (job->state_value <= IPP_JOB_PROCESSING)
1930 {
1931 timeout = now + 10;
1932 why = "process active jobs";
1933 break;
1934 }
1935 }
1936
1937 #ifdef HAVE_MALLINFO
1938 /*
1939 * Log memory usage every minute...
1940 */
1941
1942 if (LogLevel >= CUPSD_LOG_DEBUG && (mallinfo_time + 60) < timeout)
1943 {
1944 timeout = mallinfo_time + 60;
1945 why = "display memory usage";
1946 }
1947 #endif /* HAVE_MALLINFO */
1948
1949 /*
1950 * Expire subscriptions as needed...
1951 */
1952
1953 for (sub = (cupsd_subscription_t *)cupsArrayFirst(Subscriptions);
1954 sub;
1955 sub = (cupsd_subscription_t *)cupsArrayNext(Subscriptions))
1956 if (!sub->job && sub->expire && sub->expire < timeout)
1957 {
1958 timeout = sub->expire;
1959 why = "expire subscription";
1960 }
1961
1962 /*
1963 * Adjust from absolute to relative time. If p->browse_time above
1964 * was 0 then we can end up with a negative value here, so check.
1965 * We add 1 second to the timeout since events occur after the
1966 * timeout expires, and limit the timeout to 86400 seconds (1 day)
1967 * to avoid select() timeout limits present on some operating
1968 * systems...
1969 */
1970
1971 timeout = timeout - now + 1;
1972
1973 if (timeout < 1)
1974 timeout = 1;
1975 else if (timeout > 86400)
1976 timeout = 86400;
1977
1978 /*
1979 * Log and return the timeout value...
1980 */
1981
1982 cupsdLogMessage(CUPSD_LOG_DEBUG2, "select_timeout(%d): %ld seconds to %s",
1983 fds, timeout, why);
1984
1985 return (timeout);
1986 }
1987
1988
1989 /*
1990 * 'sigchld_handler()' - Handle 'child' signals from old processes.
1991 */
1992
1993 static void
1994 sigchld_handler(int sig) /* I - Signal number */
1995 {
1996 (void)sig;
1997
1998 /*
1999 * Flag that we have dead children...
2000 */
2001
2002 dead_children = 1;
2003
2004 /*
2005 * Reset the signal handler as needed...
2006 */
2007
2008 #if !defined(HAVE_SIGSET) && !defined(HAVE_SIGACTION)
2009 signal(SIGCLD, sigchld_handler);
2010 #endif /* !HAVE_SIGSET && !HAVE_SIGACTION */
2011 }
2012
2013
2014 /*
2015 * 'sighup_handler()' - Handle 'hangup' signals to reconfigure the scheduler.
2016 */
2017
2018 static void
2019 sighup_handler(int sig) /* I - Signal number */
2020 {
2021 (void)sig;
2022
2023 NeedReload = RELOAD_ALL;
2024 ReloadTime = time(NULL);
2025
2026 #if !defined(HAVE_SIGSET) && !defined(HAVE_SIGACTION)
2027 signal(SIGHUP, sighup_handler);
2028 #endif /* !HAVE_SIGSET && !HAVE_SIGACTION */
2029 }
2030
2031
2032 /*
2033 * 'sigterm_handler()' - Handle 'terminate' signals that stop the scheduler.
2034 */
2035
2036 static void
2037 sigterm_handler(int sig) /* I - Signal number */
2038 {
2039 (void)sig; /* remove compiler warnings... */
2040
2041 /*
2042 * Flag that we should stop and return...
2043 */
2044
2045 stop_scheduler = 1;
2046 }
2047
2048
2049 /*
2050 * 'usage()' - Show scheduler usage.
2051 */
2052
2053 static void
2054 usage(int status) /* O - Exit status */
2055 {
2056 _cupsLangPuts(status ? stderr : stdout,
2057 _("Usage: cupsd [-c config-file] [-f] [-F] [-h] [-l]\n"
2058 "\n"
2059 "-c config-file Load alternate configuration file\n"
2060 "-f Run in the foreground\n"
2061 "-F Run in the foreground but detach\n"
2062 "-h Show this usage message\n"
2063 "-l Run cupsd from launchd(8)\n"));
2064 exit(status);
2065 }
2066
2067
2068 /*
2069 * End of "$Id: main.c 7925 2008-09-10 17:47:26Z mike $".
2070 */