]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/main.c
Load cups into easysw/current.
[thirdparty/cups.git] / scheduler / main.c
index 7016fa6e80e4d3048d1970003896e6c61e09e354..1cff1f1ddb664f029e57827990e8f1eb7f483bc6 100644 (file)
@@ -1,9 +1,9 @@
 /*
- * "$Id: main.c 5042 2006-02-01 18:17:34Z mike $"
+ * "$Id: main.c 6564 2007-06-18 23:40:38Z mike $"
  *
  *   Scheduler main loop for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   These coded instructions, statements, and computer programs are the
  *   property of Easy Software Products and are protected by Federal
  *   main()                    - Main entry for the CUPS scheduler.
  *   cupsdClosePipe()          - Close a pipe as necessary.
  *   cupsdOpenPipe()           - Create a pipe which is closed on exec.
- *   cupsdCatchChildSignals()  - Catch SIGCHLD signals...
  *   cupsdHoldSignals()        - Hold child and termination signals.
- *   cupsdIgnoreChildSignals() - Ignore SIGCHLD signals...
  *   cupsdReleaseSignals()     - Release signals for delivery.
  *   cupsdSetString()          - Set a string value.
  *   cupsdSetStringf()         - Set a formatted string value.
  *   launchd_checkin()         - Check-in with launchd and collect the
  *                               listening fds.
- *   launchd_reload()          - Tell launchd to reload the configuration
- *                               file to pick up the new listening directives.
- *   launchd_sync_conf()       - Re-write the launchd(8) config file 
- *                              com.easysw.cupsd.plist based on cupsd.conf.
+ *   launchd_checkout()        - Check-out with launchd.
  *   parent_handler()          - Catch USR1/CHLD signals...
  *   process_children()        - Process all dead children...
  *   sigchld_handler()         - Handle 'child' signals from old processes.
 #ifdef HAVE_LAUNCH_H
 #  include <launch.h>
 #  include <libgen.h>
+#  define CUPS_KEEPALIVE       CUPS_CACHEDIR "/org.cups.cupsd"
+                                       /* Name of the launchd KeepAlive file */
+#  ifndef LAUNCH_JOBKEY_KEEPALIVE
+#    define LAUNCH_JOBKEY_KEEPALIVE "KeepAlive"
+#  endif /* !LAUNCH_JOBKEY_KEEPALIVE */
+#  ifndef LAUNCH_JOBKEY_PATHSTATE
+#    define LAUNCH_JOBKEY_PATHSTATE "PathState"
+#  endif /* !LAUNCH_JOBKEY_PATHSTATE */
+#  ifndef LAUNCH_JOBKEY_SERVICEIPC
+#    define LAUNCH_JOBKEY_SERVICEIPC "ServiceIPC"
+#  endif /* !LAUNCH_JOBKEY_SERVICEIPC */
 #endif /* HAVE_LAUNCH_H */
 
 #if defined(HAVE_MALLOC_H) && defined(HAVE_MALLINFO)
 #  include <notify.h>
 #endif /* HAVE_NOTIFY_H */
 
+#if defined(__APPLE__) && defined(HAVE_DLFCN_H)
+#  include <dlfcn.h>
+#endif /* __APPLE__ && HAVE_DLFCN_H */
+
 
 /*
  * Local functions...
  */
 
 #ifdef HAVE_LAUNCHD
-static void    launchd_checkin(void);
-static void    launchd_reload(void);
-static int     launchd_sync_conf(void);
+static void            launchd_checkin(void);
+static void            launchd_checkout(void);
 #endif /* HAVE_LAUNCHD */
-
-static void    parent_handler(int sig);
-static void    process_children(void);
-static void    sigchld_handler(int sig);
-static void    sighup_handler(int sig);
-static void    sigterm_handler(int sig);
-static long    select_timeout(int fds);
-static void    usage(int status);
+static void            parent_handler(int sig);
+static void            process_children(void);
+static void            sigchld_handler(int sig);
+static void            sighup_handler(int sig);
+static void            sigterm_handler(int sig);
+static long            select_timeout(int fds);
+static void            usage(int status);
 
 
 /*
  * Local globals...
  */
 
-static int     parent_signal = 0;      /* Set to signal number from child */
-static int     holdcount = 0;          /* Number of times "hold" was called */
+static int             parent_signal = 0;
+                                       /* Set to signal number from child */
+static int             holdcount = 0;  /* Number of times "hold" was called */
 #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
-static sigset_t        holdmask;               /* Old POSIX signal mask */
+static sigset_t                holdmask;       /* Old POSIX signal mask */
 #endif /* HAVE_SIGACTION && !HAVE_SIGSET */
-static int     dead_children = 0;      /* Dead children? */
-static int     stop_scheduler = 0;     /* Should the scheduler stop? */
+static int             dead_children = 0;
+                                       /* Dead children? */
+static int             stop_scheduler = 0;
+                                       /* Should the scheduler stop? */
+
+#if defined(__APPLE__) && defined(HAVE_DLFCN_H)
+static const char *PSQLibPath = "/usr/lib/libPrintServiceQuota.dylib";
+static const char *PSQLibFuncName = "PSQUpdateQuota";
+static void *PSQLibRef;                        /* libPrintServiceQuota.dylib */
+#endif /* HAVE_DLFCN_H */
 
 
 /*
@@ -109,15 +126,13 @@ static int        stop_scheduler = 0;     /* Should the scheduler stop? */
  */
 
 int                                    /* O - Exit status */
-main(int  argc,                                /* I - Number of command-line arguments */
+main(int  argc,                                /* I - Number of command-line args */
      char *argv[])                     /* I - Command-line arguments */
 {
   int                  i;              /* Looping var */
   char                 *opt;           /* Option character */
   int                  fg;             /* Run in the foreground */
-  int                  fds;            /* Number of ready descriptors select returns */
-  fd_set               *input,         /* Input set for select() */
-                       *output;        /* Output set for select() */
+  int                  fds;            /* Number of ready descriptors */
   cupsd_client_t       *con;           /* Current client */
   cupsd_job_t          *job;           /* Current job */
   cupsd_listener_t     *lis;           /* Current listener */
@@ -125,11 +140,12 @@ main(int  argc,                           /* I - Number of command-line arguments */
                        activity,       /* Client activity timer */
                        browse_time,    /* Next browse send time */
                        senddoc_time,   /* Send-Document time */
-                       expire_time;    /* Subscription expire time */
-#ifdef HAVE_MALLINFO
-  time_t               mallinfo_time;  /* Malloc information time */
-#endif /* HAVE_MALLINFO */
-  struct timeval       timeout;        /* select() timeout */
+                       expire_time,    /* Subscription expire time */
+                       mallinfo_time;  /* Malloc information time */
+  size_t               string_count,   /* String count */
+                       alloc_bytes,    /* Allocated string bytes */
+                       total_bytes;    /* Total string bytes */
+  long                 timeout;        /* Timeout for cupsdDoSelect() */
   struct rlimit                limit;          /* Runtime limit */
 #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
   struct sigaction     action;         /* Actions for POSIX signals */
@@ -139,8 +155,7 @@ main(int  argc,                             /* I - Number of command-line arguments */
   struct stat          statbuf;        /* Needed for checking lpsched FIFO */
 #endif /* __sgi */
 #if HAVE_LAUNCHD
-  int                  launchd,        /* Started with the -l option? */
-                       launchd_idle_exit;
+  int                  launchd_idle_exit;
                                        /* Idle exit on select timeout? */
 #endif /* HAVE_LAUNCHD */
 
@@ -149,9 +164,14 @@ main(int  argc,                            /* I - Number of command-line arguments */
   * Check for command-line arguments...
   */
 
-  fg      = 0;
-#if HAVE_LAUNCHD
-  launchd = 0;
+  fg = 0;
+
+#ifdef HAVE_LAUNCHD
+  if (getenv("CUPSD_LAUNCHD"))
+  {
+    Launchd = 1;
+    fg      = 1;
+  }
 #endif /* HAVE_LAUNCHD */
 
   for (i = 1; i < argc; i ++)
@@ -205,7 +225,7 @@ main(int  argc,                             /* I - Number of command-line arguments */
              fg = 1;
              break;
 
-          case 'F' : /* Run in foreground, but still disconnect from terminal... */
+          case 'F' : /* Run in foreground, but disconnect from terminal... */
              fg = -1;
              break;
 
@@ -215,7 +235,7 @@ main(int  argc,                             /* I - Number of command-line arguments */
 
           case 'l' : /* Started by launchd... */
 #ifdef HAVE_LAUNCHD
-             launchd = 1;
+             Launchd = 1;
              fg      = 1;
 #else
              _cupsLangPuts(stderr, _("cupsd: launchd(8) support not compiled "
@@ -224,6 +244,12 @@ main(int  argc,                            /* I - Number of command-line arguments */
 #endif /* HAVE_LAUNCHD */
              break;
 
+          case 'p' : /* Stop immediately for profiling */
+              puts("Warning: -p option is for internal testing use only!");
+             stop_scheduler = 1;
+             fg             = 1;
+             break;
+
          default : /* Unknown option */
               _cupsLangPrintf(stderr, _("cupsd: Unknown option \"%c\" - "
                                        "aborting!\n"), *opt);
@@ -294,7 +320,8 @@ main(int  argc,                             /* I - Number of command-line arguments */
       }
       else if (WIFEXITED(i))
       {
-        fprintf(stderr, "cupsd: Child exited with status %d!\n", WEXITSTATUS(i));
+        fprintf(stderr, "cupsd: Child exited with status %d!\n",
+               WEXITSTATUS(i));
        return (2);
       }
       else
@@ -334,7 +361,7 @@ main(int  argc,                             /* I - Number of command-line arguments */
 
     getrlimit(RLIMIT_NOFILE, &limit);
 
-    for (i = 0; i < limit.rlim_cur; i ++)
+    for (i = 0; i < limit.rlim_cur && i < 1024; i ++)
       close(i);
 #endif /* DEBUG */
   }
@@ -355,33 +382,23 @@ main(int  argc,                           /* I - Number of command-line arguments */
 
   getrlimit(RLIMIT_NOFILE, &limit);
 
-  if (limit.rlim_max > CUPS_MAX_FDS)
-    MaxFDs = CUPS_MAX_FDS;
+#if !defined(HAVE_POLL) && !defined(HAVE_EPOLL) && !defined(HAVE_KQUEUE)
+  if (limit.rlim_max > FD_SETSIZE)
+    MaxFDs = FD_SETSIZE;
   else
+#endif /* !HAVE_POLL && !HAVE_EPOLL && !HAVE_KQUEUE */
+#ifdef RLIM_INFINITY
+  if (limit.rlim_max == RLIM_INFINITY)
+    MaxFDs = 16384;
+  else
+#endif /* RLIM_INFINITY */
     MaxFDs = limit.rlim_max;
 
   limit.rlim_cur = MaxFDs;
 
   setrlimit(RLIMIT_NOFILE, &limit);
 
- /*
-  * Allocate memory for the input and output sets...
-  */
-
-  SetSize = (MaxFDs + 31) / 8 + 4;
-  if (SetSize < sizeof(fd_set))
-    SetSize = sizeof(fd_set);
-
-  InputSet  = (fd_set *)calloc(1, SetSize);
-  OutputSet = (fd_set *)calloc(1, SetSize);
-  input     = (fd_set *)calloc(1, SetSize);
-  output    = (fd_set *)calloc(1, SetSize);
-
-  if (InputSet == NULL || OutputSet == NULL || input == NULL || output == NULL)
-  {
-    syslog(LOG_LPR, "Unable to allocate memory for select() sets - exiting!");
-    return (1);
-  }
+  cupsdStartSelect();
 
  /*
   * Read configuration...
@@ -395,30 +412,27 @@ main(int  argc,                           /* I - Number of command-line arguments */
   }
 
 #if HAVE_LAUNCHD
-  if (launchd)
+  if (Launchd)
   {
    /*
-    * If we were started by launchd make sure the cupsd plist file contains the
-    * same listeners as cupsd.conf; If it didn't then reload it before getting
-    * the list of listening file descriptors...
+    * If we were started by launchd get the listen sockets file descriptors...
     */
 
-    if (launchd_sync_conf())
-    {
-      launchd_reload();
-
-     /*
-      * Until rdar://3854821 is fixed we have to exit after the reload...
-      */
-
-      cupsdLogMessage(CUPSD_LOG_DEBUG2, "Exiting on launchd_reload");
-      exit(0);
-    }
-
     launchd_checkin();
   }
 #endif /* HAVE_LAUNCHD */
 
+#if defined(__APPLE__) && defined(HAVE_DLFCN_H)
+ /*
+  * Load Print Service quota enforcement library (X Server only)
+  */
+
+  PSQLibRef = dlopen(PSQLibPath, RTLD_LAZY);
+
+  if (PSQLibRef)
+    PSQUpdateQuotaProc = dlsym(PSQLibRef, PSQLibFuncName);
+#endif /* __APPLE__ && HAVE_DLFCN_H */
+
  /*
   * Startup the server...
   */
@@ -430,24 +444,22 @@ main(int  argc,                           /* I - Number of command-line arguments */
   */
 
 #ifdef HAVE_SIGSET /* Use System V signals over POSIX to avoid bugs */
-  if (RunAsUser)
-    sigset(SIGHUP, sigterm_handler);
-  else
-    sigset(SIGHUP, sighup_handler);
-
+  sigset(SIGCHLD, sigchld_handler);
+  sigset(SIGHUP, sighup_handler);
   sigset(SIGPIPE, SIG_IGN);
   sigset(SIGTERM, sigterm_handler);
 #elif defined(HAVE_SIGACTION)
   memset(&action, 0, sizeof(action));
 
   sigemptyset(&action.sa_mask);
-  sigaddset(&action.sa_mask, SIGHUP);
-
-  if (RunAsUser)
-    action.sa_handler = sigterm_handler;
-  else
-    action.sa_handler = sighup_handler;
+  sigaddset(&action.sa_mask, SIGTERM);
+  sigaddset(&action.sa_mask, SIGCHLD);
+  action.sa_handler = sigchld_handler;
+  sigaction(SIGCHLD, &action, NULL);
 
+  sigemptyset(&action.sa_mask);
+  sigaddset(&action.sa_mask, SIGHUP);
+  action.sa_handler = sighup_handler;
   sigaction(SIGHUP, &action, NULL);
 
   sigemptyset(&action.sa_mask);
@@ -460,11 +472,8 @@ main(int  argc,                            /* I - Number of command-line arguments */
   action.sa_handler = sigterm_handler;
   sigaction(SIGTERM, &action, NULL);
 #else
-  if (RunAsUser)
-    signal(SIGHUP, sigterm_handler);
-  else
-    signal(SIGHUP, sighup_handler);
-
+  signal(SIGCLD, sigchld_handler);     /* No, SIGCLD isn't a typo... */
+  signal(SIGHUP, sighup_handler);
   signal(SIGPIPE, SIG_IGN);
   signal(SIGTERM, sigterm_handler);
 #endif /* HAVE_SIGSET */
@@ -516,29 +525,13 @@ main(int  argc,                           /* I - Number of command-line arguments */
       kill(i, SIGUSR1);
   }
 
+#ifdef __APPLE__
  /*
   * Start power management framework...
   */
 
   cupsdStartSystemMonitor();
-
- /*
-  * If the administrator has configured the server to run as an unpriviledged
-  * user, change to that user now...
-  */
-
-  if (RunAsUser)
-  {
-    setgid(Group);
-    setgroups(1, &Group);
-    setuid(User);
-  }
-
- /*
-  * Catch signals...
-  */
-
-  cupsdCatchChildSignals();
+#endif /* __APPLE__ */
 
  /*
   * Start any pending print jobs...
@@ -550,9 +543,7 @@ main(int  argc,                             /* I - Number of command-line arguments */
   * Loop forever...
   */
 
-#ifdef HAVE_MALLINFO
   mallinfo_time = 0;
-#endif /* HAVE_MALLINFO */
   browse_time   = time(NULL);
   senddoc_time  = time(NULL);
   expire_time   = time(NULL);
@@ -583,14 +574,13 @@ main(int  argc,                           /* I - Number of command-line arguments */
       * Close any idle clients...
       */
 
-      if (NumClients > 0)
+      if (cupsArrayCount(Clients) > 0)
       {
-        for (i = NumClients, con = Clients; i > 0; i --, con ++)
+       for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
+            con;
+            con = (cupsd_client_t *)cupsArrayNext(Clients))
          if (con->http.state == HTTP_WAITING)
-         {
            cupsdCloseClient(con);
-           con --;
-         }
          else
            con->http.keep_alive = HTTP_KEEPALIVE_OFF;
 
@@ -604,7 +594,7 @@ main(int  argc,                             /* I - Number of command-line arguments */
       for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
           job;
           job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
-        if (job->state->values[0].integer == IPP_JOB_PROCESSING)
+        if (job->state_value == IPP_JOB_PROCESSING)
          break;
 
      /*
@@ -612,7 +602,8 @@ main(int  argc,                             /* I - Number of command-line arguments */
       * if the reload timeout has elapsed...
       */
 
-      if ((NumClients == 0 && (!job || NeedReload != RELOAD_ALL)) ||
+      if ((cupsArrayCount(Clients) == 0 &&
+           (!job || NeedReload != RELOAD_ALL)) ||
           (time(NULL) - ReloadTime) >= ReloadTimeout)
       {
        /*
@@ -633,20 +624,11 @@ main(int  argc,                           /* I - Number of command-line arguments */
        }
 
 #if HAVE_LAUNCHD
-       if (launchd)
+       if (Launchd)
        {
-         if (launchd_sync_conf())
-         {
-           launchd_reload();
-
-          /*
-           * Until rdar://3854821 is fixed we have to exit after the reload...
-           */
-
-           cupsdLogMessage(CUPSD_LOG_DEBUG2, "Exiting on launchd_reload");
-           stop_scheduler = 1;
-           break;
-         }
+        /*
+         * If we were started by launchd get the listen sockets file descriptors...
+         */
 
          launchd_checkin();
        }
@@ -661,97 +643,67 @@ main(int  argc,                           /* I - Number of command-line arguments */
     }
 
    /*
-    * Check for available input or ready output.  If select() returns
-    * 0 or -1, something bad happened and we should exit immediately.
+    * Check for available input or ready output.  If cupsdDoSelect()
+    * returns 0 or -1, something bad happened and we should exit
+    * immediately.
     *
     * Note that we at least have one listening socket open at all
     * times.
     */
 
-    memcpy(input, InputSet, SetSize);
-    memcpy(output, OutputSet, SetSize);
-
-    timeout.tv_sec  = select_timeout(fds);
-    timeout.tv_usec = 0;
+    timeout = select_timeout(fds);
 
 #if HAVE_LAUNCHD
    /*
     * If no other work is scheduled and we're being controlled by
-    * launchd(8) then timeout after 'LaunchdTimeout' seconds of
+    * launchd then timeout after 'LaunchdTimeout' seconds of
     * inactivity...
     */
 
-    if (timeout.tv_sec == 86400 && launchd && LaunchdTimeout && 
-       (!Browsing || !(BrowseLocalProtocols & BROWSE_DNSSD) ||
-        cupsArrayCount(Printers) == 0))
+    if (timeout == 86400 && Launchd && LaunchdTimeout && !NumPolled &&
+       (!Browsing || 
+        (!BrowseRemoteProtocols && 
+         (!NumBrowsers || !BrowseLocalProtocols ||
+          cupsArrayCount(Printers) == 0))))
     {
-      timeout.tv_sec    = LaunchdTimeout;
+      timeout          = LaunchdTimeout;
       launchd_idle_exit = 1;
     }
     else
       launchd_idle_exit = 0;
 #endif /* HAVE_LAUNCHD */
 
-    if (timeout.tv_sec < 86400)                /* Only use timeout for < 1 day */
-      fds = select(MaxFDs, input, output, NULL, &timeout);
-    else
-      fds = select(MaxFDs, input, output, NULL, NULL);
-
-    if (fds < 0)
+    if ((fds = cupsdDoSelect(timeout)) < 0)
     {
-      char     s[16384],               /* String buffer */
-               *sptr;                  /* Pointer into buffer */
-      int      slen;                   /* Length of string buffer */
-
-
      /*
       * Got an error from select!
       */
 
-      if (errno == EINTR)      /* Just interrupted by a signal */
+#ifdef HAVE_DNSSD
+      cupsd_printer_t  *p;             /* Current printer */
+#endif /* HAVE_DNSSD */
+
+
+      if (errno == EINTR)              /* Just interrupted by a signal */
         continue;
 
      /*
       * Log all sorts of debug info to help track down the problem.
       */
 
-      cupsdLogMessage(CUPSD_LOG_EMERG, "select() failed - %s!",
+      cupsdLogMessage(CUPSD_LOG_EMERG, "cupsdDoSelect() failed - %s!",
                       strerror(errno));
 
-      strcpy(s, "InputSet =");
-      slen = 10;
-      sptr = s + 10;
-
-      for (i = 0; i < MaxFDs; i ++)
-        if (FD_ISSET(i, InputSet))
-       {
-          snprintf(sptr, sizeof(s) - slen, " %d", i);
-         slen += strlen(sptr);
-         sptr += strlen(sptr);
-       }
-
-      cupsdLogMessage(CUPSD_LOG_EMERG, s);
-
-      strcpy(s, "OutputSet =");
-      slen = 11;
-      sptr = s + 11;
-
-      for (i = 0; i < MaxFDs; i ++)
-        if (FD_ISSET(i, OutputSet))
-       {
-          snprintf(sptr, sizeof(s) - slen, " %d", i);
-         slen += strlen(sptr);
-         sptr += strlen(sptr);
-       }
-
-      cupsdLogMessage(CUPSD_LOG_EMERG, s);
-
-      for (i = 0, con = Clients; i < NumClients; i ++, con ++)
+      for (i = 0, con = (cupsd_client_t *)cupsArrayFirst(Clients);
+          con;
+          i ++, con = (cupsd_client_t *)cupsArrayNext(Clients))
         cupsdLogMessage(CUPSD_LOG_EMERG,
                        "Clients[%d] = %d, file = %d, state = %d",
                        i, con->http.fd, con->file, con->http.state);
 
-      for (i = 0, lis = Listeners; i < NumListeners; i ++, lis ++)
+      for (i = 0, lis = (cupsd_listener_t *)cupsArrayFirst(Listeners);
+           lis;
+          i ++, lis = (cupsd_listener_t *)cupsArrayNext(Listeners))
         cupsdLogMessage(CUPSD_LOG_EMERG, "Listeners[%d] = %d", i, lis->fd);
 
       cupsdLogMessage(CUPSD_LOG_EMERG, "BrowseSocket = %d", BrowseSocket);
@@ -771,6 +723,15 @@ main(int  argc,                            /* I - Number of command-line arguments */
                        job->status_buffer ? job->status_buffer->fd : -1,
                        job->print_pipes[0], job->print_pipes[1],
                        job->back_pipes[0], job->back_pipes[1]);
+
+#ifdef HAVE_DNSSD
+      for (p = (cupsd_printer_t *)cupsArrayFirst(Printers);
+          p;
+          p = (cupsd_printer_t *)cupsArrayNext(Printers))
+        cupsdLogMessage(CUPSD_LOG_EMERG, "printer[%s] %d", p->name,
+                       p->dnssd_ipp_fd);
+#endif /* HAVE_DNSSD */
+
       break;
     }
 
@@ -778,7 +739,7 @@ main(int  argc,                             /* I - Number of command-line arguments */
 
 #if HAVE_LAUNCHD
    /*
-    * If no other work was scheduled and we're being controlled by launchd(8)
+    * If no other work was scheduled and we're being controlled by launchd
     * then timeout after 'LaunchdTimeout' seconds of inactivity...
     */
 
@@ -793,58 +754,15 @@ main(int  argc,                           /* I - Number of command-line arguments */
 #endif /* HAVE_LAUNCHD */
 
    /*
-    * Check for status info from job filters...
-    */
-
-    for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
-        job;
-        job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
-      if (job->status_buffer && FD_ISSET(job->status_buffer->fd, input))
-      {
-       /*
-        * Clear the input bit to avoid updating the next job
-       * using the same status pipe file descriptor...
-       */
-
-        FD_CLR(job->status_buffer->fd, input);
-
-       /*
-        * Read any status messages from the filters...
-       */
-
-        cupsdUpdateJob(job);
-      }
-
-   /*
-    * Update CGI messages as needed...
+    * Expire subscriptions and unload completed jobs as needed...
     */
 
-    if (CGIPipes[0] >= 0 && FD_ISSET(CGIPipes[0], input))
-      cupsdUpdateCGI();
-
-   /*
-    * Handle system management events as needed...
-    */
-
-#ifdef __APPLE__
-    if (SysEventPipes[0] >= 0 && FD_ISSET(SysEventPipes[0], input))
-      cupsdUpdateSystemMonitor();
-#endif /* __APPLE__ */
-
-   /*
-    * Update notifier messages as needed...
-    */
-
-    if (NotifierPipes[0] >= 0 && FD_ISSET(NotifierPipes[0], input))
-      cupsdUpdateNotifierStatus();
-
-   /*
-    * Expire subscriptions as needed...
-    */
-
-    if (cupsArrayCount(Subscriptions) > 0 && current_time > expire_time)
+    if (current_time > expire_time)
     {
-      cupsdExpireSubscriptions(NULL, NULL);
+      if (cupsArrayCount(Subscriptions) > 0)
+        cupsdExpireSubscriptions(NULL, NULL);
+
+      cupsdUnloadCompletedJobs();
 
       expire_time = current_time;
     }
@@ -853,19 +771,19 @@ main(int  argc,                           /* I - Number of command-line arguments */
     * Update the browse list as needed...
     */
 
-    if (Browsing && BrowseRemoteProtocols)
+    if (Browsing)
     {
-      if (BrowseSocket >= 0 && FD_ISSET(BrowseSocket, input))
-        cupsdUpdateCUPSBrowse();
-
-      if (PollPipe >= 0 && FD_ISSET(PollPipe, input))
-        cupsdUpdatePolling();
-
 #ifdef HAVE_LIBSLP
-      if (((BrowseLocalProtocols | BrowseRemoteProtocols) & BROWSE_SLP) &&
+      if ((BrowseRemoteProtocols & BROWSE_SLP) &&
           BrowseSLPRefresh <= current_time)
         cupsdUpdateSLPBrowse();
 #endif /* HAVE_LIBSLP */
+
+#ifdef HAVE_LDAP
+      if ((BrowseRemoteProtocols & BROWSE_LDAP) &&
+          BrowseLDAPRefresh <= current_time)
+        cupsdUpdateLDAPBrowse();
+#endif /* HAVE_LDAP */
     }
 
     if (Browsing && BrowseLocalProtocols && current_time > browse_time)
@@ -875,79 +793,37 @@ main(int  argc,                           /* I - Number of command-line arguments */
     }
 
    /*
-    * Check for new connections on the "listen" sockets...
-    */
-
-    for (i = NumListeners, lis = Listeners; i > 0; i --, lis ++)
-      if (lis->fd >= 0 && FD_ISSET(lis->fd, input))
-      {
-        FD_CLR(lis->fd, input);
-        cupsdAcceptClient(lis);
-      }
-
-   /*
-    * Check for new data on the client sockets...
+    * Update the root certificate once every 5 minutes if we have client
+    * connections...
     */
 
-    for (i = NumClients, con = Clients; i > 0; i --, con ++)
+    if ((current_time - RootCertTime) >= RootCertDuration && RootCertDuration &&
+        !RunUser && cupsArrayCount(Clients))
     {
      /*
-      * Process the input buffer...
+      * Update the root certificate...
       */
 
-      if (FD_ISSET(con->http.fd, input) || con->http.used)
-      {
-        FD_CLR(con->http.fd, input);
-
-        if (!cupsdReadClient(con))
-       {
-         if (con->pipe_pid)
-           FD_CLR(con->file, input);
+      cupsdDeleteCert(0);
+      cupsdAddCert(0, "root");
+    }
 
-         con --;
-         continue;
-       }
-      }
+   /*
+    * Check for new data on the client sockets...
+    */
 
+    for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
+        con;
+        con = (cupsd_client_t *)cupsArrayNext(Clients))
+    {
      /*
-      * Write data as needed...
+      * Process pending data in the input buffer...
       */
 
-      if (con->pipe_pid && FD_ISSET(con->file, input))
-      {
-       /*
-        * Keep track of pending input from the file/pipe separately
-       * so that we don't needlessly spin on select() when the web
-       * client is not ready to receive data...
-       */
-
-       FD_CLR(con->file, input);
-        con->file_ready = 1;
-
-#ifdef DEBUG
-        cupsdLogMessage(CUPSD_LOG_DEBUG2, "main: Data ready file %d!",
-                       con->file);
-#endif /* DEBUG */
-
-       if (!FD_ISSET(con->http.fd, output))
-       {
-         cupsdLogMessage(CUPSD_LOG_DEBUG2,
-                         "main: Removing fd %d from InputSet...", con->file);
-         FD_CLR(con->file, input);
-         FD_CLR(con->file, InputSet);
-       }
-      }
-
-      if (FD_ISSET(con->http.fd, output))
+      if (con->http.used)
       {
-        FD_CLR(con->http.fd, output);
-
-       if (!con->pipe_pid || con->file_ready)
-          if (!cupsdWriteClient(con))
-         {
-           con --;
-           continue;
-         }
+        cupsdReadClient(con);
+       continue;
       }
 
      /*
@@ -962,7 +838,6 @@ main(int  argc,                             /* I - Number of command-line arguments */
                        con->http.fd, Timeout);
 
         cupsdCloseClient(con);
-        con --;
         continue;
       }
     }
@@ -977,38 +852,31 @@ main(int  argc,                           /* I - Number of command-line arguments */
       senddoc_time = current_time;
     }
 
-#ifdef HAVE_MALLINFO
    /*
     * Log memory usage every minute...
     */
 
-    if ((current_time - mallinfo_time) >= 60 && LogLevel >= CUPSD_LOG_DEBUG)
+    if ((current_time - mallinfo_time) >= 60 && LogLevel >= CUPSD_LOG_DEBUG2)
     {
+#ifdef HAVE_MALLINFO
       struct mallinfo mem;             /* Malloc information */
 
 
       mem = mallinfo();
-      cupsdLogMessage(CUPSD_LOG_DEBUG,
+      cupsdLogMessage(CUPSD_LOG_DEBUG2,
                       "mallinfo: arena = %d, used = %d, free = %d\n",
                       mem.arena, mem.usmblks + mem.uordblks,
                      mem.fsmblks + mem.fordblks);
-      mallinfo_time = current_time;
-    }
 #endif /* HAVE_MALLINFO */
 
-   /*
-    * Update the root certificate once every 5 minutes...
-    */
-
-    if ((current_time - RootCertTime) >= RootCertDuration && RootCertDuration &&
-        !RunUser)
-    {
-     /*
-      * Update the root certificate...
-      */
+      string_count = _cupsStrStatistics(&alloc_bytes, &total_bytes);
+      cupsdLogMessage(CUPSD_LOG_DEBUG2,
+                      "stringpool: " CUPS_LLFMT " strings, "
+                     CUPS_LLFMT " allocated, " CUPS_LLFMT " total bytes",
+                     CUPS_LLCAST string_count, CUPS_LLCAST alloc_bytes,
+                     CUPS_LLCAST total_bytes);
 
-      cupsdDeleteCert(0);
-      cupsdAddCert(0, "root");
+      mallinfo_time = current_time;
     }
 
    /*
@@ -1016,7 +884,7 @@ main(int  argc,                            /* I - Number of command-line arguments */
     * accumulated.  Don't send these more than once a second...
     */
 
-    if (LastEvent && (time(NULL) - LastEventTime) > 1)
+    if (LastEvent)
     {
 #ifdef HAVE_NOTIFY_POST
       if (LastEvent & CUPSD_EVENT_PRINTER_CHANGED)
@@ -1044,10 +912,9 @@ main(int  argc,                           /* I - Number of command-line arguments */
 #endif /* HAVE_NOTIFY_POST */
 
      /*
-      * Reset the accumulated events and notification time...
+      * Reset the accumulated events...
       */
 
-      LastEventTime = time(NULL);
       LastEvent     = CUPSD_EVENT_NONE;
     }
   }
@@ -1068,18 +935,36 @@ main(int  argc,                          /* I - Number of command-line arguments */
 
   cupsdStopServer();
 
-  cupsdStopAllJobs();
+  cupsdFreeAllJobs();
 
+#ifdef __APPLE__
   cupsdStopSystemMonitor();
+#endif /* __APPLE__ */
 
 #ifdef HAVE_LAUNCHD
  /*
-  * Update the launchd config file as needed...
+  * Update the launchd KeepAlive file as needed...
   */
 
-  launchd_sync_conf();
+  if (Launchd)
+    launchd_checkout();
 #endif /* HAVE_LAUNCHD */
 
+#ifdef __APPLE__
+#ifdef HAVE_DLFCN_H
+ /* 
+  * Unload Print Service quota enforcement library (X Server only) 
+  */
+
+  PSQUpdateQuotaProc = NULL;
+  if (PSQLibRef)
+  {
+    dlclose(PSQLibRef);
+    PSQLibRef = NULL;
+  }
+#endif /* HAVE_DLFCN_H */
+#endif /* __APPLE__ */
+
 #ifdef __sgi
  /*
   * Remove the fake IRIX lpsched lock file, but only if the existing
@@ -1092,14 +977,7 @@ main(int  argc,                           /* I - Number of command-line arguments */
       unlink("/var/spool/lp/SCHEDLOCK");
 #endif /* __sgi */
 
- /*
-  * Free memory used by FD sets and return...
-  */
-
-  free(InputSet);
-  free(OutputSet);
-  free(input);
-  free(output);
+  cupsdStopSelect();
 
   return (!stop_scheduler);
 }
@@ -1142,7 +1020,12 @@ cupsdOpenPipe(int *fds)                  /* O - Pipe file descriptors (2) */
   */
 
   if (pipe(fds))
+  {
+    fds[0] = -1;
+    fds[1] = -1;
+
     return (-1);
+  }
 
  /*
   * Set the "close on exec" flag on each end of the pipe...
@@ -1152,6 +1035,10 @@ cupsdOpenPipe(int *fds)                  /* O - Pipe file descriptors (2) */
   {
     close(fds[0]);
     close(fds[1]);
+
+    fds[0] = -1;
+    fds[1] = -1;
+
     return (-1);
   }
 
@@ -1159,6 +1046,10 @@ cupsdOpenPipe(int *fds)                  /* O - Pipe file descriptors (2) */
   {
     close(fds[0]);
     close(fds[1]);
+
+    fds[0] = -1;
+    fds[1] = -1;
+
     return (-1);
   }
 
@@ -1170,34 +1061,6 @@ cupsdOpenPipe(int *fds)                  /* O - Pipe file descriptors (2) */
 }
 
 
-/*
- * 'cupsdCatchChildSignals()' - Catch SIGCHLD signals...
- */
-
-void
-cupsdCatchChildSignals(void)
-{
-#if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
-  struct sigaction     action;         /* Actions for POSIX signals */
-#endif /* HAVE_SIGACTION && !HAVE_SIGSET */
-
-
-#ifdef HAVE_SIGSET /* Use System V signals over POSIX to avoid bugs */
-  sigset(SIGCHLD, sigchld_handler);
-#elif defined(HAVE_SIGACTION)
-  memset(&action, 0, sizeof(action));
-
-  sigemptyset(&action.sa_mask);
-  sigaddset(&action.sa_mask, SIGTERM);
-  sigaddset(&action.sa_mask, SIGCHLD);
-  action.sa_handler = sigchld_handler;
-  sigaction(SIGCHLD, &action, NULL);
-#else
-  signal(SIGCLD, sigchld_handler);     /* No, SIGCLD isn't a typo... */
-#endif /* HAVE_SIGSET */
-}
-
-
 /*
  * 'cupsdClearString()' - Clear a string.
  */
@@ -1207,7 +1070,7 @@ cupsdClearString(char **s)                /* O - String value */
 {
   if (s && *s)
   {
-    free(*s);
+    _cupsStrFree(*s);
     *s = NULL;
   }
 }
@@ -1241,36 +1104,6 @@ cupsdHoldSignals(void)
 }
 
 
-/*
- * 'cupsdIgnoreChildSignals()' - Ignore SIGCHLD signals...
- *
- * We don't really ignore them, we set the signal handler to SIG_DFL,
- * since some OS's rely on signals for the wait4() function to work.
- */
-
-void
-cupsdIgnoreChildSignals(void)
-{
-#if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
-  struct sigaction     action;         /* Actions for POSIX signals */
-#endif /* HAVE_SIGACTION && !HAVE_SIGSET */
-
-
-#ifdef HAVE_SIGSET /* Use System V signals over POSIX to avoid bugs */
-  sigset(SIGCHLD, SIG_DFL);
-#elif defined(HAVE_SIGACTION)
-  memset(&action, 0, sizeof(action));
-
-  sigemptyset(&action.sa_mask);
-  sigaddset(&action.sa_mask, SIGCHLD);
-  action.sa_handler = SIG_DFL;
-  sigaction(SIGCHLD, &action, NULL);
-#else
-  signal(SIGCLD, SIG_DFL);     /* No, SIGCLD isn't a typo... */
-#endif /* HAVE_SIGSET */
-}
-
-
 /*
  * 'cupsdReleaseSignals()' - Release signals for delivery.
  */
@@ -1303,10 +1136,10 @@ cupsdSetString(char       **s,          /* O - New string */
     return;
 
   if (*s)
-    free(*s);
+    _cupsStrFree(*s);
 
   if (v)
-    *s = strdup(v);
+    *s = _cupsStrAlloc(v);
   else
     *s = NULL;
 }
@@ -1337,13 +1170,13 @@ cupsdSetStringf(char       **s,         /* O - New string */
     vsnprintf(v, sizeof(v), f, ap);
     va_end(ap);
 
-    *s = strdup(v);
+    *s = _cupsStrAlloc(v);
   }
   else
     *s = NULL;
 
   if (olds)
-    free(olds);
+    _cupsStrFree(olds);
 }
 
 
@@ -1356,17 +1189,18 @@ static void
 launchd_checkin(void)
 {
   int                  i,              /* Looping var */
+                       count,          /* Numebr of listeners */
                        portnum;        /* Port number */
   launch_data_t                ld_msg,         /* Launch data message */
                        ld_resp,        /* Launch data response */
                        ld_array,       /* Launch data array */
                        ld_sockets,     /* Launch data sockets dictionary */
-                       ld_runatload,   /* Run-at-load setting */
                        tmp;            /* Launch data */
   cupsd_listener_t     *lis;           /* Listeners array */
   http_addr_t          addr;           /* Address variable */
   socklen_t            addrlen;        /* Length of address */
-  bool                 runatload;      /* Run-at-load setting value */
+  int                  fd;             /* File descriptor */
+  char                 s[256];         /* String addresss */
 
 
   cupsdLogMessage(CUPSD_LOG_DEBUG, "launchd_checkin: pid=%d", (int)getpid());
@@ -1378,12 +1212,12 @@ launchd_checkin(void)
   ld_msg = launch_data_new_string(LAUNCH_KEY_CHECKIN);
   if ((ld_resp = launch_msg(ld_msg)) == NULL)
   {
-    cupsdLogMessage(CUPSD_LOG_ERROR, 
+    cupsdLogMessage(CUPSD_LOG_ERROR,
                    "launchd_checkin: launch_msg(\"" LAUNCH_KEY_CHECKIN
                    "\") IPC failure");
     exit(EXIT_FAILURE);
   }
-  
+
   if (launch_data_get_type(ld_resp) == LAUNCH_DATA_ERRNO)
   {
     errno = launch_data_get_errno(ld_resp);
@@ -1392,26 +1226,6 @@ launchd_checkin(void)
     exit(EXIT_FAILURE);
   }
 
- /*
-  * Get the "run-at-load" setting...
-  */
-
-  if ((ld_runatload = launch_data_dict_lookup(ld_resp,
-                                              LAUNCH_JOBKEY_RUNATLOAD)) != NULL &&
-      launch_data_get_type(ld_runatload) == LAUNCH_DATA_BOOL)
-    runatload = launch_data_get_bool(ld_runatload);
-  else
-  {
-    errno = launch_data_get_errno(ld_resp);
-    cupsdLogMessage(CUPSD_LOG_ERROR,
-                    "launchd_checkin: Unable to find Run-at-load setting: %s",
-                    strerror(errno));
-    exit(EXIT_FAILURE);
-  }
-
-  cupsdLogMessage(CUPSD_LOG_DEBUG, "launchd_checkin: Run-at-load=%s",
-                  runatload ? "true" : "false");
-
  /*
   * Get the sockets dictionary...
   */
@@ -1422,7 +1236,7 @@ launchd_checkin(void)
                     "launchd_checkin: No sockets found to answer requests on!");
     exit(EXIT_FAILURE);
   }
-  
+
  /*
   * Get the array of listener sockets...
   */
@@ -1440,472 +1254,123 @@ launchd_checkin(void)
 
   if (launch_data_get_type(ld_array) == LAUNCH_DATA_ARRAY)
   {
-   /*
-    * Free the listeners array built from cupsd.conf...
-    */
-  
-    if (NumListeners > 0)
-      free(Listeners);
-  
-    NumListeners = launch_data_array_get_count(ld_array);
-    Listeners    = calloc(NumListeners, sizeof(cupsd_listener_t));
-
-    if (!Listeners)
-    {
-      cupsdLogMessage(CUPSD_LOG_ERROR,
-                      "launchd_checkin: Unable to allocate new Listeners - %s.",
-                      strerror(errno));
-      exit(EXIT_FAILURE);
-    }
-
-   /*
-    * Note: launchd wants us to access the array in ascending order,
-    * thus "i" counts up and not down as we normally do elsewhere...
-    */
+    count = launch_data_array_get_count(ld_array);
 
-    for (i = 0, lis = Listeners; i < NumListeners; i ++, lis ++)
+    for (i = 0; i < count; i ++)
     {
      /*
-      * Copy the current address and log it...
+      * Get the launchd file descriptor and address...
       */
-  
+
       tmp     = launch_data_array_get_index(ld_array, i);
-      lis->fd = launch_data_get_fd(tmp);
-      addrlen = sizeof(lis->address);
+      fd      = launch_data_get_fd(tmp);
+      addrlen = sizeof(addr);
 
-      if (getsockname(lis->fd, (struct sockaddr *)&(lis->address), &addrlen))
+      if (getsockname(fd, (struct sockaddr *)&addr, &addrlen))
       {
        cupsdLogMessage(CUPSD_LOG_ERROR,
                        "launchd_checkin: Unable to get local address - %s",
                        strerror(errno));
+       continue;
       }
-    
-#  ifdef HAVE_SSL
-      portnum = 0;
-  
-#    ifdef AF_INET6
-      if (addr.addr.sa_family == AF_INET6)
-       portnum = ntohs(addr.ipv6.sin6_port);
-      else
-#    endif /* AF_INET6 */
-#    ifdef AF_LOCAL
-      if (addr.addr.sa_family == AF_LOCAL)
-      {
-       /*
-       * Make sure the domain socket is accessible to all...
-       */
-
-       fchmod(lis->fd, 0140777);
-      }
-      else
-#    endif /* AF_LOCAL */
-      if (addr.addr.sa_family == AF_INET)
-       portnum = ntohs(addr.ipv4.sin_port);
 
-      if (portnum == 443)
-       lis->encryption = HTTP_ENCRYPT_ALWAYS;
-#  endif /* HAVE_SSL */
-    }
-  }
+     /*
+      * Try to match the launchd socket address to one of the listeners...
+      */
 
- /*
-  * Collect the browse socket (if there is one)...
-  */
+      for (lis = (cupsd_listener_t *)cupsArrayFirst(Listeners);
+          lis;
+          lis = (cupsd_listener_t *)cupsArrayNext(Listeners))
+       if (httpAddrEqual(&lis->address, &addr))
+         break;
 
-  if ((ld_array = launch_data_dict_lookup(ld_sockets, "BrowseSockets")))
-  {
-    if (launch_data_get_type(ld_array) == LAUNCH_DATA_ARRAY)
-    {
-      tmp = launch_data_array_get_index(ld_array, 0);
+     /*
+      * Add a new listener If there's no match...
+      */
 
-      if (launch_data_get_type(tmp) == LAUNCH_DATA_FD)
+      if (lis)
       {
-        if (BrowseSocket != -1)
-         close(BrowseSocket);
-
-       BrowseSocket = launch_data_get_fd(tmp);
+       cupsdLogMessage(CUPSD_LOG_DEBUG, 
+               "launchd_checkin: Matched existing listener %s with fd %d...",
+               httpAddrString(&(lis->address), s, sizeof(s)), fd);
       }
       else
-       cupsdLogMessage(CUPSD_LOG_WARN,
-                       "launchd_checkin: BrowseSocket not a fd!");
-   }
-   else
-     cupsdLogMessage(CUPSD_LOG_WARN,
-                     "launchd_checkin: BrowseSockets is not an array!");
-  }
-  else
-    cupsdLogMessage(CUPSD_LOG_DEBUG, "launchd_checkin: No BrowseSockets");
-
-  launch_data_free(ld_msg);
-  launch_data_free(ld_resp);
-}
-
-
-/*
- * 'launchd_reload()' - Tell launchd to reload the configuration file to pick
- *                      up the new listening directives.
- */
-
-static void
-launchd_reload(void)
-{
-  int          child_status;           /* Exit status of child process */
-  pid_t                child_pid,              /* Child PID */
-               waitpid_status;         /* Child process exit status */
-  char         *argv[4];               /* Argument strings */
-
-
- /*
-  * The current launchd doesn't support a reload option (rdar://3854821).
-  * Until this is fixed we need to reload the config file by execing launchctl
-  * twice (to unload then load). NOTE: This will cause us to exit on SIGTERM
-  * which will cancel all client & job activity.
-  *
-  * After this is fixed we'll be able to tell launchd to reload the file
-  * and pick up the new listening descriptors without disrupting current
-  * activity.
-  */
-
- /*
-  * Unloading the current configuration will cause launchd to send us a SIGTERM;
-  * block it for now so we can get our work done...
-  */
-
-  cupsdHoldSignals();
-
- /*
-  * Set up the unload arguments to launchctl...
-  */
+      {
+       cupsdLogMessage(CUPSD_LOG_DEBUG, 
+               "launchd_checkin: Adding new listener %s with fd %d...",
+               httpAddrString(&addr, s, sizeof(s)), fd);
 
-  argv[0] = "/bin/launchctl";
-  argv[1] = "unload";
-  argv[2] = LaunchdConf;
-  argv[3] = NULL;
+        if ((lis = calloc(1, sizeof(cupsd_listener_t))) == NULL)
+        {
+         cupsdLogMessage(CUPSD_LOG_ERROR,
+                                 "launchd_checkin: Unable to allocate listener - %s.",
+                         strerror(errno));
+         exit(EXIT_FAILURE);
+        }
 
-  if (cupsdStartProcess(argv[0], argv, NULL, -1, -1, -1, -1, 1, &child_pid) < 0)
-    cupsdLogMessage(CUPSD_LOG_ERROR,
-                    "launchd_reload: Unable to execute %s - %s", argv[0],
-                    strerror(errno));
-  else
-  {
-    do
-    {
-      waitpid_status = waitpid(child_pid, &child_status, 0);
-    }
-    while (waitpid_status == (pid_t)-1 && errno == EINTR);
+        cupsArrayAdd(Listeners, lis);
 
-    if (WIFSIGNALED(child_status))
-      cupsdLogMessage(CUPSD_LOG_DEBUG,
-                      "launchd_reload: %s pid %d crashed on signal %d!", 
-                     basename(argv[0]), child_pid, WTERMSIG(child_status));
-    else
-      cupsdLogMessage(CUPSD_LOG_DEBUG,
-                      "launchd_reload: %s pid %d stopped with status %d!", 
-                     basename(argv[0]), child_pid, WEXITSTATUS(child_status));
+       memcpy(&lis->address, &addr, sizeof(lis->address));
+      }
 
-   /*
-    * Do it again with the load command...
-    */
-  
-    argv[1] = "load";
+      lis->fd = fd;
 
-    if (cupsdStartProcess(argv[0], argv, NULL, -1, -1, -1, -1, 1,
-                          &child_pid) < 0)
-    {
-      cupsdLogMessage(CUPSD_LOG_ERROR,
-                      "launchd_reload: Unable to fork for %s - %s", argv[0],
-                      strerror(errno));
-    }
-    else
-    {
-      do
-      {
-       waitpid_status = waitpid(child_pid, &child_status, 0);
-      } while (waitpid_status == (pid_t)-1 && errno == EINTR);
+#  ifdef HAVE_SSL
+      portnum = 0;
 
-      if (WIFSIGNALED(child_status))
-       cupsdLogMessage(CUPSD_LOG_DEBUG,
-                       "launchd_reload: %s pid %d crashed on signal %d!",
-                       basename(argv[0]), child_pid, WTERMSIG(child_status));
+#    ifdef AF_INET6
+      if (lis->address.addr.sa_family == AF_INET6)
+       portnum = ntohs(lis->address.ipv6.sin6_port);
       else
-       cupsdLogMessage(CUPSD_LOG_DEBUG,
-                       "launchd_reload: %s pid %d stopped with status %d",
-                       basename(argv[0]), child_pid,
-                       WEXITSTATUS(child_status));
+#    endif /* AF_INET6 */
+      if (lis->address.addr.sa_family == AF_INET)
+       portnum = ntohs(lis->address.ipv4.sin_port);
+
+      if (portnum == 443)
+       lis->encryption = HTTP_ENCRYPT_ALWAYS;
+#  endif /* HAVE_SSL */
     }
   }
 
- /*
-  * Leave signals blocked since exit() will be called momentarily anyways...
-  */
+  launch_data_free(ld_msg);
+  launch_data_free(ld_resp);
 }
 
 
 /*
- * 'launchd_sync_conf()' - Re-write the launchd(8) config file 
- *                        org.cups.cupsd.plist based on cupsd.conf.
+ * 'launchd_checkout()' - Update the launchd KeepAlive file as needed.
  */
 
-static int                             /* O - 1 if the file was updated */
-launchd_sync_conf(void)
+static void
+launchd_checkout(void)
 {
-  int                    i,            /* Looping var */
-                         portnum;      /* Port number */
-  CFMutableDictionaryRef  cupsd_dict,  /* com.easysw.cupsd.plist dictionary */
-                         sockets,      /* Sockets dictionary */
-                         listener;     /* Listener dictionary */
-  CFDataRef              resourceData; /* XML representation of the property list */
-  CFMutableArrayRef      array;        /* Array */
-  CFNumberRef            socket_mode;  /* Domain socket mode bits */
-  CFStringRef            socket_path;  /* Domain socket path */
-  CFTypeRef              value;        /* CF value */
-  CFURLRef               fileURL;      /* File URL */
-  SInt32                 errorCode;    /* Error code */
-  cupsd_listener_t       *lis;         /* Current listening socket */
-  struct servent         *service;     /* Services data base entry */
-  char                   temp[1024];   /* Temporary buffer for value */
-  struct stat            cupsd_sb,     /* File info for cupsd.conf */
-                         launchd_sb;   /* File info for com.easysw.cupsd.plist */
+  int  fd;                             /* File descriptor */
 
 
  /*
-  * If the launchd conf file modification time is newer than the cupsd.conf
-  * time then there's nothing to do...
+  * Create or remove the launchd KeepAlive file based on whether
+  * there are active jobs, polling, browsing for remote printers or 
+  * shared printers to advertise...
   */
 
-  if (!stat(ConfigurationFile, &cupsd_sb) && 
-      !stat(LaunchdConf, &launchd_sb) && 
-      launchd_sb.st_mtimespec.tv_sec >= cupsd_sb.st_mtimespec.tv_sec)
+  if ((cupsArrayCount(ActiveJobs) || NumPolled || 
+       (Browsing && 
+       (BrowseRemoteProtocols ||
+        (BrowseLocalProtocols && NumBrowsers && cupsArrayCount(Printers))))))
   {
     cupsdLogMessage(CUPSD_LOG_DEBUG,
-                    "launchd_sync_conf: Nothing to do, pid=%d.", 
-                   (int)getpid());
-    return (0);
-  }
+                    "Creating launchd keepalive file \"" CUPS_KEEPALIVE "\"...");
 
- /*
-  * Time to write a new 'com.easysw.cupsd.plist' file.
-  * Create the new dictionary and populate it with values...
-  */
-
-  if ((cupsd_dict = CFDictionaryCreateMutable(kCFAllocatorDefault, 0,
-                               &kCFTypeDictionaryKeyCallBacks,
-                               &kCFTypeDictionaryValueCallBacks)) != NULL)
+    if ((fd = open(CUPS_KEEPALIVE, O_RDONLY | O_CREAT | O_EXCL, S_IRUSR)) >= 0)
+      close(fd);
+  }
+  else
   {
-    CFDictionaryAddValue(cupsd_dict, CFSTR(LAUNCH_JOBKEY_LABEL),
-                         CFSTR("org.cups.cupsd"));
-    CFDictionaryAddValue(cupsd_dict, CFSTR("Enabled"), kCFBooleanTrue);
-    CFDictionaryAddValue(cupsd_dict, CFSTR(LAUNCH_JOBKEY_ONDEMAND),
-                         kCFBooleanTrue);
-
-    if ((Browsing && BrowseLocalProtocols && cupsArrayCount(Printers)) ||
-        cupsArrayCount(ActiveJobs))
-      CFDictionaryAddValue(cupsd_dict, CFSTR(LAUNCH_JOBKEY_RUNATLOAD),
-                           kCFBooleanTrue);
-    else
-      CFDictionaryAddValue(cupsd_dict, CFSTR(LAUNCH_JOBKEY_RUNATLOAD),
-                           kCFBooleanFalse);
-
-    CFDictionaryAddValue(cupsd_dict, CFSTR(LAUNCH_JOBKEY_SERVICEIPC),
-                        kCFBooleanTrue);
-
-    if ((array = CFArrayCreateMutable(kCFAllocatorDefault, 2,
-                                      &kCFTypeArrayCallBacks)) != NULL)
-    {
-      CFDictionaryAddValue(cupsd_dict, CFSTR(LAUNCH_JOBKEY_PROGRAMARGUMENTS),
-                           array);
-      CFArrayAppendValue(array, CFSTR("/usr/sbin/cupsd"));
-      CFArrayAppendValue(array, CFSTR("-l"));
-      CFRelease(array);
-    }
-
-   /*
-    * Add a sockets dictionary...
-    */
-  
-    if ((sockets = (CFMutableDictionaryRef)CFDictionaryCreateMutable(
-                               kCFAllocatorDefault, 0,
-                               &kCFTypeDictionaryKeyCallBacks,
-                               &kCFTypeDictionaryValueCallBacks)) != NULL)
-    {
-      CFDictionaryAddValue(cupsd_dict, CFSTR(LAUNCH_JOBKEY_SOCKETS), sockets);
-
-     /*
-      * Add a Listeners array to the sockets dictionary...
-      */
-    
-      if ((array = CFArrayCreateMutable(kCFAllocatorDefault, 0,
-                                        &kCFTypeArrayCallBacks)) != NULL)
-      {
-       CFDictionaryAddValue(sockets, CFSTR("Listeners"), array);
-
-       /*
-       * For each listener add a dictionary to the listeners array...
-       */
-      
-        for (i = NumListeners, lis = Listeners; i > 0; i --, lis ++)
-       {
-         if ((listener = CFDictionaryCreateMutable(kCFAllocatorDefault, 0,
-                               &kCFTypeDictionaryKeyCallBacks,
-                               &kCFTypeDictionaryValueCallBacks)) != NULL)
-         {
-           CFArrayAppendValue(array, listener);
-
-#  ifdef AF_LOCAL
-           if (lis->address.addr.sa_family == AF_LOCAL)
-           {
-             if ((socket_path = CFStringCreateWithCString(kCFAllocatorDefault, 
-                                       lis->address.un.sun_path, 
-                                       kCFStringEncodingUTF8)))
-             {
-               CFDictionaryAddValue(listener,
-                                    CFSTR(LAUNCH_JOBSOCKETKEY_PATHNAME),
-                                    socket_path);
-               CFRelease(socket_path);
-             }
-             portnum = 0140777; /* (S_IFSOCK|S_IRWXU|S_IRWXG|S_IRWXO) or *
-                                 * 49663d decimal                        */
-             if ((socket_mode = CFNumberCreate(kCFAllocatorDefault,
-                                               kCFNumberIntType, &portnum)))
-             {
-               CFDictionaryAddValue(listener, CFSTR("SockPathMode"),
-                                    socket_mode);
-               CFRelease(socket_mode);
-             }
-           }
-           else
-#  endif /* AF_LOCAL */
-           {
-#  ifdef AF_INET6
-             if (lis->address.addr.sa_family == AF_INET6)
-             {
-               CFDictionaryAddValue(listener,
-                                    CFSTR(LAUNCH_JOBSOCKETKEY_FAMILY),
-                                    CFSTR("IPv6"));
-               portnum = lis->address.ipv6.sin6_port;
-             }
-             else
-#  endif /* AF_INET6 */
-             {
-               CFDictionaryAddValue(listener,
-                                    CFSTR(LAUNCH_JOBSOCKETKEY_FAMILY),
-                                    CFSTR("IPv4"));
-               portnum = lis->address.ipv4.sin_port;
-             }
-
-             if ((service = getservbyport(portnum, NULL)))
-               value = CFStringCreateWithCString(kCFAllocatorDefault, 
-                                                 service->s_name, 
-                                                 kCFStringEncodingUTF8);
-             else
-               value = CFNumberCreate(kCFAllocatorDefault, 
-                                      kCFNumberIntType, &portnum);
-
-             if (value)
-             {
-               CFDictionaryAddValue(listener,
-                                    CFSTR(LAUNCH_JOBSOCKETKEY_SERVICENAME),
-                                    value);
-               CFRelease(value);
-             } 
-
-             httpAddrString(&lis->address, temp, sizeof(temp));
-             if ((value = CFStringCreateWithCString(kCFAllocatorDefault, temp, 
-                                                    kCFStringEncodingUTF8)))
-             {
-               CFDictionaryAddValue(listener,
-                                    CFSTR(LAUNCH_JOBSOCKETKEY_NODENAME),
-                                    value);
-               CFRelease(value);
-             }
-           }
-
-           CFRelease(listener);
-         }
-       }
-
-       CFRelease(array);
-      }
-
-     /*
-      * Add the BrowseSocket to the sockets dictionary...
-      */
-      
-      if (Browsing && (BrowseRemoteProtocols & BROWSE_CUPS))
-      {
-       if ((array = CFArrayCreateMutable(kCFAllocatorDefault, 0, 
-                                         &kCFTypeArrayCallBacks)) != NULL)
-       {
-         CFDictionaryAddValue(sockets, CFSTR("BrowseSockets"), array);
-
-         if ((listener = CFDictionaryCreateMutable(kCFAllocatorDefault, 0,
-                                 &kCFTypeDictionaryKeyCallBacks,
-                                 &kCFTypeDictionaryValueCallBacks)) != NULL)
-         {
-           CFArrayAppendValue(array, listener);
-
-           CFDictionaryAddValue(listener, CFSTR(LAUNCH_JOBSOCKETKEY_FAMILY),
-                                CFSTR("IPv4"));
-           CFDictionaryAddValue(listener, CFSTR(LAUNCH_JOBSOCKETKEY_TYPE),
-                                CFSTR("dgram"));
-
-           if ((service = getservbyport(BrowsePort, NULL)))
-             value = CFStringCreateWithCString(kCFAllocatorDefault, 
-                                               service->s_name, 
-                                               kCFStringEncodingUTF8);
-           else
-             value = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, 
-                                    &BrowsePort);
-
-           CFDictionaryAddValue(listener,
-                                CFSTR(LAUNCH_JOBSOCKETKEY_SERVICENAME), value);
-           CFRelease(value);
-
-           CFRelease(listener);
-         }
-
-         CFRelease(array);
-       }
-      }
-
-      CFRelease(sockets);
-    }
-
     cupsdLogMessage(CUPSD_LOG_DEBUG,
-                    "launchd_sync_conf: Updating \"%s\", pid=%d\n", 
-                   LaunchdConf, (int)getpid());
-  
-    if ((fileURL = CFURLCreateFromFileSystemRepresentation(kCFAllocatorDefault, 
-                               (const unsigned char *)LaunchdConf, 
-                               strlen(LaunchdConf), false)))
-    {
-      if ((resourceData = CFPropertyListCreateXMLData(kCFAllocatorDefault,
-                                                      cupsd_dict)))
-      {
-       if (!CFURLWriteDataAndPropertiesToResource(fileURL, resourceData,
-                                                  NULL, &errorCode))
-       {
-         cupsdLogMessage(CUPSD_LOG_WARN,
-                         "launchd_sync_conf: "
-                         "CFURLWriteDataAndPropertiesToResource(\"%s\") "
-                         "failed: %d\n", 
-                         LaunchdConf, (int)errorCode);
-        }
-
-       CFRelease(resourceData);
-      }
-
-      CFRelease(fileURL);
-    }
+                    "Removing launchd keepalive file \"" CUPS_KEEPALIVE "\"...");
 
-    CFRelease(cupsd_dict);
+    unlink(CUPS_KEEPALIVE);
   }
-
- /*
-  * Let the caller know we updated the file...
-  */
-
-  return (1);
 }
 #endif /* HAVE_LAUNCHD */
 
@@ -1960,7 +1425,7 @@ process_children(void)
 #endif /* HAVE_WAITPID */
   {
    /*
-    * Ignore SIGTERM errors - that comes when a job is cancelled...
+    * Ignore SIGTERM errors - that comes when a job is canceled...
     */
 
     cupsdFinishProcess(pid, name, sizeof(name));
@@ -1979,7 +1444,8 @@ process_children(void)
 
       if (LogLevel < CUPSD_LOG_DEBUG)
         cupsdLogMessage(CUPSD_LOG_INFO,
-                       "Hint: Try setting the LogLevel to \"debug\" to find out more.");
+                       "Hint: Try setting the LogLevel to \"debug\" to find "
+                       "out more.");
     }
     else
       cupsdLogMessage(CUPSD_LOG_DEBUG, "PID %d (%s) exited with no errors.",
@@ -1999,8 +1465,7 @@ process_children(void)
     for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
         job;
         job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
-      if (job->state != NULL &&
-          job->state->values[0].integer == IPP_JOB_PROCESSING)
+      if (job->state_value == IPP_JOB_PROCESSING)
       {
        for (i = 0; job->filters[i]; i ++)
           if (job->filters[i] == pid)
@@ -2131,9 +1596,8 @@ sigterm_handler(int sig)          /* I - Signal */
  */
 
 static long                            /* O - Number of seconds */
-select_timeout(int fds)                        /* I - Number of ready descriptors select returned */
+select_timeout(int fds)                        /* I - Number of descriptors returned */
 {
-  int                  i;              /* Looping var */
   long                 timeout;        /* Timeout for select */
   time_t               now;            /* Current time */
   cupsd_client_t       *con;           /* Client information */
@@ -2148,24 +1612,19 @@ select_timeout(int fds)                 /* I - Number of ready descriptors select returned */
   * processed; if so, the timeout should be 0...
   */
 
-  for (i = NumClients, con = Clients; i > 0; i --, con ++)
+  for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
+       con;
+       con = (cupsd_client_t *)cupsArrayNext(Clients))
     if (con->http.used > 0)
       return (0);
 
  /*
-  * If select has been active in the last second (fds != 0) or we have
+  * If select has been active in the last second (fds > 0) or we have
   * many resources in use then don't bother trying to optimize the
   * timeout, just make it 1 second.
   */
 
-  if (fds || NumClients > 50)
-    return (1);
-
- /*
-  * If we had a recent event notification, timeout in 1 second...
-  */
-
-  if (LastEvent)
+  if (fds > 0 || cupsArrayCount(Clients) > 50)
     return (1);
 
  /*
@@ -2180,7 +1639,9 @@ select_timeout(int fds)                   /* I - Number of ready descriptors select returned */
   * Check the activity and close old clients...
   */
 
-  for (i = NumClients, con = Clients; i > 0; i --, con ++)
+  for (con = (cupsd_client_t *)cupsArrayFirst(Clients);
+       con;
+       con = (cupsd_client_t *)cupsArrayNext(Clients))
     if ((con->http.activity + Timeout) < timeout)
     {
       timeout = con->http.activity + Timeout;
@@ -2201,7 +1662,15 @@ select_timeout(int fds)                  /* I - Number of ready descriptors select returned */
     }
 #endif /* HAVE_LIBSLP */
 
-    if (BrowseLocalProtocols & BROWSE_CUPS)
+#ifdef HAVE_LDAP
+    if ((BrowseLocalProtocols & BROWSE_LDAP) && (BrowseLDAPRefresh < timeout))
+    {
+      timeout = BrowseLDAPRefresh;
+      why     = "update LDAP browsing";
+    }
+#endif /* HAVE_LDAP */
+
+    if ((BrowseLocalProtocols & BROWSE_CUPS) && NumBrowsers)
     {
       for (p = (cupsd_printer_t *)cupsArrayFirst(Printers);
            p;
@@ -2215,7 +1684,7 @@ select_timeout(int fds)                   /* I - Number of ready descriptors select returned */
            why     = "browse timeout a printer";
          }
        }
-       else if (!(p->type & CUPS_PRINTER_IMPLICIT))
+       else if (p->shared && !(p->type & CUPS_PRINTER_IMPLICIT))
        {
          if (BrowseInterval && (p->browse_time + BrowseInterval) < timeout)
          {
@@ -2236,7 +1705,7 @@ select_timeout(int fds)                   /* I - Number of ready descriptors select returned */
     for (job = (cupsd_job_t *)cupsArrayFirst(ActiveJobs);
         job;
         job = (cupsd_job_t *)cupsArrayNext(ActiveJobs))
-      if (job->state->values[0].integer <= IPP_JOB_PROCESSING)
+      if (job->state_value <= IPP_JOB_PROCESSING)
       {
        timeout = now + 10;
        why     = "process active jobs";
@@ -2263,7 +1732,7 @@ select_timeout(int fds)                   /* I - Number of ready descriptors select returned */
   for (sub = (cupsd_subscription_t *)cupsArrayFirst(Subscriptions);
        sub;
        sub = (cupsd_subscription_t *)cupsArrayNext(Subscriptions))
-    if (!sub->job && sub->expire < timeout)
+    if (!sub->job && sub->expire && sub->expire < timeout)
     {
       timeout = sub->expire;
       why     = "expire subscription";
@@ -2289,8 +1758,8 @@ select_timeout(int fds)                   /* I - Number of ready descriptors select returned */
   * Log and return the timeout value...
   */
 
-  cupsdLogMessage(CUPSD_LOG_DEBUG2, "select_timeout: %ld seconds to %s",
-                  timeout, why);
+  cupsdLogMessage(CUPSD_LOG_DEBUG2, "select_timeout(%d): %ld seconds to %s",
+                  fds, timeout, why);
 
   return (timeout);
 }
@@ -2316,5 +1785,5 @@ usage(int status)                 /* O - Exit status */
 
 
 /*
- * End of "$Id: main.c 5042 2006-02-01 18:17:34Z mike $".
+ * End of "$Id: main.c 6564 2007-06-18 23:40:38Z mike $".
  */