]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/bsdinstall/partedit/partedit.h
MFC r326276:
[FreeBSD/FreeBSD.git] / usr.sbin / bsdinstall / partedit / partedit.h
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
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 struct gprovider;
39 struct gmesh;
40 struct ggeom;
41
42 TAILQ_HEAD(pmetadata_head, partition_metadata);
43 extern struct pmetadata_head part_metadata;
44
45 struct partition_metadata {
46         char *name;             /* name of this partition, as in GEOM */
47         
48         struct fstab *fstab;    /* fstab data for this partition */
49         char *newfs;            /* shell command to initialize partition */
50         
51         int bootcode;
52
53         TAILQ_ENTRY(partition_metadata) metadata;
54 };
55
56 struct partition_metadata *get_part_metadata(const char *name, int create);
57 void delete_part_metadata(const char *name);
58
59 int part_wizard(const char *fstype);
60 int scripted_editor(int argc, const char **argv);
61 int wizard_makeparts(struct gmesh *mesh, const char *disk, const char *fstype,
62     int interactive);
63
64 /* gpart operations */
65 void gpart_delete(struct gprovider *pp);
66 void gpart_destroy(struct ggeom *lg_geom);
67 void gpart_edit(struct gprovider *pp);
68 void gpart_create(struct gprovider *pp, char *default_type, char *default_size,
69     char *default_mountpoint, char **output, int interactive);
70 intmax_t gpart_max_free(struct ggeom *gp, intmax_t *start);
71 void gpart_revert(struct gprovider *pp);
72 void gpart_revert_all(struct gmesh *mesh);
73 void gpart_commit(struct gmesh *mesh);
74 int gpart_partition(const char *lg_name, const char *scheme);
75 void set_default_part_metadata(const char *name, const char *scheme,
76     const char *type, const char *mountpoint, const char *newfs);
77 void gpart_set_root(const char *lg_name, const char *attribute);
78 const char *choose_part_type(const char *def_scheme);
79
80 /* machine-dependent bootability checks */
81 const char *default_scheme(void);
82 int is_scheme_bootable(const char *scheme);
83 int is_fs_bootable(const char *scheme, const char *fs);
84 size_t bootpart_size(const char *scheme);
85 const char *bootpart_type(const char *scheme);
86 const char *bootcode_path(const char *scheme);
87 const char *partcode_path(const char *scheme, const char *fs_type);
88
89 #endif