summaryrefslogtreecommitdiffstats
path: root/src/img3.c
blob: cf2e91c744392af13bd572c6bbd3cd6d244811fd (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
/*
 * img3.c
 * Functions for handling with Apple's IMG3 format
 *
 * Copyright (c) 2010 Joshua Hill. All Rights Reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "img3.h"
#include "idevicerestore.h"

img3_file* img3_parse_file(unsigned char* data, int size) {
	int data_offset = 0;
	img3_header* header = (img3_header*) data;
	if(header->signature != kImg3Container) {
		error("ERROR: Invalid IMG3 file\n");
		return NULL;
	}

	img3_file* image = (img3_file*) malloc(sizeof(img3_file));
	if(image == NULL) {
		error("ERROR: Unable to allocate memory for IMG3 file\n");
		return NULL;
	}
	memset(image, '\0', sizeof(img3_file));

	image->header = (img3_header*) malloc(sizeof(img3_header));
	if(image->header == NULL) {
		error("ERROR: Unable to allocate memory for IMG3 header\n");
		img3_free(image);
		return NULL;
	}
	memcpy(image->header, data, sizeof(img3_header));
	data_offset += sizeof(img3_header);

	img3_element_header* current = NULL;
	while(data_offset < size) {
		current = (img3_element_header*) &data[data_offset];
		switch(current->signature) {
		case kTypeElement:
			image->type_element = img3_parse_element(&data[data_offset]);
			if(image->type_element == NULL) {
				error("ERROR: Unable to parse TYPE element\n");
				img3_free(image);
				return NULL;
			}
			debug("Parsed TYPE element\n");
			break;

		case kDataElement:
			image->data_element = img3_parse_element(&data[data_offset]);
			if(image->data_element == NULL) {
				error("ERROR: Unable to parse DATA element\n");
				img3_free(image);
				return NULL;
			}
			debug("Parsed DATA element\n");
			break;

		case kVersElement:
			image->vers_element = img3_parse_element(&data[data_offset]);
			if(image->vers_element == NULL) {
				error("ERROR: Unable to parse VERS element\n");
				img3_free(image);
				return NULL;
			}
			debug("Parsed VERS element\n");
			break;

		case kSepoElement:
			image->sepo_element = img3_parse_element(&data[data_offset]);
			if(image->sepo_element == NULL) {
				error("ERROR: Unable to parse SEPO element\n");
				img3_free(image);
				return NULL;
			}
			debug("Parsed SEPO element\n");
			break;

		case kBordElement:
			image->bord_element = img3_parse_element(&data[data_offset]);
			if(image->bord_element == NULL) {
				error("ERROR: Unable to parse BORD element\n");
				img3_free(image);
				return NULL;
			}
			debug("Parsed BORD element\n");
			break;

		case kKbagElement:
			if(image->kbag1_element == NULL) {
				image->kbag1_element = img3_parse_element(&data[data_offset]);
				image->kbag1_element = img3_parse_element(&data[data_offset]);
				if(image->kbag1_element == NULL) {
					error("ERROR: Unable to parse first KBAG element\n");
					img3_free(image);
					return NULL;
				}

			} else {
				image->kbag2_element = img3_parse_element(&data[data_offset]);
				image->kbag2_element = img3_parse_element(&data[data_offset]);
				if(image->kbag2_element == NULL) {
					error("ERROR: Unable to parse second KBAG element\n");
					img3_free(image);
					return NULL;
				}
			}
			debug("Parsed KBAG element\n");
			break;

		case kEcidElement:
			image->ecid_element = img3_parse_element(&data[data_offset]);
			if(image->ecid_element == NULL) {
				error("ERROR: Unable to parse ECID element\n");
				img3_free(image);
				return NULL;
			}
			debug("Parsed ECID element\n");
			break;

		case kShshElement:
			image->shsh_element = img3_parse_element(&data[data_offset]);
			if(image->shsh_element == NULL) {
				error("ERROR: Unable to parse SHSH element\n");
				img3_free(image);
				return NULL;
			}
			debug("Parsed SHSH element\n");
			break;

		case kCertElement:
			image->cert_element = img3_parse_element(&data[data_offset]);
			if(image->cert_element == NULL) {
				error("ERROR: Unable to parse CERT element\n");
				img3_free(image);
				return NULL;
			}
			debug("Parsed CERT element\n");
			break;

		default:
			error("ERROR: Unknown IMG3 element type\n");
			img3_free(image);
			return NULL;
		}
		data_offset += current->full_size;
	}

	return image;
}

img3_element* img3_parse_element(char* element) {
	img3_element_header* element_header = (img3_element_header*) element;
	return 1;
}

void img3_free(img3_file* image) {
	if(image != NULL) {
		if(image->header != NULL) {
			free(image->header);
		}

		free(image);
	}
}

void img3_replace_signature(img3_file* image, char* signature) {
	return;
}

char* img3_get_data(img3_file* image) {
	return NULL;
}