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