-
Notifications
You must be signed in to change notification settings - Fork 25
/
init.sh
executable file
·295 lines (258 loc) · 9.34 KB
/
init.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
#!/bin/sh
PLUGIN_DIR='/external/plugin'
CONFIG_DIR='/external/cfg.d'
UCI_CONFIG_DIR='/etc/config'
INTERNAL_PLUGIN_DIR='/internal/plugin'
init_env() {
export LUCI_SYSROOT='/tmp/.luci'
export IPKG_INSTROOT=$LUCI_SYSROOT
export LD_LIBRARY_PATH="$LUCI_SYSROOT/usr/lib:$LD_LIBRARY_PATH"
export PATH="$LUCI_SYSROOT/bin:$LUCI_SYSROOT/sbin:$LUCI_SYSROOT/usr/sbin:$LUCI_SYSROOT/usr/bin:$PATH"
export LUA_PATH="$LUCI_SYSROOT/usr/lib/lua/?.lua;$LUCI_SYSROOT/usr/lib/lua/?/init.lua;;"
export LUA_CPATH="$LUCI_SYSROOT/usr/lib/lua/?.so;;"
export DYLD_LIBRARY_PATH="$LUCI_SYSROOT/usr/lib:$DYLD_LIBRARY_PATH"
}
log_info() {
echo -e "$(date +%Y-%m-%d\ %T) $1"
}
merge() {
src=$1
dst=$2
# 跳过以_开头的目录
[[ $(echo $src | awk -F'/' '{print $NF}') = "_*" ]] && return
log_info "Merging plugin $src.."
mkdir -p $dst
# 执行 preinst
[ -f "$src/preinst" ] && log_info "\tExecuting preinst.." && chmod +x $src/preinst && $src/preinst
#合并root
[ -d "$src/root" ] && cp -R $src/root/. $dst/ &&\
#合并config
# mkdir -p $dst/etc/config
if [ -d "$src/root/$UCI_CONFIG_DIR" ]; then
for cfg in $src/root/$UCI_CONFIG_DIR/*
do
if [ -f "$cfg" ]; then
cfg_name=$(echo $cfg | awk -F'/' '{print $NF}')
# [ ! -f $CONFIG_DIR/config/$cfg_name ] && cp $cfg $CONFIG_DIR/config/
[ ! -f $UCI_CONFIG_DIR/$cfg_name ] && cp $cfg $UCI_CONFIG_DIR/
elif [ -d "$cfg" ]; then
cfg_name=$(basename $cfg)
# [ ! -d $CONFIG_DIR/config/$cfg_name ] && cp -R $cfg $CONFIG_DIR/config/
[ ! -d $UCI_CONFIG_DIR/$cfg_name ] && cp -R $cfg $UCI_CONFIG_DIR/
fi
done
fi
# 合并 luasrc
mkdir -p $dst/usr/lib/lua/luci/
[ -d "$src/luasrc" ] && cp -R $src/luasrc/. $dst/usr/lib/lua/luci/
# 合并 htdocs
mkdir -p $dst/www/
[ -d "$src/htdocs" ] && cp -R $src/htdocs/. $dst/www/
# i18n
mkdir -p $dst/usr/lib/lua/luci/i18n/
if [ -d "$src/po" ]; then
for i18n in $src/po/*
do
for po in $i18n/*
do
[ -n "$(echo $po | grep -E '.po$')" ] && {
po_name=$(echo $po | awk -F'/' '{print $NF}' | awk -F'.' '{print $1}').$(echo $i18n | awk -F'/' '{print $NF}')
lang=$(echo $po_name | awk -F '[-.]' '{print $2}')
if [ $lang = "zh_Hans" ]; then
po_name="$(echo $po_name | awk -F '[-.]' '{print $1}').zh-cn"
elif [ $lang = "zh_Hant" ]; then
po_name="$(echo $po_name | awk -F '[-.]' '{print $1}').zn-tw"
elif [ $lang = "pt_BR" ]; then
po_name="$(echo $po_name | awk -F '[-.]' '{print $1}').pt-br"
elif [ $lang = "nb_NO" ]; then
po_name="$(echo $po_name | awk -F '[-.]' '{print $1}').nb"
elif [ $lang = "bn_BD" ]; then
po_name="$(echo $po_name | awk -F '[-.]' '{print $1}').bn"
fi
po2lmo $po $dst/usr/lib/lua/luci/i18n/$po_name.lmo
}
done
done
fi
# 安装 depends
[ -f "$src/depends.lst" ] && {
need_install=
installed_apk=$(apk info | sed ':a;N;s/\n/ /g;ta')
depends=$(cat $src/depends.lst)
for depend in $depends
do
[ -n "$(echo $depend | grep -E '^[^_]+')" ] && \
[ -z "$(echo $installed_apk | grep $depend)" ] && {
need_install="$need_install $depend"
}
done
[ -n "$need_install" ] && log_info "\tInstalling depends: $need_install .." && apk add $need_install
}
# 执行 postinst
[ -f "$src/postinst" ] && {
log_info "\tExecuting postinst.." && chmod +x $src/postinst && $src/postinst
} || {
# 如果没有 postinst 尝试执行 uci-defaults
[ -d $src/root/etc/uci-defaults/ ] && {
for script in $src/root/etc/uci-defaults/*
do
log_info "\tExecuting uci-defaults script.." && chmod +x $script && $script
done
}
}
}
merge_plugins() {
directory=$1
for d in $(find $directory/* -maxdepth 0 -type d 2&>/dev/null | sort -g)
do
local valid_d=$(echo $d | awk -F'/' '{print $NF}' | grep -E "^[^_]+")
# 跳过_开头的插件
[ -n "$valid_d" ] && {
local valid_d2=$(find $d -iname Makefile -type f -exec dirname {} ';' | sort -g)
# 插件中存在 makefile, 则认定其为有效插件
[ -n "$valid_d2" ] && {
for plugin in $valid_d2
do
merge $plugin $LUCI_SYSROOT
done
}
}
done
}
merge_luci_root() {
log_info "MERGING LUCI ROOT.."
mkdir -p $LUCI_SYSROOT
mkdir -p $PLUGIN_DIR
mkdir -p $CONFIG_DIR/config
rm -fr $LUCI_SYSROOT/*
log_info "MERGING INTERNAL PLUGIN.."
merge_plugins $INTERNAL_PLUGIN_DIR
log_info "MERGING EXTERNAL PLUGIN.."
merge_plugins $PLUGIN_DIR
chmod +x $LUCI_SYSROOT/etc/init.d/*
log_info "Linking rc.common.."
ln -sf $LUCI_SYSROOT/etc/rc.common /etc/rc.common
log_info "Linking /www.."
rm -fr /www 2&>/dev/null
ln -sf $LUCI_SYSROOT/www /www
log_info "Creating nobody session.."
mkdir -p /tmp/luci-sessions
echo '{"acls":{"access-group":{"unauthenticated":["read"]},"ubus":{"luci":["getFeatures"],"session":["access","login"]}},"data":{},"atime":-1,"session":"00000000000000000000000000000000"}' > /tmp/luci-sessions/00000000000000000000000000000000 && \
chmod 700 /tmp/luci-sessions && \
chmod 600 /tmp/luci-sessions/00000000000000000000000000000000
}
start_uhttpd() {
log_info "Starting crond.."
kill -9 $(pidof crond) &> /dev/null
crond
log_info "Starting uhttpd.."
kill -9 $(pidof uhttpd) &> /dev/null
rm -fr /tmp/luci-modulecache &> /dev/null
rm -fr /tmp/luci-indexcache* &> /dev/null
$LUCI_SYSROOT/usr/sbin/uhttpd -p 80 -t 1200 -l /socket -L /$LUCI_SYSROOT/www/cgi-bin/socket_forwarder -h $LUCI_SYSROOT/www -f &
}
link_config() {
log_info "Linking config.."
rm -fr $UCI_CONFIG_DIR 2&>/dev/null
mkdir -p $CONFIG_DIR/config
ln -sf $CONFIG_DIR/config $UCI_CONFIG_DIR
log_info "Linking rc.local.."
[ ! -f "$CONFIG_DIR/rc.local" ] && touch $CONFIG_DIR/rc.local
ln -sf $CONFIG_DIR/rc.local /etc/rc.local
log_info "Linking crontab.."
[ ! -f "$CONFIG_DIR/crontab" ] && {
[ -f /etc/crontabs/root -a ! -L /etc/crontabs/root ] && mv /etc/crontabs/root $CONFIG_DIR/crontab || touch $CONFIG_DIR/crontab
} || {
[ ! -L /etc/crontabs/root ] && mv /etc/crontabs/root /etc/crontabs/root.bak
}
ln -sf $CONFIG_DIR/crontab /etc/crontabs/root
[ ! -d "$CONFIG_DIR/periodic" ] && {
[ -d /etc/periodic ] && mv /etc/periodic $CONFIG_DIR/periodic || mkdir -p $CONFIG_DIR/periodic
} || {
[ ! -L /etc/periodic ] && mv /etc/periodic /etc/periodic.bak
}
ln -sf $CONFIG_DIR/periodic /etc/periodic
log_info "Updating shadow.."
[ ! -f "$CONFIG_DIR/shadow" ] && cp /etc/shadow $CONFIG_DIR/shadow || cp $CONFIG_DIR/shadow /etc/shadow
}
run_rclocal() {
log_info "Handle Hostname.."
hostname=$(uci get system.@system[0].hostname)
echo "$hostname" > /proc/sys/kernel/hostname
log_info "Executing rc.local.."
chmod +x /etc/rc.local
/etc/rc.local
}
update_internal_plugin(){
log_info "Updating internal plugins.."
local tmp_dir="/tmp/plugin"
mkdir -p ${tmp_dir}
log_info "Updating dockerman.."
local dockerman="https://github.com/lisaac/luci-app-dockerman/archive/master.zip"
wget ${dockerman} -O ${tmp_dir}/dockerman.zip
unzip ${tmp_dir}/dockerman.zip "*/applications/luci-app-dockerman/*" -o -d ${tmp_dir}
log_info "Updating lib-docker.."
local libdocker="https://github.com/lisaac/luci-lib-docker/archive/master.zip"
wget ${libdocker} -O ${tmp_dir}/libdocker.zip
unzip ${tmp_dir}/libdocker.zip "*/collections/luci-lib-docker/*" -o -d ${tmp_dir}
log_info "Updating diskman.."
local diskman="https://github.com/lisaac/luci-app-diskman/archive/master.zip"
wget ${diskman} -O ${tmp_dir}/diskman.zip
unzip ${tmp_dir}/diskman.zip "*/applications/luci-app-diskman/*" -o -d ${tmp_dir}
# log_info "Updating podsamba.."
# local podsamba="https://github.com/lisaac/luci-app-podsamba/archive/master.zip"
# wget ${podsamba} -O ${tmp_dir}/podsamba.zip
# unzip ${tmp_dir}/podsamba.zip "*/applications/luci-app-podsamba/*" -o -d ${tmp_dir}
# log_info "Updating podminidlna.."
# local podminidlna="https://github.com/lisaac/luci-app-podminidlna/archive/master.zip"
# wget ${podminidlna} -O ${tmp_dir}/podminidlna.zip
# unzip ${tmp_dir}/podminidlna.zip "*/applications/luci-app-podminidlna/*" -o -d ${tmp_dir}
# log_info "Updating podclash.."
# local podclash="https://github.com/lisaac/luci-app-podclash/archive/main.zip"
# wget ${podclash} -O ${tmp_dir}/podclash.zip
# unzip ${tmp_dir}/podclash.zip "*/applications/luci-app-podclash/*" -o -d ${tmp_dir}
cp -R ${tmp_dir}/*/applications/* ${INTERNAL_PLUGIN_DIR}
cp -R ${tmp_dir}/*/collections/* ${INTERNAL_PLUGIN_DIR}
rm -fr ${tmp_dir}
}
case $1 in
env)
init_env 2>&1 | tee -a /tmp/daemon.log
;;
start)
init_env 2>&1 | tee -a /tmp/daemon.log
link_config 2>&1 | tee -a /tmp/daemon.log
merge_luci_root 2>&1 | tee -a /tmp/daemon.log
start_uhttpd 2>&1 | tee -a /tmp/daemon.log &
;;
stop)
init_env 2>&1 | tee -a /tmp/daemon.log
kill -9 $(pidof uhttpd) &> /dev/null;;
daemon)
init_env 2>&1 | tee -a /tmp/daemon.log
link_config 2>&1 | tee -a /tmp/daemon.log
merge_luci_root 2>&1 | tee -a /tmp/daemon.log
run_rclocal 2>&1 | tee -a /tmp/daemon.log
start_uhttpd 2>&1 | tee -a /tmp/daemon.log &
tail -f /dev/null;;
restart)
init_env 2>&1 | tee -a /tmp/daemon.log
link_config 2>&1 | tee -a /tmp/daemon.log
merge_luci_root 2>&1 | tee -a /tmp/daemon.log
start_uhttpd 2>&1 | tee -a /tmp/daemon.log &
;;
merge)
init_env 2>&1 | tee -a /tmp/daemon.log
merge 2>&1 | tee -a /tmp/daemon.log
;;
update)
init_env 2>&1 | tee -a /tmp/daemon.log
update_internal_plugin 2>&1 | tee -a /tmp/daemon.log
;;
*)
init_env 2>&1 | tee -a /tmp/daemon.log
link_config 2>&1 | tee -a /tmp/daemon.log
merge_luci_root 2>&1 | tee -a /tmp/daemon.log
start_uhttpd 2>&1 | tee -a /tmp/daemon.log &
;;
esac