]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/main.c
Merge changes from CUPS 1.4svn-r7715.
[thirdparty/cups.git] / scheduler / main.c
CommitLineData
ef416fc2 1/*
75bd9771 2 * "$Id: main.c 7681 2008-06-20 21:06:02Z mike $"
ef416fc2 3 *
4 * Scheduler main loop for the Common UNIX Printing System (CUPS).
5 *
91c84a35 6 * Copyright 2007-2008 by Apple Inc.
f7deaa1a 7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 8 *
9 * These coded instructions, statements, and computer programs are the
bc44d920 10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
ef416fc2 12 * "LICENSE" which should have been included with this file. If this
bc44d920 13 * file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 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.
ef416fc2 20 * cupsdHoldSignals() - Hold child and termination signals.
ef416fc2 21 * cupsdReleaseSignals() - Release signals for delivery.
22 * cupsdSetString() - Set a string value.
23 * cupsdSetStringf() - Set a formatted string value.
a4d04587 24 * launchd_checkin() - Check-in with launchd and collect the
25 * listening fds.
f7deaa1a 26 * launchd_checkout() - Check-out with launchd.
ef416fc2 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>
cc0d019f 47#include <cups/dir.h>
ef416fc2 48
a4d04587 49#ifdef HAVE_LAUNCH_H
50# include <launch.h>
51# include <libgen.h>
7594b224 52# define CUPS_KEEPALIVE CUPS_CACHEDIR "/org.cups.cupsd"
f7deaa1a 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 */
a4d04587 63#endif /* HAVE_LAUNCH_H */
64
ef416fc2 65#if defined(HAVE_MALLOC_H) && defined(HAVE_MALLINFO)
66# include <malloc.h>
67#endif /* HAVE_MALLOC_H && HAVE_MALLINFO */
fa73b229 68#ifdef HAVE_NOTIFY_H
69# include <notify.h>
70#endif /* HAVE_NOTIFY_H */
ef416fc2 71
7594b224 72#if defined(__APPLE__) && defined(HAVE_DLFCN_H)
73# include <dlfcn.h>
74#endif /* __APPLE__ && HAVE_DLFCN_H */
75
ef416fc2 76
77/*
78 * Local functions...
79 */
80
a4d04587 81#ifdef HAVE_LAUNCHD
411affcf 82static void launchd_checkin(void);
f7deaa1a 83static void launchd_checkout(void);
a4d04587 84#endif /* HAVE_LAUNCHD */
411affcf 85static void parent_handler(int sig);
86static void process_children(void);
87static void sigchld_handler(int sig);
88static void sighup_handler(int sig);
89static void sigterm_handler(int sig);
90static long select_timeout(int fds);
91static void usage(int status);
ef416fc2 92
93
94/*
95 * Local globals...
96 */
97
411affcf 98static int parent_signal = 0;
99 /* Set to signal number from child */
100static int holdcount = 0; /* Number of times "hold" was called */
ef416fc2 101#if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
411affcf 102static sigset_t holdmask; /* Old POSIX signal mask */
ef416fc2 103#endif /* HAVE_SIGACTION && !HAVE_SIGSET */
411affcf 104static int dead_children = 0;
105 /* Dead children? */
106static int stop_scheduler = 0;
107 /* Should the scheduler stop? */
108
7594b224 109#if defined(__APPLE__) && defined(HAVE_DLFCN_H)
110static const char *PSQLibPath = "/usr/lib/libPrintServiceQuota.dylib";
111static const char *PSQLibFuncName = "PSQUpdateQuota";
112static void *PSQLibRef; /* libPrintServiceQuota.dylib */
113#endif /* HAVE_DLFCN_H */
114
ef416fc2 115
116/*
117 * 'main()' - Main entry for the CUPS scheduler.
118 */
119
120int /* O - Exit status */
bd7854cb 121main(int argc, /* I - Number of command-line args */
ef416fc2 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 */
bd7854cb 127 int fds; /* Number of ready descriptors */
ef416fc2 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 */
a4d04587 132 activity, /* Client activity timer */
ef416fc2 133 browse_time, /* Next browse send time */
134 senddoc_time, /* Send-Document time */
411affcf 135 expire_time, /* Subscription expire time */
50fe7201
MS
136 report_time, /* Malloc/client/job report time */
137 event_time; /* Last time an event notification was done */
f7deaa1a 138 long timeout; /* Timeout for cupsdDoSelect() */
ef416fc2 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 */
a41f09e2
MS
147#ifdef __APPLE__
148 int run_as_child = 0;
149 /* Needed for Mac OS X fork/exec */
a4924f6c
MS
150#else
151 time_t netif_time = 0; /* Time since last network update */
a41f09e2 152#endif /* __APPLE__ */
a4d04587 153#if HAVE_LAUNCHD
4400e98d 154 int launchd_idle_exit;
a4d04587 155 /* Idle exit on select timeout? */
156#endif /* HAVE_LAUNCHD */
ef416fc2 157
158
db1f069b
MS
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
ef416fc2 171 /*
172 * Check for command-line arguments...
173 */
174
4400e98d 175 fg = 0;
ef416fc2 176
09a101d6 177#ifdef HAVE_LAUNCHD
178 if (getenv("CUPSD_LAUNCHD"))
179 {
180 Launchd = 1;
181 fg = 1;
182 }
183#endif /* HAVE_LAUNCHD */
184
ef416fc2 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 {
a41f09e2
MS
190#ifdef __APPLE__
191 case 'C' : /* Run as child with config file */
192 run_as_child = 1;
193 fg = -1;
194#endif /* __APPLE__ */
195
ef416fc2 196 case 'c' : /* Configuration file */
197 i ++;
198 if (i >= argc)
a4d04587 199 {
200 _cupsLangPuts(stderr, _("cupsd: Expected config filename "
201 "after \"-c\" option!\n"));
202 usage(1);
203 }
ef416fc2 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
09ec0018 219 char *current; /* Current directory */
ef416fc2 220
221
09ec0018 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
91c84a35
MS
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 }
09ec0018 243
ef416fc2 244 cupsdSetStringf(&ConfigurationFile, "%s/%s", current, argv[i]);
09ec0018 245 free(current);
ef416fc2 246 }
247 break;
248
249 case 'f' : /* Run in foreground... */
250 fg = 1;
251 break;
252
bd7854cb 253 case 'F' : /* Run in foreground, but disconnect from terminal... */
ef416fc2 254 fg = -1;
255 break;
256
a4d04587 257 case 'h' : /* Show usage/help */
258 usage(0);
259 break;
260
261 case 'l' : /* Started by launchd... */
262#ifdef HAVE_LAUNCHD
4400e98d 263 Launchd = 1;
a4d04587 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
a74454a7 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
2e4ff8af
MS
278 case 't' : /* Test the cupsd.conf file... */
279 TestConfigFile = 1;
280 fg = 1;
281 break;
282
ef416fc2 283 default : /* Unknown option */
a4d04587 284 _cupsLangPrintf(stderr, _("cupsd: Unknown option \"%c\" - "
285 "aborting!\n"), *opt);
286 usage(1);
ef416fc2 287 break;
288 }
289 else
290 {
a4d04587 291 _cupsLangPrintf(stderr, _("cupsd: Unknown argument \"%s\" - aborting!\n"),
292 argv[i]);
293 usage(1);
ef416fc2 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 {
bd7854cb 353 fprintf(stderr, "cupsd: Child exited with status %d!\n",
354 WEXITSTATUS(i));
ef416fc2 355 return (2);
356 }
357 else
358 {
359 fprintf(stderr, "cupsd: Child exited on signal %d!\n", WTERMSIG(i));
360 return (3);
361 }
362 }
a41f09e2
MS
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__ */
ef416fc2 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
b94498cf 406 for (i = 0; i < limit.rlim_cur && i < 1024; i ++)
ef416fc2 407 close(i);
a4924f6c
MS
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);
ef416fc2 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
f7deaa1a 435#if !defined(HAVE_POLL) && !defined(HAVE_EPOLL) && !defined(HAVE_KQUEUE)
f7faf1f5 436 if (limit.rlim_max > FD_SETSIZE)
437 MaxFDs = FD_SETSIZE;
ef416fc2 438 else
f7deaa1a 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 */
ef416fc2 445 MaxFDs = limit.rlim_max;
446
447 limit.rlim_cur = MaxFDs;
448
449 setrlimit(RLIMIT_NOFILE, &limit);
450
f7deaa1a 451 cupsdStartSelect();
ef416fc2 452
453 /*
454 * Read configuration...
455 */
456
457 if (!cupsdReadConfiguration())
458 {
2e4ff8af
MS
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);
ef416fc2 464 return (1);
465 }
2e4ff8af
MS
466 else if (TestConfigFile)
467 {
468 printf("%s is OK\n", ConfigurationFile);
469 return (0);
470 }
ef416fc2 471
cc0d019f
MS
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
75bd9771 492 if (unlink(tempfile))
cc0d019f
MS
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
a4d04587 509#if HAVE_LAUNCHD
4400e98d 510 if (Launchd)
a4d04587 511 {
512 /*
b94498cf 513 * If we were started by launchd get the listen sockets file descriptors...
f7deaa1a 514 */
a4d04587 515
516 launchd_checkin();
517 }
518#endif /* HAVE_LAUNCHD */
519
7594b224 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
c24d2134
MS
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))
a41f09e2
MS
546 {
547 KerberosContext = NULL;
548
c24d2134 549 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to initialize Kerberos context");
a41f09e2 550 }
c24d2134
MS
551#endif /* HAVE_GSSAPI */
552
a4d04587 553 /*
554 * Startup the server...
555 */
556
557 cupsdStartServer();
558
ef416fc2 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 */
e1d6a774 564 sigset(SIGCHLD, sigchld_handler);
4744bd90 565 sigset(SIGHUP, sighup_handler);
ef416fc2 566 sigset(SIGPIPE, SIG_IGN);
567 sigset(SIGTERM, sigterm_handler);
568#elif defined(HAVE_SIGACTION)
569 memset(&action, 0, sizeof(action));
570
e1d6a774 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
ef416fc2 577 sigemptyset(&action.sa_mask);
578 sigaddset(&action.sa_mask, SIGHUP);
4744bd90 579 action.sa_handler = sighup_handler;
ef416fc2 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
e1d6a774 592 signal(SIGCLD, sigchld_handler); /* No, SIGCLD isn't a typo... */
4744bd90 593 signal(SIGHUP, sighup_handler);
ef416fc2 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
a41f09e2
MS
631#ifdef __APPLE__
632 if (!fg || run_as_child)
633#else
ef416fc2 634 if (!fg)
a41f09e2 635#endif /* __APPLE__ */
ef416fc2 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
e1d6a774 649#ifdef __APPLE__
09ec0018 650 /*
651 * Start power management framework...
652 */
653
654 cupsdStartSystemMonitor();
e1d6a774 655#endif /* __APPLE__ */
ef416fc2 656
657 /*
658 * Start any pending print jobs...
659 */
660
661 cupsdCheckJobs();
662
663 /*
664 * Loop forever...
665 */
666
50fe7201
MS
667 current_time = time(NULL);
668 browse_time = current_time;
669 event_time = current_time;
670 expire_time = current_time;
ef416fc2 671 fds = 1;
5bd77a73 672 report_time = 0;
50fe7201 673 senddoc_time = current_time;
ef416fc2 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
bd7854cb 700 if (cupsArrayCount(Clients) > 0)
ef416fc2 701 {
bd7854cb 702 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
703 con;
704 con = (cupsd_client_t *)cupsArrayNext(Clients))
ef416fc2 705 if (con->http.state == HTTP_WAITING)
ef416fc2 706 cupsdCloseClient(con);
ef416fc2 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))
bd7854cb 720 if (job->state_value == IPP_JOB_PROCESSING)
ef416fc2 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
bd7854cb 728 if ((cupsArrayCount(Clients) == 0 &&
729 (!job || NeedReload != RELOAD_ALL)) ||
ef416fc2 730 (time(NULL) - ReloadTime) >= ReloadTimeout)
731 {
a4d04587 732 /*
733 * Shutdown the server...
734 */
735
736 cupsdStopServer();
737
738 /*
739 * Read configuration...
740 */
741
ef416fc2 742 if (!cupsdReadConfiguration())
743 {
744 syslog(LOG_LPR, "Unable to read configuration file \'%s\' - exiting!",
745 ConfigurationFile);
746 break;
747 }
a4d04587 748
749#if HAVE_LAUNCHD
4400e98d 750 if (Launchd)
a4d04587 751 {
b94498cf 752 /*
753 * If we were started by launchd get the listen sockets file descriptors...
754 */
755
a4d04587 756 launchd_checkin();
757 }
758#endif /* HAVE_LAUNCHD */
759
760 /*
761 * Startup the server...
762 */
763
764 cupsdStartServer();
ef416fc2 765 }
766 }
767
768 /*
f7deaa1a 769 * Check for available input or ready output. If cupsdDoSelect()
770 * returns 0 or -1, something bad happened and we should exit
771 * immediately.
ef416fc2 772 *
773 * Note that we at least have one listening socket open at all
774 * times.
775 */
776
50fe7201
MS
777 if ((timeout = select_timeout(fds)) > 1 && LastEvent)
778 timeout = 1;
ef416fc2 779
a4d04587 780#if HAVE_LAUNCHD
781 /*
782 * If no other work is scheduled and we're being controlled by
411affcf 783 * launchd then timeout after 'LaunchdTimeout' seconds of
a4d04587 784 * inactivity...
785 */
786
f7deaa1a 787 if (timeout == 86400 && Launchd && LaunchdTimeout && !NumPolled &&
bc44d920 788 !cupsArrayCount(ActiveJobs) &&
f7deaa1a 789 (!Browsing ||
790 (!BrowseRemoteProtocols &&
791 (!NumBrowsers || !BrowseLocalProtocols ||
792 cupsArrayCount(Printers) == 0))))
a4d04587 793 {
f7deaa1a 794 timeout = LaunchdTimeout;
a4d04587 795 launchd_idle_exit = 1;
796 }
797 else
798 launchd_idle_exit = 0;
799#endif /* HAVE_LAUNCHD */
800
f7deaa1a 801 if ((fds = cupsdDoSelect(timeout)) < 0)
ef416fc2 802 {
ef416fc2 803 /*
804 * Got an error from select!
805 */
806
f7deaa1a 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 */
ef416fc2 813 continue;
814
815 /*
816 * Log all sorts of debug info to help track down the problem.
817 */
818
f7deaa1a 819 cupsdLogMessage(CUPSD_LOG_EMERG, "cupsdDoSelect() failed - %s!",
ef416fc2 820 strerror(errno));
821
bd7854cb 822 for (i = 0, con = (cupsd_client_t *)cupsArrayFirst(Clients);
823 con;
824 i ++, con = (cupsd_client_t *)cupsArrayNext(Clients))
ef416fc2 825 cupsdLogMessage(CUPSD_LOG_EMERG,
826 "Clients[%d] = %d, file = %d, state = %d",
827 i, con->http.fd, con->file, con->http.state);
828
bd7854cb 829 for (i = 0, lis = (cupsd_listener_t *)cupsArrayFirst(Listeners);
830 lis;
831 i ++, lis = (cupsd_listener_t *)cupsArrayNext(Listeners))
ef416fc2 832 cupsdLogMessage(CUPSD_LOG_EMERG, "Listeners[%d] = %d", i, lis->fd);
833
834 cupsdLogMessage(CUPSD_LOG_EMERG, "BrowseSocket = %d", BrowseSocket);
835
923edb68 836 cupsdLogMessage(CUPSD_LOG_EMERG, "CGIPipes[0] = %d", CGIPipes[0]);
837
09ec0018 838#ifdef __APPLE__
839 cupsdLogMessage(CUPSD_LOG_EMERG, "SysEventPipes[0] = %d",
840 SysEventPipes[0]);
841#endif /* __APPLE__ */
842
ef416fc2 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]);
f7deaa1a 851
852#ifdef HAVE_DNSSD
853 for (p = (cupsd_printer_t *)cupsArrayFirst(Printers);
854 p;
855 p = (cupsd_printer_t *)cupsArrayNext(Printers))
7a14d768
MS
856 cupsdLogMessage(CUPSD_LOG_EMERG, "printer[%s] reg_name=\"%s\"", p->name,
857 p->reg_name ? p->reg_name : "(null)");
f7deaa1a 858#endif /* HAVE_DNSSD */
859
ef416fc2 860 break;
861 }
862
863 current_time = time(NULL);
864
3dfe78b3
MS
865 /*
866 * Write dirty config/state files...
867 */
868
869 if (DirtyCleanTime && current_time >= DirtyCleanTime)
870 {
871 cupsdCleanDirty();
872 cupsdSetBusyState();
873 }
874
a4924f6c
MS
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
a4d04587 887#if HAVE_LAUNCHD
888 /*
411affcf 889 * If no other work was scheduled and we're being controlled by launchd
a4d04587 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
76cd9e37
MS
903 /*
904 * Resume listening for new connections as needed...
905 */
906
907 if (ListeningPaused && ListeningPaused <= current_time &&
908 cupsArrayCount(Clients) < MaxClients)
909 cupsdResumeListening();
910
ef416fc2 911 /*
bd7854cb 912 * Expire subscriptions and unload completed jobs as needed...
ef416fc2 913 */
914
bd7854cb 915 if (current_time > expire_time)
ef416fc2 916 {
bd7854cb 917 if (cupsArrayCount(Subscriptions) > 0)
918 cupsdExpireSubscriptions(NULL, NULL);
919
920 cupsdUnloadCompletedJobs();
ef416fc2 921
922 expire_time = current_time;
923 }
924
925 /*
926 * Update the browse list as needed...
927 */
928
f7deaa1a 929 if (Browsing)
ef416fc2 930 {
ef416fc2 931#ifdef HAVE_LIBSLP
b423cd4c 932 if ((BrowseRemoteProtocols & BROWSE_SLP) &&
ef416fc2 933 BrowseSLPRefresh <= current_time)
934 cupsdUpdateSLPBrowse();
935#endif /* HAVE_LIBSLP */
b423cd4c 936
937#ifdef HAVE_LDAP
938 if ((BrowseRemoteProtocols & BROWSE_LDAP) &&
939 BrowseLDAPRefresh <= current_time)
940 cupsdUpdateLDAPBrowse();
941#endif /* HAVE_LDAP */
fa73b229 942 }
ef416fc2 943
fa73b229 944 if (Browsing && BrowseLocalProtocols && current_time > browse_time)
945 {
946 cupsdSendBrowseList();
947 browse_time = current_time;
ef416fc2 948 }
949
950 /*
f7deaa1a 951 * Update the root certificate once every 5 minutes if we have client
952 * connections...
ef416fc2 953 */
954
f7deaa1a 955 if ((current_time - RootCertTime) >= RootCertDuration && RootCertDuration &&
956 !RunUser && cupsArrayCount(Clients))
957 {
958 /*
959 * Update the root certificate...
960 */
961
962 cupsdDeleteCert(0);
5bd77a73 963 cupsdAddCert(0, "root", NULL);
f7deaa1a 964 }
ef416fc2 965
966 /*
967 * Check for new data on the client sockets...
968 */
969
bd7854cb 970 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
971 con;
972 con = (cupsd_client_t *)cupsArrayNext(Clients))
ef416fc2 973 {
974 /*
f7deaa1a 975 * Process pending data in the input buffer...
ef416fc2 976 */
977
f7deaa1a 978 if (con->http.used)
ef416fc2 979 {
f7deaa1a 980 cupsdReadClient(con);
981 continue;
ef416fc2 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);
ef416fc2 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
ef416fc2 1010 /*
5bd77a73 1011 * Log statistics at most once a minute when in debug mode...
ef416fc2 1012 */
1013
5bd77a73 1014 if ((current_time - report_time) >= 60 && LogLevel >= CUPSD_LOG_DEBUG)
ef416fc2 1015 {
5bd77a73
MS
1016 size_t string_count, /* String count */
1017 alloc_bytes, /* Allocated string bytes */
1018 total_bytes; /* Total string bytes */
4400e98d 1019#ifdef HAVE_MALLINFO
5bd77a73 1020 struct mallinfo mem; /* Malloc information */
ef416fc2 1021
1022
1023 mem = mallinfo();
5bd77a73
MS
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",
ef416fc2 1028 mem.fsmblks + mem.fordblks);
4400e98d 1029#endif /* HAVE_MALLINFO */
1030
5bd77a73
MS
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
757d2cad 1042 string_count = _cupsStrStatistics(&alloc_bytes, &total_bytes);
5bd77a73
MS
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,
4400e98d 1051 CUPS_LLCAST total_bytes);
1052
5bd77a73 1053 report_time = current_time;
ef416fc2 1054 }
ef416fc2 1055
fa73b229 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
50fe7201 1061 if (LastEvent && (current_time - event_time) >= 1)
fa73b229 1062 {
1063#ifdef HAVE_NOTIFY_POST
a41f09e2
MS
1064 if (LastEvent & (CUPSD_EVENT_PRINTER_ADDED |
1065 CUPSD_EVENT_PRINTER_DELETED |
1066 CUPSD_EVENT_PRINTER_MODIFIED))
fa73b229 1067 {
e00b005a 1068 cupsdLogMessage(CUPSD_LOG_DEBUG2,
fa73b229 1069 "notify_post(\"com.apple.printerListChange\")");
1070 notify_post("com.apple.printerListChange");
1071 }
1072
1073 if (LastEvent & CUPSD_EVENT_PRINTER_STATE_CHANGED)
1074 {
e00b005a 1075 cupsdLogMessage(CUPSD_LOG_DEBUG2,
fa73b229 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 {
e00b005a 1084 cupsdLogMessage(CUPSD_LOG_DEBUG2,
fa73b229 1085 "notify_post(\"com.apple.jobChange\")");
1086 notify_post("com.apple.jobChange");
1087 }
1088#endif /* HAVE_NOTIFY_POST */
1089
1090 /*
e53920b9 1091 * Reset the accumulated events...
fa73b229 1092 */
1093
50fe7201
MS
1094 LastEvent = CUPSD_EVENT_NONE;
1095 event_time = current_time;
fa73b229 1096 }
ef416fc2 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 /*
7ff4fea9 1110 * Close all network clients...
ef416fc2 1111 */
1112
1113 cupsdStopServer();
1114
7ff4fea9
MS
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
bd7854cb 1128 cupsdFreeAllJobs();
ef416fc2 1129
e1d6a774 1130#ifdef __APPLE__
7ff4fea9
MS
1131 /*
1132 * Stop monitoring system event monitoring...
1133 */
1134
09ec0018 1135 cupsdStopSystemMonitor();
e1d6a774 1136#endif /* __APPLE__ */
09ec0018 1137
c24d2134 1138#ifdef HAVE_GSSAPI
7ff4fea9
MS
1139 /*
1140 * Free the scheduler's Kerberos context...
1141 */
1142
c24d2134
MS
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__ */
a41f09e2
MS
1151 if (KerberosContext)
1152 krb5_free_context(KerberosContext);
c24d2134
MS
1153#endif /* HAVE_GSSAPI */
1154
b94498cf 1155#ifdef __APPLE__
1156#ifdef HAVE_DLFCN_H
1157 /*
1158 * Unload Print Service quota enforcement library (X Server only)
1159 */
411affcf 1160
b94498cf 1161 PSQUpdateQuotaProc = NULL;
1162 if (PSQLibRef)
1163 {
1164 dlclose(PSQLibRef);
1165 PSQLibRef = NULL;
f7deaa1a 1166 }
b94498cf 1167#endif /* HAVE_DLFCN_H */
1168#endif /* __APPLE__ */
a4d04587 1169
ef416fc2 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
f7deaa1a 1182 cupsdStopSelect();
ef416fc2 1183
1184 return (!stop_scheduler);
1185}
1186
1187
1188/*
1189 * 'cupsdClosePipe()' - Close a pipe as necessary.
1190 */
1191
1192void
1193cupsdClosePipe(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
1217int /* O - 0 on success, -1 on error */
1218cupsdOpenPipe(int *fds) /* O - Pipe file descriptors (2) */
1219{
1220 /*
1221 * Create the pipe...
1222 */
1223
1224 if (pipe(fds))
e1d6a774 1225 {
1226 fds[0] = -1;
1227 fds[1] = -1;
1228
ef416fc2 1229 return (-1);
e1d6a774 1230 }
ef416fc2 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]);
e1d6a774 1240
1241 fds[0] = -1;
1242 fds[1] = -1;
1243
ef416fc2 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]);
e1d6a774 1251
1252 fds[0] = -1;
1253 fds[1] = -1;
1254
ef416fc2 1255 return (-1);
1256 }
1257
1258 /*
1259 * Return 0 indicating success...
1260 */
1261
1262 return (0);
1263}
1264
1265
ef416fc2 1266/*
1267 * 'cupsdClearString()' - Clear a string.
1268 */
1269
1270void
1271cupsdClearString(char **s) /* O - String value */
1272{
1273 if (s && *s)
1274 {
e53920b9 1275 _cupsStrFree(*s);
ef416fc2 1276 *s = NULL;
1277 }
1278}
1279
1280
1281/*
1282 * 'cupsdHoldSignals()' - Hold child and termination signals.
1283 */
1284
1285void
1286cupsdHoldSignals(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
ef416fc2 1309/*
1310 * 'cupsdReleaseSignals()' - Release signals for delivery.
1311 */
1312
1313void
1314cupsdReleaseSignals(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
1333void
1334cupsdSetString(char **s, /* O - New string */
1335 const char *v) /* I - String value */
1336{
1337 if (!s || *s == v)
1338 return;
1339
1340 if (*s)
e53920b9 1341 _cupsStrFree(*s);
ef416fc2 1342
1343 if (v)
e53920b9 1344 *s = _cupsStrAlloc(v);
ef416fc2 1345 else
1346 *s = NULL;
1347}
1348
1349
1350/*
1351 * 'cupsdSetStringf()' - Set a formatted string value.
1352 */
1353
1354void
1355cupsdSetStringf(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
e53920b9 1375 *s = _cupsStrAlloc(v);
ef416fc2 1376 }
1377 else
1378 *s = NULL;
1379
1380 if (olds)
e53920b9 1381 _cupsStrFree(olds);
ef416fc2 1382}
1383
1384
a4d04587 1385#ifdef HAVE_LAUNCHD
1386/*
1387 * 'launchd_checkin()' - Check-in with launchd and collect the listening fds.
1388 */
1389
1390static void
1391launchd_checkin(void)
1392{
1393 int i, /* Looping var */
bd7854cb 1394 count, /* Numebr of listeners */
a4d04587 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 */
a4d04587 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 */
f7deaa1a 1404 int fd; /* File descriptor */
1405 char s[256]; /* String addresss */
a4d04587 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 {
bd7854cb 1417 cupsdLogMessage(CUPSD_LOG_ERROR,
a4d04587 1418 "launchd_checkin: launch_msg(\"" LAUNCH_KEY_CHECKIN
1419 "\") IPC failure");
1420 exit(EXIT_FAILURE);
1421 }
bd7854cb 1422
a4d04587 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
a4d04587 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 }
bd7854cb 1441
a4d04587 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 {
f7deaa1a 1459 count = launch_data_array_get_count(ld_array);
bd7854cb 1460
1461 for (i = 0; i < count; i ++)
a4d04587 1462 {
1463 /*
f7deaa1a 1464 * Get the launchd file descriptor and address...
a4d04587 1465 */
bd7854cb 1466
f7deaa1a 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))
bd7854cb 1472 {
1473 cupsdLogMessage(CUPSD_LOG_ERROR,
f7deaa1a 1474 "launchd_checkin: Unable to get local address - %s",
1475 strerror(errno));
1476 continue;
bd7854cb 1477 }
1478
f7deaa1a 1479 /*
1480 * Try to match the launchd socket address to one of the listeners...
1481 */
bd7854cb 1482
f7deaa1a 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 */
a4d04587 1492
f7deaa1a 1493 if (lis)
a4d04587 1494 {
f7deaa1a 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));
a4d04587 1516 }
bd7854cb 1517
f7deaa1a 1518 lis->fd = fd;
1519
a4d04587 1520# ifdef HAVE_SSL
1521 portnum = 0;
bd7854cb 1522
a4d04587 1523# ifdef AF_INET6
f7deaa1a 1524 if (lis->address.addr.sa_family == AF_INET6)
1525 portnum = ntohs(lis->address.ipv6.sin6_port);
a4d04587 1526 else
1527# endif /* AF_INET6 */
f7deaa1a 1528 if (lis->address.addr.sa_family == AF_INET)
1529 portnum = ntohs(lis->address.ipv4.sin_port);
a4d04587 1530
1531 if (portnum == 443)
1532 lis->encryption = HTTP_ENCRYPT_ALWAYS;
1533# endif /* HAVE_SSL */
1534 }
1535 }
1536
a4d04587 1537 launch_data_free(ld_msg);
1538 launch_data_free(ld_resp);
1539}
1540
1541
f7deaa1a 1542/*
1543 * 'launchd_checkout()' - Update the launchd KeepAlive file as needed.
1544 */
1545
1546static void
1547launchd_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}
a4d04587 1577#endif /* HAVE_LAUNCHD */
1578
1579
ef416fc2 1580/*
1581 * 'parent_handler()' - Catch USR1/CHLD signals...
1582 */
1583
1584static void
1585parent_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
1599static void
1600process_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 */
e00b005a 1606 char name[1024]; /* Process name */
ef416fc2 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 {
ef416fc2 1629 /*
d09495fa 1630 * Ignore SIGTERM errors - that comes when a job is canceled...
ef416fc2 1631 */
1632
e00b005a 1633 cupsdFinishProcess(pid, name, sizeof(name));
1634
ef416fc2 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))
79e1d494 1649 if (job->state_value >= IPP_JOB_HELD && (job->filters[0] || job->backend))
ef416fc2 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 (status && job->status >= 0)
1667 {
1668 /*
1669 * An error occurred; save the exit status so we know to stop
1670 * the printer or cancel the job when all of the filters finish...
1671 *
1672 * A negative status indicates that the backend failed and the
1673 * printer needs to be stopped.
1674 */
1675
1676 if (job->filters[i])
1677 job->status = status; /* Filter failed */
1678 else
1679 job->status = -status; /* Backend failed */
e00b005a 1680
ac884b6a
MS
1681 if (job->printer && !(job->printer->type & CUPS_PRINTER_FAX) &&
1682 job->status_level > CUPSD_LOG_ERROR)
e00b005a 1683 {
ac884b6a
MS
1684 job->status_level = CUPSD_LOG_ERROR;
1685
e00b005a 1686 snprintf(job->printer->state_message,
1687 sizeof(job->printer->state_message), "%s failed", name);
1688 cupsdAddPrinterHistory(job->printer);
1689 }
ef416fc2 1690 }
1691
1692 /*
1693 * If this is not the last file in a job, see if all of the
1694 * filters are done, and if so move to the next file.
1695 */
1696
1697 if (job->current_file < job->num_files)
1698 {
1699 for (i = 0; job->filters[i] < 0; i ++);
1700
1701 if (!job->filters[i])
1702 {
1703 /*
1704 * Process the next file...
1705 */
1706
1707 cupsdFinishJob(job);
1708 }
1709 }
1710 break;
1711 }
1712 }
3dfe78b3
MS
1713
1714 /*
1715 * Show the exit status as needed...
1716 */
1717
1718 if (status == SIGTERM)
1719 status = 0;
1720
1721 if (status)
1722 {
1723 if (WIFEXITED(status))
7a14d768 1724 cupsdLogMessage(CUPSD_LOG_DEBUG, "PID %d (%s) stopped with status %d!",
3dfe78b3
MS
1725 pid, name, WEXITSTATUS(status));
1726 else
1727 cupsdLogMessage(CUPSD_LOG_ERROR, "PID %d (%s) crashed on signal %d!",
1728 pid, name, WTERMSIG(status));
1729
1730 if (LogLevel < CUPSD_LOG_DEBUG)
1731 cupsdLogMessage(CUPSD_LOG_INFO,
1732 "Hint: Try setting the LogLevel to \"debug\" to find "
1733 "out more.");
1734 }
1735 else
1736 cupsdLogMessage(CUPSD_LOG_DEBUG, "PID %d (%s) exited with no errors.",
1737 pid, name);
ef416fc2 1738 }
1739}
1740
1741
1742/*
1743 * 'sigchld_handler()' - Handle 'child' signals from old processes.
1744 */
1745
1746static void
ae71f5de 1747sigchld_handler(int sig) /* I - Signal number */
ef416fc2 1748{
1749 (void)sig;
1750
1751 /*
1752 * Flag that we have dead children...
1753 */
1754
1755 dead_children = 1;
1756
1757 /*
1758 * Reset the signal handler as needed...
1759 */
1760
1761#if !defined(HAVE_SIGSET) && !defined(HAVE_SIGACTION)
1762 signal(SIGCLD, sigchld_handler);
1763#endif /* !HAVE_SIGSET && !HAVE_SIGACTION */
1764}
1765
1766
1767/*
1768 * 'sighup_handler()' - Handle 'hangup' signals to reconfigure the scheduler.
1769 */
1770
1771static void
ae71f5de 1772sighup_handler(int sig) /* I - Signal number */
ef416fc2 1773{
1774 (void)sig;
1775
1776 NeedReload = RELOAD_ALL;
1777 ReloadTime = time(NULL);
1778
1779#if !defined(HAVE_SIGSET) && !defined(HAVE_SIGACTION)
1780 signal(SIGHUP, sighup_handler);
1781#endif /* !HAVE_SIGSET && !HAVE_SIGACTION */
1782}
1783
1784
1785/*
1786 * 'sigterm_handler()' - Handle 'terminate' signals that stop the scheduler.
1787 */
1788
1789static void
ae71f5de 1790sigterm_handler(int sig) /* I - Signal number */
ef416fc2 1791{
1792 (void)sig; /* remove compiler warnings... */
1793
1794 /*
1795 * Flag that we should stop and return...
1796 */
1797
1798 stop_scheduler = 1;
1799}
1800
1801
1802/*
1803 * 'select_timeout()' - Calculate the select timeout value.
1804 *
1805 */
1806
1807static long /* O - Number of seconds */
bd7854cb 1808select_timeout(int fds) /* I - Number of descriptors returned */
ef416fc2 1809{
ef416fc2 1810 long timeout; /* Timeout for select */
1811 time_t now; /* Current time */
1812 cupsd_client_t *con; /* Client information */
1813 cupsd_printer_t *p; /* Printer information */
1814 cupsd_job_t *job; /* Job information */
1815 cupsd_subscription_t *sub; /* Subscription information */
1816 const char *why; /* Debugging aid */
1817
1818
1819 /*
1820 * Check to see if any of the clients have pending data to be
1821 * processed; if so, the timeout should be 0...
1822 */
1823
bd7854cb 1824 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
1825 con;
1826 con = (cupsd_client_t *)cupsArrayNext(Clients))
ef416fc2 1827 if (con->http.used > 0)
1828 return (0);
1829
1830 /*
f7deaa1a 1831 * If select has been active in the last second (fds > 0) or we have
ef416fc2 1832 * many resources in use then don't bother trying to optimize the
1833 * timeout, just make it 1 second.
1834 */
1835
f7deaa1a 1836 if (fds > 0 || cupsArrayCount(Clients) > 50)
ef416fc2 1837 return (1);
1838
1839 /*
1840 * Otherwise, check all of the possible events that we need to wake for...
1841 */
1842
1843 now = time(NULL);
1844 timeout = now + 86400; /* 86400 == 1 day */
1845 why = "do nothing";
1846
76cd9e37
MS
1847 /*
1848 * Check whether we are accepting new connections...
1849 */
1850
1851 if (ListeningPaused > 0 && cupsArrayCount(Clients) < MaxClients &&
1852 ListeningPaused < timeout)
1853 {
1854 if (ListeningPaused <= now)
1855 timeout = now;
1856 else
1857 timeout = ListeningPaused;
1858
1859 why = "resume listening";
1860 }
1861
ef416fc2 1862 /*
1863 * Check the activity and close old clients...
1864 */
1865
bd7854cb 1866 for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
1867 con;
1868 con = (cupsd_client_t *)cupsArrayNext(Clients))
ef416fc2 1869 if ((con->http.activity + Timeout) < timeout)
1870 {
1871 timeout = con->http.activity + Timeout;
1872 why = "timeout a client connection";
1873 }
1874
1875 /*
1876 * Update the browse list as needed...
1877 */
1878
1879 if (Browsing && BrowseLocalProtocols)
1880 {
1881#ifdef HAVE_LIBSLP
1882 if ((BrowseLocalProtocols & BROWSE_SLP) && (BrowseSLPRefresh < timeout))
1883 {
1884 timeout = BrowseSLPRefresh;
1885 why = "update SLP browsing";
1886 }
1887#endif /* HAVE_LIBSLP */
1888
b423cd4c 1889#ifdef HAVE_LDAP
1890 if ((BrowseLocalProtocols & BROWSE_LDAP) && (BrowseLDAPRefresh < timeout))
1891 {
1892 timeout = BrowseLDAPRefresh;
1893 why = "update LDAP browsing";
1894 }
1895#endif /* HAVE_LDAP */
1896
f7deaa1a 1897 if ((BrowseLocalProtocols & BROWSE_CUPS) && NumBrowsers)
ef416fc2 1898 {
1899 for (p = (cupsd_printer_t *)cupsArrayFirst(Printers);
1900 p;
1901 p = (cupsd_printer_t *)cupsArrayNext(Printers))
1902 {
1903 if (p->type & CUPS_PRINTER_REMOTE)
1904 {
1905 if ((p->browse_time + BrowseTimeout) < timeout)
1906 {
1907 timeout = p->browse_time + BrowseTimeout;
1908 why = "browse timeout a printer";
1909 }
1910 }
f7deaa1a 1911 else if (p->shared && !(p->type & CUPS_PRINTER_IMPLICIT))
ef416fc2 1912 {
1913 if (BrowseInterval && (p->browse_time + BrowseInterval) < timeout)
1914 {
1915 timeout = p->browse_time + BrowseInterval;
1916 why = "send browse update";
1917 }
1918 }
1919 }
1920 }
1921 }
1922
3dfe78b3
MS
1923 /*
1924 * Check for any active jobs...
1925 */
1926
1927 if (DirtyCleanTime && timeout > DirtyCleanTime)
1928 {
1929 timeout = DirtyCleanTime;
1930 why = "write dirty config/state files";
1931 }
1932
ef416fc2 1933 /*
1934 * Check for any active jobs...
1935 */
1936
1937 if (timeout > (now + 10) && ActiveJobs)
1938 {
1939 for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
1940 job;
1941 job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
bd7854cb 1942 if (job->state_value <= IPP_JOB_PROCESSING)
ef416fc2 1943 {
1944 timeout = now + 10;
1945 why = "process active jobs";
1946 break;
1947 }
1948 }
1949
1950#ifdef HAVE_MALLINFO
1951 /*
1952 * Log memory usage every minute...
1953 */
1954
1955 if (LogLevel >= CUPSD_LOG_DEBUG && (mallinfo_time + 60) < timeout)
1956 {
1957 timeout = mallinfo_time + 60;
1958 why = "display memory usage";
1959 }
1960#endif /* HAVE_MALLINFO */
1961
ef416fc2 1962 /*
1963 * Expire subscriptions as needed...
1964 */
1965
1966 for (sub = (cupsd_subscription_t *)cupsArrayFirst(Subscriptions);
1967 sub;
1968 sub = (cupsd_subscription_t *)cupsArrayNext(Subscriptions))
bd7854cb 1969 if (!sub->job && sub->expire && sub->expire < timeout)
ef416fc2 1970 {
1971 timeout = sub->expire;
1972 why = "expire subscription";
1973 }
1974
1975 /*
1976 * Adjust from absolute to relative time. If p->browse_time above
1977 * was 0 then we can end up with a negative value here, so check.
1978 * We add 1 second to the timeout since events occur after the
1979 * timeout expires, and limit the timeout to 86400 seconds (1 day)
1980 * to avoid select() timeout limits present on some operating
1981 * systems...
1982 */
1983
1984 timeout = timeout - now + 1;
1985
1986 if (timeout < 1)
1987 timeout = 1;
1988 else if (timeout > 86400)
1989 timeout = 86400;
1990
1991 /*
1992 * Log and return the timeout value...
1993 */
1994
f7deaa1a 1995 cupsdLogMessage(CUPSD_LOG_DEBUG2, "select_timeout(%d): %ld seconds to %s",
1996 fds, timeout, why);
ef416fc2 1997
1998 return (timeout);
1999}
2000
2001
2002/*
2003 * 'usage()' - Show scheduler usage.
2004 */
2005
2006static void
a4d04587 2007usage(int status) /* O - Exit status */
ef416fc2 2008{
a4d04587 2009 _cupsLangPuts(status ? stderr : stdout,
2010 _("Usage: cupsd [-c config-file] [-f] [-F] [-h] [-l]\n"
2011 "\n"
2012 "-c config-file Load alternate configuration file\n"
2013 "-f Run in the foreground\n"
2014 "-F Run in the foreground but detach\n"
2015 "-h Show this usage message\n"
2016 "-l Run cupsd from launchd(8)\n"));
2017 exit(status);
ef416fc2 2018}
2019
2020
2021/*
75bd9771 2022 * End of "$Id: main.c 7681 2008-06-20 21:06:02Z mike $".
ef416fc2 2023 */