1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2011 Nathan Whitehorn
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30 
31 #ifndef _PARTEDIT_PARTEDIT_H
32 #define _PARTEDIT_PARTEDIT_H
33 
34 #include <sys/queue.h>
35 #include <inttypes.h>
36 #include <fstab.h>
37 
38 #include "opt_osname.h"
39 
40 struct gprovider;
41 struct gmesh;
42 struct ggeom;
43 
44 TAILQ_HEAD(pmetadata_head, partition_metadata);
45 extern struct pmetadata_head part_metadata;
46 
47 struct partition_metadata {
48 	char *name;		/* name of this partition, as in GEOM */
49 
50 	struct fstab *fstab;	/* fstab data for this partition */
51 	char *newfs;		/* shell command to initialize partition */
52 
53 	int bootcode;
54 
55 	TAILQ_ENTRY(partition_metadata) metadata;
56 };
57 
58 struct partition_metadata *get_part_metadata(const char *name, int create);
59 void delete_part_metadata(const char *name);
60 
61 int part_wizard(const char *fstype);
62 int scripted_editor(int argc, const char **argv);
63 char *boot_disk_select(struct gmesh *mesh);
64 int wizard_makeparts(struct gmesh *mesh, const char *disk, const char *fstype,
65     int interactive);
66 
67 /* gpart operations */
68 void gpart_delete(struct gprovider *pp);
69 void gpart_destroy(struct ggeom *lg_geom);
70 void gpart_edit(struct gprovider *pp);
71 void gpart_create(struct gprovider *pp, const char *default_type,
72     const char *default_size, const char *default_mountpoint,
73     char **output, int interactive);
74 intmax_t gpart_max_free(struct ggeom *gp, intmax_t *start);
75 void gpart_revert(struct gprovider *pp);
76 void gpart_revert_all(struct gmesh *mesh);
77 void gpart_commit(struct gmesh *mesh);
78 int gpart_partition(const char *lg_name, const char *scheme);
79 void set_default_part_metadata(const char *name, const char *scheme,
80     const char *type, const char *mountpoint, const char *newfs);
81 void gpart_set_root(const char *lg_name, const char *attribute);
82 const char *choose_part_type(const char *def_scheme);
83 
84 /* machine-dependent bootability checks */
85 const char *default_scheme(void);		/* Default partition scheme */
86 int is_scheme_bootable(const char *scheme);	/* Non-zero if scheme boots */
87 int is_fs_bootable(const char *scheme, const char *fs); /* Ditto if FS boots */
88 
89 /* Size of boot partition in bytes. Zero if no boot partition */
90 size_t bootpart_size(const char *scheme);
91 
92 /*
93  * Type and mountpoint of boot partition for given scheme. If boot partition
94  * should not be mounted, set mountpoint to NULL or leave it unchanged.
95  * Note that mountpoint non-NULL implies partcode_path() will be ignored.
96  * Do *NOT* set both!
97  */
98 const char *bootpart_type(const char *scheme, const char **mountpoint);
99 
100 /* Path to bootcode that goes in the scheme (e.g. disk MBR). NULL if none */
101 const char *bootcode_path(const char *scheme);
102 
103 /*
104  * Path to boot blocks to be dd'ed into the partition suggested by bootpart_*
105  * for the given scheme and root filesystem type. If the boot partition should
106  * be mounted rather than dd'ed to, return NULL here.
107  */
108 const char *partcode_path(const char *scheme, const char *fs_type);
109 
110 #endif
111