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