defs.h revision 1.21 1 /* $NetBSD: defs.h,v 1.21 2018/11/07 21:20:23 martin Exp $ */
2
3 /*
4 * Copyright 1997 Piermont Information Systems Inc.
5 * All rights reserved.
6 *
7 * Written by Philip A. Nelson for Piermont Information Systems Inc.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. The name of Piermont Information Systems Inc. may not be used to endorse
18 * or promote products derived from this software without specific prior
19 * written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 */
34
35 #ifndef _DEFS_H_
36 #define _DEFS_H_
37
38 /* defs.h -- definitions for use in the sysinst program. */
39
40 /* System includes needed for this. */
41 #include <sys/queue.h>
42 #include <sys/types.h>
43 #include <sys/disklabel.h>
44 #include <sys/disk.h>
45
46 const char *getfslabelname(uint8_t);
47
48 #include "msg_defs.h"
49 #include "menu_defs.h"
50
51 #define min(a,b) ((a) < (b) ? (a) : (b))
52 #define max(a,b) ((a) > (b) ? (a) : (b))
53
54 /* constants */
55 #define MEG (1024 * 1024)
56 #define STRSIZE 255
57 #define SSTRSIZE 30
58
59 /* For run.c: collect() */
60 #define T_FILE 0
61 #define T_OUTPUT 1
62
63 /* Some install status/response values */
64 #define SET_OK 0 /* Set extracted */
65 #define SET_RETRY 1 /* Retry */
66 #define SET_SKIP 2 /* Skip this set */
67 #define SET_SKIP_GROUP 3 /* Skip this set and rest of group */
68 #define SET_ABANDON 4 /* Abandon installation */
69 #define SET_CONTINUE 5 /* Continue (copy from floppy loop) */
70
71 /* run_prog flags */
72 #define RUN_DISPLAY 0x0001 /* Display program output */
73 #define RUN_FATAL 0x0002 /* errors are fatal */
74 #define RUN_CHROOT 0x0004 /* chroot to target disk */
75 #define RUN_FULLSCREEN 0x0008 /* fullscreen (use with RUN_DISPLAY) */
76 #define RUN_SILENT 0x0010 /* Do not show output */
77 #define RUN_ERROR_OK 0x0040 /* Don't wait for error confirmation */
78 #define RUN_PROGRESS 0x0080 /* Output is just progess test */
79 #define RUN_NO_CLEAR 0x0100 /* Leave program output after error */
80 #define RUN_XFER_DIR 0x0200 /* cd to xfer_dir in child */
81
82 /* for bsddisklabel.c */
83 enum { LY_SETNEW, LY_NEWRAID, LY_NEWCGD, LY_NEWLVM, LY_USEEXIST };
84
85 /* Installation sets */
86 enum {
87 SET_NONE,
88 SET_KERNEL_FIRST,
89 SET_KERNEL_1, /* Usually GENERIC */
90 SET_KERNEL_2, /* MD kernel... */
91 SET_KERNEL_3, /* MD kernel... */
92 SET_KERNEL_4, /* MD kernel... */
93 SET_KERNEL_5, /* MD kernel... */
94 SET_KERNEL_6, /* MD kernel... */
95 SET_KERNEL_7, /* MD kernel... */
96 SET_KERNEL_8, /* MD kernel... */
97 SET_KERNEL_9, /* MD kernel... */
98 SET_KERNEL_LAST, /* allow 9 kernels */
99
100 /* System sets */
101 SET_BASE, /* base */
102 SET_ETC, /* /etc */
103 SET_COMPILER, /* compiler tools */
104 SET_GAMES, /* text games */
105 SET_MAN_PAGES, /* online manual pages */
106 SET_MISC, /* miscellaneuous */
107 SET_MODULES, /* kernel modules */
108 SET_TESTS, /* tests */
109 SET_TEXT_TOOLS, /* text processing tools */
110
111 /* X11 sets */
112 SET_X11_FIRST,
113 SET_X11_BASE, /* X11 base and clients */
114 SET_X11_FONTS, /* X11 fonts */
115 SET_X11_SERVERS, /* X11 servers */
116 SET_X11_PROG, /* X11 programming */
117 SET_X11_ETC, /* X11 config */
118 SET_X11_LAST,
119
120 /* Machine dependent sets */
121 SET_MD_1, /* Machine dependent set */
122 SET_MD_2, /* Machine dependent set */
123 SET_MD_3, /* Machine dependent set */
124 SET_MD_4, /* Machine dependent set */
125
126 /* Source sets */
127 SET_SYSSRC,
128 SET_SRC,
129 SET_SHARESRC,
130 SET_GNUSRC,
131 SET_XSRC,
132
133 /* Debug sets */
134 SET_DEBUG,
135 SET_X11_DEBUG,
136
137 SET_LAST,
138 SET_GROUP, /* Start of submenu */
139 SET_GROUP_END, /* End of submenu */
140 SET_PKGSRC, /* pkgsrc, not counted as regular set */
141 };
142
143 /* Initialisers to select sets */
144 /* All kernels */
145 #define SET_KERNEL SET_KERNEL_1, SET_KERNEL_2, SET_KERNEL_3, SET_KERNEL_4, \
146 SET_KERNEL_5, SET_KERNEL_6, SET_KERNEL_7, SET_KERNEL_8
147 /* Core system sets */
148 #define SET_CORE SET_MODULES, SET_BASE, SET_ETC
149 /* All system sets */
150 #define SET_SYSTEM SET_CORE, SET_COMPILER, SET_GAMES, \
151 SET_MAN_PAGES, SET_MISC, SET_TESTS, SET_TEXT_TOOLS
152 /* All X11 sets */
153 #define SET_X11_NOSERVERS SET_X11_BASE, SET_X11_FONTS, SET_X11_PROG, SET_X11_ETC
154 #define SET_X11 SET_X11_NOSERVERS, SET_X11_SERVERS
155
156 /* All machine dependent sets */
157 #define SET_MD SET_MD_1, SET_MD_2, SET_MD_3, SET_MD_4
158
159 /* All source sets */
160 #define SET_SOURCE SET_SYSSRC, SET_SRC, SET_SHARESRC, SET_GNUSRC, SET_XSRC
161
162 /* All debug sets */
163 #define SET_DEBUGGING SET_DEBUG, SET_X11_DEBUG
164
165 /* Set list flags */
166 #define SFLAG_MINIMAL 1
167 #define SFLAG_NOX 2
168
169 /* Macros */
170 #define nelem(x) (sizeof (x) / sizeof *(x))
171
172 /* Round up to the next full cylinder size */
173 #define NUMSEC(size, sizemult, cylsize) \
174 ((size) == ~0u ? ~0u : (sizemult) == 1 ? (size) : \
175 roundup((size) * (sizemult), (cylsize)))
176
177 /* What FS type? */
178 #define PI_ISBSDFS(p) ((p)->pi_fstype == FS_BSDLFS || \
179 (p)->pi_fstype == FS_BSDFFS)
180
181 /* standard cd0 device */
182 #define CD_NAMES "cd*"
183
184 /* Types */
185
186 /* pass a void* argument into a menu and also provide a int return value */
187 typedef struct arg_rv {
188 void *arg;
189 int rv;
190 } arg_rv;
191
192 typedef struct distinfo {
193 const char *name;
194 uint set;
195 bool force_tgz; /* this set is always in .tgz format */
196 const char *desc;
197 const char *marker_file; /* set assumed installed if exists */
198 } distinfo;
199
200 #define MOUNTLEN 20
201 typedef struct _partinfo {
202 struct partition pi_partition;
203 #define pi_size pi_partition.p_size
204 #define pi_offset pi_partition.p_offset
205 #define pi_fsize pi_partition.p_fsize
206 #define pi_fstype pi_partition.p_fstype
207 #define pi_frag pi_partition.p_frag
208 #define pi_cpg pi_partition.p_cpg
209 char pi_mount[MOUNTLEN];
210 uint pi_isize; /* bytes per inode (for # inodes) */
211 uint pi_flags;
212 #define PIF_NEWFS 0x0001 /* need to 'newfs' partition */
213 #define PIF_FFSv2 0x0002 /* newfs with FFSv2, not FFSv1 */
214 #define PIF_MOUNT 0x0004 /* need to mount partition */
215 #define PIF_ASYNC 0x0010 /* mount -o async */
216 #define PIF_NOATIME 0x0020 /* mount -o noatime */
217 #define PIF_NODEV 0x0040 /* mount -o nodev */
218 #define PIF_NODEVMTIME 0x0080 /* mount -o nodevmtime */
219 #define PIF_NOEXEC 0x0100 /* mount -o noexec */
220 #define PIF_NOSUID 0x0200 /* mount -o nosuid */
221 #define PIF__UNUSED 0x0400 /* unused */
222 #define PIF_LOG 0x0800 /* mount -o log */
223 #define PIF_MOUNT_OPTS 0x0ff0 /* all above mount flags */
224 #define PIF_RESET 0x1000 /* internal - restore previous values */
225 const char *mnt_opts;
226 const char *fsname;
227 char mounted[MOUNTLEN];
228 int lvmpv; /* should we use partition as LVM PV? */
229 } partinfo; /* Single partition from a disklabel */
230
231 struct ptn_info {
232 int menu_no;
233 struct ptn_size {
234 int ptn_id;
235 char mount[MOUNTLEN];
236 daddr_t dflt_size;
237 daddr_t size;
238 int limit;
239 int changed;
240 } ptn_sizes[MAXPARTITIONS + 1]; /* +1 for delete code */
241 menu_ent ptn_menus[MAXPARTITIONS + 1]; /* +1 for unit chg */
242 int free_parts;
243 daddr_t free_space;
244 struct ptn_size *pool_part;
245 char exit_msg[70];
246 };
247
248 /* variables */
249
250 int debug; /* set by -D option */
251
252 char rel[SSTRSIZE];
253 char machine[SSTRSIZE];
254
255 int ignorerror;
256 int ttysig_ignore;
257 pid_t ttysig_forward;
258 int layoutkind;
259 int sizemult;
260 const char *multname;
261 int partman_go; /* run extended partition manager */
262
263 /* logging variables */
264
265 FILE *logfp;
266 FILE *script;
267
268 /* Information for the NetBSD disklabel */
269
270 enum DLTR { PART_A, PART_B, PART_C, PART_D, PART_E, PART_F, PART_G, PART_H,
271 PART_I, PART_J, PART_K, PART_L, PART_M, PART_N, PART_O, PART_P};
272 #define partition_name(x) ('a' + (x))
273 daddr_t tmp_ramdisk_size;
274 #define MAX_DISKS 15
275
276 unsigned int root_limit; /* BIOS (etc) read limit */
277
278 enum SHRED_T { SHRED_NONE=0, SHRED_ZEROS, SHRED_RANDOM, SHRED_CRYPTO };
279
280 /* All information that is unique for each drive */
281 SLIST_HEAD(pm_head_t, pm_devs_t) pm_head;
282
283 typedef struct pm_devs_t {
284 int unsaved; /* Flag indicating to partman that device need saving */
285 int found; /* Flag to delete unplugged and unconfigured devices */
286 int blocked; /* Device is busy and cannot be changed */
287 void *refdev; /* If device is blocked thats is a pointers to a parent dev */
288 int isspecial; /* LVM LV or DK device that doesnot accept disklabel */
289 char diskdev[SSTRSIZE]; /* Actual name of the disk. */
290 char diskdev_descr[STRSIZE];
291 int bootable;
292 #define DISKNAME_SIZE 16
293 char bsddiskname[DISKNAME_SIZE];
294 partinfo oldlabel[MAXPARTITIONS]; /* What we found on the disk */
295 partinfo bsdlabel[MAXPARTITIONS]; /* What we want it to look like */
296 int gpt;
297 int no_mbr; /* set for raid (etc) */
298 int no_part; /* can not be partitioned, e.g. dk0 */
299 int rootpart; /* partition we install into */
300 const char *disktype; /* ST506, SCSI, ... */
301 const char *doessf;
302 /* Actual values for current disk - set by find_disks() or md_get_info() */
303 int sectorsize, dlcyl, dlhead, dlsec, dlcylsize, current_cylsize;
304 daddr_t dlsize;
305 /* Area of disk we can allocate, start and size in disk sectors. */
306 daddr_t ptstart, ptsize;
307 /* If we have an MBR boot partition, start and size in sectors */
308 int bootstart, bootsize;
309 struct ptn_info pi;
310 SLIST_ENTRY(pm_devs_t) l;
311 } pm_devs_t;
312 pm_devs_t *pm; /* Pointer to currend device with which we work */
313 pm_devs_t *pm_new; /* Pointer for next allocating device in find_disks() */
314
315 #define MAX_WEDGES 16 /* num of dk* devices */
316 typedef struct pm_wedge_t {
317 int allocated;
318 int todel;
319 pm_devs_t *pm;
320 int ptn;
321 } pm_wedge_t;
322 pm_wedge_t wedges[MAX_WEDGES];
323
324 /* Generic structure for partman */
325 typedef struct {
326 int retvalue;
327 int dev_num;
328 int wedge_num;
329 void *dev_ptr;
330 int dev_ptr_delta;
331 char fullname[SSTRSIZE];
332 enum {PM_DISK_T=1, PM_PART_T, PM_WEDGE_T, PM_SPEC_T, PM_RAID_T, PM_CGD_T,
333 PM_VND_T, PM_LVM_T, PM_LVMLV_T} type;
334 } part_entry_t;
335
336 /* Relative file name for storing a distribution. */
337 char xfer_dir[STRSIZE];
338 int clean_xfer_dir;
339
340 #if !defined(SYSINST_FTP_HOST)
341 #define SYSINST_FTP_HOST "ftp.NetBSD.org"
342 #endif
343
344 #if !defined(SYSINST_HTTP_HOST)
345 #define SYSINST_HTTP_HOST "cdn.NetBSD.org"
346 #endif
347
348 #if !defined(SYSINST_FTP_DIR)
349 #if defined(NETBSD_OFFICIAL_RELEASE)
350 #define SYSINST_FTP_DIR "pub/NetBSD/NetBSD-" REL
351 #elif defined(REL_PATH)
352 #define SYSINST_FTP_DIR "pub/NetBSD-daily/" REL_PATH "/latest"
353 #else
354 #define SYSINST_FTP_DIR "pub/NetBSD/NetBSD-" REL
355 #endif
356 #endif
357
358 #if !defined(SYSINST_PKG_HOST)
359 #define SYSINST_PKG_HOST "ftp.NetBSD.org"
360 #endif
361 #if !defined(SYSINST_PKG_HTTP_HOST)
362 #define SYSINST_PKG_HTTP_HOST "cdn.NetBSD.org"
363 #endif
364
365 #if !defined(SYSINST_PKG_DIR)
366 #define SYSINST_PKG_DIR "pub/pkgsrc/packages/NetBSD"
367 #endif
368
369 #if !defined(PKG_SUBDIR)
370 #define PKG_SUBDIR REL
371 #endif
372
373 #if !defined(SYSINST_PKGSRC_HOST)
374 #define SYSINST_PKGSRC_HOST SYSINST_PKG_HOST
375 #endif
376 #if !defined(SYSINST_PKGSRC_HTTP_HOST)
377 #define SYSINST_PKGSRC_HTTP_HOST SYSINST_PKG_HTTP_HOST
378 #endif
379
380 #ifndef SETS_TAR_SUFF
381 #define SETS_TAR_SUFF "tgz"
382 #endif
383
384 /* Abs. path we extract binary sets from */
385 char ext_dir_bin[STRSIZE];
386
387 /* Abs. path we extract source sets from */
388 char ext_dir_src[STRSIZE];
389
390 /* Abs. path we extract pkgsrc from */
391 char ext_dir_pkgsrc[STRSIZE];
392
393 /* Place we look for binary sets in all fs types */
394 char set_dir_bin[STRSIZE];
395
396 /* Place we look for source sets in all fs types */
397 char set_dir_src[STRSIZE];
398
399 /* Place we look for pkgs in all fs types */
400 char pkg_dir[STRSIZE];
401
402 /* Place we look for pkgsrc in all fs types */
403 char pkgsrc_dir[STRSIZE];
404
405 /* User shell */
406 const char *ushell;
407
408 #define XFER_FTP 0
409 #define XFER_HTTP 1
410 #define XFER_MAX XFER_HTTP
411
412 struct ftpinfo {
413 char xfer_host[XFER_MAX+1][STRSIZE];
414 char dir[STRSIZE] ;
415 char user[SSTRSIZE];
416 char pass[STRSIZE];
417 char proxy[STRSIZE];
418 unsigned int xfer; /* XFER_FTP for "ftp" or XFER_HTTP for "http" */
419 };
420
421 /* use the same struct for sets ftp and to build pkgpath */
422 struct ftpinfo ftp, pkg, pkgsrc;
423
424 int (*fetch_fn)(const char *);
425 char nfs_host[STRSIZE];
426 char nfs_dir[STRSIZE];
427
428 char cdrom_dev[SSTRSIZE]; /* Typically "cd0a" */
429 char fd_dev[SSTRSIZE]; /* Typically "/dev/fd0a" */
430 const char *fd_type; /* "msdos", "ffs" or maybe "ados" */
431
432 char localfs_dev[SSTRSIZE];
433 char localfs_fs[SSTRSIZE];
434 char localfs_dir[STRSIZE];
435
436 char targetroot_mnt[SSTRSIZE];
437
438 int mnt2_mounted;
439
440 char dist_postfix[SSTRSIZE];
441 char dist_tgz_postfix[SSTRSIZE];
442
443 /* needed prototypes */
444 void set_menu_numopts(int, int);
445 void remove_color_options(void);
446 void remove_raid_options(void);
447 void remove_lvm_options(void);
448 void remove_cgd_options(void);
449 void remove_gpt_options(void);
450
451 /* Machine dependent functions .... */
452 void md_init(void);
453 void md_prelim_menu(void);
454 void md_init_set_status(int); /* SFLAG_foo */
455
456 /* MD functions if user selects install - in order called */
457 int md_get_info(void);
458 int md_make_bsd_partitions(void);
459 int md_check_partitions(void);
460 int md_pre_disklabel(void);
461 int md_post_disklabel(void);
462 int md_pre_mount(void);
463 int md_post_newfs(void);
464 int md_post_extract(void);
465 void md_cleanup_install(void);
466
467 /* MD functions if user selects upgrade - in order called */
468 int md_pre_update(void);
469 int md_update(void);
470 /* Also calls md_post_extract() */
471
472 /* from main.c */
473 void toplevel(void);
474
475 /* from disks.c */
476 bool get_default_cdrom(char *, size_t);
477 int find_disks(const char *);
478 struct menudesc;
479 void fmt_fspart(struct menudesc *, int, void *);
480 void disp_cur_fspart(int, int);
481 int write_disklabel(void);
482 int make_filesystems(void);
483 int make_fstab(void);
484 int mount_disks(void);
485 int set_swap_if_low_ram(const char *, partinfo *);
486 int set_swap(const char *, partinfo *);
487 int check_swap(const char *, int);
488 char *bootxx_name(void);
489 void label_read(void);
490 int get_dkwedges(struct dkwedge_info **, const char *);
491 const char *get_gptfs_by_id(int);
492
493
494 /* from disks_lfs.c */
495 int fs_is_lfs(void *);
496
497 /* from label.c */
498 const char *get_last_mounted(int, int, partinfo *);
499 int savenewlabel(partinfo *, int);
500 int incorelabel(const char *, partinfo *);
501 int edit_and_check_label(partinfo *, int, int, int);
502 void set_bsize(partinfo *, int);
503 void set_fsize(partinfo *, int);
504 void set_ptype(partinfo *, int, int);
505 int edit_ptn(menudesc *, void *);
506 int checkoverlap(partinfo *, int, int, int);
507
508 /* from install.c */
509 void do_install(void);
510
511 /* from factor.c */
512 void factor(long, long *, int, int *);
513
514 /* from fdisk.c */
515 void get_disk_info(char *);
516 void set_disk_info(char *);
517
518 /* from geom.c */
519 int get_geom(const char *, struct disklabel *);
520 int get_real_geom(const char *, struct disklabel *);
521
522 /* from net.c */
523 extern int network_up;
524 extern char net_namesvr[STRSIZE];
525 int get_via_ftp(unsigned int);
526 int get_via_nfs(void);
527 int config_network(void);
528 void mnt_net_config(void);
529 void make_url(char *, struct ftpinfo *, const char *);
530 int get_pkgsrc(void);
531 const char *url_proto(unsigned int);
532
533 /* From run.c */
534 int collect(int, char **, const char *, ...) __printflike(3, 4);
535 int run_program(int, const char *, ...) __printflike(2, 3);
536 void do_logging(void);
537 int do_system(const char *);
538
539 /* from upgrade.c */
540 void do_upgrade(void);
541 void do_reinstall_sets(void);
542 void restore_etc(void);
543
544 /* from util.c */
545 int ask_yesno(const char *);
546 int ask_noyes(const char *);
547 int dir_exists_p(const char *);
548 int file_exists_p(const char *);
549 int file_mode_match(const char *, unsigned int);
550 uint get_ramsize(void);
551 void ask_sizemult(int);
552 void run_makedev(void);
553 int boot_media_still_needed(void);
554 int get_via_floppy(void);
555 int get_via_cdrom(void);
556 int get_via_localfs(void);
557 int get_via_localdir(void);
558 void show_cur_distsets(void);
559 void make_ramdisk_dir(const char *);
560 void set_kernel_set(unsigned int);
561 unsigned int get_kernel_set(void);
562 unsigned int set_X11_selected(void);
563 int get_and_unpack_sets(int, msg, msg, msg);
564 int sanity_check(void);
565 int set_timezone(void);
566 void scripting_fprintf(FILE *, const char *, ...) __printflike(2, 3);
567 void scripting_vfprintf(FILE *, const char *, va_list) __printflike(2, 0);
568 void add_rc_conf(const char *, ...);
569 int del_rc_conf(const char *);
570 void add_sysctl_conf(const char *, ...) __printflike(1, 2);
571 void enable_rc_conf(void);
572 void set_sizemultname_cyl(void);
573 void set_sizemultname_meg(void);
574 int binary_available(const char *);
575 int check_lfs_progs(void);
576 void init_set_status(int);
577 void customise_sets(void);
578 void umount_mnt2(void);
579 int set_is_source(const char *);
580 const char *set_dir_for_set(const char *);
581 const char *ext_dir_for_set(const char *);
582 void replace(const char *, const char *, ...);
583 void get_tz_default(void);
584 int extract_file(distinfo *, int);
585 void do_coloring (unsigned int, unsigned int);
586 int set_menu_select(menudesc *, void *);
587 const char *safectime(time_t *);
588 bool use_tgz_for_set(const char*);
589 const char *set_postfix(const char*);
590
591 /* from target.c */
592 #if defined(DEBUG) || defined(DEBUG_ROOT)
593 void backtowin(void);
594 #endif
595 const char *concat_paths(const char *, const char *);
596 const char *target_expand(const char *);
597 void make_target_dir(const char *);
598 void append_to_target_file(const char *, const char *);
599 void echo_to_target_file(const char *, const char *);
600 void sprintf_to_target_file(const char *, const char *, ...)
601 __printflike(2, 3);
602 void trunc_target_file(const char *);
603 const char *target_prefix(void);
604 int target_chdir(const char *);
605 void target_chdir_or_die(const char *);
606 int target_already_root(void);
607 FILE *target_fopen(const char *, const char *);
608 int target_collect_file(int, char **, const char *);
609 int is_active_rootpart(const char *, int);
610 int cp_to_target(const char *, const char *);
611 void dup_file_into_target(const char *);
612 void mv_within_target_or_die(const char *, const char *);
613 int cp_within_target(const char *, const char *, int);
614 int target_mount(const char *, const char *, int, const char *);
615 int target_mount_do(const char *, const char *, const char *);
616 int target_test(unsigned int, const char *);
617 int target_dir_exists_p(const char *);
618 int target_file_exists_p(const char *);
619 int target_symlink_exists_p(const char *);
620 void unwind_mounts(void);
621 int target_mounted(void);
622
623 /* from partman.c */
624 #ifndef NO_PARTMAN
625 int partman(void);
626 int pm_getrefdev(pm_devs_t *);
627 void update_wedges(const char *);
628 #else
629 static inline int partman(void) { return -1; }
630 static inline int pm_getrefdev(pm_devs_t *x __unused) { return -1; }
631 #define update_wedges(x) __nothing
632 #endif
633 int pm_partusage(pm_devs_t *, int, int);
634 void pm_setfstype(pm_devs_t *, int, int);
635 int pm_editpart(int);
636 void pm_rename(pm_devs_t *);
637 int pm_shred(pm_devs_t *, int, int);
638 void pm_umount(pm_devs_t *, int);
639 int pm_unconfigure(pm_devs_t *);
640 int pm_cgd_edit(void *, part_entry_t *);
641 int pm_gpt_convert(pm_devs_t *);
642 void pm_wedges_fill(pm_devs_t *);
643 void pm_make_bsd_partitions(pm_devs_t *);
644
645 /* flags whether to offer the respective options (depending on helper
646 programs available on install media */
647 int have_raid, have_vnd, have_cgd, have_lvm, have_gpt, have_dk;
648 /* initialize above variables */
649 #ifndef NO_PARTMAN
650 void check_available_binaries(void);
651 #else
652 #define check_available_binaries() __nothing
653 #endif
654
655 /* from bsddisklabel.c */
656 int make_bsd_partitions(void);
657 int save_ptn(int, daddr_t, daddr_t, int, const char *);
658 void set_ptn_titles(menudesc *, int, void *);
659 void set_ptn_menu(struct ptn_info *);
660 int set_ptn_size(menudesc *, void *);
661 void get_ptn_sizes(daddr_t, daddr_t, int);
662 int check_partitions(void);
663
664 /* from aout2elf.c */
665 int move_aout_libs(void);
666
667 #ifdef WSKBD
668 void get_kb_encoding(void);
669 void save_kb_encoding(void);
670 #else
671 #define get_kb_encoding()
672 #define save_kb_encoding()
673 #endif
674
675 /* from configmenu.c */
676 void do_configmenu(void);
677
678 /* from checkrc.c */
679 int check_rcvar(const char *);
680 int check_rcdefault(const char *);
681 WINDOW *mainwin;
682
683 #endif /* _DEFS_H_ */
684