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
|
/*
* flash_{lock,unlock}
*
* utilities for locking/unlocking sectors of flash devices
*/
#ifndef PROGRAM_NAME
#define PROGRAM_NAME "flash_unlock"
#define FLASH_MSG "unlock"
#define FLASH_UNLOCK 1
#else
#define FLASH_MSG "lock"
#define FLASH_UNLOCK 0
#endif
#include <getopt.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#include <time.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <string.h>
#include "common.h"
#include <mtd/mtd-user.h>
static void usage(int status)
{
fprintf(status ? stderr : stdout,
"Usage: %s [options] [--] <mtd device> [offset [block count]]\n"
"\n"
"Options:\n"
" -h --help Display this help and exit\n"
" --version Display version information and exit\n"
"\n"
"If offset is not specified, it defaults to 0.\n"
"If block count is not specified, it defaults to all blocks.\n",
PROGRAM_NAME);
exit(status);
}
static const char short_opts[] = "h";
static const struct option long_opts[] = {
{ "help", no_argument, 0, 'h' },
{ "version", no_argument, 0, 'v' },
{ NULL, 0, 0, 0 },
};
int main(int argc, char *argv[])
{
int fd, request;
struct mtd_info_user mtdInfo;
struct erase_info_user mtdLockInfo;
int count;
const char *dev;
for (;;) {
int c;
c = getopt_long(argc, argv, short_opts, long_opts, NULL);
if (c == EOF)
break;
switch (c) {
case 'h':
usage(0);
break;
case 'v':
common_print_version();
exit(0);
default:
usage(1);
break;
}
}
/* Parse command line options */
if (argc < 2 || argc > 4)
usage(1);
dev = argv[1];
/* Get the device info to compare to command line sizes */
fd = open(dev, O_RDWR);
if (fd < 0)
sys_errmsg_die("could not open: %s", dev);
if (ioctl(fd, MEMGETINFO, &mtdInfo))
sys_errmsg_die("could not get mtd info: %s", dev);
/* Make sure user options are valid */
if (argc > 2)
mtdLockInfo.start = strtol(argv[2], NULL, 0);
else
mtdLockInfo.start = 0;
if (mtdLockInfo.start > mtdInfo.size)
errmsg_die("%#x is beyond device size %#x",
mtdLockInfo.start, mtdInfo.size);
if (argc > 3) {
count = strtol(argv[3], NULL, 0);
if (count == -1)
mtdLockInfo.length = mtdInfo.size;
else
mtdLockInfo.length = mtdInfo.erasesize * count;
} else
mtdLockInfo.length = mtdInfo.size;
if (mtdLockInfo.start + mtdLockInfo.length > mtdInfo.size)
errmsg_die("range is more than device supports: %#x + %#x > %#x",
mtdLockInfo.start, mtdLockInfo.length, mtdInfo.size);
/* Finally do the operation */
request = FLASH_UNLOCK ? MEMUNLOCK : MEMLOCK;
if (ioctl(fd, request, &mtdLockInfo))
sys_errmsg_die("could not %s device: %s\n",
FLASH_MSG, dev);
return 0;
}
|