ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/liblzf/lzf.c
(Generate patch)

Comparing liblzf/lzf.c (file contents):
Revision 1.3 by pcg, Tue Dec 23 04:52:00 2003 UTC vs.
Revision 1.12 by root, Fri Nov 2 12:39:20 2007 UTC

1/* 1/*
2 * Copyright (c) 2000-2003 Marc Alexander Lehmann <pcg@goof.com> 2 * Copyright (c) 2006 Stefan Traby <stefan@hello-penguin.com>
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without modifica- 4 * Redistribution and use in source and binary forms, with or without modifica-
5 * tion, are permitted provided that the following conditions are met: 5 * tion, are permitted provided that the following conditions are met:
6 * 6 *
7 * 1. Redistributions of source code must retain the above copyright notice, 7 * 1. Redistributions of source code must retain the above copyright notice,
9 * 9 *
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the 11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution. 12 * documentation and/or other materials provided with the distribution.
13 * 13 *
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- 15 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
19 * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 16 * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
20 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE- 17 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE-
21 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 18 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 20 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH- 21 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH-
25 * ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 22 * ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
26 * OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THE POSSIBILITY OF SUCH DAMAGE.
24 *
25 * Alternatively, the contents of this file may be used under the terms of
26 * the GNU General Public License version 2 (the "GPL"), in which case the
27 * provisions of the GPL are applicable instead of the above. If you wish to
28 * allow the use of your version of this file only under the terms of the
29 * GPL and not to allow others to use your version of this file under the
30 * BSD license, indicate your decision by deleting the provisions above and
31 * replace them with the notice and other provisions required by the GPL. If
32 * you do not delete the provisions above, a recipient may use your version
33 * of this file under either the BSD or the GPL License.
27 */ 34 */
28 35
29#include "config.h" 36#include "config.h"
30
31#include <stdio.h> 37#include <stdio.h>
38#include <string.h>
32#include <stdlib.h> 39#include <stdlib.h>
33#include <assert.h>
34
35#include <unistd.h> 40#include <unistd.h>
41#include <sys/types.h>
42#include <sys/stat.h>
43#include <fcntl.h>
36#include <getopt.h> 44#include <errno.h>
37 45#include <limits.h>
38#include "lzf.h" 46#include "lzf.h"
39 47
48#ifdef HAVE_GETOPT_H
49# include <getopt.h>
50#endif
51
52#define BLOCKSIZE (1024 * 64 - 1)
53#define MAX_BLOCKSIZE BLOCKSIZE
54
40typedef unsigned char u8; 55typedef unsigned char u8;
41 56
57static off_t nr_read, nr_written;
58
59static const char *imagename;
60static enum { compress, uncompress, lzcat } mode = compress;
61static int verbose = 0;
62static int force = 0;
63static long blocksize = BLOCKSIZE;
64
65#ifdef HAVE_GETOPT_LONG
66
67 struct option longopts[] = {
68 {"compress", 0, 0, 'c'},
69 {"decompress", 0, 0, 'd'},
70 {"uncompress", 0, 0, 'd'},
71 {"force", 0, 0, 'f'},
72 {"help", 0, 0, 'h'},
73 {"verbose", 0, 0, 'v'},
74 {"blocksize", 1, 0, 'b'},
75 {0, 0, 0, 0}
76 };
77
78 static const char *opt =
79 "-c --compress compress\n"
80 "-d --decompress decompress\n"
81 "-f --force force overwrite of output file\n"
82 "-h --help give this help\n" "-v --verbose verbose mode\n" "-b # --blocksize # set blocksize\n" "\n";
83
84#else
85
86 static const char *opt =
87 "-c compress\n"
88 "-d decompress\n"
89 "-f force overwrite of output file\n"
90 "-h give this help\n"
91 "-v verbose mode\n"
92 "-b # set blocksize\n"
93 "\n";
94
95#endif
96
42static void 97static void
43usage (int ec) 98usage (int rc)
44{ 99{
45 fprintf (stderr, "\n" 100 fprintf (stderr, "\n"
46 "lzf, a very lightweight compression/decompression filter\n" 101 "lzf, a very lightweight compression/decompression utility written by Stefan Traby.\n"
47 "written by Marc Lehmann <pcg@goof.com> You can find more info at\n" 102 "uses liblzf written by Marc Lehmann <schmorp@schmorp.de> You can find more info at\n"
48 "http://liblzf.plan9.de/\n" 103 "http://liblzf.plan9.de/\n"
49 "\n" 104 "\n"
50 "USAGE: lzf -c [-b blocksize] | -d\n" 105 "usage: lzf [-dufhvb] [file ...]\n"
51 " -c compress\n" 106 " unlzf [file ...]\n"
52 " -d decompress\n" 107 " lzcat [file ...]\n"
53 " -b specify the blocksize (default 64k-1)\n"
54 "\n" 108 "\n%s",
55 ); 109 opt);
56 110
57 exit (ec); 111 exit (rc);
112}
113
114static inline ssize_t
115rread (int fd, void *buf, size_t len)
116{
117 ssize_t rc = 0, offset = 0;
118 char *p = buf;
119
120 while (len && (rc = read (fd, &p[offset], len)) > 0)
121 {
122 offset += rc;
123 len -= rc;
124 }
125
126 nr_read += offset;
127
128 if (rc < 0)
129 return rc;
130
131 return offset;
132}
133
134/* returns 0 if all written else -1 */
135static inline ssize_t
136wwrite (int fd, void *buf, size_t len)
137{
138 ssize_t rc;
139 char *b = buf;
140 size_t l = len;
141
142 while (l)
143 {
144 rc = write (fd, b, l);
145 if (rc < 0)
146 {
147 fprintf (stderr, "%s: write error: ", imagename);
148 perror ("");
149 return -1;
150 }
151
152 l -= rc;
153 b += rc;
154 }
155
156 nr_written += len;
157 return 0;
58} 158}
59 159
60/* 160/*
61 * Anatomy: an lzf file consists of any number of blocks in the following format: 161 * Anatomy: an lzf file consists of any number of blocks in the following format:
62 * 162 *
163 * \x00 EOF (optional)
63 * "ZV\0" 2-byte-usize <uncompressed data> 164 * "ZV\0" 2-byte-usize <uncompressed data>
64 * "ZV\1" 2-byte-csize 2-byte-usize <compressed data> 165 * "ZV\1" 2-byte-csize 2-byte-usize <compressed data>
65 * "ZV\2" 4-byte-crc32-0xdebb20e3 (NYI) 166 * "ZV\2" 4-byte-crc32-0xdebb20e3 (NYI)
66 *
67 */ 167 */
68 168
69static void compress (unsigned int blocksize) 169
170#define TYPE0_HDR_SIZE 5
171#define TYPE1_HDR_SIZE 7
172#define MAX_HDR_SIZE 7
173#define MIN_HDR_SIZE 5
174
175static int
176compress_fd (int from, int to)
70{ 177{
71 ssize_t us; 178 ssize_t us, cs, len;
72 unsigned int cs; 179 u8 buf1[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16];
73 u8 buff1[64*1024]; 180 u8 buf2[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16];
74 u8 buff2[64*1024];
75 u8 header[3+2+2]; 181 u8 *header;
76 182
77 header[0] = 'Z'; 183 nr_read = nr_written = 0;
78 header[1] = 'V'; 184 while ((us = rread (from, &buf1[MAX_HDR_SIZE], blocksize)) > 0)
79
80 for(;;) {
81 us = fread (buff1, 1, blocksize, stdin);
82
83 if (us < blocksize)
84 { 185 {
85 if (us == 0) 186 cs = lzf_compress (&buf1[MAX_HDR_SIZE], us, &buf2[MAX_HDR_SIZE], us > 4 ? us - 4 : us);
86 break;
87 else if (!feof (stdin))
88 {
89 perror ("compress");
90 exit (1);
91 }
92 }
93
94 cs = lzf_compress (buff1, us, buff2, us - 4);
95
96 if (cs) 187 if (cs)
97 { 188 {
189 header = &buf2[MAX_HDR_SIZE - TYPE1_HDR_SIZE];
190 header[0] = 'Z';
191 header[1] = 'V';
98 header[2] = 1; 192 header[2] = 1;
99 header[3] = cs >> 8; 193 header[3] = cs >> 8;
100 header[4] = cs & 0xff; 194 header[4] = cs & 0xff;
101 header[5] = us >> 8; 195 header[5] = us >> 8;
102 header[6] = us & 0xff; 196 header[6] = us & 0xff;
103 197 len = cs + TYPE1_HDR_SIZE;
104 fwrite (header, 3+2+2, 1, stdout);
105 fwrite (buff2, cs, 1, stdout);
106 } 198 }
107 else 199 else
108 { 200 { // write uncompressed
201 header = &buf1[MAX_HDR_SIZE - TYPE0_HDR_SIZE];
202 header[0] = 'Z';
203 header[1] = 'V';
109 header[2] = 0; 204 header[2] = 0;
110 header[3] = us >> 8; 205 header[3] = us >> 8;
111 header[4] = us & 0xff; 206 header[4] = us & 0xff;
112 207 len = us + TYPE0_HDR_SIZE;
113 fwrite (header, 3+2, 1, stdout);
114 fwrite (buff1, us, 1, stdout);
115 } 208 }
116 } while (!feof (stdin));
117}
118 209
119static void decompress (void) 210 if (wwrite (to, header, len) == -1)
120{ 211 return -1;
121 ssize_t us; 212 }
122 unsigned int cs;
123 u8 buff1[64*1024];
124 u8 buff2[64*1024];
125 u8 header[3+2+2];
126 213
127 for(;;) { 214 return 0;
128 if (fread (header, 3+2, 1, stdin) != 1) 215}
216
217static int
218uncompress_fd (int from, int to)
219{
220 u8 header[MAX_HDR_SIZE];
221 u8 buf1[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16];
222 u8 buf2[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16];
223 u8 *p;
224 int l, rd;
225 ssize_t rc, cs, us, bytes, over = 0;
226
227 nr_read = nr_written = 0;
228 while (1)
229 {
230 rc = rread (from, header + over, MAX_HDR_SIZE - over);
231 if (rc < 0)
129 { 232 {
130 if (feof (stdin)) 233 fprintf (stderr, "%s: read error: ", imagename);
234 perror ("");
235 return -1;
236 }
237
238 rc += over;
239 over = 0;
240 if (!rc || header[0] == 0)
241 return 0;
242
243 if (rc < MIN_HDR_SIZE || header[0] != 'Z' || header[1] != 'V')
244 {
245 fprintf (stderr, "%s: invalid data stream - magic not found or short header\n", imagename);
246 return -1;
247 }
248
249 switch (header[2])
250 {
251 case 0:
252 cs = -1;
253 us = (header[3] << 8) | header[4];
254 p = &header[TYPE0_HDR_SIZE];
131 break; 255 break;
132 else 256 case 1:
257 if (rc < TYPE1_HDR_SIZE)
133 { 258 {
134 perror ("decompress"); 259 goto short_read;
135 exit (1);
136 } 260 }
137 }
138
139 if (header[0] != 'Z' || header[1] != 'V')
140 {
141 fprintf (stderr, "decompress: invalid stream - no magic number found\n");
142 exit (1);
143 }
144
145 cs = (header[3] << 8) | header[4]; 261 cs = (header[3] << 8) | header[4];
146
147 if (header[2] == 1)
148 {
149 if (fread (header+3+2, 2, 1, stdin) != 1)
150 {
151 perror ("decompress");
152 exit (1);
153 }
154
155 us = (header[5] << 8) | header[6]; 262 us = (header[5] << 8) | header[6];
156 263 p = &header[TYPE1_HDR_SIZE];
157 if (fread (buff1, cs, 1, stdin) != 1) 264 break;
158 { 265 default:
159 perror ("decompress"); 266 fprintf (stderr, "%s: unknown blocktype\n", imagename);
160 exit (1); 267 return -1;
161 } 268 }
162 269
270 bytes = cs == -1 ? us : cs;
271 l = &header[rc] - p;
272
273 if (l > 0)
274 memcpy (buf1, p, l);
275
276 if (l > bytes)
277 {
278 over = l - bytes;
279 memmove (header, &p[bytes], over);
280 }
281
282 p = &buf1[l];
283 rd = bytes - l;
284 if (rd > 0)
285 if ((rc = rread (from, p, rd)) != rd)
286 goto short_read;
287
288 if (cs == -1)
289 {
290 if (wwrite (to, buf1, us))
291 return -1;
292 }
293 else
294 {
163 if (lzf_decompress (buff1, cs, buff2, us) != us) 295 if (lzf_decompress (buf1, cs, buf2, us) != us)
164 { 296 {
165 fprintf (stderr, "decompress: invalid stream - data corrupted\n"); 297 fprintf (stderr, "%s: decompress: invalid stream - data corrupted\n", imagename);
166 exit (1); 298 return -1;
167 } 299 }
168 300
169 fwrite (buff2, us, 1, stdout); 301 if (wwrite (to, buf2, us))
170 } 302 return -1;
171 else if (header[2] == 0)
172 {
173 if (fread (buff2, cs, 1, stdin) != 1)
174 {
175 perror ("decompress");
176 exit (1);
177 } 303 }
178
179 fwrite (buff2, cs, 1, stdout);
180 } 304 }
181 else 305
306 return 0;
307
308short_read:
309 fprintf (stderr, "%s: short data\n", imagename);
310 return -1;
311}
312
313static int
314open_out (const char *name)
315{
316 int fd;
317 int m = O_EXCL;
318
319 if (force)
320 m = 0;
321
322 fd = open (name, O_CREAT | O_WRONLY | O_TRUNC | m, 600);
323#if defined(__MINGW32__)
324 _setmode(fd, _O_BINARY);
325#endif
326 return fd;
327}
328
329static int
330compose_name (const char *fname, char *oname)
331{
332 char *p;
333
334 if (mode == compress)
335 {
336 if (strlen (fname) > PATH_MAX - 4)
182 { 337 {
183 fprintf (stderr, "decompress: invalid stream - unknown block type\n"); 338 fprintf (stderr, "%s: %s.lzf: name too long", imagename, fname);
184 exit (1); 339 return -1;
185 } 340 }
341
342 strcpy (oname, fname);
343 strcat (oname, ".lzf");
186 } 344 }
345 else
346 {
347 if (strlen (fname) > PATH_MAX)
348 {
349 fprintf (stderr, "%s: %s: name too long\n", imagename, fname);
350 return -1;
351 }
352
353 strcpy (oname, fname);
354 p = &oname[strlen (oname)] - 4;
355 if (p < oname || strcmp (p, ".lzf"))
356 {
357 fprintf (stderr, "%s: %s: unknown suffix\n", imagename, fname);
358 return -1;
359 }
360
361 *p = 0;
362 }
363
364 return 0;
365}
366
367static int
368run_file (const char *fname)
369{
370 int fd, fd2;
371 int rc;
372 struct stat mystat;
373 char oname[PATH_MAX + 1];
374
375 if (mode != lzcat)
376 if (compose_name (fname, oname))
377 return -1;
378
379#if !defined(__MINGW32__)
380 rc = lstat (fname, &mystat);
381#else
382 rc = stat (fname, &mystat);
383#endif
384 fd = open (fname, O_RDONLY);
385#if defined(__MINGW32__)
386 _setmode(fd, _O_BINARY);
387#endif
388 if (rc || fd == -1)
389 {
390 fprintf (stderr, "%s: %s: ", imagename, fname);
391 perror ("");
392 return -1;
393 }
394
395 if (!S_ISREG (mystat.st_mode))
396 {
397 fprintf (stderr, "%s: %s: not a regular file.\n", imagename, fname);
398 close (fd);
399 return -1;
400 }
401
402 if (mode == lzcat)
403 {
404 rc = uncompress_fd (fd, 1);
405 close (fd);
406 return rc;
407 }
408
409 fd2 = open_out (oname);
410 if (fd2 == -1)
411 {
412 fprintf (stderr, "%s: %s: ", imagename, oname);
413 perror ("");
414 close (fd);
415 return -1;
416 }
417
418 if (mode == compress)
419 {
420 rc = compress_fd (fd, fd2);
421 if (!rc && verbose)
422 fprintf (stderr, "%s: %5.1f%% -- replaced with %s\n",
423 fname, nr_read == 0 ? 0 : 100.0 - nr_written / ((double) nr_read / 100.0), oname);
424 }
425 else
426 {
427 rc = uncompress_fd (fd, fd2);
428 if (!rc && verbose)
429 fprintf (stderr, "%s: %5.1f%% -- replaced with %s\n",
430 fname, nr_written == 0 ? 0 : 100.0 - nr_read / ((double) nr_written / 100.0), oname);
431 }
432
433#if !defined(__MINGW32__)
434 fchmod (fd2, mystat.st_mode);
435#else
436 chmod (oname, mystat.st_mode);
437#endif
438 close (fd);
439 close (fd2);
440
441 if (!rc)
442 unlink (fname);
443
444 return rc;
187} 445}
188 446
189int 447int
190main (int argc, char *argv[]) 448main (int argc, char *argv[])
191{ 449{
450 char *p = argv[0];
192 int c; 451 int optc;
193 unsigned int blocksize = 64*1024-1; 452 int rc = 0;
194 enum { m_compress, m_decompress } mode = m_compress;
195 453
454 errno = 0;
455 p = getenv ("LZF_BLOCKSIZE");
456 if (p)
457 {
458 blocksize = strtoul (p, 0, 0);
459 if (errno || !blocksize || blocksize > MAX_BLOCKSIZE)
460 blocksize = BLOCKSIZE;
461 }
462
463 p = strrchr (argv[0], '/');
464 imagename = p ? ++p : argv[0];
465
466 if (!strncmp (imagename, "un", 2) || !strncmp (imagename, "de", 2))
467 mode = uncompress;
468
469 if (strstr (imagename, "cat"))
470 mode = lzcat;
471
472#ifdef HAVE_GETOPT_LONG
473 while ((optc = getopt_long (argc, argv, "cdfhvb:", longopts, 0)) != -1)
474#else
196 while ((c = getopt (argc, argv, "cdb:h")) != -1) 475 while ((optc = getopt (argc, argv, "cdfhvb:")) != -1)
476#endif
477 {
197 switch (c) 478 switch (optc)
198 { 479 {
199 case 'c': 480 case 'c':
200 mode = m_compress; 481 mode = compress;
201 break; 482 break;
202
203 case 'd': 483 case 'd':
204 mode = m_decompress; 484 mode = uncompress;
205 break; 485 break;
206
207 case 'b': 486 case 'f':
208 blocksize = atol (optarg); 487 force = 1;
209 break; 488 break;
210
211 case 'h': 489 case 'h':
212 usage (0); 490 usage (0);
213 491 break;
214 case ':':
215 fprintf (stderr, "required argument missing, use -h\n");
216 exit (1);
217
218 case '?': 492 case 'v':
219 fprintf (stderr, "unknown option, use -h\n"); 493 verbose = 1;
220 exit (1); 494 break;
221 495 case 'b':
496 errno = 0;
497 blocksize = strtoul (optarg, 0, 0);
498 if (errno || !blocksize || blocksize > MAX_BLOCKSIZE)
499 blocksize = BLOCKSIZE;
500 break;
222 default: 501 default:
223 usage (1); 502 usage (1);
503 break;
224 } 504 }
505 }
225 506
507 if (optind == argc)
508 { // stdin stdout
509 if (!force)
510 {
511 if ((mode == uncompress || mode == lzcat) && isatty (0))
512 {
513 fprintf (stderr, "%s: compressed data not read from a terminal. Use -f to force decompression.\n", imagename);
514 exit (1);
515 }
516 if (mode == compress && isatty (1))
517 {
518 fprintf (stderr, "%s: compressed data not written to a terminal. Use -f to force compression.\n", imagename);
519 exit (1);
520 }
521 }
522
226 if (mode == m_compress) 523 if (mode == compress)
227 compress (blocksize); 524 rc = compress_fd (0, 1);
228 else if (mode == m_decompress)
229 decompress ();
230 else 525 else
231 abort (); 526 rc = uncompress_fd (0, 1);
232 527
233 return 0; 528 exit (rc ? 1 : 0);
529 }
530
531 while (optind < argc)
532 rc |= run_file (argv[optind++]);
533
534 exit (rc ? 1 : 0);
234} 535}
536

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines