File: extractcontrol.c

package info (click to toggle)
reprepro 5.3.0-1.2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,960 kB
  • sloc: ansic: 52,311; sh: 1,875; python: 1,625; makefile: 167
file content (458 lines) | stat: -rw-r--r-- 11,231 bytes parent folder | download | duplicates (8)
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/*  This file is part of "reprepro"
 *  Copyright (C) 2003,2007 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 "error.h"
#include "filecntl.h"
#include "readtextfile.h"
#include "debfile.h"
#include "chunks.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 brokentar) {
	int pipe_1[2];
	int pipe_2[2];
	int ret;
	pid_t ar, tar, pid;
	int status;
	char *controlchunk;

	retvalue result, r;

	result = RET_OK;

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

	ret = pipe(pipe_2);
	if (ret < 0) {
		int e = errno;
		close(pipe_1[0]); close(pipe_1[1]);
		fprintf(stderr, "Error %d creating pipe: %s\n", e, strerror(e));
		return RET_ERRNO(e);
	}

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

	if (ar == 0) {
		int e;
		/* calling ar */
		if (dup2(pipe_1[1], 1) < 0)
			exit(255);
		close(pipe_1[0]); close(pipe_1[1]);
		close(pipe_2[0]); close(pipe_2[1]);
		//TODO without explicit path
		ret = execl("/usr/bin/ar",
				"ar", "p", debfile, "control.tar.gz",
				ENDOFARGUMENTS);
		e = errno;
		fprintf(stderr, "ar call failed with error %d: %s\n",
				e, strerror(e));
		exit(254);
	}

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

	}

	close(pipe_1[0]); close(pipe_1[1]);
	markcloseonexec(pipe_2[0]); close(pipe_2[1]);

	controlchunk = NULL;

	/* read data: */
	if (RET_IS_OK(result)) {
		size_t len, controllen;
		const char *afterchanges;

		r = readtextfilefd(pipe_2[0],
				brokentar?
"output from ar p <debfile> control.tar.gz | tar -xOzf - control":
"output from ar p <debfile> control.tar.gz | tar -xOzf - ./control",
				&controlchunk, &controllen);
		if (RET_IS_OK(r)) {
			len = chunk_extract(controlchunk,
					controlchunk, controllen,
					false, &afterchanges);
			if (len == 0)
				r = RET_NOTHING;
			if (*afterchanges != '\0') {
				fprintf(stderr,
"Unexpected empty line in control information within '%s'\n"
"(obtained via 'ar p %s control.tar.gz | tar -XOzf - %scontrol')\n",
						debfile, debfile,
						brokentar?"":"./");
				free(controlchunk);
				controlchunk = NULL;
				r = RET_ERROR;
			}
		}
		if (r == RET_NOTHING) {
			free(controlchunk);
			controlchunk = NULL;
			fprintf(stderr,
"No control information found in .deb!\n");
			/* only report error now,
			 * if we haven't try everything yet */
			if (brokentar)
				r = RET_ERROR_MISSING;
		}
		RET_UPDATE(result, r);

	}

	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 for '%s': %d\n", debfile, 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 for control.tar.gz within '%s': %d\n",
							debfile,
							WEXITSTATUS(status));
					result = RET_ERROR;
				}
			} else {
				// WTH?
				fprintf(stderr,
"Who is %d, and why does this bother me?\n", (int)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, /*@out@*/size_t *size, const char *debfile) {
	fprintf(stderr,
"Extraction of file list without libarchive currently not implemented.\n");
	return RET_ERROR;
#if 0
	int pipe_1[2];
	int pipe_2[2];
	int ret;
	pid_t ar, tar, pid;
	int status;
	struct filelistcompressor c;
	size_t last = 0;
	retvalue result;

#error this still needs to be reimplemented...
	result = filelistcompressor_setup(&c);
	if (RET_WAS_ERROR(result))
		return result;

	result = RET_OK;

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

	ret = pipe(pipe_2);
	if (ret < 0) {
		int e = errno;
		fprintf(stderr, "Error %d creating pipe: %s\n", e, strerror(e));
		close(pipe_1[0]); close(pipe_1[1]);
		filelistcompressor_cancel(&c);
		return RET_ERRNO(e);
	}

	ar = fork();
	if (ar < 0) {
		int e = errno;
		fprintf(stderr, "Error %d forking: %s\n", e, strerror(e));
		result = RET_ERRNO(e);
		close(pipe_1[0]); close(pipe_1[1]);
		close(pipe_2[0]); close(pipe_2[1]);
		filelistcompressor_cancel(&c);
		return result;
	}

	if (ar == 0) {
		int e;
		/* calling ar */
		if (dup2(pipe_1[1], 1) < 0)
			exit(255);
		close(pipe_1[0]); close(pipe_1[1]);
		close(pipe_2[0]); close(pipe_2[1]);
		//TODO without explicit path
		ret = execl("/usr/bin/ar",
				"ar", "p", debfile, "data.tar.gz",
				ENDOFARGUMENTS);
		e = errno;
		fprintf(stderr, "ar call failed with error %d: %s\n",
				e, strerror(e));
		exit(254);
	}

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

	}

	close(pipe_1[0]); close(pipe_1[1]);
	close(pipe_2[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 (FAILEDTOALLOC(n)) {
				result = RET_ERROR_OOM;
				break;
			}
			list = n;
		}

		ignore = 0;
		bytes_read = read(pipe_2[0], list+len, listsize-len-1);
		if (bytes_read < 0) {
			int e = errno;
			fprintf(stderr, "Error %d reading from pipe: %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 file list 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 pipe while extracting file list 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 (FAILEDTOALLOC(n))
			result = RET_ERROR_OOM;
		else {
			list = n;
			list[len] = '\0';
		}
	}
	close(pipe_2[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 for '%s': %d\n", debfile, WEXITSTATUS(status));
					result = RET_ERROR;
				}
			} else if (pid == tar) {
				tar = -1;
				if (!WIFEXITED(status) ||
						WEXITSTATUS(status) != 0) {
					fprintf(stderr,
"Error from tar for data.tar.gz within '%s': %d\n",
							debfile,
							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))
		return filelistcompressor_finish(&c, filelist);
	else
		filelistcompressor_cancel(&c);
	return result;
#endif
}