1 /* zip.c -- compress files to the gzip or pkzip format
3 Copyright (C) 1997-1999, 2006-2007, 2009-2022 Free Software Foundation, Inc.
4 Copyright (C) 1992-1993 Jean-loup Gailly
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
26 off_t header_bytes
; /* number of bytes in gzip header */
28 /* Speed options for the general purpose bit flag. */
29 enum { SLOW
= 2, FAST
= 4 };
31 /* ===========================================================================
33 * IN assertions: the input and output buffers are cleared.
34 * The variables time_stamp and save_orig_name are initialized.
35 * 'in' and 'out' are input and output file descriptors.
40 uch flags
= 0; /* general purpose bit flags */
41 ush attr
= 0; /* ascii/binary flag */
42 ush deflate_flags
= 0; /* pkzip -es, -en or -ex equivalent */
49 /* Write the header to the gzip file. See algorithm.doc for the format */
52 put_byte(GZIP_MAGIC
[0]); /* magic header */
53 put_byte(GZIP_MAGIC
[1]);
54 put_byte(DEFLATED
); /* compression method */
59 put_byte(flags
); /* general flags */
60 if (time_stamp
.tv_nsec
< 0)
62 else if (0 < time_stamp
.tv_sec
&& time_stamp
.tv_sec
<= 0xffffffff)
63 stamp
= time_stamp
.tv_sec
;
66 /* It's intended that timestamp 0 generates this warning,
67 since gzip format reserves 0 for something else. */
68 warning ("file timestamp out of range for gzip format");
73 /* Write deflated file to zip file */
77 ct_init(&attr
, &method
);
79 deflate_flags
|= FAST
;
81 deflate_flags
|= SLOW
;
83 put_byte((uch
)deflate_flags
); /* extra flags */
84 put_byte(OS_CODE
); /* OS identifier */
87 char *p
= gzip_base_name (ifname
); /* Don't save the directory part. */
92 header_bytes
= (off_t
)outcnt
;
95 dfltcc_deflate (level
);
100 #ifndef NO_SIZE_CHECK
102 * (but not on MSDOS -- diet in TSR mode reports an incorrect file size)
104 if (ifile_size
!= -1L && bytes_in
!= ifile_size
) {
105 fprintf(stderr
, "%s: %s: file size changed while zipping\n",
106 program_name
, ifname
);
110 /* Write the crc and uncompressed size */
111 put_long (getcrc ());
112 put_long((ulg
)bytes_in
);
120 /* ===========================================================================
121 * Read a new buffer from the current input file, perform end-of-line
122 * translation, and update the crc and input file size.
123 * IN assertion: size >= 2 (for end-of-line translation)
126 file_read (char *buf
, unsigned size
)
130 Assert(insize
== 0, "inbuf not empty");
132 len
= read_buffer (ifd
, buf
, size
);
133 if (len
== 0) return (int)len
;
134 if (len
== (unsigned)-1) {
138 updcrc ((uch
*) buf
, len
);
139 bytes_in
+= (off_t
)len
;