]>
Commit | Line | Data |
---|---|---|
ef416fc2 | 1 | /* |
f2d18633 | 2 | * "$Id$" |
ef416fc2 | 3 | * |
5ec1fd3d | 4 | * Client routines for the CUPS scheduler. |
ef416fc2 | 5 | * |
5e6c3df7 | 6 | * Copyright 2007-2015 by Apple Inc. |
5ec1fd3d | 7 | * Copyright 1997-2007 by Easy Software Products, all rights reserved. |
f7deaa1a | 8 | * |
5ec1fd3d MS |
9 | * This file contains Kerberos support code, copyright 2006 by |
10 | * Jelmer Vernooij. | |
ef416fc2 | 11 | * |
5ec1fd3d MS |
12 | * These coded instructions, statements, and computer programs are the |
13 | * property of Apple Inc. and are protected by Federal copyright | |
14 | * law. Distribution and use rights are outlined in the file "LICENSE.txt" | |
15 | * which should have been included with this file. If this file is | |
16 | * file is missing or damaged, see the license at "http://www.cups.org/". | |
ef416fc2 | 17 | */ |
18 | ||
19 | /* | |
20 | * Include necessary headers... | |
21 | */ | |
22 | ||
5ec1fd3d | 23 | #define _CUPS_NO_DEPRECATED |
d21dc0ed | 24 | #define _HTTP_NO_PRIVATE |
ef416fc2 | 25 | #include "cupsd.h" |
26 | ||
cb7f98ee MS |
27 | #ifdef __APPLE__ |
28 | # include <libproc.h> | |
29 | #endif /* __APPLE__ */ | |
749b1e90 MS |
30 | #ifdef HAVE_TCPD_H |
31 | # include <tcpd.h> | |
32 | #endif /* HAVE_TCPD_H */ | |
33 | ||
ef416fc2 | 34 | |
35 | /* | |
36 | * Local functions... | |
37 | */ | |
38 | ||
39 | static int check_if_modified(cupsd_client_t *con, | |
40 | struct stat *filestats); | |
3dfe78b3 MS |
41 | static int compare_clients(cupsd_client_t *a, cupsd_client_t *b, |
42 | void *data); | |
d3d89474 MS |
43 | #ifdef HAVE_SSL |
44 | static int cupsd_start_tls(cupsd_client_t *con, http_encryption_t e); | |
45 | #endif /* HAVE_SSL */ | |
f7deaa1a | 46 | static char *get_file(cupsd_client_t *con, struct stat *filestats, |
07623986 | 47 | char *filename, size_t len); |
c41769ff | 48 | static http_status_t install_cupsd_conf(cupsd_client_t *con); |
e1d6a774 | 49 | static int is_cgi(cupsd_client_t *con, const char *filename, |
50 | struct stat *filestats, mime_type_t *type); | |
ef416fc2 | 51 | static int is_path_absolute(const char *path); |
52 | static int pipe_command(cupsd_client_t *con, int infile, int *outfile, | |
53 | char *command, char *options, int root); | |
e07d4801 | 54 | static int valid_host(cupsd_client_t *con); |
a74454a7 | 55 | static int write_file(cupsd_client_t *con, http_status_t code, |
56 | char *filename, char *type, | |
57 | struct stat *filestats); | |
f899b121 | 58 | static void write_pipe(cupsd_client_t *con); |
ef416fc2 | 59 | |
60 | ||
61 | /* | |
62 | * 'cupsdAcceptClient()' - Accept a new client. | |
63 | */ | |
64 | ||
65 | void | |
66 | cupsdAcceptClient(cupsd_listener_t *lis)/* I - Listener socket */ | |
67 | { | |
48bd1142 | 68 | const char *hostname; /* Hostname of client */ |
996acce8 | 69 | char name[256]; /* Hostname of client */ |
ef416fc2 | 70 | int count; /* Count of connections on a host */ |
bd7854cb | 71 | cupsd_client_t *con, /* New client pointer */ |
72 | *tempcon; /* Temporary client pointer */ | |
ef416fc2 | 73 | socklen_t addrlen; /* Length of address */ |
ef416fc2 | 74 | http_addr_t temp; /* Temporary address variable */ |
75 | static time_t last_dos = 0; /* Time of last DoS attack */ | |
749b1e90 MS |
76 | #ifdef HAVE_TCPD_H |
77 | struct request_info wrap_req; /* TCP wrappers request information */ | |
78 | #endif /* HAVE_TCPD_H */ | |
ef416fc2 | 79 | |
80 | ||
ffe32673 | 81 | cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdAcceptClient(lis=%p(%d)) Clients=%d", lis, lis->fd, cupsArrayCount(Clients)); |
ef416fc2 | 82 | |
83 | /* | |
84 | * Make sure we don't have a full set of clients already... | |
85 | */ | |
86 | ||
bd7854cb | 87 | if (cupsArrayCount(Clients) == MaxClients) |
ef416fc2 | 88 | return; |
89 | ||
90 | /* | |
91 | * Get a pointer to the next available client... | |
92 | */ | |
93 | ||
bd7854cb | 94 | if (!Clients) |
95 | Clients = cupsArrayNew(NULL, NULL); | |
96 | ||
97 | if (!Clients) | |
91c84a35 MS |
98 | { |
99 | cupsdLogMessage(CUPSD_LOG_ERROR, | |
3dfe78b3 MS |
100 | "Unable to allocate memory for clients array!"); |
101 | cupsdPauseListening(); | |
102 | return; | |
103 | } | |
104 | ||
105 | if (!ActiveClients) | |
106 | ActiveClients = cupsArrayNew((cups_array_func_t)compare_clients, NULL); | |
107 | ||
108 | if (!ActiveClients) | |
109 | { | |
110 | cupsdLogMessage(CUPSD_LOG_ERROR, | |
111 | "Unable to allocate memory for active clients array!"); | |
91c84a35 | 112 | cupsdPauseListening(); |
bd7854cb | 113 | return; |
91c84a35 | 114 | } |
bd7854cb | 115 | |
91c84a35 MS |
116 | if ((con = calloc(1, sizeof(cupsd_client_t))) == NULL) |
117 | { | |
118 | cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to allocate memory for client!"); | |
119 | cupsdPauseListening(); | |
120 | return; | |
121 | } | |
ef416fc2 | 122 | |
ef416fc2 | 123 | /* |
124 | * Accept the client and get the remote address... | |
125 | */ | |
126 | ||
996acce8 MS |
127 | con->number = ++ LastClientNumber; |
128 | con->file = -1; | |
ef416fc2 | 129 | |
996acce8 | 130 | if ((con->http = httpAcceptConnection(lis->fd, 0)) == NULL) |
ef416fc2 | 131 | { |
76cd9e37 MS |
132 | if (errno == ENFILE || errno == EMFILE) |
133 | cupsdPauseListening(); | |
134 | ||
ef416fc2 | 135 | cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to accept client connection - %s.", |
136 | strerror(errno)); | |
bd7854cb | 137 | free(con); |
76cd9e37 | 138 | |
ef416fc2 | 139 | return; |
140 | } | |
141 | ||
22c9029b | 142 | /* |
996acce8 | 143 | * Save the connected address and port number... |
22c9029b | 144 | */ |
ef416fc2 | 145 | |
cd1a83ea MS |
146 | addrlen = sizeof(con->clientaddr); |
147 | ||
148 | if (getsockname(httpGetFd(con->http), (struct sockaddr *)&con->clientaddr, &addrlen) || addrlen == 0) | |
149 | con->clientaddr = lis->address; | |
150 | ||
151 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Server address is \"%s\".", httpAddrString(&con->clientaddr, name, sizeof(name))); | |
ef416fc2 | 152 | |
ef416fc2 | 153 | /* |
154 | * Check the number of clients on the same address... | |
155 | */ | |
156 | ||
bd7854cb | 157 | for (count = 0, tempcon = (cupsd_client_t *)cupsArrayFirst(Clients); |
158 | tempcon; | |
159 | tempcon = (cupsd_client_t *)cupsArrayNext(Clients)) | |
996acce8 | 160 | if (httpAddrEqual(httpGetAddress(tempcon->http), httpGetAddress(con->http))) |
ef416fc2 | 161 | { |
162 | count ++; | |
163 | if (count >= MaxClientsPerHost) | |
164 | break; | |
165 | } | |
166 | ||
167 | if (count >= MaxClientsPerHost) | |
168 | { | |
169 | if ((time(NULL) - last_dos) >= 60) | |
170 | { | |
171 | last_dos = time(NULL); | |
172 | cupsdLogMessage(CUPSD_LOG_WARN, | |
bd7854cb | 173 | "Possible DoS attack - more than %d clients connecting " |
996acce8 | 174 | "from %s.", |
749b1e90 | 175 | MaxClientsPerHost, |
996acce8 | 176 | httpGetHostname(con->http, name, sizeof(name))); |
ef416fc2 | 177 | } |
178 | ||
996acce8 | 179 | httpClose(con->http); |
bd7854cb | 180 | free(con); |
ef416fc2 | 181 | return; |
182 | } | |
183 | ||
184 | /* | |
185 | * Get the hostname or format the IP address as needed... | |
186 | */ | |
187 | ||
48bd1142 MS |
188 | if (HostNameLookups) |
189 | hostname = httpResolveHostname(con->http, NULL, 0); | |
ef416fc2 | 190 | else |
48bd1142 | 191 | hostname = httpGetHostname(con->http, NULL, 0); |
ef416fc2 | 192 | |
193 | if (hostname == NULL && HostNameLookups == 2) | |
194 | { | |
195 | /* | |
196 | * Can't have an unresolved IP address with double-lookups enabled... | |
197 | */ | |
198 | ||
996acce8 | 199 | httpClose(con->http); |
ef416fc2 | 200 | |
996acce8 | 201 | cupsdLogClient(con, CUPSD_LOG_WARN, |
ef416fc2 | 202 | "Name lookup failed - connection from %s closed!", |
5ec1fd3d | 203 | httpGetHostname(con->http, NULL, 0)); |
bd7854cb | 204 | |
205 | free(con); | |
ef416fc2 | 206 | return; |
207 | } | |
208 | ||
209 | if (HostNameLookups == 2) | |
210 | { | |
211 | /* | |
212 | * Do double lookups as needed... | |
213 | */ | |
214 | ||
48bd1142 MS |
215 | http_addrlist_t *addrlist, /* List of addresses */ |
216 | *addr; /* Current address */ | |
217 | ||
218 | if ((addrlist = httpAddrGetList(hostname, AF_UNSPEC, NULL)) != NULL) | |
ef416fc2 | 219 | { |
220 | /* | |
221 | * See if the hostname maps to the same IP address... | |
222 | */ | |
223 | ||
224 | for (addr = addrlist; addr; addr = addr->next) | |
5ec1fd3d | 225 | if (httpAddrEqual(httpGetAddress(con->http), &(addr->addr))) |
ef416fc2 | 226 | break; |
227 | } | |
228 | else | |
229 | addr = NULL; | |
230 | ||
231 | httpAddrFreeList(addrlist); | |
232 | ||
233 | if (!addr) | |
234 | { | |
235 | /* | |
236 | * Can't have a hostname that doesn't resolve to the same IP address | |
237 | * with double-lookups enabled... | |
238 | */ | |
239 | ||
996acce8 | 240 | httpClose(con->http); |
ef416fc2 | 241 | |
996acce8 | 242 | cupsdLogClient(con, CUPSD_LOG_WARN, |
ef416fc2 | 243 | "IP lookup failed - connection from %s closed!", |
5ec1fd3d | 244 | httpGetHostname(con->http, NULL, 0)); |
bd7854cb | 245 | free(con); |
ef416fc2 | 246 | return; |
247 | } | |
248 | } | |
249 | ||
749b1e90 MS |
250 | #ifdef HAVE_TCPD_H |
251 | /* | |
252 | * See if the connection is denied by TCP wrappers... | |
253 | */ | |
254 | ||
996acce8 MS |
255 | request_init(&wrap_req, RQ_DAEMON, "cupsd", RQ_FILE, httpGetFd(con->http), |
256 | NULL); | |
749b1e90 MS |
257 | fromhost(&wrap_req); |
258 | ||
259 | if (!hosts_access(&wrap_req)) | |
260 | { | |
996acce8 | 261 | httpClose(con->http); |
749b1e90 | 262 | |
996acce8 | 263 | cupsdLogClient(con, CUPSD_LOG_WARN, |
749b1e90 | 264 | "Connection from %s refused by /etc/hosts.allow and " |
5ec1fd3d | 265 | "/etc/hosts.deny rules.", httpGetHostname(con->http, NULL, 0)); |
749b1e90 MS |
266 | free(con); |
267 | return; | |
268 | } | |
269 | #endif /* HAVE_TCPD_H */ | |
270 | ||
ef416fc2 | 271 | #ifdef AF_LOCAL |
5ec1fd3d | 272 | if (httpAddrFamily(httpGetAddress(con->http)) == AF_LOCAL) |
cb7f98ee MS |
273 | { |
274 | # ifdef __APPLE__ | |
275 | socklen_t peersize; /* Size of peer credentials */ | |
276 | pid_t peerpid; /* Peer process ID */ | |
996acce8 | 277 | char peername[256]; /* Name of process */ |
cb7f98ee MS |
278 | |
279 | peersize = sizeof(peerpid); | |
3e4dcdb9 | 280 | if (!getsockopt(httpGetFd(con->http), SOL_LOCAL, LOCAL_PEERPID, &peerpid, |
996acce8 | 281 | &peersize)) |
cb7f98ee | 282 | { |
3e4dcdb9 | 283 | if (!proc_name((int)peerpid, peername, sizeof(peername))) |
996acce8 MS |
284 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
285 | "Accepted from %s (Domain ???[%d])", | |
5ec1fd3d | 286 | httpGetHostname(con->http, NULL, 0), (int)peerpid); |
cb7f98ee | 287 | else |
996acce8 MS |
288 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
289 | "Accepted from %s (Domain %s[%d])", | |
3e4dcdb9 | 290 | httpGetHostname(con->http, NULL, 0), peername, (int)peerpid); |
cb7f98ee MS |
291 | } |
292 | else | |
293 | # endif /* __APPLE__ */ | |
294 | ||
996acce8 | 295 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Accepted from %s (Domain)", |
5ec1fd3d | 296 | httpGetHostname(con->http, NULL, 0)); |
cb7f98ee | 297 | } |
ef416fc2 | 298 | else |
299 | #endif /* AF_LOCAL */ | |
996acce8 | 300 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Accepted from %s:%d (IPv%d)", |
5ec1fd3d MS |
301 | httpGetHostname(con->http, NULL, 0), |
302 | httpAddrPort(httpGetAddress(con->http)), | |
303 | httpAddrFamily(httpGetAddress(con->http)) == AF_INET ? 4 : 6); | |
ef416fc2 | 304 | |
305 | /* | |
306 | * Get the local address the client connected to... | |
307 | */ | |
308 | ||
309 | addrlen = sizeof(temp); | |
996acce8 | 310 | if (getsockname(httpGetFd(con->http), (struct sockaddr *)&temp, &addrlen)) |
ef416fc2 | 311 | { |
996acce8 MS |
312 | cupsdLogClient(con, CUPSD_LOG_ERROR, "Unable to get local address - %s", |
313 | strerror(errno)); | |
ef416fc2 | 314 | |
5a9febac | 315 | strlcpy(con->servername, "localhost", sizeof(con->servername)); |
ef416fc2 | 316 | con->serverport = LocalPort; |
317 | } | |
22c9029b | 318 | #ifdef AF_LOCAL |
5ec1fd3d | 319 | else if (httpAddrFamily(&temp) == AF_LOCAL) |
22c9029b | 320 | { |
5a9febac | 321 | strlcpy(con->servername, "localhost", sizeof(con->servername)); |
22c9029b MS |
322 | con->serverport = LocalPort; |
323 | } | |
324 | #endif /* AF_LOCAL */ | |
ef416fc2 | 325 | else |
326 | { | |
22c9029b MS |
327 | if (httpAddrLocalhost(&temp)) |
328 | strlcpy(con->servername, "localhost", sizeof(con->servername)); | |
6961465f | 329 | else if (HostNameLookups) |
22c9029b | 330 | httpAddrLookup(&temp, con->servername, sizeof(con->servername)); |
ef416fc2 | 331 | else |
22c9029b | 332 | httpAddrString(&temp, con->servername, sizeof(con->servername)); |
b19ccc9e | 333 | |
a469f8a5 | 334 | con->serverport = httpAddrPort(&(lis->address)); |
ef416fc2 | 335 | } |
336 | ||
dcb445bc MS |
337 | /* |
338 | * Add the connection to the array of active clients... | |
339 | */ | |
340 | ||
bd7854cb | 341 | cupsArrayAdd(Clients, con); |
342 | ||
ef416fc2 | 343 | /* |
b9faaae1 | 344 | * Add the socket to the server select. |
ef416fc2 | 345 | */ |
346 | ||
996acce8 MS |
347 | cupsdAddSelect(httpGetFd(con->http), (cupsd_selfunc_t)cupsdReadClient, NULL, |
348 | con); | |
ef416fc2 | 349 | |
996acce8 | 350 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Waiting for request."); |
1bc82dd9 | 351 | |
ef416fc2 | 352 | /* |
353 | * Temporarily suspend accept()'s until we lose a client... | |
354 | */ | |
355 | ||
bd7854cb | 356 | if (cupsArrayCount(Clients) == MaxClients) |
ef416fc2 | 357 | cupsdPauseListening(); |
358 | ||
359 | #ifdef HAVE_SSL | |
360 | /* | |
361 | * See if we are connecting on a secure port... | |
362 | */ | |
363 | ||
5ec1fd3d | 364 | if (lis->encryption == HTTP_ENCRYPTION_ALWAYS) |
ef416fc2 | 365 | { |
366 | /* | |
367 | * https connection; go secure... | |
368 | */ | |
369 | ||
d3d89474 | 370 | if (cupsd_start_tls(con, HTTP_ENCRYPTION_ALWAYS)) |
411affcf | 371 | cupsdCloseClient(con); |
ef416fc2 | 372 | } |
373 | else | |
374 | con->auto_ssl = 1; | |
375 | #endif /* HAVE_SSL */ | |
376 | } | |
377 | ||
378 | ||
379 | /* | |
380 | * 'cupsdCloseAllClients()' - Close all remote clients immediately. | |
381 | */ | |
382 | ||
383 | void | |
384 | cupsdCloseAllClients(void) | |
385 | { | |
bd7854cb | 386 | cupsd_client_t *con; /* Current client */ |
387 | ||
388 | ||
ffe32673 | 389 | cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdCloseAllClients() Clients=%d", cupsArrayCount(Clients)); |
b9faaae1 | 390 | |
bd7854cb | 391 | for (con = (cupsd_client_t *)cupsArrayFirst(Clients); |
392 | con; | |
393 | con = (cupsd_client_t *)cupsArrayNext(Clients)) | |
49d87452 MS |
394 | if (cupsdCloseClient(con)) |
395 | cupsdCloseClient(con); | |
ef416fc2 | 396 | } |
397 | ||
398 | ||
399 | /* | |
400 | * 'cupsdCloseClient()' - Close a remote client. | |
401 | */ | |
402 | ||
403 | int /* O - 1 if partial close, 0 if fully closed */ | |
404 | cupsdCloseClient(cupsd_client_t *con) /* I - Client to close */ | |
405 | { | |
406 | int partial; /* Do partial close for SSL? */ | |
ef416fc2 | 407 | |
408 | ||
996acce8 | 409 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Closing connection."); |
ef416fc2 | 410 | |
411 | /* | |
412 | * Flush pending writes before closing... | |
413 | */ | |
414 | ||
996acce8 | 415 | httpFlushWrite(con->http); |
ef416fc2 | 416 | |
417 | partial = 0; | |
418 | ||
ef416fc2 | 419 | if (con->pipe_pid != 0) |
420 | { | |
421 | /* | |
422 | * Stop any CGI process... | |
423 | */ | |
424 | ||
ef416fc2 | 425 | cupsdEndProcess(con->pipe_pid, 1); |
426 | con->pipe_pid = 0; | |
427 | } | |
428 | ||
429 | if (con->file >= 0) | |
430 | { | |
f7deaa1a | 431 | cupsdRemoveSelect(con->file); |
ef416fc2 | 432 | |
ef416fc2 | 433 | close(con->file); |
434 | con->file = -1; | |
435 | } | |
436 | ||
437 | /* | |
438 | * Close the socket and clear the file from the input set for select()... | |
439 | */ | |
440 | ||
996acce8 | 441 | if (httpGetFd(con->http) >= 0) |
ef416fc2 | 442 | { |
3dfe78b3 MS |
443 | cupsArrayRemove(ActiveClients, con); |
444 | cupsdSetBusyState(); | |
445 | ||
5ec1fd3d MS |
446 | #ifdef HAVE_SSL |
447 | /* | |
448 | * Shutdown encryption as needed... | |
449 | */ | |
450 | ||
451 | if (httpIsEncrypted(con->http)) | |
452 | partial = 1; | |
453 | #endif /* HAVE_SSL */ | |
454 | ||
ef416fc2 | 455 | if (partial) |
456 | { | |
457 | /* | |
458 | * Only do a partial close so that the encrypted client gets everything. | |
459 | */ | |
460 | ||
5ec1fd3d | 461 | httpShutdown(con->http); |
996acce8 MS |
462 | cupsdAddSelect(httpGetFd(con->http), (cupsd_selfunc_t)cupsdReadClient, |
463 | NULL, con); | |
1bc82dd9 | 464 | |
996acce8 | 465 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Waiting for socket close."); |
ef416fc2 | 466 | } |
467 | else | |
468 | { | |
469 | /* | |
470 | * Shut the socket down fully... | |
471 | */ | |
472 | ||
996acce8 MS |
473 | cupsdRemoveSelect(httpGetFd(con->http)); |
474 | httpClose(con->http); | |
475 | con->http = NULL; | |
ef416fc2 | 476 | } |
477 | } | |
478 | ||
479 | if (!partial) | |
480 | { | |
481 | /* | |
482 | * Free memory... | |
483 | */ | |
484 | ||
5ec1fd3d MS |
485 | cupsdRemoveSelect(httpGetFd(con->http)); |
486 | ||
996acce8 | 487 | httpClose(con->http); |
ef416fc2 | 488 | |
5e6c3df7 MS |
489 | if (con->filename) |
490 | { | |
491 | unlink(con->filename); | |
492 | cupsdClearString(&con->filename); | |
493 | } | |
494 | ||
ef416fc2 | 495 | cupsdClearString(&con->command); |
496 | cupsdClearString(&con->options); | |
b86bc4cf | 497 | cupsdClearString(&con->query_string); |
ef416fc2 | 498 | |
499 | if (con->request) | |
500 | { | |
501 | ippDelete(con->request); | |
502 | con->request = NULL; | |
503 | } | |
504 | ||
505 | if (con->response) | |
506 | { | |
507 | ippDelete(con->response); | |
508 | con->response = NULL; | |
509 | } | |
510 | ||
511 | if (con->language) | |
512 | { | |
513 | cupsLangFree(con->language); | |
514 | con->language = NULL; | |
515 | } | |
516 | ||
f7deaa1a | 517 | #ifdef HAVE_AUTHORIZATION_H |
518 | if (con->authref) | |
519 | { | |
520 | AuthorizationFree(con->authref, kAuthorizationFlagDefaults); | |
521 | con->authref = NULL; | |
522 | } | |
523 | #endif /* HAVE_AUTHORIZATION_H */ | |
524 | ||
ef416fc2 | 525 | /* |
526 | * Re-enable new client connections if we are going back under the | |
527 | * limit... | |
528 | */ | |
529 | ||
bd7854cb | 530 | if (cupsArrayCount(Clients) == MaxClients) |
ef416fc2 | 531 | cupsdResumeListening(); |
532 | ||
533 | /* | |
534 | * Compact the list of clients as necessary... | |
535 | */ | |
536 | ||
bd7854cb | 537 | cupsArrayRemove(Clients, con); |
ef416fc2 | 538 | |
bd7854cb | 539 | free(con); |
ef416fc2 | 540 | } |
541 | ||
542 | return (partial); | |
543 | } | |
544 | ||
545 | ||
ef416fc2 | 546 | /* |
547 | * 'cupsdReadClient()' - Read data from a client. | |
548 | */ | |
549 | ||
f7deaa1a | 550 | void |
ef416fc2 | 551 | cupsdReadClient(cupsd_client_t *con) /* I - Client to read from */ |
552 | { | |
553 | char line[32768], /* Line from client... */ | |
ef416fc2 | 554 | locale[64], /* Locale */ |
555 | *ptr; /* Pointer into strings */ | |
ef416fc2 | 556 | http_status_t status; /* Transfer status */ |
557 | ipp_state_t ipp_state; /* State of IPP transfer */ | |
558 | int bytes; /* Number of bytes to POST */ | |
559 | char *filename; /* Name of file for GET/HEAD */ | |
560 | char buf[1024]; /* Buffer for real filename */ | |
561 | struct stat filestats; /* File information */ | |
562 | mime_type_t *type; /* MIME type of file */ | |
563 | cupsd_printer_t *p; /* Printer */ | |
564 | static unsigned request_id = 0; /* Request ID for temp files */ | |
565 | ||
566 | ||
5ec1fd3d | 567 | status = HTTP_STATUS_CONTINUE; |
ef416fc2 | 568 | |
ffe32673 | 569 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "cupsdReadClient: error=%d, used=%d, state=%s, data_encoding=HTTP_ENCODING_%s, data_remaining=" CUPS_LLFMT ", request=%p(%s), file=%d", httpError(con->http), (int)httpGetReady(con->http), httpStateString(httpGetState(con->http)), httpIsChunked(con->http) ? "CHUNKED" : "LENGTH", CUPS_LLCAST httpGetRemaining(con->http), con->request, con->request ? ippStateString(ippGetState(con->request)) : "", con->file); |
ef416fc2 | 570 | |
43dcaf3b MS |
571 | if (httpGetState(con->http) == HTTP_STATE_GET_SEND || |
572 | httpGetState(con->http) == HTTP_STATE_POST_SEND || | |
573 | httpGetState(con->http) == HTTP_STATE_STATUS) | |
574 | { | |
575 | /* | |
576 | * If we get called in the wrong state, then something went wrong with the | |
577 | * connection and we need to shut it down... | |
578 | */ | |
579 | ||
bb00c43f MS |
580 | if (!httpGetReady(con->http) && recv(httpGetFd(con->http), buf, 1, MSG_PEEK) < 1) |
581 | { | |
582 | /* | |
583 | * Connection closed... | |
584 | */ | |
585 | ||
586 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Closing on EOF."); | |
587 | cupsdCloseClient(con); | |
588 | return; | |
589 | } | |
590 | ||
ffe32673 | 591 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Closing on unexpected HTTP read state %s.", httpStateString(httpGetState(con->http))); |
43dcaf3b MS |
592 | cupsdCloseClient(con); |
593 | return; | |
594 | } | |
595 | ||
ef416fc2 | 596 | #ifdef HAVE_SSL |
597 | if (con->auto_ssl) | |
598 | { | |
599 | /* | |
600 | * Automatically check for a SSL/TLS handshake... | |
601 | */ | |
602 | ||
603 | con->auto_ssl = 0; | |
604 | ||
996acce8 | 605 | if (recv(httpGetFd(con->http), buf, 1, MSG_PEEK) == 1 && |
ef416fc2 | 606 | (!buf[0] || !strchr("DGHOPT", buf[0]))) |
607 | { | |
608 | /* | |
609 | * Encrypt this connection... | |
610 | */ | |
611 | ||
ffe32673 | 612 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "Saw first byte %02X, auto-negotiating SSL/TLS session.", buf[0] & 255); |
ef416fc2 | 613 | |
d3d89474 | 614 | if (cupsd_start_tls(con, HTTP_ENCRYPTION_ALWAYS)) |
f7deaa1a | 615 | cupsdCloseClient(con); |
411affcf | 616 | |
f7deaa1a | 617 | return; |
ef416fc2 | 618 | } |
619 | } | |
620 | #endif /* HAVE_SSL */ | |
621 | ||
5ec1fd3d | 622 | switch (httpGetState(con->http)) |
ef416fc2 | 623 | { |
cb7f98ee | 624 | case HTTP_STATE_WAITING : |
ef416fc2 | 625 | /* |
626 | * See if we've received a request line... | |
627 | */ | |
628 | ||
d21dc0ed MS |
629 | con->operation = httpReadRequest(con->http, con->uri, sizeof(con->uri)); |
630 | if (con->operation == HTTP_STATE_ERROR || | |
631 | con->operation == HTTP_STATE_UNKNOWN_METHOD || | |
632 | con->operation == HTTP_STATE_UNKNOWN_VERSION) | |
ef416fc2 | 633 | { |
d21dc0ed | 634 | if (httpError(con->http)) |
996acce8 MS |
635 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
636 | "HTTP_STATE_WAITING Closing for error %d (%s)", | |
5ec1fd3d | 637 | httpError(con->http), strerror(httpError(con->http))); |
f11a948a | 638 | else |
996acce8 | 639 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
d21dc0ed MS |
640 | "HTTP_STATE_WAITING Closing on error: %s", |
641 | cupsLastErrorString()); | |
f11a948a | 642 | |
f7deaa1a | 643 | cupsdCloseClient(con); |
644 | return; | |
ef416fc2 | 645 | } |
646 | ||
647 | /* | |
648 | * Ignore blank request lines... | |
649 | */ | |
650 | ||
d21dc0ed | 651 | if (con->operation == HTTP_STATE_WAITING) |
ef416fc2 | 652 | break; |
653 | ||
654 | /* | |
655 | * Clear other state variables... | |
656 | */ | |
657 | ||
d21dc0ed MS |
658 | con->bytes = 0; |
659 | con->file = -1; | |
660 | con->file_ready = 0; | |
661 | con->pipe_pid = 0; | |
662 | con->username[0] = '\0'; | |
663 | con->password[0] = '\0'; | |
ef416fc2 | 664 | |
665 | cupsdClearString(&con->command); | |
666 | cupsdClearString(&con->options); | |
b86bc4cf | 667 | cupsdClearString(&con->query_string); |
ef416fc2 | 668 | |
2abf387c | 669 | if (con->request) |
670 | { | |
671 | ippDelete(con->request); | |
672 | con->request = NULL; | |
673 | } | |
674 | ||
675 | if (con->response) | |
676 | { | |
677 | ippDelete(con->response); | |
678 | con->response = NULL; | |
679 | } | |
680 | ||
681 | if (con->language) | |
ef416fc2 | 682 | { |
683 | cupsLangFree(con->language); | |
684 | con->language = NULL; | |
685 | } | |
686 | ||
09a101d6 | 687 | #ifdef HAVE_GSSAPI |
97c9a8d7 | 688 | con->have_gss = 0; |
07ed0e9a | 689 | con->gss_uid = 0; |
09a101d6 | 690 | #endif /* HAVE_GSSAPI */ |
691 | ||
ef416fc2 | 692 | /* |
693 | * Handle full URLs in the request line... | |
694 | */ | |
695 | ||
696 | if (strcmp(con->uri, "*")) | |
697 | { | |
e6013cfa | 698 | char scheme[HTTP_MAX_URI], /* Method/scheme */ |
ef416fc2 | 699 | userpass[HTTP_MAX_URI], /* Username:password */ |
700 | hostname[HTTP_MAX_URI], /* Hostname */ | |
701 | resource[HTTP_MAX_URI]; /* Resource path */ | |
702 | int port; /* Port number */ | |
703 | ||
ef416fc2 | 704 | /* |
705 | * Separate the URI into its components... | |
706 | */ | |
707 | ||
d21dc0ed MS |
708 | if (httpSeparateURI(HTTP_URI_CODING_MOST, con->uri, |
709 | scheme, sizeof(scheme), | |
710 | userpass, sizeof(userpass), | |
711 | hostname, sizeof(hostname), &port, | |
712 | resource, sizeof(resource)) < HTTP_URI_STATUS_OK) | |
713 | { | |
714 | cupsdLogClient(con, CUPSD_LOG_ERROR, "Bad URI \"%s\" in request.", | |
715 | con->uri); | |
716 | cupsdSendError(con, HTTP_STATUS_METHOD_NOT_ALLOWED, CUPSD_AUTH_NONE); | |
717 | cupsdCloseClient(con); | |
718 | return; | |
719 | } | |
ef416fc2 | 720 | |
d21dc0ed | 721 | /* |
ef416fc2 | 722 | * Only allow URIs with the servername, localhost, or an IP |
723 | * address... | |
724 | */ | |
725 | ||
e6013cfa | 726 | if (strcmp(scheme, "file") && |
88f9aafc MS |
727 | _cups_strcasecmp(hostname, ServerName) && |
728 | _cups_strcasecmp(hostname, "localhost") && | |
d21dc0ed | 729 | !cupsArrayFind(ServerAlias, hostname) && |
e6013cfa | 730 | !isdigit(hostname[0]) && hostname[0] != '[') |
ef416fc2 | 731 | { |
732 | /* | |
733 | * Nope, we don't do proxies... | |
734 | */ | |
735 | ||
996acce8 MS |
736 | cupsdLogClient(con, CUPSD_LOG_ERROR, "Bad URI \"%s\" in request.", |
737 | con->uri); | |
5ec1fd3d | 738 | cupsdSendError(con, HTTP_STATUS_METHOD_NOT_ALLOWED, CUPSD_AUTH_NONE); |
f7deaa1a | 739 | cupsdCloseClient(con); |
740 | return; | |
ef416fc2 | 741 | } |
742 | ||
743 | /* | |
744 | * Copy the resource portion back into the URI; both resource and | |
745 | * con->uri are HTTP_MAX_URI bytes in size... | |
746 | */ | |
747 | ||
5a9febac | 748 | strlcpy(con->uri, resource, sizeof(con->uri)); |
ef416fc2 | 749 | } |
750 | ||
751 | /* | |
752 | * Process the request... | |
753 | */ | |
754 | ||
dfd5680b | 755 | gettimeofday(&(con->start), NULL); |
ef416fc2 | 756 | |
996acce8 | 757 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "%s %s HTTP/%d.%d", |
a73ca01e | 758 | httpStateString(con->operation) + 11, con->uri, |
d21dc0ed MS |
759 | httpGetVersion(con->http) / 100, |
760 | httpGetVersion(con->http) % 100); | |
ef416fc2 | 761 | |
49d87452 MS |
762 | if (!cupsArrayFind(ActiveClients, con)) |
763 | { | |
764 | cupsArrayAdd(ActiveClients, con); | |
765 | cupsdSetBusyState(); | |
766 | } | |
3dfe78b3 | 767 | |
cb7f98ee MS |
768 | case HTTP_STATE_OPTIONS : |
769 | case HTTP_STATE_DELETE : | |
770 | case HTTP_STATE_GET : | |
771 | case HTTP_STATE_HEAD : | |
772 | case HTTP_STATE_POST : | |
773 | case HTTP_STATE_PUT : | |
774 | case HTTP_STATE_TRACE : | |
ef416fc2 | 775 | /* |
776 | * Parse incoming parameters until the status changes... | |
777 | */ | |
778 | ||
5ec1fd3d MS |
779 | while ((status = httpUpdate(con->http)) == HTTP_STATUS_CONTINUE) |
780 | if (!httpGetReady(con->http)) | |
f7deaa1a | 781 | break; |
ef416fc2 | 782 | |
5ec1fd3d | 783 | if (status != HTTP_STATUS_OK && status != HTTP_STATUS_CONTINUE) |
ef416fc2 | 784 | { |
5ec1fd3d | 785 | if (httpError(con->http) && httpError(con->http) != EPIPE) |
996acce8 MS |
786 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
787 | "Closing for error %d (%s) while reading headers.", | |
5ec1fd3d | 788 | httpError(con->http), strerror(httpError(con->http))); |
f11a948a | 789 | else |
996acce8 MS |
790 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
791 | "Closing on EOF while reading headers."); | |
f11a948a | 792 | |
5ec1fd3d | 793 | cupsdSendError(con, HTTP_STATUS_BAD_REQUEST, CUPSD_AUTH_NONE); |
f7deaa1a | 794 | cupsdCloseClient(con); |
795 | return; | |
ef416fc2 | 796 | } |
797 | break; | |
798 | ||
799 | default : | |
5ec1fd3d | 800 | if (!httpGetReady(con->http) && recv(httpGetFd(con->http), buf, 1, MSG_PEEK) < 1) |
e6013cfa MS |
801 | { |
802 | /* | |
803 | * Connection closed... | |
804 | */ | |
805 | ||
996acce8 | 806 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Closing on EOF."); |
e6013cfa MS |
807 | cupsdCloseClient(con); |
808 | return; | |
809 | } | |
ef416fc2 | 810 | break; /* Anti-compiler-warning-code */ |
811 | } | |
812 | ||
813 | /* | |
814 | * Handle new transfers... | |
815 | */ | |
816 | ||
dfc45c1b MS |
817 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Read: status=%d", status); |
818 | ||
5ec1fd3d | 819 | if (status == HTTP_STATUS_OK) |
ef416fc2 | 820 | { |
5ec1fd3d | 821 | if (httpGetField(con->http, HTTP_FIELD_ACCEPT_LANGUAGE)[0]) |
ef416fc2 | 822 | { |
823 | /* | |
824 | * Figure out the locale from the Accept-Language and Content-Type | |
825 | * fields... | |
826 | */ | |
827 | ||
5ec1fd3d | 828 | if ((ptr = strchr(httpGetField(con->http, HTTP_FIELD_ACCEPT_LANGUAGE), |
f11a948a | 829 | ',')) != NULL) |
ef416fc2 | 830 | *ptr = '\0'; |
831 | ||
5ec1fd3d | 832 | if ((ptr = strchr(httpGetField(con->http, HTTP_FIELD_ACCEPT_LANGUAGE), |
f11a948a | 833 | ';')) != NULL) |
ef416fc2 | 834 | *ptr = '\0'; |
835 | ||
5ec1fd3d | 836 | if ((ptr = strstr(httpGetField(con->http, HTTP_FIELD_CONTENT_TYPE), |
f11a948a | 837 | "charset=")) != NULL) |
ef416fc2 | 838 | { |
839 | /* | |
840 | * Combine language and charset, and trim any extra params in the | |
841 | * content-type. | |
842 | */ | |
843 | ||
844 | snprintf(locale, sizeof(locale), "%s.%s", | |
5ec1fd3d | 845 | httpGetField(con->http, HTTP_FIELD_ACCEPT_LANGUAGE), ptr + 8); |
ef416fc2 | 846 | |
847 | if ((ptr = strchr(locale, ',')) != NULL) | |
848 | *ptr = '\0'; | |
849 | } | |
850 | else | |
f8b3a85b | 851 | snprintf(locale, sizeof(locale), "%s.UTF-8", |
5ec1fd3d | 852 | httpGetField(con->http, HTTP_FIELD_ACCEPT_LANGUAGE)); |
d6ae789d | 853 | |
ef416fc2 | 854 | con->language = cupsLangGet(locale); |
855 | } | |
856 | else | |
857 | con->language = cupsLangGet(DefaultLocale); | |
858 | ||
859 | cupsdAuthorize(con); | |
860 | ||
5ec1fd3d | 861 | if (!_cups_strncasecmp(httpGetField(con->http, HTTP_FIELD_CONNECTION), |
85dda01c | 862 | "Keep-Alive", 10) && KeepAlive) |
5ec1fd3d MS |
863 | httpSetKeepAlive(con->http, HTTP_KEEPALIVE_ON); |
864 | else if (!_cups_strncasecmp(httpGetField(con->http, HTTP_FIELD_CONNECTION), | |
85dda01c | 865 | "close", 5)) |
5ec1fd3d | 866 | httpSetKeepAlive(con->http, HTTP_KEEPALIVE_OFF); |
ef416fc2 | 867 | |
5ec1fd3d MS |
868 | if (!httpGetField(con->http, HTTP_FIELD_HOST)[0] && |
869 | httpGetVersion(con->http) >= HTTP_VERSION_1_1) | |
ef416fc2 | 870 | { |
871 | /* | |
872 | * HTTP/1.1 and higher require the "Host:" field... | |
873 | */ | |
874 | ||
5ec1fd3d | 875 | if (!cupsdSendError(con, HTTP_STATUS_BAD_REQUEST, CUPSD_AUTH_NONE)) |
f7deaa1a | 876 | { |
996acce8 | 877 | cupsdLogClient(con, CUPSD_LOG_ERROR, "Missing Host: field in request."); |
f7deaa1a | 878 | cupsdCloseClient(con); |
879 | return; | |
880 | } | |
ef416fc2 | 881 | } |
e07d4801 | 882 | else if (!valid_host(con)) |
e6013cfa MS |
883 | { |
884 | /* | |
885 | * Access to localhost must use "localhost" or the corresponding IPv4 | |
886 | * or IPv6 values in the Host: field. | |
887 | */ | |
888 | ||
996acce8 MS |
889 | cupsdLogClient(con, CUPSD_LOG_ERROR, |
890 | "Request from \"%s\" using invalid Host: field \"%s\".", | |
5ec1fd3d | 891 | httpGetHostname(con->http, NULL, 0), httpGetField(con->http, HTTP_FIELD_HOST)); |
e6013cfa | 892 | |
5ec1fd3d | 893 | if (!cupsdSendError(con, HTTP_STATUS_BAD_REQUEST, CUPSD_AUTH_NONE)) |
e6013cfa MS |
894 | { |
895 | cupsdCloseClient(con); | |
896 | return; | |
897 | } | |
898 | } | |
cb7f98ee | 899 | else if (con->operation == HTTP_STATE_OPTIONS) |
ef416fc2 | 900 | { |
901 | /* | |
902 | * Do OPTIONS command... | |
903 | */ | |
904 | ||
5bd77a73 | 905 | if (con->best && con->best->type != CUPSD_AUTH_NONE) |
ef416fc2 | 906 | { |
a73ca01e MS |
907 | httpClearFields(con->http); |
908 | ||
5ec1fd3d | 909 | if (!cupsdSendHeader(con, HTTP_STATUS_UNAUTHORIZED, NULL, CUPSD_AUTH_NONE)) |
f7deaa1a | 910 | { |
911 | cupsdCloseClient(con); | |
912 | return; | |
913 | } | |
ef416fc2 | 914 | } |
915 | ||
a80b2360 | 916 | if (!_cups_strcasecmp(httpGetField(con->http, HTTP_FIELD_CONNECTION), "Upgrade") && strstr(httpGetField(con->http, HTTP_FIELD_UPGRADE), "TLS/") != NULL && !httpIsEncrypted(con->http)) |
ef416fc2 | 917 | { |
918 | #ifdef HAVE_SSL | |
919 | /* | |
920 | * Do encryption stuff... | |
921 | */ | |
922 | ||
a73ca01e | 923 | httpClearFields(con->http); |
ef416fc2 | 924 | |
e200616a MS |
925 | if (!cupsdSendHeader(con, HTTP_STATUS_SWITCHING_PROTOCOLS, NULL, CUPSD_AUTH_NONE)) |
926 | { | |
927 | cupsdCloseClient(con); | |
928 | return; | |
929 | } | |
e200616a | 930 | |
d3d89474 | 931 | if (cupsd_start_tls(con, HTTP_ENCRYPTION_REQUIRED)) |
f7deaa1a | 932 | { |
933 | cupsdCloseClient(con); | |
934 | return; | |
935 | } | |
ef416fc2 | 936 | #else |
7d5824d6 | 937 | if (!cupsdSendError(con, HTTP_STATUS_NOT_IMPLEMENTED, CUPSD_AUTH_NONE)) |
f7deaa1a | 938 | { |
939 | cupsdCloseClient(con); | |
940 | return; | |
941 | } | |
ef416fc2 | 942 | #endif /* HAVE_SSL */ |
943 | } | |
944 | ||
a73ca01e | 945 | httpClearFields(con->http); |
e200616a MS |
946 | httpSetField(con->http, HTTP_FIELD_ALLOW, |
947 | "GET, HEAD, OPTIONS, POST, PUT"); | |
948 | httpSetField(con->http, HTTP_FIELD_CONTENT_LENGTH, "0"); | |
949 | ||
950 | if (!cupsdSendHeader(con, HTTP_STATUS_OK, NULL, CUPSD_AUTH_NONE)) | |
951 | { | |
952 | cupsdCloseClient(con); | |
953 | return; | |
954 | } | |
ef416fc2 | 955 | } |
956 | else if (!is_path_absolute(con->uri)) | |
957 | { | |
958 | /* | |
959 | * Protect against malicious users! | |
960 | */ | |
961 | ||
996acce8 MS |
962 | cupsdLogClient(con, CUPSD_LOG_ERROR, |
963 | "Request for non-absolute resource \"%s\".", con->uri); | |
bf3816c7 | 964 | |
5ec1fd3d | 965 | if (!cupsdSendError(con, HTTP_STATUS_FORBIDDEN, CUPSD_AUTH_NONE)) |
f7deaa1a | 966 | { |
967 | cupsdCloseClient(con); | |
968 | return; | |
969 | } | |
ef416fc2 | 970 | } |
971 | else | |
972 | { | |
5ec1fd3d | 973 | if (!_cups_strcasecmp(httpGetField(con->http, HTTP_FIELD_CONNECTION), |
d21dc0ed | 974 | "Upgrade") && !httpIsEncrypted(con->http)) |
ef416fc2 | 975 | { |
976 | #ifdef HAVE_SSL | |
977 | /* | |
978 | * Do encryption stuff... | |
979 | */ | |
980 | ||
a73ca01e | 981 | httpClearFields(con->http); |
ef416fc2 | 982 | |
e200616a MS |
983 | if (!cupsdSendHeader(con, HTTP_STATUS_SWITCHING_PROTOCOLS, NULL, |
984 | CUPSD_AUTH_NONE)) | |
985 | { | |
986 | cupsdCloseClient(con); | |
987 | return; | |
988 | } | |
ef416fc2 | 989 | |
d3d89474 | 990 | if (cupsd_start_tls(con, HTTP_ENCRYPTION_REQUIRED)) |
f7deaa1a | 991 | { |
992 | cupsdCloseClient(con); | |
993 | return; | |
994 | } | |
ef416fc2 | 995 | #else |
7d5824d6 | 996 | if (!cupsdSendError(con, HTTP_STATUS_NOT_IMPLEMENTED, CUPSD_AUTH_NONE)) |
f7deaa1a | 997 | { |
998 | cupsdCloseClient(con); | |
999 | return; | |
1000 | } | |
ef416fc2 | 1001 | #endif /* HAVE_SSL */ |
1002 | } | |
1003 | ||
5ec1fd3d | 1004 | if ((status = cupsdIsAuthorized(con, NULL)) != HTTP_STATUS_OK) |
ef416fc2 | 1005 | { |
5bd77a73 | 1006 | cupsdSendError(con, status, CUPSD_AUTH_NONE); |
f7deaa1a | 1007 | cupsdCloseClient(con); |
1008 | return; | |
ef416fc2 | 1009 | } |
1010 | ||
d21dc0ed | 1011 | if (httpGetExpect(con->http) && |
cb7f98ee | 1012 | (con->operation == HTTP_STATE_POST || con->operation == HTTP_STATE_PUT)) |
ef416fc2 | 1013 | { |
d21dc0ed | 1014 | if (httpGetExpect(con->http) == HTTP_STATUS_CONTINUE) |
b423cd4c | 1015 | { |
1016 | /* | |
1017 | * Send 100-continue header... | |
1018 | */ | |
1019 | ||
a73ca01e | 1020 | if (httpWriteResponse(con->http, HTTP_STATUS_CONTINUE)) |
f7deaa1a | 1021 | { |
1022 | cupsdCloseClient(con); | |
1023 | return; | |
1024 | } | |
b423cd4c | 1025 | } |
1026 | else | |
1027 | { | |
1028 | /* | |
1029 | * Send 417-expectation-failed header... | |
1030 | */ | |
1031 | ||
a73ca01e | 1032 | httpClearFields(con->http); |
e200616a MS |
1033 | httpSetField(con->http, HTTP_FIELD_CONTENT_LENGTH, "0"); |
1034 | ||
a73ca01e MS |
1035 | cupsdSendError(con, HTTP_STATUS_EXPECTATION_FAILED, CUPSD_AUTH_NONE); |
1036 | cupsdCloseClient(con); | |
1037 | return; | |
b423cd4c | 1038 | } |
ef416fc2 | 1039 | } |
1040 | ||
5ec1fd3d | 1041 | switch (httpGetState(con->http)) |
ef416fc2 | 1042 | { |
cb7f98ee | 1043 | case HTTP_STATE_GET_SEND : |
dfc45c1b MS |
1044 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Processing GET %s", con->uri); |
1045 | ||
db8b865d | 1046 | if ((!strncmp(con->uri, "/ppd/", 5) || |
6961465f MS |
1047 | !strncmp(con->uri, "/printers/", 10) || |
1048 | !strncmp(con->uri, "/classes/", 9)) && | |
ef416fc2 | 1049 | !strcmp(con->uri + strlen(con->uri) - 4, ".ppd")) |
1050 | { | |
1051 | /* | |
1052 | * Send PPD file - get the real printer name since printer | |
1053 | * names are not case sensitive but filenames can be... | |
1054 | */ | |
1055 | ||
1056 | con->uri[strlen(con->uri) - 4] = '\0'; /* Drop ".ppd" */ | |
1057 | ||
db8b865d MS |
1058 | if (!strncmp(con->uri, "/ppd/", 5)) |
1059 | p = cupsdFindPrinter(con->uri + 5); | |
6961465f | 1060 | else if (!strncmp(con->uri, "/printers/", 10)) |
db8b865d | 1061 | p = cupsdFindPrinter(con->uri + 10); |
6961465f MS |
1062 | else |
1063 | { | |
1064 | p = cupsdFindClass(con->uri + 9); | |
1065 | ||
1066 | if (p) | |
1067 | { | |
1068 | int i; /* Looping var */ | |
1069 | ||
1070 | for (i = 0; i < p->num_printers; i ++) | |
1071 | { | |
1072 | if (!(p->printers[i]->type & CUPS_PRINTER_CLASS)) | |
1073 | { | |
1074 | char ppdname[1024];/* PPD filename */ | |
1075 | ||
1076 | snprintf(ppdname, sizeof(ppdname), "%s/ppd/%s.ppd", | |
1077 | ServerRoot, p->printers[i]->name); | |
1078 | if (!access(ppdname, 0)) | |
1079 | { | |
1080 | p = p->printers[i]; | |
1081 | break; | |
1082 | } | |
1083 | } | |
1084 | } | |
1085 | ||
1086 | if (i >= p->num_printers) | |
1087 | p = NULL; | |
1088 | } | |
1089 | } | |
db8b865d MS |
1090 | |
1091 | if (p) | |
1092 | { | |
ef416fc2 | 1093 | snprintf(con->uri, sizeof(con->uri), "/ppd/%s.ppd", p->name); |
db8b865d | 1094 | } |
ef416fc2 | 1095 | else |
1096 | { | |
5ec1fd3d | 1097 | if (!cupsdSendError(con, HTTP_STATUS_NOT_FOUND, CUPSD_AUTH_NONE)) |
f7deaa1a | 1098 | { |
1099 | cupsdCloseClient(con); | |
1100 | return; | |
1101 | } | |
ef416fc2 | 1102 | |
1103 | break; | |
1104 | } | |
1105 | } | |
db8b865d MS |
1106 | else if ((!strncmp(con->uri, "/icons/", 7) || |
1107 | !strncmp(con->uri, "/printers/", 10) || | |
7cf5915e MS |
1108 | !strncmp(con->uri, "/classes/", 9)) && |
1109 | !strcmp(con->uri + strlen(con->uri) - 4, ".png")) | |
1110 | { | |
1111 | /* | |
1112 | * Send icon file - get the real queue name since queue names are | |
1113 | * not case sensitive but filenames can be... | |
1114 | */ | |
1115 | ||
1116 | con->uri[strlen(con->uri) - 4] = '\0'; /* Drop ".png" */ | |
1117 | ||
db8b865d MS |
1118 | if (!strncmp(con->uri, "/icons/", 7)) |
1119 | p = cupsdFindPrinter(con->uri + 7); | |
1120 | else if (!strncmp(con->uri, "/printers/", 10)) | |
7cf5915e MS |
1121 | p = cupsdFindPrinter(con->uri + 10); |
1122 | else | |
6961465f MS |
1123 | { |
1124 | p = cupsdFindClass(con->uri + 9); | |
1125 | ||
1126 | if (p) | |
1127 | { | |
1128 | int i; /* Looping var */ | |
1129 | ||
1130 | for (i = 0; i < p->num_printers; i ++) | |
1131 | { | |
1132 | if (!(p->printers[i]->type & CUPS_PRINTER_CLASS)) | |
1133 | { | |
1134 | char ppdname[1024];/* PPD filename */ | |
1135 | ||
1136 | snprintf(ppdname, sizeof(ppdname), "%s/ppd/%s.ppd", | |
1137 | ServerRoot, p->printers[i]->name); | |
1138 | if (!access(ppdname, 0)) | |
1139 | { | |
1140 | p = p->printers[i]; | |
1141 | break; | |
1142 | } | |
1143 | } | |
1144 | } | |
1145 | ||
1146 | if (i >= p->num_printers) | |
1147 | p = NULL; | |
1148 | } | |
1149 | } | |
7cf5915e MS |
1150 | |
1151 | if (p) | |
1152 | snprintf(con->uri, sizeof(con->uri), "/icons/%s.png", p->name); | |
1153 | else | |
1154 | { | |
5ec1fd3d | 1155 | if (!cupsdSendError(con, HTTP_STATUS_NOT_FOUND, CUPSD_AUTH_NONE)) |
7cf5915e MS |
1156 | { |
1157 | cupsdCloseClient(con); | |
1158 | return; | |
1159 | } | |
1160 | ||
1161 | break; | |
1162 | } | |
1163 | } | |
0268488e | 1164 | |
f07c0121 | 1165 | if ((!strncmp(con->uri, "/admin", 6) && strcmp(con->uri, "/admin/conf/cupsd.conf") && strncmp(con->uri, "/admin/log/", 11)) || |
0268488e MS |
1166 | !strncmp(con->uri, "/printers", 9) || |
1167 | !strncmp(con->uri, "/classes", 8) || | |
1168 | !strncmp(con->uri, "/help", 5) || | |
1169 | !strncmp(con->uri, "/jobs", 5)) | |
ef416fc2 | 1170 | { |
f07c0121 MS |
1171 | if (!WebInterface) |
1172 | { | |
1173 | /* | |
1174 | * Web interface is disabled. Show an appropriate message... | |
1175 | */ | |
1176 | ||
1177 | if (!cupsdSendError(con, HTTP_STATUS_CUPS_WEBIF_DISABLED, CUPSD_AUTH_NONE)) | |
1178 | { | |
1179 | cupsdCloseClient(con); | |
1180 | return; | |
1181 | } | |
1182 | ||
1183 | break; | |
1184 | } | |
1185 | ||
ef416fc2 | 1186 | /* |
1187 | * Send CGI output... | |
1188 | */ | |
1189 | ||
1190 | if (!strncmp(con->uri, "/admin", 6)) | |
1191 | { | |
1192 | cupsdSetStringf(&con->command, "%s/cgi-bin/admin.cgi", | |
1193 | ServerBin); | |
1194 | ||
b423cd4c | 1195 | cupsdSetString(&con->options, strchr(con->uri + 6, '?')); |
ef416fc2 | 1196 | } |
1197 | else if (!strncmp(con->uri, "/printers", 9)) | |
1198 | { | |
1199 | cupsdSetStringf(&con->command, "%s/cgi-bin/printers.cgi", | |
1200 | ServerBin); | |
b423cd4c | 1201 | |
1202 | if (con->uri[9] && con->uri[10]) | |
1203 | cupsdSetString(&con->options, con->uri + 9); | |
1204 | else | |
1205 | cupsdSetString(&con->options, NULL); | |
ef416fc2 | 1206 | } |
1207 | else if (!strncmp(con->uri, "/classes", 8)) | |
1208 | { | |
1209 | cupsdSetStringf(&con->command, "%s/cgi-bin/classes.cgi", | |
1210 | ServerBin); | |
b423cd4c | 1211 | |
1212 | if (con->uri[8] && con->uri[9]) | |
1213 | cupsdSetString(&con->options, con->uri + 8); | |
1214 | else | |
1215 | cupsdSetString(&con->options, NULL); | |
ef416fc2 | 1216 | } |
1217 | else if (!strncmp(con->uri, "/jobs", 5)) | |
1218 | { | |
1219 | cupsdSetStringf(&con->command, "%s/cgi-bin/jobs.cgi", | |
1220 | ServerBin); | |
b423cd4c | 1221 | |
1222 | if (con->uri[5] && con->uri[6]) | |
1223 | cupsdSetString(&con->options, con->uri + 5); | |
1224 | else | |
1225 | cupsdSetString(&con->options, NULL); | |
ef416fc2 | 1226 | } |
1227 | else | |
1228 | { | |
1229 | cupsdSetStringf(&con->command, "%s/cgi-bin/help.cgi", | |
1230 | ServerBin); | |
ef416fc2 | 1231 | |
b423cd4c | 1232 | if (con->uri[5] && con->uri[6]) |
1233 | cupsdSetString(&con->options, con->uri + 5); | |
1234 | else | |
1235 | cupsdSetString(&con->options, NULL); | |
1236 | } | |
ef416fc2 | 1237 | |
1238 | if (!cupsdSendCommand(con, con->command, con->options, 0)) | |
1239 | { | |
5ec1fd3d | 1240 | if (!cupsdSendError(con, HTTP_STATUS_NOT_FOUND, CUPSD_AUTH_NONE)) |
f7deaa1a | 1241 | { |
1242 | cupsdCloseClient(con); | |
1243 | return; | |
1244 | } | |
ef416fc2 | 1245 | } |
1246 | else | |
5ec1fd3d | 1247 | cupsdLogRequest(con, HTTP_STATUS_OK); |
ef416fc2 | 1248 | |
d21dc0ed | 1249 | if (httpGetVersion(con->http) <= HTTP_VERSION_1_0) |
5ec1fd3d | 1250 | httpSetKeepAlive(con->http, HTTP_KEEPALIVE_OFF); |
ef416fc2 | 1251 | } |
f07c0121 | 1252 | else if (!strncmp(con->uri, "/admin/log/", 11) && (strchr(con->uri + 11, '/') || strlen(con->uri) == 11)) |
ef416fc2 | 1253 | { |
1254 | /* | |
bf3816c7 | 1255 | * GET can only be done to configuration files directly under |
ef416fc2 | 1256 | * /admin/conf... |
1257 | */ | |
1258 | ||
f07c0121 | 1259 | cupsdLogClient(con, CUPSD_LOG_ERROR, "Request for subdirectory \"%s\".", con->uri); |
bf3816c7 | 1260 | |
5ec1fd3d | 1261 | if (!cupsdSendError(con, HTTP_STATUS_FORBIDDEN, CUPSD_AUTH_NONE)) |
f7deaa1a | 1262 | { |
1263 | cupsdCloseClient(con); | |
1264 | return; | |
1265 | } | |
ef416fc2 | 1266 | |
1267 | break; | |
1268 | } | |
1269 | else | |
1270 | { | |
1271 | /* | |
1272 | * Serve a file... | |
1273 | */ | |
1274 | ||
1275 | if ((filename = get_file(con, &filestats, buf, | |
1276 | sizeof(buf))) == NULL) | |
1277 | { | |
5ec1fd3d | 1278 | if (!cupsdSendError(con, HTTP_STATUS_NOT_FOUND, CUPSD_AUTH_NONE)) |
f7deaa1a | 1279 | { |
1280 | cupsdCloseClient(con); | |
1281 | return; | |
1282 | } | |
ef416fc2 | 1283 | |
1284 | break; | |
1285 | } | |
1286 | ||
4400e98d | 1287 | type = mimeFileType(MimeDatabase, filename, NULL, NULL); |
ef416fc2 | 1288 | |
dfc45c1b MS |
1289 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "filename=\"%s\", type=%s/%s", filename, type ? type->super : "", type ? type->type : ""); |
1290 | ||
e1d6a774 | 1291 | if (is_cgi(con, filename, &filestats, type)) |
ef416fc2 | 1292 | { |
1293 | /* | |
1294 | * Note: con->command and con->options were set by | |
e1d6a774 | 1295 | * is_cgi()... |
ef416fc2 | 1296 | */ |
1297 | ||
1298 | if (!cupsdSendCommand(con, con->command, con->options, 0)) | |
1299 | { | |
5ec1fd3d | 1300 | if (!cupsdSendError(con, HTTP_STATUS_NOT_FOUND, CUPSD_AUTH_NONE)) |
f7deaa1a | 1301 | { |
1302 | cupsdCloseClient(con); | |
1303 | return; | |
1304 | } | |
ef416fc2 | 1305 | } |
1306 | else | |
5ec1fd3d | 1307 | cupsdLogRequest(con, HTTP_STATUS_OK); |
ef416fc2 | 1308 | |
d21dc0ed | 1309 | if (httpGetVersion(con->http) <= HTTP_VERSION_1_0) |
5ec1fd3d | 1310 | httpSetKeepAlive(con->http, HTTP_KEEPALIVE_OFF); |
ef416fc2 | 1311 | break; |
1312 | } | |
1313 | ||
1314 | if (!check_if_modified(con, &filestats)) | |
1315 | { | |
5ec1fd3d | 1316 | if (!cupsdSendError(con, HTTP_STATUS_NOT_MODIFIED, CUPSD_AUTH_NONE)) |
f7deaa1a | 1317 | { |
1318 | cupsdCloseClient(con); | |
1319 | return; | |
1320 | } | |
ef416fc2 | 1321 | } |
1322 | else | |
1323 | { | |
1324 | if (type == NULL) | |
5a9febac | 1325 | strlcpy(line, "text/plain", sizeof(line)); |
ef416fc2 | 1326 | else |
1327 | snprintf(line, sizeof(line), "%s/%s", type->super, type->type); | |
1328 | ||
5ec1fd3d | 1329 | if (!write_file(con, HTTP_STATUS_OK, filename, line, &filestats)) |
f7deaa1a | 1330 | { |
1331 | cupsdCloseClient(con); | |
1332 | return; | |
1333 | } | |
ef416fc2 | 1334 | } |
1335 | } | |
1336 | break; | |
1337 | ||
cb7f98ee | 1338 | case HTTP_STATE_POST_RECV : |
ef416fc2 | 1339 | /* |
1340 | * See if the POST request includes a Content-Length field, and if | |
1341 | * so check the length against any limits that are set... | |
1342 | */ | |
1343 | ||
5ec1fd3d | 1344 | if (httpGetField(con->http, HTTP_FIELD_CONTENT_LENGTH)[0] && |
ef416fc2 | 1345 | MaxRequestSize > 0 && |
d21dc0ed | 1346 | httpGetLength2(con->http) > MaxRequestSize) |
ef416fc2 | 1347 | { |
1348 | /* | |
1349 | * Request too large... | |
1350 | */ | |
1351 | ||
5ec1fd3d | 1352 | if (!cupsdSendError(con, HTTP_STATUS_REQUEST_TOO_LARGE, CUPSD_AUTH_NONE)) |
f7deaa1a | 1353 | { |
1354 | cupsdCloseClient(con); | |
1355 | return; | |
1356 | } | |
ef416fc2 | 1357 | |
1358 | break; | |
1359 | } | |
d21dc0ed | 1360 | else if (httpGetLength2(con->http) < 0) |
ef416fc2 | 1361 | { |
1362 | /* | |
1363 | * Negative content lengths are invalid! | |
1364 | */ | |
1365 | ||
5ec1fd3d | 1366 | if (!cupsdSendError(con, HTTP_STATUS_BAD_REQUEST, CUPSD_AUTH_NONE)) |
f7deaa1a | 1367 | { |
1368 | cupsdCloseClient(con); | |
1369 | return; | |
1370 | } | |
ef416fc2 | 1371 | |
1372 | break; | |
1373 | } | |
1374 | ||
1375 | /* | |
1376 | * See what kind of POST request this is; for IPP requests the | |
1377 | * content-type field will be "application/ipp"... | |
1378 | */ | |
1379 | ||
5ec1fd3d | 1380 | if (!strcmp(httpGetField(con->http, HTTP_FIELD_CONTENT_TYPE), |
ef416fc2 | 1381 | "application/ipp")) |
1382 | con->request = ippNew(); | |
229681c1 MS |
1383 | else if (!WebInterface) |
1384 | { | |
1385 | /* | |
1386 | * Web interface is disabled. Show an appropriate message... | |
1387 | */ | |
1388 | ||
5ec1fd3d | 1389 | if (!cupsdSendError(con, HTTP_STATUS_CUPS_WEBIF_DISABLED, CUPSD_AUTH_NONE)) |
229681c1 MS |
1390 | { |
1391 | cupsdCloseClient(con); | |
1392 | return; | |
1393 | } | |
1394 | ||
1395 | break; | |
1396 | } | |
f07c0121 | 1397 | else if ((!strncmp(con->uri, "/admin", 6) && strncmp(con->uri, "/admin/log/", 11)) || |
ef416fc2 | 1398 | !strncmp(con->uri, "/printers", 9) || |
1399 | !strncmp(con->uri, "/classes", 8) || | |
1400 | !strncmp(con->uri, "/help", 5) || | |
1401 | !strncmp(con->uri, "/jobs", 5)) | |
1402 | { | |
1403 | /* | |
1404 | * CGI request... | |
1405 | */ | |
1406 | ||
1407 | if (!strncmp(con->uri, "/admin", 6)) | |
1408 | { | |
1409 | cupsdSetStringf(&con->command, "%s/cgi-bin/admin.cgi", | |
1410 | ServerBin); | |
1411 | ||
b423cd4c | 1412 | cupsdSetString(&con->options, strchr(con->uri + 6, '?')); |
ef416fc2 | 1413 | } |
1414 | else if (!strncmp(con->uri, "/printers", 9)) | |
1415 | { | |
1416 | cupsdSetStringf(&con->command, "%s/cgi-bin/printers.cgi", | |
1417 | ServerBin); | |
b423cd4c | 1418 | |
1419 | if (con->uri[9] && con->uri[10]) | |
1420 | cupsdSetString(&con->options, con->uri + 9); | |
1421 | else | |
1422 | cupsdSetString(&con->options, NULL); | |
ef416fc2 | 1423 | } |
1424 | else if (!strncmp(con->uri, "/classes", 8)) | |
1425 | { | |
1426 | cupsdSetStringf(&con->command, "%s/cgi-bin/classes.cgi", | |
1427 | ServerBin); | |
b423cd4c | 1428 | |
1429 | if (con->uri[8] && con->uri[9]) | |
1430 | cupsdSetString(&con->options, con->uri + 8); | |
1431 | else | |
1432 | cupsdSetString(&con->options, NULL); | |
ef416fc2 | 1433 | } |
1434 | else if (!strncmp(con->uri, "/jobs", 5)) | |
1435 | { | |
1436 | cupsdSetStringf(&con->command, "%s/cgi-bin/jobs.cgi", | |
1437 | ServerBin); | |
b423cd4c | 1438 | |
1439 | if (con->uri[5] && con->uri[6]) | |
1440 | cupsdSetString(&con->options, con->uri + 5); | |
1441 | else | |
1442 | cupsdSetString(&con->options, NULL); | |
ef416fc2 | 1443 | } |
1444 | else | |
1445 | { | |
1446 | cupsdSetStringf(&con->command, "%s/cgi-bin/help.cgi", | |
1447 | ServerBin); | |
ef416fc2 | 1448 | |
b423cd4c | 1449 | if (con->uri[5] && con->uri[6]) |
1450 | cupsdSetString(&con->options, con->uri + 5); | |
1451 | else | |
1452 | cupsdSetString(&con->options, NULL); | |
1453 | } | |
ef416fc2 | 1454 | |
d21dc0ed | 1455 | if (httpGetVersion(con->http) <= HTTP_VERSION_1_0) |
5ec1fd3d | 1456 | httpSetKeepAlive(con->http, HTTP_KEEPALIVE_OFF); |
ef416fc2 | 1457 | } |
1458 | else | |
1459 | { | |
1460 | /* | |
1461 | * POST to a file... | |
1462 | */ | |
1463 | ||
1464 | if ((filename = get_file(con, &filestats, buf, | |
1465 | sizeof(buf))) == NULL) | |
1466 | { | |
5ec1fd3d | 1467 | if (!cupsdSendError(con, HTTP_STATUS_NOT_FOUND, CUPSD_AUTH_NONE)) |
f7deaa1a | 1468 | { |
1469 | cupsdCloseClient(con); | |
1470 | return; | |
1471 | } | |
ef416fc2 | 1472 | |
1473 | break; | |
1474 | } | |
1475 | ||
4400e98d | 1476 | type = mimeFileType(MimeDatabase, filename, NULL, NULL); |
ef416fc2 | 1477 | |
e1d6a774 | 1478 | if (!is_cgi(con, filename, &filestats, type)) |
ef416fc2 | 1479 | { |
1480 | /* | |
1481 | * Only POST to CGI's... | |
1482 | */ | |
1483 | ||
5ec1fd3d | 1484 | if (!cupsdSendError(con, HTTP_STATUS_UNAUTHORIZED, CUPSD_AUTH_NONE)) |
f7deaa1a | 1485 | { |
1486 | cupsdCloseClient(con); | |
1487 | return; | |
1488 | } | |
ef416fc2 | 1489 | } |
1490 | } | |
1491 | break; | |
1492 | ||
cb7f98ee | 1493 | case HTTP_STATE_PUT_RECV : |
ef416fc2 | 1494 | /* |
1495 | * Validate the resource name... | |
1496 | */ | |
1497 | ||
c41769ff | 1498 | if (strcmp(con->uri, "/admin/conf/cupsd.conf")) |
ef416fc2 | 1499 | { |
1500 | /* | |
c41769ff | 1501 | * PUT can only be done to the cupsd.conf file... |
ef416fc2 | 1502 | */ |
1503 | ||
996acce8 MS |
1504 | cupsdLogClient(con, CUPSD_LOG_ERROR, |
1505 | "Disallowed PUT request for \"%s\".", con->uri); | |
bf3816c7 | 1506 | |
5ec1fd3d | 1507 | if (!cupsdSendError(con, HTTP_STATUS_FORBIDDEN, CUPSD_AUTH_NONE)) |
f7deaa1a | 1508 | { |
1509 | cupsdCloseClient(con); | |
1510 | return; | |
1511 | } | |
ef416fc2 | 1512 | |
1513 | break; | |
1514 | } | |
1515 | ||
1516 | /* | |
1517 | * See if the PUT request includes a Content-Length field, and if | |
1518 | * so check the length against any limits that are set... | |
1519 | */ | |
1520 | ||
5ec1fd3d | 1521 | if (httpGetField(con->http, HTTP_FIELD_CONTENT_LENGTH)[0] && |
ef416fc2 | 1522 | MaxRequestSize > 0 && |
d21dc0ed | 1523 | httpGetLength2(con->http) > MaxRequestSize) |
ef416fc2 | 1524 | { |
1525 | /* | |
1526 | * Request too large... | |
1527 | */ | |
1528 | ||
5ec1fd3d | 1529 | if (!cupsdSendError(con, HTTP_STATUS_REQUEST_TOO_LARGE, CUPSD_AUTH_NONE)) |
f7deaa1a | 1530 | { |
1531 | cupsdCloseClient(con); | |
1532 | return; | |
1533 | } | |
ef416fc2 | 1534 | |
1535 | break; | |
1536 | } | |
d21dc0ed | 1537 | else if (httpGetLength2(con->http) < 0) |
ef416fc2 | 1538 | { |
1539 | /* | |
1540 | * Negative content lengths are invalid! | |
1541 | */ | |
1542 | ||
5ec1fd3d | 1543 | if (!cupsdSendError(con, HTTP_STATUS_BAD_REQUEST, CUPSD_AUTH_NONE)) |
f7deaa1a | 1544 | { |
1545 | cupsdCloseClient(con); | |
1546 | return; | |
1547 | } | |
ef416fc2 | 1548 | |
1549 | break; | |
1550 | } | |
1551 | ||
1552 | /* | |
1553 | * Open a temporary file to hold the request... | |
1554 | */ | |
1555 | ||
1556 | cupsdSetStringf(&con->filename, "%s/%08x", RequestRoot, | |
1557 | request_id ++); | |
1558 | con->file = open(con->filename, O_WRONLY | O_CREAT | O_TRUNC, 0640); | |
1559 | ||
ef416fc2 | 1560 | if (con->file < 0) |
1561 | { | |
996acce8 MS |
1562 | cupsdLogClient(con, CUPSD_LOG_ERROR, |
1563 | "Unable to create request file \"%s\": %s", | |
1564 | con->filename, strerror(errno)); | |
a4924f6c | 1565 | |
5ec1fd3d | 1566 | if (!cupsdSendError(con, HTTP_STATUS_REQUEST_TOO_LARGE, CUPSD_AUTH_NONE)) |
f7deaa1a | 1567 | { |
1568 | cupsdCloseClient(con); | |
1569 | return; | |
1570 | } | |
ef416fc2 | 1571 | } |
1572 | ||
1573 | fchmod(con->file, 0640); | |
1574 | fchown(con->file, RunUser, Group); | |
1575 | fcntl(con->file, F_SETFD, fcntl(con->file, F_GETFD) | FD_CLOEXEC); | |
1576 | break; | |
1577 | ||
cb7f98ee MS |
1578 | case HTTP_STATE_DELETE : |
1579 | case HTTP_STATE_TRACE : | |
5ec1fd3d | 1580 | cupsdSendError(con, HTTP_STATUS_NOT_IMPLEMENTED, CUPSD_AUTH_NONE); |
f7deaa1a | 1581 | cupsdCloseClient(con); |
1582 | return; | |
ef416fc2 | 1583 | |
cb7f98ee | 1584 | case HTTP_STATE_HEAD : |
ef416fc2 | 1585 | if (!strncmp(con->uri, "/printers/", 10) && |
1586 | !strcmp(con->uri + strlen(con->uri) - 4, ".ppd")) | |
1587 | { | |
1588 | /* | |
1589 | * Send PPD file - get the real printer name since printer | |
1590 | * names are not case sensitive but filenames can be... | |
1591 | */ | |
1592 | ||
1593 | con->uri[strlen(con->uri) - 4] = '\0'; /* Drop ".ppd" */ | |
1594 | ||
1595 | if ((p = cupsdFindPrinter(con->uri + 10)) != NULL) | |
1596 | snprintf(con->uri, sizeof(con->uri), "/ppd/%s.ppd", p->name); | |
1597 | else | |
1598 | { | |
5ec1fd3d | 1599 | if (!cupsdSendError(con, HTTP_STATUS_NOT_FOUND, CUPSD_AUTH_NONE)) |
f7deaa1a | 1600 | { |
1601 | cupsdCloseClient(con); | |
1602 | return; | |
1603 | } | |
ef416fc2 | 1604 | |
e200616a | 1605 | cupsdLogRequest(con, HTTP_STATUS_NOT_FOUND); |
ef416fc2 | 1606 | break; |
1607 | } | |
1608 | } | |
229681c1 MS |
1609 | else if (!strncmp(con->uri, "/printers/", 10) && |
1610 | !strcmp(con->uri + strlen(con->uri) - 4, ".png")) | |
1611 | { | |
1612 | /* | |
1613 | * Send PNG file - get the real printer name since printer | |
1614 | * names are not case sensitive but filenames can be... | |
1615 | */ | |
1616 | ||
1617 | con->uri[strlen(con->uri) - 4] = '\0'; /* Drop ".ppd" */ | |
1618 | ||
1619 | if ((p = cupsdFindPrinter(con->uri + 10)) != NULL) | |
1620 | snprintf(con->uri, sizeof(con->uri), "/icons/%s.png", p->name); | |
1621 | else | |
1622 | { | |
5ec1fd3d | 1623 | if (!cupsdSendError(con, HTTP_STATUS_NOT_FOUND, CUPSD_AUTH_NONE)) |
229681c1 MS |
1624 | { |
1625 | cupsdCloseClient(con); | |
1626 | return; | |
1627 | } | |
1628 | ||
e200616a | 1629 | cupsdLogRequest(con, HTTP_STATUS_NOT_FOUND); |
229681c1 MS |
1630 | break; |
1631 | } | |
1632 | } | |
1633 | else if (!WebInterface) | |
1634 | { | |
a73ca01e MS |
1635 | httpClearFields(con->http); |
1636 | ||
5ec1fd3d | 1637 | if (!cupsdSendHeader(con, HTTP_STATUS_OK, NULL, CUPSD_AUTH_NONE)) |
229681c1 MS |
1638 | { |
1639 | cupsdCloseClient(con); | |
1640 | return; | |
1641 | } | |
1642 | ||
e200616a | 1643 | cupsdLogRequest(con, HTTP_STATUS_OK); |
229681c1 MS |
1644 | break; |
1645 | } | |
ef416fc2 | 1646 | |
f07c0121 | 1647 | if ((!strncmp(con->uri, "/admin", 6) && strcmp(con->uri, "/admin/conf/cupsd.conf") && strncmp(con->uri, "/admin/log/", 11)) || |
ef416fc2 | 1648 | !strncmp(con->uri, "/printers", 9) || |
1649 | !strncmp(con->uri, "/classes", 8) || | |
1650 | !strncmp(con->uri, "/help", 5) || | |
1651 | !strncmp(con->uri, "/jobs", 5)) | |
1652 | { | |
1653 | /* | |
1654 | * CGI output... | |
1655 | */ | |
1656 | ||
a73ca01e MS |
1657 | httpClearFields(con->http); |
1658 | ||
5ec1fd3d | 1659 | if (!cupsdSendHeader(con, HTTP_STATUS_OK, "text/html", CUPSD_AUTH_NONE)) |
f7deaa1a | 1660 | { |
1661 | cupsdCloseClient(con); | |
1662 | return; | |
1663 | } | |
ef416fc2 | 1664 | |
5ec1fd3d | 1665 | cupsdLogRequest(con, HTTP_STATUS_OK); |
ef416fc2 | 1666 | } |
f07c0121 | 1667 | else if (!strncmp(con->uri, "/admin/log/", 11) && (strchr(con->uri + 11, '/') || strlen(con->uri) == 11)) |
ef416fc2 | 1668 | { |
1669 | /* | |
1670 | * HEAD can only be done to configuration files under | |
1671 | * /admin/conf... | |
1672 | */ | |
1673 | ||
996acce8 MS |
1674 | cupsdLogClient(con, CUPSD_LOG_ERROR, |
1675 | "Request for subdirectory \"%s\".", con->uri); | |
bf3816c7 | 1676 | |
5ec1fd3d | 1677 | if (!cupsdSendError(con, HTTP_STATUS_FORBIDDEN, CUPSD_AUTH_NONE)) |
f7deaa1a | 1678 | { |
1679 | cupsdCloseClient(con); | |
1680 | return; | |
1681 | } | |
ef416fc2 | 1682 | |
e200616a | 1683 | cupsdLogRequest(con, HTTP_STATUS_FORBIDDEN); |
ef416fc2 | 1684 | break; |
1685 | } | |
1686 | else if ((filename = get_file(con, &filestats, buf, | |
1687 | sizeof(buf))) == NULL) | |
1688 | { | |
a73ca01e MS |
1689 | httpClearFields(con->http); |
1690 | ||
5ec1fd3d | 1691 | if (!cupsdSendHeader(con, HTTP_STATUS_NOT_FOUND, "text/html", |
f11a948a | 1692 | CUPSD_AUTH_NONE)) |
f7deaa1a | 1693 | { |
1694 | cupsdCloseClient(con); | |
1695 | return; | |
1696 | } | |
ef416fc2 | 1697 | |
5ec1fd3d | 1698 | cupsdLogRequest(con, HTTP_STATUS_NOT_FOUND); |
ef416fc2 | 1699 | } |
1700 | else if (!check_if_modified(con, &filestats)) | |
1701 | { | |
5ec1fd3d | 1702 | if (!cupsdSendError(con, HTTP_STATUS_NOT_MODIFIED, CUPSD_AUTH_NONE)) |
f7deaa1a | 1703 | { |
1704 | cupsdCloseClient(con); | |
1705 | return; | |
1706 | } | |
ef416fc2 | 1707 | |
5ec1fd3d | 1708 | cupsdLogRequest(con, HTTP_STATUS_NOT_MODIFIED); |
ef416fc2 | 1709 | } |
1710 | else | |
1711 | { | |
1712 | /* | |
1713 | * Serve a file... | |
1714 | */ | |
1715 | ||
4400e98d | 1716 | type = mimeFileType(MimeDatabase, filename, NULL, NULL); |
ef416fc2 | 1717 | if (type == NULL) |
5a9febac | 1718 | strlcpy(line, "text/plain", sizeof(line)); |
ef416fc2 | 1719 | else |
1720 | snprintf(line, sizeof(line), "%s/%s", type->super, type->type); | |
1721 | ||
a73ca01e MS |
1722 | httpClearFields(con->http); |
1723 | ||
e200616a MS |
1724 | httpSetField(con->http, HTTP_FIELD_LAST_MODIFIED, |
1725 | httpGetDateString(filestats.st_mtime)); | |
7e86f2f6 | 1726 | httpSetLength(con->http, (size_t)filestats.st_size); |
ef416fc2 | 1727 | |
e200616a | 1728 | if (!cupsdSendHeader(con, HTTP_STATUS_OK, line, CUPSD_AUTH_NONE)) |
f7deaa1a | 1729 | { |
1730 | cupsdCloseClient(con); | |
1731 | return; | |
1732 | } | |
ef416fc2 | 1733 | |
5ec1fd3d | 1734 | cupsdLogRequest(con, HTTP_STATUS_OK); |
ef416fc2 | 1735 | } |
ef416fc2 | 1736 | break; |
1737 | ||
1738 | default : | |
1739 | break; /* Anti-compiler-warning-code */ | |
1740 | } | |
1741 | } | |
1742 | } | |
1743 | ||
1744 | /* | |
1745 | * Handle any incoming data... | |
1746 | */ | |
1747 | ||
5ec1fd3d | 1748 | switch (httpGetState(con->http)) |
ef416fc2 | 1749 | { |
cb7f98ee | 1750 | case HTTP_STATE_PUT_RECV : |
f7deaa1a | 1751 | do |
ef416fc2 | 1752 | { |
996acce8 | 1753 | if ((bytes = httpRead2(con->http, line, sizeof(line))) < 0) |
f7deaa1a | 1754 | { |
5ec1fd3d | 1755 | if (httpError(con->http) && httpError(con->http) != EPIPE) |
996acce8 MS |
1756 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
1757 | "HTTP_STATE_PUT_RECV Closing for error %d (%s)", | |
5ec1fd3d | 1758 | httpError(con->http), strerror(httpError(con->http))); |
f11a948a | 1759 | else |
996acce8 MS |
1760 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
1761 | "HTTP_STATE_PUT_RECV Closing on EOF."); | |
f11a948a | 1762 | |
f7deaa1a | 1763 | cupsdCloseClient(con); |
1764 | return; | |
1765 | } | |
1766 | else if (bytes > 0) | |
1767 | { | |
1768 | con->bytes += bytes; | |
ef416fc2 | 1769 | |
34c67f13 MS |
1770 | if (MaxRequestSize > 0 && con->bytes > MaxRequestSize) |
1771 | { | |
1772 | close(con->file); | |
1773 | con->file = -1; | |
1774 | unlink(con->filename); | |
1775 | cupsdClearString(&con->filename); | |
1776 | ||
1777 | if (!cupsdSendError(con, HTTP_STATUS_REQUEST_TOO_LARGE, CUPSD_AUTH_NONE)) | |
1778 | { | |
1779 | cupsdCloseClient(con); | |
1780 | return; | |
1781 | } | |
1782 | } | |
1783 | ||
7e86f2f6 | 1784 | if (write(con->file, line, (size_t)bytes) < bytes) |
f7deaa1a | 1785 | { |
996acce8 MS |
1786 | cupsdLogClient(con, CUPSD_LOG_ERROR, |
1787 | "Unable to write %d bytes to \"%s\": %s", bytes, | |
1788 | con->filename, strerror(errno)); | |
ef416fc2 | 1789 | |
f7deaa1a | 1790 | close(con->file); |
1791 | con->file = -1; | |
1792 | unlink(con->filename); | |
1793 | cupsdClearString(&con->filename); | |
ef416fc2 | 1794 | |
5ec1fd3d | 1795 | if (!cupsdSendError(con, HTTP_STATUS_REQUEST_TOO_LARGE, CUPSD_AUTH_NONE)) |
f7deaa1a | 1796 | { |
1797 | cupsdCloseClient(con); | |
1798 | return; | |
1799 | } | |
1800 | } | |
ef416fc2 | 1801 | } |
a4708bb0 MS |
1802 | else if (httpGetState(con->http) == HTTP_STATE_PUT_RECV) |
1803 | { | |
1804 | cupsdCloseClient(con); | |
1805 | return; | |
1806 | } | |
f7deaa1a | 1807 | } |
5ec1fd3d | 1808 | while (httpGetState(con->http) == HTTP_STATE_PUT_RECV && httpGetReady(con->http)); |
ef416fc2 | 1809 | |
5ec1fd3d | 1810 | if (httpGetState(con->http) == HTTP_STATE_STATUS) |
ef416fc2 | 1811 | { |
1812 | /* | |
1813 | * End of file, see how big it is... | |
1814 | */ | |
1815 | ||
1816 | fstat(con->file, &filestats); | |
1817 | ||
ef416fc2 | 1818 | close(con->file); |
1819 | con->file = -1; | |
1820 | ||
1821 | if (filestats.st_size > MaxRequestSize && | |
1822 | MaxRequestSize > 0) | |
1823 | { | |
1824 | /* | |
1825 | * Request is too big; remove it and send an error... | |
1826 | */ | |
1827 | ||
ef416fc2 | 1828 | unlink(con->filename); |
1829 | cupsdClearString(&con->filename); | |
1830 | ||
5ec1fd3d | 1831 | if (!cupsdSendError(con, HTTP_STATUS_REQUEST_TOO_LARGE, CUPSD_AUTH_NONE)) |
f7deaa1a | 1832 | { |
1833 | cupsdCloseClient(con); | |
1834 | return; | |
1835 | } | |
ef416fc2 | 1836 | } |
1837 | ||
1838 | /* | |
1839 | * Install the configuration file... | |
1840 | */ | |
1841 | ||
c41769ff | 1842 | status = install_cupsd_conf(con); |
ef416fc2 | 1843 | |
1844 | /* | |
1845 | * Return the status to the client... | |
1846 | */ | |
1847 | ||
5bd77a73 | 1848 | if (!cupsdSendError(con, status, CUPSD_AUTH_NONE)) |
f7deaa1a | 1849 | { |
1850 | cupsdCloseClient(con); | |
1851 | return; | |
1852 | } | |
ef416fc2 | 1853 | } |
1854 | break; | |
1855 | ||
cb7f98ee | 1856 | case HTTP_STATE_POST_RECV : |
f7deaa1a | 1857 | do |
ef416fc2 | 1858 | { |
f11a948a | 1859 | if (con->request && con->file < 0) |
ef416fc2 | 1860 | { |
f7deaa1a | 1861 | /* |
1862 | * Grab any request data from the connection... | |
1863 | */ | |
ef416fc2 | 1864 | |
175bc798 MS |
1865 | if (!httpWait(con->http, 0)) |
1866 | return; | |
1867 | ||
5ec1fd3d | 1868 | if ((ipp_state = ippRead(con->http, con->request)) == IPP_STATE_ERROR) |
ef416fc2 | 1869 | { |
996acce8 MS |
1870 | cupsdLogClient(con, CUPSD_LOG_ERROR, "IPP read error: %s", |
1871 | cupsLastErrorString()); | |
f7deaa1a | 1872 | |
5ec1fd3d | 1873 | cupsdSendError(con, HTTP_STATUS_BAD_REQUEST, CUPSD_AUTH_NONE); |
f7deaa1a | 1874 | cupsdCloseClient(con); |
1875 | return; | |
ef416fc2 | 1876 | } |
5ec1fd3d | 1877 | else if (ipp_state != IPP_STATE_DATA) |
f7deaa1a | 1878 | { |
5ec1fd3d | 1879 | if (httpGetState(con->http) == HTTP_STATE_POST_SEND) |
f7deaa1a | 1880 | { |
5ec1fd3d | 1881 | cupsdSendError(con, HTTP_STATUS_BAD_REQUEST, CUPSD_AUTH_NONE); |
f7deaa1a | 1882 | cupsdCloseClient(con); |
1883 | return; | |
1884 | } | |
ef416fc2 | 1885 | |
5ec1fd3d | 1886 | if (httpGetReady(con->http)) |
6961465f | 1887 | continue; |
f7deaa1a | 1888 | break; |
1889 | } | |
1890 | else | |
f11a948a | 1891 | { |
996acce8 MS |
1892 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "%d.%d %s %d", |
1893 | con->request->request.op.version[0], | |
f11a948a MS |
1894 | con->request->request.op.version[1], |
1895 | ippOpString(con->request->request.op.operation_id), | |
1896 | con->request->request.op.request_id); | |
7d5824d6 | 1897 | con->bytes += (off_t)ippLength(con->request); |
f11a948a | 1898 | } |
f7deaa1a | 1899 | } |
ef416fc2 | 1900 | |
5ec1fd3d | 1901 | if (con->file < 0 && httpGetState(con->http) != HTTP_STATE_POST_SEND) |
f7deaa1a | 1902 | { |
1903 | /* | |
1904 | * Create a file as needed for the request data... | |
1905 | */ | |
ef416fc2 | 1906 | |
f11a948a MS |
1907 | cupsdSetStringf(&con->filename, "%s/%08x", RequestRoot, |
1908 | request_id ++); | |
f7deaa1a | 1909 | con->file = open(con->filename, O_WRONLY | O_CREAT | O_TRUNC, 0640); |
ef416fc2 | 1910 | |
f7deaa1a | 1911 | if (con->file < 0) |
1912 | { | |
996acce8 MS |
1913 | cupsdLogClient(con, CUPSD_LOG_ERROR, |
1914 | "Unable to create request file \"%s\": %s", | |
1915 | con->filename, strerror(errno)); | |
a4924f6c | 1916 | |
5ec1fd3d | 1917 | if (!cupsdSendError(con, HTTP_STATUS_REQUEST_TOO_LARGE, CUPSD_AUTH_NONE)) |
f7deaa1a | 1918 | { |
1919 | cupsdCloseClient(con); | |
1920 | return; | |
1921 | } | |
1922 | } | |
ef416fc2 | 1923 | |
f7deaa1a | 1924 | fchmod(con->file, 0640); |
1925 | fchown(con->file, RunUser, Group); | |
1926 | fcntl(con->file, F_SETFD, fcntl(con->file, F_GETFD) | FD_CLOEXEC); | |
1927 | } | |
ef416fc2 | 1928 | |
5ec1fd3d | 1929 | if (httpGetState(con->http) != HTTP_STATE_POST_SEND) |
ef416fc2 | 1930 | { |
996acce8 | 1931 | if (!httpWait(con->http, 0)) |
cb7f98ee | 1932 | return; |
996acce8 | 1933 | else if ((bytes = httpRead2(con->http, line, sizeof(line))) < 0) |
f7deaa1a | 1934 | { |
5ec1fd3d | 1935 | if (httpError(con->http) && httpError(con->http) != EPIPE) |
996acce8 MS |
1936 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
1937 | "HTTP_STATE_POST_SEND Closing for error %d (%s)", | |
5ec1fd3d | 1938 | httpError(con->http), strerror(httpError(con->http))); |
f11a948a | 1939 | else |
996acce8 MS |
1940 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
1941 | "HTTP_STATE_POST_SEND Closing on EOF."); | |
f11a948a | 1942 | |
f7deaa1a | 1943 | cupsdCloseClient(con); |
1944 | return; | |
1945 | } | |
1946 | else if (bytes > 0) | |
1947 | { | |
1948 | con->bytes += bytes; | |
ef416fc2 | 1949 | |
34c67f13 MS |
1950 | if (MaxRequestSize > 0 && con->bytes > MaxRequestSize) |
1951 | { | |
1952 | close(con->file); | |
1953 | con->file = -1; | |
1954 | unlink(con->filename); | |
1955 | cupsdClearString(&con->filename); | |
1956 | ||
1957 | if (!cupsdSendError(con, HTTP_STATUS_REQUEST_TOO_LARGE, CUPSD_AUTH_NONE)) | |
1958 | { | |
1959 | cupsdCloseClient(con); | |
1960 | return; | |
1961 | } | |
1962 | } | |
1963 | ||
7e86f2f6 | 1964 | if (write(con->file, line, (size_t)bytes) < bytes) |
f7deaa1a | 1965 | { |
996acce8 MS |
1966 | cupsdLogClient(con, CUPSD_LOG_ERROR, |
1967 | "Unable to write %d bytes to \"%s\": %s", | |
1968 | bytes, con->filename, strerror(errno)); | |
ef416fc2 | 1969 | |
f7deaa1a | 1970 | close(con->file); |
1971 | con->file = -1; | |
1972 | unlink(con->filename); | |
1973 | cupsdClearString(&con->filename); | |
ef416fc2 | 1974 | |
5ec1fd3d | 1975 | if (!cupsdSendError(con, HTTP_STATUS_REQUEST_TOO_LARGE, |
f11a948a | 1976 | CUPSD_AUTH_NONE)) |
f7deaa1a | 1977 | { |
1978 | cupsdCloseClient(con); | |
1979 | return; | |
1980 | } | |
1981 | } | |
1982 | } | |
5ec1fd3d | 1983 | else if (httpGetState(con->http) == HTTP_STATE_POST_RECV) |
f7deaa1a | 1984 | return; |
5ec1fd3d | 1985 | else if (httpGetState(con->http) != HTTP_STATE_POST_SEND) |
f7deaa1a | 1986 | { |
996acce8 MS |
1987 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
1988 | "Closing on unexpected state %s.", | |
5ec1fd3d | 1989 | httpStateString(httpGetState(con->http))); |
f7deaa1a | 1990 | cupsdCloseClient(con); |
1991 | return; | |
ef416fc2 | 1992 | } |
1993 | } | |
f7deaa1a | 1994 | } |
5ec1fd3d | 1995 | while (httpGetState(con->http) == HTTP_STATE_POST_RECV && httpGetReady(con->http)); |
ef416fc2 | 1996 | |
5ec1fd3d | 1997 | if (httpGetState(con->http) == HTTP_STATE_POST_SEND) |
ef416fc2 | 1998 | { |
1999 | if (con->file >= 0) | |
2000 | { | |
2001 | fstat(con->file, &filestats); | |
2002 | ||
ef416fc2 | 2003 | close(con->file); |
2004 | con->file = -1; | |
2005 | ||
2006 | if (filestats.st_size > MaxRequestSize && | |
2007 | MaxRequestSize > 0) | |
2008 | { | |
2009 | /* | |
2010 | * Request is too big; remove it and send an error... | |
2011 | */ | |
2012 | ||
ef416fc2 | 2013 | unlink(con->filename); |
2014 | cupsdClearString(&con->filename); | |
2015 | ||
2016 | if (con->request) | |
2017 | { | |
2018 | /* | |
2019 | * Delete any IPP request data... | |
2020 | */ | |
2021 | ||
2022 | ippDelete(con->request); | |
2023 | con->request = NULL; | |
2024 | } | |
2025 | ||
5ec1fd3d | 2026 | if (!cupsdSendError(con, HTTP_STATUS_REQUEST_TOO_LARGE, CUPSD_AUTH_NONE)) |
f7deaa1a | 2027 | { |
2028 | cupsdCloseClient(con); | |
2029 | return; | |
2030 | } | |
ef416fc2 | 2031 | } |
f8b3a85b MS |
2032 | else if (filestats.st_size == 0) |
2033 | { | |
2034 | /* | |
2035 | * Don't allow empty file... | |
2036 | */ | |
2037 | ||
2038 | unlink(con->filename); | |
2039 | cupsdClearString(&con->filename); | |
2040 | } | |
ef416fc2 | 2041 | |
2042 | if (con->command) | |
2043 | { | |
2044 | if (!cupsdSendCommand(con, con->command, con->options, 0)) | |
2045 | { | |
5ec1fd3d | 2046 | if (!cupsdSendError(con, HTTP_STATUS_NOT_FOUND, CUPSD_AUTH_NONE)) |
f7deaa1a | 2047 | { |
2048 | cupsdCloseClient(con); | |
2049 | return; | |
2050 | } | |
ef416fc2 | 2051 | } |
2052 | else | |
5ec1fd3d | 2053 | cupsdLogRequest(con, HTTP_STATUS_OK); |
ef416fc2 | 2054 | } |
2055 | } | |
2056 | ||
2057 | if (con->request) | |
f7deaa1a | 2058 | { |
2059 | cupsdProcessIPPRequest(con); | |
bc44d920 | 2060 | |
2061 | if (con->filename) | |
2062 | { | |
bc44d920 | 2063 | unlink(con->filename); |
2064 | cupsdClearString(&con->filename); | |
2065 | } | |
2066 | ||
f7deaa1a | 2067 | return; |
2068 | } | |
ef416fc2 | 2069 | } |
2070 | break; | |
2071 | ||
2072 | default : | |
2073 | break; /* Anti-compiler-warning-code */ | |
2074 | } | |
2075 | ||
5ec1fd3d | 2076 | if (httpGetState(con->http) == HTTP_STATE_WAITING) |
3dfe78b3 | 2077 | { |
5ec1fd3d | 2078 | if (!httpGetKeepAlive(con->http)) |
f11a948a | 2079 | { |
996acce8 MS |
2080 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
2081 | "Closing because Keep-Alive is disabled."); | |
3dfe78b3 | 2082 | cupsdCloseClient(con); |
f11a948a | 2083 | } |
3dfe78b3 MS |
2084 | else |
2085 | { | |
2086 | cupsArrayRemove(ActiveClients, con); | |
2087 | cupsdSetBusyState(); | |
2088 | } | |
2089 | } | |
ef416fc2 | 2090 | } |
2091 | ||
2092 | ||
2093 | /* | |
2094 | * 'cupsdSendCommand()' - Send output from a command via HTTP. | |
2095 | */ | |
2096 | ||
2097 | int /* O - 1 on success, 0 on failure */ | |
2098 | cupsdSendCommand( | |
2099 | cupsd_client_t *con, /* I - Client connection */ | |
2100 | char *command, /* I - Command to run */ | |
2101 | char *options, /* I - Command-line options */ | |
2102 | int root) /* I - Run as root? */ | |
2103 | { | |
2104 | int fd; /* Standard input file descriptor */ | |
2105 | ||
2106 | ||
2107 | if (con->filename) | |
ed486911 | 2108 | { |
ef416fc2 | 2109 | fd = open(con->filename, O_RDONLY); |
ef416fc2 | 2110 | |
ed486911 | 2111 | if (fd < 0) |
2112 | { | |
996acce8 MS |
2113 | cupsdLogClient(con, CUPSD_LOG_ERROR, |
2114 | "Unable to open \"%s\" for reading: %s", | |
2115 | con->filename ? con->filename : "/dev/null", | |
2116 | strerror(errno)); | |
ed486911 | 2117 | return (0); |
2118 | } | |
ef416fc2 | 2119 | |
ed486911 | 2120 | fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC); |
2121 | } | |
2122 | else | |
2123 | fd = -1; | |
ef416fc2 | 2124 | |
e200616a MS |
2125 | con->pipe_pid = pipe_command(con, fd, &(con->file), command, options, root); |
2126 | con->pipe_status = HTTP_STATUS_OK; | |
ef416fc2 | 2127 | |
a73ca01e MS |
2128 | httpClearFields(con->http); |
2129 | ||
ed486911 | 2130 | if (fd >= 0) |
2131 | close(fd); | |
ef416fc2 | 2132 | |
996acce8 MS |
2133 | cupsdLogClient(con, CUPSD_LOG_INFO, "Started \"%s\" (pid=%d, file=%d)", |
2134 | command, con->pipe_pid, con->file); | |
ef416fc2 | 2135 | |
2136 | if (con->pipe_pid == 0) | |
2137 | return (0); | |
2138 | ||
2139 | fcntl(con->file, F_SETFD, fcntl(con->file, F_GETFD) | FD_CLOEXEC); | |
2140 | ||
f899b121 | 2141 | cupsdAddSelect(con->file, (cupsd_selfunc_t)write_pipe, NULL, con); |
ef416fc2 | 2142 | |
996acce8 | 2143 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Waiting for CGI data."); |
1bc82dd9 | 2144 | |
ef416fc2 | 2145 | con->sent_header = 0; |
2146 | con->file_ready = 0; | |
2147 | con->got_fields = 0; | |
68b10830 | 2148 | con->header_used = 0; |
ef416fc2 | 2149 | |
2150 | return (1); | |
2151 | } | |
2152 | ||
2153 | ||
2154 | /* | |
2155 | * 'cupsdSendError()' - Send an error message via HTTP. | |
2156 | */ | |
2157 | ||
2158 | int /* O - 1 if successful, 0 otherwise */ | |
2159 | cupsdSendError(cupsd_client_t *con, /* I - Connection */ | |
f899b121 | 2160 | http_status_t code, /* I - Error code */ |
2161 | int auth_type)/* I - Authentication type */ | |
ef416fc2 | 2162 | { |
f7c0e880 MS |
2163 | char location[HTTP_MAX_VALUE]; /* Location field */ |
2164 | ||
2165 | ||
ffe32673 | 2166 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "cupsdSendError code=%d, auth_type=%d", code, auth_type); |
b9faaae1 | 2167 | |
4744bd90 | 2168 | #ifdef HAVE_SSL |
2169 | /* | |
2170 | * Force client to upgrade for authentication if that is how the | |
2171 | * server is configured... | |
2172 | */ | |
2173 | ||
5ec1fd3d MS |
2174 | if (code == HTTP_STATUS_UNAUTHORIZED && |
2175 | DefaultEncryption == HTTP_ENCRYPTION_REQUIRED && | |
2176 | _cups_strcasecmp(httpGetHostname(con->http, NULL, 0), "localhost") && | |
2177 | !httpIsEncrypted(con->http)) | |
4744bd90 | 2178 | { |
5ec1fd3d | 2179 | code = HTTP_STATUS_UPGRADE_REQUIRED; |
4744bd90 | 2180 | } |
2181 | #endif /* HAVE_SSL */ | |
2182 | ||
ef416fc2 | 2183 | /* |
2184 | * Put the request in the access_log file... | |
2185 | */ | |
2186 | ||
2187 | cupsdLogRequest(con, code); | |
2188 | ||
ef416fc2 | 2189 | /* |
2190 | * To work around bugs in some proxies, don't use Keep-Alive for some | |
2191 | * error messages... | |
f7deaa1a | 2192 | * |
2193 | * Kerberos authentication doesn't work without Keep-Alive, so | |
2194 | * never disable it in that case. | |
ef416fc2 | 2195 | */ |
2196 | ||
f7c0e880 MS |
2197 | strlcpy(location, httpGetField(con->http, HTTP_FIELD_LOCATION), sizeof(location)); |
2198 | ||
a73ca01e MS |
2199 | httpClearFields(con->http); |
2200 | ||
f7c0e880 MS |
2201 | httpSetField(con->http, HTTP_FIELD_LOCATION, location); |
2202 | ||
5ec1fd3d MS |
2203 | if (code >= HTTP_STATUS_BAD_REQUEST && con->type != CUPSD_AUTH_NEGOTIATE) |
2204 | httpSetKeepAlive(con->http, HTTP_KEEPALIVE_OFF); | |
ef416fc2 | 2205 | |
d21dc0ed | 2206 | if (httpGetVersion(con->http) >= HTTP_VERSION_1_1 && |
5ec1fd3d | 2207 | httpGetKeepAlive(con->http) == HTTP_KEEPALIVE_OFF) |
e200616a | 2208 | httpSetField(con->http, HTTP_FIELD_CONNECTION, "close"); |
ef416fc2 | 2209 | |
5ec1fd3d | 2210 | if (code >= HTTP_STATUS_BAD_REQUEST) |
ef416fc2 | 2211 | { |
2212 | /* | |
2213 | * Send a human-readable error message. | |
2214 | */ | |
2215 | ||
80ca4592 | 2216 | char message[4096], /* Message for user */ |
2217 | urltext[1024], /* URL redirection text */ | |
2218 | redirect[1024]; /* Redirection link */ | |
ef416fc2 | 2219 | const char *text; /* Status-specific text */ |
2220 | ||
80ca4592 | 2221 | |
2222 | redirect[0] = '\0'; | |
2223 | ||
5ec1fd3d | 2224 | if (code == HTTP_STATUS_UNAUTHORIZED) |
ef416fc2 | 2225 | text = _cupsLangString(con->language, |
2226 | _("Enter your username and password or the " | |
2227 | "root username and password to access this " | |
f7deaa1a | 2228 | "page. If you are using Kerberos authentication, " |
2229 | "make sure you have a valid Kerberos ticket.")); | |
5ec1fd3d | 2230 | else if (code == HTTP_STATUS_UPGRADE_REQUIRED) |
80ca4592 | 2231 | { |
2232 | text = urltext; | |
2233 | ||
2234 | snprintf(urltext, sizeof(urltext), | |
2235 | _cupsLangString(con->language, | |
2236 | _("You must access this page using the URL " | |
2237 | "<A HREF=\"https://%s:%d%s\">" | |
2238 | "https://%s:%d%s</A>.")), | |
2239 | con->servername, con->serverport, con->uri, | |
2240 | con->servername, con->serverport, con->uri); | |
2241 | ||
2242 | snprintf(redirect, sizeof(redirect), | |
b86bc4cf | 2243 | "<META HTTP-EQUIV=\"Refresh\" " |
2244 | "CONTENT=\"3;URL=https://%s:%d%s\">\n", | |
80ca4592 | 2245 | con->servername, con->serverport, con->uri); |
2246 | } | |
5ec1fd3d | 2247 | else if (code == HTTP_STATUS_CUPS_WEBIF_DISABLED) |
229681c1 MS |
2248 | text = _cupsLangString(con->language, |
2249 | _("The web interface is currently disabled. Run " | |
2250 | "\"cupsctl WebInterface=yes\" to enable it.")); | |
ef416fc2 | 2251 | else |
2252 | text = ""; | |
2253 | ||
2254 | snprintf(message, sizeof(message), | |
745129be MS |
2255 | "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" " |
2256 | "\"http://www.w3.org/TR/html4/loose.dtd\">\n" | |
ef416fc2 | 2257 | "<HTML>\n" |
2258 | "<HEAD>\n" | |
2259 | "\t<META HTTP-EQUIV=\"Content-Type\" " | |
2260 | "CONTENT=\"text/html; charset=utf-8\">\n" | |
229681c1 | 2261 | "\t<TITLE>%s - " CUPS_SVERSION "</TITLE>\n" |
ef416fc2 | 2262 | "\t<LINK REL=\"STYLESHEET\" TYPE=\"text/css\" " |
2263 | "HREF=\"/cups.css\">\n" | |
80ca4592 | 2264 | "%s" |
ef416fc2 | 2265 | "</HEAD>\n" |
2266 | "<BODY>\n" | |
229681c1 | 2267 | "<H1>%s</H1>\n" |
ef416fc2 | 2268 | "<P>%s</P>\n" |
2269 | "</BODY>\n" | |
2270 | "</HTML>\n", | |
41e6c1f1 MS |
2271 | _httpStatus(con->language, code), redirect, |
2272 | _httpStatus(con->language, code), text); | |
ef416fc2 | 2273 | |
43dcaf3b MS |
2274 | /* |
2275 | * Send an error message back to the client. If the error code is a | |
2276 | * 400 or 500 series, make sure the message contains some text, too! | |
2277 | */ | |
2278 | ||
2279 | size_t length = strlen(message); /* Length of message */ | |
e200616a | 2280 | |
43dcaf3b | 2281 | httpSetLength(con->http, length); |
e200616a MS |
2282 | |
2283 | if (!cupsdSendHeader(con, code, "text/html", auth_type)) | |
ef416fc2 | 2284 | return (0); |
ebeb3268 | 2285 | |
43dcaf3b MS |
2286 | if (httpWrite2(con->http, message, length) < 0) |
2287 | return (0); | |
2288 | ||
2289 | if (httpFlushWrite(con->http) < 0) | |
ef416fc2 | 2290 | return (0); |
2291 | } | |
e200616a MS |
2292 | else |
2293 | { | |
2294 | httpSetField(con->http, HTTP_FIELD_CONTENT_LENGTH, "0"); | |
a469f8a5 | 2295 | |
e200616a MS |
2296 | if (!cupsdSendHeader(con, code, NULL, auth_type)) |
2297 | return (0); | |
2298 | } | |
ef416fc2 | 2299 | |
2300 | return (1); | |
2301 | } | |
2302 | ||
2303 | ||
ef416fc2 | 2304 | /* |
2305 | * 'cupsdSendHeader()' - Send an HTTP request. | |
2306 | */ | |
2307 | ||
2308 | int /* O - 1 on success, 0 on failure */ | |
f899b121 | 2309 | cupsdSendHeader( |
2310 | cupsd_client_t *con, /* I - Client to send to */ | |
2311 | http_status_t code, /* I - HTTP status code */ | |
2312 | char *type, /* I - MIME type of document */ | |
2313 | int auth_type) /* I - Type of authentication */ | |
ef416fc2 | 2314 | { |
5a738aea | 2315 | char auth_str[1024]; /* Authorization string */ |
f7deaa1a | 2316 | |
2317 | ||
f3211b6d MS |
2318 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "cupsdSendHeader: code=%d, type=\"%s\", auth_type=%d", code, type, auth_type); |
2319 | ||
4744bd90 | 2320 | /* |
2321 | * Send the HTTP status header... | |
2322 | */ | |
2323 | ||
a73ca01e | 2324 | if (code == HTTP_STATUS_CUPS_WEBIF_DISABLED) |
229681c1 MS |
2325 | { |
2326 | /* | |
2327 | * Treat our special "web interface is disabled" status as "200 OK" for web | |
2328 | * browsers. | |
2329 | */ | |
2330 | ||
5ec1fd3d | 2331 | code = HTTP_STATUS_OK; |
229681c1 | 2332 | } |
b423cd4c | 2333 | |
ef416fc2 | 2334 | if (ServerHeader) |
e200616a | 2335 | httpSetField(con->http, HTTP_FIELD_SERVER, ServerHeader); |
5ec1fd3d MS |
2336 | |
2337 | if (code == HTTP_STATUS_METHOD_NOT_ALLOWED) | |
e200616a | 2338 | httpSetField(con->http, HTTP_FIELD_ALLOW, "GET, HEAD, OPTIONS, POST, PUT"); |
ef416fc2 | 2339 | |
5ec1fd3d | 2340 | if (code == HTTP_STATUS_UNAUTHORIZED) |
ef416fc2 | 2341 | { |
5bd77a73 | 2342 | if (auth_type == CUPSD_AUTH_NONE) |
f899b121 | 2343 | { |
5bd77a73 | 2344 | if (!con->best || con->best->type <= CUPSD_AUTH_NONE) |
dcb445bc | 2345 | auth_type = cupsdDefaultAuthType(); |
f899b121 | 2346 | else |
2347 | auth_type = con->best->type; | |
2348 | } | |
f7deaa1a | 2349 | |
2350 | auth_str[0] = '\0'; | |
2351 | ||
e0660879 | 2352 | if (auth_type == CUPSD_AUTH_BASIC) |
f7deaa1a | 2353 | strlcpy(auth_str, "Basic realm=\"CUPS\"", sizeof(auth_str)); |
f7deaa1a | 2354 | #ifdef HAVE_GSSAPI |
eac3a0a0 | 2355 | else if (auth_type == CUPSD_AUTH_NEGOTIATE) |
6961465f MS |
2356 | { |
2357 | # ifdef AF_LOCAL | |
5ec1fd3d | 2358 | if (httpAddrFamily(httpGetAddress(con->http)) == AF_LOCAL) |
6961465f MS |
2359 | strlcpy(auth_str, "Basic realm=\"CUPS\"", sizeof(auth_str)); |
2360 | else | |
2361 | # endif /* AF_LOCAL */ | |
f7deaa1a | 2362 | strlcpy(auth_str, "Negotiate", sizeof(auth_str)); |
6961465f | 2363 | } |
f7deaa1a | 2364 | #endif /* HAVE_GSSAPI */ |
2365 | ||
e07d4801 | 2366 | if (con->best && auth_type != CUPSD_AUTH_NEGOTIATE && |
5ec1fd3d | 2367 | !_cups_strcasecmp(httpGetHostname(con->http, NULL, 0), "localhost")) |
ef416fc2 | 2368 | { |
e07d4801 MS |
2369 | /* |
2370 | * Add a "trc" (try root certification) parameter for local non-Kerberos | |
2371 | * requests when the request requires system group membership - then the | |
2372 | * client knows the root certificate can/should be used. | |
2373 | * | |
f3c17241 | 2374 | * Also, for OS X we also look for @AUTHKEY and add an "authkey" |
e07d4801 MS |
2375 | * parameter as needed... |
2376 | */ | |
2377 | ||
10d09e33 MS |
2378 | char *name, /* Current user name */ |
2379 | *auth_key; /* Auth key buffer */ | |
f7deaa1a | 2380 | size_t auth_size; /* Size of remaining buffer */ |
2381 | ||
f7deaa1a | 2382 | auth_key = auth_str + strlen(auth_str); |
7e86f2f6 | 2383 | auth_size = sizeof(auth_str) - (size_t)(auth_key - auth_str); |
f7deaa1a | 2384 | |
10d09e33 MS |
2385 | for (name = (char *)cupsArrayFirst(con->best->names); |
2386 | name; | |
2387 | name = (char *)cupsArrayNext(con->best->names)) | |
f7deaa1a | 2388 | { |
e07d4801 | 2389 | #ifdef HAVE_AUTHORIZATION_H |
88f9aafc | 2390 | if (!_cups_strncasecmp(name, "@AUTHKEY(", 9)) |
f7deaa1a | 2391 | { |
10d09e33 | 2392 | snprintf(auth_key, auth_size, ", authkey=\"%s\"", name + 9); |
f7deaa1a | 2393 | /* end parenthesis is stripped in conf.c */ |
2394 | break; | |
2395 | } | |
e07d4801 MS |
2396 | else |
2397 | #endif /* HAVE_AUTHORIZATION_H */ | |
88f9aafc | 2398 | if (!_cups_strcasecmp(name, "@SYSTEM")) |
f7deaa1a | 2399 | { |
e07d4801 MS |
2400 | #ifdef HAVE_AUTHORIZATION_H |
2401 | if (SystemGroupAuthKey) | |
2402 | snprintf(auth_key, auth_size, | |
07ed0e9a | 2403 | ", authkey=\"%s\"", |
e07d4801 MS |
2404 | SystemGroupAuthKey); |
2405 | else | |
2406 | #else | |
f11a948a | 2407 | strlcpy(auth_key, ", trc=\"y\"", auth_size); |
e07d4801 | 2408 | #endif /* HAVE_AUTHORIZATION_H */ |
f7deaa1a | 2409 | break; |
2410 | } | |
2411 | } | |
ef416fc2 | 2412 | } |
f7deaa1a | 2413 | |
bc44d920 | 2414 | if (auth_str[0]) |
2415 | { | |
996acce8 | 2416 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "WWW-Authenticate: %s", auth_str); |
bc44d920 | 2417 | |
e200616a | 2418 | httpSetField(con->http, HTTP_FIELD_WWW_AUTHENTICATE, auth_str); |
bc44d920 | 2419 | } |
ef416fc2 | 2420 | } |
2421 | ||
e1d6a774 | 2422 | if (con->language && strcmp(con->language->language, "C")) |
e200616a | 2423 | httpSetField(con->http, HTTP_FIELD_CONTENT_LANGUAGE, con->language->language); |
ef416fc2 | 2424 | |
e1d6a774 | 2425 | if (type) |
ef416fc2 | 2426 | { |
2427 | if (!strcmp(type, "text/html")) | |
e200616a MS |
2428 | httpSetField(con->http, HTTP_FIELD_CONTENT_TYPE, "text/html; charset=utf-8"); |
2429 | else | |
2430 | httpSetField(con->http, HTTP_FIELD_CONTENT_TYPE, type); | |
ef416fc2 | 2431 | } |
2432 | ||
e200616a | 2433 | return (!httpWriteResponse(con->http, code)); |
ef416fc2 | 2434 | } |
2435 | ||
2436 | ||
2437 | /* | |
2438 | * 'cupsdUpdateCGI()' - Read status messages from CGI scripts and programs. | |
2439 | */ | |
2440 | ||
2441 | void | |
2442 | cupsdUpdateCGI(void) | |
2443 | { | |
2444 | char *ptr, /* Pointer to end of line in buffer */ | |
2445 | message[1024]; /* Pointer to message text */ | |
2446 | int loglevel; /* Log level for message */ | |
2447 | ||
2448 | ||
2449 | while ((ptr = cupsdStatBufUpdate(CGIStatusBuffer, &loglevel, | |
2450 | message, sizeof(message))) != NULL) | |
f0ab5bff MS |
2451 | { |
2452 | if (loglevel == CUPSD_LOG_INFO) | |
2453 | cupsdLogMessage(CUPSD_LOG_INFO, "%s", message); | |
2454 | ||
ef416fc2 | 2455 | if (!strchr(CGIStatusBuffer->buffer, '\n')) |
2456 | break; | |
f0ab5bff | 2457 | } |
ef416fc2 | 2458 | |
d09495fa | 2459 | if (ptr == NULL && !CGIStatusBuffer->bufused) |
ef416fc2 | 2460 | { |
2461 | /* | |
2462 | * Fatal error on pipe - should never happen! | |
2463 | */ | |
2464 | ||
2465 | cupsdLogMessage(CUPSD_LOG_CRIT, | |
2466 | "cupsdUpdateCGI: error reading from CGI error pipe - %s", | |
2467 | strerror(errno)); | |
2468 | } | |
2469 | } | |
2470 | ||
2471 | ||
2472 | /* | |
2473 | * 'cupsdWriteClient()' - Write data to a client as needed. | |
2474 | */ | |
2475 | ||
f7deaa1a | 2476 | void |
ef416fc2 | 2477 | cupsdWriteClient(cupsd_client_t *con) /* I - Client connection */ |
2478 | { | |
68b10830 MS |
2479 | int bytes, /* Number of bytes written */ |
2480 | field_col; /* Current column */ | |
2481 | char *bufptr, /* Pointer into buffer */ | |
2482 | *bufend; /* Pointer to end of buffer */ | |
ef416fc2 | 2483 | ipp_state_t ipp_state; /* IPP state value */ |
2484 | ||
2485 | ||
5ec1fd3d | 2486 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "con->http=%p", con->http); |
996acce8 MS |
2487 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
2488 | "cupsdWriteClient " | |
2489 | "error=%d, " | |
2490 | "used=%d, " | |
2491 | "state=%s, " | |
2492 | "data_encoding=HTTP_ENCODING_%s, " | |
2493 | "data_remaining=" CUPS_LLFMT ", " | |
2494 | "response=%p(%s), " | |
2495 | "pipe_pid=%d, " | |
2496 | "file=%d", | |
5ec1fd3d MS |
2497 | httpError(con->http), (int)httpGetReady(con->http), |
2498 | httpStateString(httpGetState(con->http)), | |
d21dc0ed MS |
2499 | httpIsChunked(con->http) ? "CHUNKED" : "LENGTH", |
2500 | CUPS_LLCAST httpGetLength2(con->http), | |
996acce8 | 2501 | con->response, |
a73ca01e | 2502 | con->response ? ippStateString(ippGetState(con->request)) : "", |
996acce8 MS |
2503 | con->pipe_pid, con->file); |
2504 | ||
5ec1fd3d MS |
2505 | if (httpGetState(con->http) != HTTP_STATE_GET_SEND && |
2506 | httpGetState(con->http) != HTTP_STATE_POST_SEND) | |
8b116e60 MS |
2507 | { |
2508 | /* | |
2509 | * If we get called in the wrong state, then something went wrong with the | |
2510 | * connection and we need to shut it down... | |
2511 | */ | |
2512 | ||
43dcaf3b | 2513 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Closing on unexpected HTTP write state %s.", |
5ec1fd3d | 2514 | httpStateString(httpGetState(con->http))); |
8b116e60 | 2515 | cupsdCloseClient(con); |
f7deaa1a | 2516 | return; |
8b116e60 | 2517 | } |
f7deaa1a | 2518 | |
2519 | if (con->pipe_pid) | |
2520 | { | |
2521 | /* | |
2522 | * Make sure we select on the CGI output... | |
2523 | */ | |
2524 | ||
f899b121 | 2525 | cupsdAddSelect(con->file, (cupsd_selfunc_t)write_pipe, NULL, con); |
f7deaa1a | 2526 | |
996acce8 | 2527 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Waiting for CGI data."); |
1bc82dd9 | 2528 | |
f7deaa1a | 2529 | if (!con->file_ready) |
2530 | { | |
2531 | /* | |
2532 | * Try again later when there is CGI output available... | |
2533 | */ | |
2534 | ||
996acce8 | 2535 | cupsdRemoveSelect(httpGetFd(con->http)); |
f7deaa1a | 2536 | return; |
2537 | } | |
2538 | ||
2539 | con->file_ready = 0; | |
2540 | } | |
ef416fc2 | 2541 | |
209cc9b6 MS |
2542 | bytes = (ssize_t)(sizeof(con->header) - (size_t)con->header_used); |
2543 | ||
1720786e | 2544 | if (!con->pipe_pid && bytes > (ssize_t)httpGetRemaining(con->http)) |
209cc9b6 MS |
2545 | { |
2546 | /* | |
2547 | * Limit GET bytes to original size of file (STR #3265)... | |
2548 | */ | |
2549 | ||
2550 | bytes = (ssize_t)httpGetRemaining(con->http); | |
2551 | } | |
2552 | ||
5ec1fd3d | 2553 | if (con->response && con->response->state != IPP_STATE_DATA) |
ef416fc2 | 2554 | { |
d21dc0ed | 2555 | size_t wused = httpGetPending(con->http); /* Previous write buffer use */ |
94436c5a MS |
2556 | |
2557 | do | |
2558 | { | |
2559 | /* | |
2560 | * Write a single attribute or the IPP message header... | |
2561 | */ | |
2562 | ||
996acce8 | 2563 | ipp_state = ippWrite(con->http, con->response); |
94436c5a MS |
2564 | |
2565 | /* | |
2566 | * If the write buffer has been flushed, stop buffering up attributes... | |
2567 | */ | |
2568 | ||
d21dc0ed | 2569 | if (httpGetPending(con->http) <= wused) |
94436c5a MS |
2570 | break; |
2571 | } | |
2572 | while (ipp_state != IPP_STATE_DATA && ipp_state != IPP_STATE_ERROR); | |
2573 | ||
996acce8 MS |
2574 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
2575 | "Writing IPP response, ipp_state=%s, old " | |
d21dc0ed MS |
2576 | "wused=" CUPS_LLFMT ", new wused=" CUPS_LLFMT, |
2577 | ippStateString(ipp_state), | |
2578 | CUPS_LLCAST wused, CUPS_LLCAST httpGetPending(con->http)); | |
2579 | ||
2580 | if (httpGetPending(con->http) > 0) | |
996acce8 | 2581 | httpFlushWrite(con->http); |
94436c5a MS |
2582 | |
2583 | bytes = ipp_state != IPP_STATE_ERROR && | |
2584 | (con->file >= 0 || ipp_state != IPP_STATE_DATA); | |
21f36711 | 2585 | |
996acce8 MS |
2586 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
2587 | "bytes=%d, http_state=%d, data_remaining=" CUPS_LLFMT, | |
5ec1fd3d | 2588 | (int)bytes, httpGetState(con->http), |
d21dc0ed | 2589 | CUPS_LLCAST httpGetLength2(con->http)); |
ef416fc2 | 2590 | } |
209cc9b6 | 2591 | else if ((bytes = read(con->file, con->header + con->header_used, (size_t)bytes)) > 0) |
ef416fc2 | 2592 | { |
68b10830 MS |
2593 | con->header_used += bytes; |
2594 | ||
ef416fc2 | 2595 | if (con->pipe_pid && !con->got_fields) |
2596 | { | |
2597 | /* | |
2598 | * Inspect the data for Content-Type and other fields. | |
2599 | */ | |
2600 | ||
68b10830 MS |
2601 | for (bufptr = con->header, bufend = con->header + con->header_used, |
2602 | field_col = 0; | |
2603 | !con->got_fields && bufptr < bufend; | |
2604 | bufptr ++) | |
d1c13e16 | 2605 | { |
ef416fc2 | 2606 | if (*bufptr == '\n') |
2607 | { | |
2608 | /* | |
2609 | * Send line to client... | |
2610 | */ | |
2611 | ||
68b10830 | 2612 | if (bufptr > con->header && bufptr[-1] == '\r') |
ef416fc2 | 2613 | bufptr[-1] = '\0'; |
2614 | *bufptr++ = '\0'; | |
2615 | ||
996acce8 | 2616 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Script header: %s", con->header); |
ef416fc2 | 2617 | |
2618 | if (!con->sent_header) | |
2619 | { | |
2620 | /* | |
2621 | * Handle redirection and CGI status codes... | |
2622 | */ | |
2623 | ||
e200616a MS |
2624 | http_field_t field; /* HTTP field */ |
2625 | char *value = strchr(con->header, ':'); | |
2626 | /* Value of field */ | |
2627 | ||
2628 | if (value) | |
d6ae789d | 2629 | { |
e200616a MS |
2630 | *value++ = '\0'; |
2631 | while (isspace(*value & 255)) | |
2632 | value ++; | |
2633 | } | |
321d8d57 | 2634 | |
e200616a | 2635 | field = httpFieldValue(con->header); |
07725fee | 2636 | |
e200616a MS |
2637 | if (field != HTTP_FIELD_UNKNOWN && value) |
2638 | { | |
2639 | httpSetField(con->http, field, value); | |
2640 | ||
2641 | if (field == HTTP_FIELD_LOCATION) | |
2642 | { | |
2643 | con->pipe_status = HTTP_STATUS_SEE_OTHER; | |
2644 | con->sent_header = 2; | |
2645 | } | |
2646 | else | |
2647 | con->sent_header = 1; | |
d6ae789d | 2648 | } |
e200616a | 2649 | else if (!_cups_strcasecmp(con->header, "Status") && value) |
07725fee | 2650 | { |
e200616a | 2651 | con->pipe_status = (http_status_t)atoi(value); |
07725fee | 2652 | con->sent_header = 2; |
2653 | } | |
e200616a | 2654 | else if (!_cups_strcasecmp(con->header, "Set-Cookie") && value) |
4744bd90 | 2655 | { |
e200616a MS |
2656 | httpSetCookie(con->http, value); |
2657 | con->sent_header = 1; | |
2658 | } | |
ef416fc2 | 2659 | } |
2660 | ||
ef416fc2 | 2661 | /* |
2662 | * Update buffer... | |
2663 | */ | |
2664 | ||
68b10830 | 2665 | con->header_used -= bufptr - con->header; |
d1c13e16 | 2666 | |
68b10830 | 2667 | if (con->header_used > 0) |
07623986 | 2668 | memmove(con->header, bufptr, (size_t)con->header_used); |
d1c13e16 | 2669 | |
68b10830 | 2670 | bufptr = con->header - 1; |
ef416fc2 | 2671 | |
2672 | /* | |
2673 | * See if the line was empty... | |
2674 | */ | |
2675 | ||
68b10830 | 2676 | if (field_col == 0) |
d09495fa | 2677 | { |
ef416fc2 | 2678 | con->got_fields = 1; |
d09495fa | 2679 | |
e200616a MS |
2680 | if (httpGetVersion(con->http) == HTTP_VERSION_1_1 && |
2681 | !httpGetField(con->http, HTTP_FIELD_CONTENT_LENGTH)[0]) | |
2682 | httpSetLength(con->http, 0); | |
2683 | ||
f3211b6d MS |
2684 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Sending status %d for CGI.", con->pipe_status); |
2685 | ||
6abe9327 | 2686 | if (con->pipe_status == HTTP_STATUS_OK) |
07725fee | 2687 | { |
6abe9327 MS |
2688 | if (!cupsdSendHeader(con, con->pipe_status, NULL, CUPSD_AUTH_NONE)) |
2689 | { | |
2690 | cupsdCloseClient(con); | |
2691 | return; | |
2692 | } | |
2693 | } | |
2694 | else | |
2695 | { | |
2696 | if (!cupsdSendError(con, con->pipe_status, CUPSD_AUTH_NONE)) | |
2697 | { | |
2698 | cupsdCloseClient(con); | |
2699 | return; | |
2700 | } | |
07725fee | 2701 | } |
d09495fa | 2702 | } |
ef416fc2 | 2703 | else |
68b10830 | 2704 | field_col = 0; |
ef416fc2 | 2705 | } |
2706 | else if (*bufptr != '\r') | |
68b10830 | 2707 | field_col ++; |
d1c13e16 | 2708 | } |
ef416fc2 | 2709 | |
68b10830 | 2710 | if (!con->got_fields) |
47879b8b | 2711 | return; |
ef416fc2 | 2712 | } |
2713 | ||
68b10830 | 2714 | if (con->header_used > 0) |
ef416fc2 | 2715 | { |
7e86f2f6 | 2716 | if (httpWrite2(con->http, con->header, (size_t)con->header_used) < 0) |
4744bd90 | 2717 | { |
996acce8 | 2718 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Closing for error %d (%s)", |
5ec1fd3d | 2719 | httpError(con->http), strerror(httpError(con->http))); |
4744bd90 | 2720 | cupsdCloseClient(con); |
f7deaa1a | 2721 | return; |
4744bd90 | 2722 | } |
ef416fc2 | 2723 | |
d21dc0ed | 2724 | if (httpIsChunked(con->http)) |
996acce8 | 2725 | httpFlushWrite(con->http); |
ae71f5de | 2726 | |
68b10830 | 2727 | con->bytes += con->header_used; |
ef416fc2 | 2728 | |
5ec1fd3d | 2729 | if (httpGetState(con->http) == HTTP_STATE_WAITING) |
4744bd90 | 2730 | bytes = 0; |
68b10830 MS |
2731 | else |
2732 | bytes = con->header_used; | |
2733 | ||
2734 | con->header_used = 0; | |
4744bd90 | 2735 | } |
ef416fc2 | 2736 | } |
2737 | ||
8b116e60 | 2738 | if (bytes <= 0 || |
5ec1fd3d MS |
2739 | (httpGetState(con->http) != HTTP_STATE_GET_SEND && |
2740 | httpGetState(con->http) != HTTP_STATE_POST_SEND)) | |
ef416fc2 | 2741 | { |
38e73f87 | 2742 | if (!con->sent_header && con->pipe_pid) |
5ec1fd3d | 2743 | cupsdSendError(con, HTTP_STATUS_SERVER_ERROR, CUPSD_AUTH_NONE); |
94da7e34 MS |
2744 | else |
2745 | { | |
5ec1fd3d | 2746 | cupsdLogRequest(con, HTTP_STATUS_OK); |
ef416fc2 | 2747 | |
f3211b6d | 2748 | if (httpIsChunked(con->http) && (!con->pipe_pid || con->sent_header > 0)) |
ef416fc2 | 2749 | { |
dfc45c1b MS |
2750 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Sending 0-length chunk."); |
2751 | ||
996acce8 | 2752 | if (httpWrite2(con->http, "", 0) < 0) |
94da7e34 | 2753 | { |
996acce8 | 2754 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Closing for error %d (%s)", |
5ec1fd3d | 2755 | httpError(con->http), strerror(httpError(con->http))); |
94da7e34 MS |
2756 | cupsdCloseClient(con); |
2757 | return; | |
2758 | } | |
ef416fc2 | 2759 | } |
dfc45c1b MS |
2760 | |
2761 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Flushing write buffer."); | |
2762 | httpFlushWrite(con->http); | |
2763 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "New state is %s", httpStateString(httpGetState(con->http))); | |
ef416fc2 | 2764 | } |
2765 | ||
996acce8 | 2766 | cupsdAddSelect(httpGetFd(con->http), (cupsd_selfunc_t)cupsdReadClient, NULL, con); |
ef416fc2 | 2767 | |
996acce8 | 2768 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Waiting for request."); |
1bc82dd9 | 2769 | |
ef416fc2 | 2770 | if (con->file >= 0) |
2771 | { | |
f7deaa1a | 2772 | cupsdRemoveSelect(con->file); |
ef416fc2 | 2773 | |
2774 | if (con->pipe_pid) | |
2775 | cupsdEndProcess(con->pipe_pid, 0); | |
2776 | ||
ef416fc2 | 2777 | close(con->file); |
2778 | con->file = -1; | |
2779 | con->pipe_pid = 0; | |
2780 | } | |
2781 | ||
2782 | if (con->filename) | |
2783 | { | |
ef416fc2 | 2784 | unlink(con->filename); |
2785 | cupsdClearString(&con->filename); | |
2786 | } | |
2787 | ||
2abf387c | 2788 | if (con->request) |
ef416fc2 | 2789 | { |
2790 | ippDelete(con->request); | |
2791 | con->request = NULL; | |
2792 | } | |
2793 | ||
2abf387c | 2794 | if (con->response) |
ef416fc2 | 2795 | { |
2796 | ippDelete(con->response); | |
2797 | con->response = NULL; | |
2798 | } | |
2799 | ||
2800 | cupsdClearString(&con->command); | |
2801 | cupsdClearString(&con->options); | |
b86bc4cf | 2802 | cupsdClearString(&con->query_string); |
ef416fc2 | 2803 | |
5ec1fd3d | 2804 | if (!httpGetKeepAlive(con->http)) |
ef416fc2 | 2805 | { |
996acce8 MS |
2806 | cupsdLogClient(con, CUPSD_LOG_DEBUG, |
2807 | "Closing because Keep-Alive is disabled."); | |
ef416fc2 | 2808 | cupsdCloseClient(con); |
f7deaa1a | 2809 | return; |
ef416fc2 | 2810 | } |
f11a948a MS |
2811 | else |
2812 | { | |
2813 | cupsArrayRemove(ActiveClients, con); | |
2814 | cupsdSetBusyState(); | |
2815 | } | |
ef416fc2 | 2816 | } |
f7deaa1a | 2817 | } |
ef416fc2 | 2818 | |
f7deaa1a | 2819 | |
e1d6a774 | 2820 | /* |
2821 | * 'check_if_modified()' - Decode an "If-Modified-Since" line. | |
2822 | */ | |
2823 | ||
2824 | static int /* O - 1 if modified since */ | |
2825 | check_if_modified( | |
2826 | cupsd_client_t *con, /* I - Client connection */ | |
2827 | struct stat *filestats) /* I - File information */ | |
2828 | { | |
5ec1fd3d | 2829 | const char *ptr; /* Pointer into field */ |
e1d6a774 | 2830 | time_t date; /* Time/date value */ |
2831 | off_t size; /* Size/length value */ | |
2832 | ||
2833 | ||
2834 | size = 0; | |
2835 | date = 0; | |
5ec1fd3d | 2836 | ptr = httpGetField(con->http, HTTP_FIELD_IF_MODIFIED_SINCE); |
e1d6a774 | 2837 | |
2838 | if (*ptr == '\0') | |
2839 | return (1); | |
2840 | ||
ffe32673 | 2841 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "check_if_modified: filestats=%p(" CUPS_LLFMT ", %d)) If-Modified-Since=\"%s\"", filestats, CUPS_LLCAST filestats->st_size, (int)filestats->st_mtime, ptr); |
e1d6a774 | 2842 | |
2843 | while (*ptr != '\0') | |
2844 | { | |
2845 | while (isspace(*ptr) || *ptr == ';') | |
2846 | ptr ++; | |
2847 | ||
88f9aafc | 2848 | if (_cups_strncasecmp(ptr, "length=", 7) == 0) |
e1d6a774 | 2849 | { |
2850 | ptr += 7; | |
2851 | size = strtoll(ptr, NULL, 10); | |
2852 | ||
2853 | while (isdigit(*ptr)) | |
2854 | ptr ++; | |
2855 | } | |
2856 | else if (isalpha(*ptr)) | |
2857 | { | |
2858 | date = httpGetDateTime(ptr); | |
2859 | while (*ptr != '\0' && *ptr != ';') | |
2860 | ptr ++; | |
2861 | } | |
e53920b9 | 2862 | else |
2863 | ptr ++; | |
e1d6a774 | 2864 | } |
2865 | ||
e1d6a774 | 2866 | return ((size != filestats->st_size && size != 0) || |
2867 | (date < filestats->st_mtime && date != 0) || | |
2868 | (size == 0 && date == 0)); | |
2869 | } | |
2870 | ||
2871 | ||
3dfe78b3 MS |
2872 | /* |
2873 | * 'compare_clients()' - Compare two client connections. | |
2874 | */ | |
2875 | ||
2876 | static int /* O - Result of comparison */ | |
2877 | compare_clients(cupsd_client_t *a, /* I - First client */ | |
2878 | cupsd_client_t *b, /* I - Second client */ | |
2879 | void *data) /* I - User data (not used) */ | |
2880 | { | |
2881 | (void)data; | |
2882 | ||
2883 | if (a == b) | |
2884 | return (0); | |
2885 | else if (a < b) | |
2886 | return (-1); | |
2887 | else | |
2888 | return (1); | |
2889 | } | |
2890 | ||
2891 | ||
d3d89474 MS |
2892 | #ifdef HAVE_SSL |
2893 | /* | |
2894 | * 'cupsd_start_tls()' - Start encryption on a connection. | |
2895 | */ | |
2896 | ||
2897 | static int /* O - 0 on success, -1 on error */ | |
2898 | cupsd_start_tls(cupsd_client_t *con, /* I - Client connection */ | |
2899 | http_encryption_t e) /* I - Encryption mode */ | |
2900 | { | |
d3d89474 MS |
2901 | if (httpEncryption(con->http, e)) |
2902 | { | |
2903 | cupsdLogClient(con, CUPSD_LOG_ERROR, "Unable to encrypt connection: %s", | |
2904 | cupsLastErrorString()); | |
2905 | return (-1); | |
2906 | } | |
2907 | ||
8719e9db | 2908 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Connection now encrypted."); |
d3d89474 MS |
2909 | return (0); |
2910 | } | |
2911 | #endif /* HAVE_SSL */ | |
2912 | ||
2913 | ||
ef416fc2 | 2914 | /* |
2915 | * 'get_file()' - Get a filename and state info. | |
2916 | */ | |
2917 | ||
2918 | static char * /* O - Real filename */ | |
2919 | get_file(cupsd_client_t *con, /* I - Client connection */ | |
2920 | struct stat *filestats, /* O - File information */ | |
2921 | char *filename, /* IO - Filename buffer */ | |
07623986 | 2922 | size_t len) /* I - Buffer length */ |
ef416fc2 | 2923 | { |
2924 | int status; /* Status of filesystem calls */ | |
2925 | char *ptr; /* Pointer info filename */ | |
07623986 | 2926 | size_t plen; /* Remaining length after pointer */ |
d8a60ef8 MS |
2927 | char language[7], /* Language subdirectory, if any */ |
2928 | dest[1024]; /* Destination name */ | |
112fc3c0 | 2929 | int perm_check = 1; /* Do permissions check? */ |
ef416fc2 | 2930 | |
2931 | ||
2932 | /* | |
f7deaa1a | 2933 | * Figure out the real filename... |
ef416fc2 | 2934 | */ |
2935 | ||
db1f069b MS |
2936 | language[0] = '\0'; |
2937 | ||
7cf5915e | 2938 | if (!strncmp(con->uri, "/ppd/", 5) && !strchr(con->uri + 5, '/')) |
112fc3c0 | 2939 | { |
d8a60ef8 MS |
2940 | strlcpy(dest, con->uri + 5, sizeof(dest)); |
2941 | ptr = dest + strlen(dest) - 4; | |
2942 | ||
2943 | if (ptr <= dest || strcmp(ptr, ".ppd")) | |
2944 | { | |
2945 | cupsdLogClient(con, CUPSD_LOG_INFO, "Disallowed path \"%s\".", con->uri); | |
2946 | return (NULL); | |
2947 | } | |
2948 | ||
2949 | *ptr = '\0'; | |
2950 | if (!cupsdFindPrinter(dest)) | |
2951 | { | |
2952 | cupsdLogClient(con, CUPSD_LOG_INFO, "No printer \"%s\" found.", dest); | |
2953 | return (NULL); | |
2954 | } | |
2955 | ||
ef416fc2 | 2956 | snprintf(filename, len, "%s%s", ServerRoot, con->uri); |
112fc3c0 MS |
2957 | |
2958 | perm_check = 0; | |
2959 | } | |
7cf5915e MS |
2960 | else if (!strncmp(con->uri, "/icons/", 7) && !strchr(con->uri + 7, '/')) |
2961 | { | |
d8a60ef8 MS |
2962 | strlcpy(dest, con->uri + 7, sizeof(dest)); |
2963 | ptr = dest + strlen(dest) - 4; | |
2964 | ||
2965 | if (ptr <= dest || strcmp(ptr, ".png")) | |
2966 | { | |
2967 | cupsdLogClient(con, CUPSD_LOG_INFO, "Disallowed path \"%s\".", con->uri); | |
2968 | return (NULL); | |
2969 | } | |
2970 | ||
2971 | *ptr = '\0'; | |
2972 | if (!cupsdFindDest(dest)) | |
2973 | { | |
2974 | cupsdLogClient(con, CUPSD_LOG_INFO, "No printer \"%s\" found.", dest); | |
2975 | return (NULL); | |
2976 | } | |
2977 | ||
2978 | snprintf(filename, len, "%s/%s.png", CacheDir, dest); | |
7cf5915e MS |
2979 | if (access(filename, F_OK) < 0) |
2980 | snprintf(filename, len, "%s/images/generic.png", DocumentRoot); | |
112fc3c0 MS |
2981 | |
2982 | perm_check = 0; | |
7cf5915e | 2983 | } |
f7deaa1a | 2984 | else if (!strncmp(con->uri, "/rss/", 5) && !strchr(con->uri + 5, '/')) |
2985 | snprintf(filename, len, "%s/rss/%s", CacheDir, con->uri + 5); | |
112fc3c0 MS |
2986 | else if (!strcmp(con->uri, "/admin/conf/cupsd.conf")) |
2987 | { | |
2988 | strlcpy(filename, ConfigurationFile, len); | |
2989 | ||
2990 | perm_check = 0; | |
2991 | } | |
ef416fc2 | 2992 | else if (!strncmp(con->uri, "/admin/log/", 11)) |
2993 | { | |
2e4ff8af | 2994 | if (!strncmp(con->uri + 11, "access_log", 10) && AccessLog[0] == '/') |
ef416fc2 | 2995 | strlcpy(filename, AccessLog, len); |
2e4ff8af | 2996 | else if (!strncmp(con->uri + 11, "error_log", 9) && ErrorLog[0] == '/') |
ef416fc2 | 2997 | strlcpy(filename, ErrorLog, len); |
2e4ff8af | 2998 | else if (!strncmp(con->uri + 11, "page_log", 8) && PageLog[0] == '/') |
ef416fc2 | 2999 | strlcpy(filename, PageLog, len); |
3000 | else | |
3001 | return (NULL); | |
112fc3c0 MS |
3002 | |
3003 | perm_check = 0; | |
ef416fc2 | 3004 | } |
d6ae789d | 3005 | else if (con->language) |
db1f069b MS |
3006 | { |
3007 | snprintf(language, sizeof(language), "/%s", con->language->language); | |
3008 | snprintf(filename, len, "%s%s%s", DocumentRoot, language, con->uri); | |
3009 | } | |
ef416fc2 | 3010 | else |
3011 | snprintf(filename, len, "%s%s", DocumentRoot, con->uri); | |
3012 | ||
3013 | if ((ptr = strchr(filename, '?')) != NULL) | |
3014 | *ptr = '\0'; | |
3015 | ||
3016 | /* | |
3017 | * Grab the status for this language; if there isn't a language-specific file | |
3018 | * then fallback to the default one... | |
3019 | */ | |
3020 | ||
9e92ab19 | 3021 | if ((status = lstat(filename, filestats)) != 0 && language[0] && |
7cf5915e | 3022 | strncmp(con->uri, "/icons/", 7) && |
d6ae789d | 3023 | strncmp(con->uri, "/ppd/", 5) && |
7cf5915e | 3024 | strncmp(con->uri, "/rss/", 5) && |
d6ae789d | 3025 | strncmp(con->uri, "/admin/conf/", 12) && |
3026 | strncmp(con->uri, "/admin/log/", 11)) | |
ef416fc2 | 3027 | { |
3028 | /* | |
d6ae789d | 3029 | * Drop the country code... |
ef416fc2 | 3030 | */ |
3031 | ||
db1f069b MS |
3032 | language[3] = '\0'; |
3033 | snprintf(filename, len, "%s%s%s", DocumentRoot, language, con->uri); | |
d6ae789d | 3034 | |
3035 | if ((ptr = strchr(filename, '?')) != NULL) | |
3036 | *ptr = '\0'; | |
3037 | ||
36618f45 | 3038 | if ((status = lstat(filename, filestats)) != 0) |
ef416fc2 | 3039 | { |
d6ae789d | 3040 | /* |
3041 | * Drop the language prefix and try the root directory... | |
3042 | */ | |
3043 | ||
db1f069b | 3044 | language[0] = '\0'; |
ef416fc2 | 3045 | snprintf(filename, len, "%s%s", DocumentRoot, con->uri); |
3046 | ||
3047 | if ((ptr = strchr(filename, '?')) != NULL) | |
3048 | *ptr = '\0'; | |
3049 | ||
36618f45 | 3050 | status = lstat(filename, filestats); |
ef416fc2 | 3051 | } |
3052 | } | |
3053 | ||
3054 | /* | |
36618f45 MS |
3055 | * If we've found a symlink, 404 the sucker to avoid disclosing information. |
3056 | */ | |
3057 | ||
3058 | if (!status && S_ISLNK(filestats->st_mode)) | |
3059 | { | |
3060 | cupsdLogClient(con, CUPSD_LOG_INFO, "Symlinks such as \"%s\" are not allowed.", filename); | |
3061 | return (NULL); | |
3062 | } | |
3063 | ||
3064 | /* | |
3065 | * Similarly, if the file/directory does not have world read permissions, do | |
3066 | * not allow access... | |
3067 | */ | |
3068 | ||
112fc3c0 | 3069 | if (!status && perm_check && !(filestats->st_mode & S_IROTH)) |
36618f45 MS |
3070 | { |
3071 | cupsdLogClient(con, CUPSD_LOG_INFO, "Files/directories such as \"%s\" must be world-readable.", filename); | |
3072 | return (NULL); | |
3073 | } | |
3074 | ||
3075 | /* | |
3076 | * If we've found a directory, get the index.html file instead... | |
ef416fc2 | 3077 | */ |
3078 | ||
3079 | if (!status && S_ISDIR(filestats->st_mode)) | |
3080 | { | |
db1f069b MS |
3081 | /* |
3082 | * Make sure the URI ends with a slash... | |
3083 | */ | |
ef416fc2 | 3084 | |
db1f069b MS |
3085 | if (con->uri[strlen(con->uri) - 1] != '/') |
3086 | strlcat(con->uri, "/", sizeof(con->uri)); | |
ef416fc2 | 3087 | |
db1f069b MS |
3088 | /* |
3089 | * Find the directory index file, trying every language... | |
3090 | */ | |
ef416fc2 | 3091 | |
db1f069b | 3092 | do |
ef416fc2 | 3093 | { |
db1f069b MS |
3094 | if (status && language[0]) |
3095 | { | |
3096 | /* | |
3097 | * Try a different language subset... | |
3098 | */ | |
3099 | ||
3100 | if (language[3]) | |
3101 | language[0] = '\0'; /* Strip country code */ | |
3102 | else | |
3103 | language[0] = '\0'; /* Strip language */ | |
3104 | } | |
3105 | ||
3106 | /* | |
3107 | * Look for the index file... | |
3108 | */ | |
3109 | ||
3110 | snprintf(filename, len, "%s%s%s", DocumentRoot, language, con->uri); | |
3111 | ||
3112 | if ((ptr = strchr(filename, '?')) != NULL) | |
3113 | *ptr = '\0'; | |
3114 | ||
3115 | ptr = filename + strlen(filename); | |
07623986 | 3116 | plen = len - (size_t)(ptr - filename); |
db1f069b MS |
3117 | |
3118 | strlcpy(ptr, "index.html", plen); | |
9e92ab19 | 3119 | status = lstat(filename, filestats); |
db1f069b MS |
3120 | |
3121 | #ifdef HAVE_JAVA | |
3122 | if (status) | |
3123 | { | |
3124 | strlcpy(ptr, "index.class", plen); | |
9e92ab19 | 3125 | status = lstat(filename, filestats); |
db1f069b | 3126 | } |
ef416fc2 | 3127 | #endif /* HAVE_JAVA */ |
3128 | ||
3129 | #ifdef HAVE_PERL | |
db1f069b MS |
3130 | if (status) |
3131 | { | |
3132 | strlcpy(ptr, "index.pl", plen); | |
9e92ab19 | 3133 | status = lstat(filename, filestats); |
db1f069b | 3134 | } |
ef416fc2 | 3135 | #endif /* HAVE_PERL */ |
3136 | ||
3137 | #ifdef HAVE_PHP | |
db1f069b MS |
3138 | if (status) |
3139 | { | |
3140 | strlcpy(ptr, "index.php", plen); | |
9e92ab19 | 3141 | status = lstat(filename, filestats); |
db1f069b | 3142 | } |
ef416fc2 | 3143 | #endif /* HAVE_PHP */ |
3144 | ||
3145 | #ifdef HAVE_PYTHON | |
db1f069b MS |
3146 | if (status) |
3147 | { | |
3148 | strlcpy(ptr, "index.pyc", plen); | |
9e92ab19 | 3149 | status = lstat(filename, filestats); |
db1f069b | 3150 | } |
ef416fc2 | 3151 | |
db1f069b MS |
3152 | if (status) |
3153 | { | |
3154 | strlcpy(ptr, "index.py", plen); | |
9e92ab19 | 3155 | status = lstat(filename, filestats); |
db1f069b | 3156 | } |
ef416fc2 | 3157 | #endif /* HAVE_PYTHON */ |
db1f069b MS |
3158 | |
3159 | } | |
3160 | while (status && language[0]); | |
9e92ab19 MS |
3161 | |
3162 | /* | |
3163 | * If we've found a symlink, 404 the sucker to avoid disclosing information. | |
3164 | */ | |
3165 | ||
3166 | if (!status && S_ISLNK(filestats->st_mode)) | |
3167 | { | |
3168 | cupsdLogClient(con, CUPSD_LOG_INFO, "Symlinks such as \"%s\" are not allowed.", filename); | |
3169 | return (NULL); | |
3170 | } | |
2e667a52 MS |
3171 | |
3172 | /* | |
3173 | * Similarly, if the file/directory does not have world read permissions, do | |
3174 | * not allow access... | |
3175 | */ | |
3176 | ||
112fc3c0 | 3177 | if (!status && perm_check && !(filestats->st_mode & S_IROTH)) |
2e667a52 MS |
3178 | { |
3179 | cupsdLogClient(con, CUPSD_LOG_INFO, "Files/directories such as \"%s\" must be world-readable.", filename); | |
3180 | return (NULL); | |
3181 | } | |
ef416fc2 | 3182 | } |
3183 | ||
ffe32673 | 3184 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "get_file: filestats=%p, filename=%p, len=" CUPS_LLFMT ", returning \"%s\".", filestats, filename, CUPS_LLCAST len, status ? "(null)" : filename); |
ef416fc2 | 3185 | |
ef416fc2 | 3186 | if (status) |
3187 | return (NULL); | |
3188 | else | |
3189 | return (filename); | |
3190 | } | |
3191 | ||
3192 | ||
3193 | /* | |
c41769ff | 3194 | * 'install_cupsd_conf()' - Install a configuration file. |
ef416fc2 | 3195 | */ |
3196 | ||
3197 | static http_status_t /* O - Status */ | |
c41769ff | 3198 | install_cupsd_conf(cupsd_client_t *con) /* I - Connection */ |
ef416fc2 | 3199 | { |
321d8d57 | 3200 | char filename[1024]; /* Configuration filename */ |
ef416fc2 | 3201 | cups_file_t *in, /* Input file */ |
3202 | *out; /* Output file */ | |
321d8d57 MS |
3203 | char buffer[16384]; /* Copy buffer */ |
3204 | ssize_t bytes; /* Number of bytes */ | |
ef416fc2 | 3205 | |
3206 | ||
3207 | /* | |
321d8d57 | 3208 | * Open the request file... |
ef416fc2 | 3209 | */ |
3210 | ||
321d8d57 | 3211 | if ((in = cupsFileOpen(con->filename, "rb")) == NULL) |
ef416fc2 | 3212 | { |
996acce8 | 3213 | cupsdLogClient(con, CUPSD_LOG_ERROR, "Unable to open request file \"%s\": %s", |
321d8d57 | 3214 | con->filename, strerror(errno)); |
eb93498a | 3215 | goto server_error; |
ef416fc2 | 3216 | } |
3217 | ||
3218 | /* | |
321d8d57 | 3219 | * Open the new config file... |
ef416fc2 | 3220 | */ |
3221 | ||
cb7f98ee | 3222 | if ((out = cupsdCreateConfFile(ConfigurationFile, ConfigFilePerm)) == NULL) |
ef416fc2 | 3223 | { |
3224 | cupsFileClose(in); | |
eb93498a | 3225 | goto server_error; |
ef416fc2 | 3226 | } |
3227 | ||
996acce8 | 3228 | cupsdLogClient(con, CUPSD_LOG_INFO, "Installing config file \"%s\"...", |
cb7f98ee | 3229 | ConfigurationFile); |
ef416fc2 | 3230 | |
3231 | /* | |
3232 | * Copy from the request to the new config file... | |
3233 | */ | |
3234 | ||
3235 | while ((bytes = cupsFileRead(in, buffer, sizeof(buffer))) > 0) | |
7e86f2f6 | 3236 | if (cupsFileWrite(out, buffer, (size_t)bytes) < bytes) |
ef416fc2 | 3237 | { |
996acce8 | 3238 | cupsdLogClient(con, CUPSD_LOG_ERROR, |
321d8d57 | 3239 | "Unable to copy to config file \"%s\": %s", |
cb7f98ee | 3240 | ConfigurationFile, strerror(errno)); |
ef416fc2 | 3241 | |
3242 | cupsFileClose(in); | |
3243 | cupsFileClose(out); | |
321d8d57 | 3244 | |
cb7f98ee MS |
3245 | snprintf(filename, sizeof(filename), "%s.N", ConfigurationFile); |
3246 | cupsdUnlinkOrRemoveFile(filename); | |
ef416fc2 | 3247 | |
eb93498a | 3248 | goto server_error; |
ef416fc2 | 3249 | } |
3250 | ||
3251 | /* | |
3252 | * Close the files... | |
3253 | */ | |
3254 | ||
3255 | cupsFileClose(in); | |
ef416fc2 | 3256 | |
cb7f98ee | 3257 | if (cupsdCloseCreatedConfFile(out, ConfigurationFile)) |
eb93498a | 3258 | goto server_error; |
ef416fc2 | 3259 | |
3260 | /* | |
3261 | * Remove the request file... | |
3262 | */ | |
3263 | ||
cb7f98ee | 3264 | cupsdUnlinkOrRemoveFile(con->filename); |
ef416fc2 | 3265 | cupsdClearString(&con->filename); |
3266 | ||
ef416fc2 | 3267 | /* |
c41769ff | 3268 | * Set the NeedReload flag... |
ef416fc2 | 3269 | */ |
3270 | ||
c41769ff | 3271 | NeedReload = RELOAD_CUPSD; |
ef416fc2 | 3272 | ReloadTime = time(NULL); |
3273 | ||
3274 | /* | |
3275 | * Return that the file was created successfully... | |
3276 | */ | |
3277 | ||
5ec1fd3d | 3278 | return (HTTP_STATUS_CREATED); |
eb93498a MS |
3279 | |
3280 | /* | |
3281 | * Common exit for errors... | |
3282 | */ | |
3283 | ||
3284 | server_error: | |
3285 | ||
3286 | cupsdUnlinkOrRemoveFile(con->filename); | |
3287 | cupsdClearString(&con->filename); | |
3288 | ||
3289 | return (HTTP_STATUS_SERVER_ERROR); | |
ef416fc2 | 3290 | } |
3291 | ||
3292 | ||
e1d6a774 | 3293 | /* |
3294 | * 'is_cgi()' - Is the resource a CGI script/program? | |
3295 | */ | |
3296 | ||
3297 | static int /* O - 1 = CGI, 0 = file */ | |
3298 | is_cgi(cupsd_client_t *con, /* I - Client connection */ | |
3299 | const char *filename, /* I - Real filename */ | |
3300 | struct stat *filestats, /* I - File information */ | |
3301 | mime_type_t *type) /* I - MIME type */ | |
3302 | { | |
3303 | const char *options; /* Options on URL */ | |
3304 | ||
3305 | ||
e1d6a774 | 3306 | /* |
3307 | * Get the options, if any... | |
3308 | */ | |
3309 | ||
3310 | if ((options = strchr(con->uri, '?')) != NULL) | |
a0f6818e MS |
3311 | { |
3312 | options ++; | |
3313 | cupsdSetStringf(&(con->query_string), "QUERY_STRING=%s", options); | |
3314 | } | |
b86bc4cf | 3315 | |
e1d6a774 | 3316 | /* |
3317 | * Check for known types... | |
3318 | */ | |
3319 | ||
88f9aafc | 3320 | if (!type || _cups_strcasecmp(type->super, "application")) |
e1d6a774 | 3321 | { |
ffe32673 | 3322 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "is_cgi: filename=\"%s\", filestats=%p, type=%s/%s, returning 0.", filename, filestats, type ? type->super : "unknown", type ? type->type : "unknown"); |
e1d6a774 | 3323 | return (0); |
3324 | } | |
3325 | ||
88f9aafc | 3326 | if (!_cups_strcasecmp(type->type, "x-httpd-cgi") && |
e1d6a774 | 3327 | (filestats->st_mode & 0111)) |
3328 | { | |
3329 | /* | |
3330 | * "application/x-httpd-cgi" is a CGI script. | |
3331 | */ | |
3332 | ||
3333 | cupsdSetString(&con->command, filename); | |
3334 | ||
a0f6818e MS |
3335 | if (options) |
3336 | cupsdSetStringf(&con->options, " %s", options); | |
e1d6a774 | 3337 | |
ffe32673 | 3338 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "is_cgi: filename=\"%s\", filestats=%p, type=%s/%s, returning 1.", filename, filestats, type->super, type->type); |
e1d6a774 | 3339 | return (1); |
3340 | } | |
3341 | #ifdef HAVE_JAVA | |
88f9aafc | 3342 | else if (!_cups_strcasecmp(type->type, "x-httpd-java")) |
e1d6a774 | 3343 | { |
3344 | /* | |
3345 | * "application/x-httpd-java" is a Java servlet. | |
3346 | */ | |
3347 | ||
3348 | cupsdSetString(&con->command, CUPS_JAVA); | |
3349 | ||
3350 | if (options) | |
b94498cf | 3351 | cupsdSetStringf(&con->options, " %s %s", filename, options); |
e1d6a774 | 3352 | else |
b94498cf | 3353 | cupsdSetStringf(&con->options, " %s", filename); |
e1d6a774 | 3354 | |
ffe32673 | 3355 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "is_cgi: filename=\"%s\", filestats=%p, type=%s/%s, returning 1.", filename, filestats, type->super, type->type); |
e1d6a774 | 3356 | return (1); |
3357 | } | |
3358 | #endif /* HAVE_JAVA */ | |
3359 | #ifdef HAVE_PERL | |
88f9aafc | 3360 | else if (!_cups_strcasecmp(type->type, "x-httpd-perl")) |
e1d6a774 | 3361 | { |
3362 | /* | |
3363 | * "application/x-httpd-perl" is a Perl page. | |
3364 | */ | |
3365 | ||
3366 | cupsdSetString(&con->command, CUPS_PERL); | |
3367 | ||
3368 | if (options) | |
b94498cf | 3369 | cupsdSetStringf(&con->options, " %s %s", filename, options); |
e1d6a774 | 3370 | else |
b94498cf | 3371 | cupsdSetStringf(&con->options, " %s", filename); |
e1d6a774 | 3372 | |
ffe32673 | 3373 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "is_cgi: filename=\"%s\", filestats=%p, type=%s/%s, returning 1.", filename, filestats, type->super, type->type); |
e1d6a774 | 3374 | return (1); |
3375 | } | |
3376 | #endif /* HAVE_PERL */ | |
3377 | #ifdef HAVE_PHP | |
88f9aafc | 3378 | else if (!_cups_strcasecmp(type->type, "x-httpd-php")) |
e1d6a774 | 3379 | { |
3380 | /* | |
3381 | * "application/x-httpd-php" is a PHP page. | |
3382 | */ | |
3383 | ||
3384 | cupsdSetString(&con->command, CUPS_PHP); | |
3385 | ||
3386 | if (options) | |
b94498cf | 3387 | cupsdSetStringf(&con->options, " %s %s", filename, options); |
e1d6a774 | 3388 | else |
b94498cf | 3389 | cupsdSetStringf(&con->options, " %s", filename); |
e1d6a774 | 3390 | |
ffe32673 | 3391 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "is_cgi: filename=\"%s\", filestats=%p, type=%s/%s, returning 1.", filename, filestats, type->super, type->type); |
e1d6a774 | 3392 | return (1); |
3393 | } | |
3394 | #endif /* HAVE_PHP */ | |
3395 | #ifdef HAVE_PYTHON | |
88f9aafc | 3396 | else if (!_cups_strcasecmp(type->type, "x-httpd-python")) |
e1d6a774 | 3397 | { |
3398 | /* | |
3399 | * "application/x-httpd-python" is a Python page. | |
3400 | */ | |
3401 | ||
3402 | cupsdSetString(&con->command, CUPS_PYTHON); | |
3403 | ||
3404 | if (options) | |
b94498cf | 3405 | cupsdSetStringf(&con->options, " %s %s", filename, options); |
e1d6a774 | 3406 | else |
b94498cf | 3407 | cupsdSetStringf(&con->options, " %s", filename); |
e1d6a774 | 3408 | |
ffe32673 | 3409 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "is_cgi: filename=\"%s\", filestats=%p, type=%s/%s, returning 1.", filename, filestats, type->super, type->type); |
e1d6a774 | 3410 | return (1); |
3411 | } | |
3412 | #endif /* HAVE_PYTHON */ | |
3413 | ||
ffe32673 | 3414 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "is_cgi: filename=\"%s\", filestats=%p, type=%s/%s, returning 0.", filename, filestats, type->super, type->type); |
e1d6a774 | 3415 | return (0); |
3416 | } | |
3417 | ||
3418 | ||
ef416fc2 | 3419 | /* |
3420 | * 'is_path_absolute()' - Is a path absolute and free of relative elements (i.e. ".."). | |
3421 | */ | |
3422 | ||
3423 | static int /* O - 0 if relative, 1 if absolute */ | |
3424 | is_path_absolute(const char *path) /* I - Input path */ | |
3425 | { | |
3426 | /* | |
3427 | * Check for a leading slash... | |
3428 | */ | |
3429 | ||
3430 | if (path[0] != '/') | |
3431 | return (0); | |
3432 | ||
12163006 MS |
3433 | /* |
3434 | * Check for "<" or quotes in the path and reject since this is probably | |
3435 | * someone trying to inject HTML... | |
3436 | */ | |
3437 | ||
3438 | if (strchr(path, '<') != NULL || strchr(path, '\"') != NULL || strchr(path, '\'') != NULL) | |
3439 | return (0); | |
3440 | ||
ef416fc2 | 3441 | /* |
3442 | * Check for "/.." in the path... | |
3443 | */ | |
3444 | ||
3445 | while ((path = strstr(path, "/..")) != NULL) | |
3446 | { | |
3447 | if (!path[3] || path[3] == '/') | |
3448 | return (0); | |
3449 | ||
3450 | path ++; | |
3451 | } | |
3452 | ||
3453 | /* | |
3454 | * If we haven't found any relative paths, return 1 indicating an | |
3455 | * absolute path... | |
3456 | */ | |
3457 | ||
3458 | return (1); | |
3459 | } | |
3460 | ||
3461 | ||
3462 | /* | |
3463 | * 'pipe_command()' - Pipe the output of a command to the remote client. | |
3464 | */ | |
3465 | ||
3466 | static int /* O - Process ID */ | |
3467 | pipe_command(cupsd_client_t *con, /* I - Client connection */ | |
3468 | int infile, /* I - Standard input for command */ | |
3469 | int *outfile, /* O - Standard output for command */ | |
3470 | char *command, /* I - Command to run */ | |
3471 | char *options, /* I - Options for command */ | |
3472 | int root) /* I - Run as root? */ | |
3473 | { | |
3474 | int i; /* Looping var */ | |
3475 | int pid; /* Process ID */ | |
b423cd4c | 3476 | char *commptr, /* Command string pointer */ |
3477 | commch; /* Command string character */ | |
ef416fc2 | 3478 | char *uriptr; /* URI string pointer */ |
3479 | int fds[2]; /* Pipe FDs */ | |
3480 | int argc; /* Number of arguments */ | |
3481 | int envc; /* Number of environment variables */ | |
3482 | char argbuf[10240], /* Argument buffer */ | |
3483 | *argv[100], /* Argument strings */ | |
b94498cf | 3484 | *envp[MAX_ENV + 20]; /* Environment variables */ |
c7017ecc | 3485 | char auth_type[256], /* AUTH_TYPE environment variable */ |
b94498cf | 3486 | content_length[1024], /* CONTENT_LENGTH environment variable */ |
ef416fc2 | 3487 | content_type[1024], /* CONTENT_TYPE environment variable */ |
3488 | http_cookie[32768], /* HTTP_COOKIE environment variable */ | |
f7deaa1a | 3489 | http_referer[1024], /* HTTP_REFERER environment variable */ |
ef416fc2 | 3490 | http_user_agent[1024], /* HTTP_USER_AGENT environment variable */ |
3491 | lang[1024], /* LANG environment variable */ | |
b423cd4c | 3492 | path_info[1024], /* PATH_INFO environment variable */ |
ef416fc2 | 3493 | remote_addr[1024], /* REMOTE_ADDR environment variable */ |
3494 | remote_host[1024], /* REMOTE_HOST environment variable */ | |
3495 | remote_user[1024], /* REMOTE_USER environment variable */ | |
b94498cf | 3496 | script_filename[1024], /* SCRIPT_FILENAME environment variable */ |
ef416fc2 | 3497 | script_name[1024], /* SCRIPT_NAME environment variable */ |
3498 | server_name[1024], /* SERVER_NAME environment variable */ | |
3499 | server_port[1024]; /* SERVER_PORT environment variable */ | |
7dfedb92 | 3500 | ipp_attribute_t *attr; /* attributes-natural-language attribute */ |
ef416fc2 | 3501 | |
3502 | ||
3503 | /* | |
3504 | * Parse a copy of the options string, which is of the form: | |
3505 | * | |
b423cd4c | 3506 | * argument+argument+argument |
3507 | * ?argument+argument+argument | |
3508 | * param=value¶m=value | |
3509 | * ?param=value¶m=value | |
3510 | * /name?argument+argument+argument | |
3511 | * /name?param=value¶m=value | |
ef416fc2 | 3512 | * |
3513 | * If the string contains an "=" character after the initial name, | |
3514 | * then we treat it as a HTTP GET form request and make a copy of | |
3515 | * the remaining string for the environment variable. | |
3516 | * | |
3517 | * The string is always parsed out as command-line arguments, to | |
3518 | * be consistent with Apache... | |
3519 | */ | |
3520 | ||
ffe32673 | 3521 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "pipe_command: infile=%d, outfile=%p, command=\"%s\", options=\"%s\", root=%d", infile, outfile, command, options ? options : "(null)", root); |
ef416fc2 | 3522 | |
b86bc4cf | 3523 | argv[0] = command; |
ef416fc2 | 3524 | |
b423cd4c | 3525 | if (options) |
13713f49 | 3526 | strlcpy(argbuf, options, sizeof(argbuf)); |
b423cd4c | 3527 | else |
3528 | argbuf[0] = '\0'; | |
3529 | ||
3530 | if (argbuf[0] == '/') | |
ef416fc2 | 3531 | { |
3532 | /* | |
b423cd4c | 3533 | * Found some trailing path information, set PATH_INFO... |
ef416fc2 | 3534 | */ |
3535 | ||
b423cd4c | 3536 | if ((commptr = strchr(argbuf, '?')) == NULL) |
3537 | commptr = argbuf + strlen(argbuf); | |
ef416fc2 | 3538 | |
b423cd4c | 3539 | commch = *commptr; |
3540 | *commptr = '\0'; | |
3541 | snprintf(path_info, sizeof(path_info), "PATH_INFO=%s", argbuf); | |
3542 | *commptr = commch; | |
3543 | } | |
3544 | else | |
3545 | { | |
3546 | commptr = argbuf; | |
3547 | path_info[0] = '\0'; | |
b94498cf | 3548 | |
3549 | if (*commptr == ' ') | |
3550 | commptr ++; | |
b423cd4c | 3551 | } |
ef416fc2 | 3552 | |
cb7f98ee | 3553 | if (*commptr == '?' && con->operation == HTTP_STATE_GET && !con->query_string) |
b423cd4c | 3554 | { |
3555 | commptr ++; | |
b86bc4cf | 3556 | cupsdSetStringf(&(con->query_string), "QUERY_STRING=%s", commptr); |
b423cd4c | 3557 | } |
ef416fc2 | 3558 | |
b423cd4c | 3559 | argc = 1; |
ef416fc2 | 3560 | |
b423cd4c | 3561 | if (*commptr) |
3562 | { | |
3563 | argv[argc ++] = commptr; | |
ef416fc2 | 3564 | |
b423cd4c | 3565 | for (; *commptr && argc < 99; commptr ++) |
3566 | { | |
ef416fc2 | 3567 | /* |
b423cd4c | 3568 | * Break arguments whenever we see a + or space... |
ef416fc2 | 3569 | */ |
3570 | ||
b423cd4c | 3571 | if (*commptr == ' ' || *commptr == '+') |
3572 | { | |
3573 | while (*commptr == ' ' || *commptr == '+') | |
3574 | *commptr++ = '\0'; | |
ef416fc2 | 3575 | |
b423cd4c | 3576 | /* |
3577 | * If we don't have a blank string, save it as another argument... | |
3578 | */ | |
ef416fc2 | 3579 | |
b423cd4c | 3580 | if (*commptr) |
3581 | { | |
3582 | argv[argc] = commptr; | |
3583 | argc ++; | |
3584 | } | |
3585 | else | |
3586 | break; | |
3587 | } | |
3588 | else if (*commptr == '%' && isxdigit(commptr[1] & 255) && | |
3589 | isxdigit(commptr[2] & 255)) | |
3590 | { | |
3591 | /* | |
3592 | * Convert the %xx notation to the individual character. | |
3593 | */ | |
ef416fc2 | 3594 | |
b423cd4c | 3595 | if (commptr[1] >= '0' && commptr[1] <= '9') |
7e86f2f6 | 3596 | *commptr = (char)((commptr[1] - '0') << 4); |
b423cd4c | 3597 | else |
7e86f2f6 | 3598 | *commptr = (char)((tolower(commptr[1]) - 'a' + 10) << 4); |
ef416fc2 | 3599 | |
b423cd4c | 3600 | if (commptr[2] >= '0' && commptr[2] <= '9') |
3601 | *commptr |= commptr[2] - '0'; | |
3602 | else | |
3603 | *commptr |= tolower(commptr[2]) - 'a' + 10; | |
ef416fc2 | 3604 | |
b423cd4c | 3605 | _cups_strcpy(commptr + 1, commptr + 3); |
ef416fc2 | 3606 | |
b423cd4c | 3607 | /* |
3608 | * Check for a %00 and break if that is the case... | |
3609 | */ | |
ef416fc2 | 3610 | |
b423cd4c | 3611 | if (!*commptr) |
3612 | break; | |
3613 | } | |
ef416fc2 | 3614 | } |
3615 | } | |
3616 | ||
3617 | argv[argc] = NULL; | |
3618 | ||
ef416fc2 | 3619 | /* |
3620 | * Setup the environment variables as needed... | |
3621 | */ | |
3622 | ||
b94498cf | 3623 | if (con->username[0]) |
3624 | { | |
c7017ecc | 3625 | snprintf(auth_type, sizeof(auth_type), "AUTH_TYPE=%s", |
996acce8 | 3626 | httpGetField(con->http, HTTP_FIELD_AUTHORIZATION)); |
b94498cf | 3627 | |
3628 | if ((uriptr = strchr(auth_type + 10, ' ')) != NULL) | |
3629 | *uriptr = '\0'; | |
3630 | } | |
3631 | else | |
3632 | auth_type[0] = '\0'; | |
3633 | ||
7dfedb92 MS |
3634 | if (con->request && |
3635 | (attr = ippFindAttribute(con->request, "attributes-natural-language", | |
3636 | IPP_TAG_LANGUAGE)) != NULL) | |
3637 | { | |
3638 | switch (strlen(attr->values[0].string.text)) | |
3639 | { | |
3640 | default : | |
3641 | /* | |
3642 | * This is an unknown or badly formatted language code; use | |
3643 | * the POSIX locale... | |
3644 | */ | |
3645 | ||
5a9febac | 3646 | strlcpy(lang, "LANG=C", sizeof(lang)); |
7dfedb92 MS |
3647 | break; |
3648 | ||
3649 | case 2 : | |
3650 | /* | |
3651 | * Just the language code (ll)... | |
3652 | */ | |
3653 | ||
3654 | snprintf(lang, sizeof(lang), "LANG=%s.UTF8", | |
3655 | attr->values[0].string.text); | |
3656 | break; | |
3657 | ||
3658 | case 5 : | |
3659 | /* | |
3660 | * Language and country code (ll-cc)... | |
3661 | */ | |
3662 | ||
3663 | snprintf(lang, sizeof(lang), "LANG=%c%c_%c%c.UTF8", | |
3664 | attr->values[0].string.text[0], | |
3665 | attr->values[0].string.text[1], | |
3666 | toupper(attr->values[0].string.text[3] & 255), | |
3667 | toupper(attr->values[0].string.text[4] & 255)); | |
3668 | break; | |
3669 | } | |
3670 | } | |
3671 | else if (con->language) | |
3672 | snprintf(lang, sizeof(lang), "LANG=%s.UTF8", con->language->language); | |
ef416fc2 | 3673 | else |
5a9febac | 3674 | strlcpy(lang, "LANG=C", sizeof(lang)); |
ef416fc2 | 3675 | |
5a9febac | 3676 | strlcpy(remote_addr, "REMOTE_ADDR=", sizeof(remote_addr)); |
5ec1fd3d | 3677 | httpAddrString(httpGetAddress(con->http), remote_addr + 12, |
ef416fc2 | 3678 | sizeof(remote_addr) - 12); |
3679 | ||
3680 | snprintf(remote_host, sizeof(remote_host), "REMOTE_HOST=%s", | |
5ec1fd3d | 3681 | httpGetHostname(con->http, NULL, 0)); |
ef416fc2 | 3682 | |
3683 | snprintf(script_name, sizeof(script_name), "SCRIPT_NAME=%s", con->uri); | |
3684 | if ((uriptr = strchr(script_name, '?')) != NULL) | |
3685 | *uriptr = '\0'; | |
3686 | ||
b94498cf | 3687 | snprintf(script_filename, sizeof(script_filename), "SCRIPT_FILENAME=%s%s", |
3688 | DocumentRoot, script_name + 12); | |
3689 | ||
5629a813 | 3690 | snprintf(server_port, sizeof(server_port), "SERVER_PORT=%d", con->serverport); |
ef416fc2 | 3691 | |
5ec1fd3d | 3692 | if (httpGetField(con->http, HTTP_FIELD_HOST)[0]) |
0268488e MS |
3693 | { |
3694 | char *nameptr; /* Pointer to ":port" */ | |
3695 | ||
3696 | snprintf(server_name, sizeof(server_name), "SERVER_NAME=%s", | |
5ec1fd3d | 3697 | httpGetField(con->http, HTTP_FIELD_HOST)); |
0268488e MS |
3698 | if ((nameptr = strrchr(server_name, ':')) != NULL && !strchr(nameptr, ']')) |
3699 | *nameptr = '\0'; /* Strip trailing ":port" */ | |
3700 | } | |
3701 | else | |
3702 | snprintf(server_name, sizeof(server_name), "SERVER_NAME=%s", | |
3703 | con->servername); | |
ef416fc2 | 3704 | |
3705 | envc = cupsdLoadEnv(envp, (int)(sizeof(envp) / sizeof(envp[0]))); | |
3706 | ||
b94498cf | 3707 | if (auth_type[0]) |
3708 | envp[envc ++] = auth_type; | |
3709 | ||
ef416fc2 | 3710 | envp[envc ++] = lang; |
3711 | envp[envc ++] = "REDIRECT_STATUS=1"; | |
b94498cf | 3712 | envp[envc ++] = "GATEWAY_INTERFACE=CGI/1.1"; |
ef416fc2 | 3713 | envp[envc ++] = server_name; |
3714 | envp[envc ++] = server_port; | |
3715 | envp[envc ++] = remote_addr; | |
3716 | envp[envc ++] = remote_host; | |
3717 | envp[envc ++] = script_name; | |
b94498cf | 3718 | envp[envc ++] = script_filename; |
ef416fc2 | 3719 | |
b423cd4c | 3720 | if (path_info[0]) |
3721 | envp[envc ++] = path_info; | |
3722 | ||
ef416fc2 | 3723 | if (con->username[0]) |
3724 | { | |
3725 | snprintf(remote_user, sizeof(remote_user), "REMOTE_USER=%s", con->username); | |
3726 | ||
3727 | envp[envc ++] = remote_user; | |
3728 | } | |
3729 | ||
d21dc0ed | 3730 | if (httpGetVersion(con->http) == HTTP_VERSION_1_1) |
ef416fc2 | 3731 | envp[envc ++] = "SERVER_PROTOCOL=HTTP/1.1"; |
d21dc0ed | 3732 | else if (httpGetVersion(con->http) == HTTP_VERSION_1_0) |
ef416fc2 | 3733 | envp[envc ++] = "SERVER_PROTOCOL=HTTP/1.0"; |
3734 | else | |
3735 | envp[envc ++] = "SERVER_PROTOCOL=HTTP/0.9"; | |
3736 | ||
d21dc0ed | 3737 | if (httpGetCookie(con->http)) |
ef416fc2 | 3738 | { |
3739 | snprintf(http_cookie, sizeof(http_cookie), "HTTP_COOKIE=%s", | |
d21dc0ed | 3740 | httpGetCookie(con->http)); |
ef416fc2 | 3741 | envp[envc ++] = http_cookie; |
3742 | } | |
3743 | ||
5ec1fd3d | 3744 | if (httpGetField(con->http, HTTP_FIELD_USER_AGENT)[0]) |
ef416fc2 | 3745 | { |
3746 | snprintf(http_user_agent, sizeof(http_user_agent), "HTTP_USER_AGENT=%s", | |
5ec1fd3d | 3747 | httpGetField(con->http, HTTP_FIELD_USER_AGENT)); |
ef416fc2 | 3748 | envp[envc ++] = http_user_agent; |
3749 | } | |
3750 | ||
5ec1fd3d | 3751 | if (httpGetField(con->http, HTTP_FIELD_REFERER)[0]) |
f7deaa1a | 3752 | { |
3753 | snprintf(http_referer, sizeof(http_referer), "HTTP_REFERER=%s", | |
5ec1fd3d | 3754 | httpGetField(con->http, HTTP_FIELD_REFERER)); |
f7deaa1a | 3755 | envp[envc ++] = http_referer; |
3756 | } | |
3757 | ||
cb7f98ee | 3758 | if (con->operation == HTTP_STATE_GET) |
ef416fc2 | 3759 | { |
ef416fc2 | 3760 | envp[envc ++] = "REQUEST_METHOD=GET"; |
3761 | ||
b86bc4cf | 3762 | if (con->query_string) |
ef416fc2 | 3763 | { |
3764 | /* | |
3765 | * Add GET form variables after ?... | |
3766 | */ | |
3767 | ||
b86bc4cf | 3768 | envp[envc ++] = con->query_string; |
ef416fc2 | 3769 | } |
3dfe78b3 MS |
3770 | else |
3771 | envp[envc ++] = "QUERY_STRING="; | |
ef416fc2 | 3772 | } |
3773 | else | |
3774 | { | |
e1d6a774 | 3775 | sprintf(content_length, "CONTENT_LENGTH=" CUPS_LLFMT, |
3776 | CUPS_LLCAST con->bytes); | |
ef416fc2 | 3777 | snprintf(content_type, sizeof(content_type), "CONTENT_TYPE=%s", |
5ec1fd3d | 3778 | httpGetField(con->http, HTTP_FIELD_CONTENT_TYPE)); |
ef416fc2 | 3779 | |
3780 | envp[envc ++] = "REQUEST_METHOD=POST"; | |
3781 | envp[envc ++] = content_length; | |
3782 | envp[envc ++] = content_type; | |
3783 | } | |
3784 | ||
3785 | /* | |
3786 | * Tell the CGI if we are using encryption... | |
3787 | */ | |
3788 | ||
d21dc0ed | 3789 | if (httpIsEncrypted(con->http)) |
ef416fc2 | 3790 | envp[envc ++] = "HTTPS=ON"; |
3791 | ||
3792 | /* | |
3793 | * Terminate the environment array... | |
3794 | */ | |
3795 | ||
3796 | envp[envc] = NULL; | |
3797 | ||
38e73f87 | 3798 | if (LogLevel >= CUPSD_LOG_DEBUG) |
ef416fc2 | 3799 | { |
3800 | for (i = 0; i < argc; i ++) | |
38e73f87 MS |
3801 | cupsdLogMessage(CUPSD_LOG_DEBUG, |
3802 | "[CGI] argv[%d] = \"%s\"", i, argv[i]); | |
ef416fc2 | 3803 | for (i = 0; i < envc; i ++) |
38e73f87 MS |
3804 | cupsdLogMessage(CUPSD_LOG_DEBUG, |
3805 | "[CGI] envp[%d] = \"%s\"", i, envp[i]); | |
ef416fc2 | 3806 | } |
3807 | ||
3808 | /* | |
3809 | * Create a pipe for the output... | |
3810 | */ | |
3811 | ||
3812 | if (cupsdOpenPipe(fds)) | |
3813 | { | |
38e73f87 | 3814 | cupsdLogMessage(CUPSD_LOG_ERROR, "[CGI] Unable to create pipe for %s - %s", |
ef416fc2 | 3815 | argv[0], strerror(errno)); |
3816 | return (0); | |
3817 | } | |
3818 | ||
3819 | /* | |
3820 | * Then execute the command... | |
3821 | */ | |
3822 | ||
3823 | if (cupsdStartProcess(command, argv, envp, infile, fds[1], CGIPipes[1], | |
38e73f87 | 3824 | -1, -1, root, DefaultProfile, NULL, &pid) < 0) |
ef416fc2 | 3825 | { |
3826 | /* | |
3827 | * Error - can't fork! | |
3828 | */ | |
3829 | ||
38e73f87 | 3830 | cupsdLogMessage(CUPSD_LOG_ERROR, "[CGI] Unable to start %s - %s", argv[0], |
ef416fc2 | 3831 | strerror(errno)); |
3832 | ||
3833 | cupsdClosePipe(fds); | |
3834 | pid = 0; | |
3835 | } | |
3836 | else | |
3837 | { | |
3838 | /* | |
3839 | * Fork successful - return the PID... | |
3840 | */ | |
3841 | ||
3842 | if (con->username[0]) | |
0fa6c7fa | 3843 | cupsdAddCert(pid, con->username, con->type); |
ef416fc2 | 3844 | |
38e73f87 | 3845 | cupsdLogMessage(CUPSD_LOG_DEBUG, "[CGI] Started %s (PID %d)", command, pid); |
ef416fc2 | 3846 | |
3847 | *outfile = fds[0]; | |
3848 | close(fds[1]); | |
3849 | } | |
3850 | ||
ef416fc2 | 3851 | return (pid); |
3852 | } | |
3853 | ||
3854 | ||
e07d4801 MS |
3855 | /* |
3856 | * 'valid_host()' - Is the Host: field valid? | |
3857 | */ | |
3858 | ||
3859 | static int /* O - 1 if valid, 0 if not */ | |
3860 | valid_host(cupsd_client_t *con) /* I - Client connection */ | |
3861 | { | |
3862 | cupsd_alias_t *a; /* Current alias */ | |
3863 | cupsd_netif_t *netif; /* Current network interface */ | |
f2534050 MS |
3864 | const char *end; /* End character */ |
3865 | char *ptr; /* Pointer into host value */ | |
e07d4801 MS |
3866 | |
3867 | ||
f2534050 MS |
3868 | /* |
3869 | * Copy the Host: header for later use... | |
3870 | */ | |
3871 | ||
5ec1fd3d | 3872 | strlcpy(con->clientname, httpGetField(con->http, HTTP_FIELD_HOST), |
f2534050 MS |
3873 | sizeof(con->clientname)); |
3874 | if ((ptr = strrchr(con->clientname, ':')) != NULL && !strchr(ptr, ']')) | |
3875 | { | |
3876 | *ptr++ = '\0'; | |
3877 | con->clientport = atoi(ptr); | |
3878 | } | |
3879 | else | |
3880 | con->clientport = con->serverport; | |
3881 | ||
3882 | /* | |
3883 | * Then validate... | |
3884 | */ | |
e07d4801 | 3885 | |
5ec1fd3d | 3886 | if (httpAddrLocalhost(httpGetAddress(con->http))) |
e07d4801 MS |
3887 | { |
3888 | /* | |
3889 | * Only allow "localhost" or the equivalent IPv4 or IPv6 numerical | |
3890 | * addresses when accessing CUPS via the loopback interface... | |
3891 | */ | |
3892 | ||
f2534050 MS |
3893 | return (!_cups_strcasecmp(con->clientname, "localhost") || |
3894 | !_cups_strcasecmp(con->clientname, "localhost.") || | |
e07d4801 | 3895 | #ifdef __linux |
f2534050 | 3896 | !_cups_strcasecmp(con->clientname, "localhost.localdomain") || |
e07d4801 | 3897 | #endif /* __linux */ |
f2534050 MS |
3898 | !strcmp(con->clientname, "127.0.0.1") || |
3899 | !strcmp(con->clientname, "[::1]")); | |
e07d4801 MS |
3900 | } |
3901 | ||
37e7e6e0 | 3902 | #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI) |
e07d4801 MS |
3903 | /* |
3904 | * Check if the hostname is something.local (Bonjour); if so, allow it. | |
3905 | */ | |
3906 | ||
f2534050 MS |
3907 | if ((end = strrchr(con->clientname, '.')) != NULL && end > con->clientname && |
3908 | !end[1]) | |
a29fd7dd MS |
3909 | { |
3910 | /* | |
3911 | * "." on end, work back to second-to-last "."... | |
3912 | */ | |
f2534050 MS |
3913 | |
3914 | for (end --; end > con->clientname && *end != '.'; end --); | |
a29fd7dd MS |
3915 | } |
3916 | ||
3917 | if (end && (!_cups_strcasecmp(end, ".local") || | |
f2534050 | 3918 | !_cups_strcasecmp(end, ".local."))) |
e07d4801 | 3919 | return (1); |
37e7e6e0 | 3920 | #endif /* HAVE_DNSSD || HAVE_AVAHI */ |
e07d4801 MS |
3921 | |
3922 | /* | |
3923 | * Check if the hostname is an IP address... | |
3924 | */ | |
3925 | ||
f2534050 | 3926 | if (isdigit(con->clientname[0] & 255) || con->clientname[0] == '[') |
e07d4801 MS |
3927 | { |
3928 | /* | |
3929 | * Possible IPv4/IPv6 address... | |
3930 | */ | |
3931 | ||
e07d4801 MS |
3932 | http_addrlist_t *addrlist; /* List of addresses */ |
3933 | ||
3934 | ||
f2534050 | 3935 | if ((addrlist = httpAddrGetList(con->clientname, AF_UNSPEC, NULL)) != NULL) |
e07d4801 MS |
3936 | { |
3937 | /* | |
3938 | * Good IPv4/IPv6 address... | |
3939 | */ | |
3940 | ||
3941 | httpAddrFreeList(addrlist); | |
3942 | return (1); | |
3943 | } | |
3944 | } | |
3945 | ||
3946 | /* | |
3947 | * Check for (alias) name matches... | |
3948 | */ | |
3949 | ||
3950 | for (a = (cupsd_alias_t *)cupsArrayFirst(ServerAlias); | |
3951 | a; | |
3952 | a = (cupsd_alias_t *)cupsArrayNext(ServerAlias)) | |
3953 | { | |
3954 | /* | |
3955 | * "ServerAlias *" allows all host values through... | |
3956 | */ | |
3957 | ||
3958 | if (!strcmp(a->name, "*")) | |
3959 | return (1); | |
3960 | ||
f2534050 | 3961 | if (!_cups_strncasecmp(con->clientname, a->name, a->namelen)) |
e07d4801 MS |
3962 | { |
3963 | /* | |
f2534050 | 3964 | * Prefix matches; check the character at the end - it must be "." or nul. |
e07d4801 MS |
3965 | */ |
3966 | ||
f2534050 | 3967 | end = con->clientname + a->namelen; |
e07d4801 | 3968 | |
f2534050 | 3969 | if (!*end || (*end == '.' && !end[1])) |
e07d4801 MS |
3970 | return (1); |
3971 | } | |
3972 | } | |
3973 | ||
37e7e6e0 | 3974 | #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI) |
e07d4801 MS |
3975 | for (a = (cupsd_alias_t *)cupsArrayFirst(DNSSDAlias); |
3976 | a; | |
3977 | a = (cupsd_alias_t *)cupsArrayNext(DNSSDAlias)) | |
3978 | { | |
3979 | /* | |
3980 | * "ServerAlias *" allows all host values through... | |
3981 | */ | |
3982 | ||
3983 | if (!strcmp(a->name, "*")) | |
3984 | return (1); | |
3985 | ||
f2534050 | 3986 | if (!_cups_strncasecmp(con->clientname, a->name, a->namelen)) |
e07d4801 MS |
3987 | { |
3988 | /* | |
f2534050 | 3989 | * Prefix matches; check the character at the end - it must be "." or nul. |
e07d4801 MS |
3990 | */ |
3991 | ||
f2534050 | 3992 | end = con->clientname + a->namelen; |
e07d4801 | 3993 | |
f2534050 | 3994 | if (!*end || (*end == '.' && !end[1])) |
e07d4801 MS |
3995 | return (1); |
3996 | } | |
3997 | } | |
37e7e6e0 | 3998 | #endif /* HAVE_DNSSD || HAVE_AVAHI */ |
e07d4801 MS |
3999 | |
4000 | /* | |
4001 | * Check for interface hostname matches... | |
4002 | */ | |
4003 | ||
4004 | for (netif = (cupsd_netif_t *)cupsArrayFirst(NetIFList); | |
4005 | netif; | |
4006 | netif = (cupsd_netif_t *)cupsArrayNext(NetIFList)) | |
4007 | { | |
f2534050 | 4008 | if (!_cups_strncasecmp(con->clientname, netif->hostname, netif->hostlen)) |
e07d4801 MS |
4009 | { |
4010 | /* | |
f2534050 | 4011 | * Prefix matches; check the character at the end - it must be "." or nul. |
e07d4801 MS |
4012 | */ |
4013 | ||
f2534050 | 4014 | end = con->clientname + netif->hostlen; |
e07d4801 | 4015 | |
f2534050 | 4016 | if (!*end || (*end == '.' && !end[1])) |
e07d4801 MS |
4017 | return (1); |
4018 | } | |
4019 | } | |
4020 | ||
4021 | return (0); | |
4022 | } | |
4023 | ||
4024 | ||
ef416fc2 | 4025 | /* |
a74454a7 | 4026 | * 'write_file()' - Send a file via HTTP. |
e1d6a774 | 4027 | */ |
4028 | ||
4029 | static int /* O - 0 on failure, 1 on success */ | |
a74454a7 | 4030 | write_file(cupsd_client_t *con, /* I - Client connection */ |
4031 | http_status_t code, /* I - HTTP status */ | |
4032 | char *filename, /* I - Filename */ | |
4033 | char *type, /* I - File type */ | |
4034 | struct stat *filestats) /* O - File information */ | |
e1d6a774 | 4035 | { |
4036 | con->file = open(filename, O_RDONLY); | |
4037 | ||
ffe32673 | 4038 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "write_file: code=%d, filename=\"%s\" (%d), type=\"%s\", filestats=%p.", code, filename, con->file, type ? type : "(null)", filestats); |
e1d6a774 | 4039 | |
4040 | if (con->file < 0) | |
4041 | return (0); | |
4042 | ||
4043 | fcntl(con->file, F_SETFD, fcntl(con->file, F_GETFD) | FD_CLOEXEC); | |
4044 | ||
dfc45c1b MS |
4045 | con->pipe_pid = 0; |
4046 | con->sent_header = 1; | |
e1d6a774 | 4047 | |
a73ca01e MS |
4048 | httpClearFields(con->http); |
4049 | ||
7e86f2f6 | 4050 | httpSetLength(con->http, (size_t)filestats->st_size); |
e1d6a774 | 4051 | |
e200616a MS |
4052 | httpSetField(con->http, HTTP_FIELD_LAST_MODIFIED, |
4053 | httpGetDateString(filestats->st_mtime)); | |
e1d6a774 | 4054 | |
e200616a | 4055 | if (!cupsdSendHeader(con, code, type, CUPSD_AUTH_NONE)) |
07725fee | 4056 | return (0); |
d09495fa | 4057 | |
43dcaf3b | 4058 | cupsdAddSelect(httpGetFd(con->http), NULL, (cupsd_selfunc_t)cupsdWriteClient, con); |
e1d6a774 | 4059 | |
996acce8 | 4060 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "Sending file."); |
1bc82dd9 | 4061 | |
e1d6a774 | 4062 | return (1); |
4063 | } | |
4064 | ||
4065 | ||
4066 | /* | |
f899b121 | 4067 | * 'write_pipe()' - Flag that data is available on the CGI pipe. |
4068 | */ | |
4069 | ||
4070 | static void | |
4071 | write_pipe(cupsd_client_t *con) /* I - Client connection */ | |
4072 | { | |
ffe32673 | 4073 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "write_pipe: CGI output on fd %d.", con->file); |
f899b121 | 4074 | |
4075 | con->file_ready = 1; | |
4076 | ||
4077 | cupsdRemoveSelect(con->file); | |
996acce8 | 4078 | cupsdAddSelect(httpGetFd(con->http), NULL, (cupsd_selfunc_t)cupsdWriteClient, con); |
1bc82dd9 | 4079 | |
996acce8 | 4080 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "CGI data ready to be sent."); |
f899b121 | 4081 | } |
4082 | ||
4083 | ||
4084 | /* | |
f2d18633 | 4085 | * End of "$Id$". |
ef416fc2 | 4086 | */ |