md.c revision 1.9 1 /* $NetBSD: md.c,v 1.9 2020/10/12 16:14:37 martin Exp $ */
2
3 /*
4 * Copyright 1997 Piermont Information Systems Inc.
5 * All rights reserved.
6 *
7 * Based on code written by Philip A. Nelson for Piermont Information
8 * Systems Inc.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. The name of Piermont Information Systems Inc. may not be used to endorse
19 * or promote products derived from this software without specific prior
20 * written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
32 * THE POSSIBILITY OF SUCH DAMAGE.
33 */
34
35 /* md.c -- zaurus machine specific routines */
36
37 #include <sys/param.h>
38 #include <sys/sysctl.h>
39
40 #include <stdio.h>
41 #include <util.h>
42
43 #include "defs.h"
44 #include "md.h"
45 #include "msg_defs.h"
46 #include "menu_defs.h"
47
48 void
49 md_init(void)
50 {
51 }
52
53 void
54 md_init_set_status(int flags)
55 {
56 static const int mib[2] = {CTL_KERN, KERN_VERSION};
57 size_t len;
58 char *version;
59
60 /* check INSTALL kernel name to select an appropriate kernel set */
61 /* XXX: hw.cpu_model has a processor name on arm ports */
62 sysctl(mib, 2, NULL, &len, NULL, 0);
63 version = malloc(len);
64 if (version == NULL)
65 return;
66 sysctl(mib, 2, version, &len, NULL, 0);
67 if (strstr(version, "C700") != NULL)
68 set_kernel_set(SET_KERNEL_C700);
69 free(version);
70 }
71
72 bool
73 md_get_info(struct install_partition_desc *install)
74 {
75 int res;
76
77 if (pm->no_mbr || pm->no_part)
78 return true;
79
80 if (pm->parts == NULL) {
81
82 const struct disk_partitioning_scheme *ps =
83 select_part_scheme(pm, NULL, true, NULL);
84
85 if (!ps)
86 return false;
87
88 struct disk_partitions *parts =
89 (*ps->create_new_for_disk)(pm->diskdev,
90 0, pm->dlsize, true, NULL);
91 if (!parts)
92 return false;
93
94 pm->parts = parts;
95 if (ps->size_limit > 0 && pm->dlsize > ps->size_limit)
96 pm->dlsize = ps->size_limit;
97 }
98
99 res = set_bios_geom_with_mbr_guess(pm->parts);
100 if (res == 0)
101 return false;
102 else if (res == 1)
103 return true;
104
105 pm->parts->pscheme->destroy_part_scheme(pm->parts);
106 pm->parts = NULL;
107 goto again;
108 }
109
110 int
111 md_make_bsd_partitions(struct install_partition_desc *install)
112 {
113 return make_bsd_partitions(install);
114 }
115
116 /*
117 * any additional partition validation
118 */
119 bool
120 md_check_partitions(struct install_partition_desc *install)
121 {
122 return true;
123 }
124
125 /*
126 * hook called before writing new disklabel.
127 */
128 bool
129 md_pre_disklabel(struct install_partition_desc *install,
130 struct disk_partitions *parts)
131 {
132
133 if (parts->parent == NULL)
134 return true; /* no outer partitions */
135
136 parts = parts->parent;
137
138 msg_display_subst(MSG_dofdisk, 3, parts->disk,
139 msg_string(parts->pscheme->name),
140 msg_string(parts->pscheme->short_name));
141
142 /* write edited "MBR" onto disk. */
143 if (!parts->pscheme->write_to_disk(parts)) {
144 msg_display(MSG_wmbrfail);
145 process_menu(MENU_ok, NULL);
146 return false;
147 }
148 return true;
149 }
150
151 /*
152 * hook called after writing disklabel to new target disk.
153 */
154 bool
155 md_post_disklabel(struct install_partition_desc *install,
156 struct disk_partitions *parts)
157 {
158 return true;
159 }
160
161 /*
162 * hook called after upgrade() or install() has finished setting
163 * up the target disk but immediately before the user is given the
164 * ``disks are now set up'' message.
165 */
166 int
167 md_post_newfs(struct install_partition_desc *install)
168 {
169 struct mbr_sector pbr;
170 char adevname[STRSIZE];
171 ssize_t sz;
172 int fd = -1;
173
174 snprintf(adevname, sizeof(adevname), "/dev/r%sa", pm->diskdev);
175 fd = open(adevname, O_RDWR);
176 if (fd < 0)
177 goto out;
178
179 /* Read partition boot record */
180 sz = pread(fd, &pbr, sizeof(pbr), 0);
181 if (sz != sizeof(pbr))
182 goto out;
183
184 /* Check magic number */
185 if (pbr.mbr_magic != le16toh(MBR_MAGIC))
186 goto out;
187
188 #ifdef NETBSD_MAJOR
189 #define OSNAME "NetBSD" NETBSD_MAJOR
190 #else
191 #define OSNAME "NetBSD60"
192 #endif
193 /* Update oemname */
194 memcpy(&pbr.mbr_oemname, OSNAME, sizeof(OSNAME) - 1);
195
196 /* Clear BPB */
197 memset(&pbr.mbr_bpb, 0, sizeof(pbr.mbr_bpb));
198
199 /* write-backed new patition boot record */
200 (void)pwrite(fd, &pbr, sizeof(pbr), 0);
201
202 out:
203 if (fd >= 0)
204 close(fd);
205 return 0;
206 }
207
208 int
209 md_post_extract(struct install_partition_desc *install)
210 {
211 return 0;
212 }
213
214 void
215 md_cleanup_install(struct install_partition_desc *install)
216 {
217 #ifndef DEBUG
218 enable_rc_conf();
219 #endif
220 }
221
222 int
223 md_pre_update(struct install_partition_desc *install)
224 {
225 return 1;
226 }
227
228 /* Upgrade support */
229 int
230 md_update(struct install_partition_desc *install)
231 {
232 md_post_newfs(install);
233 return 1;
234 }
235
236 int
237 md_check_mbr(struct disk_partitions *parts, mbr_info_t *mbri, bool quiet)
238 {
239 return 2;
240 }
241
242 bool
243 md_parts_use_wholedisk(struct disk_partitions *parts)
244 {
245
246 return parts_use_wholedisk(parts, 0, NULL);
247 }
248
249
250 int
251 md_pre_mount(struct install_partition_desc *install, size_t ndx)
252 {
253 return 0;
254 }
255
256 bool
257 md_mbr_update_check(struct disk_partitions *parts, mbr_info_t *mbri)
258 {
259 return false; /* no change, no need to write back */
260 }
261
262 #ifdef HAVE_GPT
263 bool
264 md_gpt_post_write(struct disk_partitions *parts, part_id root_id,
265 bool root_is_new, part_id efi_id, bool efi_is_new)
266 {
267 /* no GPT boot support, nothing needs to be done here */
268 return true;
269 }
270 #endif
271
272