]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/adminutil.c
Greatly simplify the man page handling.
[thirdparty/cups.git] / cups / adminutil.c
index a84a5363eb9d48e2c490687922c3f0c19c055de4..7ff5bf2bc379a2a75c1fe1b37eefc655e4ab2d68 100644 (file)
@@ -1,29 +1,11 @@
 /*
- * "$Id$"
+ * Administration utility API definitions for CUPS.
  *
- *   Administration utility API definitions for CUPS.
+ * Copyright © 2007-2018 by Apple Inc.
+ * Copyright © 2001-2007 by Easy Software Products.
  *
- *   Copyright 2007-2013 by Apple Inc.
- *   Copyright 2001-2007 by Easy Software Products.
- *
- *   These coded instructions, statements, and computer programs are the
- *   property of Apple Inc. and are protected by Federal copyright
- *   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
- *   which should have been included with this file.  If this file is
- *   file is missing or damaged, see the license at "http://www.cups.org/".
- *
- *   This file is subject to the Apple OS-Developed Software exception.
- *
- * Contents:
- *
- *   cupsAdminCreateWindowsPPD()  - Create the Windows PPD file for a printer.
- *   cupsAdminExportSamba()       - Export a printer to Samba.
- *   cupsAdminGetServerSettings() - Get settings from the server.
- *   cupsAdminSetServerSettings() - Set settings on the server.
- *   do_samba_command()           - Do a SAMBA command.
- *   get_cupsd_conf()             - Get the current cupsd.conf file.
- *   invalidate_cupsd_cache()     - Invalidate the cached cupsd.conf settings.
- *   write_option()               - Write a CUPS option to a PPD file.
+ * Licensed under Apache License v2.0.  See the file "LICENSE" for more
+ * information.
  */
 
 /*
  */
 
 #include "cups-private.h"
+#include "debug-internal.h"
+#include "ppd.h"
 #include "adminutil.h"
 #include <fcntl.h>
 #include <sys/stat.h>
-#ifdef WIN32
-#else
+#ifndef _WIN32
 #  include <unistd.h>
 #  include <sys/wait.h>
-#endif /* WIN32 */
+#endif /* !_WIN32 */
 
 
 /*
  * Local functions...
  */
 
-static int             do_samba_command(const char *command,
-                                        const char *address,
-                                        const char *subcommand,
-                                        const char *authfile,
-                                        FILE *logfile);
 static http_status_t   get_cupsd_conf(http_t *http, _cups_globals_t *cg,
                                       time_t last_update, char *name,
-                                      int namelen, int *remote);
+                                      size_t namelen, int *remote);
 static void            invalidate_cupsd_cache(_cups_globals_t *cg);
-static void            write_option(cups_file_t *dstfp, int order,
-                                    const char *name, const char *text,
-                                    const char *attrname,
-                                    ipp_attribute_t *suppattr,
-                                    ipp_attribute_t *defattr, int defval,
-                                    int valcount);
 
 
 /*
@@ -75,318 +47,14 @@ cupsAdminCreateWindowsPPD(
     char       *buffer,                        /* I - Filename buffer */
     int        bufsize)                        /* I - Size of filename buffer */
 {
-  const char           *src;           /* Source PPD filename */
-  cups_file_t          *srcfp,         /* Source PPD file */
-                       *dstfp;         /* Destination PPD file */
-  ipp_t                        *request,       /* IPP request */
-                       *response;      /* IPP response */
-  ipp_attribute_t      *suppattr,      /* IPP -supported attribute */
-                       *defattr;       /* IPP -default attribute */
-  cups_lang_t          *language;      /* Current language */
-  char                 line[256],      /* Line from PPD file */
-                       junk[256],      /* Extra junk to throw away */
-                       *ptr,           /* Pointer into line */
-                       uri[1024],      /* Printer URI */
-                       option[41],     /* Option */
-                       choice[41];     /* Choice */
-  int                  jcloption,      /* In a JCL option? */
-                       jclorder,       /* Next JCL order dependency */
-                       linenum;        /* Current line number */
-  time_t               curtime;        /* Current time */
-  struct tm            *curdate;       /* Current date */
-  static const char * const pattrs[] = /* Printer attributes we want */
-                       {
-                         "job-hold-until-supported",
-                         "job-hold-until-default",
-                         "job-sheets-supported",
-                         "job-sheets-default",
-                         "job-priority-supported",
-                         "job-priority-default"
-                       };
-
-
- /*
-  * Range check the input...
-  */
+  (void)http;
+  (void)dest;
+  (void)bufsize;
 
   if (buffer)
     *buffer = '\0';
 
-  if (!http)
-    http = _cupsConnect();
-
-  if (!http || !dest || !buffer || bufsize < 2)
-    return (NULL);
-
- /*
-  * Get the PPD file...
-  */
-
-  if ((src = cupsGetPPD2(http, dest)) == NULL)
-    return (NULL);
-
- /*
-  * Get the supported banner pages, etc. for the printer...
-  */
-
-  request = ippNewRequest(IPP_OP_GET_PRINTER_ATTRIBUTES);
-
-  httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
-                   "localhost", 0, "/printers/%s", dest);
-  ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI,
-               "printer-uri", NULL, uri);
-
-  ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
-                "requested-attributes", sizeof(pattrs) / sizeof(pattrs[0]),
-               NULL, pattrs);
-
- /*
-  * Do the request and get back a response...
-  */
-
-  response = cupsDoRequest(http, request, "/");
-  if (!response || cupsLastError() > IPP_STATUS_OK_CONFLICTING)
-  {
-    unlink(src);
-    return (NULL);
-  }
-
- /*
-  * Open the original PPD file...
-  */
-
-  if ((srcfp = cupsFileOpen(src, "rb")) == NULL)
-    return (NULL);
-
- /*
-  * Create a temporary output file using the destination buffer...
-  */
-
-  if ((dstfp = cupsTempFile2(buffer, bufsize)) == NULL)
-  {
-    cupsFileClose(srcfp);
-
-    unlink(src);
-
-    return (NULL);
-  }
-
- /*
-  * Write a new header explaining that this isn't the original PPD...
-  */
-
-  cupsFilePuts(dstfp, "*PPD-Adobe: \"4.3\"\n");
-
-  curtime = time(NULL);
-  curdate = gmtime(&curtime);
-
-  cupsFilePrintf(dstfp, "*%% Modified on %04d%02d%02d%02d%02d%02d+0000 "
-                        "for CUPS Windows Driver\n",
-                curdate->tm_year + 1900, curdate->tm_mon + 1, curdate->tm_mday,
-                curdate->tm_hour, curdate->tm_min, curdate->tm_sec);
-
- /*
-  * Read the existing PPD file, converting all PJL commands to CUPS
-  * job ticket comments...
-  */
-
-  jcloption = 0;
-  jclorder  = 0;
-  linenum   = 0;
-  language  = cupsLangDefault();
-
-  while (cupsFileGets(srcfp, line, sizeof(line)))
-  {
-    linenum ++;
-
-    if (!strncmp(line, "*PPD-Adobe:", 11))
-    {
-     /*
-      * Already wrote the PPD header...
-      */
-
-      continue;
-    }
-    else if (!strncmp(line, "*JCLBegin:", 10) ||
-             !strncmp(line, "*JCLToPSInterpreter:", 20) ||
-            !strncmp(line, "*JCLEnd:", 8) ||
-            !strncmp(line, "*Protocols:", 11))
-    {
-     /*
-      * Don't use existing JCL keywords; we'll create our own, below...
-      */
-
-      cupsFilePrintf(dstfp, "*%% Commented out for CUPS Windows Driver...\n"
-                            "*%%%s\n", line + 1);
-      continue;
-    }
-    else if (!strncmp(line, "*JCLOpenUI", 10))
-    {
-      jcloption = 1;
-      cupsFilePrintf(dstfp, "%s\n", line);
-    }
-    else if (!strncmp(line, "*JCLCloseUI", 11))
-    {
-      jcloption = 0;
-      cupsFilePrintf(dstfp, "%s\n", line);
-    }
-    else if (jcloption && !strncmp(line, "*OrderDependency:", 17))
-    {
-      for (ptr = line + 17; _cups_isspace(*ptr); ptr ++);
-
-      ptr = strchr(ptr, ' ');
-
-      if (ptr)
-      {
-       cupsFilePrintf(dstfp, "*OrderDependency: %d%s\n", jclorder, ptr);
-       jclorder ++;
-      }
-      else
-        cupsFilePrintf(dstfp, "%s\n", line);
-    }
-    else if (jcloption &&
-             strncmp(line, "*End", 4) &&
-             strncmp(line, "*Default", 8))
-    {
-      if ((ptr = strchr(line, ':')) == NULL)
-      {
-        snprintf(line, sizeof(line),
-                _cupsLangString(language, _("Missing value on line %d.")),
-                linenum);
-        _cupsSetError(IPP_STATUS_ERROR_DOCUMENT_FORMAT_ERROR, line, 0);
-
-        cupsFileClose(srcfp);
-        cupsFileClose(dstfp);
-
-       unlink(src);
-       unlink(buffer);
-
-        *buffer = '\0';
-
-       return (NULL);
-      }
-
-      if ((ptr = strchr(ptr, '\"')) == NULL)
-      {
-        snprintf(line, sizeof(line),
-                _cupsLangString(language,
-                                _("Missing double quote on line %d.")),
-                linenum);
-        _cupsSetError(IPP_STATUS_ERROR_DOCUMENT_FORMAT_ERROR, line, 0);
-
-        cupsFileClose(srcfp);
-        cupsFileClose(dstfp);
-
-       unlink(src);
-       unlink(buffer);
-
-        *buffer = '\0';
-
-       return (NULL);
-      }
-
-      if (sscanf(line, "*%40s%*[ \t]%40[^:/]", option, choice) != 2)
-      {
-        snprintf(line, sizeof(line),
-                _cupsLangString(language,
-                                _("Bad option + choice on line %d.")),
-                linenum);
-        _cupsSetError(IPP_STATUS_ERROR_DOCUMENT_FORMAT_ERROR, line, 0);
-
-        cupsFileClose(srcfp);
-        cupsFileClose(dstfp);
-
-       unlink(src);
-       unlink(buffer);
-
-        *buffer = '\0';
-
-       return (NULL);
-      }
-
-      if (strchr(ptr + 1, '\"') == NULL)
-      {
-       /*
-        * Skip remaining...
-       */
-
-       while (cupsFileGets(srcfp, junk, sizeof(junk)) != NULL)
-       {
-         linenum ++;
-
-         if (!strncmp(junk, "*End", 4))
-           break;
-       }
-      }
-
-      snprintf(ptr + 1, sizeof(line) - (ptr - line + 1),
-               "%%cupsJobTicket: %s=%s\n\"\n*End", option, choice);
-
-      cupsFilePrintf(dstfp, "*%% Changed for CUPS Windows Driver...\n%s\n",
-                     line);
-    }
-    else
-      cupsFilePrintf(dstfp, "%s\n", line);
-  }
-
-  cupsFileClose(srcfp);
-  unlink(src);
-
-  if (linenum == 0)
-  {
-    _cupsSetError(IPP_STATUS_ERROR_DOCUMENT_FORMAT_ERROR, _("Empty PPD file."), 1);
-
-    cupsFileClose(dstfp);
-    unlink(buffer);
-
-    *buffer = '\0';
-
-    return (NULL);
-  }
-
- /*
-  * Now add the CUPS-specific attributes and options...
-  */
-
-  cupsFilePuts(dstfp, "\n*% CUPS Job Ticket support and options...\n");
-  cupsFilePuts(dstfp, "*Protocols: PJL\n");
-  cupsFilePuts(dstfp, "*JCLBegin: \"%!PS-Adobe-3.0<0A>\"\n");
-  cupsFilePuts(dstfp, "*JCLToPSInterpreter: \"\"\n");
-  cupsFilePuts(dstfp, "*JCLEnd: \"\"\n");
-
-  cupsFilePuts(dstfp, "\n*OpenGroup: CUPS/CUPS Options\n\n");
-
-  if ((defattr = ippFindAttribute(response, "job-hold-until-default",
-                                  IPP_TAG_ZERO)) != NULL &&
-      (suppattr = ippFindAttribute(response, "job-hold-until-supported",
-                                   IPP_TAG_ZERO)) != NULL)
-    write_option(dstfp, jclorder ++, "cupsJobHoldUntil", "Hold Until",
-                 "job-hold-until", suppattr, defattr, 0, 1);
-
-  if ((defattr = ippFindAttribute(response, "job-priority-default",
-                                  IPP_TAG_INTEGER)) != NULL &&
-      (suppattr = ippFindAttribute(response, "job-priority-supported",
-                                   IPP_TAG_RANGE)) != NULL)
-    write_option(dstfp, jclorder ++, "cupsJobPriority", "Priority",
-                 "job-priority", suppattr, defattr, 0, 1);
-
-  if ((defattr = ippFindAttribute(response, "job-sheets-default",
-                                  IPP_TAG_ZERO)) != NULL &&
-      (suppattr = ippFindAttribute(response, "job-sheets-supported",
-                                   IPP_TAG_ZERO)) != NULL)
-  {
-    write_option(dstfp, jclorder ++, "cupsJobSheetsStart", "Start Banner",
-                 "job-sheets", suppattr, defattr, 0, 2);
-    write_option(dstfp, jclorder, "cupsJobSheetsEnd", "End Banner",
-                 "job-sheets", suppattr, defattr, 1, 2);
-  }
-
-  cupsFilePuts(dstfp, "*CloseGroup: CUPS\n");
-  cupsFileClose(dstfp);
-
-  ippDelete(response);
-
-  return (buffer);
+  return (NULL);
 }
 
 
@@ -405,435 +73,14 @@ cupsAdminExportSamba(
     const char *samba_password,                /* I - Samba password */
     FILE       *logfile)               /* I - Log file, if any */
 {
-  int                  status;         /* Status of Samba commands */
-  int                  have_drivers;   /* Have drivers? */
-  char                 file[1024],     /* File to test for */
-                       authfile[1024], /* Temporary authentication file */
-                       address[1024],  /* Address for command */
-                       subcmd[1024],   /* Sub-command */
-                       message[1024];  /* Error message */
-  cups_file_t          *fp;            /* Authentication file */
-  cups_lang_t          *language;      /* Current language */
-  _cups_globals_t      *cg = _cupsGlobals();
-                                       /* Global data */
-
-
- /*
-  * Range check input...
-  */
-
-  if (!dest || !ppd || !samba_server || !samba_user || !samba_password)
-  {
-    _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(EINVAL), 0);
-    return (0);
-  }
-
- /*
-  * Create a temporary authentication file for Samba...
-  */
-
-  if ((fp = cupsTempFile2(authfile, sizeof(authfile))) == NULL)
-  {
-    _cupsSetError(IPP_STATUS_ERROR_INTERNAL, NULL, 0);
-    return (0);
-  }
-
-  cupsFilePrintf(fp, "username = %s\n", samba_user);
-  cupsFilePrintf(fp, "password = %s\n", samba_password);
-  cupsFileClose(fp);
-
- /*
-  * See which drivers are available; the new CUPS v6 and Adobe drivers
-  * depend on the Windows 2k PS driver, so copy that driver first:
-  *
-  * Files:
-  *
-  *     ps5ui.dll
-  *     pscript.hlp
-  *     pscript.ntf
-  *     pscript5.dll
-  */
-
-  have_drivers = 0;
-  language     = cupsLangDefault();
-
-  snprintf(file, sizeof(file), "%s/drivers/pscript5.dll", cg->cups_datadir);
-  if (!access(file, 0))
-  {
-    have_drivers |= 1;
-
-   /*
-    * Windows 2k driver is installed; do the smbclient commands needed
-    * to copy the Win2k drivers over...
-    */
-
-    snprintf(address, sizeof(address), "//%s/print$", samba_server);
-
-    snprintf(subcmd, sizeof(subcmd),
-             "mkdir W32X86;"
-            "put %s W32X86/%s.ppd;"
-            "put %s/drivers/ps5ui.dll W32X86/ps5ui.dll;"
-            "put %s/drivers/pscript.hlp W32X86/pscript.hlp;"
-            "put %s/drivers/pscript.ntf W32X86/pscript.ntf;"
-            "put %s/drivers/pscript5.dll W32X86/pscript5.dll",
-            ppd, dest, cg->cups_datadir, cg->cups_datadir,
-            cg->cups_datadir, cg->cups_datadir);
-
-    if ((status = do_samba_command("smbclient", address, subcmd,
-                                   authfile, logfile)) != 0)
-    {
-      snprintf(message, sizeof(message),
-               _cupsLangString(language,
-                              _("Unable to copy Windows 2000 printer "
-                                "driver files (%d).")), status);
-
-      _cupsSetError(IPP_STATUS_ERROR_INTERNAL, message, 0);
-
-      if (logfile)
-       _cupsLangPuts(logfile, message);
-
-      unlink(authfile);
-
-      return (0);
-    }
-
-   /*
-    * See if we also have the CUPS driver files; if so, use them!
-    */
-
-    snprintf(file, sizeof(file), "%s/drivers/cupsps6.dll", cg->cups_datadir);
-    if (!access(file, 0))
-    {
-     /*
-      * Copy the CUPS driver files over...
-      */
-
-      snprintf(subcmd, sizeof(subcmd),
-               "put %s/drivers/cups6.ini W32X86/cups6.ini;"
-               "put %s/drivers/cupsps6.dll W32X86/cupsps6.dll;"
-              "put %s/drivers/cupsui6.dll W32X86/cupsui6.dll",
-              cg->cups_datadir, cg->cups_datadir, cg->cups_datadir);
-
-      if ((status = do_samba_command("smbclient", address, subcmd,
-                                     authfile, logfile)) != 0)
-      {
-       snprintf(message, sizeof(message),
-                _cupsLangString(language,
-                                _("Unable to copy CUPS printer driver "
-                                  "files (%d).")), status);
-
-       _cupsSetError(IPP_STATUS_ERROR_INTERNAL, message, 0);
-
-       if (logfile)
-         _cupsLangPuts(logfile, message);
-
-        unlink(authfile);
-
-       return (0);
-      }
-
-     /*
-      * Do the rpcclient command needed for the CUPS drivers...
-      */
-
-      snprintf(subcmd, sizeof(subcmd),
-               "adddriver \"Windows NT x86\" \"%s:"
-              "pscript5.dll:%s.ppd:ps5ui.dll:pscript.hlp:NULL:RAW:"
-              "pscript5.dll,%s.ppd,ps5ui.dll,pscript.hlp,pscript.ntf,"
-              "cups6.ini,cupsps6.dll,cupsui6.dll\"",
-              dest, dest, dest);
-    }
-    else
-    {
-     /*
-      * Don't have the CUPS drivers, so just use the standard Windows
-      * drivers...
-      */
-
-      snprintf(subcmd, sizeof(subcmd),
-               "adddriver \"Windows NT x86\" \"%s:"
-              "pscript5.dll:%s.ppd:ps5ui.dll:pscript.hlp:NULL:RAW:"
-              "pscript5.dll,%s.ppd,ps5ui.dll,pscript.hlp,pscript.ntf\"",
-              dest, dest, dest);
-    }
-
-    if ((status = do_samba_command("rpcclient", samba_server, subcmd,
-                                   authfile, logfile)) != 0)
-    {
-      snprintf(message, sizeof(message),
-               _cupsLangString(language,
-                              _("Unable to install Windows 2000 printer "
-                                "driver files (%d).")), status);
-
-      _cupsSetError(IPP_STATUS_ERROR_INTERNAL, message, 0);
-
-      if (logfile)
-       _cupsLangPuts(logfile, message);
-
-      unlink(authfile);
-
-      return (0);
-    }
-  }
-
- /*
-  * See if we have the Win9x PS driver...
-  */
-
-  snprintf(file, sizeof(file), "%s/drivers/ADOBEPS4.DRV", cg->cups_datadir);
-  if (!access(file, 0))
-  {
-    have_drivers |= 2;
-
-   /*
-    * Do the smbclient commands needed for the Adobe Win9x drivers...
-    */
-
-    snprintf(address, sizeof(address), "//%s/print$", samba_server);
-
-    snprintf(subcmd, sizeof(subcmd),
-             "mkdir WIN40;"
-            "put %s WIN40/%s.PPD;"
-            "put %s/drivers/ADFONTS.MFM WIN40/ADFONTS.MFM;"
-            "put %s/drivers/ADOBEPS4.DRV WIN40/ADOBEPS4.DRV;"
-            "put %s/drivers/ADOBEPS4.HLP WIN40/ADOBEPS4.HLP;"
-            "put %s/drivers/ICONLIB.DLL WIN40/ICONLIB.DLL;"
-            "put %s/drivers/PSMON.DLL WIN40/PSMON.DLL;",
-            ppd, dest, cg->cups_datadir, cg->cups_datadir,
-            cg->cups_datadir, cg->cups_datadir, cg->cups_datadir);
-
-    if ((status = do_samba_command("smbclient", address, subcmd,
-                                   authfile, logfile)) != 0)
-    {
-      snprintf(message, sizeof(message),
-               _cupsLangString(language,
-                              _("Unable to copy Windows 9x printer "
-                                "driver files (%d).")), status);
-
-      _cupsSetError(IPP_STATUS_ERROR_INTERNAL, message, 0);
-
-      if (logfile)
-       _cupsLangPuts(logfile, message);
-
-      unlink(authfile);
-
-      return (0);
-    }
-
-   /*
-    * Do the rpcclient commands needed for the Adobe Win9x drivers...
-    */
-
-    snprintf(subcmd, sizeof(subcmd),
-            "adddriver \"Windows 4.0\" \"%s:ADOBEPS4.DRV:%s.PPD:NULL:"
-            "ADOBEPS4.HLP:PSMON.DLL:RAW:"
-            "ADOBEPS4.DRV,%s.PPD,ADOBEPS4.HLP,PSMON.DLL,ADFONTS.MFM,"
-            "ICONLIB.DLL\"",
-            dest, dest, dest);
-
-    if ((status = do_samba_command("rpcclient", samba_server, subcmd,
-                                   authfile, logfile)) != 0)
-    {
-      snprintf(message, sizeof(message),
-               _cupsLangString(language,
-                              _("Unable to install Windows 9x printer "
-                                "driver files (%d).")), status);
-
-      _cupsSetError(IPP_STATUS_ERROR_INTERNAL, message, 0);
-
-      if (logfile)
-       _cupsLangPuts(logfile, message);
-
-      unlink(authfile);
-
-      return (0);
-    }
-  }
-
- /*
-  * See if we have the 64-bit Windows PS driver...
-  *
-  * Files:
-  *
-  *     x64/ps5ui.dll
-  *     x64/pscript.hlp
-  *     x64/pscript.ntf
-  *     x64/pscript5.dll
-  */
-
-  snprintf(file, sizeof(file), "%s/drivers/x64/pscript5.dll", cg->cups_datadir);
-  if (!access(file, 0))
-  {
-    have_drivers |= 4;
-
-   /*
-    * 64-bit Windows driver is installed; do the smbclient commands needed
-    * to copy the Win64 drivers over...
-    */
-
-    snprintf(address, sizeof(address), "//%s/print$", samba_server);
-
-    snprintf(subcmd, sizeof(subcmd),
-             "mkdir x64;"
-            "put %s x64/%s.ppd;"
-            "put %s/drivers/x64/ps5ui.dll x64/ps5ui.dll;"
-            "put %s/drivers/x64/pscript.hlp x64/pscript.hlp;"
-            "put %s/drivers/x64/pscript.ntf x64/pscript.ntf;"
-            "put %s/drivers/x64/pscript5.dll x64/pscript5.dll",
-            ppd, dest, cg->cups_datadir, cg->cups_datadir,
-            cg->cups_datadir, cg->cups_datadir);
-
-    if ((status = do_samba_command("smbclient", address, subcmd,
-                                   authfile, logfile)) != 0)
-    {
-      snprintf(message, sizeof(message),
-               _cupsLangString(language,
-                              _("Unable to copy 64-bit Windows printer "
-                                "driver files (%d).")), status);
-
-      _cupsSetError(IPP_STATUS_ERROR_INTERNAL, message, 0);
-
-      if (logfile)
-       _cupsLangPuts(logfile, message);
-
-      unlink(authfile);
-
-      return (0);
-    }
-
-   /*
-    * See if we also have the CUPS driver files; if so, use them!
-    */
-
-    snprintf(file, sizeof(file), "%s/drivers/x64/cupsps6.dll", cg->cups_datadir);
-    if (!access(file, 0))
-    {
-     /*
-      * Copy the CUPS driver files over...
-      */
-
-      snprintf(subcmd, sizeof(subcmd),
-               "put %s/drivers/x64/cups6.ini x64/cups6.ini;"
-               "put %s/drivers/x64/cupsps6.dll x64/cupsps6.dll;"
-              "put %s/drivers/x64/cupsui6.dll x64/cupsui6.dll",
-              cg->cups_datadir, cg->cups_datadir, cg->cups_datadir);
-
-      if ((status = do_samba_command("smbclient", address, subcmd,
-                                     authfile, logfile)) != 0)
-      {
-       snprintf(message, sizeof(message),
-                _cupsLangString(language,
-                                _("Unable to copy 64-bit CUPS printer driver "
-                                  "files (%d).")), status);
-
-       _cupsSetError(IPP_STATUS_ERROR_INTERNAL, message, 0);
-
-       if (logfile)
-         _cupsLangPuts(logfile, message);
-
-        unlink(authfile);
-
-       return (0);
-      }
-
-     /*
-      * Do the rpcclient command needed for the CUPS drivers...
-      */
-
-      snprintf(subcmd, sizeof(subcmd),
-               "adddriver \"Windows x64\" \"%s:"
-              "pscript5.dll:%s.ppd:ps5ui.dll:pscript.hlp:NULL:RAW:"
-              "pscript5.dll,%s.ppd,ps5ui.dll,pscript.hlp,pscript.ntf,"
-              "cups6.ini,cupsps6.dll,cupsui6.dll\"",
-              dest, dest, dest);
-    }
-    else
-    {
-     /*
-      * Don't have the CUPS drivers, so just use the standard Windows
-      * drivers...
-      */
-
-      snprintf(subcmd, sizeof(subcmd),
-               "adddriver \"Windows x64\" \"%s:"
-              "pscript5.dll:%s.ppd:ps5ui.dll:pscript.hlp:NULL:RAW:"
-              "pscript5.dll,%s.ppd,ps5ui.dll,pscript.hlp,pscript.ntf\"",
-              dest, dest, dest);
-    }
-
-    if ((status = do_samba_command("rpcclient", samba_server, subcmd,
-                                   authfile, logfile)) != 0)
-    {
-      snprintf(message, sizeof(message),
-               _cupsLangString(language,
-                              _("Unable to install Windows 2000 printer "
-                                "driver files (%d).")), status);
-
-      _cupsSetError(IPP_STATUS_ERROR_INTERNAL, message, 0);
-
-      if (logfile)
-       _cupsLangPuts(logfile, message);
-
-      unlink(authfile);
-
-      return (0);
-    }
-  }
-
-  if (logfile && !(have_drivers & 1))
-  {
-    if (!have_drivers)
-      strlcpy(message,
-              _cupsLangString(language,
-                             _("No Windows printer drivers are installed.")),
-              sizeof(message));
-    else
-      strlcpy(message,
-              _cupsLangString(language,
-                             _("Warning, no Windows 2000 printer drivers "
-                               "are installed.")),
-              sizeof(message));
-
-    _cupsSetError(IPP_STATUS_ERROR_NOT_FOUND, message, 0);
-    _cupsLangPuts(logfile, message);
-  }
-
-  if (have_drivers == 0)
-  {
-    _cupsSetError(IPP_STATUS_ERROR_NOT_FOUND, message, 0);
-
-    unlink(authfile);
-
-    return (0);
-  }
-
- /*
-  * Finally, associate the drivers we just added with the queue...
-  */
-
-  snprintf(subcmd, sizeof(subcmd), "setdriver %s %s", dest, dest);
-
-  if ((status = do_samba_command("rpcclient", samba_server, subcmd,
-                                 authfile, logfile)) != 0)
-  {
-    snprintf(message, sizeof(message),
-             _cupsLangString(language,
-                            _("Unable to set Windows printer driver (%d).")),
-                            status);
-
-    _cupsSetError(IPP_STATUS_ERROR_INTERNAL, message, 0);
-
-    if (logfile)
-      _cupsLangPuts(logfile, message);
-
-    unlink(authfile);
-
-    return (0);
-  }
-
-  unlink(authfile);
-
-  return (1);
+  (void)dest;
+  (void)ppd;
+  (void)samba_server;
+  (void)samba_user;
+  (void)samba_password;
+  (void)logfile;
+
+  return (0);
 }
 
 
@@ -843,7 +90,7 @@ cupsAdminExportSamba(
  * The returned settings should be freed with cupsFreeOptions() when
  * you are done with them.
  *
- * @since CUPS 1.3/OS X 10.5@
+ * @since CUPS 1.3/macOS 10.5@
  */
 
 int                                    /* O - 1 on success, 0 on failure */
@@ -1159,7 +406,7 @@ cupsAdminGetServerSettings(
 /*
  * 'cupsAdminSetServerSettings()' - Set settings on the server.
  *
- * @since CUPS 1.3/OS X 10.5@
+ * @since CUPS 1.3/macOS 10.5@
  */
 
 int                                    /* O - 1 on success, 0 on failure */
@@ -1186,6 +433,7 @@ cupsAdminSetServerSettings(
                in_cancel_job,          /* In a cancel-job section? */
                in_admin_location,      /* In the /admin location? */
                in_conf_location,       /* In the /admin/conf location? */
+               in_log_location,        /* In the /admin/log location? */
                in_root_location;       /* In the / location? */
   const char   *val;                   /* Setting value */
   int          share_printers,         /* Share local printers */
@@ -1199,11 +447,13 @@ cupsAdminSetServerSettings(
                wrote_loglevel,         /* Wrote the LogLevel line? */
                wrote_admin_location,   /* Wrote the /admin location? */
                wrote_conf_location,    /* Wrote the /admin/conf location? */
+               wrote_log_location,     /* Wrote the /admin/log location? */
                wrote_root_location;    /* Wrote the / location? */
   int          indent;                 /* Indentation */
   int          cupsd_num_settings;     /* New number of settings */
   int          old_share_printers,     /* Share local printers */
                old_remote_admin,       /* Remote administration allowed? */
+               old_remote_any,         /* Remote access from anywhere? */
                old_user_cancel_any,    /* Cancel-job policy set? */
                old_debug_logging;      /* LogLevel debug set? */
   cups_option_t        *cupsd_settings,        /* New settings */
@@ -1269,12 +519,12 @@ cupsAdminSetServerSettings(
 
   if ((val = cupsGetOption(CUPS_SERVER_REMOTE_ANY, cupsd_num_settings,
                            cupsd_settings)) != NULL)
-    remote_any = atoi(val);
+    old_remote_any = atoi(val);
   else
-    remote_any = 0;
+    old_remote_any = 0;
 
   DEBUG_printf(("1cupsAdminSetServerSettings: old remote_any=%d",
-                remote_any));
+                old_remote_any));
 
   if ((val = cupsGetOption(CUPS_SERVER_SHARE_PRINTERS, cupsd_num_settings,
                            cupsd_settings)) != NULL)
@@ -1320,12 +570,23 @@ cupsAdminSetServerSettings(
   DEBUG_printf(("1cupsAdminSetServerSettings: debug_logging=%d",
                 debug_logging));
 
-  if ((val = cupsGetOption(CUPS_SERVER_REMOTE_ANY, num_settings,
-                           settings)) != NULL)
+  if ((val = cupsGetOption(CUPS_SERVER_REMOTE_ANY, num_settings, settings)) != NULL)
+  {
     remote_any = atoi(val);
 
-  DEBUG_printf(("1cupsAdminSetServerSettings: remote_any=%d",
-                remote_any));
+    if (remote_any == old_remote_any)
+    {
+     /*
+      * No change to this setting...
+      */
+
+      remote_any = -1;
+    }
+  }
+  else
+    remote_any = -1;
+
+  DEBUG_printf(("1cupsAdminSetServerSettings: remote_any=%d", remote_any));
 
   if ((val = cupsGetOption(CUPS_SERVER_REMOTE_ADMIN, num_settings,
                            settings)) != NULL)
@@ -1412,12 +673,14 @@ cupsAdminSetServerSettings(
   in_conf_location     = 0;
   in_default_policy    = 0;
   in_location          = 0;
+  in_log_location      = 0;
   in_policy            = 0;
   in_root_location     = 0;
   linenum              = 0;
   wrote_admin_location = 0;
   wrote_browsing       = 0;
   wrote_conf_location  = 0;
+  wrote_log_location   = 0;
   wrote_loglevel       = 0;
   wrote_policy         = 0;
   wrote_port_listen    = 0;
@@ -1438,7 +701,7 @@ cupsAdminSetServerSettings(
   while (cupsFileGetConf(cupsd, line, sizeof(line), &value, &linenum))
   {
     if ((!_cups_strcasecmp(line, "Port") || !_cups_strcasecmp(line, "Listen")) &&
-        (remote_admin >= 0 || remote_any > 0 || share_printers >= 0))
+        (remote_admin >= 0 || remote_any >= 0 || share_printers >= 0))
     {
       if (!wrote_port_listen)
       {
@@ -1561,8 +824,10 @@ cupsAdminSetServerSettings(
       indent += 2;
       if (!strcmp(value, "/admin"))
        in_admin_location = 1;
-      if (!strcmp(value, "/admin/conf"))
+      else if (!strcmp(value, "/admin/conf"))
        in_conf_location = 1;
+      else if (!strcmp(value, "/admin/log"))
+       in_log_location = 1;
       else if (!strcmp(value, "/"))
        in_root_location = 1;
 
@@ -1604,8 +869,25 @@ cupsAdminSetServerSettings(
          cupsFilePrintf(temp, "  Allow %s\n",
                         remote_any > 0 ? "all" : "@LOCAL");
       }
+      else if (in_log_location && remote_admin >= 0)
+      {
+       wrote_log_location = 1;
+
+       if (remote_admin)
+          cupsFilePuts(temp, "  # Allow remote access to the log "
+                            "files...\n");
+       else
+          cupsFilePuts(temp, "  # Restrict access to the log "
+                            "files...\n");
+
+        cupsFilePuts(temp, "  Order allow,deny\n");
+
+       if (remote_admin)
+         cupsFilePrintf(temp, "  Allow %s\n",
+                        remote_any > 0 ? "all" : "@LOCAL");
+      }
       else if (in_root_location &&
-               (remote_admin >= 0 || remote_any > 0 || share_printers >= 0))
+               (remote_admin >= 0 || remote_any >= 0 || share_printers >= 0))
       {
        wrote_root_location = 1;
 
@@ -1630,6 +912,7 @@ cupsAdminSetServerSettings(
 
       in_admin_location = 0;
       in_conf_location  = 0;
+      in_log_location   = 0;
       in_root_location  = 0;
 
       cupsFilePuts(temp, "</Location>\n");
@@ -1707,7 +990,7 @@ cupsAdminSetServerSettings(
       in_cancel_job = 0;
     }
     else if ((((in_admin_location || in_conf_location || in_root_location) &&
-               (remote_admin >= 0 || remote_any > 0)) ||
+               (remote_admin >= 0 || remote_any >= 0)) ||
               (in_root_location && share_printers >= 0)) &&
              (!_cups_strcasecmp(line, "Allow") || !_cups_strcasecmp(line, "Deny") ||
              !_cups_strcasecmp(line, "Order")))
@@ -1799,7 +1082,7 @@ cupsAdminSetServerSettings(
   }
 
   if (!wrote_port_listen &&
-      (remote_admin >= 0 || remote_any > 0 || share_printers >= 0))
+      (remote_admin >= 0 || remote_any >= 0 || share_printers >= 0))
   {
     if (remote_admin > 0 || remote_any > 0 || share_printers > 0)
     {
@@ -1820,7 +1103,7 @@ cupsAdminSetServerSettings(
   }
 
   if (!wrote_root_location &&
-      (remote_admin >= 0 || remote_any > 0 || share_printers >= 0))
+      (remote_admin >= 0 || remote_any >= 0 || share_printers >= 0))
   {
     if (remote_admin > 0 && share_printers > 0)
       cupsFilePuts(temp,
@@ -1878,6 +1161,25 @@ cupsAdminSetServerSettings(
     cupsFilePuts(temp, "</Location>\n");
   }
 
+  if (!wrote_log_location && remote_admin >= 0)
+  {
+    if (remote_admin)
+      cupsFilePuts(temp,
+                   "# Allow remote access to the log files...\n");
+    else
+      cupsFilePuts(temp, "# Restrict access to the log files...\n");
+
+    cupsFilePuts(temp, "<Location /admin/log>\n"
+                       "  AuthType Default\n"
+                       "  Require user @SYSTEM\n"
+                       "  Order allow,deny\n");
+
+    if (remote_admin)
+      cupsFilePrintf(temp, "  Allow %s\n", remote_any > 0 ? "all" : "@LOCAL");
+
+    cupsFilePuts(temp, "</Location>\n");
+  }
+
   if (!wrote_policy && user_cancel_any >= 0)
   {
     cupsFilePuts(temp, "<Policy default>\n"
@@ -1978,9 +1280,14 @@ cupsAdminSetServerSettings(
                                         old_remote_admin ? "1" : "0",
                                         cupsd_num_settings, &cupsd_settings);
 
-    cupsd_num_settings = cupsAddOption(CUPS_SERVER_REMOTE_ANY,
-                                       remote_any ? "1" : "0",
-                                      cupsd_num_settings, &cupsd_settings);
+    if (remote_any >= 0)
+      cupsd_num_settings = cupsAddOption(CUPS_SERVER_REMOTE_ANY,
+                                        remote_any ? "1" : "0",
+                                        cupsd_num_settings, &cupsd_settings);
+    else
+      cupsd_num_settings = cupsAddOption(CUPS_SERVER_REMOTE_ANY,
+                                        old_remote_any ? "1" : "0",
+                                        cupsd_num_settings, &cupsd_settings);
 
     if (share_printers >= 0)
       cupsd_num_settings = cupsAddOption(CUPS_SERVER_SHARE_PRINTERS,
@@ -2028,88 +1335,6 @@ cupsAdminSetServerSettings(
 }
 
 
-/*
- * 'do_samba_command()' - Do a SAMBA command.
- */
-
-static int                             /* O - Status of command */
-do_samba_command(const char *command,  /* I - Command to run */
-                 const char *address,  /* I - Address for command */
-                 const char *subcmd,   /* I - Sub-command */
-                const char *authfile,  /* I - Samba authentication file */
-                FILE *logfile)         /* I - Optional log file */
-{
-#ifdef WIN32
-  return (1);                          /* Always fail on Windows... */
-
-#else
-  int          status;                 /* Status of command */
-  int          pid;                    /* Process ID of child */
-
-
-  if (logfile)
-    _cupsLangPrintf(logfile,
-                    _("Running command: %s %s -N -A %s -c \'%s\'"),
-                   command, address, authfile, subcmd);
-
-  if ((pid = fork()) == 0)
-  {
-   /*
-    * Child goes here, redirect stdin/out/err and execute the command...
-    */
-
-    int fd = open("/dev/null", O_RDONLY);
-
-    if (fd > 0)
-    {
-      dup2(fd, 0);
-      close(fd);
-    }
-
-    if (logfile)
-      dup2(fileno(logfile), 1);
-    else if ((fd = open("/dev/null", O_WRONLY)) > 1)
-    {
-      dup2(fd, 1);
-      close(fd);
-    }
-
-    dup2(1, 2);
-
-    execlp(command, command, address, "-N", "-A", authfile, "-c", subcmd,
-           (char *)0);
-    exit(errno);
-  }
-  else if (pid < 0)
-  {
-    status = -1;
-
-    if (logfile)
-      _cupsLangPrintf(logfile, _("Unable to run \"%s\": %s"),
-                      command, strerror(errno));
-  }
-  else
-  {
-   /*
-    * Wait for the process to complete...
-    */
-
-    while (wait(&status) != pid);
-  }
-
-  if (logfile)
-    _cupsLangPuts(logfile, "");
-
-  DEBUG_printf(("9do_samba_command: status=%d", status));
-
-  if (WIFEXITED(status))
-    return (WEXITSTATUS(status));
-  else
-    return (-WTERMSIG(status));
-#endif /* WIN32 */
-}
-
-
 /*
  * 'get_cupsd_conf()' - Get the current cupsd.conf file.
  */
@@ -2120,13 +1345,13 @@ get_cupsd_conf(
     _cups_globals_t *cg,               /* I - Global data */
     time_t          last_update,       /* I - Last update time for file */
     char            *name,             /* I - Filename buffer */
-    int             namesize,          /* I - Size of filename buffer */
+    size_t          namesize,          /* I - Size of filename buffer */
     int             *remote)           /* O - Remote file? */
 {
   int          fd;                     /* Temporary file descriptor */
-#ifndef WIN32
+#ifndef _WIN32
   struct stat  info;                   /* cupsd.conf file information */
-#endif /* WIN32 */
+#endif /* _WIN32 */
   http_status_t        status;                 /* Status of getting cupsd.conf */
   char         host[HTTP_MAX_HOST];    /* Hostname for connection */
 
@@ -2143,7 +1368,7 @@ get_cupsd_conf(
   snprintf(name, namesize, "%s/cupsd.conf", cg->cups_serverroot);
   *remote = 0;
 
-#ifndef WIN32
+#ifndef _WIN32
   if (!_cups_strcasecmp(host, "localhost") && !access(name, R_OK))
   {
    /*
@@ -2170,13 +1395,13 @@ get_cupsd_conf(
       status = HTTP_STATUS_OK;
   }
   else
-#endif /* !WIN32 */
+#endif /* !_WIN32 */
   {
    /*
     * Read cupsd.conf via a HTTP GET request...
     */
 
-    if ((fd = cupsTempFd(name, namesize)) < 0)
+    if ((fd = cupsTempFd(name, (int)namesize)) < 0)
     {
       *name = '\0';
 
@@ -2225,117 +1450,3 @@ invalidate_cupsd_cache(
   cg->cupsd_num_settings = 0;
   cg->cupsd_settings     = NULL;
 }
-
-
-/*
- * 'write_option()' - Write a CUPS option to a PPD file.
- */
-
-static void
-write_option(cups_file_t     *dstfp,   /* I - PPD file */
-             int             order,    /* I - Order dependency */
-             const char      *name,    /* I - Option name */
-            const char      *text,     /* I - Option text */
-             const char      *attrname,        /* I - Attribute name */
-             ipp_attribute_t *suppattr,        /* I - IPP -supported attribute */
-            ipp_attribute_t *defattr,  /* I - IPP -default attribute */
-            int             defval,    /* I - Default value number */
-            int             valcount)  /* I - Number of values */
-{
-  int  i;                              /* Looping var */
-
-
-  cupsFilePrintf(dstfp, "*JCLOpenUI *%s/%s: PickOne\n"
-                        "*OrderDependency: %d JCLSetup *%s\n",
-                 name, text, order, name);
-
-  if (defattr->value_tag == IPP_TAG_INTEGER)
-  {
-   /*
-    * Do numeric options with a range or list...
-    */
-
-    cupsFilePrintf(dstfp, "*Default%s: %d\n", name,
-                   defattr->values[defval].integer);
-
-    if (suppattr->value_tag == IPP_TAG_RANGE)
-    {
-     /*
-      * List each number in the range...
-      */
-
-      for (i = suppattr->values[0].range.lower;
-           i <= suppattr->values[0].range.upper;
-          i ++)
-      {
-        cupsFilePrintf(dstfp, "*%s %d: \"", name, i);
-
-        if (valcount == 1)
-         cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%d\n\"\n*End\n",
-                        attrname, i);
-        else if (defval == 0)
-         cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%d\"\n", attrname, i);
-        else if (defval < (valcount - 1))
-         cupsFilePrintf(dstfp, ",%d\"\n", i);
-        else
-         cupsFilePrintf(dstfp, ",%d\n\"\n*End\n", i);
-      }
-    }
-    else
-    {
-     /*
-      * List explicit numbers...
-      */
-
-      for (i = 0; i < suppattr->num_values; i ++)
-      {
-        cupsFilePrintf(dstfp, "*%s %d: \"", name, suppattr->values[i].integer);
-
-        if (valcount == 1)
-         cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%d\n\"\n*End\n", attrname,
-                 suppattr->values[i].integer);
-        else if (defval == 0)
-         cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%d\"\n", attrname,
-                 suppattr->values[i].integer);
-        else if (defval < (valcount - 1))
-         cupsFilePrintf(dstfp, ",%d\"\n", suppattr->values[i].integer);
-        else
-         cupsFilePrintf(dstfp, ",%d\n\"\n*End\n", suppattr->values[i].integer);
-      }
-    }
-  }
-  else
-  {
-   /*
-    * Do text options with a list...
-    */
-
-    cupsFilePrintf(dstfp, "*Default%s: %s\n", name,
-                   defattr->values[defval].string.text);
-
-    for (i = 0; i < suppattr->num_values; i ++)
-    {
-      cupsFilePrintf(dstfp, "*%s %s: \"", name,
-                     suppattr->values[i].string.text);
-
-      if (valcount == 1)
-       cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%s\n\"\n*End\n", attrname,
-               suppattr->values[i].string.text);
-      else if (defval == 0)
-       cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%s\"\n", attrname,
-               suppattr->values[i].string.text);
-      else if (defval < (valcount - 1))
-       cupsFilePrintf(dstfp, ",%s\"\n", suppattr->values[i].string.text);
-      else
-       cupsFilePrintf(dstfp, ",%s\n\"\n*End\n",
-                      suppattr->values[i].string.text);
-    }
-  }
-
-  cupsFilePrintf(dstfp, "*JCLCloseUI: *%s\n\n", name);
-}
-
-
-/*
- * End of "$Id$".
- */