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