Home | History | Annotate | Line # | Download | only in sysinst
target.c revision 1.13
      1  1.13    martin /*	$NetBSD: target.c,v 1.13 2020/02/19 18:08:03 martin Exp $	*/
      2   1.1  dholland 
      3   1.1  dholland /*
      4   1.1  dholland  * Copyright 1997 Jonathan Stone
      5   1.1  dholland  * All rights reserved.
      6   1.1  dholland  *
      7   1.1  dholland  * Redistribution and use in source and binary forms, with or without
      8   1.1  dholland  * modification, are permitted provided that the following conditions
      9   1.1  dholland  * are met:
     10   1.1  dholland  * 1. Redistributions of source code must retain the above copyright
     11   1.1  dholland  *    notice, this list of conditions and the following disclaimer.
     12   1.1  dholland  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  dholland  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  dholland  *    documentation and/or other materials provided with the distribution.
     15   1.1  dholland  * 3. All advertising materials mentioning features or use of this software
     16   1.1  dholland  *    must display the following acknowledgement:
     17   1.1  dholland  *      This product includes software developed for the NetBSD Project by
     18   1.1  dholland  *      Jonathan Stone.
     19   1.1  dholland  * 4. The name of Jonathan Stone may not be used to endorse
     20   1.1  dholland  *    or promote products derived from this software without specific prior
     21   1.1  dholland  *    written permission.
     22   1.1  dholland  *
     23   1.1  dholland  * THIS SOFTWARE IS PROVIDED BY JONATHAN STONE ``AS IS''
     24   1.1  dholland  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1  dholland  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1  dholland  * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
     27   1.1  dholland  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     28   1.1  dholland  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29   1.1  dholland  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30   1.1  dholland  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31   1.1  dholland  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32   1.1  dholland  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     33   1.1  dholland  * THE POSSIBILITY OF SUCH DAMAGE.
     34   1.1  dholland  *
     35   1.1  dholland  */
     36   1.1  dholland 
     37   1.1  dholland /* Copyright below applies to the realpath() code */
     38   1.1  dholland 
     39   1.1  dholland /*
     40   1.1  dholland  * Copyright (c) 1989, 1991, 1993, 1995
     41   1.1  dholland  *      The Regents of the University of California.  All rights reserved.
     42   1.1  dholland  *
     43   1.1  dholland  * This code is derived from software contributed to Berkeley by
     44   1.1  dholland  * Jan-Simon Pendry.
     45   1.1  dholland  *
     46   1.1  dholland  * Redistribution and use in source and binary forms, with or without
     47   1.1  dholland  * modification, are permitted provided that the following conditions
     48   1.1  dholland  * are met:
     49   1.1  dholland  * 1. Redistributions of source code must retain the above copyright
     50   1.1  dholland  *    notice, this list of conditions and the following disclaimer.
     51   1.1  dholland  * 2. Redistributions in binary form must reproduce the above copyright
     52   1.1  dholland  *    notice, this list of conditions and the following disclaimer in the
     53   1.1  dholland  *    documentation and/or other materials provided with the distribution.
     54   1.1  dholland  * 3. Neither the name of the University nor the names of its contributors
     55   1.1  dholland  *    may be used to endorse or promote products derived from this software
     56   1.1  dholland  *    without specific prior written permission.
     57   1.1  dholland  *
     58   1.1  dholland  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59   1.1  dholland  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60   1.1  dholland  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61   1.1  dholland  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62   1.1  dholland  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63   1.1  dholland  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64   1.1  dholland  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65   1.1  dholland  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66   1.1  dholland  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67   1.1  dholland  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68   1.1  dholland  * SUCH DAMAGE.
     69   1.1  dholland  */
     70   1.1  dholland 
     71   1.1  dholland 
     72   1.1  dholland #include <sys/cdefs.h>
     73   1.1  dholland #if defined(LIBC_SCCS) && !defined(lint)
     74  1.13    martin __RCSID("$NetBSD: target.c,v 1.13 2020/02/19 18:08:03 martin Exp $");
     75   1.1  dholland #endif
     76   1.1  dholland 
     77   1.1  dholland /*
     78   1.1  dholland  * target.c -- path-prefixing routines to access the target installation
     79   1.1  dholland  *  filesystems. Makes the install tools more independent of whether
     80   1.1  dholland  *  we're installing into a separate filesystem hierarchy mounted under
     81   1.1  dholland  * /targetroot, or into the currently active root mounted on /.
     82   1.1  dholland  */
     83   1.1  dholland 
     84   1.1  dholland #include <sys/param.h>			/* XXX vm_param.h always defines TRUE*/
     85   1.1  dholland #include <sys/types.h>
     86   1.1  dholland #include <sys/sysctl.h>
     87   1.1  dholland #include <sys/stat.h>			/* stat() */
     88   1.1  dholland #include <sys/mount.h>			/* statfs() */
     89   1.1  dholland 
     90   1.1  dholland #include <fcntl.h>
     91   1.1  dholland #include <stdio.h>
     92   1.1  dholland #include <stdarg.h>
     93   1.1  dholland #include <unistd.h>
     94   1.1  dholland #include <curses.h>			/* defines TRUE, but checks  */
     95   1.1  dholland #include <errno.h>
     96   1.1  dholland 
     97   1.1  dholland 
     98   1.1  dholland #include "defs.h"
     99   1.1  dholland #include "md.h"
    100   1.1  dholland #include "msg_defs.h"
    101   1.1  dholland #include "menu_defs.h"
    102   1.1  dholland 
    103   1.1  dholland /*
    104   1.1  dholland  * local  prototypes
    105   1.1  dholland  */
    106   1.1  dholland 
    107   1.1  dholland static void make_prefixed_dir (const char *prefix, const char *path);
    108   1.1  dholland static int do_target_chdir (const char *dir, int flag);
    109   1.1  dholland int	target_test(unsigned int mode, const char *path);
    110   1.1  dholland int	target_test_dir (const char *path);	/* deprecated */
    111   1.1  dholland int	target_test_file (const char *path);	/* deprecated */
    112   1.1  dholland int	target_test_symlink (const char *path);	/* deprecated */
    113   1.1  dholland 
    114   1.1  dholland void unwind_mounts(void);
    115   1.1  dholland 
    116   1.1  dholland /* Record a mount for later unwinding of target mounts. */
    117   1.1  dholland struct unwind_mount {
    118   1.1  dholland 	struct unwind_mount *um_prev;
    119   1.1  dholland 	char um_mountpoint[4];		/* Allocated longer... */
    120   1.1  dholland };
    121   1.1  dholland 
    122   1.1  dholland /* Unwind-mount stack */
    123   1.1  dholland struct unwind_mount *unwind_mountlist = NULL;
    124   1.1  dholland 
    125   1.1  dholland /*
    126   1.1  dholland  * Debugging options
    127   1.1  dholland  */
    128   1.1  dholland /*#define DEBUG_ROOT*/		/* turn on what-is-root? debugging. */
    129   1.1  dholland /*#define DEBUG_UNWIND*/	/* turn on unwind-target-mount debugging. */
    130   1.1  dholland 
    131   1.1  dholland /*
    132   1.1  dholland  * debugging helper. curses...
    133   1.1  dholland  */
    134   1.1  dholland #if defined(DEBUG)  ||	defined(DEBUG_ROOT)
    135   1.1  dholland void
    136   1.1  dholland backtowin(void)
    137   1.1  dholland {
    138   1.1  dholland 
    139   1.1  dholland 	fflush(stdout);	/* curses does not leave stdout linebuffered. */
    140   1.1  dholland 	getchar();	/* wait for user to press return */
    141   1.1  dholland 	wrefresh(stdscr);
    142   1.1  dholland }
    143   1.1  dholland #endif
    144   1.1  dholland 
    145   1.1  dholland 
    146   1.1  dholland /*
    147   1.1  dholland  * Is the root partition we're running from the same as the root
    148   1.1  dholland  * which the user has selected to install/upgrade?
    149   1.2    martin  * Uses global variable "pm->diskdev" to find the selected device for
    150   1.1  dholland  * install/upgrade.
    151   1.1  dholland  */
    152   1.1  dholland int
    153   1.1  dholland target_already_root(void)
    154   1.1  dholland {
    155   1.5    martin 	char dev[PATH_MAX];
    156   1.5    martin 	int rootpart = -1;
    157   1.5    martin 	static struct pm_devs *last_pm;
    158   1.5    martin 	static int last_res;
    159   1.5    martin 	part_id ptn;
    160  1.12    martin 	struct disk_partitions *parts, *inner;
    161   1.5    martin 	struct disk_part_info info;
    162   1.5    martin 
    163   1.5    martin 	if (pm == last_pm)
    164   1.5    martin 		return last_res;
    165   1.5    martin 
    166   1.8    martin 	if (pm->cur_system)
    167   1.8    martin 		return 1;
    168   1.8    martin 
    169   1.5    martin 	last_pm = pm;
    170   1.7    martin 	last_res = 0;
    171   1.5    martin 
    172   1.5    martin 	parts = pm->parts;
    173   1.7    martin 	if (parts == NULL) {
    174   1.5    martin 		last_res = 0;
    175   1.5    martin 		return 0;
    176   1.5    martin 	}
    177   1.7    martin 
    178   1.7    martin 	if (pm->no_part) {
    179   1.7    martin 		last_res = is_active_rootpart(pm->diskdev, -1);
    180   1.7    martin 		return last_res;
    181   1.7    martin 	}
    182   1.7    martin 
    183  1.12    martin 	if (pm->parts->pscheme->secondary_partitions != NULL) {
    184  1.12    martin 		inner = pm->parts->pscheme->secondary_partitions(parts,
    185   1.6    martin 		    pm->ptstart, false);
    186  1.12    martin 		if (inner != NULL)
    187  1.12    martin 			parts = inner;
    188  1.12    martin 	}
    189   1.5    martin 
    190   1.5    martin 	for (ptn = 0; ptn < parts->num_part; ptn++) {
    191   1.5    martin 		if (!parts->pscheme->get_part_info(parts, ptn, &info))
    192   1.5    martin 			continue;
    193   1.5    martin 		if (info.nat_type->generic_ptype != PT_root)
    194   1.5    martin 			continue;
    195   1.7    martin 		if (!is_root_part_mount(info.last_mounted))
    196   1.5    martin 			continue;
    197   1.5    martin 		if (!parts->pscheme->get_part_device(parts, ptn,
    198  1.11    martin 		    dev, sizeof dev, &rootpart, plain_name, false, true))
    199   1.5    martin 			continue;
    200   1.1  dholland 
    201   1.5    martin 		last_res = is_active_rootpart(dev, rootpart);
    202   1.7    martin 		break;
    203   1.7    martin  	}
    204   1.3    martin 
    205   1.7    martin 	return last_res;
    206   1.1  dholland }
    207   1.1  dholland 
    208   1.7    martin /*
    209   1.7    martin  * Could something with this "last mounted on" information be a potential
    210   1.7    martin  * root partition?
    211   1.7    martin  */
    212   1.7    martin bool
    213   1.7    martin is_root_part_mount(const char *last_mounted)
    214   1.7    martin {
    215   1.9    martin 	if (last_mounted == NULL)
    216   1.9    martin 		return false;
    217   1.9    martin 
    218   1.7    martin 	return strcmp(last_mounted, "/") == 0 ||
    219   1.7    martin 	    strcmp(last_mounted, "/targetroot") == 0 ||
    220   1.7    martin 	    strcmp(last_mounted, "/altroot") == 0;
    221   1.7    martin }
    222   1.1  dholland 
    223   1.1  dholland /*
    224   1.1  dholland  * Is this device partition (e.g., "sd0a") mounted as root?
    225   1.1  dholland  */
    226   1.1  dholland int
    227   1.1  dholland is_active_rootpart(const char *dev, int ptn)
    228   1.1  dholland {
    229   1.1  dholland 	int mib[2];
    230   1.1  dholland 	char rootdev[SSTRSIZE];
    231   1.1  dholland 	int rootptn;
    232   1.1  dholland 	size_t varlen;
    233   1.1  dholland 
    234   1.1  dholland 	mib[0] = CTL_KERN;
    235   1.1  dholland 	mib[1] = KERN_ROOT_DEVICE;
    236   1.1  dholland 	varlen = sizeof(rootdev);
    237   1.1  dholland 	if (sysctl(mib, 2, rootdev, &varlen, NULL, 0) < 0)
    238   1.1  dholland 		return 1;
    239   1.1  dholland 
    240   1.1  dholland 	if (strcmp(dev, rootdev) != 0)
    241   1.1  dholland 		return 0;
    242   1.1  dholland 
    243   1.4    martin 	if (ptn < 0)
    244   1.4    martin 		return 1;	/* device only check, or wedge */
    245   1.4    martin 
    246   1.1  dholland 	mib[1] = KERN_ROOT_PARTITION;
    247   1.1  dholland 	varlen = sizeof rootptn;
    248   1.4    martin 	rootptn = -1;
    249   1.1  dholland 	if (sysctl(mib, 2, &rootptn, &varlen, NULL, 0) < 0)
    250   1.1  dholland 		return 1;
    251   1.1  dholland 
    252   1.1  dholland 	return ptn == rootptn;
    253   1.1  dholland }
    254   1.1  dholland 
    255   1.1  dholland /*
    256   1.1  dholland  * Pathname  prefixing glue to support installation either
    257   1.1  dholland  * from in-ramdisk miniroots or on-disk diskimages.
    258   1.1  dholland  * If our root is on the target disk, the install target is mounted
    259   1.1  dholland  * on /targetroot and we need to prefix installed pathnames with /targetroot.
    260   1.1  dholland  * otherwise we are installing to the currently-active root and
    261   1.1  dholland  * no prefix is needed.
    262   1.1  dholland  */
    263   1.1  dholland const char *
    264   1.1  dholland target_prefix(void)
    265   1.1  dholland {
    266   1.1  dholland 	/*
    267   1.1  dholland 	 * XXX fetch sysctl variable for current root, and compare
    268   1.1  dholland 	 * to the devicename of the install target disk.
    269   1.1  dholland 	 */
    270   1.1  dholland 	return(target_already_root() ? "" : targetroot_mnt);
    271   1.1  dholland }
    272   1.1  dholland 
    273   1.1  dholland /*
    274   1.1  dholland  * concatenate two pathnames.
    275   1.1  dholland  * XXX returns either input args or result in a static buffer.
    276   1.1  dholland  * The caller must copy if it wants to use the pathname past the
    277   1.1  dholland  * next call to a target-prefixing  function, or to modify the inputs..
    278   1.1  dholland  * Used only  internally so this is probably safe.
    279   1.1  dholland  */
    280   1.1  dholland const char *
    281   1.1  dholland concat_paths(const char *prefix, const char *suffix)
    282   1.1  dholland {
    283   1.1  dholland 	static char real_path[MAXPATHLEN];
    284   1.1  dholland 
    285   1.1  dholland 	/* absolute prefix and null suffix? */
    286   1.1  dholland 	if (prefix[0] == '/' && suffix[0] == 0)
    287   1.1  dholland 		return prefix;
    288   1.1  dholland 
    289   1.1  dholland 	/* null prefix and absolute suffix? */
    290   1.1  dholland 	if (prefix[0] == 0 && suffix[0] == '/')
    291   1.1  dholland 		return suffix;
    292   1.1  dholland 
    293   1.1  dholland 	/* avoid "//" */
    294   1.1  dholland 	if (suffix[0] == '/' || suffix[0] == 0)
    295   1.1  dholland 		snprintf(real_path, sizeof(real_path), "%s%s", prefix, suffix);
    296   1.1  dholland 	else
    297   1.1  dholland 		snprintf(real_path, sizeof(real_path), "%s/%s",
    298   1.1  dholland 		    prefix, suffix);
    299   1.1  dholland 	return (real_path);
    300   1.1  dholland }
    301   1.1  dholland 
    302   1.1  dholland /*
    303   1.1  dholland  * Do target prefix expansion on a pathname.
    304   1.1  dholland  * XXX uses concat_paths and so returns result in a static buffer.
    305   1.1  dholland  * The caller must copy if it wants to use the pathname past the
    306   1.1  dholland  * next call to a target-prefixing  function, or to modify the inputs..
    307   1.1  dholland  * Used only  internally so this is probably safe.
    308   1.1  dholland  *
    309   1.1  dholland  * Not static so other functions can generate target related file names.
    310   1.1  dholland  */
    311   1.1  dholland const char *
    312   1.1  dholland target_expand(const char *tgtpath)
    313   1.1  dholland {
    314   1.1  dholland 
    315   1.1  dholland 	return concat_paths(target_prefix(), tgtpath);
    316   1.1  dholland }
    317   1.1  dholland 
    318   1.1  dholland /* Make a directory, with a prefix like "/targetroot" or possibly just "". */
    319   1.1  dholland static void
    320   1.1  dholland make_prefixed_dir(const char *prefix, const char *path)
    321   1.1  dholland {
    322   1.1  dholland 
    323   1.1  dholland 	run_program(0, "/bin/mkdir -p %s", concat_paths(prefix, path));
    324   1.1  dholland }
    325   1.1  dholland 
    326   1.1  dholland /* Make a directory with a pathname relative to the installation target. */
    327   1.1  dholland void
    328   1.1  dholland make_target_dir(const char *path)
    329   1.1  dholland {
    330   1.1  dholland 
    331   1.1  dholland 	make_prefixed_dir(target_prefix(), path);
    332   1.1  dholland }
    333   1.1  dholland 
    334   1.1  dholland 
    335   1.1  dholland static int
    336   1.1  dholland do_target_chdir(const char *dir, int must_succeed)
    337   1.1  dholland {
    338   1.1  dholland 	const char *tgt_dir;
    339   1.1  dholland 	int error;
    340   1.1  dholland 
    341   1.1  dholland 	error = 0;
    342   1.1  dholland 	tgt_dir = target_expand(dir);
    343   1.1  dholland 
    344   1.2    martin #ifdef DEBUG
    345   1.2    martin 	printf("target_chdir (%s)\n", tgt_dir);
    346   1.2    martin 	//return (0);
    347   1.2    martin #endif
    348   1.1  dholland 	/* chdir returns -1 on error and sets errno. */
    349   1.1  dholland 	if (chdir(tgt_dir) < 0)
    350   1.1  dholland 		error = errno;
    351   1.1  dholland 	if (logfp) {
    352   1.1  dholland 		fprintf(logfp, "cd to %s\n", tgt_dir);
    353   1.1  dholland 		fflush(logfp);
    354   1.1  dholland 	}
    355   1.1  dholland 	if (script) {
    356   1.1  dholland 		scripting_fprintf(NULL, "cd %s\n", tgt_dir);
    357   1.1  dholland 		fflush(script);
    358   1.1  dholland 	}
    359   1.1  dholland 
    360   1.1  dholland 	if (error && must_succeed) {
    361   1.5    martin 		const char *args[] = { target_prefix(), strerror(error) };
    362   1.5    martin 		char *err = str_arg_subst(msg_string(MSG_realdir),
    363   1.5    martin 		    __arraycount(args), args);
    364   1.5    martin 		fprintf(stderr, "%s\n", err);
    365   1.1  dholland 		if (logfp)
    366   1.5    martin 			fprintf(logfp, "%s\n", err);
    367   1.5    martin 		free(err);
    368   1.1  dholland 		exit(1);
    369   1.1  dholland 	}
    370   1.1  dholland 	errno = error;
    371   1.1  dholland 	return (error);
    372   1.1  dholland }
    373   1.1  dholland 
    374   1.1  dholland void
    375   1.1  dholland target_chdir_or_die(const char *dir)
    376   1.1  dholland {
    377   1.1  dholland 
    378   1.1  dholland 	(void)do_target_chdir(dir, 1);
    379   1.1  dholland }
    380   1.1  dholland 
    381   1.1  dholland #ifdef notdef
    382   1.1  dholland int
    383   1.1  dholland target_chdir(const char *dir)
    384   1.1  dholland {
    385   1.1  dholland 
    386   1.1  dholland 	return do_target_chdir(dir, 0);
    387   1.1  dholland }
    388   1.1  dholland #endif
    389   1.1  dholland 
    390   1.1  dholland /*
    391   1.1  dholland  * Copy a file from the current root into the target system,
    392   1.1  dholland  * where the  destination pathname is relative to the target root.
    393   1.1  dholland  * Does not check for copy-to-self when target is  current root.
    394   1.1  dholland  */
    395   1.1  dholland int
    396   1.1  dholland cp_to_target(const char *srcpath, const char *tgt_path)
    397   1.1  dholland {
    398   1.1  dholland 	const char *real_path = target_expand(tgt_path);
    399   1.1  dholland 
    400   1.1  dholland 	return run_program(0, "/bin/cp %s %s", srcpath, real_path);
    401   1.1  dholland }
    402   1.1  dholland 
    403   1.1  dholland /*
    404   1.1  dholland  * Duplicate a file from the current root to the same pathname
    405   1.1  dholland  * in the target system.  Pathname must be an absolute pathname.
    406   1.1  dholland  * If we're running in the target, do nothing.
    407   1.1  dholland  */
    408   1.1  dholland void
    409   1.1  dholland dup_file_into_target(const char *filename)
    410   1.1  dholland {
    411   1.1  dholland 
    412   1.1  dholland 	if (!target_already_root())
    413   1.1  dholland 		cp_to_target(filename, filename);
    414   1.1  dholland }
    415   1.1  dholland 
    416   1.1  dholland 
    417   1.1  dholland /*
    418   1.1  dholland  * Do a mv where both pathnames are within the target filesystem.
    419   1.1  dholland  */
    420   1.1  dholland void
    421   1.1  dholland mv_within_target_or_die(const char *frompath, const char *topath)
    422   1.1  dholland {
    423   1.1  dholland 	char realfrom[STRSIZE];
    424   1.1  dholland 	char realto[STRSIZE];
    425   1.1  dholland 
    426   1.1  dholland 	strlcpy(realfrom, target_expand(frompath), sizeof realfrom);
    427   1.1  dholland 	strlcpy(realto, target_expand(topath), sizeof realto);
    428   1.1  dholland 
    429   1.1  dholland 	run_program(RUN_FATAL, "mv %s %s", realfrom, realto);
    430   1.1  dholland }
    431   1.1  dholland 
    432   1.1  dholland /* Do a cp where both pathnames are within the target filesystem. */
    433   1.1  dholland int
    434   1.1  dholland cp_within_target(const char *frompath, const char *topath, int optional)
    435   1.1  dholland {
    436   1.1  dholland 	char realfrom[STRSIZE];
    437   1.1  dholland 	char realto[STRSIZE];
    438   1.1  dholland 
    439  1.13    martin 	strlcpy(realfrom, target_expand(frompath), sizeof realfrom);
    440  1.13    martin 	strlcpy(realto, target_expand(topath), sizeof realto);
    441   1.1  dholland 
    442   1.1  dholland 	if (access(realfrom, R_OK) == -1 && optional)
    443   1.1  dholland 		return 0;
    444   1.1  dholland 	return (run_program(0, "cp -p %s %s", realfrom, realto));
    445   1.1  dholland }
    446   1.1  dholland 
    447   1.1  dholland /* fopen a pathname in the target. */
    448   1.1  dholland FILE *
    449   1.1  dholland target_fopen(const char *filename, const char *type)
    450   1.1  dholland {
    451   1.1  dholland 
    452   1.1  dholland 	return fopen(target_expand(filename), type);
    453   1.1  dholland }
    454   1.1  dholland 
    455   1.1  dholland /*
    456   1.1  dholland  * Do a mount onto a mountpoint in the install target.
    457   1.1  dholland  * Record mountpoint so we can unmount when finished.
    458   1.1  dholland  * NB: does not prefix mount-from, which probably breaks nullfs mounts.
    459   1.1  dholland  */
    460   1.1  dholland int
    461   1.2    martin target_mount_do(const char *opts, const char *from, const char *on)
    462   1.1  dholland {
    463   1.1  dholland 	struct unwind_mount *m;
    464   1.1  dholland 	int error;
    465   1.1  dholland 	int len;
    466   1.1  dholland 
    467   1.1  dholland 	len = strlen(on);
    468   1.1  dholland 	m = malloc(sizeof *m + len);
    469   1.1  dholland 	if (m == 0)
    470   1.1  dholland 		return (ENOMEM);	/* XXX */
    471   1.1  dholland 
    472   1.1  dholland 	memcpy(m->um_mountpoint, on, len + 1);
    473   1.1  dholland 
    474   1.1  dholland #ifdef DEBUG_UNWIND
    475   1.1  dholland 	endwin();
    476   1.1  dholland 	fprintf(stderr, "mounting %s with unwind\n", on);
    477   1.1  dholland 	backtowin();
    478   1.1  dholland #endif
    479   1.1  dholland 
    480   1.2    martin 	error = run_program(0, "/sbin/mount %s %s %s%s",
    481   1.2    martin 			opts, from, target_prefix(), on);
    482   1.1  dholland 	if (error) {
    483   1.1  dholland 		free(m);
    484   1.1  dholland 		return error;
    485   1.1  dholland 	}
    486   1.1  dholland 	m->um_prev = unwind_mountlist;
    487   1.1  dholland 	unwind_mountlist = m;
    488   1.1  dholland 	return 0;
    489   1.1  dholland }
    490   1.1  dholland 
    491  1.10    martin /*
    492  1.10    martin  * Special case - we have mounted the target / readonly
    493  1.10    martin  * to peek at etc/fstab, and now want it undone.
    494  1.10    martin  */
    495  1.10    martin void
    496  1.10    martin umount_root(void)
    497  1.10    martin {
    498  1.10    martin 
    499  1.10    martin 	/* verify this is the only mount */
    500  1.10    martin 	if (unwind_mountlist == NULL)
    501  1.10    martin 		return;
    502  1.10    martin 	if (unwind_mountlist->um_prev != NULL)
    503  1.10    martin 		return;
    504  1.10    martin 
    505  1.10    martin 	if (run_program(0, "/sbin/umount %s", target_prefix()) != 0)
    506  1.10    martin 		return;
    507  1.10    martin 
    508  1.10    martin 	free(unwind_mountlist);
    509  1.10    martin 	unwind_mountlist = NULL;
    510  1.10    martin }
    511  1.10    martin 
    512  1.10    martin 
    513   1.2    martin int
    514   1.5    martin target_mount(const char *opts, const char *from, const char *on)
    515   1.2    martin {
    516   1.5    martin 	return target_mount_do(opts, from, on);
    517   1.2    martin }
    518   1.2    martin 
    519   1.1  dholland /*
    520   1.1  dholland  * unwind the mount stack, unmounting mounted filesystems.
    521   1.1  dholland  * For now, ignore any errors in unmount.
    522   1.1  dholland  * (Why would we be unable to unmount?  The user has suspended
    523   1.1  dholland  *  us and forked shell sitting somewhere in the target root?)
    524   1.1  dholland  */
    525   1.1  dholland void
    526   1.1  dholland unwind_mounts(void)
    527   1.1  dholland {
    528   1.1  dholland 	struct unwind_mount *m;
    529   1.1  dholland 	static volatile int unwind_in_progress = 0;
    530   1.1  dholland 
    531   1.1  dholland 	/* signal safety */
    532   1.1  dholland 	if (unwind_in_progress)
    533   1.1  dholland 		return;
    534   1.1  dholland 	unwind_in_progress = 1;
    535   1.1  dholland 
    536   1.1  dholland 	while ((m = unwind_mountlist) != NULL) {
    537   1.1  dholland 		unwind_mountlist = m->um_prev;
    538   1.1  dholland #ifdef DEBUG_UNWIND
    539   1.1  dholland 		endwin();
    540   1.1  dholland 		fprintf(stderr, "unmounting %s\n", m->um_mountpoint);
    541   1.1  dholland 		backtowin();
    542   1.1  dholland #endif
    543   1.1  dholland 		run_program(0, "/sbin/umount %s%s",
    544   1.1  dholland 			target_prefix(), m->um_mountpoint);
    545   1.1  dholland 		free(m);
    546   1.1  dholland 	}
    547   1.1  dholland 	unwind_in_progress = 0;
    548   1.1  dholland }
    549   1.1  dholland 
    550   1.1  dholland int
    551   1.1  dholland target_collect_file(int kind, char **buffer, const char *name)
    552   1.1  dholland {
    553   1.1  dholland 	const char *realname = target_expand(name);
    554   1.1  dholland 
    555   1.1  dholland #ifdef	DEBUG
    556   1.1  dholland 	printf("collect real name %s\n", realname);
    557   1.1  dholland #endif
    558   1.1  dholland 	return collect(kind, buffer, "%s", realname);
    559   1.1  dholland }
    560   1.1  dholland 
    561   1.1  dholland /*
    562   1.1  dholland  * Verify a pathname already exists in the target root filesystem,
    563   1.1  dholland  * by running  test "testflag" on the expanded target pathname.
    564   1.1  dholland  */
    565   1.1  dholland int
    566   1.1  dholland target_test(unsigned int mode, const char *path)
    567   1.1  dholland {
    568   1.1  dholland 	const char *real_path = target_expand(path);
    569   1.1  dholland 	register int result;
    570   1.1  dholland 
    571   1.1  dholland 	result = !file_mode_match(real_path, mode);
    572   1.1  dholland 	scripting_fprintf(NULL, "if [ $? != 0 ]; then echo \"%s does not exist!\"; fi\n", real_path);
    573   1.1  dholland 
    574   1.1  dholland #if defined(DEBUG)
    575   1.1  dholland 	printf("target_test(%o, %s) returning %d\n", mode, real_path, result);
    576   1.1  dholland #endif
    577   1.1  dholland 	return (result);
    578   1.1  dholland }
    579   1.1  dholland 
    580   1.1  dholland /*
    581   1.1  dholland  * Verify a directory already exists in the target root
    582   1.1  dholland  * filesystem. Do not create the directory if it doesn't  exist.
    583   1.1  dholland  * Assumes that sysinst has already mounted the target root.
    584   1.1  dholland  */
    585   1.1  dholland int
    586   1.1  dholland target_test_dir(const char *path)
    587   1.1  dholland {
    588   1.1  dholland 
    589   1.1  dholland  	return target_test(S_IFDIR, path);
    590   1.1  dholland }
    591   1.1  dholland 
    592   1.1  dholland /*
    593   1.1  dholland  * Verify an ordinary file already exists in the target root
    594   1.1  dholland  * filesystem. Do not create the directory if it doesn't  exist.
    595   1.1  dholland  * Assumes that sysinst has already mounted the target root.
    596   1.1  dholland  */
    597   1.1  dholland int
    598   1.1  dholland target_test_file(const char *path)
    599   1.1  dholland {
    600   1.1  dholland 
    601   1.1  dholland  	return target_test(S_IFREG, path);
    602   1.1  dholland }
    603   1.1  dholland 
    604   1.1  dholland int
    605   1.1  dholland target_test_symlink(const char *path)
    606   1.1  dholland {
    607   1.1  dholland 
    608   1.1  dholland  	return target_test(S_IFLNK, path);
    609   1.1  dholland }
    610   1.1  dholland 
    611   1.1  dholland int
    612   1.1  dholland target_file_exists_p(const char *path)
    613   1.1  dholland {
    614   1.1  dholland 
    615   1.1  dholland 	return (target_test_file(path) == 0);
    616   1.1  dholland }
    617   1.1  dholland 
    618   1.1  dholland int
    619   1.1  dholland target_dir_exists_p(const char *path)
    620   1.1  dholland {
    621   1.1  dholland 
    622   1.1  dholland 	return (target_test_dir(path) == 0);
    623   1.1  dholland }
    624   1.1  dholland 
    625   1.1  dholland int
    626   1.1  dholland target_symlink_exists_p(const char *path)
    627   1.1  dholland {
    628   1.1  dholland 
    629   1.1  dholland 	return (target_test_symlink(path) == 0);
    630   1.1  dholland }
    631   1.1  dholland 
    632   1.1  dholland int
    633   1.1  dholland target_mounted(void)
    634   1.1  dholland {
    635   1.1  dholland 	return (unwind_mountlist != NULL);
    636   1.1  dholland }
    637