1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
|
/***
This file is part of cups-filters.
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of the
License, or (at your option) any later version.
This file is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with avahi; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
USA.
***/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <ctype.h>
#include <stdlib.h>
#include <cups/cups.h>
#include <cups/backend.h>
#include <cupsfilters/ipp.h>
#include <cupsfilters/ppdgenerator.h>
#include <errno.h>
#include <stdio.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/types.h>
#if (CUPS_VERSION_MAJOR > 1) || (CUPS_VERSION_MINOR > 5)
#define HAVE_CUPS_1_6 1
#endif
enum resolve_uri_converter_type /**** Resolving DNS-SD based URI ****/
{
CUPS_BACKEND_URI_CONVERTER = -1,
IPPFIND_BASED_CONVERTER_FOR_PRINT_URI = 0,
IPPFIND_BASED_CONVERTER_FOR_FAX_URI = 1
};
char get_printer_attributes_log[LOGSIZE];
static int
convert_to_port(char *a)
{
int port = 0;
for (int i = 0; i<strlen(a); i++)
port = port*10 + (a[i] - '0');
return (port);
}
void
log_printf(char *log,
const char *format, ...)
{
va_list arglist;
va_start(arglist, format);
vsnprintf(log + strlen(log),
LOGSIZE - strlen(log) - 1,
format, arglist);
log[LOGSIZE - 1] = '\0';
va_end(arglist);
}
char *
resolve_uri(const char *raw_uri)
{
char *pseudo_argv[2];
const char *uri;
int fd1, fd2;
char *save_device_uri_var;
/* Eliminate any output to stderr, to get rid of the CUPS-backend-specific
output of the cupsBackendDeviceURI() function */
fd1 = dup(2);
fd2 = open("/dev/null", O_WRONLY);
dup2(fd2, 2);
close(fd2);
/* If set, save the DEVICE_URI environment and then unset it, so that
if we are running under CUPS (as filter or backend) our raw_uri gets
resolved and not whatever URI is set in DEVICE_URI */
if ((save_device_uri_var = getenv("DEVICE_URI")) != NULL)
{
save_device_uri_var = strdup(save_device_uri_var);
unsetenv("DEVICE_URI");
}
/* Use the URI resolver of libcups to support DNS-SD-service-name-based
URIs. The function returns the corresponding host-name-based URI */
pseudo_argv[0] = (char *)raw_uri;
pseudo_argv[1] = NULL;
uri = cupsBackendDeviceURI(pseudo_argv);
/* Restore DEVICE_URI envidonment variable if we had unset it */
if (save_device_uri_var)
{
setenv("DEVICE_URI", save_device_uri_var, 1);
free(save_device_uri_var);
}
/* Re-activate stderr output */
dup2(fd1, 2);
close(fd1);
return (uri ? strdup(uri) : NULL);
}
#ifdef HAVE_CUPS_1_6
/* Check how the driverless support is provided */
int
check_driverless_support(const char* uri)
{
int support_status = DRVLESS_CHECKERR;
ipp_t *response = NULL;
response = get_printer_attributes3(NULL, uri, NULL, 0, NULL, 0, 1,
&support_status);
if (response != NULL)
ippDelete(response);
return support_status;
}
/* Get attributes of a printer specified only by URI */
ipp_t *
get_printer_attributes(const char* raw_uri,
const char* const pattrs[],
int pattrs_size,
const char* const req_attrs[],
int req_attrs_size,
int debug)
{
return get_printer_attributes2(NULL, raw_uri, pattrs, pattrs_size,
req_attrs, req_attrs_size, debug);
}
/* Get attributes of a printer specified by URI and under a given HTTP
connection, for example via a domain socket */
ipp_t *
get_printer_attributes2(http_t *http_printer,
const char* raw_uri,
const char* const pattrs[],
int pattrs_size,
const char* const req_attrs[],
int req_attrs_size,
int debug)
{
return get_printer_attributes3(http_printer, raw_uri, pattrs, pattrs_size,
req_attrs, req_attrs_size, debug, NULL);
}
/* Get attributes of a printer specified by URI and under a given HTTP
connection, for example via a domain socket, and give info about used
fallbacks */
ipp_t *
get_printer_attributes3(http_t *http_printer,
const char* raw_uri,
const char* const pattrs[],
int pattrs_size,
const char* const req_attrs[],
int req_attrs_size,
int debug,
int* driverless_info)
{
return get_printer_attributes5(http_printer, raw_uri, pattrs, pattrs_size,
req_attrs, req_attrs_size, debug,
driverless_info, CUPS_BACKEND_URI_CONVERTER);
}
/* Get attributes of a printer specified only by URI and given info about fax-support*/
ipp_t *get_printer_attributes4(const char* raw_uri,
const char* const pattrs[],
int pattrs_size,
const char* const req_attrs[],
int req_attrs_size,
int debug,
int is_fax)
{
if(is_fax)
return get_printer_attributes5(NULL, raw_uri, pattrs, pattrs_size,
req_attrs, req_attrs_size, debug, NULL,
IPPFIND_BASED_CONVERTER_FOR_FAX_URI);
else
return get_printer_attributes5(NULL, raw_uri, pattrs, pattrs_size,
req_attrs, req_attrs_size, debug, NULL,
IPPFIND_BASED_CONVERTER_FOR_PRINT_URI);
}
/* Get attributes of a printer specified by URI and under a given HTTP
connection, for example via a domain socket, and give info about used
fallbacks */
ipp_t *
get_printer_attributes5(http_t *http_printer,
const char* raw_uri,
const char* const pattrs[],
int pattrs_size,
const char* const req_attrs[],
int req_attrs_size,
int debug,
int* driverless_info,
int resolve_uri_type )
{
char *uri;
int have_http, uri_status, host_port, i = 0, total_attrs = 0, fallback,
cap = 0;
char scheme[10], userpass[1024], host_name[1024], resource[1024];
http_encryption_t encryption;
ipp_t *request, *response = NULL;
ipp_attribute_t *attr;
char valuebuffer[65536];
const char *kw;
ipp_status_t ipp_status;
/* Default attributes for get-printer-attributes requests to
obtain complete capability lists of a printer */
const char * const pattrs_cap_standard[] = {
"all",
"media-col-database",
};
const char * const pattrs_cap_fallback[] = {
"all",
};
/* Attributes required in the IPP response of a complete printer
capability list */
const char * const req_attrs_cap[] = {
"attributes-charset",
"attributes-natural-language",
"charset-configured",
"charset-supported",
"compression-supported",
"document-format-default",
"document-format-supported",
"generated-natural-language-supported",
"ipp-versions-supported",
"natural-language-configured",
"operations-supported",
"printer-is-accepting-jobs",
"printer-name",
"printer-state",
"printer-state-reasons",
"printer-up-time",
"printer-uri-supported",
"uri-authentication-supported",
"uri-security-supported"
};
/* Expect a device capable of standard IPP Everywhere */
if (driverless_info != NULL)
*driverless_info = FULL_DRVLESS;
/* Request printer properties via IPP, for example to
- generate a PPD file for the printer
(mainly driverless-capable printers)
- generally find capabilities, options, and default settinngs,
- printers status: Accepting jobs? Busy? With how many jobs? */
get_printer_attributes_log[0] = '\0';
/* Convert DNS-SD-service-name-based URIs to host-name-based URIs */
if(resolve_uri_type == CUPS_BACKEND_URI_CONVERTER)
uri = resolve_uri(raw_uri);
else
uri = ippfind_based_uri_converter(raw_uri, resolve_uri_type);
if (uri == NULL)
{
log_printf(get_printer_attributes_log,
"get-printer-attibutes: Cannot resolve URI: %s\n", raw_uri);
return NULL;
}
/* Extract URI componants needed for the IPP request */
uri_status = httpSeparateURI(HTTP_URI_CODING_ALL, uri,
scheme, sizeof(scheme),
userpass, sizeof(userpass),
host_name, sizeof(host_name),
&(host_port),
resource, sizeof(resource));
if (uri_status != HTTP_URI_OK) {
/* Invalid URI */
log_printf(get_printer_attributes_log,
"get-printer-attributes: Cannot parse the printer URI: %s\n",
uri);
if (uri) free(uri);
return NULL;
}
if (!strcmp(scheme, "ipps"))
encryption = HTTP_ENCRYPTION_ALWAYS;
else
encryption = HTTP_ENCRYPTION_IF_REQUESTED;
/* Connect to the server if not already done */
if (http_printer == NULL) {
have_http = 0;
if ((http_printer =
httpConnect2 (host_name, host_port, NULL, AF_UNSPEC,
encryption, 1, 3000, NULL)) == NULL) {
log_printf(get_printer_attributes_log,
"get-printer-attributes: Cannot connect to printer with URI %s.\n",
uri);
if (uri) free(uri);
return NULL;
}
} else
have_http = 1;
/* If we got called without attribute list, use the attributes for polling
a complete list of capabilities of the printer.
If also no list of required attributes in the response is supplied, use
the default list */
if (pattrs == NULL || pattrs_size == 0) {
cap = 1;
pattrs = pattrs_cap_standard;
pattrs_size = sizeof(pattrs_cap_standard) / sizeof(pattrs_cap_standard[0]);
if (req_attrs == NULL || req_attrs_size == 0) {
req_attrs = req_attrs_cap;
req_attrs_size = sizeof(req_attrs_cap) / sizeof(req_attrs_cap[0]);
}
}
/* Loop through all fallbacks until getting a successful result */
for (fallback = 0; fallback < 2 + cap; fallback ++) {
request = ippNewRequest(IPP_OP_GET_PRINTER_ATTRIBUTES);
if (fallback == 1)
/* Fallback 1: Try IPP 1.1 instead of 2.0 */
ippSetVersion(request, 1, 1);
if (fallback == 2 && cap) {
/* Fallback 2: (Only for full capability list) Try only "all",
without "media-col-database */
pattrs = pattrs_cap_fallback;
pattrs_size = sizeof(pattrs_cap_fallback) /
sizeof(pattrs_cap_fallback[0]);
}
ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri", NULL,
uri);
ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
"requested-attributes", pattrs_size,
NULL, pattrs);
response = cupsDoRequest(http_printer, request, resource);
ipp_status = cupsLastError();
if (response) {
log_printf(get_printer_attributes_log,
"Requested IPP attributes (get-printer-attributes) for printer with URI %s\n",
uri);
/* Log all printer attributes for debugging and count them */
if (debug)
log_printf(get_printer_attributes_log,
"Full list of all IPP attributes:\n");
attr = ippFirstAttribute(response);
while (attr) {
total_attrs ++;
if (debug) {
ippAttributeString(attr, valuebuffer, sizeof(valuebuffer));
log_printf(get_printer_attributes_log,
" Attr: %s\n",ippGetName(attr));
log_printf(get_printer_attributes_log,
" Value: %s\n", valuebuffer);
for (i = 0; i < ippGetCount(attr); i ++) {
if ((kw = ippGetString(attr, i, NULL)) != NULL) {
log_printf(get_printer_attributes_log, " Keyword: %s\n", kw);
}
}
}
attr = ippNextAttribute(response);
}
/* Check whether the IPP response contains the required attributes
and is not incomplete */
if (req_attrs)
for (i = req_attrs_size; i > 0; i --)
if (ippFindAttribute(response, req_attrs[i - 1], IPP_TAG_ZERO) ==
NULL)
break;
if (ipp_status == IPP_STATUS_ERROR_BAD_REQUEST ||
ipp_status == IPP_STATUS_ERROR_VERSION_NOT_SUPPORTED ||
(req_attrs && i > 0) || (cap && total_attrs < 20)) {
log_printf(get_printer_attributes_log,
"get-printer-attributes IPP request failed:\n");
if (ipp_status == IPP_STATUS_ERROR_BAD_REQUEST)
log_printf(get_printer_attributes_log,
" - ipp_status == IPP_STATUS_ERROR_BAD_REQUEST\n");
else if (ipp_status == IPP_STATUS_ERROR_VERSION_NOT_SUPPORTED)
log_printf(get_printer_attributes_log,
" - ipp_status == IPP_STATUS_ERROR_VERSION_NOT_SUPPORTED\n");
if (req_attrs && i > 0)
log_printf(get_printer_attributes_log,
" - Required IPP attribute %s not found\n",
req_attrs[i - 1]);
if (cap && total_attrs < 20)
log_printf(get_printer_attributes_log,
" - Too few IPP attributes: %d (30 or more expected)\n",
total_attrs);
ippDelete(response);
} else {
/* Suitable response, we are done */
// if we did not succeed to obtain the "media-col-database" attribute
// try to get it separately
if (cap &&
ippFindAttribute(response, "media-col-database", IPP_TAG_ZERO) ==
NULL)
{
ipp_t *response2 = NULL;
log_printf(get_printer_attributes_log,
"Polling \"media-col-database\" attribute separately.\n");
request = ippNewRequest(IPP_OP_GET_PRINTER_ATTRIBUTES);
ippSetVersion(request, 2, 0);
ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI,
"printer-uri", NULL, uri);
ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
"requested-attributes", NULL, "media-col-database");
response2 = cupsDoRequest(http_printer, request, resource);
ipp_status = cupsLastError();
if (response2)
{
if ((attr = ippFindAttribute(response2, "media-col-database",
IPP_TAG_ZERO)) != NULL)
{
// Copy "media-col-database" attribute into the original
// IPP response
log_printf(get_printer_attributes_log,
"\"media-col-database\" attribute found.\n");
ippCopyAttribute(response, attr, 0);
}
ippDelete(response2);
}
}
// Check if the response is valid
if (!ippValidateAttributes(response))
{
ippDelete(response);
response = NULL;
}
if (have_http == 0) httpClose(http_printer);
if (uri) free(uri);
return response;
}
} else {
log_printf(get_printer_attributes_log,
"Request for IPP attributes (get-printer-attributes) for printer with URI %s failed: %s\n",
uri, cupsLastErrorString());
log_printf(get_printer_attributes_log, "get-printer-attributes IPP request failed:\n");
log_printf(get_printer_attributes_log, " - No response\n");
}
if (fallback == 1 + cap) {
log_printf(get_printer_attributes_log,
"No further fallback available, giving up\n");
if (driverless_info != NULL)
*driverless_info = DRVLESS_CHECKERR;
} else if (cap && fallback == 1) {
log_printf(get_printer_attributes_log,
"The server doesn't support the standard IPP request, trying request without media-col\n");
if (driverless_info != NULL)
*driverless_info = DRVLESS_INCOMPLETEIPP;
} else if (fallback == 0) {
log_printf(get_printer_attributes_log,
"The server doesn't support IPP2.0 request, trying IPP1.1 request\n");
if (driverless_info != NULL)
*driverless_info = DRVLESS_IPP11;
}
}
if (have_http == 0) httpClose(http_printer);
if (uri) free(uri);
return NULL;
}
char*
ippfind_based_uri_converter (const char *uri, int is_fax)
{
int ippfind_pid = 0, /* Process ID of ippfind for IPP */
post_proc_pipe[2], /* Pipe to post-processing for IPP */
wait_children, /* Number of child processes left */
wait_pid, /* Process ID from wait() */
wait_status, /* Status from child */
exit_status = 0, /* Exit status */
bytes,
port,
i,
output_of_fax_uri = 0,
is_local;
char *ippfind_argv[100], /* Arguments for ippfind */
*ptr_to_port = NULL,
*reg_type,
*resolved_uri = NULL, /* Buffer for resolved URI */
*resource_field = NULL,
*service_hostname = NULL,
/* URI components... */
scheme[32],
userpass[256],
hostname[1024],
resource[1024],
*buffer = NULL, /* Copy buffer */
*ptr; /* Pointer into string */;
cups_file_t *fp; /* Post-processing input file */
int status; /* Status of GET request */
status = httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme, sizeof(scheme),
userpass, sizeof(userpass),
hostname, sizeof(hostname), &port, resource,
sizeof(resource));
if (status < HTTP_URI_OK) {
/* Invalid URI */
fprintf(stderr, "ERROR: Could not parse URI: %s\n", uri);
goto error;
}
/* URI is not DNS-SD-based, so do not resolve */
if ((reg_type = strstr(hostname, "._tcp")) == NULL) {
return strdup(uri);
}
resolved_uri = (char *)malloc(MAX_URI_LEN * (sizeof(char)));
if (resolved_uri == NULL) {
fprintf(stderr, "resolved_uri malloc: Out of memory\n");
goto error;
}
memset(resolved_uri, 0, MAX_URI_LEN);
reg_type --;
while (reg_type >= hostname && *reg_type != '.')
reg_type --;
if (reg_type < hostname) {
fprintf(stderr, "ERROR: Invalid DNS-SD service name: %s\n", hostname);
goto error;
}
*reg_type++ = '\0';
i = 0;
ippfind_argv[i++] = "ippfind";
ippfind_argv[i++] = reg_type; /* list IPP(S) entries */
ippfind_argv[i++] = "-T"; /* DNS-SD poll timeout */
ippfind_argv[i++] = "0"; /* Minimum time required */
if (is_fax) {
ippfind_argv[i++] = "--txt";
ippfind_argv[i++] = "rfo";
}
ippfind_argv[i++] = "-N";
ippfind_argv[i++] = hostname;
ippfind_argv[i++] = "-x";
ippfind_argv[i++] = "echo"; /* Output the needed data fields */
ippfind_argv[i++] = "-en"; /* separated by tab characters */
if(is_fax)
ippfind_argv[i++] = "\n{service_hostname}\t{txt_rfo}\t{service_port}\t";
else
ippfind_argv[i++] = "\n{service_hostname}\t{txt_rp}\t{service_port}\t";
ippfind_argv[i++] = ";";
ippfind_argv[i++] = "--local"; /* Rest only if local service */
ippfind_argv[i++] = "-x";
ippfind_argv[i++] = "echo"; /* Output an 'L' at the end of the */
ippfind_argv[i++] = "-en"; /* line */
ippfind_argv[i++] = "L";
ippfind_argv[i++] = ";";
ippfind_argv[i++] = NULL;
/*
* Create a pipe for passing the ippfind output to post-processing
*/
if (pipe(post_proc_pipe)) {
perror("ERROR: Unable to create pipe to post-processing");
goto error;
}
if ((ippfind_pid = fork()) == 0) {
/*
* Child comes here...
*/
dup2(post_proc_pipe[1], 1);
close(post_proc_pipe[0]);
close(post_proc_pipe[1]);
execvp(CUPS_IPPFIND, ippfind_argv);
perror("ERROR: Unable to execute ippfind utility");
exit(1);
}
else if (ippfind_pid < 0) {
/*
* Unable to fork!
*/
perror("ERROR: Unable to execute ippfind utility");
goto error;
}
close(post_proc_pipe[1]);
fp = cupsFileOpenFd(post_proc_pipe[0], "r");
buffer = (char*)malloc(MAX_OUTPUT_LEN * sizeof(char));
if (buffer == NULL) {
fprintf(stderr, "buffer malloc: Out of memory.\n");
goto error;
}
memset(buffer, 0, MAX_OUTPUT_LEN);
while ((bytes = cupsFileGetLine(fp, buffer, MAX_OUTPUT_LEN)) > 0) {
/* Mark all the fields of the output of ippfind */
ptr = buffer;
/* ignore new lines */
if (bytes < 3)
goto read_error;
/* First, build the DNS-SD-service-name-based URI ... */
while (ptr && !isalnum(*ptr & 255)) ptr ++;
service_hostname = ptr;
ptr = memchr(ptr, '\t', MAX_OUTPUT_LEN - (ptr - buffer));
if (!ptr) goto read_error;
*ptr = '\0';
ptr ++;
resource_field = ptr;
ptr = memchr(ptr, '\t', MAX_OUTPUT_LEN - (ptr - buffer));
if (!ptr) goto read_error;
*ptr = '\0';
ptr ++;
ptr_to_port = ptr;
ptr = memchr(ptr, '\t', MAX_OUTPUT_LEN - (ptr - buffer));
if (!ptr) goto read_error;
*ptr = '\0';
ptr ++;
/* Do we have a local service so that we have to set the host name to
"localhost"? */
is_local = (*ptr == 'L');
ptr = strchr(reg_type, '.');
if (!ptr) goto read_error;
*ptr = '\0';
port = convert_to_port(ptr_to_port);
httpAssembleURIf(HTTP_URI_CODING_ALL, resolved_uri,
2047, reg_type + 1, NULL,
(is_local ? "localhost" : service_hostname), port, "/%s",
resource_field);
if (is_fax)
output_of_fax_uri = 1; /* fax-uri requested from fax-capable device */
read_error:
memset(buffer, 0, MAX_OUTPUT_LEN);
}
cupsFileClose(fp);
if (buffer != NULL)
free(buffer);
/*
* Wait for the child processes to exit...
*/
wait_children = 1;
while (wait_children > 0) {
/*
* Wait until we get a valid process ID or the job is canceled...
*/
while ((wait_pid = wait(&wait_status)) < 0 && errno == EINTR) {
}
if (wait_pid < 0)
break;
wait_children --;
/*
* Report child status...
*/
if (wait_status) {
if (WIFEXITED(wait_status)) {
exit_status = WEXITSTATUS(wait_status);
if (wait_pid == ippfind_pid && exit_status <= 2)
exit_status = 0;
} else if (WTERMSIG(wait_status) == SIGTERM) {
} else {
exit_status = WTERMSIG(wait_status);
}
}
}
if (is_fax && !output_of_fax_uri) {
fprintf(stderr, "fax URI requested from not fax-capable device\n");
goto error;
}
return (resolved_uri);
/*
* Exit...
*/
error:
if (resolved_uri != NULL)
free(resolved_uri);
return (NULL);
}
#endif /* HAVE_CUPS_1_6 */
|