summaryrefslogtreecommitdiff
blob: ce075c379144ac1b653b6f2a89bfa5698bf8e953 (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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
#!/bin/bash
#
# distcc-config - helper script for distcc and distccd
#
# Copyright 2003 Superlucidity Services, LLC 
# This program licensed under the GNU GPL version 2.
#
# This script developed by Zachary T Welch at Superlucidity Services, LLC
#  based on ideas from irc discussion and the clear need for this support
# 
# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/2.10/distcc-config,v 1.3 2004/01/05 23:23:10 robbat2 Exp $
# Changelog
# 
# 21 Jul 2003 - Changed install environment to EXCLUDE DISTCC_HOSTS from /etc/env.d/02distcc.
#               The hosts are stored by default to /etc/distcc/hosts.  <lisa@gentoo.org>

[ -z "${ROOT}" ] && ROOT=/

# distcc-config manges the DISTCC_{HOSTS,LOG,VERBOSE} settings here
# moved to accomodate 02ccache and leave 0[14]* free
DCCC_ENV_FILE="${ROOT}etc/env.d/02distcc"
DCCC_OLD_ENV="${ROOT}etc/env.d/04distcc"

is_super_user() {
	[ "$(id -u)" = 0 ]
}
# this should be getopt'd someday (override with DCCC_QUIET)
DCCC_VERBOSE=1

source /sbin/functions.sh

dccc_echo() {
	[ -z "${DCCC_QUIET}" -a -n "${DCCC_VERBOSE}" ] && echo "$*"
}
dccc_exit() {
	dccc_echo "$*"
	exit 1
}

# create the appropriate configuration directory 
is_super_user && \
	DCCC_HOSTS_FILE="${ROOT}etc/distcc/hosts" || \
	DCCC_HOSTS_FILE="${ROOT}${HOME#/}/.distcc/hosts"
mkdir -p $(dirname ${DCCC_HOSTS_FILE}) || \
	dccc_exit "unable to create configuration directory"


###
# the following functions manage the distcc symlinks
#  they allow the user or other scripts (namely gcc-config) to
#  automatically update distcc's links when upgrading toolchains
#
dccc_remove_link() {
	local t="${ROOT}usr/lib/distcc/bin/${1}"
	if [ -L ${t} ]; then
		dccc_echo "Removing ${t}..."
		rm -f "${t}"
	fi
}
dccc_install_link() {
	# Search the PATH for the specified compiler
	#  then create shadow link in ${ROOT}usr/lib/distcc/bin to distcc
	#  note: this `type' doesn't do the right thing if ROOT != /
	if [ -n "$(type -p ${1})" ]; then 
		# first be sure any old link is removed
		DCCC_QUIET=1 dccc_remove_link "${1}"

		# then create the new link
		local t="${ROOT}usr/lib/distcc/bin/${1}"
		dccc_echo "Creating distcc shadow link: ${t}..."
		ln -s /usr/bin/distcc "${t}"
	fi
}
dccc_links() {
	local a
	for a in gcc cc c++ g++ ; do
		[ -n "${2}" ] && a="${2}-${a}"
		eval "dccc_${1}_link" "${a}"
	done
}

dccc_install_user() {
	# update or create, depending on whether user already exists
	einfo "Updating or creating distcc user..."
	local USERFIX
	id distcc >/dev/null 2>&1 && USERFIX=usermod || USERFIX=useradd
	USERFIX="/usr/sbin/${USERFIX}"
	if [ -x "${USERFIX}" ]
	then
		if ! ${USERFIX} -g daemon -s /bin/false -d /dev/null \
				-c "distccd" distcc 
		then
			dccc_exit "unable to create or modify user"
		fi
	elif [ "${USERFIX}" = "/usr/sbin/useradd" ]
	then
		ewarn "${USERFIX} not found: You need to add the distcc user"
		ewarn "to /etc/passwd by hand.  Add the following line:\n"
		ewarn "  distcc:x:240:2:distccd:/dev/null:/bin/false\n"
		ewarn "and then run 'distcc-config --install' again root."
		dccc_exit "Unable to create distcc user!"
	fi

	for d in ${ROOT}usr/lib/distcc/bin ${ROOT}var/run/distccd ; do
		einfo "Configuring $d..."
		chown distcc:daemon $d && chmod 0755 $d || \
			dccc_exit "Unable to configure ${d}!"
	done
}

dccc_guess_chost() {
	echo "$(grep CHOST /etc/make.conf | \
		grep -v '^#' | sed 's,^.*=\"\(.*\)\",\1,')"

}

######
# routines for manipulating ${DCCC_ENV_FILE}

dccc_install_env() {
	[ -f ${DCCC_OLD_ENV} ] && mv ${DCCC_OLD_ENV} ${DCCC_ENV_FILE}
	[ -f ${DCCC_ENV_FILE} ] && return
	einfo "Creating ${DCCC_ENV_FILE}..."
	cat <<_EOF_ > ${DCCC_ENV_FILE} || \
		dccc_exit "Unable to create ${DCCC_ENV_FILE}..."
# This file is managed by distcc-config; use it to change these settings.
# DISTCC_VERBOSE is not set
# DISTCC_LOG is not set
# DCCC_PATH is not set
_EOF_
}

dccc_show_env() {
	grep -v '^#' ${DCCC_ENV_FILE} | sed -e 's,^,export ,'
}

dccc_test_env() {
	dccc_show_env | grep "$1" | tail -n1 | sed -e "s,${1}=,,"
}

dccc_load_defaults() {
	rm -f ${DCCC_ENV_FILE}
	dccc_install_env
}

dccc_set_env() {
	local xxENV="${1}"
	shift
	dccc_install_env
	mv -f ${DCCC_ENV_FILE} ${DCCC_ENV_FILE}.tmp
	if [ -n "${*}" ]; then
		einfo "Setting ${xxENV}=\"${*}\""
	else
		einfo "Clearing ${xxENV}"
	fi
	# redirect the following block to create new file
	{
		egrep -v "${xxENV}[= ]" ${DCCC_ENV_FILE}.tmp
		if [ -n "${*}" ]; then
			echo "${xxENV}=\"${*}\""
		else
			echo "# ${xxENV} is not set" 
		fi 
	} >> ${DCCC_ENV_FILE}
	rm -f ${DCCC_ENV_FILE}.tmp
}
dccc_regen_env() {
	env-update
	if [ -z "${DCCC_NO_WARN}" ]; then
	  einfo "If you want to use these new settings in an existing shell,"
	  einfo "you need to 'source /etc/profile' to get the changes."
	fi
}

dccc_get_env() {
	if [ -f ${DCCC_ENV_FILE} ]; then
		local xxENV="$(grep ${1} ${DCCC_ENV_FILE} | \
			grep -v '^#' | tail -n1)"
		echo ${xxENV#*=} | sed -e 's,^",,;s,"$,,'
	elif [ -n "${2}" ]; then
		echo "${2}"
	fi
}

dccc_set_hosts() {
	echo "${*}" > $DCCC_HOSTS_FILE
}
dccc_get_hosts() {
	cat $DCCC_HOSTS_FILE
}

dccc_set_verbose() {
	dccc_set_env DISTCC_VERBOSE ${1}
	dccc_regen_env
}
dccc_get_verbose() {
	dccc_get_env DISTCC_VERBOSE
}

dccc_set_log() {
	dccc_set_env DISTCC_LOG ${1}
	dccc_regen_env
}
dccc_get_log() {
	dccc_get_env DISTCC_LOG
}

dccc_set_j() {
	local j="$(echo ${1} | sed -e 's,[^0-9],,g')"
	[ -z "${j}" ] && \
		dccc_exit "$0: invalid -j option (must be a number)"
	dccc_set_env MAKEOPTS "-j${j}"
	dccc_regen_env
}
dccc_get_j() {
	dccc_get_env MAKEOPTS
}

####
# main install routine

dccc_install() {
	local xxCHOST
	dccc_install_user
	dccc_links install ""
	for f in make.conf make.globals make.profile/make.defaults
	do
		xxCHOST="$(dccc_guess_chost /etc/${f})"
		if [ -n "${xxCHOST}" ]; then
			dccc_links install "${xxCHOST}"
			break
		fi
	done

	dccc_install_env
}


###
# main routine

# helper checks that user has privs
must_be_root() {
	if ! is_super_user
	then
		[ -n "${1}" -a "${1}" = "${2}" ] && return
		dccc_exit "$0 $1 must be run by root"
	fi
}


# The --no-profile-warning option is meant to be used with
#   the following helper function (add to ~/.bashrc)
#
# distcc-config() {
#   command distcc-config --no-profile-warning "$@" && \
#	source /etc/profile
# }

if [ "${1}" = "--no-profile-warning" ]; then
	DCCC_NO_WARN=1
	shift
fi

case "${1}" in
	--get-* )
		eval "dccc_$(echo ${1} | sed -e 's/^--//;s/-/_/g')"
		;;
	--set-* )
		must_be_root "--set-hosts" "${1}"
		SET_FUNC="$(echo ${1} | sed -e 's/^--//;s/-/_/g')"
		shift
		[ "${#}" -eq 0 ] && dccc_exit "argument required"
		eval "dccc_${SET_FUNC} ${*}"
		;;
	--has-path )
		dccc_test_env DCCC_PATH
		;;
	--add-path )
		must_be_root
		dccc_set_env DCCC_PATH "/usr/lib/distcc/bin"
		dccc_regen_env
		if [ -z "${DCCC_NO_WARN}" ]; then
			einfo "You must then set PATH=\"${DCCC_PATH}/\${PATH}\""
		fi
		;;
	--no-path )
		must_be_root
		dccc_set_env DCCC_PATH ""
		dccc_regen_env
		;;
	--show-env )
		dccc_show_env
		;;
	--load-defaults )
		must_be_root 
		dccc_load_defaults
		;;
	--install )
		must_be_root 
		dccc_install
		;;
	--install-user )
		must_be_root 
		dccc_install_user
		;;
	--install-links )
		must_be_root 
		dccc_links install "${2}"
		;;
	--remove-links )
		must_be_root 
		dccc_links remove "${2}"
		;;
	* )
		echo "usage: ${0} --set-hosts DISTCC_HOSTS | --get-hosts"
		echo "       ${0} --set-verbose { 0 | 1 }   | --get-verbose"
		echo "       ${0} --set-log FILE  | --get-log" 
		echo "       ${0} --add-path      | --no-path"
#		echo "       ${0} --install-links | --remove-links } [ CHOST ]"
		exit 1
		;;
esac