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