1 | #!/bin/bash
|
---|
2 |
|
---|
3 | # Copyright 2016 Christian 'Alloc' Illy
|
---|
4 | #
|
---|
5 | # Licensed under the Apache License, Version 2.0 (the "License");
|
---|
6 | # you may not use this file except in compliance with the License.
|
---|
7 | # You may obtain a copy of the License at
|
---|
8 | #
|
---|
9 | # http://www.apache.org/licenses/LICENSE-2.0
|
---|
10 | #
|
---|
11 | # Unless required by applicable law or agreed to in writing, software
|
---|
12 | # distributed under the License is distributed on an "AS IS" BASIS,
|
---|
13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
14 | # See the License for the specific language governing permissions and
|
---|
15 | # limitations under the License.
|
---|
16 |
|
---|
17 |
|
---|
18 | # Provides common functions for 7dtd-scripts. Not intended to be run directly.
|
---|
19 |
|
---|
20 | # Check if the script is run as root (exit otherwise) and load global config
|
---|
21 | checkRootLoadConf() {
|
---|
22 | if [ `id -u` -ne 0 ]; then
|
---|
23 | echo "This script has to be run as root!"
|
---|
24 | exit 10
|
---|
25 | fi
|
---|
26 | . /etc/7dtd.conf
|
---|
27 | }
|
---|
28 |
|
---|
29 | # Get the config path for the given instance
|
---|
30 | # Params:
|
---|
31 | # 1: Instance name
|
---|
32 | # Returns:
|
---|
33 | # Config path for instance
|
---|
34 | getInstancePath() {
|
---|
35 | echo $SDTD_BASE/instances/$1
|
---|
36 | }
|
---|
37 |
|
---|
38 | # Check if the given instance name is valid (no blanks, no special chars,
|
---|
39 | # only letters, digits, underscore, hyphen -> [A-Za-z0-9_\-])
|
---|
40 | # Params:
|
---|
41 | # 1: Instance name
|
---|
42 | # Returns:
|
---|
43 | # 0/1 instance not valid/valid
|
---|
44 | isValidInstanceName() {
|
---|
45 | if [[ "$1" =~ ^[A-Za-z0-9_\-]+$ ]]; then
|
---|
46 | echo 1
|
---|
47 | else
|
---|
48 | echo 0
|
---|
49 | fi
|
---|
50 | }
|
---|
51 |
|
---|
52 | # Check if the given instance name is an existing instance
|
---|
53 | # Params:
|
---|
54 | # 1: Instance name
|
---|
55 | # Returns:
|
---|
56 | # 0/1 instance not valid/valid
|
---|
57 | isValidInstance() {
|
---|
58 | if [ ! -z "$1" ]; then
|
---|
59 | if [ $(isValidInstanceName "$1") -eq 1 ]; then
|
---|
60 | if [ -d $(getInstancePath "$1") ]; then
|
---|
61 | if [ -f $(getInstancePath "$1")/config.xml ]; then
|
---|
62 | echo 1
|
---|
63 | return
|
---|
64 | fi
|
---|
65 | fi
|
---|
66 | fi
|
---|
67 | fi
|
---|
68 | echo 0
|
---|
69 | }
|
---|
70 |
|
---|
71 | # Check if the given instance is currently running
|
---|
72 | # Params:
|
---|
73 | # 1: Instance name
|
---|
74 | # Returns:
|
---|
75 | # 0 = not running
|
---|
76 | # 1 = running
|
---|
77 | isRunning() {
|
---|
78 | $SSD --status --pidfile $(getInstancePath $1)/7dtd.pid
|
---|
79 | if [ $? -eq 0 ]; then
|
---|
80 | echo 1
|
---|
81 | else
|
---|
82 | echo 0
|
---|
83 | fi
|
---|
84 | }
|
---|
85 |
|
---|
86 | # Get list of defined instances
|
---|
87 | # Returns:
|
---|
88 | # List of instances
|
---|
89 | getInstanceList() {
|
---|
90 | local IF
|
---|
91 | for IF in $SDTD_BASE/instances/*; do
|
---|
92 | local I=`basename $IF`
|
---|
93 | if [ $(isValidInstance $I) -eq 1 ]; then
|
---|
94 | echo $I
|
---|
95 | fi
|
---|
96 | done
|
---|
97 | }
|
---|
98 |
|
---|
99 | # Get the PID of the instance if it is running, 0 otherwise
|
---|
100 | # Params:
|
---|
101 | # 1: Instance name
|
---|
102 | # Returns:
|
---|
103 | # 0 if not running
|
---|
104 | # PID otherwise
|
---|
105 | getInstancePID() {
|
---|
106 | if [ $(isRunning $1) -eq 1 ]; then
|
---|
107 | cat $(getInstancePath $1)/7dtd.pid
|
---|
108 | else
|
---|
109 | echo 0
|
---|
110 | fi
|
---|
111 | }
|
---|
112 |
|
---|
113 | # Get the installed branch name
|
---|
114 | # Returns:
|
---|
115 | # "public" if no engine installed or no appmanifest found or buildid could not be read
|
---|
116 | # Branch name
|
---|
117 | getLocalBranch() {
|
---|
118 | local APPMANIFEST=$(find $SDTD_BASE/engine -type f -name "appmanifest_294420.acf")
|
---|
119 | local LOCAL="public"
|
---|
120 | if [ -f "$APPMANIFEST" ]; then
|
---|
121 | LOCAL=$(grep betakey "$APPMANIFEST" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3)
|
---|
122 | if [[ -z $LOCAL ]]; then
|
---|
123 | LOCAL="public"
|
---|
124 | else
|
---|
125 | echo $LOCAL
|
---|
126 | return
|
---|
127 | fi
|
---|
128 | fi
|
---|
129 | echo $LOCAL
|
---|
130 | }
|
---|
131 |
|
---|
132 | # Get the local engine version number (i.e. build id)
|
---|
133 | # Returns:
|
---|
134 | # 0 if no engine installed or no appmanifest found or buildid could not be read
|
---|
135 | # Build Id otherwise
|
---|
136 | getLocalEngineVersion() {
|
---|
137 | local APPMANIFEST=$(find $SDTD_BASE/engine -type f -name "appmanifest_294420.acf")
|
---|
138 | local LOCAL=0
|
---|
139 | if [ -f "$APPMANIFEST" ]; then
|
---|
140 | LOCAL=$(grep buildid "$APPMANIFEST" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3)
|
---|
141 | if [ $(isANumber "$LOCAL") -eq 0 ]; then
|
---|
142 | LOCAL=0
|
---|
143 | fi
|
---|
144 | fi
|
---|
145 | echo $LOCAL
|
---|
146 | }
|
---|
147 |
|
---|
148 | # Get the local engine update time
|
---|
149 | # Returns:
|
---|
150 | # 0 if no engine installed or no appmanifest found or buildid could not be read
|
---|
151 | # Update time otherwise
|
---|
152 | getLocalEngineUpdateTime() {
|
---|
153 | local APPMANIFEST=$(find $SDTD_BASE/engine -type f -name "appmanifest_294420.acf")
|
---|
154 | local LOCAL=0
|
---|
155 | if [ -f "$APPMANIFEST" ]; then
|
---|
156 | LOCAL=$(grep LastUpdated "$APPMANIFEST" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3)
|
---|
157 | if [ $(isANumber "$LOCAL") -eq 0 ]; then
|
---|
158 | LOCAL=0
|
---|
159 | else
|
---|
160 | date --date="@${LOCAL}" "+%Y-%m-%d %H:%M:%S"
|
---|
161 | return
|
---|
162 | fi
|
---|
163 | fi
|
---|
164 | echo $LOCAL
|
---|
165 | }
|
---|
166 |
|
---|
167 | # Check if a given port range (baseport, baseport+1, baseport+2 each udp)
|
---|
168 | # is already in use by any other instance
|
---|
169 | # Params:
|
---|
170 | # 1: Baseport
|
---|
171 | # 2: Current instance (ignored)
|
---|
172 | # Returns:
|
---|
173 | # 0/1 not in use/in use
|
---|
174 | checkGamePortUsed() {
|
---|
175 | local PORTMIN=$1
|
---|
176 | local PORTMAX=$(( $1 + 2 ))
|
---|
177 | local I
|
---|
178 | for I in $(getInstanceList); do
|
---|
179 | if [ "$2" != "$I" ]; then
|
---|
180 | local CURPORTMIN=$(getConfigValue $I "ServerPort")
|
---|
181 | local CURPORTMAX=$(( $CURPORTMIN + 2 ))
|
---|
182 | if [ $PORTMAX -ge $CURPORTMIN -a $PORTMIN -le $CURPORTMAX ]; then
|
---|
183 | echo 1
|
---|
184 | return
|
---|
185 | fi
|
---|
186 | fi
|
---|
187 | done
|
---|
188 | echo 0
|
---|
189 | }
|
---|
190 |
|
---|
191 | # Check if a given TCP port is already in use by any instance (either by control
|
---|
192 | # panel or telnet)
|
---|
193 | # Params:
|
---|
194 | # 1: Port
|
---|
195 | # Returns:
|
---|
196 | # 0/1 not in use/in use
|
---|
197 | checkTCPPortUsed() {
|
---|
198 | local I
|
---|
199 | for I in $(getInstanceList); do
|
---|
200 | if [ "$2" != "$I" ]; then
|
---|
201 | local CURENABLED=$(getConfigValue $I "TelnetEnabled")
|
---|
202 | local CURPORT=$(getConfigValue $I "TelnetPort")
|
---|
203 | if [ "$CURENABLED" = "true" -a $CURPORT -eq $1 ]; then
|
---|
204 | echo 1
|
---|
205 | return
|
---|
206 | fi
|
---|
207 | CURENABLED=$(getConfigValue $I "ControlPanelEnabled")
|
---|
208 | CURPORT=$(getConfigValue $I "ControlPanelPort")
|
---|
209 | if [ "$CURENABLED" = "true" -a $CURPORT -eq $1 ]; then
|
---|
210 | echo 1
|
---|
211 | return
|
---|
212 | fi
|
---|
213 | fi
|
---|
214 | done
|
---|
215 | echo 0
|
---|
216 | }
|
---|
217 |
|
---|
218 | # Send a single command to the telnet port
|
---|
219 | # Params:
|
---|
220 | # 1: Instance name
|
---|
221 | # 2: Command
|
---|
222 | # 3: (Optional) Timeout in sec, defaulting to 1
|
---|
223 | # Returns:
|
---|
224 | # String of telnet output
|
---|
225 | telnetCommand() {
|
---|
226 | local TEL_ENABLED=$(getConfigValue $1 TelnetEnabled)
|
---|
227 | local TEL_PORT=$(getConfigValue $1 TelnetPort)
|
---|
228 | local TEL_PASS=$(getConfigValue $1 TelnetPassword)
|
---|
229 | if [ "$TEL_ENABLED" = "true" ]; then
|
---|
230 | local TEMPFILE=$(mktemp)
|
---|
231 | rm -f $TEMPFILE
|
---|
232 | mkfifo $TEMPFILE
|
---|
233 | exec 3<> $TEMPFILE
|
---|
234 | nc 127.0.0.1 $TEL_PORT <&3 &
|
---|
235 | local NCPID=$!
|
---|
236 | disown
|
---|
237 | if [ -n "$TEL_PASS" ]; then
|
---|
238 | printf "$TEL_PASS\n$2\n" >&3
|
---|
239 | else
|
---|
240 | printf "$2\n" >&3
|
---|
241 | fi
|
---|
242 | sleep ${3:-1}
|
---|
243 | printf "exit\n" >&3
|
---|
244 | sleep 0.2
|
---|
245 | kill -9 $NCPID > /dev/null 2>&1
|
---|
246 | exec 3>&-
|
---|
247 | rm -f $TEMPFILE
|
---|
248 | else
|
---|
249 | echo "Telnet not enabled."
|
---|
250 | fi
|
---|
251 | }
|
---|
252 |
|
---|
253 | # Get all hook files for the given hook-name
|
---|
254 | # Params:
|
---|
255 | # 1: Hook name
|
---|
256 | # 2: Instance name
|
---|
257 | # Returns:
|
---|
258 | # Names of hook files
|
---|
259 | getHooksFor() {
|
---|
260 | if [ -n "$2" ]; then
|
---|
261 | if [ -d $(getInstancePath $2)/hooks/$1 ]; then
|
---|
262 | local H
|
---|
263 | for H in $(getInstancePath $2)/hooks/$1/*.sh; do
|
---|
264 | echo "$H"
|
---|
265 | done
|
---|
266 | fi
|
---|
267 | fi
|
---|
268 | if [ -d $SDTD_BASE/hooks/$1 ]; then
|
---|
269 | local H
|
---|
270 | for H in $SDTD_BASE/hooks/$1/*.sh; do
|
---|
271 | echo "$H"
|
---|
272 | done
|
---|
273 | fi
|
---|
274 | }
|
---|
275 |
|
---|
276 | # Lowercase passed string
|
---|
277 | # Params:
|
---|
278 | # 1: String
|
---|
279 | # Returns:
|
---|
280 | # Lowercased string
|
---|
281 | lowercase() {
|
---|
282 | echo "${1}" | tr "[:upper:]" "[:lower:]"
|
---|
283 | }
|
---|
284 |
|
---|
285 | # Prepare passed string as part of camelcase, i.e. first char upper case, others
|
---|
286 | # lowercase
|
---|
287 | # Params:
|
---|
288 | # 1: String
|
---|
289 | # Returns:
|
---|
290 | # Transformed string
|
---|
291 | camelcasePrep() {
|
---|
292 | echo $(echo "${1:0:1}" | tr "[:lower:]" "[:upper:]")$(echo "${1:1}" | tr "[:upper:]" "[:lower:]")
|
---|
293 | }
|
---|
294 |
|
---|
295 | # Check if given value is a (integer) number
|
---|
296 | # Params:
|
---|
297 | # 1: Value
|
---|
298 | # Returns:
|
---|
299 | # 0/1 for NaN / is a number
|
---|
300 | isANumber() {
|
---|
301 | if [[ $1 =~ ^[0-9]+$ ]] ; then
|
---|
302 | echo "1"
|
---|
303 | else
|
---|
304 | echo "0"
|
---|
305 | fi
|
---|
306 | }
|
---|
307 |
|
---|
308 | # Check if given value is a boolean (true/false, yes/no, y/n)
|
---|
309 | # Params:
|
---|
310 | # 1: Value
|
---|
311 | # Returns:
|
---|
312 | # 0/1
|
---|
313 | isABool() {
|
---|
314 | local LOW=$(lowercase "$1")
|
---|
315 | if [ "$LOW" = "false" -o "$LOW" = "true"\
|
---|
316 | -o "$LOW" = "yes" -o "$LOW" = "y"\
|
---|
317 | -o "$LOW" = "no" -o "$LOW" = "n" ]; then
|
---|
318 | echo 1
|
---|
319 | else
|
---|
320 | echo 0
|
---|
321 | fi
|
---|
322 | }
|
---|
323 |
|
---|
324 | # Convert the given value to a boolean 0/1
|
---|
325 | # Params:
|
---|
326 | # 1: Value
|
---|
327 | # Returns:
|
---|
328 | # 0/1 as false/true
|
---|
329 | getBool() {
|
---|
330 | if [ $(isABool "$1") -eq 0 ]; then
|
---|
331 | echo 0
|
---|
332 | else
|
---|
333 | local LOW=$(lowercase "$1")
|
---|
334 | if [ "$LOW" = "true" -o "$LOW" = "yes" -o "$LOW" = "y" ]; then
|
---|
335 | echo 1
|
---|
336 | else
|
---|
337 | echo 0
|
---|
338 | fi
|
---|
339 | fi
|
---|
340 | }
|
---|
341 |
|
---|
342 | listCommands() {
|
---|
343 | local C
|
---|
344 | for C in $(declare -F | cut -d\ -f3 | grep "^sdtdCommand"\
|
---|
345 | | grep -v "Help$"\
|
---|
346 | | grep -v "Description$"\
|
---|
347 | | grep -v "Expects$"); do
|
---|
348 | local CMD=$(lowercase "${C#sdtdCommand}")
|
---|
349 | printf "%s " "$CMD"
|
---|
350 | done
|
---|
351 | }
|
---|
352 |
|
---|
353 | . /usr/local/lib/7dtd/help.sh
|
---|
354 | . /usr/local/lib/7dtd/serverconfig.sh
|
---|
355 | for M in /usr/local/lib/7dtd/commands/*.sh; do
|
---|
356 | . $M
|
---|
357 | done
|
---|
358 |
|
---|
359 | checkRootLoadConf
|
---|
360 |
|
---|