disks.c revision 1.86 1 1.86 tsutsui /* $NetBSD: disks.c,v 1.86 2022/06/24 22:05:24 tsutsui Exp $ */
2 1.1 dholland
3 1.1 dholland /*
4 1.1 dholland * Copyright 1997 Piermont Information Systems Inc.
5 1.1 dholland * All rights reserved.
6 1.1 dholland *
7 1.1 dholland * Written by Philip A. Nelson for Piermont Information Systems Inc.
8 1.1 dholland *
9 1.1 dholland * Redistribution and use in source and binary forms, with or without
10 1.1 dholland * modification, are permitted provided that the following conditions
11 1.1 dholland * are met:
12 1.1 dholland * 1. Redistributions of source code must retain the above copyright
13 1.1 dholland * notice, this list of conditions and the following disclaimer.
14 1.1 dholland * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 dholland * notice, this list of conditions and the following disclaimer in the
16 1.1 dholland * documentation and/or other materials provided with the distribution.
17 1.1 dholland * 3. The name of Piermont Information Systems Inc. may not be used to endorse
18 1.1 dholland * or promote products derived from this software without specific prior
19 1.1 dholland * written permission.
20 1.1 dholland *
21 1.1 dholland * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
22 1.1 dholland * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 dholland * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 dholland * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
25 1.1 dholland * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 1.1 dholland * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 1.1 dholland * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 1.1 dholland * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 1.1 dholland * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 1.1 dholland * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 1.1 dholland * THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 dholland *
33 1.1 dholland */
34 1.1 dholland
35 1.1 dholland /* disks.c -- routines to deal with finding disks and labeling disks. */
36 1.1 dholland
37 1.1 dholland
38 1.30 martin #include <assert.h>
39 1.1 dholland #include <errno.h>
40 1.17 martin #include <inttypes.h>
41 1.1 dholland #include <stdio.h>
42 1.1 dholland #include <stdlib.h>
43 1.1 dholland #include <unistd.h>
44 1.1 dholland #include <fcntl.h>
45 1.20 martin #include <fnmatch.h>
46 1.1 dholland #include <util.h>
47 1.2 martin #include <uuid.h>
48 1.30 martin #include <paths.h>
49 1.47 martin #include <fstab.h>
50 1.1 dholland
51 1.1 dholland #include <sys/param.h>
52 1.1 dholland #include <sys/sysctl.h>
53 1.1 dholland #include <sys/swap.h>
54 1.30 martin #include <sys/disklabel_gpt.h>
55 1.1 dholland #include <ufs/ufs/dinode.h>
56 1.1 dholland #include <ufs/ffs/fs.h>
57 1.1 dholland
58 1.1 dholland #include <dev/scsipi/scsipi_all.h>
59 1.1 dholland #include <sys/scsiio.h>
60 1.1 dholland
61 1.1 dholland #include <dev/ata/atareg.h>
62 1.1 dholland #include <sys/ataio.h>
63 1.1 dholland
64 1.78 jmcneill #include <sys/drvctlio.h>
65 1.78 jmcneill
66 1.1 dholland #include "defs.h"
67 1.1 dholland #include "md.h"
68 1.1 dholland #include "msg_defs.h"
69 1.1 dholland #include "menu_defs.h"
70 1.1 dholland #include "txtwalk.h"
71 1.1 dholland
72 1.31 martin /* #define DEBUG_VERBOSE 1 */
73 1.30 martin
74 1.1 dholland /* Disk descriptions */
75 1.1 dholland struct disk_desc {
76 1.1 dholland char dd_name[SSTRSIZE];
77 1.29 mrg char dd_descr[256];
78 1.15 martin bool dd_no_mbr, dd_no_part;
79 1.1 dholland uint dd_cyl;
80 1.1 dholland uint dd_head;
81 1.1 dholland uint dd_sec;
82 1.1 dholland uint dd_secsize;
83 1.30 martin daddr_t dd_totsec;
84 1.2 martin };
85 1.2 martin
86 1.47 martin #define NAME_PREFIX "NAME="
87 1.47 martin static const char name_prefix[] = NAME_PREFIX;
88 1.47 martin
89 1.47 martin /* things we could have as /sbin/newfs_* and /sbin/fsck_* */
90 1.47 martin static const char *extern_fs_with_chk[] = {
91 1.47 martin "ext2fs", "lfs", "msdos", "v7fs"
92 1.47 martin };
93 1.47 martin
94 1.47 martin /* things we could have as /sbin/newfs_* but not /sbin/fsck_* */
95 1.47 martin static const char *extern_fs_newfs_only[] = {
96 1.47 martin "sysvbfs", "udf"
97 1.47 martin };
98 1.45 martin
99 1.1 dholland /* Local prototypes */
100 1.47 martin static int found_fs(struct data *, size_t, const struct lookfor*);
101 1.47 martin static int found_fs_nocheck(struct data *, size_t, const struct lookfor*);
102 1.30 martin static int fsck_preen(const char *, const char *, bool silent);
103 1.30 martin static void fixsb(const char *, const char *);
104 1.1 dholland
105 1.1 dholland
106 1.1 dholland static bool tmpfs_on_var_shm(void);
107 1.1 dholland
108 1.1 dholland const char *
109 1.30 martin getfslabelname(uint f, uint f_version)
110 1.1 dholland {
111 1.30 martin if (f == FS_TMPFS)
112 1.30 martin return "tmpfs";
113 1.30 martin else if (f == FS_MFS)
114 1.30 martin return "mfs";
115 1.82 martin else if (f == FS_EFI_SP)
116 1.82 martin return msg_string(MSG_fs_type_efi_sp);
117 1.30 martin else if (f == FS_BSDFFS && f_version > 0)
118 1.30 martin return f_version == 2 ?
119 1.30 martin msg_string(MSG_fs_type_ffsv2) : msg_string(MSG_fs_type_ffs);
120 1.58 martin else if (f == FS_EX2FS && f_version == 1)
121 1.58 martin return msg_string(MSG_fs_type_ext2old);
122 1.30 martin else if (f >= __arraycount(fstypenames) || fstypenames[f] == NULL)
123 1.1 dholland return "invalid";
124 1.1 dholland return fstypenames[f];
125 1.1 dholland }
126 1.1 dholland
127 1.1 dholland /*
128 1.1 dholland * Decide wether we want to mount a tmpfs on /var/shm: we do this always
129 1.1 dholland * when the machine has more than 16 MB of user memory. On smaller machines,
130 1.1 dholland * shm_open() and friends will not perform well anyway.
131 1.1 dholland */
132 1.1 dholland static bool
133 1.86 tsutsui tmpfs_on_var_shm(void)
134 1.1 dholland {
135 1.1 dholland uint64_t ram;
136 1.1 dholland size_t len;
137 1.1 dholland
138 1.1 dholland len = sizeof(ram);
139 1.1 dholland if (sysctlbyname("hw.usermem64", &ram, &len, NULL, 0))
140 1.1 dholland return false;
141 1.1 dholland
142 1.28 martin return ram > 16 * MEG;
143 1.1 dholland }
144 1.1 dholland
145 1.1 dholland /* from src/sbin/atactl/atactl.c
146 1.1 dholland * extract_string: copy a block of bytes out of ataparams and make
147 1.1 dholland * a proper string out of it, truncating trailing spaces and preserving
148 1.1 dholland * strict typing. And also, not doing unaligned accesses.
149 1.1 dholland */
150 1.1 dholland static void
151 1.1 dholland ata_extract_string(char *buf, size_t bufmax,
152 1.1 dholland uint8_t *bytes, unsigned numbytes,
153 1.1 dholland int needswap)
154 1.1 dholland {
155 1.1 dholland unsigned i;
156 1.1 dholland size_t j;
157 1.1 dholland unsigned char ch1, ch2;
158 1.1 dholland
159 1.1 dholland for (i = 0, j = 0; i < numbytes; i += 2) {
160 1.1 dholland ch1 = bytes[i];
161 1.1 dholland ch2 = bytes[i+1];
162 1.1 dholland if (needswap && j < bufmax-1) {
163 1.1 dholland buf[j++] = ch2;
164 1.1 dholland }
165 1.1 dholland if (j < bufmax-1) {
166 1.1 dholland buf[j++] = ch1;
167 1.1 dholland }
168 1.1 dholland if (!needswap && j < bufmax-1) {
169 1.1 dholland buf[j++] = ch2;
170 1.1 dholland }
171 1.1 dholland }
172 1.1 dholland while (j > 0 && buf[j-1] == ' ') {
173 1.1 dholland j--;
174 1.1 dholland }
175 1.1 dholland buf[j] = '\0';
176 1.1 dholland }
177 1.1 dholland
178 1.1 dholland /*
179 1.1 dholland * from src/sbin/scsictl/scsi_subr.c
180 1.1 dholland */
181 1.1 dholland #define STRVIS_ISWHITE(x) ((x) == ' ' || (x) == '\0' || (x) == (u_char)'\377')
182 1.1 dholland
183 1.1 dholland static void
184 1.1 dholland scsi_strvis(char *sdst, size_t dlen, const char *ssrc, size_t slen)
185 1.1 dholland {
186 1.1 dholland u_char *dst = (u_char *)sdst;
187 1.1 dholland const u_char *src = (const u_char *)ssrc;
188 1.1 dholland
189 1.1 dholland /* Trim leading and trailing blanks and NULs. */
190 1.1 dholland while (slen > 0 && STRVIS_ISWHITE(src[0]))
191 1.1 dholland ++src, --slen;
192 1.1 dholland while (slen > 0 && STRVIS_ISWHITE(src[slen - 1]))
193 1.1 dholland --slen;
194 1.1 dholland
195 1.1 dholland while (slen > 0) {
196 1.1 dholland if (*src < 0x20 || *src >= 0x80) {
197 1.1 dholland /* non-printable characters */
198 1.1 dholland dlen -= 4;
199 1.1 dholland if (dlen < 1)
200 1.1 dholland break;
201 1.1 dholland *dst++ = '\\';
202 1.1 dholland *dst++ = ((*src & 0300) >> 6) + '0';
203 1.1 dholland *dst++ = ((*src & 0070) >> 3) + '0';
204 1.1 dholland *dst++ = ((*src & 0007) >> 0) + '0';
205 1.1 dholland } else if (*src == '\\') {
206 1.1 dholland /* quote characters */
207 1.1 dholland dlen -= 2;
208 1.1 dholland if (dlen < 1)
209 1.1 dholland break;
210 1.1 dholland *dst++ = '\\';
211 1.1 dholland *dst++ = '\\';
212 1.1 dholland } else {
213 1.1 dholland /* normal characters */
214 1.1 dholland if (--dlen < 1)
215 1.1 dholland break;
216 1.1 dholland *dst++ = *src;
217 1.1 dholland }
218 1.1 dholland ++src, --slen;
219 1.1 dholland }
220 1.1 dholland
221 1.1 dholland *dst++ = 0;
222 1.1 dholland }
223 1.1 dholland
224 1.1 dholland
225 1.1 dholland static int
226 1.35 christos get_descr_scsi(struct disk_desc *dd)
227 1.1 dholland {
228 1.1 dholland struct scsipi_inquiry_data inqbuf;
229 1.1 dholland struct scsipi_inquiry cmd;
230 1.1 dholland scsireq_t req;
231 1.1 dholland /* x4 in case every character is escaped, +1 for NUL. */
232 1.1 dholland char vendor[(sizeof(inqbuf.vendor) * 4) + 1],
233 1.1 dholland product[(sizeof(inqbuf.product) * 4) + 1],
234 1.1 dholland revision[(sizeof(inqbuf.revision) * 4) + 1];
235 1.1 dholland char size[5];
236 1.1 dholland
237 1.1 dholland memset(&inqbuf, 0, sizeof(inqbuf));
238 1.1 dholland memset(&cmd, 0, sizeof(cmd));
239 1.1 dholland memset(&req, 0, sizeof(req));
240 1.1 dholland
241 1.1 dholland cmd.opcode = INQUIRY;
242 1.1 dholland cmd.length = sizeof(inqbuf);
243 1.1 dholland memcpy(req.cmd, &cmd, sizeof(cmd));
244 1.1 dholland req.cmdlen = sizeof(cmd);
245 1.1 dholland req.databuf = &inqbuf;
246 1.1 dholland req.datalen = sizeof(inqbuf);
247 1.1 dholland req.timeout = 10000;
248 1.1 dholland req.flags = SCCMD_READ;
249 1.1 dholland req.senselen = SENSEBUFLEN;
250 1.1 dholland
251 1.35 christos if (!disk_ioctl(dd->dd_name, SCIOCCOMMAND, &req)
252 1.35 christos || req.retsts != SCCMD_OK)
253 1.1 dholland return 0;
254 1.1 dholland
255 1.1 dholland scsi_strvis(vendor, sizeof(vendor), inqbuf.vendor,
256 1.1 dholland sizeof(inqbuf.vendor));
257 1.1 dholland scsi_strvis(product, sizeof(product), inqbuf.product,
258 1.1 dholland sizeof(inqbuf.product));
259 1.1 dholland scsi_strvis(revision, sizeof(revision), inqbuf.revision,
260 1.1 dholland sizeof(inqbuf.revision));
261 1.1 dholland
262 1.1 dholland humanize_number(size, sizeof(size),
263 1.1 dholland (uint64_t)dd->dd_secsize * (uint64_t)dd->dd_totsec,
264 1.1 dholland "", HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL);
265 1.1 dholland
266 1.1 dholland snprintf(dd->dd_descr, sizeof(dd->dd_descr),
267 1.1 dholland "%s (%s, %s %s)",
268 1.1 dholland dd->dd_name, size, vendor, product);
269 1.1 dholland
270 1.1 dholland return 1;
271 1.1 dholland }
272 1.1 dholland
273 1.1 dholland static int
274 1.35 christos get_descr_ata(struct disk_desc *dd)
275 1.1 dholland {
276 1.1 dholland struct atareq req;
277 1.1 dholland static union {
278 1.1 dholland unsigned char inbuf[DEV_BSIZE];
279 1.1 dholland struct ataparams inqbuf;
280 1.1 dholland } inbuf;
281 1.1 dholland struct ataparams *inqbuf = &inbuf.inqbuf;
282 1.1 dholland char model[sizeof(inqbuf->atap_model)+1];
283 1.1 dholland char size[5];
284 1.35 christos int needswap = 0;
285 1.1 dholland
286 1.1 dholland memset(&inbuf, 0, sizeof(inbuf));
287 1.1 dholland memset(&req, 0, sizeof(req));
288 1.1 dholland
289 1.1 dholland req.flags = ATACMD_READ;
290 1.1 dholland req.command = WDCC_IDENTIFY;
291 1.1 dholland req.databuf = (void *)&inbuf;
292 1.1 dholland req.datalen = sizeof(inbuf);
293 1.1 dholland req.timeout = 1000;
294 1.1 dholland
295 1.35 christos if (!disk_ioctl(dd->dd_name, ATAIOCCOMMAND, &req)
296 1.35 christos || req.retsts != ATACMD_OK)
297 1.1 dholland return 0;
298 1.1 dholland
299 1.1 dholland #if BYTE_ORDER == LITTLE_ENDIAN
300 1.1 dholland /*
301 1.1 dholland * On little endian machines, we need to shuffle the string
302 1.1 dholland * byte order. However, we don't have to do this for NEC or
303 1.1 dholland * Mitsumi ATAPI devices
304 1.1 dholland */
305 1.1 dholland
306 1.1 dholland if (!(inqbuf->atap_config != WDC_CFG_CFA_MAGIC &&
307 1.1 dholland (inqbuf->atap_config & WDC_CFG_ATAPI) &&
308 1.1 dholland ((inqbuf->atap_model[0] == 'N' &&
309 1.10 isaki inqbuf->atap_model[1] == 'E') ||
310 1.1 dholland (inqbuf->atap_model[0] == 'F' &&
311 1.10 isaki inqbuf->atap_model[1] == 'X')))) {
312 1.1 dholland needswap = 1;
313 1.1 dholland }
314 1.1 dholland #endif
315 1.1 dholland
316 1.1 dholland ata_extract_string(model, sizeof(model),
317 1.1 dholland inqbuf->atap_model, sizeof(inqbuf->atap_model), needswap);
318 1.1 dholland humanize_number(size, sizeof(size),
319 1.1 dholland (uint64_t)dd->dd_secsize * (uint64_t)dd->dd_totsec,
320 1.1 dholland "", HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL);
321 1.1 dholland
322 1.1 dholland snprintf(dd->dd_descr, sizeof(dd->dd_descr), "%s (%s, %s)",
323 1.1 dholland dd->dd_name, size, model);
324 1.1 dholland
325 1.1 dholland return 1;
326 1.1 dholland }
327 1.1 dholland
328 1.78 jmcneill static int
329 1.78 jmcneill get_descr_drvctl(struct disk_desc *dd)
330 1.78 jmcneill {
331 1.78 jmcneill prop_dictionary_t command_dict;
332 1.78 jmcneill prop_dictionary_t args_dict;
333 1.78 jmcneill prop_dictionary_t results_dict;
334 1.78 jmcneill prop_dictionary_t props;
335 1.78 jmcneill int8_t perr;
336 1.78 jmcneill int error, fd;
337 1.78 jmcneill bool rv;
338 1.78 jmcneill char size[5];
339 1.78 jmcneill const char *model;
340 1.78 jmcneill
341 1.78 jmcneill fd = open("/dev/drvctl", O_RDONLY);
342 1.78 jmcneill if (fd == -1)
343 1.78 jmcneill return 0;
344 1.78 jmcneill
345 1.78 jmcneill command_dict = prop_dictionary_create();
346 1.78 jmcneill args_dict = prop_dictionary_create();
347 1.78 jmcneill
348 1.79 jmcneill prop_dictionary_set_string_nocopy(command_dict, "drvctl-command",
349 1.78 jmcneill "get-properties");
350 1.79 jmcneill prop_dictionary_set_string_nocopy(args_dict, "device-name",
351 1.78 jmcneill dd->dd_name);
352 1.78 jmcneill prop_dictionary_set(command_dict, "drvctl-arguments", args_dict);
353 1.78 jmcneill prop_object_release(args_dict);
354 1.78 jmcneill
355 1.78 jmcneill error = prop_dictionary_sendrecv_ioctl(command_dict, fd,
356 1.78 jmcneill DRVCTLCOMMAND, &results_dict);
357 1.78 jmcneill prop_object_release(command_dict);
358 1.78 jmcneill close(fd);
359 1.78 jmcneill if (error)
360 1.78 jmcneill return 0;
361 1.78 jmcneill
362 1.78 jmcneill rv = prop_dictionary_get_int8(results_dict, "drvctl-error", &perr);
363 1.78 jmcneill if (rv == false || perr != 0) {
364 1.78 jmcneill prop_object_release(results_dict);
365 1.78 jmcneill return 0;
366 1.78 jmcneill }
367 1.78 jmcneill
368 1.78 jmcneill props = prop_dictionary_get(results_dict,
369 1.78 jmcneill "drvctl-result-data");
370 1.78 jmcneill if (props == NULL) {
371 1.78 jmcneill prop_object_release(results_dict);
372 1.78 jmcneill return 0;
373 1.78 jmcneill }
374 1.78 jmcneill props = prop_dictionary_get(props, "disk-info");
375 1.78 jmcneill if (props == NULL ||
376 1.78 jmcneill !prop_dictionary_get_string(props, "type", &model)) {
377 1.78 jmcneill prop_object_release(results_dict);
378 1.78 jmcneill return 0;
379 1.78 jmcneill }
380 1.78 jmcneill
381 1.78 jmcneill humanize_number(size, sizeof(size),
382 1.78 jmcneill (uint64_t)dd->dd_secsize * (uint64_t)dd->dd_totsec,
383 1.78 jmcneill "", HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL);
384 1.78 jmcneill
385 1.78 jmcneill snprintf(dd->dd_descr, sizeof(dd->dd_descr), "%s (%s, %s)",
386 1.78 jmcneill dd->dd_name, size, model);
387 1.78 jmcneill
388 1.78 jmcneill prop_object_release(results_dict);
389 1.78 jmcneill
390 1.78 jmcneill return 1;
391 1.78 jmcneill }
392 1.78 jmcneill
393 1.1 dholland static void
394 1.1 dholland get_descr(struct disk_desc *dd)
395 1.1 dholland {
396 1.35 christos char size[5];
397 1.1 dholland dd->dd_descr[0] = '\0';
398 1.1 dholland
399 1.78 jmcneill /* try drvctl first, fallback to direct probing */
400 1.78 jmcneill if (get_descr_drvctl(dd))
401 1.78 jmcneill return;
402 1.1 dholland /* try ATA */
403 1.35 christos if (get_descr_ata(dd))
404 1.77 jmcneill return;
405 1.1 dholland /* try SCSI */
406 1.35 christos if (get_descr_scsi(dd))
407 1.77 jmcneill return;
408 1.30 martin
409 1.2 martin /* XXX: get description from raid, cgd, vnd... */
410 1.77 jmcneill
411 1.30 martin /* punt, just give some generic info */
412 1.30 martin humanize_number(size, sizeof(size),
413 1.30 martin (uint64_t)dd->dd_secsize * (uint64_t)dd->dd_totsec,
414 1.30 martin "", HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL);
415 1.30 martin
416 1.30 martin snprintf(dd->dd_descr, sizeof(dd->dd_descr),
417 1.30 martin "%s (%s)", dd->dd_name, size);
418 1.1 dholland }
419 1.1 dholland
420 1.21 martin /*
421 1.21 martin * State for helper callback for get_default_cdrom
422 1.21 martin */
423 1.21 martin struct default_cdrom_data {
424 1.21 martin char *device;
425 1.21 martin size_t max_len;
426 1.21 martin bool found;
427 1.21 martin };
428 1.21 martin
429 1.21 martin /*
430 1.21 martin * Helper function for get_default_cdrom, gets passed a device
431 1.21 martin * name and a void pointer to default_cdrom_data.
432 1.21 martin */
433 1.21 martin static bool
434 1.21 martin get_default_cdrom_helper(void *state, const char *dev)
435 1.21 martin {
436 1.21 martin struct default_cdrom_data *data = state;
437 1.21 martin
438 1.25 martin if (!is_cdrom_device(dev, false))
439 1.22 martin return true;
440 1.22 martin
441 1.21 martin strlcpy(data->device, dev, data->max_len);
442 1.22 martin strlcat(data->device, "a", data->max_len); /* default to partition a */
443 1.21 martin data->found = true;
444 1.21 martin
445 1.21 martin return false; /* one is enough, stop iteration */
446 1.21 martin }
447 1.21 martin
448 1.21 martin /*
449 1.21 martin * Set the argument to the name of the first CD devices actually
450 1.21 martin * available, leave it unmodified otherwise.
451 1.21 martin * Return true if a device has been found.
452 1.1 dholland */
453 1.18 martin bool
454 1.18 martin get_default_cdrom(char *cd, size_t max_len)
455 1.1 dholland {
456 1.21 martin struct default_cdrom_data state;
457 1.21 martin
458 1.21 martin state.device = cd;
459 1.21 martin state.max_len = max_len;
460 1.21 martin state.found = false;
461 1.21 martin
462 1.21 martin if (enumerate_disks(&state, get_default_cdrom_helper))
463 1.21 martin return state.found;
464 1.21 martin
465 1.21 martin return false;
466 1.1 dholland }
467 1.1 dholland
468 1.30 martin static bool
469 1.15 martin get_wedge_descr(struct disk_desc *dd)
470 1.15 martin {
471 1.15 martin struct dkwedge_info dkw;
472 1.15 martin
473 1.35 christos if (!get_wedge_info(dd->dd_name, &dkw))
474 1.30 martin return false;
475 1.15 martin
476 1.35 christos snprintf(dd->dd_descr, sizeof(dd->dd_descr), "%s (%s@%s)",
477 1.35 christos dkw.dkw_wname, dkw.dkw_devname, dkw.dkw_parent);
478 1.35 christos return true;
479 1.15 martin }
480 1.15 martin
481 1.15 martin static bool
482 1.15 martin get_name_and_parent(const char *dev, char *name, char *parent)
483 1.15 martin {
484 1.15 martin struct dkwedge_info dkw;
485 1.15 martin
486 1.35 christos if (!get_wedge_info(dev, &dkw))
487 1.15 martin return false;
488 1.35 christos strcpy(name, (const char *)dkw.dkw_wname);
489 1.35 christos strcpy(parent, dkw.dkw_parent);
490 1.35 christos return true;
491 1.15 martin }
492 1.15 martin
493 1.15 martin static bool
494 1.15 martin find_swap_part_on(const char *dev, char *swap_name)
495 1.15 martin {
496 1.35 christos struct dkwedge_list dkwl;
497 1.15 martin struct dkwedge_info *dkw;
498 1.15 martin u_int i;
499 1.15 martin bool res = false;
500 1.15 martin
501 1.35 christos if (!get_wedge_list(dev, &dkwl))
502 1.15 martin return false;
503 1.15 martin
504 1.35 christos dkw = dkwl.dkwl_buf;
505 1.15 martin for (i = 0; i < dkwl.dkwl_nwedges; i++) {
506 1.15 martin res = strcmp(dkw[i].dkw_ptype, DKW_PTYPE_SWAP) == 0;
507 1.15 martin if (res) {
508 1.15 martin strcpy(swap_name, (const char*)dkw[i].dkw_wname);
509 1.15 martin break;
510 1.15 martin }
511 1.15 martin }
512 1.35 christos free(dkwl.dkwl_buf);
513 1.15 martin
514 1.15 martin return res;
515 1.15 martin }
516 1.15 martin
517 1.15 martin static bool
518 1.15 martin is_ffs_wedge(const char *dev)
519 1.15 martin {
520 1.15 martin struct dkwedge_info dkw;
521 1.15 martin
522 1.35 christos if (!get_wedge_info(dev, &dkw))
523 1.15 martin return false;
524 1.15 martin
525 1.35 christos return strcmp(dkw.dkw_ptype, DKW_PTYPE_FFS) == 0;
526 1.15 martin }
527 1.15 martin
528 1.18 martin /*
529 1.18 martin * Does this device match an entry in our default CDROM device list?
530 1.25 martin * If looking for install targets, we also flag floopy devices.
531 1.18 martin */
532 1.22 martin bool
533 1.25 martin is_cdrom_device(const char *dev, bool as_target)
534 1.18 martin {
535 1.25 martin static const char *target_devices[] = {
536 1.24 martin #ifdef CD_NAMES
537 1.24 martin CD_NAMES
538 1.24 martin #endif
539 1.24 martin #if defined(CD_NAMES) && defined(FLOPPY_NAMES)
540 1.24 martin ,
541 1.24 martin #endif
542 1.24 martin #ifdef FLOPPY_NAMES
543 1.24 martin FLOPPY_NAMES
544 1.24 martin #endif
545 1.24 martin #if defined(CD_NAMES) || defined(FLOPPY_NAMES)
546 1.24 martin ,
547 1.24 martin #endif
548 1.24 martin 0
549 1.24 martin };
550 1.25 martin static const char *src_devices[] = {
551 1.25 martin #ifdef CD_NAMES
552 1.25 martin CD_NAMES ,
553 1.25 martin #endif
554 1.25 martin 0
555 1.25 martin };
556 1.18 martin
557 1.25 martin for (const char **dev_pat = as_target ? target_devices : src_devices;
558 1.25 martin *dev_pat; dev_pat++)
559 1.20 martin if (fnmatch(*dev_pat, dev, 0) == 0)
560 1.20 martin return true;
561 1.18 martin
562 1.18 martin return false;
563 1.18 martin }
564 1.18 martin
565 1.27 martin /* does this device match any entry in the driver list? */
566 1.27 martin static bool
567 1.27 martin dev_in_list(const char *dev, const char **list)
568 1.27 martin {
569 1.27 martin
570 1.27 martin for ( ; *list; list++) {
571 1.27 martin
572 1.27 martin size_t len = strlen(*list);
573 1.27 martin
574 1.27 martin /* start of name matches? */
575 1.27 martin if (strncmp(dev, *list, len) == 0) {
576 1.27 martin char *endp;
577 1.27 martin int e;
578 1.27 martin
579 1.27 martin /* remainder of name is a decimal number? */
580 1.27 martin strtou(dev+len, &endp, 10, 0, INT_MAX, &e);
581 1.27 martin if (endp && *endp == 0 && e == 0)
582 1.27 martin return true;
583 1.27 martin }
584 1.27 martin }
585 1.27 martin
586 1.27 martin return false;
587 1.27 martin }
588 1.27 martin
589 1.27 martin bool
590 1.27 martin is_bootable_device(const char *dev)
591 1.27 martin {
592 1.27 martin static const char *non_bootable_devs[] = {
593 1.27 martin "raid", /* bootcode lives outside of raid */
594 1.27 martin "xbd", /* xen virtual device, can not boot from that */
595 1.27 martin NULL
596 1.27 martin };
597 1.27 martin
598 1.27 martin return !dev_in_list(dev, non_bootable_devs);
599 1.27 martin }
600 1.27 martin
601 1.27 martin bool
602 1.27 martin is_partitionable_device(const char *dev)
603 1.27 martin {
604 1.27 martin static const char *non_partitionable_devs[] = {
605 1.42 msaitoh "dk", /* this is already a partitioned slice */
606 1.27 martin NULL
607 1.27 martin };
608 1.27 martin
609 1.27 martin return !dev_in_list(dev, non_partitionable_devs);
610 1.27 martin }
611 1.27 martin
612 1.18 martin /*
613 1.18 martin * Multi-purpose helper function:
614 1.21 martin * iterate all known disks, invoke a callback for each.
615 1.21 martin * Stop iteration when the callback returns false.
616 1.76 andvar * Return true when iteration actually happened, false on error.
617 1.18 martin */
618 1.22 martin bool
619 1.21 martin enumerate_disks(void *state, bool (*func)(void *state, const char *dev))
620 1.1 dholland {
621 1.17 martin static const int mib[] = { CTL_HW, HW_DISKNAMES };
622 1.17 martin static const unsigned int miblen = __arraycount(mib);
623 1.17 martin const char *xd;
624 1.21 martin char *disk_names;
625 1.17 martin size_t len;
626 1.1 dholland
627 1.21 martin if (sysctl(mib, miblen, NULL, &len, NULL, 0) == -1)
628 1.21 martin return false;
629 1.1 dholland
630 1.17 martin disk_names = malloc(len);
631 1.17 martin if (disk_names == NULL)
632 1.21 martin return false;
633 1.17 martin
634 1.17 martin if (sysctl(mib, miblen, disk_names, &len, NULL, 0) == -1) {
635 1.17 martin free(disk_names);
636 1.21 martin return false;
637 1.17 martin }
638 1.1 dholland
639 1.17 martin for (xd = strtok(disk_names, " "); xd != NULL; xd = strtok(NULL, " ")) {
640 1.21 martin if (!(*func)(state, xd))
641 1.21 martin break;
642 1.21 martin }
643 1.21 martin free(disk_names);
644 1.21 martin
645 1.21 martin return true;
646 1.21 martin }
647 1.21 martin
648 1.21 martin /*
649 1.21 martin * Helper state for get_disks
650 1.21 martin */
651 1.21 martin struct get_disks_state {
652 1.21 martin int numdisks;
653 1.21 martin struct disk_desc *dd;
654 1.21 martin bool with_non_partitionable;
655 1.21 martin };
656 1.21 martin
657 1.21 martin /*
658 1.21 martin * Helper function for get_disks enumartion
659 1.21 martin */
660 1.21 martin static bool
661 1.21 martin get_disks_helper(void *arg, const char *dev)
662 1.21 martin {
663 1.21 martin struct get_disks_state *state = arg;
664 1.30 martin struct disk_geom geo;
665 1.18 martin
666 1.21 martin /* is this a CD device? */
667 1.25 martin if (is_cdrom_device(dev, true))
668 1.21 martin return true;
669 1.21 martin
670 1.27 martin memset(state->dd, 0, sizeof(*state->dd));
671 1.21 martin strlcpy(state->dd->dd_name, dev, sizeof state->dd->dd_name - 2);
672 1.27 martin state->dd->dd_no_mbr = !is_bootable_device(dev);
673 1.27 martin state->dd->dd_no_part = !is_partitionable_device(dev);
674 1.21 martin
675 1.21 martin if (state->dd->dd_no_part && !state->with_non_partitionable)
676 1.21 martin return true;
677 1.1 dholland
678 1.30 martin if (!get_disk_geom(state->dd->dd_name, &geo)) {
679 1.21 martin if (errno == ENOENT)
680 1.21 martin return true;
681 1.21 martin if (errno != ENOTTY || !state->dd->dd_no_part)
682 1.21 martin /*
683 1.21 martin * Allow plain partitions,
684 1.21 martin * like already existing wedges
685 1.21 martin * (like dk0) if marked as
686 1.21 martin * non-partitioning device.
687 1.21 martin * For all other cases, continue
688 1.21 martin * with the next disk.
689 1.21 martin */
690 1.21 martin return true;
691 1.21 martin if (!is_ffs_wedge(state->dd->dd_name))
692 1.21 martin return true;
693 1.21 martin }
694 1.1 dholland
695 1.21 martin /*
696 1.21 martin * Exclude a disk mounted as root partition,
697 1.21 martin * in case of install-image on a USB memstick.
698 1.21 martin */
699 1.23 martin if (is_active_rootpart(state->dd->dd_name,
700 1.23 martin state->dd->dd_no_part ? -1 : 0))
701 1.21 martin return true;
702 1.17 martin
703 1.30 martin state->dd->dd_cyl = geo.dg_ncylinders;
704 1.30 martin state->dd->dd_head = geo.dg_ntracks;
705 1.30 martin state->dd->dd_sec = geo.dg_nsectors;
706 1.30 martin state->dd->dd_secsize = geo.dg_secsize;
707 1.30 martin state->dd->dd_totsec = geo.dg_secperunit;
708 1.30 martin
709 1.30 martin if (!state->dd->dd_no_part || !get_wedge_descr(state->dd))
710 1.21 martin get_descr(state->dd);
711 1.21 martin state->dd++;
712 1.21 martin state->numdisks++;
713 1.21 martin if (state->numdisks == MAX_DISKS)
714 1.21 martin return false;
715 1.21 martin
716 1.21 martin return true;
717 1.21 martin }
718 1.21 martin
719 1.21 martin /*
720 1.21 martin * Get all disk devices that are not CDs.
721 1.21 martin * Optionally leave out those that can not be partitioned further.
722 1.21 martin */
723 1.21 martin static int
724 1.21 martin get_disks(struct disk_desc *dd, bool with_non_partitionable)
725 1.21 martin {
726 1.21 martin struct get_disks_state state;
727 1.21 martin
728 1.21 martin /* initialize */
729 1.21 martin state.numdisks = 0;
730 1.21 martin state.dd = dd;
731 1.21 martin state.with_non_partitionable = with_non_partitionable;
732 1.21 martin
733 1.21 martin if (enumerate_disks(&state, get_disks_helper))
734 1.21 martin return state.numdisks;
735 1.21 martin
736 1.21 martin return 0;
737 1.1 dholland }
738 1.1 dholland
739 1.30 martin #ifdef DEBUG_VERBOSE
740 1.30 martin static void
741 1.30 martin dump_parts(const struct disk_partitions *parts)
742 1.30 martin {
743 1.30 martin fprintf(stderr, "%s partitions on %s:\n",
744 1.30 martin MSG_XLAT(parts->pscheme->short_name), parts->disk);
745 1.30 martin
746 1.30 martin for (size_t p = 0; p < parts->num_part; p++) {
747 1.30 martin struct disk_part_info info;
748 1.30 martin
749 1.30 martin if (parts->pscheme->get_part_info(
750 1.30 martin parts, p, &info)) {
751 1.30 martin fprintf(stderr, " #%zu: start: %" PRIu64 " "
752 1.30 martin "size: %" PRIu64 ", flags: %x\n",
753 1.30 martin p, info.start, info.size,
754 1.30 martin info.flags);
755 1.30 martin if (info.nat_type)
756 1.30 martin fprintf(stderr, "\ttype: %s\n",
757 1.30 martin info.nat_type->description);
758 1.30 martin } else {
759 1.30 martin fprintf(stderr, "failed to get info "
760 1.30 martin "for partition #%zu\n", p);
761 1.30 martin }
762 1.30 martin }
763 1.72 rillig fprintf(stderr, "%" PRIu64 " sectors free, disk size %" PRIu64
764 1.30 martin " sectors, %zu partitions used\n", parts->free_space,
765 1.30 martin parts->disk_size, parts->num_part);
766 1.30 martin }
767 1.30 martin #endif
768 1.30 martin
769 1.30 martin static bool
770 1.30 martin delete_scheme(struct pm_devs *p)
771 1.30 martin {
772 1.30 martin
773 1.30 martin if (!ask_noyes(MSG_removepartswarn))
774 1.30 martin return false;
775 1.30 martin
776 1.30 martin p->parts->pscheme->free(p->parts);
777 1.30 martin p->parts = NULL;
778 1.30 martin return true;
779 1.30 martin }
780 1.30 martin
781 1.30 martin
782 1.83 martin static bool
783 1.72 rillig convert_copy(struct disk_partitions *old_parts,
784 1.30 martin struct disk_partitions *new_parts)
785 1.30 martin {
786 1.30 martin struct disk_part_info oinfo, ninfo;
787 1.30 martin part_id i;
788 1.83 martin bool err = false;
789 1.30 martin
790 1.30 martin for (i = 0; i < old_parts->num_part; i++) {
791 1.30 martin if (!old_parts->pscheme->get_part_info(old_parts, i, &oinfo))
792 1.30 martin continue;
793 1.30 martin
794 1.30 martin if (oinfo.flags & PTI_PSCHEME_INTERNAL)
795 1.30 martin continue;
796 1.30 martin
797 1.30 martin if (oinfo.flags & PTI_SEC_CONTAINER) {
798 1.30 martin if (old_parts->pscheme->secondary_partitions) {
799 1.30 martin struct disk_partitions *sec_part =
800 1.30 martin old_parts->pscheme->
801 1.30 martin secondary_partitions(
802 1.32 martin old_parts, oinfo.start, false);
803 1.83 martin if (sec_part && !convert_copy(sec_part,
804 1.83 martin new_parts))
805 1.83 martin err = true;
806 1.30 martin }
807 1.30 martin continue;
808 1.30 martin }
809 1.30 martin
810 1.30 martin if (!new_parts->pscheme->adapt_foreign_part_info(new_parts,
811 1.83 martin &ninfo, old_parts->pscheme, &oinfo)) {
812 1.83 martin err = true;
813 1.30 martin continue;
814 1.83 martin }
815 1.83 martin if (!new_parts->pscheme->add_partition(new_parts, &ninfo,
816 1.83 martin NULL))
817 1.83 martin err = true;
818 1.30 martin }
819 1.83 martin return !err;
820 1.30 martin }
821 1.30 martin
822 1.30 martin bool
823 1.30 martin convert_scheme(struct pm_devs *p, bool is_boot_drive, const char **err_msg)
824 1.30 martin {
825 1.30 martin struct disk_partitions *old_parts, *new_parts;
826 1.30 martin const struct disk_partitioning_scheme *new_scheme;
827 1.30 martin
828 1.30 martin *err_msg = NULL;
829 1.30 martin
830 1.30 martin old_parts = p->parts;
831 1.30 martin new_scheme = select_part_scheme(p, old_parts->pscheme,
832 1.30 martin false, MSG_select_other_partscheme);
833 1.30 martin
834 1.73 martin if (new_scheme == NULL) {
835 1.73 martin if (err_msg)
836 1.73 martin *err_msg = INTERNAL_ERROR;
837 1.30 martin return false;
838 1.73 martin }
839 1.30 martin
840 1.30 martin new_parts = new_scheme->create_new_for_disk(p->diskdev,
841 1.62 martin 0, p->dlsize, is_boot_drive, NULL);
842 1.73 martin if (new_parts == NULL) {
843 1.73 martin if (err_msg)
844 1.73 martin *err_msg = MSG_out_of_memory;
845 1.30 martin return false;
846 1.73 martin }
847 1.30 martin
848 1.83 martin if (!convert_copy(old_parts, new_parts)) {
849 1.30 martin /* need to cleanup */
850 1.83 martin if (err_msg)
851 1.83 martin *err_msg = MSG_cvtscheme_error;
852 1.30 martin new_parts->pscheme->free(new_parts);
853 1.30 martin return false;
854 1.30 martin }
855 1.30 martin
856 1.30 martin old_parts->pscheme->free(old_parts);
857 1.30 martin p->parts = new_parts;
858 1.30 martin return true;
859 1.30 martin }
860 1.30 martin
861 1.40 martin static struct pm_devs *
862 1.40 martin dummy_whole_system_pm(void)
863 1.40 martin {
864 1.40 martin static struct pm_devs whole_system = {
865 1.40 martin .diskdev = "/",
866 1.40 martin .no_mbr = true,
867 1.40 martin .no_part = true,
868 1.40 martin .cur_system = true,
869 1.40 martin };
870 1.40 martin static bool init = false;
871 1.40 martin
872 1.40 martin if (!init) {
873 1.40 martin strlcpy(whole_system.diskdev_descr,
874 1.40 martin msg_string(MSG_running_system),
875 1.40 martin sizeof whole_system.diskdev_descr);
876 1.40 martin }
877 1.40 martin
878 1.40 martin return &whole_system;
879 1.40 martin }
880 1.40 martin
881 1.1 dholland int
882 1.40 martin find_disks(const char *doingwhat, bool allow_cur_system)
883 1.1 dholland {
884 1.1 dholland struct disk_desc disks[MAX_DISKS];
885 1.40 martin /* need two more menu entries: current system + extended partitioning */
886 1.80 martin menu_ent dsk_menu[__arraycount(disks) + 2],
887 1.80 martin wedge_menu[__arraycount(dsk_menu)];
888 1.80 martin int disk_no[__arraycount(dsk_menu)], wedge_no[__arraycount(dsk_menu)];
889 1.1 dholland struct disk_desc *disk;
890 1.80 martin int i = 0, dno, wno, skipped = 0;
891 1.15 martin int already_found, numdisks, selected_disk = -1;
892 1.80 martin int menu_no, w_menu_no;
893 1.81 martin size_t max_desc_len;
894 1.30 martin struct pm_devs *pm_i, *pm_last = NULL;
895 1.80 martin bool any_wedges = false;
896 1.30 martin
897 1.30 martin memset(dsk_menu, 0, sizeof(dsk_menu));
898 1.80 martin memset(wedge_menu, 0, sizeof(wedge_menu));
899 1.1 dholland
900 1.1 dholland /* Find disks. */
901 1.21 martin numdisks = get_disks(disks, partman_go <= 0);
902 1.1 dholland
903 1.1 dholland /* need a redraw here, kernel messages hose everything */
904 1.1 dholland touchwin(stdscr);
905 1.1 dholland refresh();
906 1.1 dholland /* Kill typeahead, it won't be what the user had in mind */
907 1.1 dholland fpurge(stdin);
908 1.81 martin /*
909 1.81 martin * we need space for the menu box and the row label,
910 1.81 martin * this sums up to 7 characters.
911 1.81 martin */
912 1.81 martin max_desc_len = getmaxx(stdscr) - 8;
913 1.81 martin if (max_desc_len >= __arraycount(disks[0].dd_descr))
914 1.81 martin max_desc_len = __arraycount(disks[0].dd_descr) - 1;
915 1.1 dholland
916 1.10 isaki /*
917 1.10 isaki * partman_go: <0 - we want to see menu with extended partitioning
918 1.10 isaki * ==0 - we want to see simple select disk menu
919 1.10 isaki * >0 - we do not want to see any menus, just detect
920 1.10 isaki * all disks
921 1.10 isaki */
922 1.2 martin if (partman_go <= 0) {
923 1.40 martin if (numdisks == 0 && !allow_cur_system) {
924 1.2 martin /* No disks found! */
925 1.30 martin hit_enter_to_continue(MSG_nodisk, NULL);
926 1.2 martin /*endwin();*/
927 1.2 martin return -1;
928 1.2 martin } else {
929 1.40 martin /* One or more disks found or current system allowed */
930 1.80 martin dno = wno = 0;
931 1.40 martin if (allow_cur_system) {
932 1.80 martin dsk_menu[dno].opt_name = MSG_running_system;
933 1.80 martin dsk_menu[dno].opt_flags = OPT_EXIT;
934 1.80 martin dsk_menu[dno].opt_action = set_menu_select;
935 1.80 martin disk_no[dno] = -1;
936 1.80 martin i++; dno++;
937 1.40 martin }
938 1.80 martin for (i = 0; i < numdisks; i++) {
939 1.80 martin if (disks[i].dd_no_part) {
940 1.80 martin any_wedges = true;
941 1.80 martin wedge_menu[wno].opt_name =
942 1.80 martin disks[i].dd_descr;
943 1.81 martin disks[i].dd_descr[max_desc_len] = 0;
944 1.80 martin wedge_menu[wno].opt_flags = OPT_EXIT;
945 1.80 martin wedge_menu[wno].opt_action =
946 1.80 martin set_menu_select;
947 1.80 martin wedge_no[wno] = i;
948 1.80 martin wno++;
949 1.80 martin } else {
950 1.80 martin dsk_menu[dno].opt_name =
951 1.80 martin disks[i].dd_descr;
952 1.81 martin disks[i].dd_descr[max_desc_len] = 0;
953 1.80 martin dsk_menu[dno].opt_flags = OPT_EXIT;
954 1.80 martin dsk_menu[dno].opt_action =
955 1.80 martin set_menu_select;
956 1.80 martin disk_no[dno] = i;
957 1.80 martin dno++;
958 1.80 martin }
959 1.80 martin }
960 1.80 martin if (any_wedges) {
961 1.80 martin dsk_menu[dno].opt_name = MSG_selectwedge;
962 1.80 martin dsk_menu[dno].opt_flags = OPT_EXIT;
963 1.80 martin dsk_menu[dno].opt_action = set_menu_select;
964 1.80 martin disk_no[dno] = -2;
965 1.80 martin dno++;
966 1.2 martin }
967 1.2 martin if (partman_go < 0) {
968 1.80 martin dsk_menu[dno].opt_name = MSG_partman;
969 1.80 martin dsk_menu[dno].opt_flags = OPT_EXIT;
970 1.80 martin dsk_menu[dno].opt_action = set_menu_select;
971 1.80 martin disk_no[dno] = -3;
972 1.80 martin dno++;
973 1.2 martin }
974 1.80 martin w_menu_no = -1;
975 1.2 martin menu_no = new_menu(MSG_Available_disks,
976 1.80 martin dsk_menu, dno, -1,
977 1.15 martin 4, 0, 0, MC_SCROLL,
978 1.57 martin NULL, NULL, NULL, NULL, MSG_exit_menu_generic);
979 1.2 martin if (menu_no == -1)
980 1.2 martin return -1;
981 1.80 martin for (;;) {
982 1.80 martin msg_fmt_display(MSG_ask_disk, "%s", doingwhat);
983 1.80 martin i = -1;
984 1.80 martin process_menu(menu_no, &i);
985 1.85 martin if (i == -1)
986 1.85 martin return -1;
987 1.80 martin if (disk_no[i] == -2) {
988 1.80 martin /* do wedges menu */
989 1.80 martin if (w_menu_no == -1) {
990 1.80 martin w_menu_no = new_menu(
991 1.80 martin MSG_Available_wedges,
992 1.80 martin wedge_menu, wno, -1,
993 1.80 martin 4, 0, 0, MC_SCROLL,
994 1.80 martin NULL, NULL, NULL, NULL,
995 1.80 martin MSG_exit_menu_generic);
996 1.80 martin if (w_menu_no == -1) {
997 1.80 martin selected_disk = -1;
998 1.80 martin break;
999 1.80 martin }
1000 1.80 martin }
1001 1.80 martin i = -1;
1002 1.80 martin process_menu(w_menu_no, &i);
1003 1.80 martin if (i == -1)
1004 1.80 martin continue;
1005 1.80 martin selected_disk = wedge_no[i];
1006 1.80 martin break;
1007 1.80 martin }
1008 1.80 martin selected_disk = disk_no[i];
1009 1.80 martin break;
1010 1.80 martin }
1011 1.80 martin if (w_menu_no >= 0)
1012 1.80 martin free_menu(w_menu_no);
1013 1.2 martin free_menu(menu_no);
1014 1.80 martin if (allow_cur_system && selected_disk == -1) {
1015 1.80 martin pm = dummy_whole_system_pm();
1016 1.80 martin return 1;
1017 1.40 martin }
1018 1.2 martin }
1019 1.80 martin if (partman_go < 0 && selected_disk == -3) {
1020 1.2 martin partman_go = 1;
1021 1.10 isaki return -2;
1022 1.2 martin } else
1023 1.2 martin partman_go = 0;
1024 1.80 martin if (selected_disk < 0 || selected_disk < 0
1025 1.80 martin || selected_disk >= numdisks)
1026 1.10 isaki return -1;
1027 1.2 martin }
1028 1.2 martin
1029 1.2 martin /* Fill pm struct with device(s) info */
1030 1.2 martin for (i = 0; i < numdisks; i++) {
1031 1.2 martin if (! partman_go)
1032 1.2 martin disk = disks + selected_disk;
1033 1.2 martin else {
1034 1.2 martin disk = disks + i;
1035 1.2 martin already_found = 0;
1036 1.2 martin SLIST_FOREACH(pm_i, &pm_head, l) {
1037 1.2 martin pm_last = pm_i;
1038 1.44 martin if (strcmp(pm_i->diskdev, disk->dd_name) == 0) {
1039 1.44 martin already_found = 1;
1040 1.2 martin break;
1041 1.2 martin }
1042 1.2 martin }
1043 1.44 martin if (pm_i != NULL && already_found) {
1044 1.44 martin /*
1045 1.44 martin * We already added this device, but
1046 1.44 martin * partitions might have changed
1047 1.44 martin */
1048 1.44 martin if (!pm_i->found) {
1049 1.44 martin pm_i->found = true;
1050 1.44 martin if (pm_i->parts == NULL) {
1051 1.44 martin pm_i->parts =
1052 1.44 martin partitions_read_disk(
1053 1.44 martin pm_i->diskdev,
1054 1.54 martin disk->dd_totsec,
1055 1.62 martin disk->dd_secsize,
1056 1.54 martin disk->dd_no_mbr);
1057 1.44 martin }
1058 1.44 martin }
1059 1.2 martin continue;
1060 1.44 martin }
1061 1.1 dholland }
1062 1.2 martin pm = pm_new;
1063 1.2 martin pm->found = 1;
1064 1.30 martin pm->ptstart = 0;
1065 1.30 martin pm->ptsize = 0;
1066 1.2 martin strlcpy(pm->diskdev, disk->dd_name, sizeof pm->diskdev);
1067 1.2 martin strlcpy(pm->diskdev_descr, disk->dd_descr, sizeof pm->diskdev_descr);
1068 1.2 martin /* Use as a default disk if the user has the sets on a local disk */
1069 1.2 martin strlcpy(localfs_dev, disk->dd_name, sizeof localfs_dev);
1070 1.2 martin
1071 1.30 martin /*
1072 1.30 martin * Init disk size and geometry
1073 1.30 martin */
1074 1.30 martin pm->sectorsize = disk->dd_secsize;
1075 1.30 martin pm->dlcyl = disk->dd_cyl;
1076 1.30 martin pm->dlhead = disk->dd_head;
1077 1.30 martin pm->dlsec = disk->dd_sec;
1078 1.30 martin pm->dlsize = disk->dd_totsec;
1079 1.30 martin if (pm->dlsize == 0)
1080 1.62 martin pm->dlsize =
1081 1.62 martin disk->dd_cyl * disk->dd_head * disk->dd_sec;
1082 1.30 martin
1083 1.54 martin pm->parts = partitions_read_disk(pm->diskdev,
1084 1.62 martin pm->dlsize, disk->dd_secsize, disk->dd_no_mbr);
1085 1.30 martin
1086 1.30 martin again:
1087 1.30 martin
1088 1.30 martin #ifdef DEBUG_VERBOSE
1089 1.30 martin if (pm->parts) {
1090 1.30 martin fputs("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", stderr);
1091 1.30 martin dump_parts(pm->parts);
1092 1.30 martin
1093 1.30 martin if (pm->parts->pscheme->secondary_partitions) {
1094 1.30 martin const struct disk_partitions *sparts =
1095 1.30 martin pm->parts->pscheme->secondary_partitions(
1096 1.32 martin pm->parts, pm->ptstart, false);
1097 1.30 martin if (sparts != NULL)
1098 1.30 martin dump_parts(sparts);
1099 1.30 martin }
1100 1.30 martin }
1101 1.30 martin #endif
1102 1.30 martin
1103 1.30 martin pm->no_mbr = disk->dd_no_mbr;
1104 1.15 martin pm->no_part = disk->dd_no_part;
1105 1.15 martin if (!pm->no_part) {
1106 1.15 martin pm->sectorsize = disk->dd_secsize;
1107 1.15 martin pm->dlcyl = disk->dd_cyl;
1108 1.15 martin pm->dlhead = disk->dd_head;
1109 1.15 martin pm->dlsec = disk->dd_sec;
1110 1.15 martin pm->dlsize = disk->dd_totsec;
1111 1.15 martin if (pm->dlsize == 0)
1112 1.62 martin pm->dlsize =
1113 1.62 martin disk->dd_cyl * disk->dd_head * disk->dd_sec;
1114 1.30 martin
1115 1.30 martin if (pm->parts && pm->parts->pscheme->size_limit != 0
1116 1.30 martin && pm->dlsize > pm->parts->pscheme->size_limit
1117 1.30 martin && ! partman_go) {
1118 1.30 martin
1119 1.30 martin char size[5], limit[5];
1120 1.30 martin
1121 1.30 martin humanize_number(size, sizeof(size),
1122 1.62 martin (uint64_t)pm->dlsize * pm->sectorsize,
1123 1.30 martin "", HN_AUTOSCALE, HN_B | HN_NOSPACE
1124 1.30 martin | HN_DECIMAL);
1125 1.30 martin
1126 1.30 martin humanize_number(limit, sizeof(limit),
1127 1.30 martin (uint64_t)pm->parts->pscheme->size_limit
1128 1.30 martin * 512U,
1129 1.30 martin "", HN_AUTOSCALE, HN_B | HN_NOSPACE
1130 1.30 martin | HN_DECIMAL);
1131 1.30 martin
1132 1.15 martin if (logfp)
1133 1.30 martin fprintf(logfp,
1134 1.30 martin "disk %s: is too big (%" PRIu64
1135 1.30 martin " blocks, %s), will be truncated\n",
1136 1.30 martin pm->diskdev, pm->dlsize,
1137 1.30 martin size);
1138 1.30 martin
1139 1.30 martin msg_display_subst(MSG_toobigdisklabel, 5,
1140 1.30 martin pm->diskdev,
1141 1.30 martin msg_string(pm->parts->pscheme->name),
1142 1.30 martin msg_string(pm->parts->pscheme->short_name),
1143 1.30 martin size, limit);
1144 1.30 martin
1145 1.30 martin int sel = -1;
1146 1.30 martin const char *err = NULL;
1147 1.30 martin process_menu(MENU_convertscheme, &sel);
1148 1.30 martin if (sel == 1) {
1149 1.30 martin if (!delete_scheme(pm)) {
1150 1.30 martin return -1;
1151 1.30 martin }
1152 1.30 martin goto again;
1153 1.30 martin } else if (sel == 2) {
1154 1.30 martin if (!convert_scheme(pm,
1155 1.30 martin partman_go < 0, &err)) {
1156 1.30 martin if (err != NULL)
1157 1.30 martin err_msg_win(err);
1158 1.30 martin return -1;
1159 1.30 martin }
1160 1.30 martin goto again;
1161 1.30 martin } else if (sel == 3) {
1162 1.30 martin return -1;
1163 1.30 martin }
1164 1.30 martin pm->dlsize = pm->parts->pscheme->size_limit;
1165 1.15 martin }
1166 1.15 martin } else {
1167 1.15 martin pm->sectorsize = 0;
1168 1.15 martin pm->dlcyl = 0;
1169 1.15 martin pm->dlhead = 0;
1170 1.15 martin pm->dlsec = 0;
1171 1.15 martin pm->dlsize = 0;
1172 1.15 martin pm->no_mbr = 1;
1173 1.2 martin }
1174 1.2 martin pm->dlcylsize = pm->dlhead * pm->dlsec;
1175 1.2 martin
1176 1.2 martin if (partman_go) {
1177 1.2 martin pm_getrefdev(pm_new);
1178 1.2 martin if (SLIST_EMPTY(&pm_head) || pm_last == NULL)
1179 1.2 martin SLIST_INSERT_HEAD(&pm_head, pm_new, l);
1180 1.2 martin else
1181 1.2 martin SLIST_INSERT_AFTER(pm_last, pm_new, l);
1182 1.30 martin pm_new = malloc(sizeof (struct pm_devs));
1183 1.2 martin memset(pm_new, 0, sizeof *pm_new);
1184 1.2 martin } else
1185 1.30 martin /* We are not in partman and do not want to process
1186 1.30 martin * all devices, exit */
1187 1.2 martin break;
1188 1.1 dholland }
1189 1.1 dholland
1190 1.15 martin return numdisks-skipped;
1191 1.2 martin }
1192 1.2 martin
1193 1.30 martin static int
1194 1.30 martin sort_part_usage_by_mount(const void *a, const void *b)
1195 1.2 martin {
1196 1.30 martin const struct part_usage_info *pa = a, *pb = b;
1197 1.15 martin
1198 1.30 martin /* sort all real partitions by mount point */
1199 1.30 martin if ((pa->instflags & PUIINST_MOUNT) &&
1200 1.30 martin (pb->instflags & PUIINST_MOUNT))
1201 1.30 martin return strcmp(pa->mount, pb->mount);
1202 1.15 martin
1203 1.30 martin /* real partitions go first */
1204 1.30 martin if (pa->instflags & PUIINST_MOUNT)
1205 1.30 martin return -1;
1206 1.30 martin if (pb->instflags & PUIINST_MOUNT)
1207 1.30 martin return 1;
1208 1.8 martin
1209 1.30 martin /* arbitrary order for all other partitions */
1210 1.30 martin if (pa->type == PT_swap)
1211 1.30 martin return -1;
1212 1.30 martin if (pb->type == PT_swap)
1213 1.30 martin return 1;
1214 1.30 martin if (pa->type < pb->type)
1215 1.30 martin return -1;
1216 1.30 martin if (pa->type > pb->type)
1217 1.30 martin return 1;
1218 1.30 martin if (pa->cur_part_id < pb->cur_part_id)
1219 1.30 martin return -1;
1220 1.30 martin if (pa->cur_part_id > pb->cur_part_id)
1221 1.30 martin return 1;
1222 1.30 martin return (uintptr_t)a < (uintptr_t)b ? -1 : 1;
1223 1.1 dholland }
1224 1.1 dholland
1225 1.84 martin /*
1226 1.84 martin * Are we able to newfs this type of file system?
1227 1.84 martin * Keep in sync with switch labels below!
1228 1.84 martin */
1229 1.84 martin bool
1230 1.84 martin can_newfs_fstype(unsigned int t)
1231 1.84 martin {
1232 1.84 martin switch (t) {
1233 1.84 martin case FS_APPLEUFS:
1234 1.84 martin case FS_BSDFFS:
1235 1.84 martin case FS_BSDLFS:
1236 1.84 martin case FS_MSDOS:
1237 1.84 martin case FS_EFI_SP:
1238 1.84 martin case FS_SYSVBFS:
1239 1.84 martin case FS_V7:
1240 1.84 martin case FS_EX2FS:
1241 1.84 martin return true;
1242 1.84 martin }
1243 1.84 martin return false;
1244 1.84 martin }
1245 1.84 martin
1246 1.1 dholland int
1247 1.30 martin make_filesystems(struct install_partition_desc *install)
1248 1.1 dholland {
1249 1.30 martin int error = 0, partno = -1;
1250 1.71 martin char *newfs = NULL, devdev[PATH_MAX], rdev[PATH_MAX],
1251 1.71 martin opts[200], opt[30];
1252 1.30 martin size_t i;
1253 1.30 martin struct part_usage_info *ptn;
1254 1.30 martin struct disk_partitions *parts;
1255 1.30 martin const char *mnt_opts = NULL, *fsname = NULL;
1256 1.1 dholland
1257 1.40 martin if (pm->cur_system)
1258 1.40 martin return 1;
1259 1.40 martin
1260 1.15 martin if (pm->no_part) {
1261 1.15 martin /* check if this target device already has a ffs */
1262 1.30 martin snprintf(rdev, sizeof rdev, _PATH_DEV "/r%s", pm->diskdev);
1263 1.30 martin error = fsck_preen(rdev, "ffs", true);
1264 1.15 martin if (error) {
1265 1.15 martin if (!ask_noyes(MSG_No_filesystem_newfs))
1266 1.15 martin return EINVAL;
1267 1.15 martin error = run_program(RUN_DISPLAY | RUN_PROGRESS,
1268 1.30 martin "/sbin/newfs -V2 -O2 %s", rdev);
1269 1.15 martin }
1270 1.15 martin
1271 1.37 martin md_pre_mount(install, 0);
1272 1.15 martin
1273 1.15 martin make_target_dir("/");
1274 1.30 martin
1275 1.30 martin snprintf(devdev, sizeof devdev, _PATH_DEV "%s", pm->diskdev);
1276 1.15 martin error = target_mount_do("-o async", devdev, "/");
1277 1.15 martin if (error) {
1278 1.30 martin msg_display_subst(MSG_mountfail, 2, devdev, "/");
1279 1.30 martin hit_enter_to_continue(NULL, NULL);
1280 1.15 martin }
1281 1.30 martin
1282 1.15 martin return error;
1283 1.15 martin }
1284 1.15 martin
1285 1.1 dholland /* Making new file systems and mounting them */
1286 1.1 dholland
1287 1.1 dholland /* sort to ensure /usr/local is mounted after /usr (etc) */
1288 1.30 martin qsort(install->infos, install->num, sizeof(*install->infos),
1289 1.30 martin sort_part_usage_by_mount);
1290 1.1 dholland
1291 1.30 martin for (i = 0; i < install->num; i++) {
1292 1.1 dholland /*
1293 1.68 martin * Newfs all file systems marked as needing this.
1294 1.38 martin * Mount the ones that have a mountpoint in the target.
1295 1.1 dholland */
1296 1.30 martin ptn = &install->infos[i];
1297 1.30 martin parts = ptn->parts;
1298 1.50 martin newfs = NULL;
1299 1.50 martin fsname = NULL;
1300 1.1 dholland
1301 1.46 martin if (ptn->size == 0 || parts == NULL|| ptn->type == PT_swap)
1302 1.72 rillig continue;
1303 1.1 dholland
1304 1.30 martin if (parts->pscheme->get_part_device(parts, ptn->cur_part_id,
1305 1.59 martin devdev, sizeof devdev, &partno, parent_device_only, false,
1306 1.59 martin false) && is_active_rootpart(devdev, partno))
1307 1.30 martin continue;
1308 1.30 martin
1309 1.30 martin parts->pscheme->get_part_device(parts, ptn->cur_part_id,
1310 1.59 martin devdev, sizeof devdev, &partno, plain_name, true, true);
1311 1.30 martin
1312 1.30 martin parts->pscheme->get_part_device(parts, ptn->cur_part_id,
1313 1.59 martin rdev, sizeof rdev, &partno, raw_dev_name, true, true);
1314 1.2 martin
1315 1.71 martin opts[0] = 0;
1316 1.30 martin switch (ptn->fs_type) {
1317 1.1 dholland case FS_APPLEUFS:
1318 1.71 martin if (ptn->fs_opt3 != 0)
1319 1.71 martin snprintf(opts, sizeof opts, "-i %u",
1320 1.71 martin ptn->fs_opt3);
1321 1.71 martin asprintf(&newfs, "/sbin/newfs %s", opts);
1322 1.30 martin mnt_opts = "-tffs -o async";
1323 1.30 martin fsname = "ffs";
1324 1.1 dholland break;
1325 1.1 dholland case FS_BSDFFS:
1326 1.71 martin if (ptn->fs_opt3 != 0)
1327 1.71 martin snprintf(opts, sizeof opts, "-i %u ",
1328 1.71 martin ptn->fs_opt3);
1329 1.71 martin if (ptn->fs_opt1 != 0) {
1330 1.71 martin snprintf(opt, sizeof opt, "-b %u ",
1331 1.71 martin ptn->fs_opt1);
1332 1.71 martin strcat(opts, opt);
1333 1.71 martin }
1334 1.71 martin if (ptn->fs_opt2 != 0) {
1335 1.71 martin snprintf(opt, sizeof opt, "-f %u ",
1336 1.71 martin ptn->fs_opt2);
1337 1.71 martin strcat(opts, opt);
1338 1.71 martin }
1339 1.1 dholland asprintf(&newfs,
1340 1.71 martin "/sbin/newfs -V2 -O %d %s",
1341 1.71 martin ptn->fs_version == 2 ? 2 : 1, opts);
1342 1.30 martin if (ptn->mountflags & PUIMNT_LOG)
1343 1.30 martin mnt_opts = "-tffs -o log";
1344 1.1 dholland else
1345 1.30 martin mnt_opts = "-tffs -o async";
1346 1.30 martin fsname = "ffs";
1347 1.1 dholland break;
1348 1.1 dholland case FS_BSDLFS:
1349 1.71 martin if (ptn->fs_opt1 != 0 && ptn->fs_opt2 != 0)
1350 1.71 martin snprintf(opts, sizeof opts, "-b %u",
1351 1.71 martin ptn->fs_opt1 * ptn->fs_opt2);
1352 1.71 martin asprintf(&newfs, "/sbin/newfs_lfs %s", opts);
1353 1.30 martin mnt_opts = "-tlfs";
1354 1.30 martin fsname = "lfs";
1355 1.1 dholland break;
1356 1.1 dholland case FS_MSDOS:
1357 1.84 martin case FS_EFI_SP:
1358 1.1 dholland asprintf(&newfs, "/sbin/newfs_msdos");
1359 1.30 martin mnt_opts = "-tmsdos";
1360 1.30 martin fsname = "msdos";
1361 1.1 dholland break;
1362 1.1 dholland case FS_SYSVBFS:
1363 1.1 dholland asprintf(&newfs, "/sbin/newfs_sysvbfs");
1364 1.30 martin mnt_opts = "-tsysvbfs";
1365 1.30 martin fsname = "sysvbfs";
1366 1.1 dholland break;
1367 1.50 martin case FS_V7:
1368 1.50 martin asprintf(&newfs, "/sbin/newfs_v7fs");
1369 1.50 martin mnt_opts = "-tv7fs";
1370 1.50 martin fsname = "v7fs";
1371 1.50 martin break;
1372 1.1 dholland case FS_EX2FS:
1373 1.58 martin asprintf(&newfs,
1374 1.58 martin ptn->fs_version == 1 ?
1375 1.58 martin "/sbin/newfs_ext2fs -O 0" :
1376 1.58 martin "/sbin/newfs_ext2fs");
1377 1.30 martin mnt_opts = "-text2fs";
1378 1.30 martin fsname = "ext2fs";
1379 1.1 dholland break;
1380 1.1 dholland }
1381 1.30 martin if ((ptn->instflags & PUIINST_NEWFS) && newfs != NULL) {
1382 1.70 martin error = run_program(RUN_DISPLAY | RUN_PROGRESS,
1383 1.30 martin "%s %s", newfs, rdev);
1384 1.50 martin } else if ((ptn->instflags & (PUIINST_MOUNT|PUIINST_BOOT))
1385 1.50 martin && fsname != NULL) {
1386 1.1 dholland /* We'd better check it isn't dirty */
1387 1.30 martin error = fsck_preen(devdev, fsname, false);
1388 1.1 dholland }
1389 1.1 dholland free(newfs);
1390 1.30 martin if (error != 0)
1391 1.1 dholland return error;
1392 1.1 dholland
1393 1.30 martin ptn->instflags &= ~PUIINST_NEWFS;
1394 1.37 martin md_pre_mount(install, i);
1395 1.1 dholland
1396 1.30 martin if (partman_go == 0 && (ptn->instflags & PUIINST_MOUNT) &&
1397 1.30 martin mnt_opts != NULL) {
1398 1.30 martin make_target_dir(ptn->mount);
1399 1.30 martin error = target_mount_do(mnt_opts, devdev,
1400 1.30 martin ptn->mount);
1401 1.1 dholland if (error) {
1402 1.72 rillig msg_display_subst(MSG_mountfail, 2, devdev,
1403 1.30 martin ptn->mount);
1404 1.30 martin hit_enter_to_continue(NULL, NULL);
1405 1.1 dholland return error;
1406 1.1 dholland }
1407 1.1 dholland }
1408 1.1 dholland }
1409 1.1 dholland return 0;
1410 1.1 dholland }
1411 1.1 dholland
1412 1.1 dholland int
1413 1.30 martin make_fstab(struct install_partition_desc *install)
1414 1.1 dholland {
1415 1.1 dholland FILE *f;
1416 1.30 martin const char *dump_dev = NULL;
1417 1.30 martin const char *dev;
1418 1.30 martin char dev_buf[PATH_MAX], swap_dev[PATH_MAX];
1419 1.30 martin
1420 1.40 martin if (pm->cur_system)
1421 1.40 martin return 1;
1422 1.40 martin
1423 1.30 martin swap_dev[0] = 0;
1424 1.1 dholland
1425 1.1 dholland /* Create the fstab. */
1426 1.1 dholland make_target_dir("/etc");
1427 1.1 dholland f = target_fopen("/etc/fstab", "w");
1428 1.2 martin scripting_fprintf(NULL, "cat <<EOF >%s/etc/fstab\n", target_prefix());
1429 1.2 martin
1430 1.1 dholland if (logfp)
1431 1.1 dholland (void)fprintf(logfp,
1432 1.30 martin "Making %s/etc/fstab (%s).\n", target_prefix(),
1433 1.30 martin pm->diskdev);
1434 1.10 isaki
1435 1.1 dholland if (f == NULL) {
1436 1.1 dholland msg_display(MSG_createfstab);
1437 1.1 dholland if (logfp)
1438 1.1 dholland (void)fprintf(logfp, "Failed to make /etc/fstab!\n");
1439 1.30 martin hit_enter_to_continue(NULL, NULL);
1440 1.2 martin #ifndef DEBUG
1441 1.1 dholland return 1;
1442 1.1 dholland #else
1443 1.1 dholland f = stdout;
1444 1.1 dholland #endif
1445 1.1 dholland }
1446 1.1 dholland
1447 1.16 martin scripting_fprintf(f, "# NetBSD /etc/fstab\n# See /usr/share/examples/"
1448 1.16 martin "fstab/ for more examples.\n");
1449 1.15 martin
1450 1.15 martin if (pm->no_part) {
1451 1.15 martin /* single dk? target */
1452 1.15 martin char buf[200], parent[200], swap[200], *prompt;
1453 1.15 martin int res;
1454 1.15 martin
1455 1.15 martin if (!get_name_and_parent(pm->diskdev, buf, parent))
1456 1.15 martin goto done_with_disks;
1457 1.47 martin scripting_fprintf(f, NAME_PREFIX "%s\t/\tffs\trw\t\t1 1\n",
1458 1.15 martin buf);
1459 1.15 martin if (!find_swap_part_on(parent, swap))
1460 1.15 martin goto done_with_disks;
1461 1.30 martin const char *args[] = { parent, swap };
1462 1.30 martin prompt = str_arg_subst(msg_string(MSG_Auto_add_swap_part),
1463 1.30 martin __arraycount(args), args);
1464 1.15 martin res = ask_yesno(prompt);
1465 1.15 martin free(prompt);
1466 1.15 martin if (res)
1467 1.47 martin scripting_fprintf(f, NAME_PREFIX "%s\tnone"
1468 1.15 martin "\tswap\tsw,dp\t\t0 0\n", swap);
1469 1.15 martin goto done_with_disks;
1470 1.15 martin }
1471 1.15 martin
1472 1.30 martin for (size_t i = 0; i < install->num; i++) {
1473 1.30 martin
1474 1.30 martin const struct part_usage_info *ptn = &install->infos[i];
1475 1.30 martin
1476 1.53 martin if (ptn->size == 0)
1477 1.53 martin continue;
1478 1.53 martin
1479 1.60 martin bool is_tmpfs = ptn->type == PT_root &&
1480 1.60 martin ptn->fs_type == FS_TMPFS &&
1481 1.60 martin (ptn->flags & PUIFLG_JUST_MOUNTPOINT);
1482 1.60 martin
1483 1.60 martin if (!is_tmpfs && ptn->type != PT_swap &&
1484 1.30 martin (ptn->instflags & PUIINST_MOUNT) == 0)
1485 1.30 martin continue;
1486 1.30 martin
1487 1.30 martin const char *s = "";
1488 1.30 martin const char *mp = ptn->mount;
1489 1.30 martin const char *fstype = "ffs";
1490 1.30 martin int fsck_pass = 0, dump_freq = 0;
1491 1.30 martin
1492 1.30 martin if (ptn->parts->pscheme->get_part_device(ptn->parts,
1493 1.30 martin ptn->cur_part_id, dev_buf, sizeof dev_buf, NULL,
1494 1.59 martin logical_name, true, false))
1495 1.30 martin dev = dev_buf;
1496 1.30 martin else
1497 1.30 martin dev = NULL;
1498 1.30 martin
1499 1.30 martin if (!*mp) {
1500 1.30 martin /*
1501 1.30 martin * No mount point specified, comment out line and
1502 1.30 martin * use /mnt as a placeholder for the mount point.
1503 1.30 martin */
1504 1.30 martin s = "# ";
1505 1.30 martin mp = "/mnt";
1506 1.30 martin }
1507 1.30 martin
1508 1.30 martin switch (ptn->fs_type) {
1509 1.30 martin case FS_UNUSED:
1510 1.30 martin continue;
1511 1.30 martin case FS_BSDLFS:
1512 1.30 martin /* If there is no LFS, just comment it out. */
1513 1.30 martin if (!check_lfs_progs())
1514 1.1 dholland s = "# ";
1515 1.30 martin fstype = "lfs";
1516 1.30 martin /* FALLTHROUGH */
1517 1.30 martin case FS_BSDFFS:
1518 1.30 martin fsck_pass = (strcmp(mp, "/") == 0) ? 1 : 2;
1519 1.30 martin dump_freq = 1;
1520 1.30 martin break;
1521 1.30 martin case FS_MSDOS:
1522 1.30 martin fstype = "msdos";
1523 1.30 martin break;
1524 1.30 martin case FS_SWAP:
1525 1.30 martin if (swap_dev[0] == 0) {
1526 1.66 martin strlcpy(swap_dev, dev, sizeof swap_dev);
1527 1.30 martin dump_dev = ",dp";
1528 1.30 martin } else {
1529 1.30 martin dump_dev = "";
1530 1.1 dholland }
1531 1.30 martin scripting_fprintf(f, "%s\t\tnone\tswap\tsw%s\t\t 0 0\n",
1532 1.30 martin dev, dump_dev);
1533 1.30 martin continue;
1534 1.60 martin #ifdef HAVE_TMPFS
1535 1.60 martin case FS_TMPFS:
1536 1.60 martin if (ptn->size < 0)
1537 1.60 martin scripting_fprintf(f,
1538 1.60 martin "tmpfs\t\t/tmp\ttmpfs\trw,-m=1777,"
1539 1.60 martin "-s=ram%%%" PRIu64 "\n", -ptn->size);
1540 1.60 martin else
1541 1.60 martin scripting_fprintf(f,
1542 1.60 martin "tmpfs\t\t/tmp\ttmpfs\trw,-m=1777,"
1543 1.60 martin "-s=%" PRIu64 "M\n", ptn->size);
1544 1.60 martin continue;
1545 1.60 martin #else
1546 1.60 martin case FS_MFS:
1547 1.60 martin if (swap_dev[0] != 0)
1548 1.60 martin scripting_fprintf(f,
1549 1.60 martin "%s\t\t/tmp\tmfs\trw,-s=%"
1550 1.60 martin PRIu64 "\n", swap_dev, ptn->size);
1551 1.60 martin else
1552 1.60 martin scripting_fprintf(f,
1553 1.60 martin "swap\t\t/tmp\tmfs\trw,-s=%"
1554 1.60 martin PRIu64 "\n", ptn->size);
1555 1.60 martin continue;
1556 1.60 martin #endif
1557 1.30 martin case FS_SYSVBFS:
1558 1.30 martin fstype = "sysvbfs";
1559 1.30 martin make_target_dir("/stand");
1560 1.30 martin break;
1561 1.30 martin default:
1562 1.30 martin fstype = "???";
1563 1.30 martin s = "# ";
1564 1.30 martin break;
1565 1.2 martin }
1566 1.30 martin /* The code that remounts root rw doesn't check the partition */
1567 1.30 martin if (strcmp(mp, "/") == 0 &&
1568 1.30 martin (ptn->instflags & PUIINST_MOUNT) == 0)
1569 1.30 martin s = "# ";
1570 1.30 martin
1571 1.30 martin scripting_fprintf(f,
1572 1.30 martin "%s%s\t\t%s\t%s\trw%s%s%s%s%s%s%s%s\t\t %d %d\n",
1573 1.30 martin s, dev, mp, fstype,
1574 1.30 martin ptn->mountflags & PUIMNT_LOG ? ",log" : "",
1575 1.48 martin ptn->mountflags & PUIMNT_NOAUTO ? ",noauto" : "",
1576 1.30 martin ptn->mountflags & PUIMNT_ASYNC ? ",async" : "",
1577 1.30 martin ptn->mountflags & PUIMNT_NOATIME ? ",noatime" : "",
1578 1.30 martin ptn->mountflags & PUIMNT_NODEV ? ",nodev" : "",
1579 1.30 martin ptn->mountflags & PUIMNT_NODEVMTIME ? ",nodevmtime" : "",
1580 1.30 martin ptn->mountflags & PUIMNT_NOEXEC ? ",noexec" : "",
1581 1.30 martin ptn->mountflags & PUIMNT_NOSUID ? ",nosuid" : "",
1582 1.30 martin dump_freq, fsck_pass);
1583 1.1 dholland }
1584 1.30 martin
1585 1.15 martin done_with_disks:
1586 1.18 martin if (cdrom_dev[0] == 0)
1587 1.18 martin get_default_cdrom(cdrom_dev, sizeof(cdrom_dev));
1588 1.18 martin
1589 1.1 dholland /* Add /kern, /proc and /dev/pts to fstab and make mountpoint. */
1590 1.1 dholland scripting_fprintf(f, "kernfs\t\t/kern\tkernfs\trw\n");
1591 1.1 dholland scripting_fprintf(f, "ptyfs\t\t/dev/pts\tptyfs\trw\n");
1592 1.1 dholland scripting_fprintf(f, "procfs\t\t/proc\tprocfs\trw\n");
1593 1.69 martin if (cdrom_dev[0] != 0)
1594 1.69 martin scripting_fprintf(f, "/dev/%s\t\t/cdrom\tcd9660\tro,noauto\n",
1595 1.69 martin cdrom_dev);
1596 1.1 dholland scripting_fprintf(f, "%stmpfs\t\t/var/shm\ttmpfs\trw,-m1777,-sram%%25\n",
1597 1.1 dholland tmpfs_on_var_shm() ? "" : "#");
1598 1.1 dholland make_target_dir("/kern");
1599 1.1 dholland make_target_dir("/proc");
1600 1.1 dholland make_target_dir("/dev/pts");
1601 1.69 martin if (cdrom_dev[0] != 0)
1602 1.69 martin make_target_dir("/cdrom");
1603 1.1 dholland make_target_dir("/var/shm");
1604 1.1 dholland
1605 1.1 dholland scripting_fprintf(NULL, "EOF\n");
1606 1.1 dholland
1607 1.1 dholland fclose(f);
1608 1.1 dholland fflush(NULL);
1609 1.1 dholland return 0;
1610 1.1 dholland }
1611 1.1 dholland
1612 1.47 martin static bool
1613 1.47 martin find_part_by_name(const char *name, struct disk_partitions **parts,
1614 1.47 martin part_id *pno)
1615 1.47 martin {
1616 1.47 martin struct pm_devs *i;
1617 1.47 martin struct disk_partitions *ps;
1618 1.47 martin part_id id;
1619 1.47 martin struct disk_desc disks[MAX_DISKS];
1620 1.47 martin int n, cnt;
1621 1.47 martin
1622 1.47 martin if (SLIST_EMPTY(&pm_head)) {
1623 1.47 martin /*
1624 1.47 martin * List has not been filled, only "pm" is valid - check
1625 1.47 martin * that first.
1626 1.47 martin */
1627 1.65 martin if (pm->parts != NULL &&
1628 1.65 martin pm->parts->pscheme->find_by_name != NULL) {
1629 1.47 martin id = pm->parts->pscheme->find_by_name(pm->parts, name);
1630 1.47 martin if (id != NO_PART) {
1631 1.47 martin *pno = id;
1632 1.47 martin *parts = pm->parts;
1633 1.47 martin return true;
1634 1.47 martin }
1635 1.47 martin }
1636 1.47 martin /*
1637 1.47 martin * Not that easy - check all other disks
1638 1.47 martin */
1639 1.47 martin cnt = get_disks(disks, false);
1640 1.47 martin for (n = 0; n < cnt; n++) {
1641 1.47 martin if (strcmp(disks[n].dd_name, pm->diskdev) == 0)
1642 1.47 martin continue;
1643 1.47 martin ps = partitions_read_disk(disks[n].dd_name,
1644 1.62 martin disks[n].dd_totsec,
1645 1.62 martin disks[n].dd_secsize,
1646 1.62 martin disks[n].dd_no_mbr);
1647 1.47 martin if (ps == NULL)
1648 1.47 martin continue;
1649 1.47 martin if (ps->pscheme->find_by_name == NULL)
1650 1.47 martin continue;
1651 1.47 martin id = ps->pscheme->find_by_name(ps, name);
1652 1.47 martin if (id != NO_PART) {
1653 1.47 martin *pno = id;
1654 1.47 martin *parts = ps;
1655 1.47 martin return true; /* XXX this leaks memory */
1656 1.47 martin }
1657 1.47 martin ps->pscheme->free(ps);
1658 1.47 martin }
1659 1.47 martin } else {
1660 1.47 martin SLIST_FOREACH(i, &pm_head, l) {
1661 1.47 martin if (i->parts == NULL)
1662 1.47 martin continue;
1663 1.47 martin if (i->parts->pscheme->find_by_name == NULL)
1664 1.47 martin continue;
1665 1.47 martin id = i->parts->pscheme->find_by_name(i->parts, name);
1666 1.47 martin if (id == NO_PART)
1667 1.47 martin continue;
1668 1.47 martin *pno = id;
1669 1.47 martin *parts = i->parts;
1670 1.47 martin return true;
1671 1.47 martin }
1672 1.47 martin }
1673 1.47 martin
1674 1.47 martin *pno = NO_PART;
1675 1.47 martin *parts = NULL;
1676 1.47 martin return false;
1677 1.47 martin }
1678 1.47 martin
1679 1.1 dholland static int
1680 1.1 dholland /*ARGSUSED*/
1681 1.47 martin process_found_fs(struct data *list, size_t num, const struct lookfor *item,
1682 1.47 martin bool with_fsck)
1683 1.1 dholland {
1684 1.1 dholland int error;
1685 1.47 martin char rdev[PATH_MAX], dev[PATH_MAX],
1686 1.47 martin options[STRSIZE], tmp[STRSIZE], *op, *last;
1687 1.47 martin const char *fsname = (const char*)item->var;
1688 1.47 martin part_id pno;
1689 1.47 martin struct disk_partitions *parts;
1690 1.51 martin size_t len;
1691 1.51 martin bool first, is_root;
1692 1.47 martin
1693 1.47 martin if (num < 2 || strstr(list[2].u.s_val, "noauto") != NULL)
1694 1.47 martin return 0;
1695 1.1 dholland
1696 1.51 martin is_root = strcmp(list[1].u.s_val, "/") == 0;
1697 1.51 martin if (is_root && target_mounted())
1698 1.1 dholland return 0;
1699 1.1 dholland
1700 1.47 martin if (strcmp(item->head, name_prefix) == 0) {
1701 1.47 martin /* this fstab entry uses NAME= syntax */
1702 1.64 martin
1703 1.64 martin /* unescape */
1704 1.64 martin char *src, *dst;
1705 1.64 martin for (src = list[0].u.s_val, dst =src; src[0] != 0; ) {
1706 1.64 martin if (src[0] == '\\' && src[1] != 0)
1707 1.64 martin src++;
1708 1.64 martin *dst++ = *src++;
1709 1.64 martin }
1710 1.64 martin *dst = 0;
1711 1.64 martin
1712 1.47 martin if (!find_part_by_name(list[0].u.s_val,
1713 1.47 martin &parts, &pno) || parts == NULL || pno == NO_PART)
1714 1.47 martin return 0;
1715 1.47 martin parts->pscheme->get_part_device(parts, pno,
1716 1.59 martin dev, sizeof(dev), NULL, plain_name, true, true);
1717 1.47 martin parts->pscheme->get_part_device(parts, pno,
1718 1.59 martin rdev, sizeof(rdev), NULL, raw_dev_name, true, true);
1719 1.45 martin } else {
1720 1.51 martin /* this fstab entry uses the plain device name */
1721 1.51 martin if (is_root) {
1722 1.51 martin /*
1723 1.51 martin * PR 54480: we can not use the current device name
1724 1.51 martin * as it might be different from the real environment.
1725 1.51 martin * This is an abuse of the functionality, but it used
1726 1.51 martin * to work before (and still does work if only a single
1727 1.51 martin * target disk is involved).
1728 1.51 martin * Use the device name from the current "pm" instead.
1729 1.51 martin */
1730 1.51 martin strcpy(rdev, "/dev/r");
1731 1.51 martin strlcat(rdev, pm->diskdev, sizeof(rdev));
1732 1.51 martin strcpy(dev, "/dev/");
1733 1.51 martin strlcat(dev, pm->diskdev, sizeof(dev));
1734 1.51 martin /* copy over the partition letter, if any */
1735 1.51 martin len = strlen(list[0].u.s_val);
1736 1.51 martin if (list[0].u.s_val[len-1] >= 'a' &&
1737 1.51 martin list[0].u.s_val[len-1] <=
1738 1.51 martin ('a' + getmaxpartitions())) {
1739 1.51 martin strlcat(rdev, &list[0].u.s_val[len-1],
1740 1.51 martin sizeof(rdev));
1741 1.51 martin strlcat(dev, &list[0].u.s_val[len-1],
1742 1.51 martin sizeof(dev));
1743 1.51 martin }
1744 1.51 martin } else {
1745 1.51 martin strcpy(rdev, "/dev/r");
1746 1.51 martin strlcat(rdev, list[0].u.s_val, sizeof(rdev));
1747 1.51 martin strcpy(dev, "/dev/");
1748 1.51 martin strlcat(dev, list[0].u.s_val, sizeof(dev));
1749 1.51 martin }
1750 1.47 martin }
1751 1.47 martin
1752 1.47 martin if (with_fsck) {
1753 1.47 martin /* need the raw device for fsck_preen */
1754 1.47 martin error = fsck_preen(rdev, fsname, false);
1755 1.47 martin if (error != 0)
1756 1.47 martin return error;
1757 1.45 martin }
1758 1.45 martin
1759 1.47 martin /* add mount option for fs type */
1760 1.47 martin strcpy(options, "-t ");
1761 1.47 martin strlcat(options, fsname, sizeof(options));
1762 1.47 martin
1763 1.47 martin /* extract mount options from fstab */
1764 1.47 martin strlcpy(tmp, list[2].u.s_val, sizeof(tmp));
1765 1.47 martin for (first = true, op = strtok_r(tmp, ",", &last); op != NULL;
1766 1.47 martin op = strtok_r(NULL, ",", &last)) {
1767 1.47 martin if (strcmp(op, FSTAB_RW) == 0 ||
1768 1.47 martin strcmp(op, FSTAB_RQ) == 0 ||
1769 1.47 martin strcmp(op, FSTAB_RO) == 0 ||
1770 1.47 martin strcmp(op, FSTAB_SW) == 0 ||
1771 1.47 martin strcmp(op, FSTAB_DP) == 0 ||
1772 1.47 martin strcmp(op, FSTAB_XX) == 0)
1773 1.47 martin continue;
1774 1.47 martin if (first) {
1775 1.47 martin first = false;
1776 1.47 martin strlcat(options, " -o ", sizeof(options));
1777 1.47 martin } else {
1778 1.47 martin strlcat(options, ",", sizeof(options));
1779 1.47 martin }
1780 1.47 martin strlcat(options, op, sizeof(options));
1781 1.47 martin }
1782 1.1 dholland
1783 1.47 martin error = target_mount(options, dev, list[1].u.s_val);
1784 1.1 dholland if (error != 0) {
1785 1.33 christos msg_fmt_display(MSG_mount_failed, "%s", list[0].u.s_val);
1786 1.9 martin if (!ask_noyes(NULL))
1787 1.1 dholland return error;
1788 1.1 dholland }
1789 1.1 dholland return 0;
1790 1.1 dholland }
1791 1.1 dholland
1792 1.1 dholland static int
1793 1.1 dholland /*ARGSUSED*/
1794 1.47 martin found_fs(struct data *list, size_t num, const struct lookfor *item)
1795 1.1 dholland {
1796 1.47 martin return process_found_fs(list, num, item, true);
1797 1.47 martin }
1798 1.1 dholland
1799 1.47 martin static int
1800 1.47 martin /*ARGSUSED*/
1801 1.47 martin found_fs_nocheck(struct data *list, size_t num, const struct lookfor *item)
1802 1.47 martin {
1803 1.47 martin return process_found_fs(list, num, item, false);
1804 1.1 dholland }
1805 1.1 dholland
1806 1.1 dholland /*
1807 1.1 dholland * Do an fsck. On failure, inform the user by showing a warning
1808 1.1 dholland * message and doing menu_ok() before proceeding.
1809 1.30 martin * The device passed should be the full qualified path to raw disk
1810 1.30 martin * (e.g. /dev/rwd0a).
1811 1.1 dholland * Returns 0 on success, or nonzero return code from fsck() on failure.
1812 1.1 dholland */
1813 1.1 dholland static int
1814 1.30 martin fsck_preen(const char *disk, const char *fsname, bool silent)
1815 1.1 dholland {
1816 1.30 martin char *prog, err[12];
1817 1.1 dholland int error;
1818 1.1 dholland
1819 1.1 dholland if (fsname == NULL)
1820 1.1 dholland return 0;
1821 1.1 dholland /* first, check if fsck program exists, if not, assume ok */
1822 1.1 dholland asprintf(&prog, "/sbin/fsck_%s", fsname);
1823 1.1 dholland if (prog == NULL)
1824 1.1 dholland return 0;
1825 1.12 martin if (access(prog, X_OK) != 0) {
1826 1.12 martin free(prog);
1827 1.1 dholland return 0;
1828 1.12 martin }
1829 1.1 dholland if (!strcmp(fsname,"ffs"))
1830 1.30 martin fixsb(prog, disk);
1831 1.30 martin error = run_program(silent? RUN_SILENT|RUN_ERROR_OK : 0, "%s -p -q %s", prog, disk);
1832 1.1 dholland free(prog);
1833 1.15 martin if (error != 0 && !silent) {
1834 1.30 martin sprintf(err, "%d", error);
1835 1.30 martin msg_display_subst(msg_string(MSG_badfs), 3,
1836 1.30 martin disk, fsname, err);
1837 1.9 martin if (ask_noyes(NULL))
1838 1.1 dholland error = 0;
1839 1.1 dholland /* XXX at this point maybe we should run a full fsck? */
1840 1.1 dholland }
1841 1.1 dholland return error;
1842 1.1 dholland }
1843 1.1 dholland
1844 1.1 dholland /* This performs the same function as the etc/rc.d/fixsb script
1845 1.1 dholland * which attempts to correct problems with ffs1 filesystems
1846 1.1 dholland * which may have been introduced by booting a netbsd-current kernel
1847 1.1 dholland * from between April of 2003 and January 2004. For more information
1848 1.1 dholland * This script was developed as a response to NetBSD pr install/25138
1849 1.1 dholland * Additional prs regarding the original issue include:
1850 1.1 dholland * bin/17910 kern/21283 kern/21404 port-macppc/23925 port-macppc/23926
1851 1.1 dholland */
1852 1.1 dholland static void
1853 1.30 martin fixsb(const char *prog, const char *disk)
1854 1.1 dholland {
1855 1.1 dholland int fd;
1856 1.1 dholland int rval;
1857 1.1 dholland union {
1858 1.1 dholland struct fs fs;
1859 1.1 dholland char buf[SBLOCKSIZE];
1860 1.1 dholland } sblk;
1861 1.1 dholland struct fs *fs = &sblk.fs;
1862 1.1 dholland
1863 1.30 martin fd = open(disk, O_RDONLY);
1864 1.1 dholland if (fd == -1)
1865 1.1 dholland return;
1866 1.1 dholland
1867 1.1 dholland /* Read ffsv1 main superblock */
1868 1.1 dholland rval = pread(fd, sblk.buf, sizeof sblk.buf, SBLOCK_UFS1);
1869 1.1 dholland close(fd);
1870 1.1 dholland if (rval != sizeof sblk.buf)
1871 1.1 dholland return;
1872 1.1 dholland
1873 1.1 dholland if (fs->fs_magic != FS_UFS1_MAGIC &&
1874 1.1 dholland fs->fs_magic != FS_UFS1_MAGIC_SWAPPED)
1875 1.1 dholland /* Not FFSv1 */
1876 1.1 dholland return;
1877 1.1 dholland if (fs->fs_old_flags & FS_FLAGS_UPDATED)
1878 1.1 dholland /* properly updated fslevel 4 */
1879 1.1 dholland return;
1880 1.1 dholland if (fs->fs_bsize != fs->fs_maxbsize)
1881 1.1 dholland /* not messed up */
1882 1.1 dholland return;
1883 1.1 dholland
1884 1.1 dholland /*
1885 1.1 dholland * OK we have a munged fs, first 'upgrade' to fslevel 4,
1886 1.1 dholland * We specify -b16 in order to stop fsck bleating that the
1887 1.1 dholland * sb doesn't match the first alternate.
1888 1.1 dholland */
1889 1.1 dholland run_program(RUN_DISPLAY | RUN_PROGRESS,
1890 1.30 martin "%s -p -b 16 -c 4 %s", prog, disk);
1891 1.1 dholland /* Then downgrade to fslevel 3 */
1892 1.1 dholland run_program(RUN_DISPLAY | RUN_PROGRESS,
1893 1.30 martin "%s -p -c 3 %s", prog, disk);
1894 1.1 dholland }
1895 1.1 dholland
1896 1.1 dholland /*
1897 1.1 dholland * fsck and mount the root partition.
1898 1.30 martin * devdev is the fully qualified block device name.
1899 1.1 dholland */
1900 1.1 dholland static int
1901 1.47 martin mount_root(const char *devdev, bool first, bool writeable,
1902 1.47 martin struct install_partition_desc *install)
1903 1.1 dholland {
1904 1.1 dholland int error;
1905 1.1 dholland
1906 1.30 martin error = fsck_preen(devdev, "ffs", false);
1907 1.1 dholland if (error != 0)
1908 1.1 dholland return error;
1909 1.1 dholland
1910 1.47 martin if (first)
1911 1.47 martin md_pre_mount(install, 0);
1912 1.1 dholland
1913 1.30 martin /* Mount devdev on target's "".
1914 1.1 dholland * If we pass "" as mount-on, Prefixing will DTRT.
1915 1.1 dholland * for now, use no options.
1916 1.1 dholland * XXX consider -o remount in case target root is
1917 1.1 dholland * current root, still readonly from single-user?
1918 1.1 dholland */
1919 1.47 martin return target_mount(writeable? "" : "-r", devdev, "");
1920 1.1 dholland }
1921 1.1 dholland
1922 1.1 dholland /* Get information on the file systems mounted from the root filesystem.
1923 1.1 dholland * Offer to convert them into 4.4BSD inodes if they are not 4.4BSD
1924 1.1 dholland * inodes. Fsck them. Mount them.
1925 1.1 dholland */
1926 1.1 dholland
1927 1.1 dholland int
1928 1.30 martin mount_disks(struct install_partition_desc *install)
1929 1.1 dholland {
1930 1.1 dholland char *fstab;
1931 1.1 dholland int fstabsize;
1932 1.1 dholland int error;
1933 1.30 martin char devdev[PATH_MAX];
1934 1.47 martin size_t i, num_fs_types, num_entries;
1935 1.47 martin struct lookfor *fstabbuf, *l;
1936 1.1 dholland
1937 1.40 martin if (install->cur_system)
1938 1.40 martin return 0;
1939 1.40 martin
1940 1.47 martin /*
1941 1.47 martin * Check what file system tools are available and create parsers
1942 1.47 martin * for the corresponding fstab(5) entries - all others will be
1943 1.47 martin * ignored.
1944 1.47 martin */
1945 1.47 martin num_fs_types = 1; /* ffs is implicit */
1946 1.47 martin for (i = 0; i < __arraycount(extern_fs_with_chk); i++) {
1947 1.47 martin sprintf(devdev, "/sbin/newfs_%s", extern_fs_with_chk[i]);
1948 1.47 martin if (file_exists_p(devdev))
1949 1.47 martin num_fs_types++;
1950 1.47 martin }
1951 1.47 martin for (i = 0; i < __arraycount(extern_fs_newfs_only); i++) {
1952 1.47 martin sprintf(devdev, "/sbin/newfs_%s", extern_fs_newfs_only[i]);
1953 1.47 martin if (file_exists_p(devdev))
1954 1.47 martin num_fs_types++;
1955 1.47 martin }
1956 1.47 martin num_entries = 2 * num_fs_types + 1; /* +1 for "ufs" special case */
1957 1.47 martin fstabbuf = calloc(num_entries, sizeof(*fstabbuf));
1958 1.47 martin if (fstabbuf == NULL)
1959 1.47 martin return -1;
1960 1.47 martin l = fstabbuf;
1961 1.47 martin l->head = "/dev/";
1962 1.47 martin l->fmt = strdup("/dev/%s %s ffs %s");
1963 1.47 martin l->todo = "c";
1964 1.47 martin l->var = __UNCONST("ffs");
1965 1.47 martin l->func = found_fs;
1966 1.47 martin l++;
1967 1.47 martin l->head = "/dev/";
1968 1.47 martin l->fmt = strdup("/dev/%s %s ufs %s");
1969 1.47 martin l->todo = "c";
1970 1.47 martin l->var = __UNCONST("ffs");
1971 1.47 martin l->func = found_fs;
1972 1.47 martin l++;
1973 1.47 martin l->head = NAME_PREFIX;
1974 1.47 martin l->fmt = strdup(NAME_PREFIX "%s %s ffs %s");
1975 1.47 martin l->todo = "c";
1976 1.47 martin l->var = __UNCONST("ffs");
1977 1.47 martin l->func = found_fs;
1978 1.47 martin l++;
1979 1.47 martin for (i = 0; i < __arraycount(extern_fs_with_chk); i++) {
1980 1.47 martin sprintf(devdev, "/sbin/newfs_%s", extern_fs_with_chk[i]);
1981 1.47 martin if (!file_exists_p(devdev))
1982 1.47 martin continue;
1983 1.47 martin sprintf(devdev, "/dev/%%s %%s %s %%s", extern_fs_with_chk[i]);
1984 1.47 martin l->head = "/dev/";
1985 1.47 martin l->fmt = strdup(devdev);
1986 1.47 martin l->todo = "c";
1987 1.47 martin l->var = __UNCONST(extern_fs_with_chk[i]);
1988 1.47 martin l->func = found_fs;
1989 1.47 martin l++;
1990 1.47 martin sprintf(devdev, NAME_PREFIX "%%s %%s %s %%s",
1991 1.47 martin extern_fs_with_chk[i]);
1992 1.47 martin l->head = NAME_PREFIX;
1993 1.47 martin l->fmt = strdup(devdev);
1994 1.47 martin l->todo = "c";
1995 1.47 martin l->var = __UNCONST(extern_fs_with_chk[i]);
1996 1.47 martin l->func = found_fs;
1997 1.47 martin l++;
1998 1.47 martin }
1999 1.47 martin for (i = 0; i < __arraycount(extern_fs_newfs_only); i++) {
2000 1.47 martin sprintf(devdev, "/sbin/newfs_%s", extern_fs_newfs_only[i]);
2001 1.47 martin if (!file_exists_p(devdev))
2002 1.47 martin continue;
2003 1.47 martin sprintf(devdev, "/dev/%%s %%s %s %%s", extern_fs_newfs_only[i]);
2004 1.47 martin l->head = "/dev/";
2005 1.47 martin l->fmt = strdup(devdev);
2006 1.47 martin l->todo = "c";
2007 1.47 martin l->var = __UNCONST(extern_fs_newfs_only[i]);
2008 1.47 martin l->func = found_fs_nocheck;
2009 1.47 martin l++;
2010 1.47 martin sprintf(devdev, NAME_PREFIX "%%s %%s %s %%s",
2011 1.47 martin extern_fs_newfs_only[i]);
2012 1.47 martin l->head = NAME_PREFIX;
2013 1.47 martin l->fmt = strdup(devdev);
2014 1.47 martin l->todo = "c";
2015 1.47 martin l->var = __UNCONST(extern_fs_newfs_only[i]);
2016 1.47 martin l->func = found_fs_nocheck;
2017 1.47 martin l++;
2018 1.47 martin }
2019 1.47 martin assert((size_t)(l - fstabbuf) == num_entries);
2020 1.1 dholland
2021 1.1 dholland /* First the root device. */
2022 1.65 martin if (target_already_root()) {
2023 1.1 dholland /* avoid needing to call target_already_root() again */
2024 1.1 dholland targetroot_mnt[0] = 0;
2025 1.65 martin } else if (pm->no_part) {
2026 1.65 martin snprintf(devdev, sizeof devdev, _PATH_DEV "%s", pm->diskdev);
2027 1.65 martin error = mount_root(devdev, true, false, install);
2028 1.65 martin if (error != 0 && error != EBUSY)
2029 1.65 martin return -1;
2030 1.65 martin } else {
2031 1.39 martin for (i = 0; i < install->num; i++) {
2032 1.39 martin if (is_root_part_mount(install->infos[i].mount))
2033 1.39 martin break;
2034 1.39 martin }
2035 1.39 martin
2036 1.39 martin if (i >= install->num) {
2037 1.39 martin hit_enter_to_continue(MSG_noroot, NULL);
2038 1.39 martin return -1;
2039 1.39 martin }
2040 1.39 martin
2041 1.39 martin if (!install->infos[i].parts->pscheme->get_part_device(
2042 1.39 martin install->infos[i].parts, install->infos[i].cur_part_id,
2043 1.59 martin devdev, sizeof devdev, NULL, plain_name, true, true))
2044 1.30 martin return -1;
2045 1.47 martin error = mount_root(devdev, true, false, install);
2046 1.1 dholland if (error != 0 && error != EBUSY)
2047 1.1 dholland return -1;
2048 1.1 dholland }
2049 1.1 dholland
2050 1.1 dholland /* Check the target /etc/fstab exists before trying to parse it. */
2051 1.1 dholland if (target_dir_exists_p("/etc") == 0 ||
2052 1.1 dholland target_file_exists_p("/etc/fstab") == 0) {
2053 1.33 christos msg_fmt_display(MSG_noetcfstab, "%s", pm->diskdev);
2054 1.30 martin hit_enter_to_continue(NULL, NULL);
2055 1.1 dholland return -1;
2056 1.1 dholland }
2057 1.1 dholland
2058 1.1 dholland
2059 1.1 dholland /* Get fstab entries from the target-root /etc/fstab. */
2060 1.1 dholland fstabsize = target_collect_file(T_FILE, &fstab, "/etc/fstab");
2061 1.1 dholland if (fstabsize < 0) {
2062 1.1 dholland /* error ! */
2063 1.33 christos msg_fmt_display(MSG_badetcfstab, "%s", pm->diskdev);
2064 1.30 martin hit_enter_to_continue(NULL, NULL);
2065 1.47 martin umount_root();
2066 1.2 martin return -2;
2067 1.1 dholland }
2068 1.47 martin /*
2069 1.47 martin * We unmount the read-only root again, so we can mount it
2070 1.47 martin * with proper options from /etc/fstab
2071 1.47 martin */
2072 1.47 martin umount_root();
2073 1.47 martin
2074 1.47 martin /*
2075 1.47 martin * Now do all entries in /etc/fstab and mount them if required
2076 1.47 martin */
2077 1.47 martin error = walk(fstab, (size_t)fstabsize, fstabbuf, num_entries);
2078 1.1 dholland free(fstab);
2079 1.47 martin for (i = 0; i < num_entries; i++)
2080 1.47 martin free(__UNCONST(fstabbuf[i].fmt));
2081 1.47 martin free(fstabbuf);
2082 1.1 dholland
2083 1.1 dholland return error;
2084 1.1 dholland }
2085 1.1 dholland
2086 1.67 martin static char swap_dev[PATH_MAX];
2087 1.67 martin
2088 1.75 martin void
2089 1.30 martin set_swap_if_low_ram(struct install_partition_desc *install)
2090 1.10 isaki {
2091 1.67 martin swap_dev[0] = 0;
2092 1.61 martin if (get_ramsize() <= TINY_RAM_SIZE)
2093 1.75 martin set_swap(install);
2094 1.7 abs }
2095 1.7 abs
2096 1.75 martin void
2097 1.30 martin set_swap(struct install_partition_desc *install)
2098 1.1 dholland {
2099 1.30 martin size_t i;
2100 1.1 dholland int rval;
2101 1.1 dholland
2102 1.67 martin swap_dev[0] = 0;
2103 1.30 martin for (i = 0; i < install->num; i++) {
2104 1.30 martin if (install->infos[i].type == PT_swap)
2105 1.30 martin break;
2106 1.30 martin }
2107 1.30 martin if (i >= install->num)
2108 1.75 martin return;
2109 1.1 dholland
2110 1.30 martin if (!install->infos[i].parts->pscheme->get_part_device(
2111 1.67 martin install->infos[i].parts, install->infos[i].cur_part_id, swap_dev,
2112 1.67 martin sizeof swap_dev, NULL, plain_name, true, true))
2113 1.75 martin return;
2114 1.30 martin
2115 1.67 martin rval = swapctl(SWAP_ON, swap_dev, 0);
2116 1.75 martin if (rval != 0)
2117 1.67 martin swap_dev[0] = 0;
2118 1.67 martin }
2119 1.1 dholland
2120 1.67 martin void
2121 1.67 martin clear_swap(void)
2122 1.67 martin {
2123 1.67 martin
2124 1.67 martin if (swap_dev[0] == 0)
2125 1.67 martin return;
2126 1.67 martin swapctl(SWAP_OFF, swap_dev, 0);
2127 1.67 martin swap_dev[0] = 0;
2128 1.1 dholland }
2129 1.1 dholland
2130 1.1 dholland int
2131 1.1 dholland check_swap(const char *disk, int remove_swap)
2132 1.1 dholland {
2133 1.1 dholland struct swapent *swap;
2134 1.1 dholland char *cp;
2135 1.1 dholland int nswap;
2136 1.1 dholland int l;
2137 1.1 dholland int rval = 0;
2138 1.1 dholland
2139 1.1 dholland nswap = swapctl(SWAP_NSWAP, 0, 0);
2140 1.1 dholland if (nswap <= 0)
2141 1.1 dholland return 0;
2142 1.1 dholland
2143 1.1 dholland swap = malloc(nswap * sizeof *swap);
2144 1.1 dholland if (swap == NULL)
2145 1.1 dholland return -1;
2146 1.1 dholland
2147 1.1 dholland nswap = swapctl(SWAP_STATS, swap, nswap);
2148 1.1 dholland if (nswap < 0)
2149 1.1 dholland goto bad_swap;
2150 1.1 dholland
2151 1.1 dholland l = strlen(disk);
2152 1.1 dholland while (--nswap >= 0) {
2153 1.1 dholland /* Should we check the se_dev or se_path? */
2154 1.1 dholland cp = swap[nswap].se_path;
2155 1.1 dholland if (memcmp(cp, "/dev/", 5) != 0)
2156 1.1 dholland continue;
2157 1.1 dholland if (memcmp(cp + 5, disk, l) != 0)
2158 1.1 dholland continue;
2159 1.1 dholland if (!isalpha(*(unsigned char *)(cp + 5 + l)))
2160 1.1 dholland continue;
2161 1.1 dholland if (cp[5 + l + 1] != 0)
2162 1.1 dholland continue;
2163 1.1 dholland /* ok path looks like it is for this device */
2164 1.1 dholland if (!remove_swap) {
2165 1.1 dholland /* count active swap areas */
2166 1.1 dholland rval++;
2167 1.1 dholland continue;
2168 1.1 dholland }
2169 1.1 dholland if (swapctl(SWAP_OFF, cp, 0) == -1)
2170 1.1 dholland rval = -1;
2171 1.1 dholland }
2172 1.1 dholland
2173 1.1 dholland done:
2174 1.1 dholland free(swap);
2175 1.1 dholland return rval;
2176 1.1 dholland
2177 1.1 dholland bad_swap:
2178 1.1 dholland rval = -1;
2179 1.1 dholland goto done;
2180 1.1 dholland }
2181 1.1 dholland
2182 1.1 dholland #ifdef HAVE_BOOTXX_xFS
2183 1.1 dholland char *
2184 1.30 martin bootxx_name(struct install_partition_desc *install)
2185 1.1 dholland {
2186 1.52 martin size_t i;
2187 1.52 martin int fstype = -1;
2188 1.1 dholland const char *bootxxname;
2189 1.1 dholland char *bootxx;
2190 1.1 dholland
2191 1.52 martin /* find a partition to be mounted as / */
2192 1.52 martin for (i = 0; i < install->num; i++) {
2193 1.52 martin if ((install->infos[i].instflags & PUIINST_MOUNT)
2194 1.52 martin && strcmp(install->infos[i].mount, "/") == 0) {
2195 1.52 martin fstype = install->infos[i].fs_type;
2196 1.52 martin break;
2197 1.52 martin }
2198 1.52 martin }
2199 1.52 martin if (fstype < 0) {
2200 1.52 martin /* not found? take first root type partition instead */
2201 1.52 martin for (i = 0; i < install->num; i++) {
2202 1.52 martin if (install->infos[i].type == PT_root) {
2203 1.52 martin fstype = install->infos[i].fs_type;
2204 1.52 martin break;
2205 1.52 martin }
2206 1.52 martin }
2207 1.52 martin }
2208 1.52 martin
2209 1.1 dholland /* check we have boot code for the root partition type */
2210 1.1 dholland switch (fstype) {
2211 1.1 dholland #if defined(BOOTXX_FFSV1) || defined(BOOTXX_FFSV2)
2212 1.1 dholland case FS_BSDFFS:
2213 1.63 martin if (install->infos[i].fs_version == 2) {
2214 1.1 dholland #ifdef BOOTXX_FFSV2
2215 1.1 dholland bootxxname = BOOTXX_FFSV2;
2216 1.1 dholland #else
2217 1.1 dholland bootxxname = NULL;
2218 1.1 dholland #endif
2219 1.1 dholland } else {
2220 1.1 dholland #ifdef BOOTXX_FFSV1
2221 1.1 dholland bootxxname = BOOTXX_FFSV1;
2222 1.1 dholland #else
2223 1.1 dholland bootxxname = NULL;
2224 1.1 dholland #endif
2225 1.1 dholland }
2226 1.1 dholland break;
2227 1.1 dholland #endif
2228 1.11 pgoyette #ifdef BOOTXX_LFSV2
2229 1.1 dholland case FS_BSDLFS:
2230 1.11 pgoyette bootxxname = BOOTXX_LFSV2;
2231 1.1 dholland break;
2232 1.1 dholland #endif
2233 1.1 dholland default:
2234 1.1 dholland bootxxname = NULL;
2235 1.1 dholland break;
2236 1.1 dholland }
2237 1.1 dholland
2238 1.1 dholland if (bootxxname == NULL)
2239 1.1 dholland return NULL;
2240 1.1 dholland
2241 1.1 dholland asprintf(&bootxx, "%s/%s", BOOTXXDIR, bootxxname);
2242 1.1 dholland return bootxx;
2243 1.1 dholland }
2244 1.1 dholland #endif
2245 1.2 martin
2246 1.2 martin /* from dkctl.c */
2247 1.2 martin static int
2248 1.2 martin get_dkwedges_sort(const void *a, const void *b)
2249 1.2 martin {
2250 1.2 martin const struct dkwedge_info *dkwa = a, *dkwb = b;
2251 1.2 martin const daddr_t oa = dkwa->dkw_offset, ob = dkwb->dkw_offset;
2252 1.2 martin return (oa < ob) ? -1 : (oa > ob) ? 1 : 0;
2253 1.2 martin }
2254 1.2 martin
2255 1.2 martin int
2256 1.2 martin get_dkwedges(struct dkwedge_info **dkw, const char *diskdev)
2257 1.2 martin {
2258 1.2 martin struct dkwedge_list dkwl;
2259 1.2 martin
2260 1.2 martin *dkw = NULL;
2261 1.35 christos if (!get_wedge_list(diskdev, &dkwl))
2262 1.2 martin return -1;
2263 1.2 martin
2264 1.35 christos if (dkwl.dkwl_nwedges > 0 && *dkw != NULL) {
2265 1.35 christos qsort(*dkw, dkwl.dkwl_nwedges, sizeof(**dkw),
2266 1.35 christos get_dkwedges_sort);
2267 1.2 martin }
2268 1.2 martin
2269 1.2 martin return dkwl.dkwl_nwedges;
2270 1.2 martin }
2271 1.55 martin
2272 1.56 martin #ifndef NO_CLONES
2273 1.55 martin /*
2274 1.55 martin * Helper structures used in the partition select menu
2275 1.55 martin */
2276 1.55 martin struct single_partition {
2277 1.55 martin struct disk_partitions *parts;
2278 1.55 martin part_id id;
2279 1.55 martin };
2280 1.55 martin
2281 1.55 martin struct sel_menu_data {
2282 1.55 martin struct single_partition *partitions;
2283 1.55 martin struct selected_partition result;
2284 1.55 martin };
2285 1.55 martin
2286 1.55 martin static int
2287 1.55 martin select_single_part(menudesc *m, void *arg)
2288 1.55 martin {
2289 1.55 martin struct sel_menu_data *data = arg;
2290 1.55 martin
2291 1.55 martin data->result.parts = data->partitions[m->cursel].parts;
2292 1.55 martin data->result.id = data->partitions[m->cursel].id;
2293 1.55 martin
2294 1.55 martin return 1;
2295 1.55 martin }
2296 1.55 martin
2297 1.55 martin static void
2298 1.55 martin display_single_part(menudesc *m, int opt, void *arg)
2299 1.55 martin {
2300 1.55 martin const struct sel_menu_data *data = arg;
2301 1.55 martin struct disk_part_info info;
2302 1.55 martin struct disk_partitions *parts = data->partitions[opt].parts;
2303 1.55 martin part_id id = data->partitions[opt].id;
2304 1.55 martin int l;
2305 1.55 martin const char *desc = NULL;
2306 1.55 martin char line[MENUSTRSIZE*2];
2307 1.55 martin
2308 1.55 martin if (!parts->pscheme->get_part_info(parts, id, &info))
2309 1.55 martin return;
2310 1.55 martin
2311 1.55 martin if (parts->pscheme->other_partition_identifier != NULL)
2312 1.55 martin desc = parts->pscheme->other_partition_identifier(
2313 1.55 martin parts, id);
2314 1.55 martin
2315 1.55 martin daddr_t start = info.start / sizemult;
2316 1.55 martin daddr_t size = info.size / sizemult;
2317 1.55 martin snprintf(line, sizeof line, "%s [%" PRIu64 " @ %" PRIu64 "]",
2318 1.55 martin parts->disk, size, start);
2319 1.55 martin
2320 1.55 martin if (info.nat_type != NULL) {
2321 1.55 martin strlcat(line, " ", sizeof line);
2322 1.55 martin strlcat(line, info.nat_type->description, sizeof line);
2323 1.55 martin }
2324 1.55 martin
2325 1.55 martin if (desc != NULL) {
2326 1.55 martin strlcat(line, ": ", sizeof line);
2327 1.55 martin strlcat(line, desc, sizeof line);
2328 1.55 martin }
2329 1.55 martin
2330 1.55 martin l = strlen(line);
2331 1.55 martin if (l >= (m->w))
2332 1.55 martin strcpy(line + (m->w-3), "...");
2333 1.55 martin wprintw(m->mw, "%s", line);
2334 1.55 martin }
2335 1.55 martin
2336 1.55 martin /*
2337 1.55 martin * is the given "test" partitions set used in the selected set?
2338 1.55 martin */
2339 1.55 martin static bool
2340 1.55 martin selection_has_parts(struct selected_partitions *sel,
2341 1.55 martin const struct disk_partitions *test)
2342 1.55 martin {
2343 1.55 martin size_t i;
2344 1.55 martin
2345 1.55 martin for (i = 0; i < sel->num_sel; i++) {
2346 1.55 martin if (sel->selection[i].parts == test)
2347 1.55 martin return true;
2348 1.55 martin }
2349 1.55 martin return false;
2350 1.55 martin }
2351 1.55 martin
2352 1.55 martin /*
2353 1.55 martin * is the given "test" partition in the selected set?
2354 1.55 martin */
2355 1.55 martin static bool
2356 1.55 martin selection_has_partition(struct selected_partitions *sel,
2357 1.55 martin const struct disk_partitions *test, part_id test_id)
2358 1.55 martin {
2359 1.55 martin size_t i;
2360 1.55 martin
2361 1.55 martin for (i = 0; i < sel->num_sel; i++) {
2362 1.55 martin if (sel->selection[i].parts == test &&
2363 1.55 martin sel->selection[i].id == test_id)
2364 1.55 martin return true;
2365 1.55 martin }
2366 1.55 martin return false;
2367 1.55 martin }
2368 1.55 martin
2369 1.55 martin /*
2370 1.55 martin * let the user select a partition, optionally skipping all partitions
2371 1.55 martin * on the "ignore" device
2372 1.55 martin */
2373 1.55 martin static bool
2374 1.55 martin add_select_partition(struct selected_partitions *res,
2375 1.55 martin struct disk_partitions **all_parts, size_t all_cnt)
2376 1.55 martin {
2377 1.55 martin struct disk_partitions *ps;
2378 1.55 martin struct disk_part_info info;
2379 1.55 martin part_id id;
2380 1.55 martin struct single_partition *partitions, *pp;
2381 1.55 martin struct menu_ent *part_menu_opts, *menup;
2382 1.55 martin size_t n, part_cnt;
2383 1.55 martin int sel_menu;
2384 1.55 martin
2385 1.55 martin /*
2386 1.55 martin * count how many items our menu will have
2387 1.55 martin */
2388 1.55 martin part_cnt = 0;
2389 1.55 martin for (n = 0; n < all_cnt; n++) {
2390 1.55 martin ps = all_parts[n];
2391 1.55 martin for (id = 0; id < ps->num_part; id++) {
2392 1.55 martin if (selection_has_partition(res, ps, id))
2393 1.55 martin continue;
2394 1.55 martin if (!ps->pscheme->get_part_info(ps, id, &info))
2395 1.55 martin continue;
2396 1.55 martin if (info.flags & (PTI_SEC_CONTAINER|PTI_WHOLE_DISK|
2397 1.55 martin PTI_PSCHEME_INTERNAL|PTI_RAW_PART))
2398 1.55 martin continue;
2399 1.55 martin part_cnt++;
2400 1.55 martin }
2401 1.55 martin }
2402 1.55 martin
2403 1.55 martin /*
2404 1.55 martin * create a menu from this and let the user
2405 1.55 martin * select one partition
2406 1.55 martin */
2407 1.55 martin part_menu_opts = NULL;
2408 1.55 martin partitions = calloc(part_cnt, sizeof *partitions);
2409 1.55 martin if (partitions == NULL)
2410 1.55 martin goto done;
2411 1.55 martin part_menu_opts = calloc(part_cnt, sizeof *part_menu_opts);
2412 1.55 martin if (part_menu_opts == NULL)
2413 1.55 martin goto done;
2414 1.55 martin pp = partitions;
2415 1.55 martin menup = part_menu_opts;
2416 1.55 martin for (n = 0; n < all_cnt; n++) {
2417 1.55 martin ps = all_parts[n];
2418 1.55 martin for (id = 0; id < ps->num_part; id++) {
2419 1.55 martin if (selection_has_partition(res, ps, id))
2420 1.55 martin continue;
2421 1.55 martin if (!ps->pscheme->get_part_info(ps, id, &info))
2422 1.55 martin continue;
2423 1.55 martin if (info.flags & (PTI_SEC_CONTAINER|PTI_WHOLE_DISK|
2424 1.55 martin PTI_PSCHEME_INTERNAL|PTI_RAW_PART))
2425 1.55 martin continue;
2426 1.55 martin pp->parts = ps;
2427 1.55 martin pp->id = id;
2428 1.55 martin pp++;
2429 1.55 martin menup->opt_action = select_single_part;
2430 1.55 martin menup++;
2431 1.55 martin }
2432 1.55 martin }
2433 1.55 martin sel_menu = new_menu(MSG_select_foreign_part, part_menu_opts, part_cnt,
2434 1.55 martin 3, 3, 0, 60,
2435 1.55 martin MC_SUBMENU | MC_SCROLL | MC_NOCLEAR,
2436 1.55 martin NULL, display_single_part, NULL,
2437 1.57 martin NULL, MSG_exit_menu_generic);
2438 1.55 martin if (sel_menu != -1) {
2439 1.55 martin struct selected_partition *newsels;
2440 1.55 martin struct sel_menu_data data;
2441 1.55 martin
2442 1.55 martin memset(&data, 0, sizeof data);
2443 1.55 martin data.partitions = partitions;
2444 1.55 martin process_menu(sel_menu, &data);
2445 1.55 martin free_menu(sel_menu);
2446 1.55 martin
2447 1.55 martin if (data.result.parts != NULL) {
2448 1.55 martin newsels = realloc(res->selection,
2449 1.55 martin sizeof(*res->selection)*(res->num_sel+1));
2450 1.55 martin if (newsels != NULL) {
2451 1.55 martin res->selection = newsels;
2452 1.55 martin newsels += res->num_sel++;
2453 1.55 martin newsels->parts = data.result.parts;
2454 1.55 martin newsels->id = data.result.id;
2455 1.55 martin }
2456 1.55 martin }
2457 1.55 martin }
2458 1.55 martin
2459 1.55 martin /*
2460 1.55 martin * Final cleanup
2461 1.55 martin */
2462 1.55 martin done:
2463 1.55 martin free(part_menu_opts);
2464 1.55 martin free(partitions);
2465 1.55 martin
2466 1.55 martin return res->num_sel > 0;
2467 1.55 martin }
2468 1.55 martin
2469 1.55 martin struct part_selection_and_all_parts {
2470 1.55 martin struct selected_partitions *selection;
2471 1.55 martin struct disk_partitions **all_parts;
2472 1.55 martin size_t all_cnt;
2473 1.55 martin char *title;
2474 1.55 martin bool cancelled;
2475 1.55 martin };
2476 1.55 martin
2477 1.55 martin static int
2478 1.55 martin toggle_clone_data(struct menudesc *m, void *arg)
2479 1.55 martin {
2480 1.55 martin struct part_selection_and_all_parts *sel = arg;
2481 1.55 martin
2482 1.55 martin sel->selection->with_data = !sel->selection->with_data;
2483 1.55 martin return 0;
2484 1.55 martin }
2485 1.55 martin
2486 1.55 martin static int
2487 1.55 martin add_another(struct menudesc *m, void *arg)
2488 1.55 martin {
2489 1.55 martin struct part_selection_and_all_parts *sel = arg;
2490 1.55 martin
2491 1.55 martin add_select_partition(sel->selection, sel->all_parts, sel->all_cnt);
2492 1.55 martin return 0;
2493 1.55 martin }
2494 1.55 martin
2495 1.55 martin static int
2496 1.55 martin cancel_clone(struct menudesc *m, void *arg)
2497 1.72 rillig {
2498 1.55 martin struct part_selection_and_all_parts *sel = arg;
2499 1.55 martin
2500 1.55 martin sel->cancelled = true;
2501 1.55 martin return 1;
2502 1.55 martin }
2503 1.55 martin
2504 1.55 martin static void
2505 1.55 martin update_sel_part_title(struct part_selection_and_all_parts *sel)
2506 1.55 martin {
2507 1.55 martin struct disk_part_info info;
2508 1.55 martin char *buf, line[MENUSTRSIZE];
2509 1.55 martin size_t buf_len, i;
2510 1.55 martin
2511 1.55 martin buf_len = MENUSTRSIZE * (1+sel->selection->num_sel);
2512 1.55 martin buf = malloc(buf_len);
2513 1.55 martin if (buf == NULL)
2514 1.55 martin return;
2515 1.55 martin
2516 1.55 martin strcpy(buf, msg_string(MSG_select_source_hdr));
2517 1.55 martin for (i = 0; i < sel->selection->num_sel; i++) {
2518 1.55 martin struct selected_partition *s =
2519 1.55 martin &sel->selection->selection[i];
2520 1.55 martin if (!s->parts->pscheme->get_part_info(s->parts, s->id, &info))
2521 1.55 martin continue;
2522 1.55 martin daddr_t start = info.start / sizemult;
2523 1.55 martin daddr_t size = info.size / sizemult;
2524 1.55 martin sprintf(line, "\n %s [%" PRIu64 " @ %" PRIu64 "] ",
2525 1.55 martin s->parts->disk, size, start);
2526 1.55 martin if (info.nat_type != NULL)
2527 1.55 martin strlcat(line, info.nat_type->description, sizeof(line));
2528 1.55 martin strlcat(buf, line, buf_len);
2529 1.55 martin }
2530 1.55 martin free(sel->title);
2531 1.55 martin sel->title = buf;
2532 1.55 martin }
2533 1.55 martin
2534 1.55 martin static void
2535 1.55 martin post_sel_part(struct menudesc *m, void *arg)
2536 1.55 martin {
2537 1.55 martin struct part_selection_and_all_parts *sel = arg;
2538 1.55 martin
2539 1.55 martin if (m->mw == NULL)
2540 1.55 martin return;
2541 1.55 martin update_sel_part_title(sel);
2542 1.55 martin m->title = sel->title;
2543 1.55 martin m->h = 0;
2544 1.55 martin resize_menu_height(m);
2545 1.55 martin }
2546 1.55 martin
2547 1.55 martin static void
2548 1.55 martin fmt_sel_part_line(struct menudesc *m, int i, void *arg)
2549 1.55 martin {
2550 1.55 martin struct part_selection_and_all_parts *sel = arg;
2551 1.55 martin
2552 1.55 martin wprintw(m->mw, "%s: %s", msg_string(MSG_clone_with_data),
2553 1.55 martin sel->selection->with_data ?
2554 1.55 martin msg_string(MSG_Yes) :
2555 1.55 martin msg_string(MSG_No));
2556 1.55 martin }
2557 1.55 martin
2558 1.55 martin bool
2559 1.55 martin select_partitions(struct selected_partitions *res,
2560 1.55 martin const struct disk_partitions *ignore)
2561 1.55 martin {
2562 1.55 martin struct disk_desc disks[MAX_DISKS];
2563 1.55 martin struct disk_partitions *ps;
2564 1.55 martin struct part_selection_and_all_parts data;
2565 1.55 martin struct pm_devs *i;
2566 1.55 martin size_t j;
2567 1.55 martin int cnt, n, m;
2568 1.55 martin static menu_ent men[] = {
2569 1.55 martin { .opt_name = MSG_select_source_add,
2570 1.55 martin .opt_action = add_another },
2571 1.55 martin { .opt_action = toggle_clone_data },
2572 1.55 martin { .opt_name = MSG_cancel, .opt_action = cancel_clone },
2573 1.55 martin };
2574 1.55 martin
2575 1.55 martin memset(res, 0, sizeof *res);
2576 1.55 martin memset(&data, 0, sizeof data);
2577 1.55 martin data.selection = res;
2578 1.55 martin
2579 1.55 martin /*
2580 1.55 martin * collect all available partition sets
2581 1.55 martin */
2582 1.55 martin data.all_cnt = 0;
2583 1.55 martin if (SLIST_EMPTY(&pm_head)) {
2584 1.55 martin cnt = get_disks(disks, false);
2585 1.55 martin if (cnt <= 0)
2586 1.55 martin return false;
2587 1.55 martin
2588 1.55 martin /*
2589 1.55 martin * allocate two slots for each disk (primary/secondary)
2590 1.55 martin */
2591 1.55 martin data.all_parts = calloc(2*cnt, sizeof *data.all_parts);
2592 1.55 martin if (data.all_parts == NULL)
2593 1.55 martin return false;
2594 1.55 martin
2595 1.55 martin for (n = 0; n < cnt; n++) {
2596 1.55 martin if (ignore != NULL &&
2597 1.55 martin strcmp(disks[n].dd_name, ignore->disk) == 0)
2598 1.55 martin continue;
2599 1.55 martin
2600 1.55 martin ps = partitions_read_disk(disks[n].dd_name,
2601 1.62 martin disks[n].dd_totsec,
2602 1.62 martin disks[n].dd_secsize,
2603 1.62 martin disks[n].dd_no_mbr);
2604 1.55 martin if (ps == NULL)
2605 1.55 martin continue;
2606 1.55 martin data.all_parts[data.all_cnt++] = ps;
2607 1.55 martin ps = get_inner_parts(ps);
2608 1.55 martin if (ps == NULL)
2609 1.55 martin continue;
2610 1.55 martin data.all_parts[data.all_cnt++] = ps;
2611 1.55 martin }
2612 1.55 martin if (data.all_cnt > 0)
2613 1.55 martin res->free_parts = true;
2614 1.55 martin } else {
2615 1.55 martin cnt = 0;
2616 1.55 martin SLIST_FOREACH(i, &pm_head, l)
2617 1.55 martin cnt++;
2618 1.55 martin
2619 1.55 martin data.all_parts = calloc(cnt, sizeof *data.all_parts);
2620 1.55 martin if (data.all_parts == NULL)
2621 1.55 martin return false;
2622 1.55 martin
2623 1.55 martin SLIST_FOREACH(i, &pm_head, l) {
2624 1.55 martin if (i->parts == NULL)
2625 1.55 martin continue;
2626 1.55 martin if (i->parts == ignore)
2627 1.55 martin continue;
2628 1.55 martin data.all_parts[data.all_cnt++] = i->parts;
2629 1.55 martin }
2630 1.55 martin }
2631 1.55 martin
2632 1.55 martin if (!add_select_partition(res, data.all_parts, data.all_cnt))
2633 1.55 martin goto fail;
2634 1.55 martin
2635 1.55 martin /* loop with menu */
2636 1.55 martin update_sel_part_title(&data);
2637 1.55 martin m = new_menu(data.title, men, __arraycount(men), 3, 2, 0, 65, MC_SCROLL,
2638 1.57 martin post_sel_part, fmt_sel_part_line, NULL, NULL, MSG_clone_src_done);
2639 1.55 martin process_menu(m, &data);
2640 1.55 martin free(data.title);
2641 1.55 martin if (res->num_sel == 0)
2642 1.55 martin goto fail;
2643 1.55 martin
2644 1.55 martin /* cleanup */
2645 1.55 martin if (res->free_parts) {
2646 1.55 martin for (j = 0; j < data.all_cnt; j++) {
2647 1.55 martin if (selection_has_parts(res, data.all_parts[j]))
2648 1.55 martin continue;
2649 1.55 martin if (data.all_parts[j]->parent != NULL)
2650 1.55 martin continue;
2651 1.55 martin data.all_parts[j]->pscheme->free(data.all_parts[j]);
2652 1.55 martin }
2653 1.55 martin }
2654 1.55 martin free(data.all_parts);
2655 1.55 martin return true;
2656 1.55 martin
2657 1.55 martin fail:
2658 1.55 martin if (res->free_parts) {
2659 1.55 martin for (j = 0; j < data.all_cnt; j++) {
2660 1.55 martin if (data.all_parts[j]->parent != NULL)
2661 1.55 martin continue;
2662 1.55 martin data.all_parts[j]->pscheme->free(data.all_parts[j]);
2663 1.55 martin }
2664 1.55 martin }
2665 1.55 martin free(data.all_parts);
2666 1.55 martin return false;
2667 1.55 martin }
2668 1.55 martin
2669 1.55 martin void
2670 1.55 martin free_selected_partitions(struct selected_partitions *selected)
2671 1.55 martin {
2672 1.55 martin size_t i;
2673 1.55 martin struct disk_partitions *parts;
2674 1.55 martin
2675 1.55 martin if (!selected->free_parts)
2676 1.55 martin return;
2677 1.55 martin
2678 1.55 martin for (i = 0; i < selected->num_sel; i++) {
2679 1.55 martin parts = selected->selection[i].parts;
2680 1.55 martin
2681 1.55 martin /* remove from list before testing for other instances */
2682 1.55 martin selected->selection[i].parts = NULL;
2683 1.55 martin
2684 1.74 andvar /* if this is the secondary partition set, the parent owns it */
2685 1.55 martin if (parts->parent != NULL)
2686 1.55 martin continue;
2687 1.55 martin
2688 1.55 martin /* only free once (we use the last one) */
2689 1.55 martin if (selection_has_parts(selected, parts))
2690 1.55 martin continue;
2691 1.55 martin parts->pscheme->free(parts);
2692 1.55 martin }
2693 1.55 martin free(selected->selection);
2694 1.55 martin }
2695 1.55 martin
2696 1.55 martin daddr_t
2697 1.55 martin selected_parts_size(struct selected_partitions *selected)
2698 1.55 martin {
2699 1.55 martin struct disk_part_info info;
2700 1.55 martin size_t i;
2701 1.55 martin daddr_t s = 0;
2702 1.55 martin
2703 1.55 martin for (i = 0; i < selected->num_sel; i++) {
2704 1.55 martin if (!selected->selection[i].parts->pscheme->get_part_info(
2705 1.55 martin selected->selection[i].parts,
2706 1.55 martin selected->selection[i].id, &info))
2707 1.55 martin continue;
2708 1.55 martin s += info.size;
2709 1.55 martin }
2710 1.55 martin
2711 1.55 martin return s;
2712 1.55 martin }
2713 1.55 martin
2714 1.55 martin int
2715 1.55 martin clone_target_select(menudesc *m, void *arg)
2716 1.55 martin {
2717 1.55 martin struct clone_target_menu_data *data = arg;
2718 1.55 martin
2719 1.55 martin data->res = m->cursel;
2720 1.55 martin return 1;
2721 1.55 martin }
2722 1.55 martin
2723 1.55 martin bool
2724 1.55 martin clone_partition_data(struct disk_partitions *dest_parts, part_id did,
2725 1.55 martin struct disk_partitions *src_parts, part_id sid)
2726 1.55 martin {
2727 1.55 martin char src_dev[MAXPATHLEN], target_dev[MAXPATHLEN];
2728 1.55 martin
2729 1.55 martin if (!src_parts->pscheme->get_part_device(
2730 1.55 martin src_parts, sid, src_dev, sizeof src_dev, NULL,
2731 1.59 martin raw_dev_name, true, true))
2732 1.55 martin return false;
2733 1.55 martin if (!dest_parts->pscheme->get_part_device(
2734 1.55 martin dest_parts, did, target_dev, sizeof target_dev, NULL,
2735 1.59 martin raw_dev_name, true, true))
2736 1.55 martin return false;
2737 1.55 martin
2738 1.72 rillig return run_program(RUN_DISPLAY | RUN_PROGRESS,
2739 1.55 martin "progress -f %s -b 1m dd bs=1m of=%s",
2740 1.55 martin src_dev, target_dev) == 0;
2741 1.55 martin }
2742 1.56 martin #endif
2743 1.56 martin
2744