summaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: f993b3b248df0e6c1295dfc5613648eee3908b59 (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
/*
 * Copyright (C) 2023  Patrick McDermott
 *
 * This file is part of opkg-opk.
 *
 * opkg-opk 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-opk 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-opk.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <stdio.h>
#include <stdlib.h>
#include "defs.h"
#include "gzip.h"
#include "ustar.h"

#define OPKG_OPK_MAIN_FILE_BUFFER_SIZE_ 8192

struct _opkg_opk_main_file {
	FILE *file;
	char  buffer[OPKG_OPK_MAIN_FILE_BUFFER_SIZE_];
};

static int
_opkg_opk_main_file_read(void *user_data, char **buffer, size_t *size)
{
	struct _opkg_opk_main_file *file = user_data;

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

static int
_opkg_opk_main_extract(const char *file_name, const char *outer_member,
		int (*inner_action)(struct opkg_opk_ustar *))
{
	struct _opkg_opk_main_file    file;
	struct opkg_opk_gzip         *outer_gzip;
	struct opkg_opk_ustar        *outer_ustar;
	struct opkg_opk_gzip         *inner_gzip;
	struct opkg_opk_ustar        *inner_ustar;

	file.file = fopen(file_name, "rb");
	if (file.file == NULL) {
		fprintf(stderr, "Error: Failed to open file \"%s\"\n",
				file_name);
		goto error0;
	}

	outer_gzip = opkg_opk_gzip_init(&_opkg_opk_main_file_read, &file);
	if (outer_gzip == NULL) {
		fputs("Error: Failed to initialize\n", stderr);
		goto error1;
	}

	outer_ustar = opkg_opk_ustar_init(outer_gzip);
	if (outer_ustar == NULL) {
		fputs("Error: Failed to initialize\n", stderr);
		goto error2;
	}

	if (opkg_opk_ustar_seek(outer_ustar, outer_member) != OPKG_OPK_OK) {
		fprintf(stderr, "Error: Failed to find \"%s\" in archive\n",
				outer_member);
		goto error3;
	}

	inner_gzip = opkg_opk_gzip_init(
			(opkg_opk_gzip_read_func *) &opkg_opk_ustar_read,
			outer_ustar);
	if (inner_gzip == NULL) {
		fputs("Error: Failed to initialize\n", stderr);
		goto error3;
	}

	inner_ustar = opkg_opk_ustar_init(inner_gzip);
	if (inner_ustar == NULL) {
		fputs("Error: Failed to initialize\n", stderr);
		goto error4;
	}

	if (inner_action(inner_ustar) != OPKG_OPK_OK) {
		fprintf(stderr, "Error: Failed to read \"%s\" in archive\n",
				outer_member);
		goto error5;
	}

	opkg_opk_ustar_free(inner_ustar);
	opkg_opk_gzip_free(inner_gzip);
	opkg_opk_ustar_free(outer_ustar);
	opkg_opk_gzip_free(outer_gzip);
	fclose(file.file);
	return OPKG_OPK_OK;

 error5:
	opkg_opk_ustar_free(inner_ustar);
 error4:
	opkg_opk_gzip_free(inner_gzip);
 error3:
	opkg_opk_ustar_free(outer_ustar);
 error2:
	opkg_opk_gzip_free(outer_gzip);
 error1:
	fclose(file.file);
 error0:
	return OPKG_OPK_ERROR;
}

static int
_opkg_opk_main_read_control(struct opkg_opk_ustar *ustar)
{
	char   *buffer;
	size_t  size;
	int     ret;

	opkg_opk_ustar_seek(ustar, "control");
	while ((ret = opkg_opk_ustar_read(ustar, &buffer, &size)) ==
			OPKG_OPK_OK) {
		fwrite(buffer, 1, size, stdout);
	}
	if (ret == OPKG_OPK_ERROR) {
		return OPKG_OPK_ERROR;
	}

	return OPKG_OPK_OK;
}

static int
_opkg_opk_main_list_members(struct opkg_opk_ustar *ustar)
{
	struct opkg_opk_ustar_member  member;
	int                           ret;

	while ((ret = opkg_opk_ustar_list(ustar, &member)) == OPKG_OPK_OK) {
		puts(member.name);
	}
	if (ret == OPKG_OPK_ERROR) {
		return OPKG_OPK_ERROR;
	}

	return OPKG_OPK_OK;
}

int
main(int argc, char *argv[])
{
//	if (_opkg_opk_main_extract(argv[1], "control.tar.gz",
//			&_opkg_opk_main_read_control) != OPKG_OPK_OK) {
//		return EXIT_FAILURE;
//	}
//	puts("");
	if (_opkg_opk_main_extract(argv[1], "data.tar.gz",
			&_opkg_opk_main_list_members) != OPKG_OPK_OK) {
		return EXIT_FAILURE;
	}

	return EXIT_SUCCESS;
}