]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/bsdinstall/partedit/partedit_x86.c
Centralize determination of boot firmware (UEFI vs. BIOS/CSM) into a
[FreeBSD/FreeBSD.git] / usr.sbin / bsdinstall / partedit / partedit_x86.c
1 /*-
2  * Copyright (c) 2011 Nathan Whitehorn
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #include <sys/types.h>
30 #include <sys/sysctl.h>
31 #include <string.h>
32
33 #include "partedit.h"
34
35 static const char *
36 x86_bootmethod(void)
37 {
38         static char fw[255] = "";
39         size_t len = sizeof(fw);
40         int error;
41         
42         if (strlen(fw) == 0) {
43                 error = sysctlbyname("machdep.bootmethod", fw, &len, NULL, -1);
44                 if (error != 0)
45                         return ("BIOS");
46         }
47
48         return (fw);
49 }
50
51 const char *
52 default_scheme(void) {
53         return ("GPT");
54 }
55
56 int
57 is_scheme_bootable(const char *part_type)
58 {
59
60         if (strcmp(part_type, "GPT") == 0)
61                 return (1);
62         if (strcmp(x86_bootmethod(), "BIOS") == 0) {
63                 if (strcmp(part_type, "BSD") == 0)
64                         return (1);
65                 if (strcmp(part_type, "MBR") == 0)
66                         return (1);
67         }
68
69         return (0);
70 }
71
72 int
73 is_fs_bootable(const char *part_type, const char *fs)
74 {
75
76         if (strcmp(fs, "freebsd-ufs") == 0)
77                 return (1);
78
79         if (strcmp(fs, "freebsd-zfs") == 0 &&
80             strcmp(x86_bootmethod(), "BIOS") == 0)
81                 return (1);
82
83         return (0);
84 }
85
86 size_t
87 bootpart_size(const char *scheme)
88 {
89
90         /* No partcode except for GPT */
91         if (strcmp(scheme, "GPT") != 0)
92                 return (0);
93
94         if (strcmp(x86_bootmethod(), "BIOS") == 0)
95                 return (512*1024);
96         else 
97                 return (800*1024);
98
99         return (0);
100 }
101
102 const char *
103 bootpart_type(const char *scheme)
104 {
105
106         if (strcmp(x86_bootmethod(), "UEFI") == 0)
107                 return ("efi");
108
109         return ("freebsd-boot");
110 }
111
112 const char *
113 bootcode_path(const char *part_type)
114 {
115
116         if (strcmp(x86_bootmethod(), "UEFI") == 0)
117                 return (NULL);
118
119         if (strcmp(part_type, "GPT") == 0)
120                 return ("/boot/pmbr");
121         if (strcmp(part_type, "MBR") == 0)
122                 return ("/boot/mbr");
123         if (strcmp(part_type, "BSD") == 0)
124                 return ("/boot/boot");
125
126         return (NULL);
127 }
128         
129 const char *
130 partcode_path(const char *part_type, const char *fs_type)
131 {
132
133         if (strcmp(part_type, "GPT") == 0) {
134                 if (strcmp(x86_bootmethod(), "UEFI") == 0)
135                         return ("/boot/boot1.efifat");
136                 else if (strcmp(fs_type, "zfs") == 0)
137                         return ("/boot/gptzfsboot");
138                 else
139                         return ("/boot/gptboot");
140         }
141         
142         /* No partcode except for GPT */
143         return (NULL);
144 }
145