summaryrefslogtreecommitdiffstats
path: root/src/opk.c
blob: a6cafce51ded8038e076843aab4d96aff1360e4d (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
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
/*
 * Copyright (C) 2023  Patrick McDermott
 *
 * This file is part of opkg-opkg.
 *
 * opkg-opkg is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * opkg-opkg 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 opkg-opkg.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "defs.h"
#include "gzip.h"
#include "i18n.h"
#include "opk.h"
#include "ustar.h"

struct opkg_opk_opk {
	struct opkg_opk_ustar_seek_name *print_control;
	int                              list_data;
	FILE                            *file;
	char                             file_buffer[8192];
	struct opkg_opk_gzip            *outer_gzip;
	struct opkg_opk_ustar           *outer_ustar;
	char                            *version_buffer;
	size_t                           version_size;
	struct opkg_opk_gzip            *inner_gzip;
	struct opkg_opk_ustar           *inner_ustar;
	int                              previously_printed;
};

struct opkg_opk_opk *
opkg_opk_opk_init(void)
{
	struct opkg_opk_opk *opk;

	opk = malloc(sizeof(*opk));
	if (opk == NULL) {
		return NULL;
	}

	opk->print_control      = NULL;
	opk->list_data          = 0;
	opk->previously_printed = 0;

	return opk;
}

int
opkg_opk_opk_print_control(struct opkg_opk_opk *opk, const char *name)
{
	return opkg_opk_ustar_add_seek_name(&opk->print_control, name);
}

int
opkg_opk_opk_list_data(struct opkg_opk_opk *opk)
{
	opk->list_data = 1;
	return OPKG_OPK_OK;
}

static int
_opkg_opk_opk_file_read(void *user_data, char **buffer, size_t *size)
{
	struct opkg_opk_opk *opk = user_data;

	*buffer = opk->file_buffer;
	*size   = fread(opk->file_buffer, 1, sizeof(opk->file_buffer),
			opk->file);
	if (feof(opk->file)) {
		return OPKG_OPK_END;
	} else if (ferror(opk->file) || *size == 0) {
		return OPKG_OPK_ERROR;
	} else {
		return OPKG_OPK_OK;
	}
}

static int
_opkg_opk_opk_init_inner(struct opkg_opk_opk *opk, const char *member)
{
	int ret;

	/* Finish reading previous inner archive, if any. */
	while ((ret = opkg_opk_ustar_read(opk->outer_ustar, NULL, NULL)) ==
			OPKG_OPK_OK);
	if (ret == OPKG_OPK_ERROR) {
		fputs(_("Error: Failed to read archive\n"), stderr);
		return OPKG_OPK_ERROR;
	}

	/* Find requested inner archive. */
	if (opkg_opk_ustar_seek_one(opk->outer_ustar, member) != OPKG_OPK_OK) {
		fprintf(stderr, _("Error: Failed to find \"%s\" in archive\n"),
				member);
		return OPKG_OPK_ERROR;
	}

	/* Initialize inner gzip decompressor. */
	opk->inner_gzip = opkg_opk_gzip_init_read(
			(opkg_opk_gzip_read_func *) &opkg_opk_ustar_read,
			opk->outer_ustar);
	if (opk->inner_gzip == NULL) {
		fputs(_("Error: Failed to initialize\n"), stderr);
		return OPKG_OPK_ERROR;
	}

	/* Initialize inner ustar unarchiver. */
	opk->inner_ustar = opkg_opk_ustar_init(opk->inner_gzip);
	if (opk->inner_ustar == NULL) {
		fputs(_("Error: Failed to initialize\n"), stderr);
		opkg_opk_gzip_free(opk->inner_gzip);
		return OPKG_OPK_ERROR;
	}

	return OPKG_OPK_OK;
}

static void
_opkg_opk_opk_free_inner(struct opkg_opk_opk *opk)
{
	opkg_opk_ustar_free(opk->inner_ustar);
	opkg_opk_gzip_free(opk->inner_gzip);
}

static int
_opkg_opk_opk_read_control(struct opkg_opk_opk *opk)
{
	char   *buffer;
	size_t  size;
	int     ret_seek;
	int     ret_read;

	if (opk->print_control == NULL) {
		/* No control files requested. */
		return OPKG_OPK_OK;
	}

	if (_opkg_opk_opk_init_inner(opk, "control.tar.gz") != OPKG_OPK_OK) {
		return OPKG_OPK_ERROR;
	}

	while ((ret_seek = opkg_opk_ustar_seek(opk->inner_ustar,
					opk->print_control)) != OPKG_OPK_ERROR)
	{
		if (opk->previously_printed == 1) {
			puts("");
		}
		while ((ret_read = opkg_opk_ustar_read(opk->inner_ustar,
						&buffer, &size)) == OPKG_OPK_OK)
		{
			if (fwrite(buffer, 1, size, stdout) != size) {
				fputs(_("Error: Failed to print control file\n")
						, stderr);
				_opkg_opk_opk_free_inner(opk);
				return OPKG_OPK_ERROR;
			}
		}
		if (ret_read == OPKG_OPK_ERROR) {
			fputs(_("Error: Failed to read control file\n"),
					stderr);
			_opkg_opk_opk_free_inner(opk);
			return OPKG_OPK_ERROR;
		}
		opk->previously_printed = 1;
		if (ret_seek == OPKG_OPK_END) {
			break;
		}
	}
	if (ret_seek == OPKG_OPK_ERROR) {
		fputs(_("Error: Failed to find control file\n"), stderr);
		_opkg_opk_opk_free_inner(opk);
		return OPKG_OPK_ERROR;
	}

	_opkg_opk_opk_free_inner(opk);

	return OPKG_OPK_OK;
}

static int
_opkg_opk_opk_list_members(struct opkg_opk_opk *opk)
{
	struct opkg_opk_ustar_member *head;
	struct opkg_opk_ustar_member *tail;
	struct opkg_opk_ustar_member *member;
	int                           ret;
	size_t                        uname_len;
	size_t                        uname_len_max;
	size_t                        gname_len;
	size_t                        gname_len_max;
	uint64_t                      size_max;
	long int                      size_len_max;
	char                          fmt[28];
	                              /* "%c%s %-32s/%-32s %11d %s %s" */
	size_t                        len;
	char                          mode[10];
	char                          mtime[20];

	if (opk->list_data == 0) {
		/* Not listing data. */
		return OPKG_OPK_OK;
	}

	if (opk->previously_printed == 1) {
		puts("");
	}

	if (_opkg_opk_opk_init_inner(opk, "data.tar.gz") != OPKG_OPK_OK) {
		return OPKG_OPK_ERROR;
	}

	/* Build singly-linked list and find maximum column widths. */
	head = NULL;
	tail = NULL;
	uname_len_max = 0;
	gname_len_max = 0;
	size_max      = 0;
	while ((ret = opkg_opk_ustar_list(opk->inner_ustar, &member)) ==
			OPKG_OPK_OK) {
		if (head == NULL) {
			head = member;
		} else {
			tail->next = member;
		}
		tail = member;
		uname_len = strlen(member->uname);
		if (uname_len > uname_len_max) {
			uname_len_max = uname_len;
		}
		gname_len = strlen(member->gname);
		if (gname_len > gname_len_max) {
			gname_len_max = gname_len;
		}
		if (member->size > size_max) {
			size_max = member->size;
		}
	}
	if (ret == OPKG_OPK_ERROR) {
		fputs(_("Error: Failed to list data files\n"), stderr);
		_opkg_opk_opk_free_inner(opk);
		return OPKG_OPK_ERROR;
	}
	if (tail != NULL) {
		tail->next = NULL;
	}

	/* Print and free members. */
	ret = OPKG_OPK_OK;
	size_len_max = lrint(ceil(log10(size_max)));
	snprintf(fmt, sizeof(fmt), "%%c%%s %%-%zus/%%-%zus %%%lid %%s %%s",
			uname_len_max, gname_len_max, size_len_max);
	len = 34 + uname_len_max + gname_len_max + size_len_max;
	for (member = head; member != NULL;) {
		if (member->mode & 00400) mode[0] = 'r'; else mode[0] = '-';
		if (member->mode & 00200) mode[1] = 'w'; else mode[1] = '-';
		if (member->mode & 00100) mode[2] = 'x'; else mode[2] = '-';
		if (member->mode & 04000) mode[2] = 's';
		if (member->mode & 00040) mode[3] = 'r'; else mode[3] = '-';
		if (member->mode & 00020) mode[4] = 'w'; else mode[4] = '-';
		if (member->mode & 00010) mode[5] = 'x'; else mode[5] = '-';
		if (member->mode & 02000) mode[5] = 's';
		if (member->mode & 00004) mode[6] = 'r'; else mode[6] = '-';
		if (member->mode & 00002) mode[7] = 'w'; else mode[7] = '-';
		if (member->mode & 00001) mode[8] = 'x'; else mode[8] = '-';
		if (member->mode & 01000) mode[8] = 't';
		mode[9] = '\0';
		strftime(mtime, sizeof(mtime), "%Y-%m-%d %H:%M:%S",
				localtime(&member->mtime));
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
		if (printf(fmt, member->type, mode,
				member->uname, member->gname,
				member->size, mtime, member->name) !=
				(int) (len + strlen(member->name))) {
			ret = OPKG_OPK_ERROR;
		}
#pragma GCC diagnostic pop
		if (member->type == 'l' && printf(" -> %s", member->linkname) !=
				(int) (strlen(member->linkname) + 4)) {
			ret = OPKG_OPK_ERROR;
		}
		if (puts("") == EOF) {
			ret = OPKG_OPK_ERROR;
		}
		head   = member;
		member = member->next;
		free(head);
	}

	opk->previously_printed = 1;

	_opkg_opk_opk_free_inner(opk);

	return ret;
}

int
opkg_opk_opk_read(struct opkg_opk_opk *opk, const char *file_name)
{
	int ret;

	ret = OPKG_OPK_OK;

	/* Open outer archive. */
	opk->file = fopen(file_name, "rb");
	if (opk->file == NULL) {
		fprintf(stderr, _("Error: Failed to open file \"%s\"\n"),
				file_name);
		ret = OPKG_OPK_ERROR;
		goto out0;
	}

	/* Initialize outer gzip decompressor. */
	opk->outer_gzip = opkg_opk_gzip_init_read(&_opkg_opk_opk_file_read,
			opk);
	if (opk->outer_gzip == NULL) {
		fputs(_("Error: Failed to initialize\n"), stderr);
		ret = OPKG_OPK_ERROR;
		goto out1;
	}

	/* Initialize outer ustar unarchiver. */
	opk->outer_ustar = opkg_opk_ustar_init(opk->outer_gzip);
	if (opk->outer_ustar == NULL) {
		fputs(_("Error: Failed to initialize\n"), stderr);
		ret = OPKG_OPK_ERROR;
		goto out2;
	}

	/* Check package version. */
	if (opkg_opk_ustar_seek_one(opk->outer_ustar, "debian-binary") !=
			OPKG_OPK_OK) {
		fputs(_("Error: Failed to find \"debian-binary\" in archive\n"),
				stderr);
		ret = OPKG_OPK_ERROR;
		goto out3;
	}
	if (opkg_opk_ustar_read(opk->outer_ustar,
				&opk->version_buffer, &opk->version_size) !=
			OPKG_OPK_OK) {
		fputs(_("Error: Failed to read \"debian-binary\" in archive\n"),
				stderr);
		ret = OPKG_OPK_ERROR;
		goto out3;
	}
	if (opk->version_size < 4 || strncmp(opk->version_buffer, "2.", 2) != 0)
	{
		fputs(_("Error: Unsupported package version\n"), stderr);
		ret = OPKG_OPK_ERROR;
		goto out3;
	}

	/* Perform the configured read actions. */
	if (_opkg_opk_opk_read_control(opk) != OPKG_OPK_OK) {
		ret = OPKG_OPK_ERROR;
		goto out3;
	}
	if (_opkg_opk_opk_list_members(opk) != OPKG_OPK_OK) {
		ret = OPKG_OPK_ERROR;
		goto out3;
	}

 out3:
	opkg_opk_ustar_free(opk->outer_ustar);
 out2:
	opkg_opk_gzip_free(opk->outer_gzip);
 out1:
	fclose(opk->file);
 out0:
	return ret;
}

void
opkg_opk_opk_free(struct opkg_opk_opk *opk)
{
	if (opk->print_control != NULL) {
		opkg_opk_ustar_free_seek_names(opk->print_control);
	}
	free(opk);
}