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
|
/*
* idevicerestore.c
* Restore device firmware and filesystem
*
* 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 <unistd.h>
#include <plist/plist.h>
#include "ipsw.h"
#define error(...) fprintf(stderr, __VA_ARGS__)
#define info(...) if(verbose >= 2) fprintf(stderr, __VA_ARGS__)
#define warn(...) if(verbose >= 1) fprintf(stderr, __VA_ARGS__)
#define debug(...) if(verbose >= 3) fprintf(stderr, __VA_ARGS__)
static int verbose = 0;
void usage(int argc, char* argv[]);
int main(int argc, char* argv[]) {
int opt = 0;
char* ipsw = NULL;
while ((opt = getopt(argc, argv, "vhi:")) > 0) {
switch (opt) {
case 'h':
usage(argc, argv);
break;
case 'v':
verbose += 1;
break;
case 'i':
ipsw = optarg;
break;
default:
usage(argc, argv);
break;
}
}
if(ipsw == NULL) {
error("ERROR: Please supply an IPSW\n");
return -1;
}
debug("Extracting BuildManifest.plist from IPSW\n");
ipsw_archive* archive = ipsw_open(ipsw);
ipsw_file* buildmanifest = ipsw_extract_file(archive, "BuildManifest.plist");
if(buildmanifest == NULL) {
error("ERRPR: Unable to extract BuildManifest.plist IPSW\n");
ipsw_close(archive);
return -1;
}
plist_t manifest = NULL;
plist_from_xml(buildmanifest->data, buildmanifest->size, &manifest);
ipsw_free_file(buildmanifest);
ipsw_close(archive);
debug("Creating TSS request\n");
plist_t tss_request = tss_create_request(manifest);
if(tss_request != NULL) {
error("ERROR: Unable to create TSS request\n");
plist_free(manifest);
return -1;
}
plist_free(manifest);
return 0;
}
void usage(int argc, char* argv[]) {
char *name = strrchr(argv[0], '/');
printf("Usage: %s [OPTIONS]\n", (name ? name + 1: argv[0]));
printf("Restore firmware and filesystem to iPhone/iPod Touch.\n");
printf(" -d, \t\tenable communication debugging\n");
printf(" -r, \t\tput device into recovery mode\n");
printf(" -i, \t\ttarget filesystem to install onto device\n");
printf(" -u, \t\ttarget specific device by its 40-digit device UUID\n");
printf(" -h, \t\tprints usage information\n");
printf("\n");
exit(1);
}
|