]> git.ipfire.org Git - thirdparty/cups.git/blob - scheduler/conf.c
Fix the interactions between the "print-quality" and "cupsPrintQuality"
[thirdparty/cups.git] / scheduler / conf.c
1 /*
2 * Configuration routines for the CUPS scheduler.
3 *
4 * Copyright 2007-2017 by Apple Inc.
5 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
6 *
7 * These coded instructions, statements, and computer programs are the
8 * property of Apple Inc. and are protected by Federal copyright
9 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
10 * which should have been included with this file. If this file is
11 * missing or damaged, see the license at "http://www.cups.org/".
12 */
13
14 /*
15 * Include necessary headers...
16 */
17
18 #include "cupsd.h"
19 #include <stdarg.h>
20 #include <grp.h>
21 #include <sys/utsname.h>
22 #ifdef HAVE_ASL_H
23 # include <asl.h>
24 #elif defined(HAVE_SYSTEMD_SD_JOURNAL_H)
25 # define SD_JOURNAL_SUPPRESS_LOCATION
26 # include <systemd/sd-journal.h>
27 #endif /* HAVE_ASL_H */
28 #include <syslog.h>
29
30 #ifdef HAVE_LIBPAPER
31 # include <paper.h>
32 #endif /* HAVE_LIBPAPER */
33
34
35 /*
36 * Possibly missing network definitions...
37 */
38
39 #ifndef INADDR_NONE
40 # define INADDR_NONE 0xffffffff
41 #endif /* !INADDR_NONE */
42
43
44 /*
45 * Configuration variable structure...
46 */
47
48 typedef enum
49 {
50 CUPSD_VARTYPE_INTEGER, /* Integer option */
51 CUPSD_VARTYPE_TIME, /* Time interval option */
52 CUPSD_VARTYPE_STRING, /* String option */
53 CUPSD_VARTYPE_BOOLEAN, /* Boolean option */
54 CUPSD_VARTYPE_PATHNAME, /* File/directory name option */
55 CUPSD_VARTYPE_PERM /* File/directory permissions */
56 } cupsd_vartype_t;
57
58 typedef struct
59 {
60 const char *name; /* Name of variable */
61 void *ptr; /* Pointer to variable */
62 cupsd_vartype_t type; /* Type (int, string, address) */
63 } cupsd_var_t;
64
65
66 /*
67 * Local globals...
68 */
69
70 static const cupsd_var_t cupsd_vars[] =
71 {
72 { "AutoPurgeJobs", &JobAutoPurge, CUPSD_VARTYPE_BOOLEAN },
73 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
74 { "BrowseDNSSDSubTypes", &DNSSDSubTypes, CUPSD_VARTYPE_STRING },
75 #endif /* HAVE_DNSSD || HAVE_AVAHI */
76 { "BrowseWebIF", &BrowseWebIF, CUPSD_VARTYPE_BOOLEAN },
77 { "Browsing", &Browsing, CUPSD_VARTYPE_BOOLEAN },
78 { "Classification", &Classification, CUPSD_VARTYPE_STRING },
79 { "ClassifyOverride", &ClassifyOverride, CUPSD_VARTYPE_BOOLEAN },
80 { "DefaultLanguage", &DefaultLanguage, CUPSD_VARTYPE_STRING },
81 { "DefaultLeaseDuration", &DefaultLeaseDuration, CUPSD_VARTYPE_TIME },
82 { "DefaultPaperSize", &DefaultPaperSize, CUPSD_VARTYPE_STRING },
83 { "DefaultPolicy", &DefaultPolicy, CUPSD_VARTYPE_STRING },
84 { "DefaultShared", &DefaultShared, CUPSD_VARTYPE_BOOLEAN },
85 { "DirtyCleanInterval", &DirtyCleanInterval, CUPSD_VARTYPE_TIME },
86 { "ErrorPolicy", &ErrorPolicy, CUPSD_VARTYPE_STRING },
87 { "FilterLimit", &FilterLimit, CUPSD_VARTYPE_INTEGER },
88 { "FilterNice", &FilterNice, CUPSD_VARTYPE_INTEGER },
89 #ifdef HAVE_GSSAPI
90 { "GSSServiceName", &GSSServiceName, CUPSD_VARTYPE_STRING },
91 #endif /* HAVE_GSSAPI */
92 #ifdef HAVE_ONDEMAND
93 { "IdleExitTimeout", &IdleExitTimeout, CUPSD_VARTYPE_TIME },
94 #endif /* HAVE_ONDEMAND */
95 { "JobKillDelay", &JobKillDelay, CUPSD_VARTYPE_TIME },
96 { "JobRetryLimit", &JobRetryLimit, CUPSD_VARTYPE_INTEGER },
97 { "JobRetryInterval", &JobRetryInterval, CUPSD_VARTYPE_TIME },
98 { "KeepAliveTimeout", &KeepAliveTimeout, CUPSD_VARTYPE_TIME },
99 { "KeepAlive", &KeepAlive, CUPSD_VARTYPE_BOOLEAN },
100 #ifdef HAVE_LAUNCHD
101 { "LaunchdTimeout", &IdleExitTimeout, CUPSD_VARTYPE_TIME },
102 #endif /* HAVE_LAUNCHD */
103 { "LimitRequestBody", &MaxRequestSize, CUPSD_VARTYPE_INTEGER },
104 { "ListenBackLog", &ListenBackLog, CUPSD_VARTYPE_INTEGER },
105 { "LogDebugHistory", &LogDebugHistory, CUPSD_VARTYPE_INTEGER },
106 { "MaxActiveJobs", &MaxActiveJobs, CUPSD_VARTYPE_INTEGER },
107 { "MaxClients", &MaxClients, CUPSD_VARTYPE_INTEGER },
108 { "MaxClientsPerHost", &MaxClientsPerHost, CUPSD_VARTYPE_INTEGER },
109 { "MaxCopies", &MaxCopies, CUPSD_VARTYPE_INTEGER },
110 { "MaxEvents", &MaxEvents, CUPSD_VARTYPE_INTEGER },
111 { "MaxHoldTime", &MaxHoldTime, CUPSD_VARTYPE_TIME },
112 { "MaxJobs", &MaxJobs, CUPSD_VARTYPE_INTEGER },
113 { "MaxJobsPerPrinter", &MaxJobsPerPrinter, CUPSD_VARTYPE_INTEGER },
114 { "MaxJobsPerUser", &MaxJobsPerUser, CUPSD_VARTYPE_INTEGER },
115 { "MaxJobTime", &MaxJobTime, CUPSD_VARTYPE_TIME },
116 { "MaxLeaseDuration", &MaxLeaseDuration, CUPSD_VARTYPE_TIME },
117 { "MaxLogSize", &MaxLogSize, CUPSD_VARTYPE_INTEGER },
118 { "MaxRequestSize", &MaxRequestSize, CUPSD_VARTYPE_INTEGER },
119 { "MaxSubscriptions", &MaxSubscriptions, CUPSD_VARTYPE_INTEGER },
120 { "MaxSubscriptionsPerJob", &MaxSubscriptionsPerJob, CUPSD_VARTYPE_INTEGER },
121 { "MaxSubscriptionsPerPrinter",&MaxSubscriptionsPerPrinter, CUPSD_VARTYPE_INTEGER },
122 { "MaxSubscriptionsPerUser", &MaxSubscriptionsPerUser, CUPSD_VARTYPE_INTEGER },
123 { "MultipleOperationTimeout", &MultipleOperationTimeout, CUPSD_VARTYPE_TIME },
124 { "PageLogFormat", &PageLogFormat, CUPSD_VARTYPE_STRING },
125 { "PreserveJobFiles", &JobFiles, CUPSD_VARTYPE_TIME },
126 { "PreserveJobHistory", &JobHistory, CUPSD_VARTYPE_TIME },
127 { "ReloadTimeout", &ReloadTimeout, CUPSD_VARTYPE_TIME },
128 { "RIPCache", &RIPCache, CUPSD_VARTYPE_STRING },
129 { "RootCertDuration", &RootCertDuration, CUPSD_VARTYPE_TIME },
130 { "ServerAdmin", &ServerAdmin, CUPSD_VARTYPE_STRING },
131 { "ServerName", &ServerName, CUPSD_VARTYPE_STRING },
132 { "StrictConformance", &StrictConformance, CUPSD_VARTYPE_BOOLEAN },
133 { "Timeout", &Timeout, CUPSD_VARTYPE_TIME },
134 { "WebInterface", &WebInterface, CUPSD_VARTYPE_BOOLEAN }
135 };
136 static const cupsd_var_t cupsfiles_vars[] =
137 {
138 { "AccessLog", &AccessLog, CUPSD_VARTYPE_STRING },
139 { "CacheDir", &CacheDir, CUPSD_VARTYPE_STRING },
140 { "ConfigFilePerm", &ConfigFilePerm, CUPSD_VARTYPE_PERM },
141 #ifdef HAVE_SSL
142 { "CreateSelfSignedCerts", &CreateSelfSignedCerts, CUPSD_VARTYPE_BOOLEAN },
143 #endif /* HAVE_SSL */
144 { "DataDir", &DataDir, CUPSD_VARTYPE_STRING },
145 { "DocumentRoot", &DocumentRoot, CUPSD_VARTYPE_STRING },
146 { "ErrorLog", &ErrorLog, CUPSD_VARTYPE_STRING },
147 { "FileDevice", &FileDevice, CUPSD_VARTYPE_BOOLEAN },
148 { "FontPath", &FontPath, CUPSD_VARTYPE_STRING },
149 { "LogFilePerm", &LogFilePerm, CUPSD_VARTYPE_PERM },
150 { "LPDConfigFile", &LPDConfigFile, CUPSD_VARTYPE_STRING },
151 { "PageLog", &PageLog, CUPSD_VARTYPE_STRING },
152 { "Printcap", &Printcap, CUPSD_VARTYPE_STRING },
153 { "RemoteRoot", &RemoteRoot, CUPSD_VARTYPE_STRING },
154 { "RequestRoot", &RequestRoot, CUPSD_VARTYPE_STRING },
155 { "ServerBin", &ServerBin, CUPSD_VARTYPE_PATHNAME },
156 #ifdef HAVE_SSL
157 { "ServerKeychain", &ServerKeychain, CUPSD_VARTYPE_PATHNAME },
158 #endif /* HAVE_SSL */
159 { "ServerRoot", &ServerRoot, CUPSD_VARTYPE_PATHNAME },
160 { "SMBConfigFile", &SMBConfigFile, CUPSD_VARTYPE_STRING },
161 { "StateDir", &StateDir, CUPSD_VARTYPE_STRING },
162 { "SyncOnClose", &SyncOnClose, CUPSD_VARTYPE_BOOLEAN },
163 #ifdef HAVE_AUTHORIZATION_H
164 { "SystemGroupAuthKey", &SystemGroupAuthKey, CUPSD_VARTYPE_STRING },
165 #endif /* HAVE_AUTHORIZATION_H */
166 { "TempDir", &TempDir, CUPSD_VARTYPE_PATHNAME }
167 };
168
169 static int default_auth_type = CUPSD_AUTH_AUTO;
170 /* Default AuthType, if not specified */
171
172 static const unsigned ones[4] =
173 {
174 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff
175 };
176 static const unsigned zeros[4] =
177 {
178 0x00000000, 0x00000000, 0x00000000, 0x00000000
179 };
180
181
182 /*
183 * Local functions...
184 */
185
186 static http_addrlist_t *get_address(const char *value, int defport);
187 static int get_addr_and_mask(const char *value, unsigned *ip,
188 unsigned *mask);
189 static void mime_error_cb(void *ctx, const char *message);
190 static int parse_aaa(cupsd_location_t *loc, char *line,
191 char *value, int linenum);
192 static int parse_fatal_errors(const char *s);
193 static int parse_groups(const char *s, int linenum);
194 static int parse_protocols(const char *s);
195 static int parse_variable(const char *filename, int linenum,
196 const char *line, const char *value,
197 size_t num_vars,
198 const cupsd_var_t *vars);
199 static int read_cupsd_conf(cups_file_t *fp);
200 static int read_cups_files_conf(cups_file_t *fp);
201 static int read_location(cups_file_t *fp, char *name, int linenum);
202 static int read_policy(cups_file_t *fp, char *name, int linenum);
203 static void set_policy_defaults(cupsd_policy_t *pol);
204
205
206 /*
207 * 'cupsdAddAlias()' - Add a host alias.
208 */
209
210 void
211 cupsdAddAlias(cups_array_t *aliases, /* I - Array of aliases */
212 const char *name) /* I - Name to add */
213 {
214 cupsd_alias_t *a; /* New alias */
215 size_t namelen; /* Length of name */
216
217
218 namelen = strlen(name);
219
220 if ((a = (cupsd_alias_t *)malloc(sizeof(cupsd_alias_t) + namelen)) == NULL)
221 return;
222
223 a->namelen = namelen;
224 memcpy(a->name, name, namelen + 1); /* OK since a->name is allocated */
225
226 cupsArrayAdd(aliases, a);
227 }
228
229
230 /*
231 * 'cupsdCheckPermissions()' - Fix the mode and ownership of a file or directory.
232 */
233
234 int /* O - 0 on success, -1 on error, 1 on warning */
235 cupsdCheckPermissions(
236 const char *filename, /* I - File/directory name */
237 const char *suffix, /* I - Additional file/directory name */
238 mode_t mode, /* I - Permissions */
239 uid_t user, /* I - Owner */
240 gid_t group, /* I - Group */
241 int is_dir, /* I - 1 = directory, 0 = file */
242 int create_dir) /* I - 1 = create directory, -1 = create w/o logging, 0 = not */
243 {
244 int dir_created = 0; /* Did we create a directory? */
245 char pathname[1024]; /* File name with prefix */
246 struct stat fileinfo; /* Stat buffer */
247 int is_symlink; /* Is "filename" a symlink? */
248
249
250 /*
251 * Prepend the given root to the filename before testing it...
252 */
253
254 if (suffix)
255 {
256 snprintf(pathname, sizeof(pathname), "%s/%s", filename, suffix);
257 filename = pathname;
258 }
259
260 /*
261 * See if we can stat the file/directory...
262 */
263
264 if (lstat(filename, &fileinfo))
265 {
266 if (errno == ENOENT && create_dir)
267 {
268 if (create_dir > 0)
269 cupsdLogMessage(CUPSD_LOG_DEBUG, "Creating missing directory \"%s\"",
270 filename);
271
272 if (mkdir(filename, mode))
273 {
274 if (create_dir > 0)
275 cupsdLogMessage(CUPSD_LOG_ERROR,
276 "Unable to create directory \"%s\" - %s", filename,
277 strerror(errno));
278 else
279 #ifdef HAVE_SYSTEMD_SD_JOURNAL_H
280 sd_journal_print(LOG_ERR, "Unable to create directory \"%s\" - %s", filename, strerror(errno));
281 #else
282 syslog(LOG_ERR, "Unable to create directory \"%s\" - %s", filename, strerror(errno));
283 #endif /* HAVE_SYSTEMD_SD_JOURNAL_H */
284
285 return (-1);
286 }
287
288 dir_created = 1;
289 fileinfo.st_mode = mode | S_IFDIR;
290 }
291 else
292 return (create_dir ? -1 : 1);
293 }
294
295 if ((is_symlink = S_ISLNK(fileinfo.st_mode)) != 0)
296 {
297 if (stat(filename, &fileinfo))
298 {
299 cupsdLogMessage(CUPSD_LOG_ERROR, "\"%s\" is a bad symlink - %s",
300 filename, strerror(errno));
301 return (-1);
302 }
303 }
304
305 /*
306 * Make sure it's a regular file or a directory as needed...
307 */
308
309 if (!dir_created && !is_dir && !S_ISREG(fileinfo.st_mode))
310 {
311 cupsdLogMessage(CUPSD_LOG_ERROR, "\"%s\" is not a regular file.", filename);
312 return (-1);
313 }
314
315 if (!dir_created && is_dir && !S_ISDIR(fileinfo.st_mode))
316 {
317 if (create_dir >= 0)
318 cupsdLogMessage(CUPSD_LOG_ERROR, "\"%s\" is not a directory.", filename);
319 else
320 #ifdef HAVE_SYSTEMD_SD_JOURNAL_H
321 sd_journal_print(LOG_ERR, "\"%s\" is not a directory.", filename);
322 #else
323 syslog(LOG_ERR, "\"%s\" is not a directory.", filename);
324 #endif /* HAVE_SYSTEMD_SD_JOURNAL_H */
325
326 return (-1);
327 }
328
329 /*
330 * If the filename is a symlink, do not change permissions (STR #2937)...
331 */
332
333 if (is_symlink)
334 return (0);
335
336 /*
337 * Fix owner, group, and mode as needed...
338 */
339
340 if (dir_created || fileinfo.st_uid != user || fileinfo.st_gid != group)
341 {
342 if (create_dir >= 0)
343 cupsdLogMessage(CUPSD_LOG_DEBUG, "Repairing ownership of \"%s\"",
344 filename);
345
346 if (chown(filename, user, group) && !getuid())
347 {
348 if (create_dir >= 0)
349 cupsdLogMessage(CUPSD_LOG_ERROR,
350 "Unable to change ownership of \"%s\" - %s", filename,
351 strerror(errno));
352 else
353 #ifdef HAVE_SYSTEMD_SD_JOURNAL_H
354 sd_journal_print(LOG_ERR, "Unable to change ownership of \"%s\" - %s", filename, strerror(errno));
355 #else
356 syslog(LOG_ERR, "Unable to change ownership of \"%s\" - %s", filename, strerror(errno));
357 #endif /* HAVE_SYSTEMD_SD_JOURNAL_H */
358
359 return (1);
360 }
361 }
362
363 if (dir_created || (fileinfo.st_mode & 07777) != mode)
364 {
365 if (create_dir >= 0)
366 cupsdLogMessage(CUPSD_LOG_DEBUG, "Repairing access permissions of \"%s\"",
367 filename);
368
369 if (chmod(filename, mode))
370 {
371 if (create_dir >= 0)
372 cupsdLogMessage(CUPSD_LOG_ERROR,
373 "Unable to change permissions of \"%s\" - %s", filename,
374 strerror(errno));
375 else
376 #ifdef HAVE_SYSTEMD_SD_JOURNAL_H
377 sd_journal_print(LOG_ERR, "Unable to change permissions of \"%s\" - %s", filename, strerror(errno));
378 #else
379 syslog(LOG_ERR, "Unable to change permissions of \"%s\" - %s", filename, strerror(errno));
380 #endif /* HAVE_SYSTEMD_SD_JOURNAL_H */
381
382 return (1);
383 }
384 }
385
386 /*
387 * Everything is OK...
388 */
389
390 return (0);
391 }
392
393
394 /*
395 * 'cupsdDefaultAuthType()' - Get the default AuthType.
396 *
397 * When the default_auth_type is "auto", this function tries to get the GSS
398 * credentials for the server. If that succeeds we use Kerberos authentication,
399 * otherwise we do a fallback to Basic authentication against the local user
400 * accounts.
401 */
402
403 int /* O - Default AuthType value */
404 cupsdDefaultAuthType(void)
405 {
406 #ifdef HAVE_GSSAPI
407 OM_uint32 major_status, /* Major status code */
408 minor_status; /* Minor status code */
409 gss_name_t server_name; /* Server name */
410 gss_buffer_desc token = GSS_C_EMPTY_BUFFER;
411 /* Service name token */
412 char buf[1024]; /* Service name buffer */
413 #endif /* HAVE_GSSAPI */
414
415
416 /*
417 * If we have already determined the correct default AuthType, use it...
418 */
419
420 if (default_auth_type != CUPSD_AUTH_AUTO)
421 return (default_auth_type);
422
423 #ifdef HAVE_GSSAPI
424 # ifdef __APPLE__
425 /*
426 * If the weak-linked GSSAPI/Kerberos library is not present, don't try
427 * to use it...
428 */
429
430 if (&gss_init_sec_context == NULL)
431 return (default_auth_type = CUPSD_AUTH_BASIC);
432 # endif /* __APPLE__ */
433
434 /*
435 * Try to obtain the server's GSS credentials (GSSServiceName@servername). If
436 * that fails we must use Basic...
437 */
438
439 snprintf(buf, sizeof(buf), "%s@%s", GSSServiceName, ServerName);
440
441 token.value = buf;
442 token.length = strlen(buf);
443 server_name = GSS_C_NO_NAME;
444 major_status = gss_import_name(&minor_status, &token,
445 GSS_C_NT_HOSTBASED_SERVICE,
446 &server_name);
447
448 memset(&token, 0, sizeof(token));
449
450 if (GSS_ERROR(major_status))
451 {
452 cupsdLogGSSMessage(CUPSD_LOG_DEBUG, major_status, minor_status,
453 "cupsdDefaultAuthType: gss_import_name(%s) failed", buf);
454 return (default_auth_type = CUPSD_AUTH_BASIC);
455 }
456
457 major_status = gss_display_name(&minor_status, server_name, &token, NULL);
458
459 if (GSS_ERROR(major_status))
460 {
461 cupsdLogGSSMessage(CUPSD_LOG_DEBUG, major_status, minor_status,
462 "cupsdDefaultAuthType: gss_display_name(%s) failed",
463 buf);
464 return (default_auth_type = CUPSD_AUTH_BASIC);
465 }
466
467 cupsdLogMessage(CUPSD_LOG_DEBUG,
468 "cupsdDefaultAuthType: Attempting to acquire Kerberos "
469 "credentials for %s...", (char *)token.value);
470
471 ServerCreds = GSS_C_NO_CREDENTIAL;
472 major_status = gss_acquire_cred(&minor_status, server_name, GSS_C_INDEFINITE,
473 GSS_C_NO_OID_SET, GSS_C_ACCEPT,
474 &ServerCreds, NULL, NULL);
475 if (GSS_ERROR(major_status))
476 {
477 cupsdLogGSSMessage(CUPSD_LOG_DEBUG, major_status, minor_status,
478 "cupsdDefaultAuthType: gss_acquire_cred(%s) failed",
479 (char *)token.value);
480 gss_release_name(&minor_status, &server_name);
481 gss_release_buffer(&minor_status, &token);
482 return (default_auth_type = CUPSD_AUTH_BASIC);
483 }
484
485 cupsdLogMessage(CUPSD_LOG_DEBUG,
486 "cupsdDefaultAuthType: Kerberos credentials acquired "
487 "successfully for %s.", (char *)token.value);
488
489 gss_release_name(&minor_status, &server_name);
490 gss_release_buffer(&minor_status, &token);
491
492 HaveServerCreds = 1;
493
494 return (default_auth_type = CUPSD_AUTH_NEGOTIATE);
495
496 #else
497 /*
498 * No Kerberos support compiled in so just use Basic all the time...
499 */
500
501 return (default_auth_type = CUPSD_AUTH_BASIC);
502 #endif /* HAVE_GSSAPI */
503 }
504
505
506 /*
507 * 'cupsdFreeAliases()' - Free all of the alias entries.
508 */
509
510 void
511 cupsdFreeAliases(cups_array_t *aliases) /* I - Array of aliases */
512 {
513 cupsd_alias_t *a; /* Current alias */
514
515
516 for (a = (cupsd_alias_t *)cupsArrayFirst(aliases);
517 a;
518 a = (cupsd_alias_t *)cupsArrayNext(aliases))
519 free(a);
520
521 cupsArrayDelete(aliases);
522 }
523
524
525 /*
526 * 'cupsdReadConfiguration()' - Read the cupsd.conf file.
527 */
528
529 int /* O - 1 on success, 0 otherwise */
530 cupsdReadConfiguration(void)
531 {
532 int i; /* Looping var */
533 cups_file_t *fp; /* Configuration file */
534 int status; /* Return status */
535 char temp[1024], /* Temporary buffer */
536 mimedir[1024], /* MIME directory */
537 *slash; /* Directory separator */
538 cups_lang_t *language; /* Language */
539 struct passwd *user; /* Default user */
540 struct group *group; /* Default group */
541 char *old_serverroot, /* Old ServerRoot */
542 *old_requestroot; /* Old RequestRoot */
543 int old_remote_port; /* Old RemotePort */
544 const char *tmpdir; /* TMPDIR environment variable */
545 struct stat tmpinfo; /* Temporary directory info */
546 cupsd_policy_t *p; /* Policy */
547
548
549 /*
550 * Save the old root paths...
551 */
552
553 old_serverroot = NULL;
554 cupsdSetString(&old_serverroot, ServerRoot);
555 old_requestroot = NULL;
556 cupsdSetString(&old_requestroot, RequestRoot);
557
558 /*
559 * Reset the server configuration data...
560 */
561
562 cupsdDeleteAllLocations();
563
564 cupsdDeleteAllListeners();
565
566 old_remote_port = RemotePort;
567 RemotePort = 0;
568
569 /*
570 * String options...
571 */
572
573 cupsdFreeAliases(ServerAlias);
574 ServerAlias = NULL;
575
576 cupsdClearString(&ServerName);
577 cupsdClearString(&ServerAdmin);
578 cupsdSetString(&ServerBin, CUPS_SERVERBIN);
579 cupsdSetString(&RequestRoot, CUPS_REQUESTS);
580 cupsdSetString(&CacheDir, CUPS_CACHEDIR);
581 cupsdSetString(&DataDir, CUPS_DATADIR);
582 cupsdSetString(&DocumentRoot, CUPS_DOCROOT);
583 cupsdSetString(&AccessLog, CUPS_LOGDIR "/access_log");
584 cupsdClearString(&ErrorLog);
585 cupsdSetString(&PageLog, CUPS_LOGDIR "/page_log");
586 cupsdSetString(&PageLogFormat,
587 "%p %u %j %T %P %C %{job-billing} "
588 "%{job-originating-host-name} %{job-name} %{media} %{sides}");
589 cupsdSetString(&Printcap, CUPS_DEFAULT_PRINTCAP);
590 cupsdSetString(&FontPath, CUPS_FONTPATH);
591 cupsdSetString(&RemoteRoot, "remroot");
592 cupsdSetStringf(&ServerHeader, "CUPS/%d.%d IPP/2.1", CUPS_VERSION_MAJOR,
593 CUPS_VERSION_MINOR);
594 cupsdSetString(&StateDir, CUPS_STATEDIR);
595
596 if (!strcmp(CUPS_DEFAULT_PRINTCAP, "/etc/printers.conf"))
597 PrintcapFormat = PRINTCAP_SOLARIS;
598 else if (!strcmp(CUPS_DEFAULT_PRINTCAP,
599 "/Library/Preferences/org.cups.printers.plist"))
600 PrintcapFormat = PRINTCAP_PLIST;
601 else
602 PrintcapFormat = PRINTCAP_BSD;
603
604 strlcpy(temp, ConfigurationFile, sizeof(temp));
605 if ((slash = strrchr(temp, '/')) != NULL)
606 *slash = '\0';
607
608 cupsdSetString(&ServerRoot, temp);
609
610 cupsdClearString(&Classification);
611 ClassifyOverride = 0;
612
613 #ifdef HAVE_SSL
614 # ifdef HAVE_GNUTLS
615 cupsdSetString(&ServerKeychain, "ssl");
616 # else
617 cupsdSetString(&ServerKeychain, "/Library/Keychains/System.keychain");
618 # endif /* HAVE_GNUTLS */
619
620 _httpTLSSetOptions(0);
621 #endif /* HAVE_SSL */
622
623 language = cupsLangDefault();
624
625 if (!strcmp(language->language, "C") || !strcmp(language->language, "POSIX"))
626 cupsdSetString(&DefaultLanguage, "en");
627 else
628 cupsdSetString(&DefaultLanguage, language->language);
629
630 cupsdClearString(&DefaultPaperSize);
631
632 cupsdSetString(&RIPCache, "128m");
633
634 cupsdSetString(&TempDir, NULL);
635
636 #ifdef HAVE_GSSAPI
637 cupsdSetString(&GSSServiceName, CUPS_DEFAULT_GSSSERVICENAME);
638
639 if (HaveServerCreds)
640 {
641 OM_uint32 minor_status; /* Minor status code */
642
643 gss_release_cred(&minor_status, &ServerCreds);
644
645 HaveServerCreds = 0;
646 }
647
648 ServerCreds = GSS_C_NO_CREDENTIAL;
649 #endif /* HAVE_GSSAPI */
650
651 /*
652 * Find the default user...
653 */
654
655 if ((user = getpwnam(CUPS_DEFAULT_USER)) != NULL)
656 User = user->pw_uid;
657 else
658 {
659 /*
660 * Use the (historical) NFS nobody user ID (-2 as a 16-bit twos-
661 * complement number...)
662 */
663
664 User = 65534;
665 }
666
667 endpwent();
668
669 /*
670 * Find the default group...
671 */
672
673 group = getgrnam(CUPS_DEFAULT_GROUP);
674 endgrent();
675
676 if (group)
677 Group = group->gr_gid;
678 else
679 {
680 /*
681 * Fallback to group "nobody"...
682 */
683
684 group = getgrnam("nobody");
685 endgrent();
686
687 if (group)
688 Group = group->gr_gid;
689 else
690 {
691 /*
692 * Use the (historical) NFS nobody group ID (-2 as a 16-bit twos-
693 * complement number...)
694 */
695
696 Group = 65534;
697 }
698 }
699
700 /*
701 * Numeric options...
702 */
703
704 AccessLogLevel = CUPSD_ACCESSLOG_ACTIONS;
705 ConfigFilePerm = CUPS_DEFAULT_CONFIG_FILE_PERM;
706 FatalErrors = parse_fatal_errors(CUPS_DEFAULT_FATAL_ERRORS);
707 default_auth_type = CUPSD_AUTH_BASIC;
708 #ifdef HAVE_SSL
709 CreateSelfSignedCerts = TRUE;
710 DefaultEncryption = HTTP_ENCRYPT_REQUIRED;
711 #endif /* HAVE_SSL */
712 DirtyCleanInterval = DEFAULT_KEEPALIVE;
713 JobKillDelay = DEFAULT_TIMEOUT;
714 JobRetryLimit = 5;
715 JobRetryInterval = 300;
716 FileDevice = FALSE;
717 FilterLevel = 0;
718 FilterLimit = 0;
719 FilterNice = 0;
720 HostNameLookups = FALSE;
721 KeepAlive = TRUE;
722 KeepAliveTimeout = DEFAULT_KEEPALIVE;
723 ListenBackLog = SOMAXCONN;
724 LogDebugHistory = 200;
725 LogFilePerm = CUPS_DEFAULT_LOG_FILE_PERM;
726 LogLevel = CUPSD_LOG_WARN;
727 LogTimeFormat = CUPSD_TIME_STANDARD;
728 MaxClients = 100;
729 MaxClientsPerHost = 0;
730 MaxLogSize = 1024 * 1024;
731 MaxRequestSize = 0;
732 MultipleOperationTimeout = DEFAULT_TIMEOUT;
733 NumSystemGroups = 0;
734 ReloadTimeout = DEFAULT_KEEPALIVE;
735 RootCertDuration = 300;
736 Sandboxing = CUPSD_SANDBOXING_STRICT;
737 StrictConformance = FALSE;
738 SyncOnClose = FALSE;
739 Timeout = DEFAULT_TIMEOUT;
740 WebInterface = CUPS_DEFAULT_WEBIF;
741
742 BrowseLocalProtocols = parse_protocols(CUPS_DEFAULT_BROWSE_LOCAL_PROTOCOLS);
743 BrowseWebIF = FALSE;
744 Browsing = CUPS_DEFAULT_BROWSING;
745 DefaultShared = CUPS_DEFAULT_DEFAULT_SHARED;
746
747 #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
748 cupsdSetString(&DNSSDSubTypes, "_cups,_print");
749 #endif /* HAVE_DNSSD || HAVE_AVAHI */
750
751 cupsdSetString(&LPDConfigFile, CUPS_DEFAULT_LPD_CONFIG_FILE);
752 cupsdSetString(&SMBConfigFile, CUPS_DEFAULT_SMB_CONFIG_FILE);
753
754 cupsdSetString(&ErrorPolicy, "stop-printer");
755
756 JobHistory = DEFAULT_HISTORY;
757 JobFiles = DEFAULT_FILES;
758 JobAutoPurge = 0;
759 MaxHoldTime = 0;
760 MaxJobs = 500;
761 MaxActiveJobs = 0;
762 MaxJobsPerUser = 0;
763 MaxJobsPerPrinter = 0;
764 MaxJobTime = 3 * 60 * 60; /* 3 hours */
765 MaxCopies = CUPS_DEFAULT_MAX_COPIES;
766
767 cupsdDeleteAllPolicies();
768 cupsdClearString(&DefaultPolicy);
769
770 #ifdef HAVE_AUTHORIZATION_H
771 cupsdSetString(&SystemGroupAuthKey, CUPS_DEFAULT_SYSTEM_AUTHKEY);
772 #endif /* HAVE_AUTHORIZATION_H */
773
774 MaxSubscriptions = 100;
775 MaxSubscriptionsPerJob = 0;
776 MaxSubscriptionsPerPrinter = 0;
777 MaxSubscriptionsPerUser = 0;
778 DefaultLeaseDuration = 86400;
779 MaxLeaseDuration = 0;
780
781 #ifdef HAVE_ONDEMAND
782 IdleExitTimeout = 60;
783 #endif /* HAVE_ONDEMAND */
784
785 /*
786 * Setup environment variables...
787 */
788
789 cupsdInitEnv();
790
791 /*
792 * Read the cups-files.conf file...
793 */
794
795 if ((fp = cupsFileOpen(CupsFilesFile, "r")) != NULL)
796 {
797 status = read_cups_files_conf(fp);
798
799 cupsFileClose(fp);
800
801 if (!status)
802 {
803 if (TestConfigFile)
804 printf("\"%s\" contains errors.\n", CupsFilesFile);
805 else
806 #ifdef HAVE_SYSTEMD_SD_JOURNAL_H
807 sd_journal_print(LOG_ERR, "Unable to read \"%s\" due to errors.", CupsFilesFile);
808 #else
809 syslog(LOG_LPR, "Unable to read \"%s\" due to errors.", CupsFilesFile);
810 #endif /* HAVE_SYSTEMD_SD_JOURNAL_H */
811
812 return (0);
813 }
814 }
815 else if (errno == ENOENT)
816 cupsdLogMessage(CUPSD_LOG_INFO, "No %s, using defaults.", CupsFilesFile);
817 else
818 {
819 #ifdef HAVE_SYSTEMD_SD_JOURNAL_H
820 sd_journal_print(LOG_ERR, "Unable to open \"%s\" - %s", CupsFilesFile, strerror(errno));
821 #else
822 syslog(LOG_LPR, "Unable to open \"%s\" - %s", CupsFilesFile, strerror(errno));
823 #endif /* HAVE_SYSTEMD_SD_JOURNAL_H */
824
825 return (0);
826 }
827
828 if (!ErrorLog)
829 cupsdSetString(&ErrorLog, CUPS_LOGDIR "/error_log");
830
831 /*
832 * Read the cupsd.conf file...
833 */
834
835 if ((fp = cupsFileOpen(ConfigurationFile, "r")) == NULL)
836 {
837 #ifdef HAVE_SYSTEMD_SD_JOURNAL_H
838 sd_journal_print(LOG_ERR, "Unable to open \"%s\" - %s", ConfigurationFile, strerror(errno));
839 #else
840 syslog(LOG_LPR, "Unable to open \"%s\" - %s", ConfigurationFile, strerror(errno));
841 #endif /* HAVE_SYSTEMD_SD_JOURNAL_H */
842
843 return (0);
844 }
845
846 status = read_cupsd_conf(fp);
847
848 cupsFileClose(fp);
849
850 if (!status)
851 {
852 if (TestConfigFile)
853 printf("\"%s\" contains errors.\n", ConfigurationFile);
854 else
855 #ifdef HAVE_SYSTEMD_SD_JOURNAL_H
856 sd_journal_print(LOG_ERR, "Unable to read \"%s\" due to errors.", ConfigurationFile);
857 #else
858 syslog(LOG_LPR, "Unable to read \"%s\" due to errors.", ConfigurationFile);
859 #endif /* HAVE_SYSTEMD_SD_JOURNAL_H */
860
861 return (0);
862 }
863
864 RunUser = getuid();
865
866 cupsdLogMessage(CUPSD_LOG_INFO, "Remote access is %s.",
867 RemotePort ? "enabled" : "disabled");
868
869 if (!RemotePort)
870 BrowseLocalProtocols = 0; /* Disable sharing - no remote access */
871
872 /*
873 * See if the ServerName is an IP address...
874 */
875
876 if (ServerName)
877 {
878 if (!ServerAlias)
879 ServerAlias = cupsArrayNew(NULL, NULL);
880
881 cupsdAddAlias(ServerAlias, ServerName);
882 cupsdLogMessage(CUPSD_LOG_DEBUG, "Added auto ServerAlias %s", ServerName);
883 }
884 else
885 {
886 if (gethostname(temp, sizeof(temp)))
887 {
888 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to get hostname: %s",
889 strerror(errno));
890 strlcpy(temp, "localhost", sizeof(temp));
891 }
892
893 cupsdSetString(&ServerName, temp);
894
895 if (!ServerAlias)
896 ServerAlias = cupsArrayNew(NULL, NULL);
897
898 cupsdAddAlias(ServerAlias, temp);
899 cupsdLogMessage(CUPSD_LOG_DEBUG, "Added auto ServerAlias %s", temp);
900
901 if (HostNameLookups || RemotePort)
902 {
903 struct hostent *host; /* Host entry to get FQDN */
904
905 if ((host = gethostbyname(temp)) != NULL)
906 {
907 if (_cups_strcasecmp(temp, host->h_name))
908 {
909 cupsdSetString(&ServerName, host->h_name);
910 cupsdAddAlias(ServerAlias, host->h_name);
911 cupsdLogMessage(CUPSD_LOG_DEBUG, "Added auto ServerAlias %s",
912 host->h_name);
913 }
914
915 if (host->h_aliases)
916 {
917 for (i = 0; host->h_aliases[i]; i ++)
918 if (_cups_strcasecmp(temp, host->h_aliases[i]))
919 {
920 cupsdAddAlias(ServerAlias, host->h_aliases[i]);
921 cupsdLogMessage(CUPSD_LOG_DEBUG, "Added auto ServerAlias %s",
922 host->h_aliases[i]);
923 }
924 }
925 }
926 }
927
928 /*
929 * Make sure we have the base hostname added as an alias, too!
930 */
931
932 if ((slash = strchr(temp, '.')) != NULL)
933 {
934 *slash = '\0';
935 cupsdAddAlias(ServerAlias, temp);
936 cupsdLogMessage(CUPSD_LOG_DEBUG, "Added auto ServerAlias %s", temp);
937 }
938 }
939
940 for (slash = ServerName; isdigit(*slash & 255) || *slash == '.'; slash ++);
941
942 ServerNameIsIP = !*slash;
943
944 /*
945 * Make sure ServerAdmin is initialized...
946 */
947
948 if (!ServerAdmin)
949 cupsdSetStringf(&ServerAdmin, "root@%s", ServerName);
950
951 /*
952 * Use the default system group if none was supplied in cupsd.conf...
953 */
954
955 if (NumSystemGroups == 0)
956 {
957 if (!parse_groups(CUPS_DEFAULT_SYSTEM_GROUPS, 0))
958 {
959 /*
960 * Find the group associated with GID 0...
961 */
962
963 group = getgrgid(0);
964 endgrent();
965
966 if (group != NULL)
967 cupsdSetString(&SystemGroups[0], group->gr_name);
968 else
969 cupsdSetString(&SystemGroups[0], "unknown");
970
971 SystemGroupIDs[0] = 0;
972 NumSystemGroups = 1;
973 }
974 }
975
976 /*
977 * Make sure ConfigFilePerm and LogFilePerm have sane values...
978 */
979
980 ConfigFilePerm &= 0664;
981 LogFilePerm &= 0664;
982
983 /*
984 * Open the system log for cupsd if necessary...
985 */
986
987 if (!LogStderr)
988 {
989 if (!strcmp(AccessLog, "stderr"))
990 cupsdSetString(&AccessLog, "syslog");
991
992 if (!strcmp(ErrorLog, "stderr"))
993 cupsdSetString(&ErrorLog, "syslog");
994
995 if (!strcmp(PageLog, "stderr"))
996 cupsdSetString(&PageLog, "syslog");
997 }
998
999 #if defined(HAVE_VSYSLOG) && !defined(HAVE_ASL_H) && !defined(HAVE_SYSTEMD_SD_JOURNAL_H)
1000 if (!strcmp(AccessLog, "syslog") ||
1001 !strcmp(ErrorLog, "syslog") ||
1002 !strcmp(PageLog, "syslog"))
1003 openlog("cupsd", LOG_PID | LOG_NOWAIT | LOG_NDELAY, LOG_LPR);
1004 #endif /* HAVE_VSYSLOG && !HAVE_ASL_H && !HAVE_SYSTEMD_SD_JOURNAL_H */
1005
1006 /*
1007 * Log the configuration file that was used...
1008 */
1009
1010 cupsdLogMessage(CUPSD_LOG_INFO, "Loaded configuration file \"%s\"",
1011 ConfigurationFile);
1012
1013 /*
1014 * Validate the Group and SystemGroup settings - they cannot be the same,
1015 * otherwise the CGI programs will be able to authenticate as root without
1016 * a password!
1017 */
1018
1019 if (!RunUser)
1020 {
1021 for (i = 0; i < NumSystemGroups; i ++)
1022 if (Group == SystemGroupIDs[i])
1023 break;
1024
1025 if (i < NumSystemGroups)
1026 {
1027 /*
1028 * Log the error and reset the group to a safe value...
1029 */
1030
1031 cupsdLogMessage(CUPSD_LOG_ERROR,
1032 "Group and SystemGroup cannot use the same groups.");
1033 if (FatalErrors & (CUPSD_FATAL_CONFIG | CUPSD_FATAL_PERMISSIONS))
1034 return (0);
1035
1036 cupsdLogMessage(CUPSD_LOG_INFO, "Resetting Group to \"nobody\"...");
1037
1038 group = getgrnam("nobody");
1039 endgrent();
1040
1041 if (group != NULL)
1042 Group = group->gr_gid;
1043 else
1044 {
1045 /*
1046 * Use the (historical) NFS nobody group ID (-2 as a 16-bit twos-
1047 * complement number...)
1048 */
1049
1050 Group = 65534;
1051 }
1052 }
1053 }
1054
1055 /*
1056 * Check that we have at least one listen/port line; if not, report this
1057 * as an error and exit!
1058 */
1059
1060 if (cupsArrayCount(Listeners) == 0)
1061 {
1062 /*
1063 * No listeners!
1064 */
1065
1066 cupsdLogMessage(CUPSD_LOG_EMERG,
1067 "No valid Listen or Port lines were found in the "
1068 "configuration file.");
1069
1070 /*
1071 * Commit suicide...
1072 */
1073
1074 cupsdEndProcess(getpid(), 0);
1075 }
1076
1077 /*
1078 * Set the default locale using the language and charset...
1079 */
1080
1081 cupsdSetStringf(&DefaultLocale, "%s.UTF-8", DefaultLanguage);
1082
1083 /*
1084 * Update all relative filenames to include the full path from ServerRoot...
1085 */
1086
1087 if (DocumentRoot[0] != '/')
1088 cupsdSetStringf(&DocumentRoot, "%s/%s", ServerRoot, DocumentRoot);
1089
1090 if (RequestRoot[0] != '/')
1091 cupsdSetStringf(&RequestRoot, "%s/%s", ServerRoot, RequestRoot);
1092
1093 if (ServerBin[0] != '/')
1094 cupsdSetStringf(&ServerBin, "%s/%s", ServerRoot, ServerBin);
1095
1096 if (StateDir[0] != '/')
1097 cupsdSetStringf(&StateDir, "%s/%s", ServerRoot, StateDir);
1098
1099 if (CacheDir[0] != '/')
1100 cupsdSetStringf(&CacheDir, "%s/%s", ServerRoot, CacheDir);
1101
1102 #ifdef HAVE_SSL
1103 if (!_cups_strcasecmp(ServerKeychain, "internal"))
1104 cupsdClearString(&ServerKeychain);
1105 else if (ServerKeychain[0] != '/')
1106 cupsdSetStringf(&ServerKeychain, "%s/%s", ServerRoot, ServerKeychain);
1107
1108 cupsdLogMessage(CUPSD_LOG_DEBUG, "Using keychain \"%s\" for server name \"%s\".", ServerKeychain ? ServerKeychain : "internal", ServerName);
1109 if (!CreateSelfSignedCerts)
1110 cupsdLogMessage(CUPSD_LOG_DEBUG, "Self-signed TLS certificate generation is disabled.");
1111 cupsSetServerCredentials(ServerKeychain, ServerName, CreateSelfSignedCerts);
1112 #endif /* HAVE_SSL */
1113
1114 /*
1115 * Make sure that directories and config files are owned and
1116 * writable by the user and group in the cupsd.conf file...
1117 */
1118
1119 snprintf(temp, sizeof(temp), "%s/rss", CacheDir);
1120
1121 if ((cupsdCheckPermissions(RequestRoot, NULL, 0710, RunUser,
1122 Group, 1, 1) < 0 ||
1123 cupsdCheckPermissions(CacheDir, NULL, 0770, RunUser,
1124 Group, 1, 1) < 0 ||
1125 cupsdCheckPermissions(temp, NULL, 0775, RunUser,
1126 Group, 1, 1) < 0 ||
1127 cupsdCheckPermissions(StateDir, NULL, 0755, RunUser,
1128 Group, 1, 1) < 0 ||
1129 cupsdCheckPermissions(StateDir, "certs", RunUser ? 0711 : 0511, User,
1130 SystemGroupIDs[0], 1, 1) < 0 ||
1131 cupsdCheckPermissions(ServerRoot, NULL, 0755, RunUser,
1132 Group, 1, 0) < 0 ||
1133 cupsdCheckPermissions(ServerRoot, "ppd", 0755, RunUser,
1134 Group, 1, 1) < 0 ||
1135 cupsdCheckPermissions(ServerRoot, "ssl", 0700, RunUser,
1136 Group, 1, 0) < 0 ||
1137 cupsdCheckPermissions(ConfigurationFile, NULL, ConfigFilePerm, RunUser,
1138 Group, 0, 0) < 0 ||
1139 cupsdCheckPermissions(CupsFilesFile, NULL, ConfigFilePerm, RunUser,
1140 Group, 0, 0) < 0 ||
1141 cupsdCheckPermissions(ServerRoot, "classes.conf", 0600, RunUser,
1142 Group, 0, 0) < 0 ||
1143 cupsdCheckPermissions(ServerRoot, "printers.conf", 0600, RunUser,
1144 Group, 0, 0) < 0 ||
1145 cupsdCheckPermissions(ServerRoot, "passwd.md5", 0600, User,
1146 Group, 0, 0) < 0) &&
1147 (FatalErrors & CUPSD_FATAL_PERMISSIONS))
1148 return (0);
1149
1150 /*
1151 * Update TempDir to the default if it hasn't been set already...
1152 */
1153
1154 #ifdef __APPLE__
1155 if (TempDir && !RunUser &&
1156 (!strncmp(TempDir, "/private/tmp", 12) || !strncmp(TempDir, "/tmp", 4)))
1157 {
1158 cupsdLogMessage(CUPSD_LOG_ERROR, "Cannot use %s for TempDir.", TempDir);
1159 cupsdClearString(&TempDir);
1160 }
1161 #endif /* __APPLE__ */
1162
1163 if (!TempDir)
1164 {
1165 #ifdef __APPLE__
1166 if ((tmpdir = getenv("TMPDIR")) != NULL &&
1167 strncmp(tmpdir, "/private/tmp", 12) && strncmp(tmpdir, "/tmp", 4))
1168 #else
1169 if ((tmpdir = getenv("TMPDIR")) != NULL)
1170 #endif /* __APPLE__ */
1171 {
1172 /*
1173 * TMPDIR is defined, see if it is OK for us to use...
1174 */
1175
1176 if (stat(tmpdir, &tmpinfo))
1177 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to access TMPDIR (%s): %s",
1178 tmpdir, strerror(errno));
1179 else if (!S_ISDIR(tmpinfo.st_mode))
1180 cupsdLogMessage(CUPSD_LOG_ERROR, "TMPDIR (%s) is not a directory.",
1181 tmpdir);
1182 else if ((tmpinfo.st_uid != User || !(tmpinfo.st_mode & S_IWUSR)) &&
1183 (tmpinfo.st_gid != Group || !(tmpinfo.st_mode & S_IWGRP)) &&
1184 !(tmpinfo.st_mode & S_IWOTH))
1185 cupsdLogMessage(CUPSD_LOG_ERROR,
1186 "TMPDIR (%s) has the wrong permissions.", tmpdir);
1187 else
1188 cupsdSetString(&TempDir, tmpdir);
1189 }
1190 }
1191
1192 if (!TempDir)
1193 {
1194 cupsdLogMessage(CUPSD_LOG_INFO, "Using default TempDir of %s/tmp...",
1195 RequestRoot);
1196 cupsdSetStringf(&TempDir, "%s/tmp", RequestRoot);
1197 }
1198
1199 setenv("TMPDIR", TempDir, 1);
1200
1201 /*
1202 * Make sure the temporary directory has the right permissions...
1203 */
1204
1205 if (!strncmp(TempDir, RequestRoot, strlen(RequestRoot)) ||
1206 access(TempDir, 0))
1207 {
1208 /*
1209 * Update ownership and permissions if the CUPS temp directory
1210 * is under the spool directory or does not exist...
1211 */
1212
1213 if (cupsdCheckPermissions(TempDir, NULL, 01770, RunUser, Group, 1, 1) < 0 &&
1214 (FatalErrors & CUPSD_FATAL_PERMISSIONS))
1215 return (0);
1216 }
1217
1218 /*
1219 * Update environment variables...
1220 */
1221
1222 cupsdUpdateEnv();
1223
1224 /*
1225 * Validate the default error policy...
1226 */
1227
1228 if (strcmp(ErrorPolicy, "retry-current-job") &&
1229 strcmp(ErrorPolicy, "abort-job") &&
1230 strcmp(ErrorPolicy, "retry-job") &&
1231 strcmp(ErrorPolicy, "stop-printer"))
1232 {
1233 cupsdLogMessage(CUPSD_LOG_ALERT, "Invalid ErrorPolicy \"%s\", resetting to \"stop-printer\".", ErrorPolicy);
1234 cupsdSetString(&ErrorPolicy, "stop-printer");
1235 }
1236
1237 /*
1238 * Update default paper size setting as needed...
1239 */
1240
1241 if (!DefaultPaperSize)
1242 {
1243 #ifdef HAVE_LIBPAPER
1244 char *paper_result; /* Paper size name from libpaper */
1245
1246 if ((paper_result = systempapername()) != NULL)
1247 cupsdSetString(&DefaultPaperSize, paper_result);
1248 else
1249 #endif /* HAVE_LIBPAPER */
1250 if (!DefaultLanguage ||
1251 !_cups_strcasecmp(DefaultLanguage, "C") ||
1252 !_cups_strcasecmp(DefaultLanguage, "POSIX") ||
1253 !_cups_strcasecmp(DefaultLanguage, "en") ||
1254 !_cups_strncasecmp(DefaultLanguage, "en.", 3) ||
1255 !_cups_strncasecmp(DefaultLanguage, "en_US", 5) ||
1256 !_cups_strncasecmp(DefaultLanguage, "en_CA", 5) ||
1257 !_cups_strncasecmp(DefaultLanguage, "fr_CA", 5))
1258 {
1259 /*
1260 * These are the only locales that will default to "letter" size...
1261 */
1262
1263 cupsdSetString(&DefaultPaperSize, "Letter");
1264 }
1265 else
1266 cupsdSetString(&DefaultPaperSize, "A4");
1267 }
1268
1269 /*
1270 * Update classification setting as needed...
1271 */
1272
1273 if (Classification && !_cups_strcasecmp(Classification, "none"))
1274 cupsdClearString(&Classification);
1275
1276 if (Classification)
1277 cupsdLogMessage(CUPSD_LOG_INFO, "Security set to \"%s\"", Classification);
1278
1279 /*
1280 * Check the MaxClients setting, and then allocate memory for it...
1281 */
1282
1283 if (MaxClients > (MaxFDs / 3) || MaxClients <= 0)
1284 {
1285 if (MaxClients > 0)
1286 cupsdLogMessage(CUPSD_LOG_INFO,
1287 "MaxClients limited to 1/3 (%d) of the file descriptor "
1288 "limit (%d)...",
1289 MaxFDs / 3, MaxFDs);
1290
1291 MaxClients = MaxFDs / 3;
1292 }
1293
1294 cupsdLogMessage(CUPSD_LOG_INFO, "Configured for up to %d clients.",
1295 MaxClients);
1296
1297 /*
1298 * Check the MaxActiveJobs setting; limit to 1/3 the available
1299 * file descriptors, since we need a pipe for each job...
1300 */
1301
1302 if (MaxActiveJobs > (MaxFDs / 3))
1303 MaxActiveJobs = MaxFDs / 3;
1304
1305 /*
1306 * Update the MaxClientsPerHost value, as needed...
1307 */
1308
1309 if (MaxClientsPerHost <= 0)
1310 MaxClientsPerHost = MaxClients;
1311
1312 if (MaxClientsPerHost > MaxClients)
1313 MaxClientsPerHost = MaxClients;
1314
1315 cupsdLogMessage(CUPSD_LOG_INFO,
1316 "Allowing up to %d client connections per host.",
1317 MaxClientsPerHost);
1318
1319 /*
1320 * Update the default policy, as needed...
1321 */
1322
1323 if (DefaultPolicy)
1324 DefaultPolicyPtr = cupsdFindPolicy(DefaultPolicy);
1325 else
1326 DefaultPolicyPtr = NULL;
1327
1328 if (!DefaultPolicyPtr)
1329 {
1330 cupsd_location_t *po; /* New policy operation */
1331
1332
1333 if (DefaultPolicy)
1334 cupsdLogMessage(CUPSD_LOG_ERROR, "Default policy \"%s\" not found.",
1335 DefaultPolicy);
1336
1337 cupsdSetString(&DefaultPolicy, "default");
1338
1339 if ((DefaultPolicyPtr = cupsdFindPolicy("default")) != NULL)
1340 cupsdLogMessage(CUPSD_LOG_INFO,
1341 "Using policy \"default\" as the default.");
1342 else
1343 {
1344 cupsdLogMessage(CUPSD_LOG_INFO,
1345 "Creating CUPS default administrative policy:");
1346
1347 DefaultPolicyPtr = p = cupsdAddPolicy("default");
1348
1349 cupsdLogMessage(CUPSD_LOG_INFO, "<Policy default>");
1350
1351 cupsdLogMessage(CUPSD_LOG_INFO, "JobPrivateAccess default");
1352 cupsdAddString(&(p->job_access), "@OWNER");
1353 cupsdAddString(&(p->job_access), "@SYSTEM");
1354
1355 cupsdLogMessage(CUPSD_LOG_INFO, "JobPrivateValues default");
1356 cupsdAddString(&(p->job_attrs), "job-name");
1357 cupsdAddString(&(p->job_attrs), "job-originating-host-name");
1358 cupsdAddString(&(p->job_attrs), "job-originating-user-name");
1359 cupsdAddString(&(p->job_attrs), "phone");
1360
1361 cupsdLogMessage(CUPSD_LOG_INFO, "SubscriptionPrivateAccess default");
1362 cupsdAddString(&(p->sub_access), "@OWNER");
1363 cupsdAddString(&(p->sub_access), "@SYSTEM");
1364
1365 cupsdLogMessage(CUPSD_LOG_INFO, "SubscriptionPrivateValues default");
1366 cupsdAddString(&(p->job_attrs), "notify-events");
1367 cupsdAddString(&(p->job_attrs), "notify-pull-method");
1368 cupsdAddString(&(p->job_attrs), "notify-recipient-uri");
1369 cupsdAddString(&(p->job_attrs), "notify-subscriber-user-name");
1370 cupsdAddString(&(p->job_attrs), "notify-user-data");
1371
1372 cupsdLogMessage(CUPSD_LOG_INFO,
1373 "<Limit Create-Job Print-Job Print-URI Validate-Job>");
1374 cupsdLogMessage(CUPSD_LOG_INFO, "Order Deny,Allow");
1375
1376 po = cupsdAddPolicyOp(p, NULL, IPP_CREATE_JOB);
1377 po->order_type = CUPSD_AUTH_ALLOW;
1378
1379 cupsdAddPolicyOp(p, po, IPP_PRINT_JOB);
1380 cupsdAddPolicyOp(p, po, IPP_PRINT_URI);
1381 cupsdAddPolicyOp(p, po, IPP_VALIDATE_JOB);
1382
1383 cupsdLogMessage(CUPSD_LOG_INFO, "</Limit>");
1384
1385 cupsdLogMessage(CUPSD_LOG_INFO,
1386 "<Limit Send-Document Send-URI Cancel-Job Hold-Job "
1387 "Release-Job Restart-Job Purge-Jobs "
1388 "Set-Job-Attributes Create-Job-Subscription "
1389 "Renew-Subscription Cancel-Subscription "
1390 "Get-Notifications Reprocess-Job Cancel-Current-Job "
1391 "Suspend-Current-Job Resume-Job "
1392 "Cancel-My-Jobs Close-Job CUPS-Move-Job "
1393 "CUPS-Authenticate-Job CUPS-Get-Document>");
1394 cupsdLogMessage(CUPSD_LOG_INFO, "Order Deny,Allow");
1395
1396 po = cupsdAddPolicyOp(p, NULL, IPP_SEND_DOCUMENT);
1397 po->order_type = CUPSD_AUTH_ALLOW;
1398 po->level = CUPSD_AUTH_USER;
1399
1400 cupsdAddName(po, "@OWNER");
1401 cupsdAddName(po, "@SYSTEM");
1402 cupsdLogMessage(CUPSD_LOG_INFO, "Require user @OWNER @SYSTEM");
1403
1404 cupsdAddPolicyOp(p, po, IPP_SEND_URI);
1405 cupsdAddPolicyOp(p, po, IPP_CANCEL_JOB);
1406 cupsdAddPolicyOp(p, po, IPP_HOLD_JOB);
1407 cupsdAddPolicyOp(p, po, IPP_RELEASE_JOB);
1408 cupsdAddPolicyOp(p, po, IPP_RESTART_JOB);
1409 cupsdAddPolicyOp(p, po, IPP_PURGE_JOBS);
1410 cupsdAddPolicyOp(p, po, IPP_SET_JOB_ATTRIBUTES);
1411 cupsdAddPolicyOp(p, po, IPP_CREATE_JOB_SUBSCRIPTION);
1412 cupsdAddPolicyOp(p, po, IPP_RENEW_SUBSCRIPTION);
1413 cupsdAddPolicyOp(p, po, IPP_CANCEL_SUBSCRIPTION);
1414 cupsdAddPolicyOp(p, po, IPP_GET_NOTIFICATIONS);
1415 cupsdAddPolicyOp(p, po, IPP_REPROCESS_JOB);
1416 cupsdAddPolicyOp(p, po, IPP_CANCEL_CURRENT_JOB);
1417 cupsdAddPolicyOp(p, po, IPP_SUSPEND_CURRENT_JOB);
1418 cupsdAddPolicyOp(p, po, IPP_RESUME_JOB);
1419 cupsdAddPolicyOp(p, po, IPP_CANCEL_MY_JOBS);
1420 cupsdAddPolicyOp(p, po, IPP_CLOSE_JOB);
1421 cupsdAddPolicyOp(p, po, CUPS_MOVE_JOB);
1422 cupsdAddPolicyOp(p, po, CUPS_AUTHENTICATE_JOB);
1423 cupsdAddPolicyOp(p, po, CUPS_GET_DOCUMENT);
1424
1425 cupsdLogMessage(CUPSD_LOG_INFO, "</Limit>");
1426
1427 cupsdLogMessage(CUPSD_LOG_INFO,
1428 "<Limit Pause-Printer Resume-Printer "
1429 "Set-Printer-Attributes Enable-Printer "
1430 "Disable-Printer Pause-Printer-After-Current-Job "
1431 "Hold-New-Jobs Release-Held-New-Jobs "
1432 "Deactivate-Printer Activate-Printer Restart-Printer "
1433 "Shutdown-Printer Startup-Printer Promote-Job "
1434 "Schedule-Job-After Cancel-Jobs CUPS-Add-Printer "
1435 "CUPS-Delete-Printer CUPS-Add-Class CUPS-Delete-Class "
1436 "CUPS-Accept-Jobs CUPS-Reject-Jobs CUPS-Set-Default>");
1437 cupsdLogMessage(CUPSD_LOG_INFO, "Order Deny,Allow");
1438 cupsdLogMessage(CUPSD_LOG_INFO, "AuthType Default");
1439
1440 po = cupsdAddPolicyOp(p, NULL, IPP_PAUSE_PRINTER);
1441 po->order_type = CUPSD_AUTH_ALLOW;
1442 po->type = CUPSD_AUTH_DEFAULT;
1443 po->level = CUPSD_AUTH_USER;
1444
1445 cupsdAddName(po, "@SYSTEM");
1446 cupsdLogMessage(CUPSD_LOG_INFO, "Require user @SYSTEM");
1447
1448 cupsdAddPolicyOp(p, po, IPP_RESUME_PRINTER);
1449 cupsdAddPolicyOp(p, po, IPP_SET_PRINTER_ATTRIBUTES);
1450 cupsdAddPolicyOp(p, po, IPP_ENABLE_PRINTER);
1451 cupsdAddPolicyOp(p, po, IPP_DISABLE_PRINTER);
1452 cupsdAddPolicyOp(p, po, IPP_PAUSE_PRINTER_AFTER_CURRENT_JOB);
1453 cupsdAddPolicyOp(p, po, IPP_HOLD_NEW_JOBS);
1454 cupsdAddPolicyOp(p, po, IPP_RELEASE_HELD_NEW_JOBS);
1455 cupsdAddPolicyOp(p, po, IPP_DEACTIVATE_PRINTER);
1456 cupsdAddPolicyOp(p, po, IPP_ACTIVATE_PRINTER);
1457 cupsdAddPolicyOp(p, po, IPP_RESTART_PRINTER);
1458 cupsdAddPolicyOp(p, po, IPP_SHUTDOWN_PRINTER);
1459 cupsdAddPolicyOp(p, po, IPP_STARTUP_PRINTER);
1460 cupsdAddPolicyOp(p, po, IPP_PROMOTE_JOB);
1461 cupsdAddPolicyOp(p, po, IPP_SCHEDULE_JOB_AFTER);
1462 cupsdAddPolicyOp(p, po, IPP_CANCEL_JOBS);
1463 cupsdAddPolicyOp(p, po, CUPS_ADD_PRINTER);
1464 cupsdAddPolicyOp(p, po, CUPS_DELETE_PRINTER);
1465 cupsdAddPolicyOp(p, po, CUPS_ADD_CLASS);
1466 cupsdAddPolicyOp(p, po, CUPS_DELETE_CLASS);
1467 cupsdAddPolicyOp(p, po, CUPS_ACCEPT_JOBS);
1468 cupsdAddPolicyOp(p, po, CUPS_REJECT_JOBS);
1469 cupsdAddPolicyOp(p, po, CUPS_SET_DEFAULT);
1470
1471 cupsdLogMessage(CUPSD_LOG_INFO, "</Limit>");
1472
1473 cupsdLogMessage(CUPSD_LOG_INFO, "<Limit All>");
1474 cupsdLogMessage(CUPSD_LOG_INFO, "Order Deny,Allow");
1475
1476 po = cupsdAddPolicyOp(p, NULL, IPP_ANY_OPERATION);
1477 po->order_type = CUPSD_AUTH_ALLOW;
1478
1479 cupsdLogMessage(CUPSD_LOG_INFO, "</Limit>");
1480 cupsdLogMessage(CUPSD_LOG_INFO, "</Policy>");
1481 }
1482 }
1483
1484 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdReadConfiguration: NumPolicies=%d",
1485 cupsArrayCount(Policies));
1486 for (i = 0, p = (cupsd_policy_t *)cupsArrayFirst(Policies);
1487 p;
1488 i ++, p = (cupsd_policy_t *)cupsArrayNext(Policies))
1489 cupsdLogMessage(CUPSD_LOG_DEBUG2,
1490 "cupsdReadConfiguration: Policies[%d]=\"%s\"", i, p->name);
1491
1492 /*
1493 * If we are doing a full reload or the server root has changed, flush
1494 * the jobs, printers, etc. and start from scratch...
1495 */
1496
1497 if (NeedReload == RELOAD_ALL ||
1498 old_remote_port != RemotePort ||
1499 !old_serverroot || !ServerRoot || strcmp(old_serverroot, ServerRoot) ||
1500 !old_requestroot || !RequestRoot || strcmp(old_requestroot, RequestRoot))
1501 {
1502 mime_type_t *type; /* Current type */
1503 char mimetype[MIME_MAX_SUPER + MIME_MAX_TYPE];
1504 /* MIME type name */
1505
1506
1507 cupsdLogMessage(CUPSD_LOG_INFO, "Full reload is required.");
1508
1509 /*
1510 * Free all memory...
1511 */
1512
1513 cupsdDeleteAllSubscriptions();
1514 cupsdFreeAllJobs();
1515 cupsdDeleteAllPrinters();
1516
1517 DefaultPrinter = NULL;
1518
1519 if (MimeDatabase != NULL)
1520 mimeDelete(MimeDatabase);
1521
1522 if (NumMimeTypes)
1523 {
1524 for (i = 0; i < NumMimeTypes; i ++)
1525 _cupsStrFree(MimeTypes[i]);
1526
1527 free(MimeTypes);
1528 }
1529
1530 /*
1531 * Read the MIME type and conversion database...
1532 */
1533
1534 snprintf(temp, sizeof(temp), "%s/filter", ServerBin);
1535 snprintf(mimedir, sizeof(mimedir), "%s/mime", DataDir);
1536
1537 MimeDatabase = mimeNew();
1538 mimeSetErrorCallback(MimeDatabase, mime_error_cb, NULL);
1539
1540 MimeDatabase = mimeLoadTypes(MimeDatabase, mimedir);
1541 MimeDatabase = mimeLoadTypes(MimeDatabase, ServerRoot);
1542 MimeDatabase = mimeLoadFilters(MimeDatabase, mimedir, temp);
1543 MimeDatabase = mimeLoadFilters(MimeDatabase, ServerRoot, temp);
1544
1545 if (!MimeDatabase)
1546 {
1547 cupsdLogMessage(CUPSD_LOG_EMERG,
1548 "Unable to load MIME database from \"%s\" or \"%s\".",
1549 mimedir, ServerRoot);
1550 if (FatalErrors & CUPSD_FATAL_CONFIG)
1551 return (0);
1552 }
1553
1554 cupsdLogMessage(CUPSD_LOG_INFO,
1555 "Loaded MIME database from \"%s\" and \"%s\": %d types, "
1556 "%d filters...", mimedir, ServerRoot,
1557 mimeNumTypes(MimeDatabase), mimeNumFilters(MimeDatabase));
1558
1559 /*
1560 * Create a list of MIME types for the document-format-supported
1561 * attribute...
1562 */
1563
1564 NumMimeTypes = mimeNumTypes(MimeDatabase);
1565 if (!mimeType(MimeDatabase, "application", "octet-stream"))
1566 NumMimeTypes ++;
1567
1568 if ((MimeTypes = calloc((size_t)NumMimeTypes, sizeof(const char *))) == NULL)
1569 {
1570 cupsdLogMessage(CUPSD_LOG_ERROR,
1571 "Unable to allocate memory for %d MIME types.",
1572 NumMimeTypes);
1573 NumMimeTypes = 0;
1574 }
1575 else
1576 {
1577 for (i = 0, type = mimeFirstType(MimeDatabase);
1578 type;
1579 i ++, type = mimeNextType(MimeDatabase))
1580 {
1581 snprintf(mimetype, sizeof(mimetype), "%s/%s", type->super, type->type);
1582
1583 MimeTypes[i] = _cupsStrAlloc(mimetype);
1584 }
1585
1586 if (i < NumMimeTypes)
1587 MimeTypes[i] = _cupsStrAlloc("application/octet-stream");
1588 }
1589
1590 if (LogLevel == CUPSD_LOG_DEBUG2)
1591 {
1592 mime_filter_t *filter; /* Current filter */
1593
1594
1595 for (type = mimeFirstType(MimeDatabase);
1596 type;
1597 type = mimeNextType(MimeDatabase))
1598 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdReadConfiguration: type %s/%s",
1599 type->super, type->type);
1600
1601 for (filter = mimeFirstFilter(MimeDatabase);
1602 filter;
1603 filter = mimeNextFilter(MimeDatabase))
1604 cupsdLogMessage(CUPSD_LOG_DEBUG2,
1605 "cupsdReadConfiguration: filter %s/%s to %s/%s %d %s",
1606 filter->src->super, filter->src->type,
1607 filter->dst->super, filter->dst->type,
1608 filter->cost, filter->filter);
1609 }
1610
1611 /*
1612 * Load banners...
1613 */
1614
1615 snprintf(temp, sizeof(temp), "%s/banners", DataDir);
1616 cupsdLoadBanners(temp);
1617
1618 /*
1619 * Load printers and classes...
1620 */
1621
1622 cupsdLoadAllPrinters();
1623 cupsdLoadAllClasses();
1624
1625 cupsdCreateCommonData();
1626
1627 /*
1628 * Update the printcap file as needed...
1629 */
1630
1631 if (Printcap && *Printcap && access(Printcap, 0))
1632 cupsdWritePrintcap();
1633
1634 /*
1635 * Load queued jobs...
1636 */
1637
1638 cupsdLoadAllJobs();
1639
1640 /*
1641 * Load subscriptions...
1642 */
1643
1644 cupsdLoadAllSubscriptions();
1645
1646 cupsdLogMessage(CUPSD_LOG_INFO, "Full reload complete.");
1647 }
1648 else
1649 {
1650 /*
1651 * Not a full reload, so recreate the common printer attributes...
1652 */
1653
1654 cupsdCreateCommonData();
1655
1656 /*
1657 * Update all jobs as needed...
1658 */
1659
1660 cupsdUpdateJobs();
1661
1662 /*
1663 * Update all printers as needed...
1664 */
1665
1666 cupsdUpdatePrinters();
1667 cupsdMarkDirty(CUPSD_DIRTY_PRINTCAP);
1668
1669 cupsdLogMessage(CUPSD_LOG_INFO, "Partial reload complete.");
1670 }
1671
1672 /*
1673 * Reset the reload state...
1674 */
1675
1676 NeedReload = RELOAD_NONE;
1677
1678 cupsdClearString(&old_serverroot);
1679 cupsdClearString(&old_requestroot);
1680
1681 return (1);
1682 }
1683
1684
1685 /*
1686 * 'get_address()' - Get an address + port number from a line.
1687 */
1688
1689 static http_addrlist_t * /* O - Pointer to list if address good, NULL if bad */
1690 get_address(const char *value, /* I - Value string */
1691 int defport) /* I - Default port */
1692 {
1693 char buffer[1024], /* Hostname + port number buffer */
1694 defpname[255], /* Default port name */
1695 *hostname, /* Hostname or IP */
1696 *portname; /* Port number or name */
1697 http_addrlist_t *addrlist; /* Address list */
1698
1699
1700 /*
1701 * Check for an empty value...
1702 */
1703
1704 if (!*value)
1705 {
1706 cupsdLogMessage(CUPSD_LOG_ERROR, "Bad (empty) address.");
1707 return (NULL);
1708 }
1709
1710 /*
1711 * Grab a hostname and port number; if there is no colon and the port name
1712 * is only digits, then we have a port number by itself...
1713 */
1714
1715 strlcpy(buffer, value, sizeof(buffer));
1716
1717 if ((portname = strrchr(buffer, ':')) != NULL && !strchr(portname, ']'))
1718 {
1719 *portname++ = '\0';
1720 hostname = buffer;
1721 }
1722 else
1723 {
1724 for (portname = buffer; isdigit(*portname & 255); portname ++);
1725
1726 if (*portname)
1727 {
1728 /*
1729 * Use the default port...
1730 */
1731
1732 sprintf(defpname, "%d", defport);
1733 portname = defpname;
1734 hostname = buffer;
1735 }
1736 else
1737 {
1738 /*
1739 * The buffer contains just a port number...
1740 */
1741
1742 portname = buffer;
1743 hostname = NULL;
1744 }
1745 }
1746
1747 if (hostname && !strcmp(hostname, "*"))
1748 hostname = NULL;
1749
1750 /*
1751 * Now lookup the address using httpAddrGetList()...
1752 */
1753
1754 if ((addrlist = httpAddrGetList(hostname, AF_UNSPEC, portname)) == NULL)
1755 cupsdLogMessage(CUPSD_LOG_ERROR, "Hostname lookup for \"%s\" failed.",
1756 hostname ? hostname : "(nil)");
1757
1758 return (addrlist);
1759 }
1760
1761
1762 /*
1763 * 'get_addr_and_mask()' - Get an IP address and netmask.
1764 */
1765
1766 static int /* O - 1 on success, 0 on failure */
1767 get_addr_and_mask(const char *value, /* I - String from config file */
1768 unsigned *ip, /* O - Address value */
1769 unsigned *mask) /* O - Mask value */
1770 {
1771 int i, j, /* Looping vars */
1772 family, /* Address family */
1773 ipcount; /* Count of fields in address */
1774 unsigned ipval; /* Value */
1775 const char *maskval, /* Pointer to start of mask value */
1776 *ptr, /* Pointer into value */
1777 *ptr2; /* ... */
1778
1779
1780 /*
1781 * Get the address...
1782 */
1783
1784 ip[0] = ip[1] = ip[2] = ip[3] = 0x00000000;
1785 mask[0] = mask[1] = mask[2] = mask[3] = 0xffffffff;
1786
1787 if ((maskval = strchr(value, '/')) != NULL)
1788 maskval ++;
1789 else
1790 maskval = value + strlen(value);
1791
1792 #ifdef AF_INET6
1793 /*
1794 * Check for an IPv6 address...
1795 */
1796
1797 if (*value == '[')
1798 {
1799 /*
1800 * Parse hexadecimal IPv6/IPv4 address...
1801 */
1802
1803 family = AF_INET6;
1804
1805 for (i = 0, ptr = value + 1; *ptr && i < 8; i ++)
1806 {
1807 if (*ptr == ']')
1808 break;
1809 else if (!strncmp(ptr, "::", 2))
1810 {
1811 for (ptr2 = strchr(ptr + 2, ':'), j = 0;
1812 ptr2;
1813 ptr2 = strchr(ptr2 + 1, ':'), j ++);
1814
1815 i = 6 - j;
1816 ptr += 2;
1817 }
1818 else if (isdigit(*ptr & 255) && strchr(ptr + 1, '.') && i >= 6)
1819 {
1820 /*
1821 * Read IPv4 dotted quad...
1822 */
1823
1824 unsigned val[4] = { 0, 0, 0, 0 };
1825 /* IPv4 address values */
1826
1827 ipcount = sscanf(ptr, "%u.%u.%u.%u", val + 0, val + 1, val + 2,
1828 val + 3);
1829
1830 /*
1831 * Range check the IP numbers...
1832 */
1833
1834 for (i = 0; i < ipcount; i ++)
1835 if (val[i] > 255)
1836 return (0);
1837
1838 /*
1839 * Merge everything into a 32-bit IPv4 address in ip[3]...
1840 */
1841
1842 ip[3] = ((((((unsigned)val[0] << 8) | (unsigned)val[1]) << 8) |
1843 (unsigned)val[2]) << 8) | (unsigned)val[3];
1844
1845 if (ipcount < 4)
1846 mask[3] = (0xffffffff << (32 - 8 * ipcount)) & 0xffffffff;
1847
1848 /*
1849 * If the leading words are all 0's then this is an IPv4 address...
1850 */
1851
1852 if (!val[0] && !val[1] && !val[2])
1853 family = AF_INET;
1854
1855 while (isdigit(*ptr & 255) || *ptr == '.')
1856 ptr ++;
1857 break;
1858 }
1859 else if (isxdigit(*ptr & 255))
1860 {
1861 ipval = strtoul(ptr, (char **)&ptr, 16);
1862
1863 if (*ptr == ':' && ptr[1] != ':')
1864 ptr ++;
1865
1866 if (ipval > 0xffff)
1867 return (0);
1868
1869 if (i & 1)
1870 ip[i / 2] |= ipval;
1871 else
1872 ip[i / 2] |= ipval << 16;
1873 }
1874 else
1875 return (0);
1876 }
1877
1878 if (*ptr != ']')
1879 return (0);
1880
1881 ptr ++;
1882
1883 if (*ptr && *ptr != '/')
1884 return (0);
1885 }
1886 else
1887 #endif /* AF_INET6 */
1888 {
1889 /*
1890 * Parse dotted-decimal IPv4 address...
1891 */
1892
1893 unsigned val[4] = { 0, 0, 0, 0 }; /* IPv4 address values */
1894
1895
1896 family = AF_INET;
1897 ipcount = sscanf(value, "%u.%u.%u.%u", val + 0, val + 1, val + 2, val + 3);
1898
1899 /*
1900 * Range check the IP numbers...
1901 */
1902
1903 for (i = 0; i < ipcount; i ++)
1904 if (val[i] > 255)
1905 return (0);
1906
1907 /*
1908 * Merge everything into a 32-bit IPv4 address in ip[3]...
1909 */
1910
1911 ip[3] = ((((((unsigned)val[0] << 8) | (unsigned)val[1]) << 8) |
1912 (unsigned)val[2]) << 8) | (unsigned)val[3];
1913
1914 if (ipcount < 4)
1915 mask[3] = (0xffffffff << (32 - 8 * ipcount)) & 0xffffffff;
1916 }
1917
1918 if (*maskval)
1919 {
1920 /*
1921 * Get the netmask value(s)...
1922 */
1923
1924 memset(mask, 0, sizeof(unsigned) * 4);
1925
1926 if (strchr(maskval, '.'))
1927 {
1928 /*
1929 * Get dotted-decimal mask...
1930 */
1931
1932 if (family != AF_INET)
1933 return (0);
1934
1935 if (sscanf(maskval, "%u.%u.%u.%u", mask + 0, mask + 1, mask + 2,
1936 mask + 3) != 4)
1937 return (0);
1938
1939 mask[3] |= (((((unsigned)mask[0] << 8) | (unsigned)mask[1]) << 8) |
1940 (unsigned)mask[2]) << 8;
1941 mask[0] = mask[1] = mask[2] = 0;
1942 }
1943 else
1944 {
1945 /*
1946 * Get address/bits format...
1947 */
1948
1949 i = atoi(maskval);
1950
1951 #ifdef AF_INET6
1952 if (family == AF_INET6)
1953 {
1954 if (i > 128)
1955 return (0);
1956
1957 i = 128 - i;
1958
1959 if (i <= 96)
1960 mask[0] = 0xffffffff;
1961 else
1962 mask[0] = (0xffffffff << (i - 96)) & 0xffffffff;
1963
1964 if (i <= 64)
1965 mask[1] = 0xffffffff;
1966 else if (i >= 96)
1967 mask[1] = 0;
1968 else
1969 mask[1] = (0xffffffff << (i - 64)) & 0xffffffff;
1970
1971 if (i <= 32)
1972 mask[2] = 0xffffffff;
1973 else if (i >= 64)
1974 mask[2] = 0;
1975 else
1976 mask[2] = (0xffffffff << (i - 32)) & 0xffffffff;
1977
1978 if (i == 0)
1979 mask[3] = 0xffffffff;
1980 else if (i >= 32)
1981 mask[3] = 0;
1982 else
1983 mask[3] = (0xffffffff << i) & 0xffffffff;
1984 }
1985 else
1986 #endif /* AF_INET6 */
1987 {
1988 if (i > 32)
1989 return (0);
1990
1991 mask[0] = 0xffffffff;
1992 mask[1] = 0xffffffff;
1993 mask[2] = 0xffffffff;
1994
1995 if (i < 32)
1996 mask[3] = (0xffffffff << (32 - i)) & 0xffffffff;
1997 else
1998 mask[3] = 0xffffffff;
1999 }
2000 }
2001 }
2002
2003 cupsdLogMessage(CUPSD_LOG_DEBUG2,
2004 "get_addr_and_mask(value=\"%s\", "
2005 "ip=[%08x:%08x:%08x:%08x], mask=[%08x:%08x:%08x:%08x])",
2006 value, ip[0], ip[1], ip[2], ip[3], mask[0], mask[1], mask[2],
2007 mask[3]);
2008
2009 /*
2010 * Check for a valid netmask; no fallback like in CUPS 1.1.x!
2011 */
2012
2013 if ((ip[0] & ~mask[0]) != 0 ||
2014 (ip[1] & ~mask[1]) != 0 ||
2015 (ip[2] & ~mask[2]) != 0 ||
2016 (ip[3] & ~mask[3]) != 0)
2017 return (0);
2018
2019 return (1);
2020 }
2021
2022
2023 /*
2024 * 'mime_error_cb()' - Log a MIME error.
2025 */
2026
2027 static void
2028 mime_error_cb(void *ctx, /* I - Context pointer (unused) */
2029 const char *message) /* I - Message */
2030 {
2031 (void)ctx;
2032
2033 cupsdLogMessage(CUPSD_LOG_ERROR, "%s", message);
2034 }
2035
2036
2037 /*
2038 * 'parse_aaa()' - Parse authentication, authorization, and access control lines.
2039 */
2040
2041 static int /* O - 1 on success, 0 on failure */
2042 parse_aaa(cupsd_location_t *loc, /* I - Location */
2043 char *line, /* I - Line from file */
2044 char *value, /* I - Start of value data */
2045 int linenum) /* I - Current line number */
2046 {
2047 char *valptr; /* Pointer into value */
2048 unsigned ip[4], /* IP address components */
2049 mask[4]; /* IP netmask components */
2050
2051
2052 if (!_cups_strcasecmp(line, "Encryption"))
2053 {
2054 /*
2055 * "Encryption xxx" - set required encryption level...
2056 */
2057
2058 if (!_cups_strcasecmp(value, "never"))
2059 loc->encryption = HTTP_ENCRYPT_NEVER;
2060 else if (!_cups_strcasecmp(value, "always"))
2061 {
2062 cupsdLogMessage(CUPSD_LOG_ERROR,
2063 "Encryption value \"%s\" on line %d of %s is invalid in this "
2064 "context. Using \"required\" instead.", value, linenum, ConfigurationFile);
2065
2066 loc->encryption = HTTP_ENCRYPT_REQUIRED;
2067 }
2068 else if (!_cups_strcasecmp(value, "required"))
2069 loc->encryption = HTTP_ENCRYPT_REQUIRED;
2070 else if (!_cups_strcasecmp(value, "ifrequested"))
2071 loc->encryption = HTTP_ENCRYPT_IF_REQUESTED;
2072 else
2073 {
2074 cupsdLogMessage(CUPSD_LOG_ERROR,
2075 "Unknown Encryption value %s on line %d of %s.", value, linenum, ConfigurationFile);
2076 return (0);
2077 }
2078 }
2079 else if (!_cups_strcasecmp(line, "Order"))
2080 {
2081 /*
2082 * "Order Deny,Allow" or "Order Allow,Deny"...
2083 */
2084
2085 if (!_cups_strncasecmp(value, "deny", 4))
2086 loc->order_type = CUPSD_AUTH_ALLOW;
2087 else if (!_cups_strncasecmp(value, "allow", 5))
2088 loc->order_type = CUPSD_AUTH_DENY;
2089 else
2090 {
2091 cupsdLogMessage(CUPSD_LOG_ERROR, "Unknown Order value %s on line %d of %s.",
2092 value, linenum, ConfigurationFile);
2093 return (0);
2094 }
2095 }
2096 else if (!_cups_strcasecmp(line, "Allow") || !_cups_strcasecmp(line, "Deny"))
2097 {
2098 /*
2099 * Allow [From] host/ip...
2100 * Deny [From] host/ip...
2101 */
2102
2103 while (*value)
2104 {
2105 if (!_cups_strncasecmp(value, "from", 4))
2106 {
2107 /*
2108 * Strip leading "from"...
2109 */
2110
2111 value += 4;
2112
2113 while (_cups_isspace(*value))
2114 value ++;
2115
2116 if (!*value)
2117 break;
2118 }
2119
2120 /*
2121 * Find the end of the value...
2122 */
2123
2124 for (valptr = value; *valptr && !_cups_isspace(*valptr); valptr ++);
2125
2126 while (_cups_isspace(*valptr))
2127 *valptr++ = '\0';
2128
2129 /*
2130 * Figure out what form the allow/deny address takes:
2131 *
2132 * All
2133 * None
2134 * *.domain.com
2135 * .domain.com
2136 * host.domain.com
2137 * nnn.*
2138 * nnn.nnn.*
2139 * nnn.nnn.nnn.*
2140 * nnn.nnn.nnn.nnn
2141 * nnn.nnn.nnn.nnn/mm
2142 * nnn.nnn.nnn.nnn/mmm.mmm.mmm.mmm
2143 */
2144
2145 if (!_cups_strcasecmp(value, "all"))
2146 {
2147 /*
2148 * All hosts...
2149 */
2150
2151 if (!_cups_strcasecmp(line, "Allow"))
2152 cupsdAddIPMask(&(loc->allow), zeros, zeros);
2153 else
2154 cupsdAddIPMask(&(loc->deny), zeros, zeros);
2155 }
2156 else if (!_cups_strcasecmp(value, "none"))
2157 {
2158 /*
2159 * No hosts...
2160 */
2161
2162 if (!_cups_strcasecmp(line, "Allow"))
2163 cupsdAddIPMask(&(loc->allow), ones, zeros);
2164 else
2165 cupsdAddIPMask(&(loc->deny), ones, zeros);
2166 }
2167 #ifdef AF_INET6
2168 else if (value[0] == '*' || value[0] == '.' ||
2169 (!isdigit(value[0] & 255) && value[0] != '['))
2170 #else
2171 else if (value[0] == '*' || value[0] == '.' || !isdigit(value[0] & 255))
2172 #endif /* AF_INET6 */
2173 {
2174 /*
2175 * Host or domain name...
2176 */
2177
2178 if (value[0] == '*')
2179 value ++;
2180
2181 if (!_cups_strcasecmp(line, "Allow"))
2182 cupsdAddNameMask(&(loc->allow), value);
2183 else
2184 cupsdAddNameMask(&(loc->deny), value);
2185 }
2186 else
2187 {
2188 /*
2189 * One of many IP address forms...
2190 */
2191
2192 if (!get_addr_and_mask(value, ip, mask))
2193 {
2194 cupsdLogMessage(CUPSD_LOG_ERROR, "Bad netmask value %s on line %d of %s.",
2195 value, linenum, ConfigurationFile);
2196 return (0);
2197 }
2198
2199 if (!_cups_strcasecmp(line, "Allow"))
2200 cupsdAddIPMask(&(loc->allow), ip, mask);
2201 else
2202 cupsdAddIPMask(&(loc->deny), ip, mask);
2203 }
2204
2205 /*
2206 * Advance to next value...
2207 */
2208
2209 value = valptr;
2210 }
2211 }
2212 else if (!_cups_strcasecmp(line, "AuthType"))
2213 {
2214 /*
2215 * AuthType {none,basic,digest,basicdigest,negotiate,default}
2216 */
2217
2218 if (!_cups_strcasecmp(value, "none"))
2219 {
2220 loc->type = CUPSD_AUTH_NONE;
2221 loc->level = CUPSD_AUTH_ANON;
2222 }
2223 else if (!_cups_strcasecmp(value, "basic"))
2224 {
2225 loc->type = CUPSD_AUTH_BASIC;
2226
2227 if (loc->level == CUPSD_AUTH_ANON)
2228 loc->level = CUPSD_AUTH_USER;
2229 }
2230 else if (!_cups_strcasecmp(value, "default"))
2231 {
2232 loc->type = CUPSD_AUTH_DEFAULT;
2233
2234 if (loc->level == CUPSD_AUTH_ANON)
2235 loc->level = CUPSD_AUTH_USER;
2236 }
2237 else if (!_cups_strcasecmp(value, "negotiate"))
2238 {
2239 loc->type = CUPSD_AUTH_NEGOTIATE;
2240
2241 if (loc->level == CUPSD_AUTH_ANON)
2242 loc->level = CUPSD_AUTH_USER;
2243 }
2244 else
2245 {
2246 cupsdLogMessage(CUPSD_LOG_WARN,
2247 "Unknown authorization type %s on line %d of %s.",
2248 value, linenum, ConfigurationFile);
2249 return (0);
2250 }
2251 }
2252 else if (!_cups_strcasecmp(line, "AuthClass"))
2253 {
2254 /*
2255 * AuthClass anonymous, user, system, group
2256 */
2257
2258 if (!_cups_strcasecmp(value, "anonymous"))
2259 {
2260 loc->type = CUPSD_AUTH_NONE;
2261 loc->level = CUPSD_AUTH_ANON;
2262
2263 cupsdLogMessage(CUPSD_LOG_WARN,
2264 "\"AuthClass %s\" is deprecated; consider removing "
2265 "it from line %d.",
2266 value, linenum);
2267 }
2268 else if (!_cups_strcasecmp(value, "user"))
2269 {
2270 loc->level = CUPSD_AUTH_USER;
2271
2272 cupsdLogMessage(CUPSD_LOG_WARN,
2273 "\"AuthClass %s\" is deprecated; consider using "
2274 "\"Require valid-user\" on line %d of %s.",
2275 value, linenum, ConfigurationFile);
2276 }
2277 else if (!_cups_strcasecmp(value, "group"))
2278 {
2279 loc->level = CUPSD_AUTH_GROUP;
2280
2281 cupsdLogMessage(CUPSD_LOG_WARN,
2282 "\"AuthClass %s\" is deprecated; consider using "
2283 "\"Require user @groupname\" on line %d of %s.",
2284 value, linenum, ConfigurationFile);
2285 }
2286 else if (!_cups_strcasecmp(value, "system"))
2287 {
2288 loc->level = CUPSD_AUTH_GROUP;
2289
2290 cupsdAddName(loc, "@SYSTEM");
2291
2292 cupsdLogMessage(CUPSD_LOG_WARN,
2293 "\"AuthClass %s\" is deprecated; consider using "
2294 "\"Require user @SYSTEM\" on line %d of %s.",
2295 value, linenum, ConfigurationFile);
2296 }
2297 else
2298 {
2299 cupsdLogMessage(CUPSD_LOG_WARN,
2300 "Unknown authorization class %s on line %d of %s.",
2301 value, linenum, ConfigurationFile);
2302 return (0);
2303 }
2304 }
2305 else if (!_cups_strcasecmp(line, "AuthGroupName"))
2306 {
2307 cupsdAddName(loc, value);
2308
2309 cupsdLogMessage(CUPSD_LOG_WARN,
2310 "\"AuthGroupName %s\" directive is deprecated; consider "
2311 "using \"Require user @%s\" on line %d of %s.",
2312 value, value, linenum, ConfigurationFile);
2313 }
2314 else if (!_cups_strcasecmp(line, "Require"))
2315 {
2316 /*
2317 * Apache synonym for AuthClass and AuthGroupName...
2318 *
2319 * Get initial word:
2320 *
2321 * Require valid-user
2322 * Require group names
2323 * Require user names
2324 */
2325
2326 for (valptr = value; !_cups_isspace(*valptr) && *valptr; valptr ++);
2327
2328 if (*valptr)
2329 *valptr++ = '\0';
2330
2331 if (!_cups_strcasecmp(value, "valid-user") ||
2332 !_cups_strcasecmp(value, "user"))
2333 loc->level = CUPSD_AUTH_USER;
2334 else if (!_cups_strcasecmp(value, "group"))
2335 loc->level = CUPSD_AUTH_GROUP;
2336 else
2337 {
2338 cupsdLogMessage(CUPSD_LOG_WARN, "Unknown Require type %s on line %d of %s.",
2339 value, linenum, ConfigurationFile);
2340 return (0);
2341 }
2342
2343 /*
2344 * Get the list of names from the line...
2345 */
2346
2347 for (value = valptr; *value;)
2348 {
2349 while (_cups_isspace(*value))
2350 value ++;
2351
2352 #ifdef HAVE_AUTHORIZATION_H
2353 if (!strncmp(value, "@AUTHKEY(", 9))
2354 {
2355 /*
2356 * Grab "@AUTHKEY(name)" value...
2357 */
2358
2359 for (valptr = value + 9; *valptr != ')' && *valptr; valptr ++);
2360
2361 if (*valptr)
2362 *valptr++ = '\0';
2363 }
2364 else
2365 #endif /* HAVE_AUTHORIZATION_H */
2366 if (*value == '\"' || *value == '\'')
2367 {
2368 /*
2369 * Grab quoted name...
2370 */
2371
2372 for (valptr = value + 1; *valptr != *value && *valptr; valptr ++);
2373
2374 value ++;
2375 }
2376 else
2377 {
2378 /*
2379 * Grab literal name.
2380 */
2381
2382 for (valptr = value; !_cups_isspace(*valptr) && *valptr; valptr ++);
2383 }
2384
2385 if (*valptr)
2386 *valptr++ = '\0';
2387
2388 cupsdAddName(loc, value);
2389
2390 for (value = valptr; _cups_isspace(*value); value ++);
2391 }
2392 }
2393 else if (!_cups_strcasecmp(line, "Satisfy"))
2394 {
2395 if (!_cups_strcasecmp(value, "all"))
2396 loc->satisfy = CUPSD_AUTH_SATISFY_ALL;
2397 else if (!_cups_strcasecmp(value, "any"))
2398 loc->satisfy = CUPSD_AUTH_SATISFY_ANY;
2399 else
2400 {
2401 cupsdLogMessage(CUPSD_LOG_WARN, "Unknown Satisfy value %s on line %d of %s.",
2402 value, linenum, ConfigurationFile);
2403 return (0);
2404 }
2405 }
2406 else
2407 return (0);
2408
2409 return (1);
2410 }
2411
2412
2413 /*
2414 * 'parse_fatal_errors()' - Parse FatalErrors values in a string.
2415 */
2416
2417 static int /* O - FatalErrors bits */
2418 parse_fatal_errors(const char *s) /* I - FatalErrors string */
2419 {
2420 int fatal; /* FatalErrors bits */
2421 char value[1024], /* Value string */
2422 *valstart, /* Pointer into value */
2423 *valend; /* End of value */
2424
2425
2426 /*
2427 * Empty FatalErrors line yields NULL pointer...
2428 */
2429
2430 if (!s)
2431 return (CUPSD_FATAL_NONE);
2432
2433 /*
2434 * Loop through the value string,...
2435 */
2436
2437 strlcpy(value, s, sizeof(value));
2438
2439 fatal = CUPSD_FATAL_NONE;
2440
2441 for (valstart = value; *valstart;)
2442 {
2443 /*
2444 * Get the current space/comma-delimited kind name...
2445 */
2446
2447 for (valend = valstart; *valend; valend ++)
2448 if (_cups_isspace(*valend) || *valend == ',')
2449 break;
2450
2451 if (*valend)
2452 *valend++ = '\0';
2453
2454 /*
2455 * Add the error to the bitmask...
2456 */
2457
2458 if (!_cups_strcasecmp(valstart, "all"))
2459 fatal = CUPSD_FATAL_ALL;
2460 else if (!_cups_strcasecmp(valstart, "browse"))
2461 fatal |= CUPSD_FATAL_BROWSE;
2462 else if (!_cups_strcasecmp(valstart, "-browse"))
2463 fatal &= ~CUPSD_FATAL_BROWSE;
2464 else if (!_cups_strcasecmp(valstart, "config"))
2465 fatal |= CUPSD_FATAL_CONFIG;
2466 else if (!_cups_strcasecmp(valstart, "-config"))
2467 fatal &= ~CUPSD_FATAL_CONFIG;
2468 else if (!_cups_strcasecmp(valstart, "listen"))
2469 fatal |= CUPSD_FATAL_LISTEN;
2470 else if (!_cups_strcasecmp(valstart, "-listen"))
2471 fatal &= ~CUPSD_FATAL_LISTEN;
2472 else if (!_cups_strcasecmp(valstart, "log"))
2473 fatal |= CUPSD_FATAL_LOG;
2474 else if (!_cups_strcasecmp(valstart, "-log"))
2475 fatal &= ~CUPSD_FATAL_LOG;
2476 else if (!_cups_strcasecmp(valstart, "permissions"))
2477 fatal |= CUPSD_FATAL_PERMISSIONS;
2478 else if (!_cups_strcasecmp(valstart, "-permissions"))
2479 fatal &= ~CUPSD_FATAL_PERMISSIONS;
2480 else if (_cups_strcasecmp(valstart, "none"))
2481 cupsdLogMessage(CUPSD_LOG_ERROR,
2482 "Unknown FatalErrors kind \"%s\" ignored.", valstart);
2483
2484 for (valstart = valend; *valstart; valstart ++)
2485 if (!_cups_isspace(*valstart) || *valstart != ',')
2486 break;
2487 }
2488
2489 return (fatal);
2490 }
2491
2492
2493 /*
2494 * 'parse_groups()' - Parse system group names in a string.
2495 */
2496
2497 static int /* O - 1 on success, 0 on failure */
2498 parse_groups(const char *s, /* I - Space-delimited groups */
2499 int linenum) /* I - Line number in cups-files.conf */
2500 {
2501 int status; /* Return status */
2502 char value[1024], /* Value string */
2503 *valstart, /* Pointer into value */
2504 *valend, /* End of value */
2505 quote; /* Quote character */
2506 struct group *group; /* Group */
2507
2508
2509 /*
2510 * Make a copy of the string and parse out the groups...
2511 */
2512
2513 strlcpy(value, s, sizeof(value));
2514
2515 status = 1;
2516 valstart = value;
2517
2518 while (*valstart && NumSystemGroups < MAX_SYSTEM_GROUPS)
2519 {
2520 if (*valstart == '\'' || *valstart == '\"')
2521 {
2522 /*
2523 * Scan quoted name...
2524 */
2525
2526 quote = *valstart++;
2527
2528 for (valend = valstart; *valend; valend ++)
2529 if (*valend == quote)
2530 break;
2531 }
2532 else
2533 {
2534 /*
2535 * Scan space or comma-delimited name...
2536 */
2537
2538 for (valend = valstart; *valend; valend ++)
2539 if (_cups_isspace(*valend) || *valend == ',')
2540 break;
2541 }
2542
2543 if (*valend)
2544 *valend++ = '\0';
2545
2546 group = getgrnam(valstart);
2547 if (group)
2548 {
2549 cupsdSetString(SystemGroups + NumSystemGroups, valstart);
2550 SystemGroupIDs[NumSystemGroups] = group->gr_gid;
2551
2552 NumSystemGroups ++;
2553 }
2554 else
2555 {
2556 if (linenum)
2557 cupsdLogMessage(CUPSD_LOG_ERROR, "Unknown SystemGroup \"%s\" on line %d of %s.", valstart, linenum, CupsFilesFile);
2558 else
2559 cupsdLogMessage(CUPSD_LOG_ERROR, "Unknown default SystemGroup \"%s\".", valstart);
2560
2561 status = 0;
2562 }
2563
2564 endgrent();
2565
2566 valstart = valend;
2567
2568 while (*valstart == ',' || _cups_isspace(*valstart))
2569 valstart ++;
2570 }
2571
2572 return (status);
2573 }
2574
2575
2576 /*
2577 * 'parse_protocols()' - Parse browse protocols in a string.
2578 */
2579
2580 static int /* O - Browse protocol bits */
2581 parse_protocols(const char *s) /* I - Space-delimited protocols */
2582 {
2583 int protocols; /* Browse protocol bits */
2584 char value[1024], /* Value string */
2585 *valstart, /* Pointer into value */
2586 *valend; /* End of value */
2587
2588
2589 /*
2590 * Empty protocol line yields NULL pointer...
2591 */
2592
2593 if (!s)
2594 return (0);
2595
2596 /*
2597 * Loop through the value string,...
2598 */
2599
2600 strlcpy(value, s, sizeof(value));
2601
2602 protocols = 0;
2603
2604 for (valstart = value; *valstart;)
2605 {
2606 /*
2607 * Get the current space/comma-delimited protocol name...
2608 */
2609
2610 for (valend = valstart; *valend; valend ++)
2611 if (_cups_isspace(*valend) || *valend == ',')
2612 break;
2613
2614 if (*valend)
2615 *valend++ = '\0';
2616
2617 /*
2618 * Add the protocol to the bitmask...
2619 */
2620
2621 if (!_cups_strcasecmp(valstart, "dnssd") ||
2622 !_cups_strcasecmp(valstart, "dns-sd") ||
2623 !_cups_strcasecmp(valstart, "bonjour"))
2624 protocols |= BROWSE_DNSSD;
2625 else if (!_cups_strcasecmp(valstart, "all"))
2626 protocols |= BROWSE_ALL;
2627 else if (_cups_strcasecmp(valstart, "none"))
2628 cupsdLogMessage(CUPSD_LOG_ERROR,
2629 "Unknown browse protocol \"%s\" ignored.", valstart);
2630
2631 for (valstart = valend; *valstart; valstart ++)
2632 if (!_cups_isspace(*valstart) || *valstart != ',')
2633 break;
2634 }
2635
2636 return (protocols);
2637 }
2638
2639
2640 /*
2641 * 'parse_variable()' - Parse a variable line.
2642 */
2643
2644 static int /* O - 1 on success, 0 on failure */
2645 parse_variable(
2646 const char *filename, /* I - Name of configuration file */
2647 int linenum, /* I - Line in configuration file */
2648 const char *line, /* I - Line from configuration file */
2649 const char *value, /* I - Value from configuration file */
2650 size_t num_vars, /* I - Number of variables */
2651 const cupsd_var_t *vars) /* I - Variables */
2652 {
2653 size_t i; /* Looping var */
2654 const cupsd_var_t *var; /* Variables */
2655 char temp[1024]; /* Temporary string */
2656
2657
2658 for (i = num_vars, var = vars; i > 0; i --, var ++)
2659 if (!_cups_strcasecmp(line, var->name))
2660 break;
2661
2662 if (i == 0)
2663 {
2664 /*
2665 * Unknown directive! Output an error message and continue...
2666 */
2667
2668 if (!value)
2669 cupsdLogMessage(CUPSD_LOG_ERROR, "Missing value for %s on line %d of %s.",
2670 line, linenum, filename);
2671 else
2672 cupsdLogMessage(CUPSD_LOG_ERROR, "Unknown directive %s on line %d of %s.",
2673 line, linenum, filename);
2674
2675 return (0);
2676 }
2677
2678 switch (var->type)
2679 {
2680 case CUPSD_VARTYPE_INTEGER :
2681 if (!value)
2682 {
2683 cupsdLogMessage(CUPSD_LOG_ERROR,
2684 "Missing integer value for %s on line %d of %s.",
2685 line, linenum, filename);
2686 return (0);
2687 }
2688 else if (!isdigit(*value & 255))
2689 {
2690 cupsdLogMessage(CUPSD_LOG_ERROR,
2691 "Bad integer value for %s on line %d of %s.",
2692 line, linenum, filename);
2693 return (0);
2694 }
2695 else
2696 {
2697 int n; /* Number */
2698 char *units; /* Units */
2699
2700 n = strtol(value, &units, 0);
2701
2702 if (units && *units)
2703 {
2704 if (tolower(units[0] & 255) == 'g')
2705 n *= 1024 * 1024 * 1024;
2706 else if (tolower(units[0] & 255) == 'm')
2707 n *= 1024 * 1024;
2708 else if (tolower(units[0] & 255) == 'k')
2709 n *= 1024;
2710 else if (tolower(units[0] & 255) == 't')
2711 n *= 262144;
2712 else
2713 {
2714 cupsdLogMessage(CUPSD_LOG_ERROR,
2715 "Unknown integer value for %s on line %d of %s.",
2716 line, linenum, filename);
2717 return (0);
2718 }
2719 }
2720
2721 if (n < 0)
2722 {
2723 cupsdLogMessage(CUPSD_LOG_ERROR,
2724 "Bad negative integer value for %s on line %d of "
2725 "%s.", line, linenum, filename);
2726 return (0);
2727 }
2728 else
2729 {
2730 *((int *)var->ptr) = n;
2731 }
2732 }
2733 break;
2734
2735 case CUPSD_VARTYPE_PERM :
2736 if (!value)
2737 {
2738 cupsdLogMessage(CUPSD_LOG_ERROR,
2739 "Missing permissions value for %s on line %d of %s.",
2740 line, linenum, filename);
2741 return (0);
2742 }
2743 else if (!isdigit(*value & 255))
2744 {
2745 /* TODO: Add chmod UGO syntax support */
2746 cupsdLogMessage(CUPSD_LOG_ERROR,
2747 "Bad permissions value for %s on line %d of %s.",
2748 line, linenum, filename);
2749 return (0);
2750 }
2751 else
2752 {
2753 int n = strtol(value, NULL, 8);
2754 /* Permissions value */
2755
2756 if (n < 0)
2757 {
2758 cupsdLogMessage(CUPSD_LOG_ERROR,
2759 "Bad negative permissions value for %s on line %d of "
2760 "%s.", line, linenum, filename);
2761 return (0);
2762 }
2763 else
2764 {
2765 *((mode_t *)var->ptr) = (mode_t)n;
2766 }
2767 }
2768 break;
2769
2770 case CUPSD_VARTYPE_TIME :
2771 if (!value)
2772 {
2773 cupsdLogMessage(CUPSD_LOG_ERROR,
2774 "Missing time interval value for %s on line %d of "
2775 "%s.", line, linenum, filename);
2776 return (0);
2777 }
2778 else if (!_cups_strncasecmp(line, "PreserveJob", 11) &&
2779 (!_cups_strcasecmp(value, "true") ||
2780 !_cups_strcasecmp(value, "on") ||
2781 !_cups_strcasecmp(value, "enabled") ||
2782 !_cups_strcasecmp(value, "yes")))
2783 {
2784 *((int *)var->ptr) = INT_MAX;
2785 }
2786 else if (!_cups_strcasecmp(value, "false") ||
2787 !_cups_strcasecmp(value, "off") ||
2788 !_cups_strcasecmp(value, "disabled") ||
2789 !_cups_strcasecmp(value, "no"))
2790 {
2791 *((int *)var->ptr) = 0;
2792 }
2793 else if (!isdigit(*value & 255))
2794 {
2795 cupsdLogMessage(CUPSD_LOG_ERROR,
2796 "Unknown time interval value for %s on line %d of "
2797 "%s.", line, linenum, filename);
2798 return (0);
2799 }
2800 else
2801 {
2802 double n; /* Number */
2803 char *units; /* Units */
2804
2805 n = strtod(value, &units);
2806
2807 if (units && *units)
2808 {
2809 if (tolower(units[0] & 255) == 'w')
2810 n *= 7 * 24 * 60 * 60;
2811 else if (tolower(units[0] & 255) == 'd')
2812 n *= 24 * 60 * 60;
2813 else if (tolower(units[0] & 255) == 'h')
2814 n *= 60 * 60;
2815 else if (tolower(units[0] & 255) == 'm')
2816 n *= 60;
2817 else
2818 {
2819 cupsdLogMessage(CUPSD_LOG_ERROR,
2820 "Unknown time interval value for %s on line "
2821 "%d of %s.", line, linenum, filename);
2822 return (0);
2823 }
2824 }
2825
2826 if (n < 0.0 || n > INT_MAX)
2827 {
2828 cupsdLogMessage(CUPSD_LOG_ERROR,
2829 "Bad time value for %s on line %d of %s.",
2830 line, linenum, filename);
2831 return (0);
2832 }
2833 else
2834 {
2835 *((int *)var->ptr) = (int)n;
2836 }
2837 }
2838 break;
2839
2840 case CUPSD_VARTYPE_BOOLEAN :
2841 if (!value)
2842 {
2843 cupsdLogMessage(CUPSD_LOG_ERROR,
2844 "Missing boolean value for %s on line %d of %s.",
2845 line, linenum, filename);
2846 return (0);
2847 }
2848 else if (!_cups_strcasecmp(value, "true") ||
2849 !_cups_strcasecmp(value, "on") ||
2850 !_cups_strcasecmp(value, "enabled") ||
2851 !_cups_strcasecmp(value, "yes") ||
2852 atoi(value) != 0)
2853 {
2854 *((int *)var->ptr) = TRUE;
2855 }
2856 else if (!_cups_strcasecmp(value, "false") ||
2857 !_cups_strcasecmp(value, "off") ||
2858 !_cups_strcasecmp(value, "disabled") ||
2859 !_cups_strcasecmp(value, "no") ||
2860 !_cups_strcasecmp(value, "0"))
2861 {
2862 *((int *)var->ptr) = FALSE;
2863 }
2864 else
2865 {
2866 cupsdLogMessage(CUPSD_LOG_ERROR,
2867 "Unknown boolean value %s on line %d of %s.",
2868 value, linenum, filename);
2869 return (0);
2870 }
2871 break;
2872
2873 case CUPSD_VARTYPE_PATHNAME :
2874 if (!value)
2875 {
2876 cupsdLogMessage(CUPSD_LOG_ERROR,
2877 "Missing pathname value for %s on line %d of %s.",
2878 line, linenum, filename);
2879 return (0);
2880 }
2881
2882 if (value[0] == '/')
2883 strlcpy(temp, value, sizeof(temp));
2884 else
2885 snprintf(temp, sizeof(temp), "%s/%s", ServerRoot, value);
2886
2887 if (access(temp, 0) && _cups_strcasecmp(value, "internal") && _cups_strcasecmp(line, "ServerKeychain"))
2888 {
2889 cupsdLogMessage(CUPSD_LOG_ERROR,
2890 "File or directory for \"%s %s\" on line %d of %s "
2891 "does not exist.", line, value, linenum, filename);
2892 return (0);
2893 }
2894
2895 cupsdSetString((char **)var->ptr, temp);
2896 break;
2897
2898 case CUPSD_VARTYPE_STRING :
2899 cupsdSetString((char **)var->ptr, value);
2900 break;
2901 }
2902
2903 return (1);
2904 }
2905
2906
2907 /*
2908 * 'read_cupsd_conf()' - Read the cupsd.conf configuration file.
2909 */
2910
2911 static int /* O - 1 on success, 0 on failure */
2912 read_cupsd_conf(cups_file_t *fp) /* I - File to read from */
2913 {
2914 int linenum; /* Current line number */
2915 char line[HTTP_MAX_BUFFER],
2916 /* Line from file */
2917 temp[HTTP_MAX_BUFFER],
2918 /* Temporary buffer for value */
2919 *value, /* Pointer to value */
2920 *valueptr; /* Pointer into value */
2921 int valuelen; /* Length of value */
2922 http_addrlist_t *addrlist, /* Address list */
2923 *addr; /* Current address */
2924 cups_file_t *incfile; /* Include file */
2925 char incname[1024]; /* Include filename */
2926
2927
2928 /*
2929 * Loop through each line in the file...
2930 */
2931
2932 linenum = 0;
2933
2934 while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
2935 {
2936 /*
2937 * Decode the directive...
2938 */
2939
2940 if (!_cups_strcasecmp(line, "Include") && value)
2941 {
2942 /*
2943 * Include filename
2944 */
2945
2946 if (value[0] == '/')
2947 strlcpy(incname, value, sizeof(incname));
2948 else
2949 snprintf(incname, sizeof(incname), "%s/%s", ServerRoot, value);
2950
2951 if ((incfile = cupsFileOpen(incname, "rb")) == NULL)
2952 cupsdLogMessage(CUPSD_LOG_ERROR,
2953 "Unable to include config file \"%s\" - %s",
2954 incname, strerror(errno));
2955 else
2956 {
2957 read_cupsd_conf(incfile);
2958 cupsFileClose(incfile);
2959 }
2960 }
2961 else if (!_cups_strcasecmp(line, "<Location") && value)
2962 {
2963 /*
2964 * <Location path>
2965 */
2966
2967 linenum = read_location(fp, value, linenum);
2968 if (linenum == 0)
2969 return (0);
2970 }
2971 else if (!_cups_strcasecmp(line, "<Policy") && value)
2972 {
2973 /*
2974 * <Policy name>
2975 */
2976
2977 linenum = read_policy(fp, value, linenum);
2978 if (linenum == 0)
2979 return (0);
2980 }
2981 else if (!_cups_strcasecmp(line, "FaxRetryInterval") && value)
2982 {
2983 JobRetryInterval = atoi(value);
2984 cupsdLogMessage(CUPSD_LOG_WARN,
2985 "FaxRetryInterval is deprecated; use "
2986 "JobRetryInterval on line %d of %s.", linenum, ConfigurationFile);
2987 }
2988 else if (!_cups_strcasecmp(line, "FaxRetryLimit") && value)
2989 {
2990 JobRetryLimit = atoi(value);
2991 cupsdLogMessage(CUPSD_LOG_WARN,
2992 "FaxRetryLimit is deprecated; use "
2993 "JobRetryLimit on line %d of %s.", linenum, ConfigurationFile);
2994 }
2995 #ifdef HAVE_SSL
2996 else if (!_cups_strcasecmp(line, "SSLOptions"))
2997 {
2998 /*
2999 * SSLOptions [AllowRC4] [AllowSSL3] [AllowDH] [DenyCBC] [DenyTLS1.0] [None]
3000 */
3001
3002 int options = 0; /* SSL/TLS options */
3003
3004 if (value)
3005 {
3006 char *start, /* Start of option */
3007 *end; /* End of option */
3008
3009 for (start = value; *start; start = end)
3010 {
3011 /*
3012 * Find end of keyword...
3013 */
3014
3015 end = start;
3016 while (*end && !_cups_isspace(*end))
3017 end ++;
3018
3019 if (*end)
3020 *end++ = '\0';
3021
3022 /*
3023 * Compare...
3024 */
3025
3026 if (!_cups_strcasecmp(start, "AllowRC4"))
3027 options |= _HTTP_TLS_ALLOW_RC4;
3028 else if (!_cups_strcasecmp(start, "AllowSSL3"))
3029 options |= _HTTP_TLS_ALLOW_SSL3;
3030 else if (!_cups_strcasecmp(start, "AllowDH"))
3031 options |= _HTTP_TLS_ALLOW_DH;
3032 else if (!_cups_strcasecmp(start, "DenyCBC"))
3033 options |= _HTTP_TLS_DENY_CBC;
3034 else if (!_cups_strcasecmp(start, "DenyTLS1.0"))
3035 options |= _HTTP_TLS_DENY_TLS10;
3036 else if (!_cups_strcasecmp(start, "None"))
3037 options = 0;
3038 else if (_cups_strcasecmp(start, "NoEmptyFragments"))
3039 cupsdLogMessage(CUPSD_LOG_WARN, "Unknown SSL option %s at line %d.", start, linenum);
3040 }
3041 }
3042
3043 _httpTLSSetOptions(options);
3044 }
3045 #endif /* HAVE_SSL */
3046 else if ((!_cups_strcasecmp(line, "Port") || !_cups_strcasecmp(line, "Listen")
3047 #ifdef HAVE_SSL
3048 || !_cups_strcasecmp(line, "SSLPort") || !_cups_strcasecmp(line, "SSLListen")
3049 #endif /* HAVE_SSL */
3050 ) && value)
3051 {
3052 /*
3053 * Add listening address(es) to the list...
3054 */
3055
3056 cupsd_listener_t *lis; /* New listeners array */
3057
3058
3059 /*
3060 * Get the address list...
3061 */
3062
3063 addrlist = get_address(value, IPP_PORT);
3064
3065 if (!addrlist)
3066 {
3067 cupsdLogMessage(CUPSD_LOG_ERROR, "Bad %s address %s at line %d.", line,
3068 value, linenum);
3069 continue;
3070 }
3071
3072 /*
3073 * Add each address...
3074 */
3075
3076 for (addr = addrlist; addr; addr = addr->next)
3077 {
3078 /*
3079 * See if this address is already present...
3080 */
3081
3082 for (lis = (cupsd_listener_t *)cupsArrayFirst(Listeners);
3083 lis;
3084 lis = (cupsd_listener_t *)cupsArrayNext(Listeners))
3085 if (httpAddrEqual(&(addr->addr), &(lis->address)) &&
3086 httpAddrPort(&(addr->addr)) == httpAddrPort(&(lis->address)))
3087 break;
3088
3089 if (lis)
3090 {
3091 #ifdef HAVE_ONDEMAND
3092 if (!lis->on_demand)
3093 #endif /* HAVE_ONDEMAND */
3094 {
3095 httpAddrString(&lis->address, temp, sizeof(temp));
3096 cupsdLogMessage(CUPSD_LOG_WARN,
3097 "Duplicate listen address \"%s\" ignored.", temp);
3098 }
3099
3100 continue;
3101 }
3102
3103 /*
3104 * Allocate another listener...
3105 */
3106
3107 if (!Listeners)
3108 Listeners = cupsArrayNew(NULL, NULL);
3109
3110 if (!Listeners)
3111 {
3112 cupsdLogMessage(CUPSD_LOG_ERROR,
3113 "Unable to allocate %s at line %d - %s.",
3114 line, linenum, strerror(errno));
3115 break;
3116 }
3117
3118 if ((lis = calloc(1, sizeof(cupsd_listener_t))) == NULL)
3119 {
3120 cupsdLogMessage(CUPSD_LOG_ERROR,
3121 "Unable to allocate %s at line %d - %s.",
3122 line, linenum, strerror(errno));
3123 break;
3124 }
3125
3126 cupsArrayAdd(Listeners, lis);
3127
3128 /*
3129 * Copy the current address and log it...
3130 */
3131
3132 memcpy(&(lis->address), &(addr->addr), sizeof(lis->address));
3133 lis->fd = -1;
3134
3135 #ifdef HAVE_SSL
3136 if (!_cups_strcasecmp(line, "SSLPort") || !_cups_strcasecmp(line, "SSLListen"))
3137 lis->encryption = HTTP_ENCRYPT_ALWAYS;
3138 #endif /* HAVE_SSL */
3139
3140 httpAddrString(&lis->address, temp, sizeof(temp));
3141
3142 #ifdef AF_LOCAL
3143 if (lis->address.addr.sa_family == AF_LOCAL)
3144 cupsdLogMessage(CUPSD_LOG_INFO, "Listening to %s (Domain)", temp);
3145 else
3146 #endif /* AF_LOCAL */
3147 cupsdLogMessage(CUPSD_LOG_INFO, "Listening to %s:%d (IPv%d)", temp,
3148 httpAddrPort(&(lis->address)),
3149 httpAddrFamily(&(lis->address)) == AF_INET ? 4 : 6);
3150
3151 if (!httpAddrLocalhost(&(lis->address)))
3152 RemotePort = httpAddrPort(&(lis->address));
3153 }
3154
3155 /*
3156 * Free the list...
3157 */
3158
3159 httpAddrFreeList(addrlist);
3160 }
3161 else if (!_cups_strcasecmp(line, "BrowseProtocols") ||
3162 !_cups_strcasecmp(line, "BrowseLocalProtocols"))
3163 {
3164 /*
3165 * "BrowseProtocols name [... name]"
3166 * "BrowseLocalProtocols name [... name]"
3167 */
3168
3169 int protocols = parse_protocols(value);
3170
3171 if (protocols < 0)
3172 {
3173 cupsdLogMessage(CUPSD_LOG_ERROR,
3174 "Unknown browse protocol \"%s\" on line %d of %s.",
3175 value, linenum, ConfigurationFile);
3176 break;
3177 }
3178
3179 BrowseLocalProtocols = protocols;
3180 }
3181 else if (!_cups_strcasecmp(line, "DefaultAuthType") && value)
3182 {
3183 /*
3184 * DefaultAuthType {basic,digest,basicdigest,negotiate}
3185 */
3186
3187 if (!_cups_strcasecmp(value, "none"))
3188 default_auth_type = CUPSD_AUTH_NONE;
3189 else if (!_cups_strcasecmp(value, "basic"))
3190 default_auth_type = CUPSD_AUTH_BASIC;
3191 else if (!_cups_strcasecmp(value, "negotiate"))
3192 default_auth_type = CUPSD_AUTH_NEGOTIATE;
3193 else if (!_cups_strcasecmp(value, "auto"))
3194 default_auth_type = CUPSD_AUTH_AUTO;
3195 else
3196 {
3197 cupsdLogMessage(CUPSD_LOG_WARN,
3198 "Unknown default authorization type %s on line %d of %s.",
3199 value, linenum, ConfigurationFile);
3200 if (FatalErrors & CUPSD_FATAL_CONFIG)
3201 return (0);
3202 }
3203 }
3204 #ifdef HAVE_SSL
3205 else if (!_cups_strcasecmp(line, "DefaultEncryption"))
3206 {
3207 /*
3208 * DefaultEncryption {Never,IfRequested,Required}
3209 */
3210
3211 if (!value || !_cups_strcasecmp(value, "never"))
3212 DefaultEncryption = HTTP_ENCRYPT_NEVER;
3213 else if (!_cups_strcasecmp(value, "required"))
3214 DefaultEncryption = HTTP_ENCRYPT_REQUIRED;
3215 else if (!_cups_strcasecmp(value, "ifrequested"))
3216 DefaultEncryption = HTTP_ENCRYPT_IF_REQUESTED;
3217 else
3218 {
3219 cupsdLogMessage(CUPSD_LOG_WARN,
3220 "Unknown default encryption %s on line %d of %s.",
3221 value, linenum, ConfigurationFile);
3222 if (FatalErrors & CUPSD_FATAL_CONFIG)
3223 return (0);
3224 }
3225 }
3226 #endif /* HAVE_SSL */
3227 else if (!_cups_strcasecmp(line, "HostNameLookups") && value)
3228 {
3229 /*
3230 * Do hostname lookups?
3231 */
3232
3233 if (!_cups_strcasecmp(value, "off") || !_cups_strcasecmp(value, "no") ||
3234 !_cups_strcasecmp(value, "false"))
3235 HostNameLookups = 0;
3236 else if (!_cups_strcasecmp(value, "on") || !_cups_strcasecmp(value, "yes") ||
3237 !_cups_strcasecmp(value, "true"))
3238 HostNameLookups = 1;
3239 else if (!_cups_strcasecmp(value, "double"))
3240 HostNameLookups = 2;
3241 else
3242 cupsdLogMessage(CUPSD_LOG_WARN, "Unknown HostNameLookups %s on line %d of %s.",
3243 value, linenum, ConfigurationFile);
3244 }
3245 else if (!_cups_strcasecmp(line, "AccessLogLevel") && value)
3246 {
3247 /*
3248 * Amount of logging to do to access log...
3249 */
3250
3251 if (!_cups_strcasecmp(value, "all"))
3252 AccessLogLevel = CUPSD_ACCESSLOG_ALL;
3253 else if (!_cups_strcasecmp(value, "actions"))
3254 AccessLogLevel = CUPSD_ACCESSLOG_ACTIONS;
3255 else if (!_cups_strcasecmp(value, "config"))
3256 AccessLogLevel = CUPSD_ACCESSLOG_CONFIG;
3257 else if (!_cups_strcasecmp(value, "none"))
3258 AccessLogLevel = CUPSD_ACCESSLOG_NONE;
3259 else
3260 cupsdLogMessage(CUPSD_LOG_WARN, "Unknown AccessLogLevel %s on line %d of %s.",
3261 value, linenum, ConfigurationFile);
3262 }
3263 else if (!_cups_strcasecmp(line, "LogLevel") && value)
3264 {
3265 /*
3266 * Amount of logging to do to error log...
3267 */
3268
3269 if (!_cups_strcasecmp(value, "debug2"))
3270 LogLevel = CUPSD_LOG_DEBUG2;
3271 else if (!_cups_strcasecmp(value, "debug"))
3272 LogLevel = CUPSD_LOG_DEBUG;
3273 else if (!_cups_strcasecmp(value, "info"))
3274 LogLevel = CUPSD_LOG_INFO;
3275 else if (!_cups_strcasecmp(value, "notice"))
3276 LogLevel = CUPSD_LOG_NOTICE;
3277 else if (!_cups_strcasecmp(value, "warn"))
3278 LogLevel = CUPSD_LOG_WARN;
3279 else if (!_cups_strcasecmp(value, "error"))
3280 LogLevel = CUPSD_LOG_ERROR;
3281 else if (!_cups_strcasecmp(value, "crit"))
3282 LogLevel = CUPSD_LOG_CRIT;
3283 else if (!_cups_strcasecmp(value, "alert"))
3284 LogLevel = CUPSD_LOG_ALERT;
3285 else if (!_cups_strcasecmp(value, "emerg"))
3286 LogLevel = CUPSD_LOG_EMERG;
3287 else if (!_cups_strcasecmp(value, "none"))
3288 LogLevel = CUPSD_LOG_NONE;
3289 else
3290 cupsdLogMessage(CUPSD_LOG_WARN, "Unknown LogLevel %s on line %d of %s.",
3291 value, linenum, ConfigurationFile);
3292 }
3293 else if (!_cups_strcasecmp(line, "LogTimeFormat") && value)
3294 {
3295 /*
3296 * Amount of logging to do to error log...
3297 */
3298
3299 if (!_cups_strcasecmp(value, "standard"))
3300 LogTimeFormat = CUPSD_TIME_STANDARD;
3301 else if (!_cups_strcasecmp(value, "usecs"))
3302 LogTimeFormat = CUPSD_TIME_USECS;
3303 else
3304 cupsdLogMessage(CUPSD_LOG_WARN, "Unknown LogTimeFormat %s on line %d of %s.",
3305 value, linenum, ConfigurationFile);
3306 }
3307 else if (!_cups_strcasecmp(line, "ServerTokens") && value)
3308 {
3309 /*
3310 * Set the string used for the Server header...
3311 */
3312
3313 struct utsname plat; /* Platform info */
3314
3315
3316 uname(&plat);
3317
3318 if (!_cups_strcasecmp(value, "ProductOnly"))
3319 cupsdSetString(&ServerHeader, "CUPS IPP");
3320 else if (!_cups_strcasecmp(value, "Major"))
3321 cupsdSetStringf(&ServerHeader, "CUPS/%d IPP/2", CUPS_VERSION_MAJOR);
3322 else if (!_cups_strcasecmp(value, "Minor"))
3323 cupsdSetStringf(&ServerHeader, "CUPS/%d.%d IPP/2.1", CUPS_VERSION_MAJOR,
3324 CUPS_VERSION_MINOR);
3325 else if (!_cups_strcasecmp(value, "Minimal"))
3326 cupsdSetString(&ServerHeader, CUPS_MINIMAL " IPP/2.1");
3327 else if (!_cups_strcasecmp(value, "OS"))
3328 cupsdSetStringf(&ServerHeader, CUPS_MINIMAL " (%s %s) IPP/2.1",
3329 plat.sysname, plat.release);
3330 else if (!_cups_strcasecmp(value, "Full"))
3331 cupsdSetStringf(&ServerHeader, CUPS_MINIMAL " (%s %s; %s) IPP/2.1",
3332 plat.sysname, plat.release, plat.machine);
3333 else if (!_cups_strcasecmp(value, "None"))
3334 cupsdSetString(&ServerHeader, "");
3335 else
3336 cupsdLogMessage(CUPSD_LOG_WARN, "Unknown ServerTokens %s on line %d of %s.",
3337 value, linenum, ConfigurationFile);
3338 }
3339 else if (!_cups_strcasecmp(line, "PassEnv") && value)
3340 {
3341 /*
3342 * PassEnv variable [... variable]
3343 */
3344
3345 for (; *value;)
3346 {
3347 for (valuelen = 0; value[valuelen]; valuelen ++)
3348 if (_cups_isspace(value[valuelen]) || value[valuelen] == ',')
3349 break;
3350
3351 if (value[valuelen])
3352 {
3353 value[valuelen] = '\0';
3354 valuelen ++;
3355 }
3356
3357 cupsdSetEnv(value, NULL);
3358
3359 for (value += valuelen; *value; value ++)
3360 if (!_cups_isspace(*value) || *value != ',')
3361 break;
3362 }
3363 }
3364 else if (!_cups_strcasecmp(line, "ServerAlias") && value)
3365 {
3366 /*
3367 * ServerAlias name [... name]
3368 */
3369
3370 if (!ServerAlias)
3371 ServerAlias = cupsArrayNew(NULL, NULL);
3372
3373 for (; *value;)
3374 {
3375 for (valuelen = 0; value[valuelen]; valuelen ++)
3376 if (_cups_isspace(value[valuelen]) || value[valuelen] == ',')
3377 break;
3378
3379 if (value[valuelen])
3380 {
3381 value[valuelen] = '\0';
3382 valuelen ++;
3383 }
3384
3385 cupsdAddAlias(ServerAlias, value);
3386
3387 for (value += valuelen; *value; value ++)
3388 if (!_cups_isspace(*value) || *value != ',')
3389 break;
3390 }
3391 }
3392 else if (!_cups_strcasecmp(line, "SetEnv") && value)
3393 {
3394 /*
3395 * SetEnv variable value
3396 */
3397
3398 for (valueptr = value; *valueptr && !isspace(*valueptr & 255); valueptr ++);
3399
3400 if (*valueptr)
3401 {
3402 /*
3403 * Found a value...
3404 */
3405
3406 while (isspace(*valueptr & 255))
3407 *valueptr++ = '\0';
3408
3409 cupsdSetEnv(value, valueptr);
3410 }
3411 else
3412 cupsdLogMessage(CUPSD_LOG_ERROR,
3413 "Missing value for SetEnv directive on line %d of %s.",
3414 linenum, ConfigurationFile);
3415 }
3416 else if (!_cups_strcasecmp(line, "AccessLog") ||
3417 !_cups_strcasecmp(line, "CacheDir") ||
3418 !_cups_strcasecmp(line, "ConfigFilePerm") ||
3419 !_cups_strcasecmp(line, "DataDir") ||
3420 !_cups_strcasecmp(line, "DocumentRoot") ||
3421 !_cups_strcasecmp(line, "ErrorLog") ||
3422 !_cups_strcasecmp(line, "FatalErrors") ||
3423 !_cups_strcasecmp(line, "FileDevice") ||
3424 !_cups_strcasecmp(line, "FontPath") ||
3425 !_cups_strcasecmp(line, "Group") ||
3426 !_cups_strcasecmp(line, "LogFilePerm") ||
3427 !_cups_strcasecmp(line, "LPDConfigFile") ||
3428 !_cups_strcasecmp(line, "PageLog") ||
3429 !_cups_strcasecmp(line, "Printcap") ||
3430 !_cups_strcasecmp(line, "PrintcapFormat") ||
3431 !_cups_strcasecmp(line, "RemoteRoot") ||
3432 !_cups_strcasecmp(line, "RequestRoot") ||
3433 !_cups_strcasecmp(line, "ServerBin") ||
3434 !_cups_strcasecmp(line, "ServerCertificate") ||
3435 !_cups_strcasecmp(line, "ServerKey") ||
3436 !_cups_strcasecmp(line, "ServerKeychain") ||
3437 !_cups_strcasecmp(line, "ServerRoot") ||
3438 !_cups_strcasecmp(line, "SMBConfigFile") ||
3439 !_cups_strcasecmp(line, "StateDir") ||
3440 !_cups_strcasecmp(line, "SystemGroup") ||
3441 !_cups_strcasecmp(line, "SystemGroupAuthKey") ||
3442 !_cups_strcasecmp(line, "TempDir") ||
3443 !_cups_strcasecmp(line, "User"))
3444 {
3445 cupsdLogMessage(CUPSD_LOG_INFO,
3446 "Please move \"%s%s%s\" on line %d of %s to the %s file; "
3447 "this will become an error in a future release.",
3448 line, value ? " " : "", value ? value : "", linenum,
3449 ConfigurationFile, CupsFilesFile);
3450 }
3451 else
3452 parse_variable(ConfigurationFile, linenum, line, value,
3453 sizeof(cupsd_vars) / sizeof(cupsd_vars[0]), cupsd_vars);
3454 }
3455
3456 return (1);
3457 }
3458
3459
3460 /*
3461 * 'read_cups_files_conf()' - Read the cups-files.conf configuration file.
3462 */
3463
3464 static int /* O - 1 on success, 0 on failure */
3465 read_cups_files_conf(cups_file_t *fp) /* I - File to read from */
3466 {
3467 int linenum; /* Current line number */
3468 char line[HTTP_MAX_BUFFER], /* Line from file */
3469 *value; /* Value from line */
3470 struct group *group; /* Group */
3471
3472
3473 /*
3474 * Loop through each line in the file...
3475 */
3476
3477 linenum = 0;
3478
3479 while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
3480 {
3481 if (!_cups_strcasecmp(line, "FatalErrors"))
3482 FatalErrors = parse_fatal_errors(value);
3483 else if (!_cups_strcasecmp(line, "Group") && value)
3484 {
3485 /*
3486 * Group ID to run as...
3487 */
3488
3489 if (isdigit(value[0]))
3490 Group = (gid_t)atoi(value);
3491 else
3492 {
3493 endgrent();
3494 group = getgrnam(value);
3495
3496 if (group != NULL)
3497 Group = group->gr_gid;
3498 else
3499 {
3500 cupsdLogMessage(CUPSD_LOG_ERROR,
3501 "Unknown Group \"%s\" on line %d of %s.", value,
3502 linenum, CupsFilesFile);
3503 if (FatalErrors & CUPSD_FATAL_CONFIG)
3504 return (0);
3505 }
3506 }
3507 }
3508 else if (!_cups_strcasecmp(line, "PrintcapFormat") && value)
3509 {
3510 /*
3511 * Format of printcap file?
3512 */
3513
3514 if (!_cups_strcasecmp(value, "bsd"))
3515 PrintcapFormat = PRINTCAP_BSD;
3516 else if (!_cups_strcasecmp(value, "plist"))
3517 PrintcapFormat = PRINTCAP_PLIST;
3518 else if (!_cups_strcasecmp(value, "solaris"))
3519 PrintcapFormat = PRINTCAP_SOLARIS;
3520 else
3521 {
3522 cupsdLogMessage(CUPSD_LOG_ERROR,
3523 "Unknown PrintcapFormat \"%s\" on line %d of %s.",
3524 value, linenum, CupsFilesFile);
3525 if (FatalErrors & CUPSD_FATAL_CONFIG)
3526 return (0);
3527 }
3528 }
3529 else if (!_cups_strcasecmp(line, "Sandboxing") && value)
3530 {
3531 /*
3532 * Level of sandboxing?
3533 */
3534
3535 if (!_cups_strcasecmp(value, "off") && getuid())
3536 {
3537 Sandboxing = CUPSD_SANDBOXING_OFF;
3538 cupsdLogMessage(CUPSD_LOG_WARN, "Disabling sandboxing is not recommended (line %d of %s)", linenum, CupsFilesFile);
3539 }
3540 else if (!_cups_strcasecmp(value, "relaxed"))
3541 Sandboxing = CUPSD_SANDBOXING_RELAXED;
3542 else if (!_cups_strcasecmp(value, "strict"))
3543 Sandboxing = CUPSD_SANDBOXING_STRICT;
3544 else
3545 {
3546 cupsdLogMessage(CUPSD_LOG_ERROR,
3547 "Unknown Sandboxing \"%s\" on line %d of %s.",
3548 value, linenum, CupsFilesFile);
3549 if (FatalErrors & CUPSD_FATAL_CONFIG)
3550 return (0);
3551 }
3552 }
3553 else if (!_cups_strcasecmp(line, "SystemGroup") && value)
3554 {
3555 /*
3556 * SystemGroup (admin) group(s)...
3557 */
3558
3559 if (!parse_groups(value, linenum))
3560 {
3561 if (FatalErrors & CUPSD_FATAL_CONFIG)
3562 return (0);
3563 }
3564 }
3565 else if (!_cups_strcasecmp(line, "User") && value)
3566 {
3567 /*
3568 * User ID to run as...
3569 */
3570
3571 if (isdigit(value[0] & 255))
3572 {
3573 int uid = atoi(value);
3574
3575 if (!uid)
3576 {
3577 cupsdLogMessage(CUPSD_LOG_ERROR,
3578 "Will not use User 0 as specified on line %d of %s "
3579 "for security reasons. You must use a non-"
3580 "privileged account instead.",
3581 linenum, CupsFilesFile);
3582 if (FatalErrors & CUPSD_FATAL_CONFIG)
3583 return (0);
3584 }
3585 else
3586 User = (uid_t)atoi(value);
3587 }
3588 else
3589 {
3590 struct passwd *p; /* Password information */
3591
3592 endpwent();
3593 p = getpwnam(value);
3594
3595 if (p)
3596 {
3597 if (!p->pw_uid)
3598 {
3599 cupsdLogMessage(CUPSD_LOG_ERROR,
3600 "Will not use User %s (UID=0) as specified on line "
3601 "%d of %s for security reasons. You must use a "
3602 "non-privileged account instead.",
3603 value, linenum, CupsFilesFile);
3604 if (FatalErrors & CUPSD_FATAL_CONFIG)
3605 return (0);
3606 }
3607 else
3608 User = p->pw_uid;
3609 }
3610 else
3611 {
3612 cupsdLogMessage(CUPSD_LOG_ERROR,
3613 "Unknown User \"%s\" on line %d of %s.",
3614 value, linenum, CupsFilesFile);
3615 if (FatalErrors & CUPSD_FATAL_CONFIG)
3616 return (0);
3617 }
3618 }
3619 }
3620 else if (!_cups_strcasecmp(line, "ServerCertificate") ||
3621 !_cups_strcasecmp(line, "ServerKey"))
3622 {
3623 cupsdLogMessage(CUPSD_LOG_INFO,
3624 "The \"%s\" directive on line %d of %s is no longer "
3625 "supported; this will become an error in a future "
3626 "release.",
3627 line, linenum, CupsFilesFile);
3628 }
3629 else if (!parse_variable(CupsFilesFile, linenum, line, value,
3630 sizeof(cupsfiles_vars) / sizeof(cupsfiles_vars[0]),
3631 cupsfiles_vars) &&
3632 (FatalErrors & CUPSD_FATAL_CONFIG))
3633 return (0);
3634 }
3635
3636 return (1);
3637 }
3638
3639
3640 /*
3641 * 'read_location()' - Read a <Location path> definition.
3642 */
3643
3644 static int /* O - New line number or 0 on error */
3645 read_location(cups_file_t *fp, /* I - Configuration file */
3646 char *location, /* I - Location name/path */
3647 int linenum) /* I - Current line number */
3648 {
3649 cupsd_location_t *loc, /* New location */
3650 *parent; /* Parent location */
3651 char line[HTTP_MAX_BUFFER],
3652 /* Line buffer */
3653 *value, /* Value for directive */
3654 *valptr; /* Pointer into value */
3655
3656
3657 if ((parent = cupsdFindLocation(location)) != NULL)
3658 cupsdLogMessage(CUPSD_LOG_WARN, "Duplicate <Location %s> on line %d of %s.",
3659 location, linenum, ConfigurationFile);
3660 else if ((parent = cupsdNewLocation(location)) == NULL)
3661 return (0);
3662 else
3663 {
3664 cupsdAddLocation(parent);
3665
3666 parent->limit = CUPSD_AUTH_LIMIT_ALL;
3667 }
3668
3669 loc = parent;
3670
3671 while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
3672 {
3673 /*
3674 * Decode the directive...
3675 */
3676
3677 if (!_cups_strcasecmp(line, "</Location>"))
3678 return (linenum);
3679 else if (!_cups_strcasecmp(line, "<Limit") ||
3680 !_cups_strcasecmp(line, "<LimitExcept"))
3681 {
3682 if (!value)
3683 {
3684 cupsdLogMessage(CUPSD_LOG_ERROR, "Syntax error on line %d of %s.", linenum, ConfigurationFile);
3685 if (FatalErrors & CUPSD_FATAL_CONFIG)
3686 return (0);
3687 else
3688 continue;
3689 }
3690
3691 if ((loc = cupsdCopyLocation(parent)) == NULL)
3692 return (0);
3693
3694 cupsdAddLocation(loc);
3695
3696 loc->limit = 0;
3697 while (*value)
3698 {
3699 for (valptr = value; !isspace(*valptr & 255) && *valptr; valptr ++);
3700
3701 if (*valptr)
3702 *valptr++ = '\0';
3703
3704 if (!strcmp(value, "ALL"))
3705 loc->limit = CUPSD_AUTH_LIMIT_ALL;
3706 else if (!strcmp(value, "GET"))
3707 loc->limit |= CUPSD_AUTH_LIMIT_GET;
3708 else if (!strcmp(value, "HEAD"))
3709 loc->limit |= CUPSD_AUTH_LIMIT_HEAD;
3710 else if (!strcmp(value, "OPTIONS"))
3711 loc->limit |= CUPSD_AUTH_LIMIT_OPTIONS;
3712 else if (!strcmp(value, "POST"))
3713 loc->limit |= CUPSD_AUTH_LIMIT_POST;
3714 else if (!strcmp(value, "PUT"))
3715 loc->limit |= CUPSD_AUTH_LIMIT_PUT;
3716 else if (!strcmp(value, "TRACE"))
3717 loc->limit |= CUPSD_AUTH_LIMIT_TRACE;
3718 else
3719 cupsdLogMessage(CUPSD_LOG_WARN, "Unknown request type %s on line %d of %s.",
3720 value, linenum, ConfigurationFile);
3721
3722 for (value = valptr; isspace(*value & 255); value ++);
3723 }
3724
3725 if (!_cups_strcasecmp(line, "<LimitExcept"))
3726 loc->limit = CUPSD_AUTH_LIMIT_ALL ^ loc->limit;
3727
3728 parent->limit &= ~loc->limit;
3729 }
3730 else if (!_cups_strcasecmp(line, "</Limit>") ||
3731 !_cups_strcasecmp(line, "</LimitExcept>"))
3732 loc = parent;
3733 else if (!value)
3734 {
3735 cupsdLogMessage(CUPSD_LOG_ERROR, "Missing value on line %d of %s.", linenum, ConfigurationFile);
3736 if (FatalErrors & CUPSD_FATAL_CONFIG)
3737 return (0);
3738 }
3739 else if (!parse_aaa(loc, line, value, linenum))
3740 {
3741 cupsdLogMessage(CUPSD_LOG_ERROR,
3742 "Unknown Location directive %s on line %d of %s.",
3743 line, linenum, ConfigurationFile);
3744 if (FatalErrors & CUPSD_FATAL_CONFIG)
3745 return (0);
3746 }
3747 }
3748
3749 cupsdLogMessage(CUPSD_LOG_ERROR,
3750 "Unexpected end-of-file at line %d while reading location.",
3751 linenum);
3752
3753 return ((FatalErrors & CUPSD_FATAL_CONFIG) ? 0 : linenum);
3754 }
3755
3756
3757 /*
3758 * 'read_policy()' - Read a <Policy name> definition.
3759 */
3760
3761 static int /* O - New line number or 0 on error */
3762 read_policy(cups_file_t *fp, /* I - Configuration file */
3763 char *policy, /* I - Location name/path */
3764 int linenum) /* I - Current line number */
3765 {
3766 int i; /* Looping var */
3767 cupsd_policy_t *pol; /* Policy */
3768 cupsd_location_t *op; /* Policy operation */
3769 int num_ops; /* Number of IPP operations */
3770 ipp_op_t ops[100]; /* Operations */
3771 char line[HTTP_MAX_BUFFER],
3772 /* Line buffer */
3773 *value, /* Value for directive */
3774 *valptr; /* Pointer into value */
3775
3776
3777 /*
3778 * Create the policy...
3779 */
3780
3781 if ((pol = cupsdFindPolicy(policy)) != NULL)
3782 cupsdLogMessage(CUPSD_LOG_WARN, "Duplicate <Policy %s> on line %d of %s.",
3783 policy, linenum, ConfigurationFile);
3784 else if ((pol = cupsdAddPolicy(policy)) == NULL)
3785 return (0);
3786
3787 /*
3788 * Read from the file...
3789 */
3790
3791 op = NULL;
3792 num_ops = 0;
3793
3794 while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
3795 {
3796 /*
3797 * Decode the directive...
3798 */
3799
3800 if (!_cups_strcasecmp(line, "</Policy>"))
3801 {
3802 if (op)
3803 cupsdLogMessage(CUPSD_LOG_WARN,
3804 "Missing </Limit> before </Policy> on line %d of %s.",
3805 linenum, ConfigurationFile);
3806
3807 set_policy_defaults(pol);
3808
3809 return (linenum);
3810 }
3811 else if (!_cups_strcasecmp(line, "<Limit") && !op)
3812 {
3813 if (!value)
3814 {
3815 cupsdLogMessage(CUPSD_LOG_ERROR, "Syntax error on line %d of %s.", linenum, ConfigurationFile);
3816 if (FatalErrors & CUPSD_FATAL_CONFIG)
3817 return (0);
3818 else
3819 continue;
3820 }
3821
3822 /*
3823 * Scan for IPP operation names...
3824 */
3825
3826 num_ops = 0;
3827
3828 while (*value)
3829 {
3830 for (valptr = value; !isspace(*valptr & 255) && *valptr; valptr ++);
3831
3832 if (*valptr)
3833 *valptr++ = '\0';
3834
3835 if (num_ops < (int)(sizeof(ops) / sizeof(ops[0])))
3836 {
3837 if (!_cups_strcasecmp(value, "All"))
3838 ops[num_ops] = IPP_ANY_OPERATION;
3839 else if ((ops[num_ops] = ippOpValue(value)) == IPP_BAD_OPERATION)
3840 cupsdLogMessage(CUPSD_LOG_ERROR,
3841 "Bad IPP operation name \"%s\" on line %d of %s.",
3842 value, linenum, ConfigurationFile);
3843 else
3844 num_ops ++;
3845 }
3846 else
3847 cupsdLogMessage(CUPSD_LOG_ERROR,
3848 "Too many operations listed on line %d of %s.",
3849 linenum, ConfigurationFile);
3850
3851 for (value = valptr; isspace(*value & 255); value ++);
3852 }
3853
3854 /*
3855 * If none are specified, apply the policy to all operations...
3856 */
3857
3858 if (num_ops == 0)
3859 {
3860 ops[0] = IPP_ANY_OPERATION;
3861 num_ops = 1;
3862 }
3863
3864 /*
3865 * Add a new policy for the first operation...
3866 */
3867
3868 op = cupsdAddPolicyOp(pol, NULL, ops[0]);
3869 }
3870 else if (!_cups_strcasecmp(line, "</Limit>") && op)
3871 {
3872 /*
3873 * Finish the current operation limit...
3874 */
3875
3876 if (num_ops > 1)
3877 {
3878 /*
3879 * Copy the policy to the other operations...
3880 */
3881
3882 for (i = 1; i < num_ops; i ++)
3883 cupsdAddPolicyOp(pol, op, ops[i]);
3884 }
3885
3886 op = NULL;
3887 }
3888 else if (!value)
3889 {
3890 cupsdLogMessage(CUPSD_LOG_ERROR, "Missing value on line %d of %s.", linenum, ConfigurationFile);
3891 if (FatalErrors & CUPSD_FATAL_CONFIG)
3892 return (0);
3893 }
3894 else if (!_cups_strcasecmp(line, "JobPrivateAccess") ||
3895 !_cups_strcasecmp(line, "JobPrivateValues") ||
3896 !_cups_strcasecmp(line, "SubscriptionPrivateAccess") ||
3897 !_cups_strcasecmp(line, "SubscriptionPrivateValues"))
3898 {
3899 if (op)
3900 {
3901 cupsdLogMessage(CUPSD_LOG_ERROR,
3902 "%s directive must appear outside <Limit>...</Limit> "
3903 "on line %d of %s.", line, linenum, ConfigurationFile);
3904 if (FatalErrors & CUPSD_FATAL_CONFIG)
3905 return (0);
3906 }
3907 else
3908 {
3909 /*
3910 * Pull out whitespace-delimited values...
3911 */
3912
3913 while (*value)
3914 {
3915 /*
3916 * Find the end of the current value...
3917 */
3918
3919 for (valptr = value; !isspace(*valptr & 255) && *valptr; valptr ++);
3920
3921 if (*valptr)
3922 *valptr++ = '\0';
3923
3924 /*
3925 * Save it appropriately...
3926 */
3927
3928 if (!_cups_strcasecmp(line, "JobPrivateAccess"))
3929 {
3930 /*
3931 * JobPrivateAccess {all|default|user/group list|@@ACL}
3932 */
3933
3934 if (!_cups_strcasecmp(value, "default"))
3935 {
3936 cupsdAddString(&(pol->job_access), "@OWNER");
3937 cupsdAddString(&(pol->job_access), "@SYSTEM");
3938 }
3939 else
3940 cupsdAddString(&(pol->job_access), value);
3941 }
3942 else if (!_cups_strcasecmp(line, "JobPrivateValues"))
3943 {
3944 /*
3945 * JobPrivateValues {all|none|default|attribute list}
3946 */
3947
3948 if (!_cups_strcasecmp(value, "default"))
3949 {
3950 cupsdAddString(&(pol->job_attrs), "job-name");
3951 cupsdAddString(&(pol->job_attrs), "job-originating-host-name");
3952 cupsdAddString(&(pol->job_attrs), "job-originating-user-name");
3953 cupsdAddString(&(pol->job_attrs), "phone");
3954 }
3955 else
3956 cupsdAddString(&(pol->job_attrs), value);
3957 }
3958 else if (!_cups_strcasecmp(line, "SubscriptionPrivateAccess"))
3959 {
3960 /*
3961 * SubscriptionPrivateAccess {all|default|user/group list|@@ACL}
3962 */
3963
3964 if (!_cups_strcasecmp(value, "default"))
3965 {
3966 cupsdAddString(&(pol->sub_access), "@OWNER");
3967 cupsdAddString(&(pol->sub_access), "@SYSTEM");
3968 }
3969 else
3970 cupsdAddString(&(pol->sub_access), value);
3971 }
3972 else /* if (!_cups_strcasecmp(line, "SubscriptionPrivateValues")) */
3973 {
3974 /*
3975 * SubscriptionPrivateValues {all|none|default|attribute list}
3976 */
3977
3978 if (!_cups_strcasecmp(value, "default"))
3979 {
3980 cupsdAddString(&(pol->sub_attrs), "notify-events");
3981 cupsdAddString(&(pol->sub_attrs), "notify-pull-method");
3982 cupsdAddString(&(pol->sub_attrs), "notify-recipient-uri");
3983 cupsdAddString(&(pol->sub_attrs), "notify-subscriber-user-name");
3984 cupsdAddString(&(pol->sub_attrs), "notify-user-data");
3985 }
3986 else
3987 cupsdAddString(&(pol->sub_attrs), value);
3988 }
3989
3990 /*
3991 * Find the next string on the line...
3992 */
3993
3994 for (value = valptr; isspace(*value & 255); value ++);
3995 }
3996 }
3997 }
3998 else if (!op)
3999 {
4000 cupsdLogMessage(CUPSD_LOG_ERROR,
4001 "Missing <Limit ops> directive before %s on line %d of %s.",
4002 line, linenum, ConfigurationFile);
4003 if (FatalErrors & CUPSD_FATAL_CONFIG)
4004 return (0);
4005 }
4006 else if (!parse_aaa(op, line, value, linenum))
4007 {
4008 cupsdLogMessage(CUPSD_LOG_ERROR,
4009 "Unknown Policy Limit directive %s on line %d of %s.",
4010 line, linenum, ConfigurationFile);
4011
4012 if (FatalErrors & CUPSD_FATAL_CONFIG)
4013 return (0);
4014 }
4015 }
4016
4017 cupsdLogMessage(CUPSD_LOG_ERROR,
4018 "Unexpected end-of-file at line %d while reading policy "
4019 "\"%s\".", linenum, policy);
4020
4021 return ((FatalErrors & CUPSD_FATAL_CONFIG) ? 0 : linenum);
4022 }
4023
4024
4025 /*
4026 * 'set_policy_defaults()' - Set default policy values as needed.
4027 */
4028
4029 static void
4030 set_policy_defaults(cupsd_policy_t *pol)/* I - Policy */
4031 {
4032 cupsd_location_t *op; /* Policy operation */
4033
4034
4035 /*
4036 * Verify that we have an explicit policy for Validate-Job, Cancel-Jobs,
4037 * Cancel-My-Jobs, Close-Job, and CUPS-Get-Document, which ensures that
4038 * upgrades do not introduce new security issues...
4039 *
4040 * CUPS STR #4659: Allow a lone <Limit All> policy.
4041 */
4042
4043 if (cupsArrayCount(pol->ops) > 1)
4044 {
4045 if ((op = cupsdFindPolicyOp(pol, IPP_VALIDATE_JOB)) == NULL ||
4046 op->op == IPP_ANY_OPERATION)
4047 {
4048 if ((op = cupsdFindPolicyOp(pol, IPP_PRINT_JOB)) != NULL &&
4049 op->op != IPP_ANY_OPERATION)
4050 {
4051 /*
4052 * Add a new limit for Validate-Job using the Print-Job limit as a
4053 * template...
4054 */
4055
4056 cupsdLogMessage(CUPSD_LOG_WARN, "No limit for Validate-Job defined in policy %s - using Print-Job's policy.", pol->name);
4057
4058 cupsdAddPolicyOp(pol, op, IPP_VALIDATE_JOB);
4059 }
4060 else
4061 cupsdLogMessage(CUPSD_LOG_WARN, "No limit for Validate-Job defined in policy %s and no suitable template found.", pol->name);
4062 }
4063
4064 if ((op = cupsdFindPolicyOp(pol, IPP_CANCEL_JOBS)) == NULL ||
4065 op->op == IPP_ANY_OPERATION)
4066 {
4067 if ((op = cupsdFindPolicyOp(pol, IPP_PAUSE_PRINTER)) != NULL &&
4068 op->op != IPP_ANY_OPERATION)
4069 {
4070 /*
4071 * Add a new limit for Cancel-Jobs using the Pause-Printer limit as a
4072 * template...
4073 */
4074
4075 cupsdLogMessage(CUPSD_LOG_WARN, "No limit for Cancel-Jobs defined in policy %s - using Pause-Printer's policy.", pol->name);
4076
4077 cupsdAddPolicyOp(pol, op, IPP_CANCEL_JOBS);
4078 }
4079 else
4080 cupsdLogMessage(CUPSD_LOG_WARN, "No limit for Cancel-Jobs defined in policy %s and no suitable template found.", pol->name);
4081 }
4082
4083 if ((op = cupsdFindPolicyOp(pol, IPP_CANCEL_MY_JOBS)) == NULL ||
4084 op->op == IPP_ANY_OPERATION)
4085 {
4086 if ((op = cupsdFindPolicyOp(pol, IPP_SEND_DOCUMENT)) != NULL &&
4087 op->op != IPP_ANY_OPERATION)
4088 {
4089 /*
4090 * Add a new limit for Cancel-My-Jobs using the Send-Document limit as
4091 * a template...
4092 */
4093
4094 cupsdLogMessage(CUPSD_LOG_WARN, "No limit for Cancel-My-Jobs defined in policy %s - using Send-Document's policy.", pol->name);
4095
4096 cupsdAddPolicyOp(pol, op, IPP_CANCEL_MY_JOBS);
4097 }
4098 else
4099 cupsdLogMessage(CUPSD_LOG_WARN, "No limit for Cancel-My-Jobs defined in policy %s and no suitable template found.", pol->name);
4100 }
4101
4102 if ((op = cupsdFindPolicyOp(pol, IPP_CLOSE_JOB)) == NULL ||
4103 op->op == IPP_ANY_OPERATION)
4104 {
4105 if ((op = cupsdFindPolicyOp(pol, IPP_SEND_DOCUMENT)) != NULL &&
4106 op->op != IPP_ANY_OPERATION)
4107 {
4108 /*
4109 * Add a new limit for Close-Job using the Send-Document limit as a
4110 * template...
4111 */
4112
4113 cupsdLogMessage(CUPSD_LOG_WARN, "No limit for Close-Job defined in policy %s - using Send-Document's policy.", pol->name);
4114
4115 cupsdAddPolicyOp(pol, op, IPP_CLOSE_JOB);
4116 }
4117 else
4118 cupsdLogMessage(CUPSD_LOG_WARN, "No limit for Close-Job defined in policy %s and no suitable template found.", pol->name);
4119 }
4120
4121 if ((op = cupsdFindPolicyOp(pol, CUPS_GET_DOCUMENT)) == NULL ||
4122 op->op == IPP_ANY_OPERATION)
4123 {
4124 if ((op = cupsdFindPolicyOp(pol, IPP_SEND_DOCUMENT)) != NULL &&
4125 op->op != IPP_ANY_OPERATION)
4126 {
4127 /*
4128 * Add a new limit for CUPS-Get-Document using the Send-Document
4129 * limit as a template...
4130 */
4131
4132 cupsdLogMessage(CUPSD_LOG_WARN, "No limit for CUPS-Get-Document defined in policy %s - using Send-Document's policy.", pol->name);
4133
4134 cupsdAddPolicyOp(pol, op, CUPS_GET_DOCUMENT);
4135 }
4136 else
4137 cupsdLogMessage(CUPSD_LOG_WARN, "No limit for CUPS-Get-Document defined in policy %s and no suitable template found.", pol->name);
4138 }
4139 }
4140
4141 /*
4142 * Verify we have JobPrivateAccess, JobPrivateValues,
4143 * SubscriptionPrivateAccess, and SubscriptionPrivateValues in the policy.
4144 */
4145
4146 if (!pol->job_access)
4147 {
4148 cupsdLogMessage(CUPSD_LOG_WARN, "No JobPrivateAccess defined in policy %s - using defaults.", pol->name);
4149 cupsdAddString(&(pol->job_access), "@OWNER");
4150 cupsdAddString(&(pol->job_access), "@SYSTEM");
4151 }
4152
4153 if (!pol->job_attrs)
4154 {
4155 cupsdLogMessage(CUPSD_LOG_WARN, "No JobPrivateValues defined in policy %s - using defaults.", pol->name);
4156 cupsdAddString(&(pol->job_attrs), "job-name");
4157 cupsdAddString(&(pol->job_attrs), "job-originating-host-name");
4158 cupsdAddString(&(pol->job_attrs), "job-originating-user-name");
4159 cupsdAddString(&(pol->job_attrs), "phone");
4160 }
4161
4162 if (!pol->sub_access)
4163 {
4164 cupsdLogMessage(CUPSD_LOG_WARN, "No SubscriptionPrivateAccess defined in policy %s - using defaults.", pol->name);
4165 cupsdAddString(&(pol->sub_access), "@OWNER");
4166 cupsdAddString(&(pol->sub_access), "@SYSTEM");
4167 }
4168
4169 if (!pol->sub_attrs)
4170 {
4171 cupsdLogMessage(CUPSD_LOG_WARN, "No SubscriptionPrivateValues defined in policy %s - using defaults.", pol->name);
4172 cupsdAddString(&(pol->sub_attrs), "notify-events");
4173 cupsdAddString(&(pol->sub_attrs), "notify-pull-method");
4174 cupsdAddString(&(pol->sub_attrs), "notify-recipient-uri");
4175 cupsdAddString(&(pol->sub_attrs), "notify-subscriber-user-name");
4176 cupsdAddString(&(pol->sub_attrs), "notify-user-data");
4177 }
4178 }