File: extractcontrol.c

package info (click to toggle)
reprepro 1.3.1%2B1-1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,660 kB
  • ctags: 1,621
  • sloc: ansic: 22,424; sh: 2,032; python: 138; makefile: 127
file content (398 lines) | stat: -rw-r--r-- 9,923 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/*  This file is part of "reprepro"
 *  Copyright (C) 2003 Bernhard R. Link
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as 
 *  published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02111-1301  USA
 */
#include <config.h>

#include <errno.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <getopt.h>
#include <string.h>
#include <malloc.h>
#include <zlib.h>
#include "error.h"
#include "md5sum.h"
#include "chunks.h"
#include "debfile.h"

#ifdef HAVE_LIBARCHIVE
#error Why did this file got compiled instead of debfile.c?
#endif
// **********************************************************************
// * This is a very simple implementation calling ar and tar, which
// * is only used with --without-libarchive or when no libarchive was 
// * found.
// **********************************************************************

static retvalue try_extractcontrol(char **control,const char *debfile, bool_t brokentar) {
	int pipe1[2];
	int pipe2[2];
	int ret;
	pid_t ar,tar,pid;
	int status;
	char *controlchunk;

	retvalue result,r;

	result = RET_OK;

	ret = pipe(pipe1);
	if( ret < 0 ) {
		int e = errno;
		fprintf(stderr, "Error while creating pipe: %d=%s\n",e,strerror(e));
		return RET_ERRNO(e);
	}

	ret = pipe(pipe2);
	if( ret < 0 ) {
		int e = errno;
		close(pipe1[0]);close(pipe1[1]);
		fprintf(stderr, "Error while creating pipe: %d=%s\n",e,strerror(e));
		return RET_ERRNO(e);
	}
	
	ar = fork();
	if( ar < 0 ) {
		int e = errno;
		fprintf(stderr, "Error while forking: %d=%s\n",e,strerror(e));
		result = RET_ERRNO(e);
		close(pipe1[0]);close(pipe1[1]);
		close(pipe2[0]);close(pipe2[1]);
		return result;
	}

	if( ar == 0 ) {
		/* calling ar */
		if( dup2(pipe1[1],1) < 0 )
			exit(255);
		close(pipe1[0]);close(pipe1[1]);
		close(pipe2[0]);close(pipe2[1]);
		//TODO without explicit path
		ret = execl("/usr/bin/ar","ar","p",debfile,"control.tar.gz",NULL);
		fprintf(stderr,"calling ar failed: %m\n");
		exit(254);
	}

	tar = fork();
	if( tar < 0 ) {
		int e = errno;
		result = RET_ERRNO(e);
		fprintf(stderr, "Error while forking: %d=%s\n",e,strerror(e));
		close(pipe1[0]);close(pipe1[1]);
		close(pipe2[0]);close(pipe2[1]);
		tar = -1;
	} else if( tar == 0 ) {
		/* calling tar */
		if( dup2(pipe1[0],0) < 0 )
			exit(255);
		if( dup2(pipe2[1],1) < 0 )
			exit(255);
		close(pipe1[0]);close(pipe1[1]);
		close(pipe2[0]);close(pipe2[1]);
		//TODO without explicit path
		execl("/bin/tar", "tar", "-xOzf", "-",
				brokentar?"control":"./control", NULL);
		fprintf(stderr,"calling tar failed: %m\n");
		exit(254);
		
	}

	close(pipe1[0]);close(pipe1[1]);
	close(pipe2[1]);

	/* read data: */
	if( RET_IS_OK(result) ) {
		gzFile f;
		//TODO: making a gzdopen here is kinda stupid...
		f = gzdopen(pipe2[0],"r");
		if( f == NULL ) {
			fprintf(stderr,"Error opening gzip-stream for pipe!\n");
			RET_UPDATE(result,RET_ERROR);
		} else {
			r = chunk_read(f,&controlchunk);
			if( r == RET_NOTHING ) {
				controlchunk = NULL;
				fprintf(stderr,"Got no control information from .deb!\n");
				/* only report error now if we haven't try everything yet */
				if( brokentar )
					r = RET_ERROR_MISSING;
			}
			RET_UPDATE(result,r);
			gzclose(f);
		}
	}
	
	/* avoid being a memory leak */
	if( !(RET_IS_OK(result)) )
		controlchunk = NULL;

	while( ar != -1 || tar != -1 ) {
		pid=wait(&status);
		if( pid < 0 ) {
			if( errno != EINTR )
				RET_UPDATE(result,RET_ERRNO(errno));
		} else {
			if( pid == ar ) {
				ar = -1;
				if( !WIFEXITED(status) ) {
					fprintf(stderr,"Ar exited unnaturally!\n");
					result = RET_ERROR;
				} else if( WEXITSTATUS(status) != 0) {
					fprintf(stderr,"Error from ar: %d\n",WEXITSTATUS(status));
					result = RET_ERROR;
				}
			} else if( pid == tar ) {
				tar = -1;
				if( !WIFEXITED(status) ) {
					fprintf(stderr,"Tar exited unnaturally!\n");
					result = RET_ERROR;
				} else if( !brokentar && WEXITSTATUS(status) == 2 ) {
					if( RET_IS_OK(result) )
						result = RET_NOTHING;
				} else if( WEXITSTATUS(status) != 0 ) {
					fprintf(stderr,"Error from tar: %d\n",WEXITSTATUS(status));
					result = RET_ERROR;
				}
			} else {
				// WTH?
				fprintf(stderr,"Who is %d, and why does this bother me?\n",pid);
			}
		}
		
	}
	if( RET_IS_OK(result) ) {
		if( controlchunk == NULL )
			/* we got not data but tar gave not error.. */
			return RET_ERROR_MISSING;
		else
			*control = controlchunk;
	} else
		free(controlchunk);
	return result;
}

retvalue extractcontrol(char **control,const char *debfile) {
	retvalue r;

	r = try_extractcontrol(control, debfile, FALSE);
	if( r != RET_NOTHING )
		return r;
	/* perhaps the control.tar.gz is packaged by hand wrongly,
	 * try again: */
	r = try_extractcontrol(control, debfile, TRUE);
	if( RET_IS_OK(r) ) {
		fprintf(stderr, "WARNING: '%s' contains a broken/unusual control.tar.gz.\n"
				"reprepro was able to work around this but other tools or versions might not.\n", debfile);
	}
	assert( r != RET_NOTHING );
	return r;
}

retvalue getfilelist(/*@out@*/char **filelist, const char *debfile) {
	int pipe1[2];
	int pipe2[2];
	int ret;
	pid_t ar,tar,pid;
	int status;
	char *list = NULL;
	size_t listsize = 0;
	size_t len=0, last = 0;
	retvalue result;

	result = RET_OK;

	ret = pipe(pipe1);
	if( ret < 0 ) {
		int e = errno;
		fprintf(stderr, "Error while creating pipe: %d=%s\n",e,strerror(e));
		return RET_ERRNO(e);
	}

	ret = pipe(pipe2);
	if( ret < 0 ) {
		int e = errno;
		fprintf(stderr, "Error while creating pipe: %d=%s\n",e,strerror(e));
		close(pipe1[0]);close(pipe1[1]);
		return RET_ERRNO(e);
	}
	
	ar = fork();
	if( ar < 0 ) {
		int e = errno;
		fprintf(stderr, "Error while forking: %d=%s\n",e,strerror(e));
		result = RET_ERRNO(e);
		close(pipe1[0]);close(pipe1[1]);
		close(pipe2[0]);close(pipe2[1]);
		return result;
	}

	if( ar == 0 ) {
		/* calling ar */
		if( dup2(pipe1[1],1) < 0 )
			exit(255);
		close(pipe1[0]);close(pipe1[1]);
		close(pipe2[0]);close(pipe2[1]);
		//TODO without explicit path
		ret = execl("/usr/bin/ar","ar","p",debfile,"data.tar.gz",NULL);
		fprintf(stderr,"calling ar failed: %m\n");
		exit(254);
	}

	tar = fork();
	if( tar < 0 ) {
		int e = errno;
		result = RET_ERRNO(e);
		fprintf(stderr, "Error while forking: %d=%s\n",e,strerror(e));
		close(pipe1[0]);close(pipe1[1]);
		close(pipe2[0]);close(pipe2[1]);
		tar = -1;
	} else if( tar == 0 ) {
		/* calling tar */
		if( dup2(pipe1[0],0) < 0 )
			exit(255);
		if( dup2(pipe2[1],1) < 0 )
			exit(255);
		close(pipe1[0]);close(pipe1[1]);
		close(pipe2[0]);close(pipe2[1]);
		//TODO without explicit path
		execl("/bin/tar","tar","-tzf","-",NULL);
		fprintf(stderr,"calling tar failed: %m\n");
		exit(254);
		
	}

	close(pipe1[0]);close(pipe1[1]);
	close(pipe2[1]);

	/* read data: */
	if( RET_IS_OK(result) ) do {
		ssize_t bytes_read;
		size_t ignore;

		if( listsize <= len + 512 ) {
			char *n;

			listsize = len + 1024;
			n = realloc(list, listsize);
			if( n == NULL ) {
				result = RET_ERROR_OOM;
				break;
			}
			list = n;
		}

		ignore = 0;
		bytes_read = read(pipe2[0], list+len, listsize-len-1);
		if( bytes_read < 0 ) {
			int e = errno;
			fprintf(stderr, "Error reading from pipe: %d=%s\n",
					e, strerror(e));
			result = RET_ERRNO(e);
			break;
		} else if( bytes_read == 0 )
			break;
		else while( bytes_read > 0 ) {
			if( list[len] == '\0' ) {
				fprintf(stderr, "Unexpected NUL character from tar while getting filelist from %s!\n",debfile);
				result = RET_ERROR;
				break;
			} else if( list[len] == '\n' ) {
				if( len > last+ignore && list[len-1] != '/' ) {
					list[len] = '\0';
					len++;
					bytes_read--;
					memmove(list+last, list+last+ignore,
						1+len-last-ignore);
					last = len-ignore;
				} else {
					len++;
					bytes_read--;
					ignore = len-last;
				}
			} else if( list[len] == '.' && len == last+ignore ) {
				len++; ignore++;
				bytes_read--;
			} else if( list[len] == '/' && len == last+ignore ) {
				len++; ignore++;
				bytes_read--;
			} else {
				len++;
				bytes_read--;
			}
		}
		if( ignore > 0 ) {
			if( len > last+ignore )
				len = last;
			else {
				memmove(list+last, list+last+ignore, 
						1+len-last-ignore);
				len -= ignore;
			}
		}
	} while( TRUE );
	if( len != last ) {
		fprintf(stderr, "WARNING: unterminated output from tar over pipe while extracting filelist of %s\n",debfile);
		list[len] = '\0';
		fprintf(stderr, "The item '%s' might got lost.\n",
				list+last);
		result = RET_ERROR;
	} else {
		char *n = realloc(list,len+1);
		if( n == NULL )
			result = RET_ERROR_OOM;
		else {
			list = n;
			list[len] = '\0';
		}
	}
	close(pipe2[0]);
	
	while( ar != -1 || tar != -1 ) {
		pid=wait(&status);
		if( pid < 0 ) {
			if( errno != EINTR )
				RET_UPDATE(result,RET_ERRNO(errno));
		} else {
			if( pid == ar ) {
				ar = -1;
				if( !WIFEXITED(status) || 
						WEXITSTATUS(status) != 0) {
					fprintf(stderr,"Error from ar: %d\n",WEXITSTATUS(status));
					result = RET_ERROR;
				}
			} else if( pid == tar ) {
				tar = -1;
				if( !WIFEXITED(status) || 
						WEXITSTATUS(status) != 0 ) {
					fprintf(stderr,"Error from tar: %d\n",WEXITSTATUS(status));
					result = RET_ERROR;
				}
			} else {
				// WTH?
				fprintf(stderr,"Who is %d, and why does this bother me?\n",pid);
			}
		}
		
	}
	if( RET_IS_OK(result) )
		*filelist = list;
	else
		free(list);
	return result;
}