]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/request.c
Move debug printfs to internal usage only.
[thirdparty/cups.git] / cups / request.c
CommitLineData
ecdc0628 1/*
7e86f2f6 2 * IPP utilities for CUPS.
ecdc0628 3 *
b969d5af
MS
4 * Copyright © 2007-2018 by Apple Inc.
5 * Copyright © 1997-2007 by Easy Software Products.
ecdc0628 6 *
e3101897 7 * Licensed under Apache License v2.0. See the file "LICENSE" for more information.
ecdc0628 8 */
9
10/*
11 * Include necessary headers...
12 */
13
71e16022 14#include "cups-private.h"
fb863569 15#include "debug-internal.h"
ecdc0628 16#include <fcntl.h>
17#include <sys/stat.h>
19dc16f7 18#if defined(_WIN32) || defined(__EMX__)
ecdc0628 19# include <io.h>
20#else
21# include <unistd.h>
19dc16f7 22#endif /* _WIN32 || __EMX__ */
b94498cf 23#ifndef O_BINARY
24# define O_BINARY 0
25#endif /* O_BINARY */
db8b865d
MS
26#ifndef MSG_DONTWAIT
27# define MSG_DONTWAIT 0
28#endif /* !MSG_DONTWAIT */
ecdc0628 29
30
31/*
32 * 'cupsDoFileRequest()' - Do an IPP request with a file.
33 *
5a9febac
MS
34 * This function sends the IPP request and attached file to the specified
35 * server, retrying and authenticating as necessary. The request is freed with
36 * @link ippDelete@.
ecdc0628 37 */
38
39ipp_t * /* O - Response data */
568fa3fa 40cupsDoFileRequest(http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
ecdc0628 41 ipp_t *request, /* I - IPP request */
42 const char *resource, /* I - HTTP resource for POST */
568fa3fa 43 const char *filename) /* I - File to send or @code NULL@ for none */
b94498cf 44{
45 ipp_t *response; /* IPP response data */
46 int infile; /* Input file */
47
48
807315e6 49 DEBUG_printf(("cupsDoFileRequest(http=%p, request=%p(%s), resource=\"%s\", filename=\"%s\")", (void *)http, (void *)request, request ? ippOpString(request->request.op.operation_id) : "?", resource, filename));
a603edef 50
b94498cf 51 if (filename)
52 {
53 if ((infile = open(filename, O_RDONLY | O_BINARY)) < 0)
54 {
55 /*
56 * Can't get file information!
57 */
58
cb7f98ee 59 _cupsSetError(errno == ENOENT ? IPP_STATUS_ERROR_NOT_FOUND : IPP_STATUS_ERROR_NOT_AUTHORIZED,
749b1e90 60 NULL, 0);
b94498cf 61
62 ippDelete(request);
63
64 return (NULL);
65 }
66 }
67 else
68 infile = -1;
69
70 response = cupsDoIORequest(http, request, resource, infile, -1);
71
72 if (infile >= 0)
73 close(infile);
74
75 return (response);
76}
77
78
79/*
80 * 'cupsDoIORequest()' - Do an IPP request with file descriptors.
81 *
5a9febac
MS
82 * This function sends the IPP request with the optional input file "infile" to
83 * the specified server, retrying and authenticating as necessary. The request
84 * is freed with @link ippDelete@.
b94498cf 85 *
5a9febac 86 * If "infile" is a valid file descriptor, @code cupsDoIORequest@ copies
b94498cf 87 * all of the data from the file after the IPP request message.
88 *
5a9febac 89 * If "outfile" is a valid file descriptor, @code cupsDoIORequest@ copies
b94498cf 90 * all of the data after the IPP response message to the file.
91 *
8072030b 92 * @since CUPS 1.3/macOS 10.5@
b94498cf 93 */
94
95ipp_t * /* O - Response data */
568fa3fa 96cupsDoIORequest(http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
b94498cf 97 ipp_t *request, /* I - IPP request */
98 const char *resource, /* I - HTTP resource for POST */
99 int infile, /* I - File to read from or -1 for none */
100 int outfile) /* I - File to write to or -1 for none */
ecdc0628 101{
3d052e43
MS
102 ipp_t *response = NULL; /* IPP response data */
103 size_t length = 0; /* Content-Length value */
ecdc0628 104 http_status_t status; /* Status of HTTP request */
ecdc0628 105 struct stat fileinfo; /* File information */
7e86f2f6 106 ssize_t bytes; /* Number of bytes read/written */
a74454a7 107 char buffer[32768]; /* Output buffer */
ecdc0628 108
109
807315e6 110 DEBUG_printf(("cupsDoIORequest(http=%p, request=%p(%s), resource=\"%s\", infile=%d, outfile=%d)", (void *)http, (void *)request, request ? ippOpString(request->request.op.operation_id) : "?", resource, infile, outfile));
3d052e43
MS
111
112 /*
113 * Range check input...
114 */
ecdc0628 115
3d052e43 116 if (!request || !resource)
ecdc0628 117 {
3d052e43 118 ippDelete(request);
ecdc0628 119
cb7f98ee 120 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(EINVAL), 0);
ecdc0628 121
122 return (NULL);
123 }
124
3d052e43
MS
125 /*
126 * Get the default connection as needed...
127 */
128
c00282bb
D
129 if (!http && (http = _cupsConnect()) == NULL)
130 {
131 ippDelete(request);
e60ec91f 132
c00282bb
D
133 return (NULL);
134 }
3d052e43 135
ecdc0628 136 /*
137 * See if we have a file to send...
138 */
139
b94498cf 140 if (infile >= 0)
d821d894
MS
141 {
142 if (fstat(infile, &fileinfo))
143 {
144 /*
145 * Can't get file information!
146 */
147
148 _cupsSetError(errno == EBADF ? IPP_STATUS_ERROR_NOT_FOUND : IPP_STATUS_ERROR_NOT_AUTHORIZED, NULL, 0);
149 ippDelete(request);
150
151 return (NULL);
152 }
153
19dc16f7 154#ifdef _WIN32
d821d894
MS
155 if (fileinfo.st_mode & _S_IFDIR)
156#else
157 if (S_ISDIR(fileinfo.st_mode))
19dc16f7 158#endif /* _WIN32 */
d821d894
MS
159 {
160 /*
161 * Can't send a directory...
162 */
163
164 _cupsSetError(IPP_STATUS_ERROR_NOT_POSSIBLE, strerror(EISDIR), 0);
165 ippDelete(request);
166
167 return (NULL);
168 }
169
19dc16f7 170#ifndef _WIN32
d821d894
MS
171 if (!S_ISREG(fileinfo.st_mode))
172 length = 0; /* Chunk when piping */
173 else
19dc16f7 174#endif /* !_WIN32 */
d821d894
MS
175 length = ippLength(request) + (size_t)fileinfo.st_size;
176 }
3d052e43
MS
177 else
178 length = ippLength(request);
179
d821d894 180 DEBUG_printf(("2cupsDoIORequest: Request length=%ld, total length=%ld", (long)ippLength(request), (long)length));
52f6f666 181
b9faaae1
MS
182 /*
183 * Clear any "Local" authentication data since it is probably stale...
184 */
185
186 if (http->authstring && !strncmp(http->authstring, "Local ", 6))
187 httpSetAuthString(http, NULL, NULL);
188
3d052e43
MS
189 /*
190 * Loop until we can send the request without authorization problems.
191 */
192
193 while (response == NULL)
194 {
e07d4801 195 DEBUG_puts("2cupsDoIORequest: setup...");
3d052e43
MS
196
197 /*
198 * Send the request...
199 */
200
201 status = cupsSendRequest(http, request, resource, length);
202
e07d4801 203 DEBUG_printf(("2cupsDoIORequest: status=%d", status));
3d052e43 204
cb7f98ee 205 if (status == HTTP_STATUS_CONTINUE && request->state == IPP_STATE_DATA && infile >= 0)
3d052e43 206 {
e07d4801 207 DEBUG_puts("2cupsDoIORequest: file write...");
3d052e43
MS
208
209 /*
210 * Send the file with the request...
211 */
212
19dc16f7 213#ifndef _WIN32
3d052e43 214 if (S_ISREG(fileinfo.st_mode))
19dc16f7 215#endif /* _WIN32 */
3d052e43
MS
216 lseek(infile, 0, SEEK_SET);
217
7e86f2f6 218 while ((bytes = read(infile, buffer, sizeof(buffer))) > 0)
3d052e43 219 {
7e86f2f6 220 if ((status = cupsWriteRequestData(http, buffer, (size_t)bytes))
cb7f98ee 221 != HTTP_STATUS_CONTINUE)
83e08001 222 break;
3d052e43
MS
223 }
224 }
225
226 /*
227 * Get the server's response...
228 */
229
ad6f5490 230 if (status <= HTTP_STATUS_CONTINUE || status == HTTP_STATUS_OK)
3d052e43
MS
231 {
232 response = cupsGetResponse(http, resource);
83e08001 233 status = httpGetStatus(http);
3d052e43
MS
234 }
235
f11a948a
MS
236 DEBUG_printf(("2cupsDoIORequest: status=%d", status));
237
cb7f98ee
MS
238 if (status == HTTP_STATUS_ERROR ||
239 (status >= HTTP_STATUS_BAD_REQUEST && status != HTTP_STATUS_UNAUTHORIZED &&
240 status != HTTP_STATUS_UPGRADE_REQUIRED))
ee571f26
MS
241 {
242 _cupsSetHTTPError(status);
568fa3fa 243 break;
ee571f26 244 }
568fa3fa 245
85dda01c 246 if (response && outfile >= 0)
3d052e43 247 {
85dda01c
MS
248 /*
249 * Write trailing data to file...
250 */
3d052e43 251
7e86f2f6
MS
252 while ((bytes = httpRead2(http, buffer, sizeof(buffer))) > 0)
253 if (write(outfile, buffer, (size_t)bytes) < bytes)
85dda01c
MS
254 break;
255 }
3d052e43 256
cb7f98ee 257 if (http->state != HTTP_STATE_WAITING)
85dda01c
MS
258 {
259 /*
260 * Flush any remaining data...
261 */
262
263 httpFlush(http);
3d052e43
MS
264 }
265 }
266
267 /*
268 * Delete the original request and return the response...
269 */
6d2f911b 270
3d052e43
MS
271 ippDelete(request);
272
273 return (response);
274}
275
276
277/*
278 * 'cupsDoRequest()' - Do an IPP request.
279 *
280 * This function sends the IPP request to the specified server, retrying
5a9febac 281 * and authenticating as necessary. The request is freed with @link ippDelete@.
3d052e43
MS
282 */
283
284ipp_t * /* O - Response data */
568fa3fa 285cupsDoRequest(http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
3d052e43
MS
286 ipp_t *request, /* I - IPP request */
287 const char *resource) /* I - HTTP resource for POST */
288{
807315e6 289 DEBUG_printf(("cupsDoRequest(http=%p, request=%p(%s), resource=\"%s\")", (void *)http, (void *)request, request ? ippOpString(request->request.op.operation_id) : "?", resource));
a603edef 290
b19ccc9e 291 return (cupsDoIORequest(http, request, resource, -1, -1));
3d052e43
MS
292}
293
294
295/*
296 * 'cupsGetResponse()' - Get a response to an IPP request.
297 *
298 * Use this function to get the response for an IPP request sent using
5a9febac
MS
299 * @link cupsSendRequest@. For requests that return additional data, use
300 * @link cupsReadResponseData@ after getting a successful response,
301 * otherwise call @link httpFlush@ to complete the response processing.
3d052e43 302 *
8072030b 303 * @since CUPS 1.4/macOS 10.6@
3d052e43
MS
304 */
305
568fa3fa
MS
306ipp_t * /* O - Response or @code NULL@ on HTTP error */
307cupsGetResponse(http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
3d052e43
MS
308 const char *resource) /* I - HTTP resource for POST */
309{
310 http_status_t status; /* HTTP status */
311 ipp_state_t state; /* IPP read state */
312 ipp_t *response = NULL; /* IPP response */
313
314
807315e6 315 DEBUG_printf(("cupsGetResponse(http=%p, resource=\"%s\")", (void *)http, resource));
82bf2283 316 DEBUG_printf(("1cupsGetResponse: http->state=%d", http ? http->state : HTTP_STATE_ERROR));
3d052e43
MS
317
318 /*
319 * Connect to the default server as needed...
320 */
321
322 if (!http)
82bf2283
MS
323 {
324 _cups_globals_t *cg = _cupsGlobals();
325 /* Pointer to library globals */
326
327 if ((http = cg->http) == NULL)
328 {
329 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("No active connection."), 1);
330 DEBUG_puts("1cupsGetResponse: No active connection - returning NULL.");
331 return (NULL);
332 }
333 }
3d052e43 334
82bf2283
MS
335 if (http->state != HTTP_STATE_POST_RECV && http->state != HTTP_STATE_POST_SEND)
336 {
337 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("No request sent."), 1);
338 DEBUG_puts("1cupsGetResponse: Not in POST state - returning NULL.");
3d052e43 339 return (NULL);
82bf2283 340 }
3d052e43
MS
341
342 /*
343 * Check for an unfinished chunked request...
344 */
345
cb7f98ee 346 if (http->data_encoding == HTTP_ENCODING_CHUNKED)
3d052e43
MS
347 {
348 /*
349 * Send a 0-length chunk to finish off the request...
350 */
351
e07d4801 352 DEBUG_puts("2cupsGetResponse: Finishing chunked POST...");
3d052e43
MS
353
354 if (httpWrite2(http, "", 0) < 0)
355 return (NULL);
356 }
357
358 /*
359 * Wait for a response from the server...
360 */
361
e07d4801 362 DEBUG_printf(("2cupsGetResponse: Update loop, http->status=%d...",
1ff0402e 363 http->status));
3d052e43 364
e60ec91f
MS
365 do
366 {
1ff0402e 367 status = httpUpdate(http);
e60ec91f 368 }
a469f8a5 369 while (status == HTTP_STATUS_CONTINUE);
3d052e43 370
e07d4801 371 DEBUG_printf(("2cupsGetResponse: status=%d", status));
3d052e43 372
cb7f98ee 373 if (status == HTTP_STATUS_OK)
3d052e43
MS
374 {
375 /*
376 * Get the IPP response...
377 */
378
379 response = ippNew();
380
cb7f98ee
MS
381 while ((state = ippRead(http, response)) != IPP_STATE_DATA)
382 if (state == IPP_STATE_ERROR)
3d052e43
MS
383 break;
384
cb7f98ee 385 if (state == IPP_STATE_ERROR)
3d052e43
MS
386 {
387 /*
f14324a7 388 * Flush remaining data and delete the response...
3d052e43
MS
389 */
390
e07d4801 391 DEBUG_puts("1cupsGetResponse: IPP read error!");
3d052e43 392
f14324a7
MS
393 httpFlush(http);
394
3d052e43
MS
395 ippDelete(response);
396 response = NULL;
397
cb7f98ee 398 http->status = status = HTTP_STATUS_ERROR;
a29fd7dd 399 http->error = EINVAL;
3d052e43
MS
400 }
401 }
cb7f98ee 402 else if (status != HTTP_STATUS_ERROR)
3d052e43
MS
403 {
404 /*
405 * Flush any error message...
406 */
407
408 httpFlush(http);
409
410 /*
411 * Then handle encryption and authentication...
412 */
413
cb7f98ee 414 if (status == HTTP_STATUS_UNAUTHORIZED)
3d052e43
MS
415 {
416 /*
417 * See if we can do authentication...
418 */
419
e07d4801 420 DEBUG_puts("2cupsGetResponse: Need authorization...");
568fa3fa 421
e07d4801 422 if (!cupsDoAuthentication(http, "POST", resource))
cb7f98ee 423 httpReconnect2(http, 30000, NULL);
f11a948a 424 else
cb7f98ee 425 http->status = status = HTTP_STATUS_CUPS_AUTHORIZATION_CANCELED;
3d052e43
MS
426 }
427
428#ifdef HAVE_SSL
cb7f98ee 429 else if (status == HTTP_STATUS_UPGRADE_REQUIRED)
3d052e43
MS
430 {
431 /*
432 * Force a reconnect with encryption...
433 */
434
e07d4801 435 DEBUG_puts("2cupsGetResponse: Need encryption...");
3d052e43 436
cb7f98ee
MS
437 if (!httpReconnect2(http, 30000, NULL))
438 httpEncryption(http, HTTP_ENCRYPTION_REQUIRED);
3d052e43
MS
439 }
440#endif /* HAVE_SSL */
441 }
442
443 if (response)
444 {
445 ipp_attribute_t *attr; /* status-message attribute */
446
447
448 attr = ippFindAttribute(response, "status-message", IPP_TAG_TEXT);
449
e07d4801 450 DEBUG_printf(("1cupsGetResponse: status-code=%s, status-message=\"%s\"",
a603edef
MS
451 ippErrorString(response->request.status.status_code),
452 attr ? attr->values[0].string.text : ""));
453
3d052e43 454 _cupsSetError(response->request.status.status_code,
749b1e90
MS
455 attr ? attr->values[0].string.text :
456 ippErrorString(response->request.status.status_code), 0);
3d052e43 457 }
3d052e43
MS
458
459 return (response);
460}
461
462
6d2f911b 463/*
5a9febac
MS
464 * 'cupsLastError()' - Return the last IPP status code received on the current
465 * thread.
6d2f911b
MS
466 */
467
468ipp_status_t /* O - IPP status code from last request */
469cupsLastError(void)
470{
471 return (_cupsGlobals()->last_error);
472}
473
474
475/*
5a9febac
MS
476 * 'cupsLastErrorString()' - Return the last IPP status-message received on the
477 * current thread.
6d2f911b 478 *
8072030b 479 * @since CUPS 1.2/macOS 10.5@
6d2f911b
MS
480 */
481
482const char * /* O - status-message text from last request */
483cupsLastErrorString(void)
484{
485 return (_cupsGlobals()->last_status_message);
486}
487
488
f14324a7
MS
489/*
490 * '_cupsNextDelay()' - Return the next retry delay value.
491 *
492 * This function currently returns the Fibonacci sequence 1 1 2 3 5 8.
493 *
494 * Pass 0 for the current delay value to initialize the sequence.
495 */
496
497int /* O - Next delay value */
498_cupsNextDelay(int current, /* I - Current delay value or 0 */
499 int *previous) /* IO - Previous delay value */
500{
501 int next; /* Next delay value */
502
503
504 if (current > 0)
505 {
506 next = (current + *previous) % 12;
507 *previous = next < current ? 0 : current;
508 }
509 else
510 {
511 next = 1;
512 *previous = 0;
513 }
514
515 return (next);
516}
517
518
3d052e43
MS
519/*
520 * 'cupsReadResponseData()' - Read additional data after the IPP response.
521 *
5a9febac
MS
522 * This function is used after @link cupsGetResponse@ to read the PPD or document
523 * files from @code CUPS_GET_PPD@ and @code CUPS_GET_DOCUMENT@ requests,
524 * respectively.
3d052e43 525 *
8072030b 526 * @since CUPS 1.4/macOS 10.6@
3d052e43
MS
527 */
528
529ssize_t /* O - Bytes read, 0 on EOF, -1 on error */
530cupsReadResponseData(
568fa3fa 531 http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
3d052e43
MS
532 char *buffer, /* I - Buffer to use */
533 size_t length) /* I - Number of bytes to read */
534{
535 /*
536 * Get the default connection as needed...
537 */
538
807315e6 539 DEBUG_printf(("cupsReadResponseData(http=%p, buffer=%p, length=" CUPS_LLFMT ")", (void *)http, (void *)buffer, CUPS_LLCAST length));
a603edef 540
3d052e43
MS
541 if (!http)
542 {
543 _cups_globals_t *cg = _cupsGlobals();
544 /* Pointer to library globals */
545
546 if ((http = cg->http) == NULL)
547 {
cb7f98ee 548 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("No active connection"), 1);
3d052e43
MS
549 return (-1);
550 }
ecdc0628 551 }
ecdc0628 552
3d052e43
MS
553 /*
554 * Then read from the HTTP connection...
555 */
556
557 return (httpRead2(http, buffer, length));
558}
559
560
561/*
562 * 'cupsSendRequest()' - Send an IPP request.
563 *
5a9febac
MS
564 * Use @link cupsWriteRequestData@ to write any additional data (document, PPD
565 * file, etc.) for the request, @link cupsGetResponse@ to get the IPP response,
566 * and @link cupsReadResponseData@ to read any additional data following the
567 * response. Only one request can be sent/queued at a time per @code http_t@
568 * connection.
569 *
cb7f98ee 570 * Returns the initial HTTP status code, which will be @code HTTP_STATUS_CONTINUE@
5a9febac 571 * on a successful send of the request.
3d052e43 572 *
5a9febac
MS
573 * Note: Unlike @link cupsDoFileRequest@, @link cupsDoIORequest@, and
574 * @link cupsDoRequest@, the request is NOT freed with @link ippDelete@.
3d052e43 575 *
8072030b 576 * @since CUPS 1.4/macOS 10.6@
3d052e43
MS
577 */
578
579http_status_t /* O - Initial HTTP status */
568fa3fa 580cupsSendRequest(http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
3d052e43
MS
581 ipp_t *request, /* I - IPP request */
582 const char *resource, /* I - Resource path */
ae71f5de 583 size_t length) /* I - Length of data to follow or @code CUPS_LENGTH_VARIABLE@ */
3d052e43 584{
a469f8a5
MS
585 http_status_t status; /* Status of HTTP request */
586 int got_status; /* Did we get the status? */
587 ipp_state_t state; /* State of IPP processing */
588 http_status_t expect; /* Expect: header to use */
296185eb
MS
589 char date[256]; /* Date: header value */
590 int digest; /* Are we using Digest authentication? */
3d052e43
MS
591
592
807315e6 593 DEBUG_printf(("cupsSendRequest(http=%p, request=%p(%s), resource=\"%s\", length=" CUPS_LLFMT ")", (void *)http, (void *)request, request ? ippOpString(request->request.op.operation_id) : "?", resource, CUPS_LLCAST length));
3d052e43
MS
594
595 /*
596 * Range check input...
597 */
598
599 if (!request || !resource)
600 {
cb7f98ee 601 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(EINVAL), 0);
3d052e43 602
cb7f98ee 603 return (HTTP_STATUS_ERROR);
3d052e43
MS
604 }
605
606 /*
607 * Get the default connection as needed...
608 */
609
c00282bb
D
610 if (!http && (http = _cupsConnect()) == NULL)
611 return (HTTP_STATUS_SERVICE_UNAVAILABLE);
3d052e43 612
a4845881
MS
613 /*
614 * If the prior request was not flushed out, do so now...
615 */
616
cb7f98ee
MS
617 if (http->state == HTTP_STATE_GET_SEND ||
618 http->state == HTTP_STATE_POST_SEND)
10ddcf65
MS
619 {
620 DEBUG_puts("2cupsSendRequest: Flush prior response.");
a4845881 621 httpFlush(http);
10ddcf65 622 }
cb7f98ee 623 else if (http->state != HTTP_STATE_WAITING)
a4845881 624 {
82cc1f9a
MS
625 DEBUG_printf(("1cupsSendRequest: Unknown HTTP state (%d), "
626 "reconnecting.", http->state));
cb7f98ee
MS
627 if (httpReconnect2(http, 30000, NULL))
628 return (HTTP_STATUS_ERROR);
a4845881
MS
629 }
630
7594b224 631#ifdef HAVE_SSL
632 /*
633 * See if we have an auth-info attribute and are communicating over
634 * a non-local link. If so, encrypt the link so that we can pass
635 * the authentication information securely...
636 */
637
638 if (ippFindAttribute(request, "auth-info", IPP_TAG_TEXT) &&
639 !httpAddrLocalhost(http->hostaddr) && !http->tls &&
cb7f98ee 640 httpEncryption(http, HTTP_ENCRYPTION_REQUIRED))
b19ccc9e 641 {
10ddcf65 642 DEBUG_puts("1cupsSendRequest: Unable to encrypt connection.");
cb7f98ee 643 return (HTTP_STATUS_SERVICE_UNAVAILABLE);
b19ccc9e 644 }
7594b224 645#endif /* HAVE_SSL */
646
1ff0402e
MS
647 /*
648 * Reconnect if the last response had a "Connection: close"...
649 */
650
378eeedf 651 if (!_cups_strcasecmp(httpGetField(http, HTTP_FIELD_CONNECTION), "close"))
10ddcf65
MS
652 {
653 DEBUG_puts("2cupsSendRequest: Connection: close");
654 httpClearFields(http);
cb7f98ee 655 if (httpReconnect2(http, 30000, NULL))
b19ccc9e 656 {
10ddcf65 657 DEBUG_puts("1cupsSendRequest: Unable to reconnect.");
cb7f98ee 658 return (HTTP_STATUS_SERVICE_UNAVAILABLE);
b19ccc9e 659 }
10ddcf65 660 }
1ff0402e 661
ecdc0628 662 /*
663 * Loop until we can send the request without authorization problems.
664 */
665
cb7f98ee 666 expect = HTTP_STATUS_CONTINUE;
ecdc0628 667
3d052e43 668 for (;;)
ecdc0628 669 {
e07d4801 670 DEBUG_puts("2cupsSendRequest: Setup...");
ecdc0628 671
672 /*
673 * Setup the HTTP variables needed...
674 */
675
ecdc0628 676 httpClearFields(http);
0268488e 677 httpSetExpect(http, expect);
ecdc0628 678 httpSetField(http, HTTP_FIELD_CONTENT_TYPE, "application/ipp");
76ae98d6 679 httpSetField(http, HTTP_FIELD_DATE, httpGetDateString2(time(NULL), date, (int)sizeof(date)));
0268488e
MS
680 httpSetLength(http, length);
681
296185eb
MS
682 digest = http->authstring && !strncmp(http->authstring, "Digest ", 7);
683
16f67389
MS
684 if (digest)
685 {
686 /*
687 * Update the Digest authentication string...
688 */
689
5737d5eb 690 _httpSetDigestAuthString(http, http->nextnonce, "POST", resource);
16f67389
MS
691 }
692
0268488e
MS
693#ifdef HAVE_GSSAPI
694 if (http->authstring && !strncmp(http->authstring, "Negotiate", 9))
695 {
696 /*
697 * Do not use cached Kerberos credentials since they will look like a
698 * "replay" attack...
699 */
700
eac3a0a0 701 _cupsSetNegotiateAuthString(http, "POST", resource);
0268488e 702 }
0268488e 703#endif /* HAVE_GSSAPI */
f14324a7 704
ecdc0628 705 httpSetField(http, HTTP_FIELD_AUTHORIZATION, http->authstring);
706
e07d4801 707 DEBUG_printf(("2cupsSendRequest: authstring=\"%s\"", http->authstring));
ecdc0628 708
709 /*
710 * Try the request...
711 */
712
e07d4801 713 DEBUG_puts("2cupsSendRequest: Sending HTTP POST...");
ecdc0628 714
715 if (httpPost(http, resource))
716 {
10ddcf65 717 DEBUG_puts("2cupsSendRequest: POST failed, reconnecting.");
cb7f98ee 718 if (httpReconnect2(http, 30000, NULL))
b19ccc9e 719 {
10ddcf65 720 DEBUG_puts("1cupsSendRequest: Unable to reconnect.");
cb7f98ee 721 return (HTTP_STATUS_SERVICE_UNAVAILABLE);
b19ccc9e 722 }
ecdc0628 723 else
724 continue;
725 }
726
727 /*
d6ae789d 728 * Send the IPP data...
ecdc0628 729 */
730
e07d4801 731 DEBUG_puts("2cupsSendRequest: Writing IPP request...");
b423cd4c 732
cb7f98ee
MS
733 request->state = IPP_STATE_IDLE;
734 status = HTTP_STATUS_CONTINUE;
d6ae789d 735 got_status = 0;
736
cb7f98ee 737 while ((state = ippWrite(http, request)) != IPP_STATE_DATA)
88a98866
MS
738 {
739 if (httpCheck(http))
d6ae789d 740 {
741 got_status = 1;
742
e60ec91f 743 _httpUpdate(http, &status);
cb7f98ee 744 if (status >= HTTP_STATUS_MULTIPLE_CHOICES)
d6ae789d 745 break;
746 }
88a98866
MS
747 else if (state == IPP_STATE_ERROR)
748 break;
749 }
d6ae789d 750
cb7f98ee 751 if (state == IPP_STATE_ERROR)
22c9029b 752 {
88a98866
MS
753 /*
754 * We weren't able to send the IPP request. But did we already get a HTTP
755 * error status?
756 */
10ddcf65 757
88a98866
MS
758 if (!got_status || status < HTTP_STATUS_MULTIPLE_CHOICES)
759 {
760 /*
761 * No, something else went wrong.
762 */
22c9029b 763
88a98866
MS
764 DEBUG_puts("1cupsSendRequest: Unable to send IPP request.");
765
766 http->status = HTTP_STATUS_ERROR;
767 http->state = HTTP_STATE_WAITING;
768
769 return (HTTP_STATUS_ERROR);
770 }
22c9029b
MS
771 }
772
3d052e43
MS
773 /*
774 * Wait up to 1 second to get the 100-continue response as needed...
775 */
ecdc0628 776
296185eb 777 if (!got_status || (digest && status == HTTP_STATUS_CONTINUE))
3d052e43 778 {
296185eb 779 if (expect == HTTP_STATUS_CONTINUE || digest)
e60ec91f
MS
780 {
781 DEBUG_puts("2cupsSendRequest: Waiting for 100-continue...");
a603edef 782
e60ec91f
MS
783 if (httpWait(http, 1000))
784 _httpUpdate(http, &status);
785 }
786 else if (httpCheck(http))
787 _httpUpdate(http, &status);
d6ae789d 788 }
ecdc0628 789
e07d4801 790 DEBUG_printf(("2cupsSendRequest: status=%d", status));
a603edef 791
ecdc0628 792 /*
3d052e43 793 * Process the current HTTP status...
ecdc0628 794 */
795
a469f8a5 796 if (status >= HTTP_STATUS_MULTIPLE_CHOICES)
83e08001 797 {
a469f8a5
MS
798 int temp_status; /* Temporary status */
799
83e08001
MS
800 _cupsSetHTTPError(status);
801
802 do
803 {
a469f8a5 804 temp_status = httpUpdate(http);
83e08001 805 }
a469f8a5
MS
806 while (temp_status != HTTP_STATUS_ERROR &&
807 http->state == HTTP_STATE_POST_RECV);
83e08001 808
ba55dc12 809 httpFlush(http);
83e08001 810 }
ba55dc12 811
3d052e43 812 switch (status)
ecdc0628 813 {
a469f8a5
MS
814 case HTTP_STATUS_CONTINUE :
815 case HTTP_STATUS_OK :
816 case HTTP_STATUS_ERROR :
10ddcf65 817 DEBUG_printf(("1cupsSendRequest: Returning %d.", status));
3d052e43 818 return (status);
ecdc0628 819
a469f8a5 820 case HTTP_STATUS_UNAUTHORIZED :
ba55dc12 821 if (cupsDoAuthentication(http, "POST", resource))
10ddcf65 822 {
cb7f98ee
MS
823 DEBUG_puts("1cupsSendRequest: Returning HTTP_STATUS_CUPS_AUTHORIZATION_CANCELED.");
824 return (HTTP_STATUS_CUPS_AUTHORIZATION_CANCELED);
10ddcf65
MS
825 }
826
cb7f98ee 827 DEBUG_puts("2cupsSendRequest: Reconnecting after HTTP_STATUS_UNAUTHORIZED.");
ba55dc12 828
cb7f98ee 829 if (httpReconnect2(http, 30000, NULL))
f11a948a 830 {
10ddcf65 831 DEBUG_puts("1cupsSendRequest: Unable to reconnect.");
cb7f98ee 832 return (HTTP_STATUS_SERVICE_UNAVAILABLE);
f11a948a 833 }
ba55dc12 834 break;
89d46774 835
ecdc0628 836#ifdef HAVE_SSL
a469f8a5 837 case HTTP_STATUS_UPGRADE_REQUIRED :
3d052e43
MS
838 /*
839 * Flush any error message, reconnect, and then upgrade with
840 * encryption...
841 */
ecdc0628 842
10ddcf65 843 DEBUG_puts("2cupsSendRequest: Reconnecting after "
cb7f98ee 844 "HTTP_STATUS_UPGRADE_REQUIRED.");
10ddcf65 845
cb7f98ee 846 if (httpReconnect2(http, 30000, NULL))
b19ccc9e 847 {
10ddcf65 848 DEBUG_puts("1cupsSendRequest: Unable to reconnect.");
cb7f98ee 849 return (HTTP_STATUS_SERVICE_UNAVAILABLE);
b19ccc9e 850 }
ecdc0628 851
10ddcf65 852 DEBUG_puts("2cupsSendRequest: Upgrading to TLS.");
cb7f98ee 853 if (httpEncryption(http, HTTP_ENCRYPTION_REQUIRED))
ba55dc12 854 {
10ddcf65 855 DEBUG_puts("1cupsSendRequest: Unable to encrypt connection.");
cb7f98ee 856 return (HTTP_STATUS_SERVICE_UNAVAILABLE);
ba55dc12
MS
857 }
858 break;
ecdc0628 859#endif /* HAVE_SSL */
f301802f 860
a469f8a5 861 case HTTP_STATUS_EXPECTATION_FAILED :
3d052e43
MS
862 /*
863 * Don't try using the Expect: header the next time around...
864 */
ecdc0628 865
3d052e43 866 expect = (http_status_t)0;
52f6f666 867
10ddcf65
MS
868 DEBUG_puts("2cupsSendRequest: Reconnecting after "
869 "HTTP_EXPECTATION_FAILED.");
870
cb7f98ee 871 if (httpReconnect2(http, 30000, NULL))
52f6f666 872 {
10ddcf65 873 DEBUG_puts("1cupsSendRequest: Unable to reconnect.");
cb7f98ee 874 return (HTTP_STATUS_SERVICE_UNAVAILABLE);
52f6f666 875 }
a603edef 876 break;
ecdc0628 877
3d052e43
MS
878 default :
879 /*
880 * Some other error...
881 */
ecdc0628 882
3d052e43 883 return (status);
b94498cf 884 }
885 }
3d052e43
MS
886}
887
888
889/*
890 * 'cupsWriteRequestData()' - Write additional data after an IPP request.
891 *
568fa3fa
MS
892 * This function is used after @link cupsSendRequest@ to provide a PPD and
893 * after @link cupsStartDocument@ to provide a document file.
3d052e43 894 *
8072030b 895 * @since CUPS 1.4/macOS 10.6@
3d052e43 896 */
ecdc0628 897
cb7f98ee 898http_status_t /* O - @code HTTP_STATUS_CONTINUE@ if OK or HTTP status on error */
3d052e43 899cupsWriteRequestData(
568fa3fa 900 http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
3d052e43
MS
901 const char *buffer, /* I - Bytes to write */
902 size_t length) /* I - Number of bytes to write */
903{
38e73f87
MS
904 int wused; /* Previous bytes in buffer */
905
906
ecdc0628 907 /*
3d052e43 908 * Get the default connection as needed...
ecdc0628 909 */
ecdc0628 910
807315e6 911 DEBUG_printf(("cupsWriteRequestData(http=%p, buffer=%p, length=" CUPS_LLFMT ")", (void *)http, (void *)buffer, CUPS_LLCAST length));
a603edef 912
3d052e43 913 if (!http)
ecdc0628 914 {
3d052e43
MS
915 _cups_globals_t *cg = _cupsGlobals();
916 /* Pointer to library globals */
ecdc0628 917
3d052e43
MS
918 if ((http = cg->http) == NULL)
919 {
cb7f98ee
MS
920 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("No active connection"), 1);
921 DEBUG_puts("1cupsWriteRequestData: Returning HTTP_STATUS_ERROR.");
922 return (HTTP_STATUS_ERROR);
3d052e43 923 }
ecdc0628 924 }
ecdc0628 925
3d052e43
MS
926 /*
927 * Then write to the HTTP connection...
928 */
ecdc0628 929
38e73f87
MS
930 wused = http->wused;
931
3d052e43 932 if (httpWrite2(http, buffer, length) < 0)
10d09e33 933 {
cb7f98ee
MS
934 DEBUG_puts("1cupsWriteRequestData: Returning HTTP_STATUS_ERROR.");
935 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(http->error), 0);
936 return (HTTP_STATUS_ERROR);
10d09e33 937 }
ecdc0628 938
3d052e43
MS
939 /*
940 * Finally, check if we have any pending data from the server...
941 */
ecdc0628 942
f11a948a 943 if (length >= HTTP_MAX_BUFFER ||
38e73f87 944 http->wused < wused ||
7e86f2f6 945 (wused > 0 && (size_t)http->wused == length))
38e73f87
MS
946 {
947 /*
948 * We've written something to the server, so check for response data...
949 */
950
951 if (_httpWait(http, 0, 1))
ba55dc12 952 {
e60ec91f 953 http_status_t status; /* Status from _httpUpdate */
ba55dc12 954
e60ec91f 955 _httpUpdate(http, &status);
cb7f98ee 956 if (status >= HTTP_STATUS_MULTIPLE_CHOICES)
10d09e33
MS
957 {
958 _cupsSetHTTPError(status);
83e08001
MS
959
960 do
961 {
962 status = httpUpdate(http);
963 }
cb7f98ee 964 while (status != HTTP_STATUS_ERROR && http->state == HTTP_STATE_POST_RECV);
83e08001 965
ba55dc12 966 httpFlush(http);
10d09e33 967 }
ba55dc12 968
10d09e33 969 DEBUG_printf(("1cupsWriteRequestData: Returning %d.\n", status));
ba55dc12
MS
970 return (status);
971 }
38e73f87
MS
972 }
973
cb7f98ee
MS
974 DEBUG_puts("1cupsWriteRequestData: Returning HTTP_STATUS_CONTINUE.");
975 return (HTTP_STATUS_CONTINUE);
ecdc0628 976}
977
978
6d2f911b
MS
979/*
980 * '_cupsConnect()' - Get the default server connection...
981 */
982
983http_t * /* O - HTTP connection */
984_cupsConnect(void)
985{
986 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */
987
988
989 /*
990 * See if we are connected to the same server...
991 */
992
993 if (cg->http)
994 {
995 /*
996 * Compare the connection hostname, port, and encryption settings to
997 * the cached defaults; these were initialized the first time we
998 * connected...
999 */
1000
1001 if (strcmp(cg->http->hostname, cg->server) ||
9449dd94
MS
1002#ifdef AF_LOCAL
1003 (httpAddrFamily(cg->http->hostaddr) != AF_LOCAL && cg->ipp_port != httpAddrPort(cg->http->hostaddr)) ||
1004#else
a469f8a5 1005 cg->ipp_port != httpAddrPort(cg->http->hostaddr) ||
9449dd94 1006#endif /* AF_LOCAL */
6d2f911b 1007 (cg->http->encryption != cg->encryption &&
cb7f98ee 1008 cg->http->encryption == HTTP_ENCRYPTION_NEVER))
6d2f911b
MS
1009 {
1010 /*
1011 * Need to close the current connection because something has changed...
1012 */
1013
1014 httpClose(cg->http);
1015 cg->http = NULL;
1016 }
0fa6c7fa
MS
1017 else
1018 {
1019 /*
1020 * Same server, see if the connection is still established...
1021 */
1022
80360a5e
MS
1023 char ch; /* Connection check byte */
1024 ssize_t n; /* Number of bytes */
0fa6c7fa 1025
19dc16f7 1026#ifdef _WIN32
80360a5e
MS
1027 if ((n = recv(cg->http->fd, &ch, 1, MSG_PEEK)) == 0 ||
1028 (n < 0 && WSAGetLastError() != WSAEWOULDBLOCK))
db8b865d 1029#else
80360a5e
MS
1030 if ((n = recv(cg->http->fd, &ch, 1, MSG_PEEK | MSG_DONTWAIT)) == 0 ||
1031 (n < 0 && errno != EWOULDBLOCK))
19dc16f7 1032#endif /* _WIN32 */
0fa6c7fa
MS
1033 {
1034 /*
1035 * Nope, close the connection...
1036 */
1037
1038 httpClose(cg->http);
1039 cg->http = NULL;
1040 }
1041 }
6d2f911b
MS
1042 }
1043
1044 /*
1045 * (Re)connect as needed...
1046 */
1047
1048 if (!cg->http)
1049 {
cb7f98ee
MS
1050 if ((cg->http = httpConnect2(cupsServer(), ippPort(), NULL, AF_UNSPEC,
1051 cupsEncryption(), 1, 30000, NULL)) == NULL)
6d2f911b
MS
1052 {
1053 if (errno)
cb7f98ee 1054 _cupsSetError(IPP_STATUS_ERROR_SERVICE_UNAVAILABLE, NULL, 0);
6d2f911b 1055 else
cb7f98ee 1056 _cupsSetError(IPP_STATUS_ERROR_SERVICE_UNAVAILABLE,
6d2f911b
MS
1057 _("Unable to connect to host."), 1);
1058 }
1059 }
1060
1061 /*
1062 * Return the cached connection...
1063 */
1064
1065 return (cg->http);
1066}
1067
1068
ecdc0628 1069/*
1070 * '_cupsSetError()' - Set the last IPP status code and status-message.
1071 */
1072
1073void
1074_cupsSetError(ipp_status_t status, /* I - IPP status code */
749b1e90
MS
1075 const char *message, /* I - status-message value */
1076 int localize) /* I - Localize the message? */
ecdc0628 1077{
1078 _cups_globals_t *cg; /* Global data */
1079
1080
749b1e90
MS
1081 if (!message && errno)
1082 {
1083 message = strerror(errno);
1084 localize = 0;
1085 }
1086
ecdc0628 1087 cg = _cupsGlobals();
1088 cg->last_error = status;
1089
1090 if (cg->last_status_message)
1091 {
749b1e90 1092 _cupsStrFree(cg->last_status_message);
ecdc0628 1093
1094 cg->last_status_message = NULL;
1095 }
1096
1097 if (message)
749b1e90
MS
1098 {
1099 if (localize)
1100 {
1101 /*
1102 * Get the message catalog...
1103 */
1104
1105 if (!cg->lang_default)
1106 cg->lang_default = cupsLangDefault();
1107
1108 cg->last_status_message = _cupsStrAlloc(_cupsLangString(cg->lang_default,
1109 message));
1110 }
1111 else
1112 cg->last_status_message = _cupsStrAlloc(message);
1113 }
a603edef 1114
e07d4801
MS
1115 DEBUG_printf(("4_cupsSetError: last_error=%s, last_status_message=\"%s\"",
1116 ippErrorString(cg->last_error), cg->last_status_message));
ecdc0628 1117}
1118
1119
1120/*
355e94dc
MS
1121 * '_cupsSetHTTPError()' - Set the last error using the HTTP status.
1122 */
1123
1124void
1125_cupsSetHTTPError(http_status_t status) /* I - HTTP status code */
1126{
1127 switch (status)
1128 {
cb7f98ee
MS
1129 case HTTP_STATUS_NOT_FOUND :
1130 _cupsSetError(IPP_STATUS_ERROR_NOT_FOUND, httpStatus(status), 0);
355e94dc
MS
1131 break;
1132
cb7f98ee
MS
1133 case HTTP_STATUS_UNAUTHORIZED :
1134 _cupsSetError(IPP_STATUS_ERROR_NOT_AUTHENTICATED, httpStatus(status), 0);
355e94dc
MS
1135 break;
1136
cb7f98ee
MS
1137 case HTTP_STATUS_CUPS_AUTHORIZATION_CANCELED :
1138 _cupsSetError(IPP_STATUS_ERROR_CUPS_AUTHENTICATION_CANCELED, httpStatus(status), 0);
7cf5915e
MS
1139 break;
1140
cb7f98ee
MS
1141 case HTTP_STATUS_FORBIDDEN :
1142 _cupsSetError(IPP_STATUS_ERROR_FORBIDDEN, httpStatus(status), 0);
355e94dc
MS
1143 break;
1144
cb7f98ee
MS
1145 case HTTP_STATUS_BAD_REQUEST :
1146 _cupsSetError(IPP_STATUS_ERROR_BAD_REQUEST, httpStatus(status), 0);
355e94dc
MS
1147 break;
1148
cb7f98ee
MS
1149 case HTTP_STATUS_REQUEST_TOO_LARGE :
1150 _cupsSetError(IPP_STATUS_ERROR_REQUEST_VALUE, httpStatus(status), 0);
355e94dc
MS
1151 break;
1152
cb7f98ee
MS
1153 case HTTP_STATUS_NOT_IMPLEMENTED :
1154 _cupsSetError(IPP_STATUS_ERROR_OPERATION_NOT_SUPPORTED, httpStatus(status), 0);
355e94dc
MS
1155 break;
1156
cb7f98ee
MS
1157 case HTTP_STATUS_NOT_SUPPORTED :
1158 _cupsSetError(IPP_STATUS_ERROR_VERSION_NOT_SUPPORTED, httpStatus(status), 0);
355e94dc
MS
1159 break;
1160
cb7f98ee
MS
1161 case HTTP_STATUS_UPGRADE_REQUIRED :
1162 _cupsSetError(IPP_STATUS_ERROR_CUPS_UPGRADE_REQUIRED, httpStatus(status), 0);
7cf5915e
MS
1163 break;
1164
cb7f98ee
MS
1165 case HTTP_STATUS_CUPS_PKI_ERROR :
1166 _cupsSetError(IPP_STATUS_ERROR_CUPS_PKI, httpStatus(status), 0);
7cf5915e
MS
1167 break;
1168
cb7f98ee
MS
1169 case HTTP_STATUS_ERROR :
1170 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(errno), 0);
10d09e33
MS
1171 break;
1172
355e94dc 1173 default :
e07d4801 1174 DEBUG_printf(("4_cupsSetHTTPError: HTTP error %d mapped to "
cb7f98ee
MS
1175 "IPP_STATUS_ERROR_SERVICE_UNAVAILABLE!", status));
1176 _cupsSetError(IPP_STATUS_ERROR_SERVICE_UNAVAILABLE, httpStatus(status), 0);
355e94dc
MS
1177 break;
1178 }
1179}