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
|
/*
* ipsw.h
* Utilities for extracting and manipulating IPSWs
*
* 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 <zip.h>
#include <stdlib.h>
#include <string.h>
#include "ipsw.h"
#include "idevicerestore.h"
ipsw_archive* ipsw_open(const char* ipsw) {
int err = 0;
ipsw_archive* archive = (ipsw_archive*) malloc(sizeof(ipsw_archive));
if(archive == NULL) {
error("ERROR: Out of memory\n");
return NULL;
}
archive->zip = zip_open(ipsw, 0, &err);
if(archive->zip == NULL) {
error("ERROR: zip_open: %s: %d\n", ipsw, err);
free(archive);
return NULL;
}
return archive;
}
ipsw_file* ipsw_extract_file(ipsw_archive* archive, const char* filename) {
if(archive == NULL || archive->zip == NULL) {
error("ERROR: Invalid archive\n");
return NULL;
}
int zindex = zip_name_locate(archive->zip, filename, 0);
if(zindex < 0) {
error("ERROR: zip_name_locate: %s\n", filename);
return NULL;
}
struct zip_stat zstat;
zip_stat_init(&zstat);
if(zip_stat_index(archive->zip, zindex, 0, &zstat) != 0) {
error("ERROR: zip_stat_index: %s\n", filename);
return NULL;
}
struct zip_file* zfile = zip_fopen_index(archive->zip, zindex, 0);
if(zfile == NULL) {
error("ERROR: zip_fopen_index: %s\n", filename);
return NULL;
}
ipsw_file* file = (ipsw_file*) malloc(sizeof(ipsw_file));
if(file == NULL) {
error("ERROR: Out of memory\n");
zip_fclose(zfile);
return NULL;
}
file->size = zstat.size;
file->index = zstat.index;
file->name = strdup(zstat.name);
file->data = (unsigned char*) malloc(file->size);
if(file->data == NULL) {
error("ERROR: Out of memory\n");
ipsw_free_file(file);
zip_fclose(zfile);
return NULL;
}
if(zip_fread(zfile, file->data, file->size) != file->size) {
error("ERROR: zip_fread: %s\n", filename);
ipsw_free_file(file);
zip_fclose(zfile);
return NULL;
}
zip_fclose(zfile);
return file;
}
void ipsw_free_file(ipsw_file* file) {
if(file != NULL) {
if(file->name != NULL) {
free(file->name);
}
if(file->data != NULL) {
free(file->data);
}
free(file);
}
}
void ipsw_close(ipsw_archive* archive) {
if(archive != NULL) {
zip_unchange_all(archive->zip);
zip_close(archive->zip);
free(archive);
}
}
|