-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbackuptool.sh
More file actions
executable file
·406 lines (336 loc) · 11.5 KB
/
backuptool.sh
File metadata and controls
executable file
·406 lines (336 loc) · 11.5 KB
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
#!/bin/bash
##############################################################
## BACKUP / RESTORE Tool for IDT ##
##############################################################
function checkMandatory {
if [[ "$command" != "backup" && "$command" != "restore" ]]; then
echo -e "$redColor--command is mandatory"
isExit="TRUE"
fi
if [[ "$command" == "backup" && "$pathList" == "" && "$backupDescriptor" == "" ]] ; then
echo -e "$redColor--pathList or --backupDescriptor is mandatory"
isExit="TRUE"
fi
if [[ "$command" == "backup" && "$pathList" != "" && "$backupDescriptor" != "" ]] ;then
echo -e "$redColor--pathList and --backupDescriptor cannot be set together on backup"
isExit="TRUE"
fi
if [[ "$backupDescriptor" == "" && "$label" == "" ]] ; then
echo -e "$redColor--label is mandatory"
isExit="TRUE"
fi
if [[ "$backupDescriptor" == "" && "$version" == "" ]] ;then
echo -e "$redColor--version is mandatory"
isExit="TRUE"
fi
if [[ "$backupDescriptor" == "" && "$backupDir" == "" ]] ;then
echo -e "$redColor--backupDir is mandatory"
isExit="TRUE"
fi
if [[ "$forceOverwrite" != "true" && "$forceOverwrite" != "false" ]] ;then
echo -e "$redColor--forceOverwrite is mandatory"
isExit="TRUE"
fi
if [[ "$isExit" == "TRUE" ]] ; then
echo -e "$resetColor"
usage
exit 1
fi
}
function usage {
echo -e "$whiteColor$boldColor Usage: $boldColor$scriptName $greenColor[OPTION]$whiteColor$boldColor"
echo -e " Backup / Restore tool for IDT$resetColor"
echo -e ""
echo -e "$greenColor --command $whiteColor Mode of operation. command can be $greenColor[backup]$whiteColor or $greenColor[restore]"
echo -e "$greenColor --label $whiteColor Backup or restore label (i.e. component) - will be used in filename"
echo -e "$greenColor --version $whiteColor Defines the version of the backup set. (mandatory for both backup and restore)"
echo -e "$greenColor --pathList $whiteColor One or more path(s) or file(s) to backup (used only with backup,"
echo -e "$greenColor $whiteColor cannot be set together with backupDescriptor)"
echo -e "$greenColor --backupDescriptor $whiteColor External file with list of one or more path(s) to backup"
echo -e "$greenColor $whiteColor (used only with backup, cannot be set together with pathList)"
echo -e "$greenColor --backupDir $whiteColor Backup directory - location for both backups and restores"
echo -e "$greenColor --hostLabel $whiteColor (optional) Hostname label to determine backup location"
echo -e "$greenColor --excludeList$whiteColor One or more path(s) or file(s) to exclude from backup (used only with backup,"
echo -e "$greenColor $whiteColor cannot be set together with backupDescriptor)"
echo -e "$greenColor $whiteColor (i.e. host or node - Default is local hostname = `hostname`)"
echo -e "$greenColor --forceOverwrite $whiteColor (optional) value can be $greenColor[true]$whiteColor or $greenColor[false]$whiteColor."
echo -e "$greenColor $whiteColor Determine if backup will overwrite in case it exists, default=[false]"
echo -e "$greenColor --colorMode $whiteColor (optional) value can be $greenColor[true]$whiteColor or $greenColor[false]$whiteColor, default=[true]"
echo -e "$resetColor"
}
function checkFileExist {
if [ ! -f $1 ]
then
echo "file $1 does not exist - aborting!!"
exit 1
fi
}
function checkConnectivity {
if [[ "$1" != "" ]]
then
PBE=$1
if ping -c1 -q $PBE > /dev/null; then TEMP=0
else
echo No connection for $PBE .. - aborting!!
exit 1
fi
fi
}
function runCommand {
case "$command" in
backup)
if [[ "$backupDescriptor" != "" ]]; then
descriptorValidator
fi
displayParameters
backup
;;
restore)
if [[ "$backupDescriptor" != "" ]]; then
descriptorValidator
fi
displayParameters
restore
;;
*)
echo -e "$redColor** ERROR command [$command] is not supported yet$resetColor"
exit 1
esac
}
function displayParameters {
echo "====[IDT Backup\Restore tool]===="
echo "[Tool mode=$command]"
echo "[hostLabel=$hostLabel]"
echo "[$command label=$label]"
echo "[version=$version]"
if [[ "$command" == "backup" ]];then echo "[pathList=$pathList]";fi
echo "[backupDescriptor=$backupDescriptor]"
echo "[forceOverwrite=$forceOverwrite]"
echo "[excludeList=$excludeList]"
echo ""
}
function descriptorValidator {
if [ ! -f $backupDescriptor ];then
echo -e "(25) $redColor** ERROR Backup descriptor file $backupDescriptor not found! quitting...$resetColor"
exit 25
fi
. $backupDescriptor
commandResult=`echo $?`
if [[ "$commandResult" != "0" ]]; then
echo -e "($commandResult) $redColor** ERROR - loading descriptor file failed! check syntax. quitting...$resetColor"
exit $commandResult
fi
}
function backup {
start_time=`date +%s`
backupFileName=$backupDir/backup-$label-$hostLabel-$version.tar.gz
echo Building backup file name [$backupFileName]
if [ -f $backupFileName ]; then
echo -e "$greenColor** WARNING Backup file already exist$resetColor"
if [[ "$forceOverwrite" == "false" ]]; then
echo -e "(30) forceOverwrite is $greenColor[$forceOverwrite]$resetColor - quitting..."
exit 30
fi
echo "forceOverwrite is [$forceOverwrite] - backup file will be overwrite"
fi
checkTargetDirs
echo Checking if target directory exist
if [ ! -d $backupDir ]; then
echo "Backup directory [$backupDir] does not exist, creating..."
mkdir -p $backupDir
fi
echo Checking if backup file already exist on target [$backupDir]
calculateBackupSize
echo "Starting backup ..."
backupOnBackground
if [[ "$commandResult" != "0" ]]; then
echo -e "($commandResult) $redColor** ERROR - backup process failed with error $commandResult (tar error), deleting file $backupFileName and quitting...$resetColor"
rm -f $backupFileName
exit $commandResult
fi
backupFileSize=`ls -ltrh $backupFileName | awk '{print $5}'`
echo Backup completed successfully - File size is $backupFileSize
end_time=`date +%s`
time_elapsed=$(($end_time-$start_time))
echo "Total $command time : $time_elapsed seconds."
}
function restore {
start_time=`date +%s`
backupFileName=$backupDir/backup-$label-$hostLabel-$version.tar.gz
echo "Backup file: [$backupFileName]"
printf "Checking if backup exists ... "
if [ ! -f $backupFileName ]; then
printf " not found!\n"
echo -e "(10) $redColor** ERROR backup file $backupFileName was not found! quitting...$resetColor"
exit 10
fi
printf " found!\n"
printf "Calculating space needed to restore backup ..."
spaceNeeded=$((`gzip -l $backupFileName |tail -1|awk '{print $2}'` / 1024))
printf "[done]\n"
printf "calculating available disk space on target directory..."
diskSpace=`df -k $backupDir|tail -1|awk '{print $3}'`
printf "[done]\n"
echo "Total space needed for restore is `printf "%'d\n" $spaceNeeded` KB, available disk space `printf "%'d\n" $diskSpace` KB"
if [ $spaceNeeded -gt $diskSpace ];then
echo -e "(31) $redColor** ERROR no enough disk space for restore! quitting...$resetColor"
exit 31
fi
restoreOnBackground
if [[ "$commandResult" != "0" ]]; then
echo -e "($commandResult) $redColor** ERROR - restore process failed with error $commandResult (tar error) quitting...$resetColor"
exit $commandResult
fi
end_time=`date +%s`
time_elapsed=$(($end_time-$start_time))
echo "$command completed successfully, total time : $time_elapsed seconds."
return
}
function calculateBackupSize {
printf "calculating max backup size..."
maxBackupSize=`du -cs $pathList|tail -1|awk '{print $1}'`
printf "[done]\n"
printf "calculating available disk space on target directory..."
diskSpace=`df -k $backupDir|tail -1|awk '{print $3}'`
printf "[done]\n"
echo "Total space needed for backup is `printf "%'d\n" $maxBackupSize` KB, available space on target directory [$backupDir] is `printf "%'d\n" $diskSpace` KB"
if [ $maxBackupSize -gt $diskSpace ];then
echo -e "(40) $redColor** ERROR no enough disk space for backup! quitting...$resetColor"
exit 40
fi
return
}
function checkFreeSpace {
return
}
function backupOnBackground {
trap 'echo -e "\nKill signal detected - Removing backup file $backupFileName and shutting down background activity - PID:$pid";kill -9 $pid >> /dev/null 2&>1;rm -f $backupFileName;exit 200' SIGINT SIGTERM
dotNum=0
tar cfpPz $backupFileName $pathList &
pid=$!
while sleep 1; do
isProcessRunning=`ps |grep "$pid " > /dev/null && echo "TRUE" || echo "FALSE"`
if [[ "$isProcessRunning" == "FALSE" ]]; then
wait $pid
commandResult=`echo $?`
break
fi
printf "."
(( dotNum++ ))
if [ $dotNum -eq 5 ]; then
backupFileSize=`ls -ltrh $backupFileName | awk '{print $5}'`
printf "[$backupFileSize]"
dotNum=0
fi
done
printf "[DONE]\n"
}
function restoreOnBackground {
trap 'echo "Kill signal detected - shutting down background activity - PID:$pid";kill -9 $pid >> /dev/null 2&>1;exit 200' SIGINT SIGTERM
echo "Start restoring ..."
commandResult=`echo $?`
dotNum=0
dotLine=1
tar xfpPz $backupFileName &
pid=$!
while sleep 1; do
isProcessRunning=`ps |grep "$pid " > /dev/null && echo "TRUE" || echo "FALSE"`
if [[ "$isProcessRunning" == "FALSE" ]]; then
wait $pid
commandResult=`echo $?`
break
fi
printf "."
(( dotNum++ ))
if [ $dotNum -eq $dotLine ]; then
#printf "\n"
(( dotLine++ ))
if [ $dotLine -eq 10 ]; then
dotLine=1
fi
dotNum=0
fi
done
printf "[DONE]\n"
}
function checkTargetDirs {
echo screening unexisting filenames and directories from pathList...
screenedItems=0
verifiedList=()
verifiedListString=""
IFS=' ' read -a array <<< "$pathList"
for path in "${array[@]}";do
if [ -d $path ] || [ -f $path ]; then
verifiedList+=($path)
verifiedListString="$path $verifiedListString"
verifiedListString=`echo $verifiedListString | sed -e 's/ *$//'`
else
echo "** WARNING $path does not exist! screening from pathList"
(( screenedItems++ ))
fi
done
arraySize=${#verifiedList[@]}
if [ $arraySize -lt 1 ];then
echo -e "(26) $redColor** ERROR there is nothing left to backup! quitting ...$resetColor"
exit 26
fi
if [ $screenedItems -eq 0 ];then
echo "All item(s) exist. noting to screen"
else
let "totalItems=screenedItems+arraySize"
echo "[$screenedItems/$totalItems] Items were screened from pathList"
fi
pathList=$verifiedListString
echo New pathList = [$pathList]
return
}
function isColorSupport {
if [[ "$colorMode" != "false" ]];then
boldColor="\e[1m"
greenColor="\033[1;32m"
redColor="\033[1;31m"
whiteColor="\033[0;37m"
resetColor="\033[0;00m"
else
boldColor=""
greenColor=""
redColor=""
whiteColor=""
resetColor=""
fi
}
scriptName="$(basename "$(test -L "$0" && readlink "$0" || echo "$0")")"
colorSupport=`tput colors`
pathList=""
label=""
version=""
backupDescriptor=""
command=""
hostLabel=`hostname`
forceOverwrite="false"
OPTS=`getopt -o axby -l backupDir:,label:,forceOverwrite:,hostLabel:,version:,pathList:,backupDescriptor:,command:,colorMode:,excludeList: -- "$@"`
if [ $? != 0 ]
then
echo "Syntax Error"
fi
#####
eval set -- "$OPTS"
while true ; do
case "$1" in
--backupDir) backupDir=$2; shift 2;;
--label) label=$2; shift 2;;
--hostLabel) hostLabel=$2; shift 2;;
--version) version=$2; shift 2;;
--pathList) pathList=$2; shift 2;;
--backupDescriptor) backupDescriptor=$2; shift 2;;
--forceOverwrite) forceOverwrite=$2; shift 2;;
--excludeList) excludeList=$2; shift 2;;
--command) command=$2; shift 2;;
--colorMode) colorMode=$2; shift 2;;
--) shift; break;;
esac
done
isColorSupport
checkMandatory
runCommand
exit