summaryrefslogtreecommitdiff
path: root/file/compress.c
blob: 0535d60409667e3d185940564edbda0d82daf0dd (plain)
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

#include "system.h"
#include "file.h"
#include "debug.h"

FILE_RCSID("@(#)Id: compress.c,v 1.25 2002/07/03 18:26:37 christos Exp ")

/*@access fmagic @*/

/*@-nullassign@*/
/*@unchecked@*/
static struct {
/*@observer@*/
	const char *magic;
	int   maglen;
/*@observer@*/
	const char *const argv[3];
	int	 silent;
} compr[] = {
	{ "\037\235", 2, { "gzip", "-cdq", NULL }, 1 },		/* compressed */
	/* Uncompress can get stuck; so use gzip first if we have it
	 * Idea from Damien Clark, thanks! */
	{ "\037\235", 2, { "uncompress", "-c", NULL }, 1 },	/* compressed */
	{ "\037\213", 2, { "gzip", "-cdq", NULL }, 1 },		/* gzipped */
	{ "\037\236", 2, { "gzip", "-cdq", NULL }, 1 },		/* frozen */
	{ "\037\240", 2, { "gzip", "-cdq", NULL }, 1 },		/* SCO LZH */
	/* the standard pack utilities do not accept standard input */
	{ "\037\036", 2, { "gzip", "-cdq", NULL }, 0 },		/* packed */
	{ "BZh",      3, { "bzip2", "-cd", NULL }, 1 },		/* bzip2-ed */
};
/*@=nullassign@*/

/*@unchecked@*/
static int ncompr = sizeof(compr) / sizeof(compr[0]);

/*
 * `safe' write for sockets and pipes.
 */
static int
swrite(int fd, const void *buf, size_t n)
	/*@*/
{
	int rv;
	size_t rn = n;

	do {
		switch (rv = write(fd, buf, n)) {
		case -1:
			if (errno == EINTR)
				continue;
			return -1;
		default:
			n -= rv;
			buf = ((const char *)buf) + rv;
			/*@switchbreak@*/ break;
		}
	} while (n > 0);
	return rn;
}


/*
 * `safe' read for sockets and pipes.
 */
static int
sread(int fd, /*@out@*/ void *buf, size_t n)
	/*@modifies *buf @*/
{
	int rv;
	size_t rn = n;

	do {
		switch (rv = read(fd, buf, n)) {
		case -1:
			if (errno == EINTR)
				continue;
			return -1;
		case 0:
			return rn - n;
		default:
			n -= rv;
			buf = ((char *)buf) + rv;
			/*@switchbreak@*/ break;
		}
	} while (n > 0);
	return rn;
}

int
pipe2file(int fd, void *startbuf, size_t nbytes)
{
	char buf[4096];
	int r, tfd;

	(void)strcpy(buf, "/tmp/file.XXXXXX");
#ifndef HAVE_MKSTEMP
	{
		char *ptr = mktemp(buf);
		tfd = open(ptr, O_RDWR|O_TRUNC|O_EXCL|O_CREAT, 0600);
		r = errno;
		(void)unlink(ptr);
		errno = r;
	}
#else
	tfd = mkstemp(buf);
	r = errno;
	(void)unlink(buf);
	errno = r;
#endif
	if (tfd == -1) {
		error(EXIT_FAILURE, 0, "Can't create temporary file for pipe copy (%s)\n",
		    strerror(errno));
		/*@notreached@*/
	}

	if (swrite(tfd, startbuf, nbytes) != nbytes)
		r = 1;
	else {
		while ((r = sread(fd, buf, sizeof(buf))) > 0)
			if (swrite(tfd, buf, r) != r)
				break;
	}

	switch (r) {
	case -1:
		error(EXIT_FAILURE, 0, "Error copying from pipe to temp file (%s)\n",
		    strerror(errno));
		/*@notreached@*/break;
	case 0:
		break;
	default:
		error(EXIT_FAILURE, 0, "Error while writing to temp file (%s)\n",
		    strerror(errno));
		/*@notreached@*/
	}

	/*
	 * We duplicate the file descriptor, because fclose on a
	 * tmpfile will delete the file, but any open descriptors
	 * can still access the phantom inode.
	 */
	if ((fd = dup2(tfd, fd)) == -1) {
		error(EXIT_FAILURE, 0, "Couldn't dup destcriptor for temp file(%s)\n",
		    strerror(errno));
		/*@notreached@*/
	}
	(void)close(tfd);
	if (lseek(fd, (off_t)0, SEEK_SET) == (off_t)-1) {
		error(EXIT_FAILURE, 0, "Couldn't seek on temp file (%s)\n", strerror(errno));
		/*@notreached@*/
	}
	return fd;
}

#ifdef HAVE_LIBZ

#define FHCRC		(1 << 1)
#define FEXTRA		(1 << 2)
#define FNAME		(1 << 3)
#define FCOMMENT	(1 << 4)

static int
uncompressgzipped(const unsigned char *old,
		/*@out@*/ unsigned char **newch, int n)
	/*@globals fileSystem @*/
	/*@modifies *newch, fileSystem @*/
{
	unsigned char flg = old[3];
	int data_start = 10;
	z_stream z;
	int rc;

	if (flg & FEXTRA)
		data_start += 2 + old[data_start] + old[data_start + 1] * 256;
	if (flg & FNAME) {
		while(old[data_start])
			data_start++;
		data_start++;
	}
	if(flg & FCOMMENT) {
		while(old[data_start])
			data_start++;
		data_start++;
	}
	if(flg & FHCRC)
		data_start += 2;

	*newch = (unsigned char *) xmalloc(HOWMANY + 1);
	
	z.next_in = (Bytef *)(old + data_start);
	z.avail_in = n - data_start;
	z.next_out = *newch;
	z.avail_out = HOWMANY;
	z.zalloc = NULL;
	z.zfree = NULL;
	z.opaque = NULL;

/*@-type@*/
	rc = inflateInit2(&z, -15);
/*@=type@*/
	if (rc != Z_OK) {
		(void) fprintf(stderr,"%s: zlib: %s\n", progname, z.msg);
		return 0;
	}

/*@-type@*/
	rc = inflate(&z, Z_SYNC_FLUSH);
/*@=type@*/
	if (rc != Z_OK && rc != Z_STREAM_END) {
		fprintf(stderr,"%s: zlib: %s\n", progname, z.msg);
		return 0;
	}

	n = z.total_out;
/*@-type@*/
	(void) inflateEnd(&z);
/*@=type@*/
	
	/* let's keep the nul-terminate tradition */
	(*newch)[n++] = '\0';

	return n;
}
#endif

static int
uncompressbuf(int method, const unsigned char *old,
		/*@out@*/ unsigned char **newch, int n)
	/*@globals fileSystem, internalState @*/
	/*@modifies *newch, fileSystem, internalState @*/
{
	int fdin[2], fdout[2];
	pid_t pid;

#ifdef HAVE_LIBZ
	if (method == 2)
		return uncompressgzipped(old,newch,n);
#endif

	if (pipe(fdin) == -1 || pipe(fdout) == -1) {
		error(EXIT_FAILURE, 0, "cannot create pipe (%s).\n", strerror(errno));	
		/*@notreached@*/
	}

	switch ((pid = fork())) {
	case 0:	/* child */
		(void) close(0);
		(void) dup(fdin[0]);
		(void) close(fdin[0]);
		(void) close(fdin[1]);

		(void) close(1);
		(void) dup(fdout[1]);
		(void) close(fdout[0]);
		(void) close(fdout[1]);
		if (compr[method].silent)
			(void) close(2);

		(void) execvp(compr[method].argv[0],
		       (char *const *)compr[method].argv);
		exit(EXIT_FAILURE);
		/*@notreached@*/ break;
	case -1:
		error(EXIT_FAILURE, 0, "could not fork (%s).\n", strerror(errno));
		/*@notreached@*/break;

	default: /* parent */
		(void) close(fdin[0]);
		(void) close(fdout[1]);

		n--; /* The buffer is NUL terminated, and we don't need that. */
		if (swrite(fdin[1], old, n) != n) {
			n = 0;
			goto errxit;
		}
		(void) close(fdin[1]);
		fdin[1] = -1;
		*newch = (unsigned char *) xmalloc(HOWMANY + 1);
		if ((n = sread(fdout[0], *newch, HOWMANY)) <= 0) {
			free(*newch);
			n = 0;
			goto errxit;
		}
 		/* NUL terminate, as every buffer is handled here. */
 		(*newch)[n++] = '\0';
errxit:
		if (fdin[1] != -1)
			(void) close(fdin[1]);
		(void) close(fdout[0]);
		pid = waitpid(pid, NULL, 0);
		return n;
	}
	/*@notreached@*/
	return 0;
}

/*
 * compress routines:
 *	fmagicZ() - returns 0 if not recognized, uncompresses and prints
 *		   information if recognized
 */
int
fmagicZ(fmagic fm)
{
	unsigned char * buf = fm->buf;
	int nb = fm->nb;
	unsigned char * newbuf;
	int newsize;
	int i;

	for (i = 0; i < ncompr; i++) {
		if (nb < compr[i].maglen)
			continue;
		if (memcmp(buf, compr[i].magic, compr[i].maglen) == 0 &&
		    (newsize = uncompressbuf(i, buf, &newbuf, nb)) != 0) {
			fm->buf = newbuf;
			fm->nb = newsize;
			(void) fmagicF(fm, 1);
			fm->buf = buf;
			fm->nb = nb;
/*@-kepttrans@*/
			free(newbuf);
/*@=kepttrans@*/
			printf(" (");
			(void) fmagicF(fm, 0);
			printf(")");
			return 1;
		}
	}

	if (i == ncompr)
		return 0;

	return 1;
}