]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/file.c
Allow DELAY values of 0.
[thirdparty/cups.git] / cups / file.c
CommitLineData
ef416fc2 1/*
da003234 2 * File functions for CUPS.
ef416fc2 3 *
da003234
MS
4 * Since stdio files max out at 256 files on many systems, we have to
5 * write similar functions without this limit. At the same time, using
6 * our own file functions allows us to provide transparent support of
2a75f21b 7 * different line endings, gzip'd print files, PPD files, etc.
ef416fc2 8 *
2a75f21b 9 * Copyright 2007-2017 by Apple Inc.
da003234 10 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 11 *
da003234
MS
12 * These coded instructions, statements, and computer programs are the
13 * property of Apple Inc. and are protected by Federal copyright
14 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
15 * which should have been included with this file. If this file is
57b7b66b 16 * missing or damaged, see the license at "http://www.cups.org/".
6539a0af
MS
17 *
18 * This file is subject to the Apple OS-Developed Software exception.
ef416fc2 19 */
20
21/*
22 * Include necessary headers...
23 */
24
b9faaae1 25#include "file-private.h"
c7017ecc
MS
26#include <sys/stat.h>
27#include <sys/types.h>
ef416fc2 28
29
30/*
31 * Local functions...
32 */
33
34#ifdef HAVE_LIBZ
35static ssize_t cups_compress(cups_file_t *fp, const char *buf, size_t bytes);
36#endif /* HAVE_LIBZ */
37static ssize_t cups_fill(cups_file_t *fp);
c7017ecc 38static int cups_open(const char *filename, int mode);
ef416fc2 39static ssize_t cups_read(cups_file_t *fp, char *buf, size_t bytes);
40static ssize_t cups_write(cups_file_t *fp, const char *buf, size_t bytes);
41
42
83e08001 43#ifndef WIN32
22c9029b
MS
44/*
45 * '_cupsFileCheck()' - Check the permissions of the given filename.
46 */
47
48_cups_fc_result_t /* O - Check result */
49_cupsFileCheck(
50 const char *filename, /* I - Filename to check */
51 _cups_fc_filetype_t filetype, /* I - Type of file checks? */
52 int dorootchecks, /* I - Check for root permissions? */
53 _cups_fc_func_t cb, /* I - Callback function */
54 void *context) /* I - Context pointer for callback */
f228370c 55
22c9029b
MS
56{
57 struct stat fileinfo; /* File information */
58 char message[1024], /* Message string */
59 temp[1024], /* Parent directory filename */
60 *ptr; /* Pointer into parent directory */
61 _cups_fc_result_t result; /* Check result */
62
63
88f9aafc
MS
64 /*
65 * Does the filename contain a relative path ("../")?
66 */
67
68 if (strstr(filename, "../"))
69 {
70 /*
71 * Yes, fail it!
72 */
73
74 result = _CUPS_FILE_CHECK_RELATIVE_PATH;
75 goto finishup;
76 }
77
22c9029b
MS
78 /*
79 * Does the program even exist and is it accessible?
80 */
81
82 if (stat(filename, &fileinfo))
83 {
84 /*
85 * Nope...
86 */
87
88 result = _CUPS_FILE_CHECK_MISSING;
89 goto finishup;
90 }
91
92 /*
93 * Check the execute bit...
94 */
95
96 result = _CUPS_FILE_CHECK_OK;
97
98 switch (filetype)
99 {
100 case _CUPS_FILE_CHECK_DIRECTORY :
101 if (!S_ISDIR(fileinfo.st_mode))
102 result = _CUPS_FILE_CHECK_WRONG_TYPE;
103 break;
104
105 default :
106 if (!S_ISREG(fileinfo.st_mode))
107 result = _CUPS_FILE_CHECK_WRONG_TYPE;
108 break;
109 }
110
111 if (result)
112 goto finishup;
113
114 /*
115 * Are we doing root checks?
116 */
117
118 if (!dorootchecks)
119 {
120 /*
121 * Nope, so anything (else) goes...
122 */
123
124 goto finishup;
125 }
126
127 /*
128 * Verify permission of the file itself:
129 *
130 * 1. Must be owned by root
85dda01c 131 * 2. Must not be writable by group
22c9029b
MS
132 * 3. Must not be setuid
133 * 4. Must not be writable by others
134 */
135
136 if (fileinfo.st_uid || /* 1. Must be owned by root */
85dda01c 137 (fileinfo.st_mode & S_IWGRP) || /* 2. Must not be writable by group */
22c9029b
MS
138 (fileinfo.st_mode & S_ISUID) || /* 3. Must not be setuid */
139 (fileinfo.st_mode & S_IWOTH)) /* 4. Must not be writable by others */
140 {
141 result = _CUPS_FILE_CHECK_PERMISSIONS;
142 goto finishup;
143 }
144
145 if (filetype == _CUPS_FILE_CHECK_DIRECTORY ||
146 filetype == _CUPS_FILE_CHECK_FILE_ONLY)
147 goto finishup;
148
149 /*
150 * Now check the containing directory...
151 */
152
153 strlcpy(temp, filename, sizeof(temp));
154 if ((ptr = strrchr(temp, '/')) != NULL)
155 {
156 if (ptr == temp)
157 ptr[1] = '\0';
158 else
159 *ptr = '\0';
160 }
161
162 if (stat(temp, &fileinfo))
163 {
164 /*
165 * Doesn't exist?!?
166 */
167
168 result = _CUPS_FILE_CHECK_MISSING;
169 filetype = _CUPS_FILE_CHECK_DIRECTORY;
170 filename = temp;
171
172 goto finishup;
173 }
174
175 if (fileinfo.st_uid || /* 1. Must be owned by root */
85dda01c 176 (fileinfo.st_mode & S_IWGRP) || /* 2. Must not be writable by group */
22c9029b
MS
177 (fileinfo.st_mode & S_ISUID) || /* 3. Must not be setuid */
178 (fileinfo.st_mode & S_IWOTH)) /* 4. Must not be writable by others */
179 {
180 result = _CUPS_FILE_CHECK_PERMISSIONS;
181 filetype = _CUPS_FILE_CHECK_DIRECTORY;
182 filename = temp;
183 }
184
185 /*
186 * Common return point...
187 */
188
189 finishup:
190
191 if (cb)
192 {
193 cups_lang_t *lang = cupsLangDefault();
194 /* Localization information */
195
196 switch (result)
197 {
198 case _CUPS_FILE_CHECK_OK :
199 if (filetype == _CUPS_FILE_CHECK_DIRECTORY)
200 snprintf(message, sizeof(message),
201 _cupsLangString(lang, _("Directory \"%s\" permissions OK "
202 "(0%o/uid=%d/gid=%d).")),
203 filename, fileinfo.st_mode, (int)fileinfo.st_uid,
204 (int)fileinfo.st_gid);
205 else
206 snprintf(message, sizeof(message),
207 _cupsLangString(lang, _("File \"%s\" permissions OK "
208 "(0%o/uid=%d/gid=%d).")),
209 filename, fileinfo.st_mode, (int)fileinfo.st_uid,
210 (int)fileinfo.st_gid);
211 break;
212
213 case _CUPS_FILE_CHECK_MISSING :
214 if (filetype == _CUPS_FILE_CHECK_DIRECTORY)
215 snprintf(message, sizeof(message),
216 _cupsLangString(lang, _("Directory \"%s\" not available: "
217 "%s")),
218 filename, strerror(errno));
219 else
220 snprintf(message, sizeof(message),
221 _cupsLangString(lang, _("File \"%s\" not available: %s")),
222 filename, strerror(errno));
223 break;
224
225 case _CUPS_FILE_CHECK_PERMISSIONS :
226 if (filetype == _CUPS_FILE_CHECK_DIRECTORY)
227 snprintf(message, sizeof(message),
228 _cupsLangString(lang, _("Directory \"%s\" has insecure "
229 "permissions "
230 "(0%o/uid=%d/gid=%d).")),
231 filename, fileinfo.st_mode, (int)fileinfo.st_uid,
232 (int)fileinfo.st_gid);
233 else
234 snprintf(message, sizeof(message),
235 _cupsLangString(lang, _("File \"%s\" has insecure "
236 "permissions "
237 "(0%o/uid=%d/gid=%d).")),
238 filename, fileinfo.st_mode, (int)fileinfo.st_uid,
239 (int)fileinfo.st_gid);
240 break;
241
242 case _CUPS_FILE_CHECK_WRONG_TYPE :
243 if (filetype == _CUPS_FILE_CHECK_DIRECTORY)
244 snprintf(message, sizeof(message),
245 _cupsLangString(lang, _("Directory \"%s\" is a file.")),
246 filename);
247 else
248 snprintf(message, sizeof(message),
249 _cupsLangString(lang, _("File \"%s\" is a directory.")),
250 filename);
251 break;
88f9aafc
MS
252
253 case _CUPS_FILE_CHECK_RELATIVE_PATH :
254 if (filetype == _CUPS_FILE_CHECK_DIRECTORY)
255 snprintf(message, sizeof(message),
256 _cupsLangString(lang, _("Directory \"%s\" contains a "
257 "relative path.")), filename);
258 else
259 snprintf(message, sizeof(message),
260 _cupsLangString(lang, _("File \"%s\" contains a relative "
261 "path.")), filename);
262 break;
22c9029b
MS
263 }
264
265 (*cb)(context, result, message);
266 }
267
268 return (result);
269}
270
271
272/*
273 * '_cupsFileCheckFilter()' - Report file check results as CUPS filter messages.
274 */
275
276void
277_cupsFileCheckFilter(
278 void *context, /* I - Context pointer (unused) */
279 _cups_fc_result_t result, /* I - Result code */
280 const char *message) /* I - Message text */
281{
282 const char *prefix; /* Messaging prefix */
283
284
321d8d57
MS
285 (void)context;
286
22c9029b
MS
287 switch (result)
288 {
8d5b58f6 289 default :
22c9029b
MS
290 case _CUPS_FILE_CHECK_OK :
291 prefix = "DEBUG2";
292 break;
293
294 case _CUPS_FILE_CHECK_MISSING :
295 case _CUPS_FILE_CHECK_WRONG_TYPE :
296 prefix = "ERROR";
297 fputs("STATE: +cups-missing-filter-warning\n", stderr);
298 break;
299
300 case _CUPS_FILE_CHECK_PERMISSIONS :
88f9aafc 301 case _CUPS_FILE_CHECK_RELATIVE_PATH :
22c9029b
MS
302 prefix = "ERROR";
303 fputs("STATE: +cups-insecure-filter-warning\n", stderr);
304 break;
305 }
306
307 fprintf(stderr, "%s: %s\n", prefix, message);
308}
83e08001 309#endif /* !WIN32 */
22c9029b
MS
310
311
ef416fc2 312/*
313 * 'cupsFileClose()' - Close a CUPS file.
5a738aea 314 *
8072030b 315 * @since CUPS 1.2/macOS 10.5@
ef416fc2 316 */
317
318int /* O - 0 on success, -1 on error */
319cupsFileClose(cups_file_t *fp) /* I - CUPS file */
320{
321 int fd; /* File descriptor */
322 char mode; /* Open mode */
323 int status; /* Return status */
324
325
807315e6 326 DEBUG_printf(("cupsFileClose(fp=%p)", (void *)fp));
ef416fc2 327
328 /*
329 * Range check...
330 */
331
332 if (!fp)
333 return (-1);
334
335 /*
336 * Flush pending write data...
337 */
338
339 if (fp->mode == 'w')
340 status = cupsFileFlush(fp);
341 else
342 status = 0;
343
344#ifdef HAVE_LIBZ
345 if (fp->compressed && status >= 0)
346 {
347 if (fp->mode == 'r')
348 {
349 /*
350 * Free decompression data...
351 */
352
353 inflateEnd(&fp->stream);
354 }
355 else
356 {
357 /*
358 * Flush any remaining compressed data...
359 */
360
361 unsigned char trailer[8]; /* Trailer CRC and length */
362 int done; /* Done writing... */
363
364
365 fp->stream.avail_in = 0;
366
367 for (done = 0;;)
368 {
369 if (fp->stream.next_out > fp->cbuf)
370 {
371 if (cups_write(fp, (char *)fp->cbuf,
7e86f2f6 372 (size_t)(fp->stream.next_out - fp->cbuf)) < 0)
ef416fc2 373 status = -1;
374
375 fp->stream.next_out = fp->cbuf;
376 fp->stream.avail_out = sizeof(fp->cbuf);
377 }
378
379 if (done || status < 0)
380 break;
381
382 done = deflate(&fp->stream, Z_FINISH) == Z_STREAM_END &&
383 fp->stream.next_out == fp->cbuf;
384 }
385
386 /*
387 * Write the CRC and length...
388 */
389
7e86f2f6
MS
390 trailer[0] = (unsigned char)fp->crc;
391 trailer[1] = (unsigned char)(fp->crc >> 8);
392 trailer[2] = (unsigned char)(fp->crc >> 16);
393 trailer[3] = (unsigned char)(fp->crc >> 24);
394 trailer[4] = (unsigned char)fp->pos;
395 trailer[5] = (unsigned char)(fp->pos >> 8);
396 trailer[6] = (unsigned char)(fp->pos >> 16);
397 trailer[7] = (unsigned char)(fp->pos >> 24);
ef416fc2 398
399 if (cups_write(fp, (char *)trailer, 8) < 0)
400 status = -1;
401
402 /*
403 * Free all memory used by the compression stream...
404 */
405
406 deflateEnd(&(fp->stream));
407 }
408 }
409#endif /* HAVE_LIBZ */
410
411 /*
2a75f21b
MS
412 * If this is one of the cupsFileStdin/out/err files, return now and don't
413 * actually free memory or close (these last the life of the process...)
414 */
415
416 if (fp->is_stdio)
417 return (status);
418
419/*
ef416fc2 420 * Save the file descriptor we used and free memory...
421 */
422
2a75f21b
MS
423 fd = fp->fd;
424 mode = fp->mode;
ef416fc2 425
75bd9771
MS
426 if (fp->printf_buffer)
427 free(fp->printf_buffer);
428
ef416fc2 429 free(fp);
430
431 /*
432 * Close the file, returning the close status...
433 */
434
435 if (mode == 's')
436 {
87e98392 437 if (httpAddrClose(NULL, fd) < 0)
ef416fc2 438 status = -1;
439 }
2a75f21b
MS
440 else if (close(fd) < 0)
441 status = -1;
ef416fc2 442
443 return (status);
444}
445
446
447/*
448 * 'cupsFileCompression()' - Return whether a file is compressed.
5a738aea 449 *
8072030b 450 * @since CUPS 1.2/macOS 10.5@
ef416fc2 451 */
452
5a738aea 453int /* O - @code CUPS_FILE_NONE@ or @code CUPS_FILE_GZIP@ */
ef416fc2 454cupsFileCompression(cups_file_t *fp) /* I - CUPS file */
455{
80ca4592 456 return (fp ? fp->compressed : CUPS_FILE_NONE);
ef416fc2 457}
458
459
460/*
461 * 'cupsFileEOF()' - Return the end-of-file status.
5a738aea 462 *
8072030b 463 * @since CUPS 1.2/macOS 10.5@
ef416fc2 464 */
465
5a738aea 466int /* O - 1 on end of file, 0 otherwise */
ef416fc2 467cupsFileEOF(cups_file_t *fp) /* I - CUPS file */
468{
80ca4592 469 return (fp ? fp->eof : 1);
ef416fc2 470}
471
472
fa73b229 473/*
474 * 'cupsFileFind()' - Find a file using the specified path.
475 *
476 * This function allows the paths in the path string to be separated by
477 * colons (UNIX standard) or semicolons (Windows standard) and stores the
478 * result in the buffer supplied. If the file cannot be found in any of
5a738aea
MS
479 * the supplied paths, @code NULL@ is returned. A @code NULL@ path only
480 * matches the current directory.
481 *
8072030b 482 * @since CUPS 1.2/macOS 10.5@
fa73b229 483 */
484
5a738aea 485const char * /* O - Full path to file or @code NULL@ if not found */
fa73b229 486cupsFileFind(const char *filename, /* I - File to find */
487 const char *path, /* I - Colon/semicolon-separated path */
4400e98d 488 int executable, /* I - 1 = executable files, 0 = any file/dir */
489 char *buffer, /* I - Filename buffer */
fa73b229 490 int bufsize) /* I - Size of filename buffer */
491{
492 char *bufptr, /* Current position in buffer */
493 *bufend; /* End of buffer */
494
495
496 /*
497 * Range check input...
498 */
499
807315e6 500 DEBUG_printf(("cupsFileFind(filename=\"%s\", path=\"%s\", executable=%d, buffer=%p, bufsize=%d)", filename, path, executable, (void *)buffer, bufsize));
e07d4801 501
fa73b229 502 if (!filename || !buffer || bufsize < 2)
503 return (NULL);
504
505 if (!path)
506 {
507 /*
508 * No path, so check current directory...
509 */
510
511 if (!access(filename, 0))
512 {
07623986 513 strlcpy(buffer, filename, (size_t)bufsize);
fa73b229 514 return (buffer);
515 }
516 else
517 return (NULL);
518 }
519
520 /*
521 * Now check each path and return the first match...
522 */
523
524 bufend = buffer + bufsize - 1;
525 bufptr = buffer;
526
527 while (*path)
528 {
b86bc4cf 529#ifdef WIN32
530 if (*path == ';' || (*path == ':' && ((bufptr - buffer) > 1 || !isalpha(buffer[0] & 255))))
531#else
fa73b229 532 if (*path == ';' || *path == ':')
b86bc4cf 533#endif /* WIN32 */
fa73b229 534 {
535 if (bufptr > buffer && bufptr[-1] != '/' && bufptr < bufend)
536 *bufptr++ = '/';
537
07623986 538 strlcpy(bufptr, filename, (size_t)(bufend - bufptr));
fa73b229 539
4400e98d 540#ifdef WIN32
fa73b229 541 if (!access(buffer, 0))
4400e98d 542#else
543 if (!access(buffer, executable ? X_OK : 0))
544#endif /* WIN32 */
b86bc4cf 545 {
e07d4801 546 DEBUG_printf(("1cupsFileFind: Returning \"%s\"", buffer));
fa73b229 547 return (buffer);
b86bc4cf 548 }
fa73b229 549
550 bufptr = buffer;
551 }
552 else if (bufptr < bufend)
553 *bufptr++ = *path;
554
555 path ++;
556 }
557
558 /*
559 * Check the last path...
560 */
561
562 if (bufptr > buffer && bufptr[-1] != '/' && bufptr < bufend)
563 *bufptr++ = '/';
564
07623986 565 strlcpy(bufptr, filename, (size_t)(bufend - bufptr));
fa73b229 566
567 if (!access(buffer, 0))
b86bc4cf 568 {
e07d4801 569 DEBUG_printf(("1cupsFileFind: Returning \"%s\"", buffer));
fa73b229 570 return (buffer);
b86bc4cf 571 }
fa73b229 572 else
b86bc4cf 573 {
e07d4801 574 DEBUG_puts("1cupsFileFind: Returning NULL");
fa73b229 575 return (NULL);
b86bc4cf 576 }
fa73b229 577}
578
579
ef416fc2 580/*
581 * 'cupsFileFlush()' - Flush pending output.
5a738aea 582 *
8072030b 583 * @since CUPS 1.2/macOS 10.5@
ef416fc2 584 */
585
586int /* O - 0 on success, -1 on error */
587cupsFileFlush(cups_file_t *fp) /* I - CUPS file */
588{
2abf387c 589 ssize_t bytes; /* Bytes to write */
ef416fc2 590
591
807315e6 592 DEBUG_printf(("cupsFileFlush(fp=%p)", (void *)fp));
ef416fc2 593
594 /*
595 * Range check input...
596 */
597
598 if (!fp || fp->mode != 'w')
599 {
e07d4801 600 DEBUG_puts("1cupsFileFlush: Attempt to flush a read-only file...");
ef416fc2 601 return (-1);
602 }
603
b86bc4cf 604 bytes = (ssize_t)(fp->ptr - fp->buf);
ef416fc2 605
e07d4801 606 DEBUG_printf(("2cupsFileFlush: Flushing " CUPS_LLFMT " bytes...",
634763e8 607 CUPS_LLCAST bytes));
ecdc0628 608
ef416fc2 609 if (bytes > 0)
610 {
611#ifdef HAVE_LIBZ
612 if (fp->compressed)
7e86f2f6 613 bytes = cups_compress(fp, fp->buf, (size_t)bytes);
ef416fc2 614 else
615#endif /* HAVE_LIBZ */
7e86f2f6 616 bytes = cups_write(fp, fp->buf, (size_t)bytes);
ef416fc2 617
618 if (bytes < 0)
619 return (-1);
620
621 fp->ptr = fp->buf;
622 }
f14324a7 623
ef416fc2 624 return (0);
625}
626
627
628/*
629 * 'cupsFileGetChar()' - Get a single character from a file.
5a738aea 630 *
8072030b 631 * @since CUPS 1.2/macOS 10.5@
ef416fc2 632 */
633
5a738aea 634int /* O - Character or -1 on end of file */
ef416fc2 635cupsFileGetChar(cups_file_t *fp) /* I - CUPS file */
636{
637 /*
638 * Range check input...
639 */
640
807315e6 641 DEBUG_printf(("4cupsFileGetChar(fp=%p)", (void *)fp));
cbf9404a 642
ef416fc2 643 if (!fp || (fp->mode != 'r' && fp->mode != 's'))
b86bc4cf 644 {
f14324a7 645 DEBUG_puts("5cupsFileGetChar: Bad arguments!");
ef416fc2 646 return (-1);
b86bc4cf 647 }
ef416fc2 648
649 /*
650 * If the input buffer is empty, try to read more data...
651 */
652
807315e6 653 DEBUG_printf(("5cupsFileGetChar: fp->eof=%d, fp->ptr=%p, fp->end=%p", fp->eof, (void *)fp->ptr, (void *)fp->end));
cbf9404a 654
ef416fc2 655 if (fp->ptr >= fp->end)
cbf9404a 656 if (cups_fill(fp) <= 0)
b86bc4cf 657 {
f14324a7 658 DEBUG_puts("5cupsFileGetChar: Unable to fill buffer!");
ef416fc2 659 return (-1);
b86bc4cf 660 }
ef416fc2 661
662 /*
663 * Return the next character in the buffer...
664 */
665
f14324a7 666 DEBUG_printf(("5cupsFileGetChar: Returning %d...", *(fp->ptr) & 255));
b86bc4cf 667
634763e8
MS
668 fp->pos ++;
669
f14324a7 670 DEBUG_printf(("6cupsFileGetChar: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 671
ef416fc2 672 return (*(fp->ptr)++ & 255);
673}
674
675
676/*
22c9029b 677 * 'cupsFileGetConf()' - Get a line from a configuration file.
5a738aea 678 *
8072030b 679 * @since CUPS 1.2/macOS 10.5@
ef416fc2 680 */
681
5a738aea 682char * /* O - Line read or @code NULL@ on end of file or error */
ef416fc2 683cupsFileGetConf(cups_file_t *fp, /* I - CUPS file */
684 char *buf, /* O - String buffer */
685 size_t buflen, /* I - Size of string buffer */
686 char **value, /* O - Pointer to value */
687 int *linenum) /* IO - Current line number */
688{
689 char *ptr; /* Pointer into line */
690
691
692 /*
693 * Range check input...
694 */
695
e07d4801 696 DEBUG_printf(("2cupsFileGetConf(fp=%p, buf=%p, buflen=" CUPS_LLFMT
807315e6 697 ", value=%p, linenum=%p)", (void *)fp, (void *)buf, CUPS_LLCAST buflen, (void *)value, (void *)linenum));
634763e8 698
ef416fc2 699 if (!fp || (fp->mode != 'r' && fp->mode != 's') ||
700 !buf || buflen < 2 || !value)
701 {
702 if (value)
703 *value = NULL;
704
705 return (NULL);
706 }
707
708 /*
709 * Read the next non-comment line...
710 */
711
712 *value = NULL;
f7deaa1a 713
ef416fc2 714 while (cupsFileGets(fp, buf, buflen))
715 {
716 (*linenum) ++;
717
718 /*
719 * Strip any comments...
720 */
721
722 if ((ptr = strchr(buf, '#')) != NULL)
723 {
f7deaa1a 724 if (ptr > buf && ptr[-1] == '\\')
ef416fc2 725 {
f7deaa1a 726 // Unquote the #...
727 _cups_strcpy(ptr - 1, ptr);
ef416fc2 728 }
f7deaa1a 729 else
730 {
731 // Strip the comment and any trailing whitespace...
732 while (ptr > buf)
733 {
7cf5915e 734 if (!_cups_isspace(ptr[-1]))
f7deaa1a 735 break;
736
737 ptr --;
738 }
ef416fc2 739
f7deaa1a 740 *ptr = '\0';
741 }
ef416fc2 742 }
743
744 /*
745 * Strip leading whitespace...
746 */
747
7cf5915e 748 for (ptr = buf; _cups_isspace(*ptr); ptr ++);
ef416fc2 749
750 if (ptr > buf)
751 _cups_strcpy(buf, ptr);
752
753 /*
754 * See if there is anything left...
755 */
756
757 if (buf[0])
758 {
759 /*
760 * Yes, grab any value and return...
761 */
762
763 for (ptr = buf; *ptr; ptr ++)
7cf5915e 764 if (_cups_isspace(*ptr))
ef416fc2 765 break;
766
767 if (*ptr)
768 {
769 /*
770 * Have a value, skip any other spaces...
771 */
772
7cf5915e 773 while (_cups_isspace(*ptr))
ef416fc2 774 *ptr++ = '\0';
775
776 if (*ptr)
777 *value = ptr;
778
779 /*
780 * Strip trailing whitespace and > for lines that begin with <...
781 */
782
783 ptr += strlen(ptr) - 1;
784
785 if (buf[0] == '<' && *ptr == '>')
786 *ptr-- = '\0';
787 else if (buf[0] == '<' && *ptr != '>')
788 {
789 /*
790 * Syntax error...
791 */
792
793 *value = NULL;
794 return (buf);
795 }
796
7cf5915e 797 while (ptr > *value && _cups_isspace(*ptr))
ef416fc2 798 *ptr-- = '\0';
799 }
800
801 /*
802 * Return the line...
803 */
804
805 return (buf);
806 }
807 }
808
809 return (NULL);
810}
811
812
80ca4592 813/*
814 * 'cupsFileGetLine()' - Get a CR and/or LF-terminated line that may
815 * contain binary data.
816 *
5a738aea
MS
817 * This function differs from @link cupsFileGets@ in that the trailing CR
818 * and LF are preserved, as is any binary data on the line. The buffer is
819 * nul-terminated, however you should use the returned length to determine
80ca4592 820 * the number of bytes on the line.
5a738aea 821 *
8072030b 822 * @since CUPS 1.2/macOS 10.5@
80ca4592 823 */
824
5a738aea 825size_t /* O - Number of bytes on line or 0 on end of file */
80ca4592 826cupsFileGetLine(cups_file_t *fp, /* I - File to read from */
827 char *buf, /* I - Buffer */
828 size_t buflen) /* I - Size of buffer */
829{
830 int ch; /* Character from file */
831 char *ptr, /* Current position in line buffer */
832 *end; /* End of line buffer */
833
834
835 /*
836 * Range check input...
837 */
838
807315e6 839 DEBUG_printf(("2cupsFileGetLine(fp=%p, buf=%p, buflen=" CUPS_LLFMT ")", (void *)fp, (void *)buf, CUPS_LLCAST buflen));
634763e8 840
80ca4592 841 if (!fp || (fp->mode != 'r' && fp->mode != 's') || !buf || buflen < 3)
842 return (0);
843
844 /*
845 * Now loop until we have a valid line...
846 */
847
848 for (ptr = buf, end = buf + buflen - 2; ptr < end ;)
849 {
850 if (fp->ptr >= fp->end)
851 if (cups_fill(fp) <= 0)
852 break;
853
854 *ptr++ = ch = *(fp->ptr)++;
634763e8 855 fp->pos ++;
80ca4592 856
857 if (ch == '\r')
858 {
859 /*
860 * Check for CR LF...
861 */
862
863 if (fp->ptr >= fp->end)
864 if (cups_fill(fp) <= 0)
865 break;
866
867 if (*(fp->ptr) == '\n')
634763e8 868 {
80ca4592 869 *ptr++ = *(fp->ptr)++;
634763e8
MS
870 fp->pos ++;
871 }
80ca4592 872
873 break;
874 }
875 else if (ch == '\n')
876 {
877 /*
878 * Line feed ends a line...
879 */
880
881 break;
882 }
883 }
884
885 *ptr = '\0';
886
e07d4801 887 DEBUG_printf(("4cupsFileGetLine: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 888
7e86f2f6 889 return ((size_t)(ptr - buf));
80ca4592 890}
891
892
ef416fc2 893/*
894 * 'cupsFileGets()' - Get a CR and/or LF-terminated line.
5a738aea 895 *
8072030b 896 * @since CUPS 1.2/macOS 10.5@
ef416fc2 897 */
898
5a738aea 899char * /* O - Line read or @code NULL@ on end of file or error */
ef416fc2 900cupsFileGets(cups_file_t *fp, /* I - CUPS file */
901 char *buf, /* O - String buffer */
902 size_t buflen) /* I - Size of string buffer */
903{
904 int ch; /* Character from file */
905 char *ptr, /* Current position in line buffer */
906 *end; /* End of line buffer */
907
908
909 /*
910 * Range check input...
911 */
912
807315e6 913 DEBUG_printf(("2cupsFileGets(fp=%p, buf=%p, buflen=" CUPS_LLFMT ")", (void *)fp, (void *)buf, CUPS_LLCAST buflen));
634763e8 914
ef416fc2 915 if (!fp || (fp->mode != 'r' && fp->mode != 's') || !buf || buflen < 2)
916 return (NULL);
917
918 /*
919 * Now loop until we have a valid line...
920 */
921
922 for (ptr = buf, end = buf + buflen - 1; ptr < end ;)
923 {
924 if (fp->ptr >= fp->end)
925 if (cups_fill(fp) <= 0)
926 {
927 if (ptr == buf)
928 return (NULL);
929 else
930 break;
931 }
932
933 ch = *(fp->ptr)++;
634763e8 934 fp->pos ++;
ef416fc2 935
936 if (ch == '\r')
937 {
938 /*
939 * Check for CR LF...
940 */
941
942 if (fp->ptr >= fp->end)
943 if (cups_fill(fp) <= 0)
944 break;
945
946 if (*(fp->ptr) == '\n')
634763e8
MS
947 {
948 fp->ptr ++;
949 fp->pos ++;
950 }
ef416fc2 951
952 break;
953 }
954 else if (ch == '\n')
955 {
956 /*
957 * Line feed ends a line...
958 */
959
960 break;
961 }
962 else
7e86f2f6 963 *ptr++ = (char)ch;
ef416fc2 964 }
965
966 *ptr = '\0';
967
e07d4801 968 DEBUG_printf(("4cupsFileGets: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 969
ef416fc2 970 return (buf);
971}
972
973
974/*
975 * 'cupsFileLock()' - Temporarily lock access to a file.
5a738aea 976 *
8072030b 977 * @since CUPS 1.2/macOS 10.5@
ef416fc2 978 */
979
980int /* O - 0 on success, -1 on error */
5a738aea 981cupsFileLock(cups_file_t *fp, /* I - CUPS file */
ef416fc2 982 int block) /* I - 1 to wait for the lock, 0 to fail right away */
983{
984 /*
985 * Range check...
986 */
987
988 if (!fp || fp->mode == 's')
989 return (-1);
990
991 /*
992 * Try the lock...
993 */
994
995#ifdef WIN32
536bc2c6 996 return (_locking(fp->fd, block ? _LK_LOCK : _LK_NBLCK, 0));
ef416fc2 997#else
998 return (lockf(fp->fd, block ? F_LOCK : F_TLOCK, 0));
999#endif /* WIN32 */
1000}
1001
1002
1003/*
1004 * 'cupsFileNumber()' - Return the file descriptor associated with a CUPS file.
5a738aea 1005 *
8072030b 1006 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1007 */
1008
1009int /* O - File descriptor */
1010cupsFileNumber(cups_file_t *fp) /* I - CUPS file */
1011{
5a738aea
MS
1012 if (fp)
1013 return (fp->fd);
1014 else
1015 return (-1);
ef416fc2 1016}
1017
1018
1019/*
1020 * 'cupsFileOpen()' - Open a CUPS file.
5a738aea
MS
1021 *
1022 * The "mode" parameter can be "r" to read, "w" to write, overwriting any
1023 * existing file, "a" to append to an existing file or create a new file,
1024 * or "s" to open a socket connection.
1025 *
634763e8
MS
1026 * When opening for writing ("w"), an optional number from 1 to 9 can be
1027 * supplied which enables Flate compression of the file. Compression is
1028 * not supported for the "a" (append) mode.
5a738aea
MS
1029 *
1030 * When opening a socket connection, the filename is a string of the form
1031 * "address:port" or "hostname:port". The socket will make an IPv4 or IPv6
1032 * connection as needed, generally preferring IPv6 connections when there is
1033 * a choice.
1034 *
8072030b 1035 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1036 */
1037
5a738aea 1038cups_file_t * /* O - CUPS file or @code NULL@ if the file or socket cannot be opened */
ef416fc2 1039cupsFileOpen(const char *filename, /* I - Name of file */
1040 const char *mode) /* I - Open mode */
1041{
1042 cups_file_t *fp; /* New CUPS file */
1043 int fd; /* File descriptor */
1044 char hostname[1024], /* Hostname */
1045 *portname; /* Port "name" (number or service) */
1046 http_addrlist_t *addrlist; /* Host address list */
1047
1048
e07d4801 1049 DEBUG_printf(("cupsFileOpen(filename=\"%s\", mode=\"%s\")", filename,
b423cd4c 1050 mode));
1051
ef416fc2 1052 /*
1053 * Range check input...
1054 */
1055
1056 if (!filename || !mode ||
634763e8
MS
1057 (*mode != 'r' && *mode != 'w' && *mode != 'a' && *mode != 's') ||
1058 (*mode == 'a' && isdigit(mode[1] & 255)))
ef416fc2 1059 return (NULL);
1060
1061 /*
1062 * Open the file...
1063 */
1064
1065 switch (*mode)
1066 {
1067 case 'a' : /* Append file */
c7017ecc
MS
1068 fd = cups_open(filename,
1069 O_RDWR | O_CREAT | O_APPEND | O_LARGEFILE | O_BINARY);
ef416fc2 1070 break;
1071
1072 case 'r' : /* Read file */
b86bc4cf 1073 fd = open(filename, O_RDONLY | O_LARGEFILE | O_BINARY, 0);
ef416fc2 1074 break;
1075
1076 case 'w' : /* Write file */
c7017ecc
MS
1077 fd = cups_open(filename, O_WRONLY | O_LARGEFILE | O_BINARY);
1078 if (fd < 0 && errno == ENOENT)
1079 {
1080 fd = cups_open(filename,
1081 O_WRONLY | O_CREAT | O_EXCL | O_LARGEFILE | O_BINARY);
1082 if (fd < 0 && errno == EEXIST)
1083 fd = cups_open(filename, O_WRONLY | O_LARGEFILE | O_BINARY);
1084 }
1085
1086 if (fd >= 0)
1087#ifdef WIN32
1088 _chsize(fd, 0);
1089#else
1090 ftruncate(fd, 0);
1091#endif /* WIN32 */
ef416fc2 1092 break;
1093
1094 case 's' : /* Read/write socket */
1095 strlcpy(hostname, filename, sizeof(hostname));
1096 if ((portname = strrchr(hostname, ':')) != NULL)
1097 *portname++ = '\0';
1098 else
1099 return (NULL);
1100
1101 /*
1102 * Lookup the hostname and service...
1103 */
1104
1105 if ((addrlist = httpAddrGetList(hostname, AF_UNSPEC, portname)) == NULL)
1106 return (NULL);
1107
1108 /*
1109 * Connect to the server...
1110 */
1111
1112 if (!httpAddrConnect(addrlist, &fd))
1113 {
1114 httpAddrFreeList(addrlist);
1115 return (NULL);
1116 }
1117
1118 httpAddrFreeList(addrlist);
1119 break;
1120
1121 default : /* Remove bogus compiler warning... */
1122 return (NULL);
1123 }
1124
1125 if (fd < 0)
1126 return (NULL);
1127
1128 /*
1129 * Create the CUPS file structure...
1130 */
1131
1132 if ((fp = cupsFileOpenFd(fd, mode)) == NULL)
1133 {
1134 if (*mode == 's')
87e98392 1135 httpAddrClose(NULL, fd);
ef416fc2 1136 else
1137 close(fd);
1138 }
1139
1140 /*
1141 * Return it...
1142 */
1143
1144 return (fp);
1145}
1146
1147/*
1148 * 'cupsFileOpenFd()' - Open a CUPS file using a file descriptor.
5a738aea 1149 *
634763e8
MS
1150 * The "mode" parameter can be "r" to read, "w" to write, "a" to append,
1151 * or "s" to treat the file descriptor as a bidirectional socket connection.
5a738aea 1152 *
634763e8
MS
1153 * When opening for writing ("w"), an optional number from 1 to 9 can be
1154 * supplied which enables Flate compression of the file. Compression is
1155 * not supported for the "a" (append) mode.
5a738aea 1156 *
8072030b 1157 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1158 */
1159
5a738aea 1160cups_file_t * /* O - CUPS file or @code NULL@ if the file could not be opened */
ef416fc2 1161cupsFileOpenFd(int fd, /* I - File descriptor */
1162 const char *mode) /* I - Open mode */
1163{
1164 cups_file_t *fp; /* New CUPS file */
1165
1166
e07d4801 1167 DEBUG_printf(("cupsFileOpenFd(fd=%d, mode=\"%s\")", fd, mode));
b423cd4c 1168
ef416fc2 1169 /*
1170 * Range check input...
1171 */
1172
1173 if (fd < 0 || !mode ||
634763e8
MS
1174 (*mode != 'r' && *mode != 'w' && *mode != 'a' && *mode != 's') ||
1175 (*mode == 'a' && isdigit(mode[1] & 255)))
ef416fc2 1176 return (NULL);
1177
1178 /*
1179 * Allocate memory...
1180 */
1181
1182 if ((fp = calloc(1, sizeof(cups_file_t))) == NULL)
1183 return (NULL);
1184
1185 /*
1186 * Open the file...
1187 */
1188
1189 fp->fd = fd;
1190
1191 switch (*mode)
1192 {
ef416fc2 1193 case 'a' :
634763e8
MS
1194 fp->pos = lseek(fd, 0, SEEK_END);
1195
1196 case 'w' :
ef416fc2 1197 fp->mode = 'w';
1198 fp->ptr = fp->buf;
1199 fp->end = fp->buf + sizeof(fp->buf);
1200
1201#ifdef HAVE_LIBZ
1202 if (mode[1] >= '1' && mode[1] <= '9')
1203 {
1204 /*
1205 * Open a compressed stream, so write the standard gzip file
1206 * header...
1207 */
1208
1209 unsigned char header[10]; /* gzip file header */
1210 time_t curtime; /* Current time */
1211
1212
1213 curtime = time(NULL);
1214 header[0] = 0x1f;
1215 header[1] = 0x8b;
1216 header[2] = Z_DEFLATED;
1217 header[3] = 0;
7e86f2f6
MS
1218 header[4] = (unsigned char)curtime;
1219 header[5] = (unsigned char)(curtime >> 8);
1220 header[6] = (unsigned char)(curtime >> 16);
1221 header[7] = (unsigned char)(curtime >> 24);
ef416fc2 1222 header[8] = 0;
1223 header[9] = 0x03;
1224
1225 cups_write(fp, (char *)header, 10);
1226
1227 /*
1228 * Initialize the compressor...
1229 */
1230
1231 deflateInit2(&(fp->stream), mode[1] - '0', Z_DEFLATED, -15, 8,
1232 Z_DEFAULT_STRATEGY);
1233
1234 fp->stream.next_out = fp->cbuf;
1235 fp->stream.avail_out = sizeof(fp->cbuf);
1236 fp->compressed = 1;
1237 fp->crc = crc32(0L, Z_NULL, 0);
1238 }
1239#endif /* HAVE_LIBZ */
1240 break;
1241
1242 case 'r' :
1243 fp->mode = 'r';
1244 break;
1245
1246 case 's' :
1247 fp->mode = 's';
1248 break;
1249
1250 default : /* Remove bogus compiler warning... */
1251 return (NULL);
1252 }
1253
1254 /*
1255 * Don't pass this file to child processes...
1256 */
1257
1258#ifndef WIN32
1259 fcntl(fp->fd, F_SETFD, fcntl(fp->fd, F_GETFD) | FD_CLOEXEC);
1260#endif /* !WIN32 */
1261
1262 return (fp);
1263}
1264
1265
1266/*
1267 * 'cupsFilePeekChar()' - Peek at the next character from a file.
5a738aea 1268 *
8072030b 1269 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1270 */
1271
5a738aea 1272int /* O - Character or -1 on end of file */
ef416fc2 1273cupsFilePeekChar(cups_file_t *fp) /* I - CUPS file */
1274{
1275 /*
1276 * Range check input...
1277 */
1278
1279 if (!fp || (fp->mode != 'r' && fp->mode != 's'))
1280 return (-1);
1281
1282 /*
1283 * If the input buffer is empty, try to read more data...
1284 */
1285
1286 if (fp->ptr >= fp->end)
cbf9404a 1287 if (cups_fill(fp) <= 0)
ef416fc2 1288 return (-1);
1289
1290 /*
1291 * Return the next character in the buffer...
1292 */
1293
1294 return (*(fp->ptr) & 255);
1295}
1296
1297
1298/*
1299 * 'cupsFilePrintf()' - Write a formatted string.
5a738aea 1300 *
8072030b 1301 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1302 */
1303
5a738aea 1304int /* O - Number of bytes written or -1 on error */
ef416fc2 1305cupsFilePrintf(cups_file_t *fp, /* I - CUPS file */
1306 const char *format, /* I - Printf-style format string */
1307 ...) /* I - Additional args as necessary */
1308{
1309 va_list ap; /* Argument list */
2abf387c 1310 ssize_t bytes; /* Formatted size */
ecdc0628 1311
ef416fc2 1312
807315e6 1313 DEBUG_printf(("2cupsFilePrintf(fp=%p, format=\"%s\", ...)", (void *)fp, format));
ef416fc2 1314
1315 if (!fp || !format || (fp->mode != 'w' && fp->mode != 's'))
1316 return (-1);
1317
75bd9771
MS
1318 if (!fp->printf_buffer)
1319 {
1320 /*
1321 * Start with an 1k printf buffer...
1322 */
1323
1324 if ((fp->printf_buffer = malloc(1024)) == NULL)
1325 return (-1);
1326
1327 fp->printf_size = 1024;
1328 }
1329
ef416fc2 1330 va_start(ap, format);
75bd9771 1331 bytes = vsnprintf(fp->printf_buffer, fp->printf_size, format, ap);
ef416fc2 1332 va_end(ap);
1333
536bc2c6 1334 if (bytes >= (ssize_t)fp->printf_size)
75bd9771
MS
1335 {
1336 /*
1337 * Expand the printf buffer...
1338 */
1339
1340 char *temp; /* Temporary buffer pointer */
1341
1342
1343 if (bytes > 65535)
1344 return (-1);
1345
7e86f2f6 1346 if ((temp = realloc(fp->printf_buffer, (size_t)(bytes + 1))) == NULL)
75bd9771
MS
1347 return (-1);
1348
1349 fp->printf_buffer = temp;
7e86f2f6 1350 fp->printf_size = (size_t)(bytes + 1);
75bd9771
MS
1351
1352 va_start(ap, format);
1353 bytes = vsnprintf(fp->printf_buffer, fp->printf_size, format, ap);
1354 va_end(ap);
1355 }
ecdc0628 1356
ef416fc2 1357 if (fp->mode == 's')
634763e8 1358 {
7e86f2f6 1359 if (cups_write(fp, fp->printf_buffer, (size_t)bytes) < 0)
634763e8
MS
1360 return (-1);
1361
1362 fp->pos += bytes;
1363
e07d4801 1364 DEBUG_printf(("4cupsFilePrintf: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 1365
7e86f2f6 1366 return ((int)bytes);
634763e8 1367 }
ef416fc2 1368
1369 if ((fp->ptr + bytes) > fp->end)
1370 if (cupsFileFlush(fp))
1371 return (-1);
1372
1373 fp->pos += bytes;
1374
e07d4801 1375 DEBUG_printf(("4cupsFilePrintf: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 1376
7e86f2f6 1377 if ((size_t)bytes > sizeof(fp->buf))
ef416fc2 1378 {
1379#ifdef HAVE_LIBZ
1380 if (fp->compressed)
7e86f2f6 1381 return ((int)cups_compress(fp, fp->printf_buffer, (size_t)bytes));
ef416fc2 1382 else
1383#endif /* HAVE_LIBZ */
7e86f2f6 1384 return ((int)cups_write(fp, fp->printf_buffer, (size_t)bytes));
ef416fc2 1385 }
1386 else
1387 {
07623986 1388 memcpy(fp->ptr, fp->printf_buffer, (size_t)bytes);
ef416fc2 1389 fp->ptr += bytes;
35fc2243
MS
1390
1391 if (fp->is_stdio && cupsFileFlush(fp))
1392 return (-1);
1393 else
1394 return ((int)bytes);
ef416fc2 1395 }
1396}
1397
1398
1399/*
1400 * 'cupsFilePutChar()' - Write a character.
5a738aea 1401 *
8072030b 1402 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1403 */
1404
1405int /* O - 0 on success, -1 on error */
1406cupsFilePutChar(cups_file_t *fp, /* I - CUPS file */
1407 int c) /* I - Character to write */
1408{
1409 /*
1410 * Range check input...
1411 */
1412
1413 if (!fp || (fp->mode != 'w' && fp->mode != 's'))
1414 return (-1);
1415
1416 if (fp->mode == 's')
1417 {
1418 /*
1419 * Send character immediately over socket...
1420 */
1421
1422 char ch; /* Output character */
1423
1424
7e86f2f6 1425 ch = (char)c;
ef416fc2 1426
1427 if (send(fp->fd, &ch, 1, 0) < 1)
1428 return (-1);
1429 }
1430 else
1431 {
1432 /*
1433 * Buffer it up...
1434 */
1435
1436 if (fp->ptr >= fp->end)
1437 if (cupsFileFlush(fp))
1438 return (-1);
1439
7e86f2f6 1440 *(fp->ptr) ++ = (char)c;
ef416fc2 1441 }
1442
1443 fp->pos ++;
1444
e07d4801 1445 DEBUG_printf(("4cupsFilePutChar: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 1446
ef416fc2 1447 return (0);
1448}
1449
1450
58dc1933
MS
1451/*
1452 * 'cupsFilePutConf()' - Write a configuration line.
1453 *
1454 * This function handles any comment escaping of the value.
1455 *
8072030b 1456 * @since CUPS 1.4/macOS 10.6@
58dc1933
MS
1457 */
1458
1459ssize_t /* O - Number of bytes written or -1 on error */
1460cupsFilePutConf(cups_file_t *fp, /* I - CUPS file */
1461 const char *directive, /* I - Directive */
1462 const char *value) /* I - Value */
1463{
1464 ssize_t bytes, /* Number of bytes written */
1465 temp; /* Temporary byte count */
1466 const char *ptr; /* Pointer into value */
1467
1468
1469 if (!fp || !directive || !*directive)
1470 return (-1);
1471
1472 if ((bytes = cupsFilePuts(fp, directive)) < 0)
1473 return (-1);
1474
1475 if (cupsFilePutChar(fp, ' ') < 0)
1476 return (-1);
1477 bytes ++;
1478
1479 if (value && *value)
1480 {
1481 if ((ptr = strchr(value, '#')) != NULL)
1482 {
1483 /*
1484 * Need to quote the first # in the info string...
1485 */
1486
7e86f2f6 1487 if ((temp = cupsFileWrite(fp, value, (size_t)(ptr - value))) < 0)
58dc1933
MS
1488 return (-1);
1489 bytes += temp;
1490
1491 if (cupsFilePutChar(fp, '\\') < 0)
1492 return (-1);
1493 bytes ++;
1494
1495 if ((temp = cupsFilePuts(fp, ptr)) < 0)
1496 return (-1);
1497 bytes += temp;
1498 }
1499 else if ((temp = cupsFilePuts(fp, value)) < 0)
1500 return (-1);
1501 else
1502 bytes += temp;
1503 }
1504
1505 if (cupsFilePutChar(fp, '\n') < 0)
1506 return (-1);
1507 else
1508 return (bytes + 1);
1509}
1510
1511
ef416fc2 1512/*
1513 * 'cupsFilePuts()' - Write a string.
5a738aea
MS
1514 *
1515 * Like the @code fputs@ function, no newline is appended to the string.
1516 *
8072030b 1517 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1518 */
1519
5a738aea 1520int /* O - Number of bytes written or -1 on error */
ef416fc2 1521cupsFilePuts(cups_file_t *fp, /* I - CUPS file */
1522 const char *s) /* I - String to write */
1523{
2abf387c 1524 ssize_t bytes; /* Bytes to write */
ef416fc2 1525
1526
1527 /*
1528 * Range check input...
1529 */
1530
1531 if (!fp || !s || (fp->mode != 'w' && fp->mode != 's'))
1532 return (-1);
1533
1534 /*
1535 * Write the string...
1536 */
1537
7e86f2f6 1538 bytes = (ssize_t)strlen(s);
ef416fc2 1539
1540 if (fp->mode == 's')
1541 {
7e86f2f6 1542 if (cups_write(fp, s, (size_t)bytes) < 0)
ef416fc2 1543 return (-1);
1544
1545 fp->pos += bytes;
1546
e07d4801 1547 DEBUG_printf(("4cupsFilePuts: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 1548
7e86f2f6 1549 return ((int)bytes);
ef416fc2 1550 }
1551
1552 if ((fp->ptr + bytes) > fp->end)
1553 if (cupsFileFlush(fp))
1554 return (-1);
1555
1556 fp->pos += bytes;
1557
e07d4801 1558 DEBUG_printf(("4cupsFilePuts: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 1559
7e86f2f6 1560 if ((size_t)bytes > sizeof(fp->buf))
ef416fc2 1561 {
1562#ifdef HAVE_LIBZ
1563 if (fp->compressed)
7e86f2f6 1564 return ((int)cups_compress(fp, s, (size_t)bytes));
ef416fc2 1565 else
1566#endif /* HAVE_LIBZ */
7e86f2f6 1567 return ((int)cups_write(fp, s, (size_t)bytes));
ef416fc2 1568 }
1569 else
1570 {
07623986 1571 memcpy(fp->ptr, s, (size_t)bytes);
ef416fc2 1572 fp->ptr += bytes;
35fc2243
MS
1573
1574 if (fp->is_stdio && cupsFileFlush(fp))
1575 return (-1);
1576 else
1577 return ((int)bytes);
ef416fc2 1578 }
1579}
1580
1581
1582/*
1583 * 'cupsFileRead()' - Read from a file.
5a738aea 1584 *
8072030b 1585 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1586 */
1587
5a738aea 1588ssize_t /* O - Number of bytes read or -1 on error */
ef416fc2 1589cupsFileRead(cups_file_t *fp, /* I - CUPS file */
1590 char *buf, /* O - Buffer */
1591 size_t bytes) /* I - Number of bytes to read */
1592{
2abf387c 1593 size_t total; /* Total bytes read */
1594 ssize_t count; /* Bytes read */
ef416fc2 1595
1596
807315e6 1597 DEBUG_printf(("2cupsFileRead(fp=%p, buf=%p, bytes=" CUPS_LLFMT ")", (void *)fp, (void *)buf, CUPS_LLCAST bytes));
ef416fc2 1598
1599 /*
1600 * Range check input...
1601 */
1602
82f97232 1603 if (!fp || !buf || (fp->mode != 'r' && fp->mode != 's'))
ef416fc2 1604 return (-1);
1605
1606 if (bytes == 0)
1607 return (0);
1608
1609 /*
1610 * Loop until all bytes are read...
1611 */
1612
1613 total = 0;
1614 while (bytes > 0)
1615 {
1616 if (fp->ptr >= fp->end)
1617 if (cups_fill(fp) <= 0)
1618 {
e07d4801
MS
1619 DEBUG_printf(("4cupsFileRead: cups_fill() returned -1, total="
1620 CUPS_LLFMT, CUPS_LLCAST total));
ef416fc2 1621
1622 if (total > 0)
b86bc4cf 1623 return ((ssize_t)total);
ef416fc2 1624 else
1625 return (-1);
1626 }
1627
b86bc4cf 1628 count = (ssize_t)(fp->end - fp->ptr);
1629 if (count > (ssize_t)bytes)
1630 count = (ssize_t)bytes;
ef416fc2 1631
07623986 1632 memcpy(buf, fp->ptr,(size_t) count);
ef416fc2 1633 fp->ptr += count;
634763e8
MS
1634 fp->pos += count;
1635
e07d4801 1636 DEBUG_printf(("4cupsFileRead: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
ef416fc2 1637
1638 /*
1639 * Update the counts for the last read...
1640 */
1641
7e86f2f6
MS
1642 bytes -= (size_t)count;
1643 total += (size_t)count;
ef416fc2 1644 buf += count;
1645 }
1646
1647 /*
1648 * Return the total number of bytes read...
1649 */
1650
e07d4801 1651 DEBUG_printf(("3cupsFileRead: total=" CUPS_LLFMT, CUPS_LLCAST total));
ef416fc2 1652
b86bc4cf 1653 return ((ssize_t)total);
ef416fc2 1654}
1655
1656
1657/*
5a738aea
MS
1658 * 'cupsFileRewind()' - Set the current file position to the beginning of the
1659 * file.
1660 *
8072030b 1661 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1662 */
1663
5a738aea 1664off_t /* O - New file position or -1 on error */
ef416fc2 1665cupsFileRewind(cups_file_t *fp) /* I - CUPS file */
1666{
80ca4592 1667 /*
1668 * Range check input...
1669 */
1670
807315e6 1671 DEBUG_printf(("cupsFileRewind(fp=%p)", (void *)fp));
e07d4801 1672 DEBUG_printf(("2cupsFileRewind: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 1673
80ca4592 1674 if (!fp || fp->mode != 'r')
1675 return (-1);
1676
1677 /*
1678 * Handle special cases...
1679 */
1680
634763e8 1681 if (fp->bufpos == 0)
80ca4592 1682 {
1683 /*
1684 * No seeking necessary...
1685 */
1686
634763e8
MS
1687 fp->pos = 0;
1688
80ca4592 1689 if (fp->ptr)
1690 {
1691 fp->ptr = fp->buf;
1692 fp->eof = 0;
1693 }
1694
e07d4801 1695 DEBUG_printf(("2cupsFileRewind: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 1696
80ca4592 1697 return (0);
1698 }
1699
1700 /*
1701 * Otherwise, seek in the file and cleanup any compression buffers...
1702 */
1703
1704#ifdef HAVE_LIBZ
1705 if (fp->compressed)
1706 {
1707 inflateEnd(&fp->stream);
1708 fp->compressed = 0;
1709 }
1710#endif /* HAVE_LIBZ */
1711
c9fc04c6
MS
1712 if (lseek(fp->fd, 0, SEEK_SET))
1713 {
e07d4801 1714 DEBUG_printf(("1cupsFileRewind: lseek failed: %s", strerror(errno)));
c9fc04c6
MS
1715 return (-1);
1716 }
80ca4592 1717
634763e8
MS
1718 fp->bufpos = 0;
1719 fp->pos = 0;
1720 fp->ptr = NULL;
1721 fp->end = NULL;
1722 fp->eof = 0;
1723
e07d4801 1724 DEBUG_printf(("2cupsFileRewind: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
80ca4592 1725
1726 return (0);
ef416fc2 1727}
1728
1729
1730/*
1731 * 'cupsFileSeek()' - Seek in a file.
5a738aea 1732 *
8072030b 1733 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1734 */
1735
5a738aea 1736off_t /* O - New file position or -1 on error */
ef416fc2 1737cupsFileSeek(cups_file_t *fp, /* I - CUPS file */
1738 off_t pos) /* I - Position in file */
1739{
2abf387c 1740 ssize_t bytes; /* Number bytes in buffer */
ef416fc2 1741
1742
807315e6 1743 DEBUG_printf(("cupsFileSeek(fp=%p, pos=" CUPS_LLFMT ")", (void *)fp, CUPS_LLCAST pos));
e07d4801 1744 DEBUG_printf(("2cupsFileSeek: fp->pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
807315e6 1745 DEBUG_printf(("2cupsFileSeek: fp->ptr=%p, fp->end=%p", (void *)fp->ptr, (void *)fp->end));
ef416fc2 1746
1747 /*
1748 * Range check input...
1749 */
1750
1751 if (!fp || pos < 0 || fp->mode != 'r')
1752 return (-1);
1753
80ca4592 1754 /*
1755 * Handle special cases...
1756 */
1757
1758 if (pos == 0)
1759 return (cupsFileRewind(fp));
1760
634763e8 1761 if (fp->ptr)
b423cd4c 1762 {
634763e8 1763 bytes = (ssize_t)(fp->end - fp->buf);
b423cd4c 1764
e07d4801 1765 DEBUG_printf(("2cupsFileSeek: bytes=" CUPS_LLFMT, CUPS_LLCAST bytes));
c168a833 1766
634763e8 1767 if (pos >= fp->bufpos && pos < (fp->bufpos + bytes))
b423cd4c 1768 {
634763e8
MS
1769 /*
1770 * No seeking necessary...
1771 */
1772
1773 fp->pos = pos;
1774 fp->ptr = fp->buf + pos - fp->bufpos;
b423cd4c 1775 fp->eof = 0;
b423cd4c 1776
634763e8
MS
1777 return (pos);
1778 }
b423cd4c 1779 }
1780
80ca4592 1781#ifdef HAVE_LIBZ
1782 if (!fp->compressed && !fp->ptr)
1783 {
1784 /*
1785 * Preload a buffer to determine whether the file is compressed...
1786 */
1787
cbf9404a 1788 if (cups_fill(fp) <= 0)
80ca4592 1789 return (-1);
1790 }
1791#endif /* HAVE_LIBZ */
1792
ef416fc2 1793 /*
634763e8 1794 * Seek forwards or backwards...
ef416fc2 1795 */
1796
ef416fc2 1797 fp->eof = 0;
1798
634763e8 1799 if (pos < fp->bufpos)
ef416fc2 1800 {
1801 /*
1802 * Need to seek backwards...
1803 */
1804
e07d4801 1805 DEBUG_puts("2cupsFileSeek: SEEK BACKWARDS");
80ca4592 1806
ef416fc2 1807#ifdef HAVE_LIBZ
1808 if (fp->compressed)
1809 {
1810 inflateEnd(&fp->stream);
1811
1812 lseek(fp->fd, 0, SEEK_SET);
634763e8
MS
1813 fp->bufpos = 0;
1814 fp->pos = 0;
1815 fp->ptr = NULL;
1816 fp->end = NULL;
ef416fc2 1817
1818 while ((bytes = cups_fill(fp)) > 0)
634763e8 1819 if (pos >= fp->bufpos && pos < (fp->bufpos + bytes))
ef416fc2 1820 break;
1821
1822 if (bytes <= 0)
1823 return (-1);
80ca4592 1824
634763e8
MS
1825 fp->ptr = fp->buf + pos - fp->bufpos;
1826 fp->pos = pos;
ef416fc2 1827 }
1828 else
1829#endif /* HAVE_LIBZ */
1830 {
634763e8
MS
1831 fp->bufpos = lseek(fp->fd, pos, SEEK_SET);
1832 fp->pos = fp->bufpos;
1833 fp->ptr = NULL;
1834 fp->end = NULL;
80ca4592 1835
e07d4801 1836 DEBUG_printf(("2cupsFileSeek: lseek() returned " CUPS_LLFMT,
634763e8 1837 CUPS_LLCAST fp->pos));
ef416fc2 1838 }
1839 }
634763e8 1840 else
ef416fc2 1841 {
1842 /*
1843 * Need to seek forwards...
1844 */
1845
e07d4801 1846 DEBUG_puts("2cupsFileSeek: SEEK FORWARDS");
80ca4592 1847
ef416fc2 1848#ifdef HAVE_LIBZ
80ca4592 1849 if (fp->compressed)
ef416fc2 1850 {
1851 while ((bytes = cups_fill(fp)) > 0)
80ca4592 1852 {
634763e8 1853 if (pos >= fp->bufpos && pos < (fp->bufpos + bytes))
ef416fc2 1854 break;
80ca4592 1855 }
ef416fc2 1856
1857 if (bytes <= 0)
1858 return (-1);
80ca4592 1859
634763e8
MS
1860 fp->ptr = fp->buf + pos - fp->bufpos;
1861 fp->pos = pos;
ef416fc2 1862 }
1863 else
1864#endif /* HAVE_LIBZ */
1865 {
634763e8
MS
1866 fp->bufpos = lseek(fp->fd, pos, SEEK_SET);
1867 fp->pos = fp->bufpos;
1868 fp->ptr = NULL;
1869 fp->end = NULL;
80ca4592 1870
e07d4801 1871 DEBUG_printf(("2cupsFileSeek: lseek() returned " CUPS_LLFMT,
634763e8 1872 CUPS_LLCAST fp->pos));
ef416fc2 1873 }
1874 }
ef416fc2 1875
e07d4801 1876 DEBUG_printf(("2cupsFileSeek: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
ef416fc2 1877
1878 return (fp->pos);
1879}
1880
1881
80ca4592 1882/*
1883 * 'cupsFileStderr()' - Return a CUPS file associated with stderr.
5a738aea 1884 *
8072030b 1885 * @since CUPS 1.2/macOS 10.5@
80ca4592 1886 */
1887
5a738aea 1888cups_file_t * /* O - CUPS file */
80ca4592 1889cupsFileStderr(void)
1890{
1891 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals... */
1892
1893
1894 /*
1895 * Open file descriptor 2 as needed...
1896 */
1897
1898 if (!cg->stdio_files[2])
1899 {
1900 /*
1901 * Flush any pending output on the stdio file...
1902 */
1903
1904 fflush(stderr);
1905
1906 /*
1907 * Open file descriptor 2...
1908 */
1909
1910 if ((cg->stdio_files[2] = cupsFileOpenFd(2, "w")) != NULL)
1911 cg->stdio_files[2]->is_stdio = 1;
1912 }
1913
1914 return (cg->stdio_files[2]);
1915}
1916
1917
1918/*
1919 * 'cupsFileStdin()' - Return a CUPS file associated with stdin.
5a738aea 1920 *
8072030b 1921 * @since CUPS 1.2/macOS 10.5@
80ca4592 1922 */
1923
5a738aea 1924cups_file_t * /* O - CUPS file */
80ca4592 1925cupsFileStdin(void)
1926{
1927 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals... */
1928
1929
1930 /*
1931 * Open file descriptor 0 as needed...
1932 */
1933
1934 if (!cg->stdio_files[0])
1935 {
1936 /*
1937 * Open file descriptor 0...
1938 */
1939
1940 if ((cg->stdio_files[0] = cupsFileOpenFd(0, "r")) != NULL)
1941 cg->stdio_files[0]->is_stdio = 1;
1942 }
1943
1944 return (cg->stdio_files[0]);
1945}
1946
1947
1948/*
1949 * 'cupsFileStdout()' - Return a CUPS file associated with stdout.
5a738aea 1950 *
8072030b 1951 * @since CUPS 1.2/macOS 10.5@
80ca4592 1952 */
1953
5a738aea 1954cups_file_t * /* O - CUPS file */
80ca4592 1955cupsFileStdout(void)
1956{
1957 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals... */
1958
1959
1960 /*
1961 * Open file descriptor 1 as needed...
1962 */
1963
1964 if (!cg->stdio_files[1])
1965 {
1966 /*
1967 * Flush any pending output on the stdio file...
1968 */
1969
1970 fflush(stdout);
1971
1972 /*
1973 * Open file descriptor 1...
1974 */
1975
1976 if ((cg->stdio_files[1] = cupsFileOpenFd(1, "w")) != NULL)
1977 cg->stdio_files[1]->is_stdio = 1;
1978 }
1979
1980 return (cg->stdio_files[1]);
1981}
1982
1983
ef416fc2 1984/*
1985 * 'cupsFileTell()' - Return the current file position.
5a738aea 1986 *
8072030b 1987 * @since CUPS 1.2/macOS 10.5@
ef416fc2 1988 */
1989
1990off_t /* O - File position */
1991cupsFileTell(cups_file_t *fp) /* I - CUPS file */
1992{
807315e6
MS
1993 DEBUG_printf(("2cupsFileTell(fp=%p)", (void *)fp));
1994 DEBUG_printf(("3cupsFileTell: pos=" CUPS_LLFMT, CUPS_LLCAST (fp ? fp->pos : -1)));
634763e8 1995
80ca4592 1996 return (fp ? fp->pos : 0);
ef416fc2 1997}
1998
1999
2000/*
2001 * 'cupsFileUnlock()' - Unlock access to a file.
5a738aea 2002 *
8072030b 2003 * @since CUPS 1.2/macOS 10.5@
ef416fc2 2004 */
2005
2006int /* O - 0 on success, -1 on error */
5a738aea 2007cupsFileUnlock(cups_file_t *fp) /* I - CUPS file */
ef416fc2 2008{
2009 /*
2010 * Range check...
2011 */
2012
807315e6 2013 DEBUG_printf(("cupsFileUnlock(fp=%p)", (void *)fp));
634763e8 2014
ef416fc2 2015 if (!fp || fp->mode == 's')
2016 return (-1);
2017
2018 /*
2019 * Unlock...
2020 */
2021
2022#ifdef WIN32
536bc2c6 2023 return (_locking(fp->fd, _LK_UNLCK, 0));
ef416fc2 2024#else
2025 return (lockf(fp->fd, F_ULOCK, 0));
2026#endif /* WIN32 */
2027}
2028
2029
2030/*
2031 * 'cupsFileWrite()' - Write to a file.
5a738aea 2032 *
8072030b 2033 * @since CUPS 1.2/macOS 10.5@
ef416fc2 2034 */
2035
5a738aea 2036ssize_t /* O - Number of bytes written or -1 on error */
ef416fc2 2037cupsFileWrite(cups_file_t *fp, /* I - CUPS file */
2038 const char *buf, /* I - Buffer */
2039 size_t bytes) /* I - Number of bytes to write */
2040{
2041 /*
2042 * Range check input...
2043 */
2044
807315e6 2045 DEBUG_printf(("2cupsFileWrite(fp=%p, buf=%p, bytes=" CUPS_LLFMT ")", (void *)fp, (void *)buf, CUPS_LLCAST bytes));
634763e8 2046
82f97232 2047 if (!fp || !buf || (fp->mode != 'w' && fp->mode != 's'))
ef416fc2 2048 return (-1);
2049
2050 if (bytes == 0)
2051 return (0);
2052
2053 /*
2054 * Write the buffer...
2055 */
2056
2057 if (fp->mode == 's')
2058 {
2059 if (cups_write(fp, buf, bytes) < 0)
2060 return (-1);
2061
b86bc4cf 2062 fp->pos += (off_t)bytes;
ef416fc2 2063
e07d4801 2064 DEBUG_printf(("4cupsFileWrite: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 2065
b86bc4cf 2066 return ((ssize_t)bytes);
ef416fc2 2067 }
2068
2069 if ((fp->ptr + bytes) > fp->end)
2070 if (cupsFileFlush(fp))
2071 return (-1);
2072
b86bc4cf 2073 fp->pos += (off_t)bytes;
ef416fc2 2074
e07d4801 2075 DEBUG_printf(("4cupsFileWrite: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));
634763e8 2076
ef416fc2 2077 if (bytes > sizeof(fp->buf))
2078 {
2079#ifdef HAVE_LIBZ
2080 if (fp->compressed)
2081 return (cups_compress(fp, buf, bytes));
2082 else
2083#endif /* HAVE_LIBZ */
2084 return (cups_write(fp, buf, bytes));
2085 }
2086 else
2087 {
2088 memcpy(fp->ptr, buf, bytes);
2089 fp->ptr += bytes;
b86bc4cf 2090 return ((ssize_t)bytes);
ef416fc2 2091 }
2092}
2093
2094
2095#ifdef HAVE_LIBZ
2096/*
22c9029b 2097 * 'cups_compress()' - Compress a buffer of data.
ef416fc2 2098 */
2099
2100static ssize_t /* O - Number of bytes written or -1 */
2101cups_compress(cups_file_t *fp, /* I - CUPS file */
2102 const char *buf, /* I - Buffer */
2103 size_t bytes) /* I - Number bytes */
2104{
807315e6 2105 DEBUG_printf(("7cups_compress(fp=%p, buf=%p, bytes=" CUPS_LLFMT ")", (void *)fp, (void *)buf, CUPS_LLCAST bytes));
ecdc0628 2106
ef416fc2 2107 /*
2108 * Update the CRC...
2109 */
2110
7e86f2f6 2111 fp->crc = crc32(fp->crc, (const Bytef *)buf, (uInt)bytes);
ef416fc2 2112
2113 /*
2114 * Deflate the bytes...
2115 */
2116
2117 fp->stream.next_in = (Bytef *)buf;
7e86f2f6 2118 fp->stream.avail_in = (uInt)bytes;
ef416fc2 2119
2120 while (fp->stream.avail_in > 0)
2121 {
2122 /*
2123 * Flush the current buffer...
2124 */
2125
e07d4801 2126 DEBUG_printf(("9cups_compress: avail_in=%d, avail_out=%d",
634763e8 2127 fp->stream.avail_in, fp->stream.avail_out));
ecdc0628 2128
7e86f2f6 2129 if (fp->stream.avail_out < (uInt)(sizeof(fp->cbuf) / 8))
ef416fc2 2130 {
7e86f2f6 2131 if (cups_write(fp, (char *)fp->cbuf, (size_t)(fp->stream.next_out - fp->cbuf)) < 0)
ef416fc2 2132 return (-1);
ecdc0628 2133
2134 fp->stream.next_out = fp->cbuf;
2135 fp->stream.avail_out = sizeof(fp->cbuf);
ef416fc2 2136 }
2137
2138 deflate(&(fp->stream), Z_NO_FLUSH);
2139 }
2140
7e86f2f6 2141 return ((ssize_t)bytes);
ef416fc2 2142}
2143#endif /* HAVE_LIBZ */
2144
2145
2146/*
22c9029b 2147 * 'cups_fill()' - Fill the input buffer.
ef416fc2 2148 */
2149
2150static ssize_t /* O - Number of bytes or -1 */
2151cups_fill(cups_file_t *fp) /* I - CUPS file */
2152{
2153 ssize_t bytes; /* Number of bytes read */
2154#ifdef HAVE_LIBZ
c277e2f8 2155 int status; /* Decompression status */
ef416fc2 2156 const unsigned char *ptr, /* Pointer into buffer */
2157 *end; /* End of buffer */
2158#endif /* HAVE_LIBZ */
2159
2160
807315e6
MS
2161 DEBUG_printf(("7cups_fill(fp=%p)", (void *)fp));
2162 DEBUG_printf(("9cups_fill: fp->ptr=%p, fp->end=%p, fp->buf=%p, fp->bufpos=" CUPS_LLFMT ", fp->eof=%d", (void *)fp->ptr, (void *)fp->end, (void *)fp->buf, CUPS_LLCAST fp->bufpos, fp->eof));
ef416fc2 2163
2164 if (fp->ptr && fp->end)
c9fc04c6 2165 fp->bufpos += fp->end - fp->buf;
ef416fc2 2166
2167#ifdef HAVE_LIBZ
e07d4801 2168 DEBUG_printf(("9cups_fill: fp->compressed=%d", fp->compressed));
b423cd4c 2169
ef416fc2 2170 while (!fp->ptr || fp->compressed)
2171 {
2172 /*
2173 * Check to see if we have read any data yet; if not, see if we have a
2174 * compressed file...
2175 */
2176
2177 if (!fp->ptr)
2178 {
2179 /*
2180 * Reset the file position in case we are seeking...
2181 */
2182
2183 fp->compressed = 0;
ef416fc2 2184
2185 /*
2186 * Read the first bytes in the file to determine if we have a gzip'd
2187 * file...
2188 */
2189
fa73b229 2190 if ((bytes = cups_read(fp, (char *)fp->buf, sizeof(fp->buf))) < 0)
ef416fc2 2191 {
2192 /*
2193 * Can't read from file!
2194 */
2195
e07d4801 2196 DEBUG_printf(("9cups_fill: cups_read() returned " CUPS_LLFMT,
b423cd4c 2197 CUPS_LLCAST bytes));
2198
cbf9404a
MS
2199 fp->eof = 1;
2200
ef416fc2 2201 return (-1);
2202 }
2203
fa73b229 2204 if (bytes < 10 || fp->buf[0] != 0x1f ||
e00b005a 2205 (fp->buf[1] & 255) != 0x8b ||
fa73b229 2206 fp->buf[2] != 8 || (fp->buf[3] & 0xe0) != 0)
ef416fc2 2207 {
2208 /*
2209 * Not a gzip'd file!
2210 */
2211
ef416fc2 2212 fp->ptr = fp->buf;
2213 fp->end = fp->buf + bytes;
2214
e07d4801 2215 DEBUG_printf(("9cups_fill: Returning " CUPS_LLFMT,
c9fc04c6 2216 CUPS_LLCAST bytes));
b423cd4c 2217
ef416fc2 2218 return (bytes);
2219 }
2220
2221 /*
2222 * Parse header junk: extra data, original name, and comment...
2223 */
2224
fa73b229 2225 ptr = (unsigned char *)fp->buf + 10;
2226 end = (unsigned char *)fp->buf + bytes;
ef416fc2 2227
fa73b229 2228 if (fp->buf[3] & 0x04)
ef416fc2 2229 {
2230 /*
2231 * Skip extra data...
2232 */
2233
2234 if ((ptr + 2) > end)
2235 {
2236 /*
2237 * Can't read from file!
2238 */
2239
cbf9404a
MS
2240 DEBUG_puts("9cups_fill: Extra gzip header data missing, returning -1.");
2241
2242 fp->eof = 1;
2243 errno = EIO;
2244
ef416fc2 2245 return (-1);
2246 }
2247
2248 bytes = ((unsigned char)ptr[1] << 8) | (unsigned char)ptr[0];
2249 ptr += 2 + bytes;
2250
2251 if (ptr > end)
2252 {
2253 /*
2254 * Can't read from file!
2255 */
2256
cbf9404a
MS
2257 DEBUG_puts("9cups_fill: Extra gzip header data does not fit in initial buffer, returning -1.");
2258
2259 fp->eof = 1;
2260 errno = EIO;
2261
ef416fc2 2262 return (-1);
2263 }
2264 }
2265
fa73b229 2266 if (fp->buf[3] & 0x08)
ef416fc2 2267 {
2268 /*
2269 * Skip original name data...
2270 */
2271
2272 while (ptr < end && *ptr)
2273 ptr ++;
2274
2275 if (ptr < end)
2276 ptr ++;
2277 else
2278 {
2279 /*
2280 * Can't read from file!
2281 */
2282
cbf9404a
MS
2283 DEBUG_puts("9cups_fill: Original filename in gzip header data does not fit in initial buffer, returning -1.");
2284
2285 fp->eof = 1;
2286 errno = EIO;
2287
ef416fc2 2288 return (-1);
2289 }
2290 }
2291
fa73b229 2292 if (fp->buf[3] & 0x10)
ef416fc2 2293 {
2294 /*
2295 * Skip comment data...
2296 */
2297
2298 while (ptr < end && *ptr)
2299 ptr ++;
2300
2301 if (ptr < end)
2302 ptr ++;
2303 else
2304 {
2305 /*
2306 * Can't read from file!
2307 */
2308
cbf9404a
MS
2309 DEBUG_puts("9cups_fill: Comment in gzip header data does not fit in initial buffer, returning -1.");
2310
2311 fp->eof = 1;
2312 errno = EIO;
2313
ef416fc2 2314 return (-1);
2315 }
2316 }
2317
fa73b229 2318 if (fp->buf[3] & 0x02)
ef416fc2 2319 {
2320 /*
2321 * Skip header CRC data...
2322 */
2323
2324 ptr += 2;
2325
2326 if (ptr > end)
2327 {
2328 /*
2329 * Can't read from file!
2330 */
2331
cbf9404a
MS
2332 DEBUG_puts("9cups_fill: Header CRC in gzip header data does not fit in initial buffer, returning -1.");
2333
2334 fp->eof = 1;
2335 errno = EIO;
2336
ef416fc2 2337 return (-1);
2338 }
2339 }
2340
fa73b229 2341 /*
2342 * Copy the flate-compressed data to the compression buffer...
2343 */
2344
2345 if ((bytes = end - ptr) > 0)
07623986 2346 memcpy(fp->cbuf, ptr, (size_t)bytes);
fa73b229 2347
ef416fc2 2348 /*
2349 * Setup the decompressor data...
2350 */
2351
2352 fp->stream.zalloc = (alloc_func)0;
2353 fp->stream.zfree = (free_func)0;
2354 fp->stream.opaque = (voidpf)0;
fa73b229 2355 fp->stream.next_in = (Bytef *)fp->cbuf;
ef416fc2 2356 fp->stream.next_out = NULL;
7e86f2f6 2357 fp->stream.avail_in = (uInt)bytes;
ef416fc2 2358 fp->stream.avail_out = 0;
2359 fp->crc = crc32(0L, Z_NULL, 0);
2360
cbf9404a
MS
2361 if ((status = inflateInit2(&(fp->stream), -15)) != Z_OK)
2362 {
2363 DEBUG_printf(("9cups_fill: inflateInit2 returned %d, returning -1.", status));
2364
2365 fp->eof = 1;
2366 errno = EIO;
2367
ef416fc2 2368 return (-1);
cbf9404a 2369 }
ef416fc2 2370
2371 fp->compressed = 1;
2372 }
2373
2374 if (fp->compressed)
2375 {
2376 /*
2377 * If we have reached end-of-file, return immediately...
2378 */
2379
2380 if (fp->eof)
cbf9404a
MS
2381 {
2382 DEBUG_puts("9cups_fill: EOF, returning 0.");
2383
2384 return (0);
2385 }
ef416fc2 2386
2387 /*
2388 * Fill the decompression buffer as needed...
2389 */
2390
2391 if (fp->stream.avail_in == 0)
2392 {
2393 if ((bytes = cups_read(fp, (char *)fp->cbuf, sizeof(fp->cbuf))) <= 0)
cbf9404a
MS
2394 {
2395 DEBUG_printf(("9cups_fill: cups_read error, returning %d.", (int)bytes));
2396
2397 fp->eof = 1;
2398
2399 return (bytes);
2400 }
ef416fc2 2401
2402 fp->stream.next_in = fp->cbuf;
7e86f2f6 2403 fp->stream.avail_in = (uInt)bytes;
ef416fc2 2404 }
2405
2406 /*
2407 * Decompress data from the buffer...
2408 */
2409
2410 fp->stream.next_out = (Bytef *)fp->buf;
2411 fp->stream.avail_out = sizeof(fp->buf);
2412
c277e2f8
MS
2413 status = inflate(&(fp->stream), Z_NO_FLUSH);
2414
2415 if (fp->stream.next_out > (Bytef *)fp->buf)
2416 fp->crc = crc32(fp->crc, (Bytef *)fp->buf,
7e86f2f6 2417 (uInt)(fp->stream.next_out - (Bytef *)fp->buf));
c277e2f8
MS
2418
2419 if (status == Z_STREAM_END)
ef416fc2 2420 {
2421 /*
2422 * Read the CRC and length...
2423 */
2424
2425 unsigned char trailer[8]; /* Trailer bytes */
2426 uLong tcrc; /* Trailer CRC */
cbf9404a 2427 ssize_t tbytes = 0; /* Number of bytes */
ef416fc2 2428
cbf9404a 2429 if (fp->stream.avail_in > 0)
ef416fc2 2430 {
cbf9404a
MS
2431 if (fp->stream.avail_in > sizeof(trailer))
2432 tbytes = (ssize_t)sizeof(trailer);
2433 else
2434 tbytes = (ssize_t)fp->stream.avail_in;
ef416fc2 2435
b2250eaa 2436 memcpy(trailer, fp->stream.next_in, (size_t)tbytes);
cbf9404a
MS
2437 fp->stream.next_in += tbytes;
2438 fp->stream.avail_in -= (size_t)tbytes;
ef416fc2 2439 }
2440
cbf9404a
MS
2441 if (tbytes < (ssize_t)sizeof(trailer))
2442 {
2443 if (read(fp->fd, trailer + tbytes, sizeof(trailer) - (size_t)tbytes) < ((ssize_t)sizeof(trailer) - tbytes))
fa73b229 2444 {
2445 /*
cbf9404a 2446 * Can't get it, so mark end-of-file...
fa73b229 2447 */
2448
cbf9404a 2449 DEBUG_puts("9cups_fill: Unable to read gzip CRC trailer, returning -1.");
c277e2f8 2450
fa73b229 2451 fp->eof = 1;
cbf9404a 2452 errno = EIO;
fa73b229 2453
2454 return (-1);
2455 }
cbf9404a
MS
2456 }
2457
2458 tcrc = ((((((uLong)trailer[3] << 8) | (uLong)trailer[2]) << 8) |
2459 (uLong)trailer[1]) << 8) | (uLong)trailer[0];
ef416fc2 2460
cbf9404a
MS
2461 if (tcrc != fp->crc)
2462 {
ef416fc2 2463 /*
cbf9404a 2464 * Bad CRC, mark end-of-file...
ef416fc2 2465 */
ef416fc2 2466
cbf9404a
MS
2467 DEBUG_printf(("9cups_fill: tcrc=%08x != fp->crc=%08x, returning -1.", (unsigned int)tcrc, (unsigned int)fp->crc));
2468
2469 fp->eof = 1;
2470 errno = EIO;
2471
2472 return (-1);
ef416fc2 2473 }
cbf9404a
MS
2474
2475 /*
2476 * Otherwise, reset the compressed flag so that we re-read the
2477 * file header...
2478 */
2479
2480 fp->compressed = 0;
2481 }
2482 else if (status < Z_OK)
2483 {
2484 DEBUG_printf(("9cups_fill: inflate returned %d, returning -1.", status));
2485
2486 fp->eof = 1;
2487 errno = EIO;
2488
2489 return (-1);
ef416fc2 2490 }
2491
7e86f2f6 2492 bytes = (ssize_t)sizeof(fp->buf) - (ssize_t)fp->stream.avail_out;
ef416fc2 2493
2494 /*
2495 * Return the decompressed data...
2496 */
2497
2498 fp->ptr = fp->buf;
2499 fp->end = fp->buf + bytes;
2500
fa73b229 2501 if (bytes)
cbf9404a
MS
2502 {
2503 DEBUG_printf(("9cups_fill: Returning %d.", (int)bytes));
fa73b229 2504 return (bytes);
cbf9404a 2505 }
ef416fc2 2506 }
2507 }
2508#endif /* HAVE_LIBZ */
2509
2510 /*
2511 * Read a buffer's full of data...
2512 */
2513
2514 if ((bytes = cups_read(fp, fp->buf, sizeof(fp->buf))) <= 0)
2515 {
2516 /*
2517 * Can't read from file!
2518 */
2519
2520 fp->eof = 1;
2521 fp->ptr = fp->buf;
2522 fp->end = fp->buf;
ef416fc2 2523 }
cbf9404a
MS
2524 else
2525 {
2526 /*
2527 * Return the bytes we read...
2528 */
ef416fc2 2529
cbf9404a
MS
2530 fp->eof = 0;
2531 fp->ptr = fp->buf;
2532 fp->end = fp->buf + bytes;
2533 }
ef416fc2 2534
cbf9404a 2535 DEBUG_printf(("9cups_fill: Not gzip, returning %d.", (int)bytes));
ef416fc2 2536
2537 return (bytes);
2538}
2539
2540
c7017ecc
MS
2541/*
2542 * 'cups_open()' - Safely open a file for writing.
2543 *
2544 * We don't allow appending to directories or files that are hard-linked or
2545 * symlinked.
2546 */
2547
2548static int /* O - File descriptor or -1 otherwise */
2549cups_open(const char *filename, /* I - Filename */
2550 int mode) /* I - Open mode */
2551{
2552 int fd; /* File descriptor */
2553 struct stat fileinfo; /* File information */
2554#ifndef WIN32
2555 struct stat linkinfo; /* Link information */
2556#endif /* !WIN32 */
2557
2558
2559 /*
2560 * Open the file...
2561 */
2562
2563 if ((fd = open(filename, mode, 0666)) < 0)
2564 return (-1);
2565
2566 /*
2567 * Then verify that the file descriptor doesn't point to a directory or hard-
2568 * linked file.
2569 */
2570
2571 if (fstat(fd, &fileinfo))
2572 {
2573 close(fd);
2574 return (-1);
2575 }
2576
2577 if (fileinfo.st_nlink != 1)
2578 {
2579 close(fd);
2580 errno = EPERM;
2581 return (-1);
2582 }
2583
2584#ifdef WIN32
2585 if (fileinfo.st_mode & _S_IFDIR)
2586#else
2587 if (S_ISDIR(fileinfo.st_mode))
2588#endif /* WIN32 */
2589 {
2590 close(fd);
2591 errno = EISDIR;
2592 return (-1);
2593 }
2594
2595#ifndef WIN32
2596 /*
2597 * Then use lstat to determine whether the filename is a symlink...
2598 */
2599
2600 if (lstat(filename, &linkinfo))
2601 {
2602 close(fd);
2603 return (-1);
2604 }
2605
2606 if (S_ISLNK(linkinfo.st_mode) ||
2607 fileinfo.st_dev != linkinfo.st_dev ||
2608 fileinfo.st_ino != linkinfo.st_ino ||
2609#ifdef HAVE_ST_GEN
2610 fileinfo.st_gen != linkinfo.st_gen ||
2611#endif /* HAVE_ST_GEN */
2612 fileinfo.st_nlink != linkinfo.st_nlink ||
2613 fileinfo.st_mode != linkinfo.st_mode)
2614 {
2615 /*
2616 * Yes, don't allow!
2617 */
2618
2619 close(fd);
2620 errno = EPERM;
2621 return (-1);
2622 }
2623#endif /* !WIN32 */
2624
2625 return (fd);
2626}
2627
2628
ef416fc2 2629/*
2630 * 'cups_read()' - Read from a file descriptor.
2631 */
2632
2633static ssize_t /* O - Number of bytes read or -1 */
2634cups_read(cups_file_t *fp, /* I - CUPS file */
2635 char *buf, /* I - Buffer */
2636 size_t bytes) /* I - Number bytes */
2637{
2638 ssize_t total; /* Total bytes read */
2639
2640
807315e6 2641 DEBUG_printf(("7cups_read(fp=%p, buf=%p, bytes=" CUPS_LLFMT ")", (void *)fp, (void *)buf, CUPS_LLCAST bytes));
634763e8 2642
ef416fc2 2643 /*
2644 * Loop until we read at least 0 bytes...
2645 */
2646
2647 for (;;)
2648 {
b86bc4cf 2649#ifdef WIN32
2650 if (fp->mode == 's')
2651 total = (ssize_t)recv(fp->fd, buf, (unsigned)bytes, 0);
2652 else
2653 total = (ssize_t)read(fp->fd, buf, (unsigned)bytes);
2654#else
ef416fc2 2655 if (fp->mode == 's')
2656 total = recv(fp->fd, buf, bytes, 0);
2657 else
2658 total = read(fp->fd, buf, bytes);
b86bc4cf 2659#endif /* WIN32 */
ef416fc2 2660
e07d4801 2661 DEBUG_printf(("9cups_read: total=" CUPS_LLFMT, CUPS_LLCAST total));
634763e8 2662
ef416fc2 2663 if (total >= 0)
2664 break;
2665
2666 /*
2667 * Reads can be interrupted by signals and unavailable resources...
2668 */
2669
2670 if (errno == EAGAIN || errno == EINTR)
2671 continue;
2672 else
2673 return (-1);
2674 }
2675
2676 /*
2677 * Return the total number of bytes read...
2678 */
2679
2680 return (total);
2681}
2682
2683
2684/*
2685 * 'cups_write()' - Write to a file descriptor.
2686 */
2687
2688static ssize_t /* O - Number of bytes written or -1 */
2689cups_write(cups_file_t *fp, /* I - CUPS file */
2690 const char *buf, /* I - Buffer */
2691 size_t bytes) /* I - Number bytes */
2692{
2abf387c 2693 size_t total; /* Total bytes written */
2694 ssize_t count; /* Count this time */
ef416fc2 2695
2696
807315e6 2697 DEBUG_printf(("7cups_write(fp=%p, buf=%p, bytes=" CUPS_LLFMT ")", (void *)fp, (void *)buf, CUPS_LLCAST bytes));
ecdc0628 2698
ef416fc2 2699 /*
2700 * Loop until all bytes are written...
2701 */
2702
2703 total = 0;
2704 while (bytes > 0)
2705 {
b86bc4cf 2706#ifdef WIN32
2707 if (fp->mode == 's')
2708 count = (ssize_t)send(fp->fd, buf, (unsigned)bytes, 0);
2709 else
2710 count = (ssize_t)write(fp->fd, buf, (unsigned)bytes);
2711#else
ef416fc2 2712 if (fp->mode == 's')
2713 count = send(fp->fd, buf, bytes, 0);
2714 else
2715 count = write(fp->fd, buf, bytes);
b86bc4cf 2716#endif /* WIN32 */
ef416fc2 2717
e07d4801 2718 DEBUG_printf(("9cups_write: count=" CUPS_LLFMT, CUPS_LLCAST count));
634763e8 2719
ef416fc2 2720 if (count < 0)
2721 {
2722 /*
2723 * Writes can be interrupted by signals and unavailable resources...
2724 */
2725
2726 if (errno == EAGAIN || errno == EINTR)
2727 continue;
2728 else
2729 return (-1);
2730 }
2731
2732 /*
2733 * Update the counts for the last write call...
2734 */
2735
7e86f2f6
MS
2736 bytes -= (size_t)count;
2737 total += (size_t)count;
ef416fc2 2738 buf += count;
2739 }
2740
2741 /*
2742 * Return the total number of bytes written...
2743 */
2744
b86bc4cf 2745 return ((ssize_t)total);
ef416fc2 2746}