-
Notifications
You must be signed in to change notification settings - Fork 13
/
termux-system
executable file
·214 lines (134 loc) · 3.73 KB
/
termux-system
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
#!/bin/bash
# dependencies /////////////////////////////////////////////////////////////////
if [[ -z $(command -v frobulator) ]]
then
if [[ $(id -u -n) = "root" ]]
then
SUDO_HOME=/root
USER="${SUDO_USER}"
HOME=/home/"${USER}"
fi
if [[ -z $(command -v curl) ]]
then
yes | apt-get install curl
fi
if [ ! -d "${HOME}"/.local/bin ]
then
mkdir -p "${HOME}"/.local/bin
fi
curl -s -L get.frbltr.app > "${HOME}"/.local/bin/frobulator
chmod +x "${HOME}"/.local/bin/frobulator
fi
. "${HOME}"/.local/bin/frobulator
# script ///////////////////////////////////////////////////////////////////////
script=$(basename -- "${BASH_SOURCE[0]}")
# version //////////////////////////////////////////////////////////////////////
version="05-29-2024"
# usage ////////////////////////////////////////////////////////////////////////
# prompt ///////////////////////////////////////////////////////////////////////
console.script "Setting up ${script#*-}"
# variables ////////////////////////////////////////////////////////////////////
# defaults /////////////////////////////////////////////////////////////////////
# functions ////////////////////////////////////////////////////////////////////
add_environment () {
# generate environment '$PATH'
# set path:
# in order of retreival
PATH=""
# container
[ -d "${PREFIX}"/cnt/usr/local/sbin ] && PATH+="/usr/local/sbin:"
[ -d "${PREFIX}"/cnt/usr/local/bin ] && PATH+="/usr/local/bin:"
[ -d "${PREFIX}"/cnt/usr/sbin ] && PATH+="/usr/sbin:"
[ -d "${PREFIX}"/cnt/usr/sbin ] && PATH+="/usr/bin:"
[ -d "${PREFIX}"/cnt/sbin ] && PATH+="/sbin:"
[ -d "${PREFIX}"/cnt/bin ] && PATH+="/bin:"
# termux
[ -d "${PREFIX}"/sbin ] && PATH+="${PREFIX}/sbin:"
[ -d "${PREFIX}"/bin ] && PATH+="${PREFIX}/bin:"
# android
[ -d /system/sbin ] && PATH+="/system/sbin:"
[ -d /system/bin ] && PATH+="/system/bin:"
# set environment
PATH="${PATH}"
cat <<- FILE > "${PREFIX}"/cnt/etc/environment
PATH=${PATH}
PREFIX=${PREFIX}
FILE
}
add_groups () {
# register android groups to container
# set IFS
IFS=' '
# read android system IDs
read uid gid groups <<< $(id)
uid=${uid/uid=}
gid=${gid/gid=}
groups=${groups/groups=}
# set IFS
IFS=','
# parse existing groups
read -r -a groups_list <<< "${groups}"
for line in "${groups_list[@]}"
do
line=${line/(/ }
line=${line/)}
# set IFS
IFS=' '
# transfer unregistered IDs
read group_number group_name <<< ${line}
if [ -f "${PREFIX}"/cnt/etc/group ]
then
echo "${group_name}:x:${group_number}:" >> "${PREFIX}"/cnt/etc/group
fi
if [ -f "${PREFIX}"/cnt/etc/gshadow ]
then
echo "${group_name}:x:${group_number}:" >> "${PREFIX}"/cnt/etc/gshadow
fi
done
# reset IFS
IFS=''
}
add_network () {
# generate network files
# hostname
cat <<- 'FILE' > "${PREFIX}"/cnt/etc/hostname
${HOSTNAME}
FILE
# hosts
cat <<- 'FILE' > "${PREFIX}"/cnt/etc/hosts
# IPv4 #
127.0.0.1 localhost.localdomain
127.0.0.1 localhost
# IPv6 #
::1 localhost.localdomain
::1 localhost
::1 ip6-localhost
::1 ip6-loopbak
fe00::0 ip6-localnet
fe00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
FILE
# nameserver
cat <<- 'FILE' > "${PREFIX}"/cnt/etc/resolv.conf
nameserver 1.1.1.1
nameserver 1.0.0.1
FILE
}
add_preload () {
# generate libgcc/libc location and add to dynamic linker for preload
preload_library=$(find "${PREFIX}"/cnt/usr/lib -type f -iname "libgcc_s.so.1")
# set preload
cat <<- FILE > "${PREFIX}"/cnt/etc/ld.so.preload
${preload_library}
FILE
}
# generate environment variables
add_environment
# generate missing groups
add_groups
# generate network
add_network
# generate preload entries
add_preload