blob: f63bc78366d95e11428b53b83cad89caf635241b [file] [log] [blame]
Koushik Dutta68df48c2010-09-13 15:04:54 -07001#include <ctype.h>
2#include <errno.h>
3#include <fcntl.h>
4#include <getopt.h>
5#include <limits.h>
6#include <linux/input.h>
7#include <stdio.h>
8#include <stdlib.h>
9#include <string.h>
10#include <sys/reboot.h>
11#include <sys/types.h>
12#include <time.h>
13#include <unistd.h>
14
15#include <sys/wait.h>
16#include <sys/limits.h>
17#include <dirent.h>
18#include <sys/stat.h>
19
20#include <signal.h>
21#include <sys/wait.h>
22
Steve Kondik4123b582010-11-14 03:18:40 -050023extern int __system(const char *command);
Koushik Dutta02c36052010-12-12 02:52:44 -080024#define BML_UNLOCK_ALL 0x8A29 ///< unlock all partition RO -> RW
Koushik Dutta68df48c2010-09-13 15:04:54 -070025
Koushik Dutta03cf72a2010-12-21 15:14:21 -080026
Koushik Dutta134ead72010-12-12 16:54:41 -080027static int restore_internal(const char* bml, const char* filename)
Koushik Duttae5c7e0e2010-11-11 01:19:10 -080028{
Koushik Dutta03a4f5b2010-12-12 12:24:02 -080029 char buf[4096];
30 int dstfd, srcfd, bytes_read, bytes_written, total_read = 0;
31 if (filename == NULL)
32 srcfd = 0;
33 else {
34 srcfd = open(filename, O_RDONLY | O_LARGEFILE);
35 if (srcfd < 0)
36 return 2;
37 }
38 dstfd = open(bml, O_RDWR | O_LARGEFILE);
39 if (dstfd < 0)
40 return 3;
41 if (ioctl(dstfd, BML_UNLOCK_ALL, 0))
42 return 4;
43 do {
44 total_read += bytes_read = read(srcfd, buf, 4096);
45 if (!bytes_read)
46 break;
47 if (bytes_read < 4096)
48 memset(&buf[bytes_read], 0, 4096 - bytes_read);
49 if (write(dstfd, buf, 4096) < 4096)
50 return 5;
51 } while(bytes_read == 4096);
Koushik Dutta134ead72010-12-12 16:54:41 -080052
53 close(dstfd);
54 close(srcfd);
55
Koushik Dutta03a4f5b2010-12-12 12:24:02 -080056 return 0;
Koushik Dutta68df48c2010-09-13 15:04:54 -070057}
Koushik Dutta56c1b3b2010-09-13 15:08:49 -070058
Koushik Dutta134ead72010-12-12 16:54:41 -080059int cmd_bml_restore_raw_partition(const char *partition, const char *filename)
60{
Koushik Dutta03cf72a2010-12-21 15:14:21 -080061 if (strcmp(partition, "boot") != 0 && strcmp(partition, "recovery") != 0)
Koushik Dutta134ead72010-12-12 16:54:41 -080062 return 6;
63
Koushik Dutta03cf72a2010-12-21 15:14:21 -080064 // always restore boot, regardless of whether recovery or boot is flashed.
65 // this is because boot and recovery are the same on some samsung phones.
Koushik Dutta134ead72010-12-12 16:54:41 -080066 int ret = restore_internal("/dev/block/bml7", filename);
67 if (ret != 0)
68 return ret;
69
Koushik Dutta03cf72a2010-12-21 15:14:21 -080070 if (strcmp(partition, "recovery") == 0)
71 ret = restore_internal("/dev/block/bml8", filename);
Koushik Dutta134ead72010-12-12 16:54:41 -080072 return ret;
73}
74
Steve Kondik4123b582010-11-14 03:18:40 -050075int cmd_bml_backup_raw_partition(const char *partition, const char *filename)
Koushik Duttae5c7e0e2010-11-11 01:19:10 -080076{
Koushik Dutta56c1b3b2010-09-13 15:08:49 -070077 char tmp[PATH_MAX];
Koushik Dutta134ead72010-12-12 16:54:41 -080078 sprintf(tmp, "dd of=%s if=/dev/block/bml7 bs=4096", filename);
Koushik Dutta56c1b3b2010-09-13 15:08:49 -070079 return __system(tmp);
80}
Koushik Duttae5c7e0e2010-11-11 01:19:10 -080081
Steve Kondik4123b582010-11-14 03:18:40 -050082int cmd_bml_erase_raw_partition(const char *partition)
Koushik Duttae5c7e0e2010-11-11 01:19:10 -080083{
84 // TODO: implement raw wipe
85 return 0;
86}
87
Steve Kondik4123b582010-11-14 03:18:40 -050088int cmd_bml_erase_partition(const char *partition, const char *filesystem)
Koushik Duttae5c7e0e2010-11-11 01:19:10 -080089{
90 return -1;
91}
92
Steve Kondik4123b582010-11-14 03:18:40 -050093int cmd_bml_mount_partition(const char *partition, const char *mount_point, const char *filesystem, int read_only)
Koushik Duttae5c7e0e2010-11-11 01:19:10 -080094{
95 return -1;
96}
97
Steve Kondik4123b582010-11-14 03:18:40 -050098int cmd_bml_get_partition_device(const char *partition, char *device)
Koushik Duttae5c7e0e2010-11-11 01:19:10 -080099{
100 return -1;
101}