This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fix-bcid.c
148 lines (114 loc) · 3.71 KB
/
fix-bcid.c
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
/* fix-bcid.c
*
*
* Copyright (C) 2011 Kenny Millington
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/system_properties.h>
#include "mtdutils.h"
#define MISC_NAME "misc"
#define BLOCK_SIZE 2048
int read_partition(const MtdPartition *partition, char *buf,
size_t partition_size) {
MtdReadContext *in;
size_t total;
int len;
int attempts = 0;
do {
total = 0;
in = mtd_read_partition(partition);
while ((len = mtd_read_data(in, buf + total, BLOCK_SIZE)) > 0)
total += len;
mtd_read_close(in);
if(total != partition_size)
sleep(3);
} while (total != partition_size && attempts++ < 5);
return total == partition_size;
}
int write_partition(const MtdPartition *partition, char *buf,
size_t partition_size) {
MtdWriteContext *out;
size_t total = 0;
int len;
int attempts = 0;
do {
total = 0;
out = mtd_write_partition(partition);
while (total < partition_size &&
(len = mtd_write_data(out, buf + total, BLOCK_SIZE)) > 0) {
total += len;
}
mtd_write_close(out);
if(total != partition_size)
sleep(3);
} while(total != partition_size && attempts++ < 5);
return total == partition_size;
}
int read_cid(char *buf, int len) {
char pbuf[PROP_VALUE_MAX];
if(!__system_property_get("ro.cid", pbuf))
return 0;
strncpy(buf, pbuf, len);
return 1;
}
int main(int argc, char **argv)
{
const MtdPartition *partition;
char cid[9];
char *misc;
size_t partition_size;
if(!read_cid(cid, sizeof(cid))) {
fprintf(stderr, "ERROR: Could not get your CID!\n");
return -1;
}
printf("Read your CID: %s\n", cid);
if (mtd_scan_partitions() <= 0) {
fprintf(stderr, "ERROR: Could not scan MTD partitions!\n");
return -2;
}
partition = mtd_find_partition_by_name(MISC_NAME);
if (partition == NULL) {
fprintf(stderr, "ERROR: Could not find misc partition!\n");
return -3;
}
if (mtd_partition_info(partition, &partition_size, NULL, NULL)) {
fprintf(stderr, "ERROR: Could not read partition information!\n");
return -4;
}
misc = calloc(partition_size, sizeof(char));
if(!read_partition(partition, misc, partition_size)) {
fprintf(stderr, "ERROR: Could not read misc partition!\n");
return -5;
}
strcpy(misc, cid);
if(!write_partition(partition, misc, partition_size)) {
fprintf(stderr, "ERROR: Could not write misc partition!\n");
return -6;
}
if(!read_partition(partition, misc, partition_size)) {
fprintf(stderr, "ERROR: Could not read misc for validation!\n");
return -7;
}
if(strncmp(misc, cid, sizeof(cid))) {
fprintf(stderr, "ERROR: Validation failed!\n");
return -8;
}
free(misc);
printf("Success: Backup CID has been patched into misc.\n");
return 0;
}