summaryrefslogtreecommitdiff
path: root/src/chroot-tools/librechroot
blob: 5afce0500f80f44ebde6892c1ae102e2ff82c89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#!/bin/bash -euE
# librechroot

# Copyright 2010 Nicolás Reynolds
# Copyright 2011 Joshua Haase
# Copyright 2012-2013 Luke Shumaker
#
# This file is part of Parabola.
#
# Parabola is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Parabola is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Parabola. If not, see <http://www.gnu.org/licenses/>.

. $(librelib conf.sh)
load_conf_libretools_chroot

. libremessages
. $(librelib makechrootpkg)

# Because the makechrootpkg.sh library functions don't work with -euE
normshell() (
	set +euE
	"$@"
)

cmd=${0##*/}
usage() {
	echo "Usage: $cmd [OPTIONS] COMMAND [ARGS...]"
	echo 'Interacts with an archroot (arch chroot).'
	echo ''
	echo 'This is configured with `chroot.conf`, either in'
	echo '`/etc/libretools.d/`, or `$XDG_CONFIG_HOME/libretools/`.'
	echo 'The variables you may set are $CHROOTDIR, $CHROOT, and'
	echo '$CHROOTEXTRAPKG'.
	echo ''
	echo 'There may be multiple chroots; they are stored in $CHROOTDIR.'
	echo ''
	echo 'Each chroot is named; the default is configured with $CHROOT.'
	echo ''
	echo "Each named chroot has a master clean copy (named 'root'), and any"
	echo 'number of other named copies; the copy used by default is the'
	echo "current username (or \$SUDO_USER, or 'copy' if root)."
	echo ''
	echo 'The full path to the chroot copy is "$CHROOTDIR/$CHROOT/$COPY",'
	echo 'Unless the copy name is manually specified as an absolute path,'
	echo 'in which case, that path is used.'
	echo ''
	echo 'The current settings for the above varibles are:'
	echo "    CHROOTDIR : $CHROOTDIR"
	echo "    CHROOT    : $CHROOT"
	echo "    COPY      : $COPY"
	echo "    root path : $rootdir"
	echo "    copy path : $copydir"
	echo ''
	echo 'If the chroot, or copy does not exist, it will be created'
	echo 'automatically.  A chroot by default contains the packages in the'
	echo 'group "base-devel", and any packages named in $CHROOTEXTRAPKG.'
	echo ''
	echo 'This command will make the following configuration changes in'
	echo 'the chroot:'
	echo '  - overwrite `/etc/libretools.d/chroot.conf`'
	echo '  - overwrite `/etc/pacman.d/mirrorlist`'
	echo '  - set `CacheDir` in `/etc/pacman.conf`'
	echo ''
	echo 'Creating a copy, deleting a copy, or syncing a copy can be fairly'
	echo 'slow; but are very fast if $CHROOTDIR is on a btrfs partition.'
	echo ''
	echo 'Options:'
	echo '  -n <CHROOT>   Name of the chroot to use'
	echo '  -l <COPY>     Name of, or absolute path to, the copy to use'
	echo '  -N            Disable networking in the chroot'
	echo '  -C <file>     Location of pacman config file'
	echo '  -M <file>     Location of makepkg config file'
	echo ''
	echo 'Commands:'
	echo '  Create/copy/delete:'
	echo '    noop|make     Do not do anything, but still creates the'
	echo '                  chroot copy if it does not exist'
	echo "    sync          Sync the copy with the clean ('root') copy"
	echo "    delete        delete the chroot copy"
	echo '  Dealing with packages:'
	echo '    install-file FILES...       Like `pacman -U FILES...`'
	echo '    install-name NAMES...       Like `pacman -S NAMES...`'
	echo '    update        Like `pacman -Syu`'
	echo '    clean-pkgs    Remove all packages from the chroot copy that'
	echo '                  are not in base-devel, $CHROOTEXTRAPKG, or'
	echo '                  named as a dependency in the file'
	echo '                  `/build/PKGBUILD` in the chroot copy.'
	echo '  Other:'
	echo '    run CMD...    Run CMD in the chroot copy'
	echo '    enter         Enter an interactive shell in the chroot copy'
	echo '    clean-repo    Clean /repo in the chroot copy'
	echo '    help          Show this message'
}

# Globals: $CHROOTDIR, $CHROOT, $COPY, $rootdir and $copydir
main() {
	COPY=$LIBREUSER
	[[ $COPY != root ]] || COPY=copy

	# defaults
	rootdir="${CHROOTDIR}/${CHROOT}/root"
	copydir="${CHROOTDIR}/${CHROOT}/${COPY}"

	local mode=enter
	local archroot_args=()
	while getopts 'n:l:NC:M:' arg; do
		case $arg in
			n) CHROOT=$OPTARG;;
			l) COPY=$OPTARG;;
			N)
				# We do this so that it carries through to
				# chroot_* functions
				archroot() {
					$(which archroot) -N "$@"
				}
				;;
			C|M) archroot_args+=(-$arg "$OPTARG");;
			*) usage; return 1;;
		esac
	done
	shift $(($OPTIND - 1))
	if [[ $# < 1 ]]; then
		error "Must specify a command"
		usage
		return 1
	fi
	mode=$1
	shift

	rootdir="${CHROOTDIR}/${CHROOT}/root"
	if [[ ${COPY:0:1} = / ]]; then
		copydir=$COPY
	else
		copydir="${CHROOTDIR}/${CHROOT}/${COPY}"
	fi

	########################################################################

	if [[ $mode == help ]]; then
		usage
		return 0
	fi

	if (( EUID )); then
		error "This program must be run as root."
		return 1
	fi

	umask 0022

	# Keep this lock as long as we are running
	# Note that '9' is the same FD number as in (mk)archroot
	lock_open_write 9 "$copydir" \
		"Waiting for existing lock on chroot copy to be released: [$COPY]"

	if [[ ! -d $rootdir ]]; then
		msg "Creating 'root' copy for chroot [$CHROOT]"
		set +u # if archroot_args is empty, it counts as unbound
		archroot "${archroot_args[@]}" -m "$rootdir" base-devel
		set -u
		mkdir -p "${rootdir}/repo"
		bsdtar -czf "${rootdir}/repo/repo.db.tar.gz" -T /dev/null
	fi

	if [[ ! -d $copydir ]] || [[ $mode == sync ]]; then
		msg "Syncing copy [$COPY] with root copy"
		normshell chroot_sync "$CHROOTDIR/$CHROOT" "$COPY"
	fi

	mkdir -p "$copydir/etc/libretools.d"
	{
		if [[ -n ${CHROOTEXTRAPKG[@]:-} ]]; then
			printf 'CHROOTEXTRAPKG=('
			printf "'%s' " "${CHROOTEXTRAPKG[@]}"
			printf ')\n'
		else
			printf 'CHROOTEXTRAPKG=()\n'
		fi
	} > "$copydir"/etc/libretools.d/chroot.conf

	if [[ $mode != delete ]]; then
		# "touch" the chroot first
		# this will
		#  - overwrite \`/etc/pacman.d/mirrorlist'"
		#  - set \`CacheDir' in \`/etc/pacman.conf'"
		#  - apply -C or -M flags
		set +u # if archroot_args is empty, it counts as unbound
		archroot "${archroot_args[@]}" -r "$copydir" true
		set -u
	fi

	########################################################################

	case "$mode" in
		# Creat/copy/delete
		noop|make|sync) :;;
		delete)
			if [[ -d $copydir ]]; then
				normshell chroot_delete "$copydir"
			fi
			;;

		# Dealing with packages
		install-file)
			normshell chroot_install_pkgs      "$copydir" "$@"
			normshell chroot_add_to_local_repo "$copydir" "$@"
			;;
		install-name) archroot -r "$copydir" pacman -Sy "$@";;
		update) archroot -u "$copydir";;
		clean-pkgs)
			trap "rm -f '$copydir'/clean '$copydir'/chrootexec" EXIT
			cp -a "$(which chcleanup)"  "$copydir/clean"
			echo '#!/bin/bash'        > "$copydir/chrootexec"
			echo 'mkdir /build'      >> "$copydir/chrootexec"
			echo 'cd /build; /clean' >> "$copydir/chrootexec"
			chmod 755 "$copydir/chrootexec"
			archroot -r "$copydir" /chrootexec
			;;

		# Other
		run)   archroot -r "$copydir" "$@";;
		enter) archroot -r "$copydir" bash;;
		clean-repo)
			rm -rf "${copydir}/repo/*"
			mkdir -p "${copydir}/repo"
			bsdtar -czf "${copydir}/repo/repo.db.tar.gz" -T /dev/null
			ln -s "repo.db.tar.gz" "${copydir}/repo/repo.db"
			;;
		*)
			error "Unrecognized command: \`$mode'"
			return 1
			;;
	esac
}

main "$@"