blob: f3dc26804299ff2ada044f436ed877e2fcb9dc00 [file] [log] [blame]
preludedrew38058dc2011-01-29 23:30:44 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "bootloader.h"
18#include "common.h"
19#include "mtdutils/mtdutils.h"
20#include "roots.h"
21
22#include <errno.h>
23#include <stdio.h>
24#include <string.h>
25
26static int get_bootloader_message_mtd(struct bootloader_message *out, const Volume* v);
27static int set_bootloader_message_mtd(const struct bootloader_message *in, const Volume* v);
28static int get_bootloader_message_block(struct bootloader_message *out, const Volume* v);
29static int set_bootloader_message_block(const struct bootloader_message *in, const Volume* v);
30
31int get_bootloader_message(struct bootloader_message *out) {
32 Volume* v = volume_for_path("/misc");
33 if(v)
34 {
35 if (strcmp(v->fs_type, "mtd") == 0) {
36 return get_bootloader_message_mtd(out, v);
37 } else if (strcmp(v->fs_type, "emmc") == 0) {
38 return get_bootloader_message_block(out, v);
39 }
40 LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type);
41 return -1;
42 }
43 LOGE("no misc partition\n");
44 return -1;
45}
46
47int set_bootloader_message(const struct bootloader_message *in) {
48 Volume* v = volume_for_path("/misc");
49 if(v)
50 {
51 if (strcmp(v->fs_type, "mtd") == 0) {
52 return set_bootloader_message_mtd(in, v);
53 } else if (strcmp(v->fs_type, "emmc") == 0) {
54 return set_bootloader_message_block(in, v);
55 }
56 LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type);
57 return -1;
58 }
59 LOGE("no misc partition\n");
60 return -1;
61}
62
63// ------------------------------
64// for misc partitions on MTD
65// ------------------------------
66
67static const int MISC_PAGES = 3; // number of pages to save
68static const int MISC_COMMAND_PAGE = 1; // bootloader command is this page
69
70static int get_bootloader_message_mtd(struct bootloader_message *out,
71 const Volume* v) {
72 size_t write_size;
73 mtd_scan_partitions();
74 const MtdPartition *part = mtd_find_partition_by_name(v->device);
75 if (part == NULL || mtd_partition_info(part, NULL, NULL, &write_size)) {
76 LOGE("Can't find %s\n", v->device);
77 return -1;
78 }
79
80 MtdReadContext *read = mtd_read_partition(part);
81 if (read == NULL) {
82 LOGE("Can't open %s\n(%s)\n", v->device, strerror(errno));
83 return -1;
84 }
85
86 const ssize_t size = write_size * MISC_PAGES;
87 char data[size];
88 ssize_t r = mtd_read_data(read, data, size);
89 if (r != size) LOGE("Can't read %s\n(%s)\n", v->device, strerror(errno));
90 mtd_read_close(read);
91 if (r != size) return -1;
92
93 memcpy(out, &data[write_size * MISC_COMMAND_PAGE], sizeof(*out));
94 return 0;
95}
96static int set_bootloader_message_mtd(const struct bootloader_message *in,
97 const Volume* v) {
98 size_t write_size;
99 mtd_scan_partitions();
100 const MtdPartition *part = mtd_find_partition_by_name(v->device);
101 if (part == NULL || mtd_partition_info(part, NULL, NULL, &write_size)) {
102 LOGE("Can't find %s\n", v->device);
103 return -1;
104 }
105
106 MtdReadContext *read = mtd_read_partition(part);
107 if (read == NULL) {
108 LOGE("Can't open %s\n(%s)\n", v->device, strerror(errno));
109 return -1;
110 }
111
112 ssize_t size = write_size * MISC_PAGES;
113 char data[size];
114 ssize_t r = mtd_read_data(read, data, size);
115 if (r != size) LOGE("Can't read %s\n(%s)\n", v->device, strerror(errno));
116 mtd_read_close(read);
117 if (r != size) return -1;
118
119 memcpy(&data[write_size * MISC_COMMAND_PAGE], in, sizeof(*in));
120
121 MtdWriteContext *write = mtd_write_partition(part);
122 if (write == NULL) {
123 LOGE("Can't open %s\n(%s)\n", v->device, strerror(errno));
124 return -1;
125 }
126 if (mtd_write_data(write, data, size) != size) {
127 LOGE("Can't write %s\n(%s)\n", v->device, strerror(errno));
128 mtd_write_close(write);
129 return -1;
130 }
131 if (mtd_write_close(write)) {
132 LOGE("Can't finish %s\n(%s)\n", v->device, strerror(errno));
133 return -1;
134 }
135
136 LOGI("Set boot command \"%s\"\n", in->command[0] != 255 ? in->command : "");
137 return 0;
138}
139
140
141// ------------------------------------
142// for misc partitions on block devices
143// ------------------------------------
144
145static int get_bootloader_message_block(struct bootloader_message *out,
146 const Volume* v) {
147 FILE* f = fopen(v->device, "rb");
148 if (f == NULL) {
149 LOGE("Can't open %s\n(%s)\n", v->device, strerror(errno));
150 return -1;
151 }
152 struct bootloader_message temp;
153 int count = fread(&temp, sizeof(temp), 1, f);
154 if (count != 1) {
155 LOGE("Failed reading %s\n(%s)\n", v->device, strerror(errno));
156 return -1;
157 }
158 if (fclose(f) != 0) {
159 LOGE("Failed closing %s\n(%s)\n", v->device, strerror(errno));
160 return -1;
161 }
162 memcpy(out, &temp, sizeof(temp));
163 return 0;
164}
165
166static int set_bootloader_message_block(const struct bootloader_message *in,
167 const Volume* v) {
168 FILE* f = fopen(v->device, "wb");
169 if (f == NULL) {
170 LOGE("Can't open %s\n(%s)\n", v->device, strerror(errno));
171 return -1;
172 }
173 int count = fwrite(in, sizeof(*in), 1, f);
174 if (count != 1) {
175 LOGE("Failed writing %s\n(%s)\n", v->device, strerror(errno));
176 return -1;
177 }
178 if (fclose(f) != 0) {
179 LOGE("Failed closing %s\n(%s)\n", v->device, strerror(errno));
180 return -1;
181 }
182 return 0;
183}