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