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