vmimage.subr revision 319032
1#!/bin/sh
2#
3# $FreeBSD: stable/10/release/tools/vmimage.subr 319032 2017-05-28 03:59:33Z gjb $
4#
5#
6# Common functions for virtual machine image build scripts.
7#
8
9export PATH="/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
10trap "cleanup" INT QUIT TRAP ABRT TERM
11
12write_partition_layout() {
13	if [ -z "${NOSWAP}" ]; then
14		SWAPOPT="-p freebsd-swap/swapfs::${SWAPSIZE}"
15	fi
16
17	_OBJDIR="$(make -C ${WORLDDIR} -V .OBJDIR)"
18	_OBJDIR="$(realpath ${_OBJDIR})"
19	if [ -d "${_OBJDIR%%/usr/src}/${TARGET}.${TARGET_ARCH}" ]; then
20		BOOTFILES="/${_OBJDIR%%/usr/src}/${TARGET}.${TARGET_ARCH}/usr/src/sys/boot"
21	else
22		BOOTFILES="/${_OBJDIR}/sys/boot"
23	fi
24
25	case "${TARGET}:${TARGET_ARCH}" in
26		amd64:amd64 | i386:i386)
27			mkimg -s gpt -f ${VMFORMAT} \
28				-b ${BOOTFILES}/i386/pmbr/pmbr \
29				-p freebsd-boot/bootfs:=${BOOTFILES}/i386/gptboot/gptboot \
30				${SWAPOPT} \
31				-p freebsd-ufs/rootfs:=${VMBASE} \
32				-o ${VMIMAGE}
33			;;
34		powerpc:powerpc*)
35			mkimg -s apm -f ${VMFORMAT} \
36				-p apple-boot/bootfs:=${BOOTFILES}/powerpc/boot1.chrp/boot1.hfs \
37				${SWAPOPT} \
38				-p freebsd-ufs/rootfs:=${VMBASE} \
39				-o ${VMIMAGE}
40			;;
41		*)
42			# ENOTSUPP
43			return 1
44			;;
45	esac
46
47	return 0
48}
49
50err() {
51	printf "${@}\n"
52	cleanup
53	return 1
54}
55
56cleanup() {
57	if [ -c "${DESTDIR}/dev/null" ]; then
58		umount_loop ${DESTDIR}/dev 2>/dev/null
59	fi
60	umount_loop ${DESTDIR}
61	if [ ! -z "${mddev}" ]; then
62		mdconfig -d -u ${mddev}
63	fi
64
65	return 0
66}
67
68vm_create_base() {
69	# Creates the UFS root filesystem for the virtual machine disk,
70	# written to the formatted disk image with mkimg(1).
71
72	mkdir -p ${DESTDIR}
73	truncate -s ${VMSIZE} ${VMBASE}
74	mddev=$(mdconfig -f ${VMBASE})
75	newfs /dev/${mddev}
76	mount /dev/${mddev} ${DESTDIR}
77
78	return 0
79}
80
81vm_copy_base() {
82	# Creates a new UFS root filesystem and copies the contents of the
83	# current root filesystem into it.  This produces a "clean" disk
84	# image without any remnants of files which were created temporarily
85	# during image-creation and have since been deleted (e.g., downloaded
86	# package archives).
87
88	mkdir -p ${DESTDIR}/old
89	mdold=$(mdconfig -f ${VMBASE})
90	mount /dev/${mdold} ${DESTDIR}/old
91
92	truncate -s ${VMSIZE} ${VMBASE}.tmp
93	mkdir -p ${DESTDIR}/new
94	mdnew=$(mdconfig -f ${VMBASE}.tmp)
95	newfs /dev/${mdnew}
96	mount /dev/${mdnew} ${DESTDIR}/new
97
98	tar -cf- -C ${DESTDIR}/old . | tar -xUf- -C ${DESTDIR}/new
99
100	umount_loop /dev/${mdold}
101	rmdir ${DESTDIR}/old
102	mdconfig -d -u ${mdold}
103
104	umount_loop /dev/${mdnew}
105	rmdir ${DESTDIR}/new
106	tunefs -n enable /dev/${mdnew}
107	mdconfig -d -u ${mdnew}
108	mv ${VMBASE}.tmp ${VMBASE}
109}
110
111vm_install_base() {
112	# Installs the FreeBSD userland/kernel to the virtual machine disk.
113
114	cd ${WORLDDIR} && \
115		make DESTDIR=${DESTDIR} \
116		installworld installkernel distribution || \
117		err "\n\nCannot install the base system to ${DESTDIR}."
118
119	echo '# Custom /etc/fstab for FreeBSD VM images' \
120		> ${DESTDIR}/etc/fstab
121	echo '/dev/gpt/rootfs   /       ufs     rw      1       1' \
122		>> ${DESTDIR}/etc/fstab
123	if [ -z "${NOSWAP}" ]; then
124		echo '/dev/gpt/swapfs  none    swap    sw      0       0' \
125			>> ${DESTDIR}/etc/fstab
126	fi
127
128	mkdir -p ${DESTDIR}/dev
129	mount -t devfs devfs ${DESTDIR}/dev
130	chroot ${DESTDIR} /usr/bin/newaliases
131	chroot ${DESTDIR} /etc/rc.d/ldconfig forcestart
132	umount_loop ${DESTDIR}/dev
133
134	cp /etc/resolv.conf ${DESTDIR}/etc/resolv.conf
135
136	return 0
137}
138
139vm_extra_install_base() {
140	# Prototype.  When overridden, runs extra post-installworld commands
141	# as needed, based on the target virtual machine image or cloud
142	# provider image target.
143
144	return 0
145}
146
147vm_extra_enable_services() {
148	if [ ! -z "${VM_RC_LIST}" ]; then
149		for _rcvar in ${VM_RC_LIST}; do
150			echo ${_rcvar}_enable="YES" >> ${DESTDIR}/etc/rc.conf
151		done
152	fi
153
154	if [ -z "${VMCONFIG}" -o -c "${VMCONFIG}" ]; then
155		echo 'ifconfig_DEFAULT="DHCP inet6 accept_rtadv"' >> \
156			${DESTDIR}/etc/rc.conf
157	fi
158
159	return 0
160}
161
162vm_extra_install_packages() {
163	if [ -z "${VM_EXTRA_PACKAGES}" ]; then
164		return 0
165	fi
166	mkdir -p ${DESTDIR}/dev
167	mount -t devfs devfs ${DESTDIR}/dev
168	chroot ${DESTDIR} env ASSUME_ALWAYS_YES=yes \
169		/usr/sbin/pkg bootstrap -y
170	chroot ${DESTDIR} env ASSUME_ALWAYS_YES=yes \
171		/usr/sbin/pkg install -y ${VM_EXTRA_PACKAGES}
172	umount_loop ${DESTDIR}/dev
173
174	return 0
175}
176
177vm_extra_install_ports() {
178	# Prototype.  When overridden, installs additional ports within the
179	# virtual machine environment.
180
181	return 0
182}
183
184vm_extra_pre_umount() {
185	# Prototype.  When overridden, performs additional tasks within the
186	# virtual machine environment prior to unmounting the filesystem.
187	# Note: When overriding this function, removing resolv.conf in the
188	# disk image must be included.
189
190	rm -f ${DESTDIR}/etc/resolv.conf
191	return 0
192}
193
194vm_extra_pkg_rmcache() {
195	if [ -e ${DESTDIR}/usr/local/sbin/pkg ]; then
196		chroot ${DESTDIR} env ASSUME_ALWAYS_YES=yes \
197			/usr/local/sbin/pkg clean -y -a
198	fi
199
200	return 0
201}
202
203umount_loop() {
204	DIR=$1
205	i=0
206	sync
207	while ! umount ${DIR}; do
208		i=$(( $i + 1 ))
209		if [ $i -ge 10 ]; then
210			# This should never happen.  But, it has happened.
211			echo "Cannot umount(8) ${DIR}"
212			echo "Something has gone horribly wrong."
213			return 1
214		fi
215		sleep 1
216	done
217
218	return 0
219}
220
221vm_create_disk() {
222	echo "Creating image...  Please wait."
223	echo
224
225	write_partition_layout || return 1
226
227	return 0
228}
229
230vm_extra_create_disk() {
231
232	return 0
233}
234
235