]> git.ipfire.org Git - thirdparty/cups.git/blob - scheduler/policy.c
Import CUPS 1.4svn r7023 into easysw/current.
[thirdparty/cups.git] / scheduler / policy.c
1 /*
2 * "$Id: policy.c 6895 2007-08-30 00:09:27Z mike $"
3 *
4 * Policy routines for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 2007 by Apple Inc.
7 * Copyright 1997-2006 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 * cupsdAddPolicy() - Add a policy to the system.
18 * cupsdAddPolicyOp() - Add an operation to a policy.
19 * cupsdCheckPolicy() - Check the IPP operation and username against
20 * a policy.
21 * cupsdDeleteAllPolicies() - Delete all policies in memory.
22 * cupsdFindPolicy() - Find a named policy.
23 * cupsdFindPolicyOp() - Find a policy operation.
24 */
25
26 /*
27 * Include necessary headers...
28 */
29
30 #include "cupsd.h"
31
32
33 /*
34 * Local functions...
35 */
36
37 static int compare_ops(cupsd_location_t *a, cupsd_location_t *b);
38 static int compare_policies(cupsd_policy_t *a, cupsd_policy_t *b);
39 static int hash_op(cupsd_location_t *op);
40
41
42 /*
43 * 'AddPolicy()' - Add a policy to the system.
44 */
45
46 cupsd_policy_t * /* O - Policy */
47 cupsdAddPolicy(const char *policy) /* I - Name of policy */
48 {
49 cupsd_policy_t *temp; /* Pointer to policy */
50
51
52 if (!policy)
53 return (NULL);
54
55 if (!Policies)
56 Policies = cupsArrayNew((cups_array_func_t)compare_policies, NULL);
57
58 if (!Policies)
59 return (NULL);
60
61 if ((temp = calloc(1, sizeof(cupsd_policy_t))) != NULL)
62 {
63 cupsdSetString(&temp->name, policy);
64 cupsArrayAdd(Policies, temp);
65 }
66
67 return (temp);
68 }
69
70
71 /*
72 * 'cupsdAddPolicyOp()' - Add an operation to a policy.
73 */
74
75 cupsd_location_t * /* O - New policy operation */
76 cupsdAddPolicyOp(cupsd_policy_t *p, /* I - Policy */
77 cupsd_location_t *po, /* I - Policy operation to copy */
78 ipp_op_t op) /* I - IPP operation code */
79 {
80 int i; /* Looping var */
81 cupsd_location_t *temp; /* New policy operation */
82 char name[1024]; /* Interface name */
83
84
85 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdAddPolicyOp(p=%p, po=%p, op=%x(%s))",
86 p, po, op, ippOpString(op));
87
88 if (!p)
89 return (NULL);
90
91 if (!p->ops)
92 p->ops = cupsArrayNew2((cups_array_func_t)compare_ops, NULL,
93 (cups_ahash_func_t)hash_op, 128);
94
95 if (!p->ops)
96 return (NULL);
97
98 if ((temp = calloc(1, sizeof(cupsd_location_t))) != NULL)
99 {
100 temp->op = op;
101 temp->limit = AUTH_LIMIT_IPP;
102
103 cupsArrayAdd(p->ops, temp);
104
105 if (po)
106 {
107 /*
108 * Copy the specified policy to the new one...
109 */
110
111 temp->order_type = po->order_type;
112 temp->type = po->type;
113 temp->level = po->level;
114 temp->satisfy = po->satisfy;
115 temp->encryption = po->encryption;
116
117 for (i = 0; i < po->num_names; i ++)
118 cupsdAddName(temp, po->names[i]);
119
120 for (i = 0; i < po->num_allow; i ++)
121 switch (po->allow[i].type)
122 {
123 case AUTH_IP :
124 cupsdAllowIP(temp, po->allow[i].mask.ip.address,
125 po->allow[i].mask.ip.netmask);
126 break;
127
128 case AUTH_INTERFACE :
129 snprintf(name, sizeof(name), "@IF(%s)",
130 po->allow[i].mask.name.name);
131 cupsdAllowHost(temp, name);
132 break;
133
134 default :
135 cupsdAllowHost(temp, po->allow[i].mask.name.name);
136 break;
137 }
138
139 for (i = 0; i < po->num_deny; i ++)
140 switch (po->deny[i].type)
141 {
142 case AUTH_IP :
143 cupsdDenyIP(temp, po->deny[i].mask.ip.address,
144 po->deny[i].mask.ip.netmask);
145 break;
146
147 case AUTH_INTERFACE :
148 snprintf(name, sizeof(name), "@IF(%s)",
149 po->deny[i].mask.name.name);
150 cupsdDenyHost(temp, name);
151 break;
152
153 default :
154 cupsdDenyHost(temp, po->deny[i].mask.name.name);
155 break;
156 }
157 }
158 }
159
160 return (temp);
161 }
162
163
164 /*
165 * 'cupsdCheckPolicy()' - Check the IPP operation and username against a policy.
166 */
167
168 http_status_t /* I - 1 if OK, 0 otherwise */
169 cupsdCheckPolicy(cupsd_policy_t *p, /* I - Policy */
170 cupsd_client_t *con, /* I - Client connection */
171 const char *owner) /* I - Owner of object */
172 {
173 cupsd_location_t *po; /* Current policy operation */
174
175
176 /*
177 * Range check...
178 */
179
180 if (!p || !con)
181 {
182 cupsdLogMessage(CUPSD_LOG_CRIT, "cupsdCheckPolicy: p=%p, con=%p!", p, con);
183
184 return ((http_status_t)0);
185 }
186
187 /*
188 * Find a match for the operation...
189 */
190
191 if ((po = cupsdFindPolicyOp(p, con->request->request.op.operation_id)) == NULL)
192 {
193 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdCheckPolicy: No matching operation, returning 0!");
194 return ((http_status_t)0);
195 }
196
197 con->best = po;
198
199 /*
200 * Return the status of the check...
201 */
202
203 return (cupsdIsAuthorized(con, owner));
204 }
205
206
207 /*
208 * 'cupsdDeleteAllPolicies()' - Delete all policies in memory.
209 */
210
211 void
212 cupsdDeleteAllPolicies(void)
213 {
214 cupsd_policy_t *p; /* Current policy */
215 cupsd_location_t *po; /* Current policy op */
216
217
218 if (!Policies)
219 return;
220
221 for (p = (cupsd_policy_t *)cupsArrayFirst(Policies);
222 p;
223 p = (cupsd_policy_t *)cupsArrayNext(Policies))
224 {
225 for (po = (cupsd_location_t *)cupsArrayFirst(p->ops);
226 po;
227 po = (cupsd_location_t *)cupsArrayNext(p->ops))
228 cupsdDeleteLocation(po);
229
230 cupsArrayDelete(p->ops);
231 cupsdClearString(&p->name);
232 free(p);
233 }
234
235 cupsArrayDelete(Policies);
236
237 Policies = NULL;
238 }
239
240
241 /*
242 * 'cupsdFindPolicy()' - Find a named policy.
243 */
244
245 cupsd_policy_t * /* O - Policy */
246 cupsdFindPolicy(const char *policy) /* I - Name of policy */
247 {
248 cupsd_policy_t key; /* Search key */
249
250
251 /*
252 * Range check...
253 */
254
255 if (!policy)
256 return (NULL);
257
258 /*
259 * Look it up...
260 */
261
262 key.name = (char *)policy;
263 return ((cupsd_policy_t *)cupsArrayFind(Policies, &key));
264 }
265
266
267 /*
268 * 'cupsdFindPolicyOp()' - Find a policy operation.
269 */
270
271 cupsd_location_t * /* O - Policy operation */
272 cupsdFindPolicyOp(cupsd_policy_t *p, /* I - Policy */
273 ipp_op_t op) /* I - IPP operation */
274 {
275 cupsd_location_t key, /* Search key... */
276 *po; /* Current policy operation */
277
278
279 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdFindPolicyOp(p=%p, op=%x(%s))\n",
280 p, op, ippOpString(op));
281
282 /*
283 * Range check...
284 */
285
286 if (!p)
287 return (NULL);
288
289 /*
290 * Check the operation against the available policies...
291 */
292
293 key.op = op;
294 if ((po = (cupsd_location_t *)cupsArrayFind(p->ops, &key)) != NULL)
295 {
296 cupsdLogMessage(CUPSD_LOG_DEBUG2,
297 "cupsdFindPolicyOp: Found exact match...");
298 return (po);
299 }
300
301 key.op = IPP_ANY_OPERATION;
302 if ((po = (cupsd_location_t *)cupsArrayFind(p->ops, &key)) != NULL)
303 {
304 cupsdLogMessage(CUPSD_LOG_DEBUG2,
305 "cupsdFindPolicyOp: Found wildcard match...");
306 return (po);
307 }
308
309 cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdFindPolicyOp: No match found!");
310
311 return (NULL);
312 }
313
314
315 /*
316 * 'compare_ops()' - Compare two operations.
317 */
318
319 static int /* O - Result of comparison */
320 compare_ops(cupsd_location_t *a, /* I - First operation */
321 cupsd_location_t *b) /* I - Second operation */
322 {
323 return (a->op - b->op);
324 }
325
326
327 /*
328 * 'compare_policies()' - Compare two policies.
329 */
330
331 static int /* O - Result of comparison */
332 compare_policies(cupsd_policy_t *a, /* I - First policy */
333 cupsd_policy_t *b) /* I - Second policy */
334 {
335 return (strcasecmp(a->name, b->name));
336 }
337
338
339 /*
340 * 'hash_op()' - Generate a lookup hash for the operation.
341 */
342
343 static int /* O - Hash value */
344 hash_op(cupsd_location_t *op) /* I - Operation */
345 {
346 return (((op->op >> 6) & 0x40) | (op->op & 0x3f));
347 }
348
349
350 /*
351 * End of "$Id: policy.c 6895 2007-08-30 00:09:27Z mike $".
352 */