-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathlive-config.sh
executable file
·365 lines (303 loc) · 10.3 KB
/
live-config.sh
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
#!/bin/bash
# Setting up Webconverger system as root user
. /etc/webc/functions.sh
. /etc/webc/webc.conf
sub_literal() {
awk -v str="$1" -v rep="$2" '
BEGIN {
len = length(str);
}
(i = index($0, str)) {
$0 = substr($0, 1, i-1) rep substr($0, i + len);
}
1'
}
# Make /.git available for debugging and development
mount_git () {
root_overlay=/lib/live/mount/overlay
git_overlay=/lib/live/mount/git-overlay
# Sanity checks
[ -d "$git_repo" ] || return
[ -d "$root_overlay" ] || return
[ -n "$current_git_revision" ] || return
mkdir /.git
mount --bind "$git_repo" /.git
# Try to make /.git read-write, by simply remounting it, or by
# using a second aufs. Note that mount will return success even
# if the filesystem is still ro, so we test for writeability
# using touch.
if ! (mount -o remount,rw /.git && touch /.git 2> /dev/null)
then
# Sanity check
if ! grep aufs /proc/filesystems > /dev/null; then
umount /.git
return
fi
# Overlay a second aufs over /.git. Even though
# changes will be lost on reboots, you can still make
# a change and push it out before the reboot. We can't
# include this in the main aufs mount, since aufs
# doesn't handle (bind)mounts in subdirectories.
mkdir "$git_overlay"
mount -o rw,noatime,mode=755 -t tmpfs tmpfs "$git_overlay"
umount /.git
mount -t aufs -o noatime,dirs=$git_overlay=rw:$git_repo=rr aufs "/.git"
fi
# Make sure that HEAD corresponds to the commit
# mounted by git-fs
#
# We don't do a normal (--mixed) reset, since
# that also scans the entire working copy to
# update the cached info in the index (which is
# slow on git-fs / aufs). Instead, we reset HEAD
# and the index separately.
git --git-dir "/.git" reset --soft "$current_git_revision"
# Reset the index
git --git-dir "/.git" read-tree HEAD
# Make sure that aufs doesn't forget about filename to inode
# mappings, since that confuses git. git-fs should also be
# mounted with the noforget option.
mount -o remount,xino=${root_overlay}/.aufs.xino /
}
process_options()
{
cmdline_has timezone && /etc/webc/timezone # process timezone=
# Create a Webconverger preferences to store dynamic FF options
cat > "$prefs" <<EOF
// This file is autogenerated based on cmdline options by live-config.sh. Do
// not edit this file, your changes will be overwritten on the next reboot!
EOF
# If printing support is not installed, prevent printing dialogs from being
# shown
if ! dpkg -s cups 2>/dev/null >/dev/null; then
echo '// Print support not included, disable print dialogs' >> "$prefs"
echo 'pref("print.always_print_silent", true);' >> "$prefs"
echo 'pref("print.show_print_progress", false);' >> "$prefs"
fi
for x in $( cmdline ); do
case $x in
debug)
echo "webc ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
mount_git
;;
showprintbutton)
// https://github.com/Webconverger/webconverger-addon/issues/17
echo 'pref("extensions.webconverger.showprintbutton", true);' >> "$prefs"
;;
nobrand)
echo 'pref("extensions.webconverger.nobrand", true);' >> "$prefs"
;;
widescrollbars)
ln -s /etc/webc/extensions/scrollbars@kaply.com /opt/firefox/browser/extensions/
;;
grabdrag)
ln -s /etc/webc/extensions/grabdrag '/opt/firefox/browser/extensions/{477c4c36-24eb-11da-94d4-00e08161165f}'
;;
support)
echo '*/5 * * * * root /sbin/support' > /etc/cron.d/webc-support
;;
chrome=*)
chrome=${x#chrome=}
dir="/etc/webc/extensions/${chrome}"
test -d $dir && {
test -e "$link" && rm -f "$link"
logs "switching chrome to ${chrome}"
ln -s "$dir" "$link"
}
;;
printer=*)
systemctl unmask cups.service
/etc/init.d/cups start
IFS=, read -ra P <<< "${x#printer=}"
P[0]=$(/bin/busybox httpd -d ${P[0]})
P[1]=$(/bin/busybox httpd -d ${P[1]})
P[2]=$(/bin/busybox httpd -d ${P[2]})
logs "Printer name: ${P[0]}"
logs "Printer device URI: ${P[1]}"
logs "Printer driver URI: ${P[2]}"
if [[ "${P[2]}" = http:* ]]
then
t=$(tempfile)
if curl -L -f "${P[2]}" > $t
then
lpadmin -p "${P[0]}" -E -v "${P[1]}" -i "$t" &&
logs "Setup printer with PPD: lpadmin -p ${P[0]} -E -v ${P[1]} -i $t"
else
logs "Failed to download ${P[2]}, using generic.ppd"
lpadmin -p "${P[0]}" -E -v "${P[1]}" -m drv:///sample.drv/generic.ppd
fi
else
lpadmin -p "${P[0]}" -E -v "${P[1]}" -m "${P[2]}" &&
logs "Setup printer with ${P[2]}: lpadmin -p ${P[0]} -E -v ${P[1]} -m ${P[2]}"
fi
;;
hosts=*)
hosts="$( /bin/busybox httpd -d ${x#hosts=} )"
wget --timeout=5 "${hosts}" -O /etc/hosts
if echo $hosts | grep -q whitelist
then
: > /etc/resolv.conf
fi
;;
opensearch=*)
opensearch="$( /bin/busybox httpd -d ${x#opensearch=} )"
wget --timeout=5 "${opensearch}" -O /opt/firefox/distribution/searchplugins/common/DDG.xml
;;
filter=*)
# Not to be used in conjuction with hosts=
# dns= trumps filter
filter="$( /bin/busybox httpd -d ${x#filter=} )"
IFS=',' read -ra F <<< "$filter"
test "${F[1]}" && IP="${F[1]}"
if ! test "${F[0]}" -a "$IP"
then
logs "ERROR: filter URL failed to be specified: ${F[0]},$IP"
else
logs Setting up filter: ${F[0]} with $IP
curl -s "${F[0]}" | xzcat | awk -v ip="$IP" '{ print "address=/" $1 "/" ip }' >> /etc/dnsmasq.conf
test -s /etc/resolv.dnsmasq.conf || mv /etc/resolv.conf /etc/resolv.dnsmasq.conf
echo "nameserver 127.0.0.1" > /etc/resolv.conf
systemctl start dnsmasq.service
fi
;;
whitelist=*)
whitelist="$( /bin/busybox httpd -d ${x#whitelist=} )"
echo 'pref("extensions.webconverger.whitelist", "'$whitelist'");' >> "$prefs"
logs "Set whitelist: $whitelist"
;;
tabswitch=*)
secondinterval="$( /bin/busybox httpd -d ${x#tabswitch=} )"
if test "$secondinterval" -gt 0
then
echo 'pref("extensions.webconverger.tabswitchinterval", '$secondinterval');' >> "$prefs"
logs "Set tabswitch: $secondinterval"
fi
;;
prefs=*)
prefs="$( /bin/busybox httpd -d ${x#prefs=} )"
echo "pref(\"autoadmin.global_config_url\",\"$prefs\");" >> /opt/firefox/mozilla.cfg
logs "Set autoconfig: $prefs"
;;
iptables=*)
options=$( /bin/busybox httpd -d ${x#iptables=} )
if iptables $options
then
logs "OK iptables: $options"
else
logs "NOK iptables: $options"
fi
;;
log=*)
log=${x#log=}
echo "*.* @${log}" >> /etc/rsyslog.conf
logs "Logging to ${log}"
systemctl restart rsyslog.service
;;
locale=*)
locale=${x#locale=}
for i in /opt/firefox/langpacks/langpack-$locale*; do ln -s $i /opt/firefox/browser/extensions/$(basename $i); done
echo "pref(\"general.useragent.locale\", \"${locale}\");" >> "$prefs"
echo "pref(\"intl.accept_languages\", \"data:text/plain,intl.accept_languages=${locale}, en\");" >> "$prefs"
;;
cron=*)
logs CRON: $x
cron="$( echo ${x#cron=} | sed 's,%20, ,g' )"
cat <<EOC > /etc/cron.d/webc-$RANDOM
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
$cron
EOC
;;
homepage=*)
mac=$( mac_address )
homepage="$( echo ${x#homepage=} | sed 's,%20, ,g' | sed "s,MACID,$mac,g" )"
echo "browser.startup.homepage=$(echo $homepage | awk '{print $1}')" > /opt/firefox/browser/defaults/preferences/homepage.properties
;;
esac
done
# Make sure /home has noexec and nodev, for extra security.
# First, just try to remount, in case /home is already a separate filesystem
# (when using persistence, for example).
mount -o remount,noexec,nodev /home 2>/dev/null || (
# Turn /home into a tmpfs. We use a trick here: after the mount, this
# subshell will still have the old /home as its current directory, so
# we can still read the files in the original /home. By passing -C to
# the second tar invocation, it does a chdir, which causes it to end
# up in the new filesystem. This enables us to easily copy the
# existing files from /home into the new tmpfs.
cd /home
mount -o noexec,nodev -t tmpfs tmpfs /home
tar -c . | tar -x -C /home
)
stamp=$( git show $webc_version | grep '^Date' )
test -f ${link}/content/about.xhtml.bak || cp ${link}/content/about.xhtml ${link}/content/about.xhtml.bak
cat ${link}/content/about.xhtml.bak |
sub_literal 'OS not running' "${webc_version} ${stamp}" |
sub_literal 'var aboutwebc = "";' "var aboutwebc = \"$(echo ${install_qa_url} | sed 's,&,&,g')\";" > ${link}/content/about.xhtml
if cmdline_has dns
then
cat /etc/resolv.conf | sed '/nameserver/d' > /etc/resolv.conf.tmp
for i in $(cmdline_get dns)
do
IFS=,; for dns in $i
do
echo nameserver $dns
done
done >> /etc/resolv.conf.tmp
mv -f /etc/resolv.conf /etc/resolv.conf.old
mv -f /etc/resolv.conf.tmp /etc/resolv.conf
chmod 644 /etc/resolv.conf
fi
} # end of process_options
update_cmdline() {
# Update $device
. "/etc/webc/webc.conf"
if curl -f -o /etc/webc/cmdline.tmp --retry 5 "$config_url?V=$webc_version&D=$device&K=$kernel"
then
# curl has a bug where it doesn't write an empty file
touch /etc/webc/cmdline.tmp
# This file can be empty in the case of an invalidated configuration
mv /etc/webc/cmdline.tmp "$config_runtime"
logs "CONFIG: Download applied $(md5sum $config_runtime)"
else
logs "CONFIG: Failed to download from $config_url"
fi
}
# If we have a "cached" version of the configuration on disk,
# copy that to /etc/webc, so we can compare the new version with
# it to detect changes and/or use it in case the new download
# fails.
if test -s "$config_cached"
then
cp "$config_cached" "$config_runtime"
logs "CONFIG: Applied cache $(md5sum $config_runtime)"
else
touch "$config_runtime"
logs "CONFIG: No cache"
fi
# If there is a local config we need to re-run wireless now we have config in right place
/etc/webc/wireless
wait_for $live_config_pipe 2>/dev/null
. "/etc/webc/webc.conf"
cmdline_has debug && set -x
# Try to make ${live_image} writable
mount -o remount,rw ${live_image}
cmdline_has noconfig || update_cmdline
process_options
echo ACK > $live_config_pipe
# if writable
if touch ${live_image}
then
# Cache cmdline in case subsequent boots can't reach $config_url
cp "$config_runtime" "$config_cached"
logs "CONFIG: cached $(md5sum $config_cached) $(tr '\n' ' ' < $config_cached)"
# Kicks off an upgrade
mkfifo $upgrade_pipe
else
# ${live_image} could not be made writable (e.g. live version: booting
# from an iso fs), so just use the new config downloaded
# and skip all the other stuff below
logs "CONFIG: Not a writable boot medium. Could not cache configuration nor upgrade."
fi
# live-config should restart via systemd and get blocked
# until $live_config_pipe is re-created