-
Notifications
You must be signed in to change notification settings - Fork 15
/
ra.sh
executable file
·678 lines (593 loc) · 12.1 KB
/
ra.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
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
#!/bin/sh
#
# Copyright (c) 2004, 2007 Regents of The University of Michigan.
# All Rights Reserved. See COPYRIGHT.
#
# Radmind Assistant shell script (rash)
# Basic client side functions include:
#
# trip
# update
# create
# auto
# force
#
# Command line options:
# -c without checksums
# Config file stuff:
#
# server
# -w # -x, -y, -z
# lcreate -l -U
# -c sha1
KFILE="_RADMIND_COMMANDFILE"
SERVER="_RADMIND_HOST"
TLSLEVEL="_RADMIND_AUTHLEVEL"
PORT="6222"
EDITOR=${EDITOR:-vi}
PAGER=${PAGER:-cat}
USER=${SUDO_USER:-$USER}
TMPDIR="${TMPDIR:=/tmp}"
DEFAULTS="/etc/defaults/radmind"
FSDIFFROOT="."
DEFAULTWORKDIR="/"
FLAG="_RADMIND_DIR/client/.RadmindRunning"
CHECKEDOUT="_RADMIND_DIR/client/.CheckedOut"
MAILDOMAIN="_RADMIND_MAIL_DOMAIN"
ECHO="_RADMIND_ECHO_PATH"
VERSION=_RADMIND_VERSION
# variable containing all network-related flags (-w, -h, -p, etc.)
NETOPTS=
PREAPPLY="_RADMIND_PREAPPLY"
POSTAPPLY="_RADMIND_POSTAPPLY"
PATH=/usr/local/bin:/usr/bin:/bin; export PATH
RETRY=10
MKTEMP="_RADMIND_MKTEMP"
TEMPFILES=FALSE
RASHTMP="${TMPDIR}/.ra.$$"
if [ -f "${MKTEMP}" ]; then
RASHTMP=`${MKTEMP} -qd "${TMPDIR}/.ra.$$.XXXXXX"`
if [ $? -ne 0 ]; then
$ECHO "mktemp failed"
exit 1
fi
fi
LTMP="${RASHTMP}/lapply.out"
FTMP="${RASHTMP}/fsdiff.out"
# different systems use different default dirs
if [ ! -f "${DEFAULTS}" ]; then
DEFAULTS="/etc/default/radmind"
if [ ! -f "${DEFAULTS}" ]; then
DEFAULTS="/etc/radmind.defaults"
fi
fi
Yn() {
$ECHO -n "$*" "[Yn] "
read ans
if [ $? -ne 0 ]; then
return 0
fi
if [ -z "$ans" -o X"$ans" = Xy -o X"$ans" = XY -o X"$ans" = Xyes ]; then
return 1
fi
return 0
}
checkedout() {
if [ -s ${CHECKEDOUT} ]; then
OWNER=`cat ${CHECKEDOUT}`
return 1
fi
return 0
}
usage() {
$ECHO "Usage: $0 [ -cIltV ] [ -% | -q ] [ -C \"generate\" | -C <checksum> ] [ -D working-directory ] [ -h server ] [ -p port ] [ -w authlevel ] { trip | update | create | auto | force | checkout | checkin } [ /path/or/file ]" >&2
exit 1
}
cleanup() {
if [ "$TEMPFILES" = FALSE ]; then
rm -fr "${RASHTMP}"
fi
}
cleanup_and_exit() {
cleanup
exit 1
}
dopreapply() {
if [ -d ${PREAPPLY} ]; then
SCRIPTS=`find ${PREAPPLY} -perm -u+x \! -type d | sort`
if [ "${SCRIPTS}" ]; then
for script in ${SCRIPTS}; do
${script} "$1"
done
fi
fi
}
dopostapply() {
if [ -d ${POSTAPPLY} ]; then
SCRIPTS=`find ${POSTAPPLY} -perm -u+x \! -type d | sort`
if [ "${SCRIPTS}" ]; then
for script in ${SCRIPTS}; do
${script} "$1"
done
fi
fi
}
cksum_generate() {
if [ -n "$FSDIFF_CHECKSUM" ]; then
FTMP_CHECKSUM=`openssl sha1 ${FTMP} | awk '{ print $2 }'`
fi
}
cksum_compare() {
if [ -n "$FSDIFF_CHECKSUM" -a \
"$FSDIFF_CHECKSUM" != "generate" -a \
"$FSDIFF_CHECKSUM" != "$FTMP_CHECKSUM" ]; then
return 1
fi
return 0
}
cksum_print() {
if [ -n "$FSDIFF_CHECKSUM" ]; then
$ECHO "Difference transcript checksum: $FTMP_CHECKSUM"
fi
}
cksum_mismatch() {
if [ -n "$FSDIFF_CHECKSUM" ]; then
$ECHO
$ECHO "**** Difference transcript checksum mismatch!"
$ECHO "**** Expected: $FSDIFF_CHECKSUM"
$ECHO "**** Actual: $FTMP_CHECKSUM"
#ECHO
fi
}
update() {
opt="$1"
kopt=
apply=ask
can_edit=no
checkedout
if [ $? -eq 1 ]; then
$ECHO "Checked out by ${OWNER}"
if [ x"$opt" = x"interactive" -a x"$USER" = x"$OWNER" ]; then
Yn "Continue with update?"
if [ $? -eq 0 ]; then
exit 1
fi
else
exit 1
fi
fi
if [ x"$opt" = x"interactive" ]; then
kopt="-n"
fi
ktcheck ${kopt} ${NETOPTS} -c sha1
case "$?" in
0)
if [ x"$opt" = x"hook" -a ! -f "${FLAG}" ]; then
cleanup
exit 0
fi
;;
1)
if [ x"$opt" = x"interactive" ]; then
Yn "Update command file and/or transcripts?"
if [ $? -eq 1 ]; then
ktcheck ${NETOPTS} -c sha1
RC=$?
if [ $RC -ne 1 ]; then
$ECHO Nothing to update
cleanup
exit $RC
fi
fi
fi
;;
*)
cleanup
exit $?
;;
esac
fsdiff -A ${CASE} ${FPROGRESS} ${CHECKSUM} -o ${FTMP} ${FSDIFFROOT}
if [ $? -ne 0 ]; then
cleanup
exit 1
fi
if [ ! -s ${FTMP} ]; then
$ECHO Nothing to apply.
cleanup
exit 0
fi
if [ x"$opt" = x"interactive" ]; then
${PAGER} ${FTMP}
infocmp >/dev/null 2>&1
if [ $? -eq 0 ]; then
can_edit=yes
fi
fi
if [ x"$opt" = x"interactive" -a -d "${PREAPPLY}" \
-a ! -z "`ls ${PREAPPLY} 2>/dev/null`" ]; then
Yn "Run pre-apply scripts on difference transcript?"
if [ $? -eq 1 ]; then
dopreapply ${FTMP}
fi
elif [ x"$opt" != x"interactive" ]; then
dopreapply ${FTMP}
fi
if [ x"${opt}" = x"interactive" ]; then
while [ 1 ]; do
cksum_generate
if ! cksum_compare; then
cksum_mismatch
fi
if [ x"${can_edit}" = x"yes" ]; then
$ECHO -n "(e)dit difference transcript, "
fi
$ECHO -n "(a)pply or (c)ancel? "
read ans
if [ $? -ne 0 ]; then
cleanup_and_exit
fi
case "${ans}" in
a|A)
break
;;
c|C)
$ECHO
$ECHO Update cancelled
cleanup
exit 0
;;
e|E)
if [ x"${can_edit}" = x"yes" ]; then
${EDITOR} ${FTMP}
fi
;;
*)
;;
esac
done
fi
lapply ${CASE} ${PROGRESS} ${NETOPTS} ${CHECKSUM} ${FTMP}
case "$?" in
0) cksum_print
;;
*) if [ x"$opt" = x"hook" ]; then
$ECHO -n "Applying changes failed, trying again "
$ECHO "in ${RETRY} seconds..."
sleep ${RETRY}
RETRY=${RETRY}0
$ECHO %OPENDRAWER
$ECHO %BEGINPOLE
else
cleanup
fi
return 1
;;
esac
if [ x"$opt" = x"interactive" -a -d "${POSTAPPLY}" \
-a ! -z "`ls ${POSTAPPLY} 2>/dev/null`" ]; then
Yn "Run post-apply scripts on difference transcript?"
if [ $? -eq 1 ]; then
dopostapply ${FTMP}
fi
elif [ x"$opt" != x"interactive" ]; then
dopostapply ${FTMP}
fi
cleanup
}
# if a radmind defaults file exists, source it.
# options in the defaults file can be overridden
# with the options below.
if [ -f "${DEFAULTS}" ]; then
. "${DEFAULTS}"
fi
while getopts %C:cD:h:Ilp:qr:tU:Vw: opt; do
case $opt in
%) PROGRESS="-%"
FPROGRESS="-%"
;;
q) PROGRESS="-q"
;;
C) FSDIFF_CHECKSUM="$OPTARG"
if ! type openssl >/dev/null 2>&1; then
$ECHO "-C requires openssl, but no openssl found in PATH $PATH"
cleanup_and_exit
fi
;;
c) CHECKSUM="-csha1"
;;
D) WORKDIR="$OPTARG"
;;
h) SERVER="$OPTARG"
;;
I) CASE="-I"
;;
l) USERAUTH="-l"
;;
p) PORT="$OPTARG"
;;
r) FSDIFFROOT="$OPTARG"
;;
t) TEMPFILES="TRUE"
;;
U) USER="$OPTARG"
USERNAME="$OPTARG"
;;
V) $ECHO ${VERSION}
exit 0
;;
w) TLSLEVEL="$OPTARG"
;;
*) usage
;;
esac
done
shift `expr $OPTIND - 1`
if [ $# -eq 2 ]; then
FSDIFFROOT=$2
elif [ $# -ne 1 ]; then
usage
fi
cd "${WORKDIR:-$DEFAULTWORKDIR}"
if [ ! -d "${RASHTMP}" ]; then
mkdir -m 700 "${RASHTMP}"
if [ $? -ne 0 ]; then
$ECHO "Cannot create temporary directory $RASHTMP"
exit 1
fi
fi
# Trap meaningful signals
trap cleanup_and_exit HUP INT PIPE QUIT TERM TRAP XCPU XFSZ
# combine network-related flags for ktcheck, lcreate, lapply
NETOPTS="-w ${TLSLEVEL} -h ${SERVER} -p ${PORT}"
case "$1" in
checkout)
if [ ${USER} = root ]; then
$ECHO -n "Username? [root] "
read ans
USER=${ans:-root}
fi
checkedout
if [ $? -eq 1 ]; then
$ECHO "Already checked out by ${OWNER}"
if [ x${OWNER} = x${USER} ]; then
exit 1
fi
Yn "Force checkout?"
if [ $? -eq 0 ]; then
exit 1
fi
$ECHO ${USER} has removed your checkout on `hostname` | mail -s `hostname`": Checkout broken" ${OWNER}@${MAILDOMAIN:-`hostname`}
fi
$ECHO ${USER} > ${CHECKEDOUT}
;;
checkin)
checkedout
if [ $? -eq 0 ]; then
$ECHO "Not checked out"
exit 1
fi
if [ ${USER} = root ]; then
$ECHO -n "Username? [root] "
read ans
USER=${ans:-root}
fi
if [ x${OWNER} != x${USER} ]; then
$ECHO "Currently checked out by ${OWNER}"
exit 1
fi
rm ${CHECKEDOUT}
;;
update|up)
update interactive
cleanup
;;
create)
# Since create does not modify the system, no need for checkedout
ktcheck ${CASE} ${NETOPTS} -n -c sha1
case "$?" in
0) ;;
1) Yn "Update command file and/or transcripts?"
if [ $? -eq 1 ]; then
ktcheck ${NETOPTS} -c sha1
RC=$?
if [ $RC -ne 1 ]; then
$ECHO Nothing to update
cleanup
exit $RC
fi
fi
;;
*) cleanup
exit $?
;;
esac
$ECHO -n "Enter new transcript name [`hostname | cut -d. -f1`-`date +%Y%m%d`-${USER}.T]: "
read TNAME
if [ -z "${TNAME}" ]; then
TNAME=`hostname | cut -d. -f1`-`date +%Y%m%d`-${USER}.T
fi
FTMP="${RASHTMP}/${TNAME}"
fsdiff -C ${CASE} ${FPROGRESS} ${CHECKSUM} -o ${FTMP} ${FSDIFFROOT}
if [ $? -ne 0 ]; then
cleanup
exit 1;
fi
if [ ! -s ${FTMP} ]; then
$ECHO Nothing to create.
cleanup
exit 1
fi
Yn "Edit transcript ${TNAME}?"
if [ $? -eq 1 ]; then
${EDITOR} ${FTMP}
fi
Yn "Store loadset ${TNAME}?"
if [ $? -eq 1 ]; then
if [ -n "${USERAUTH}" ]; then
if [ -z "${USERNAME}" ]; then
$ECHO -n "username: "
read USERNAME
fi
USERNAME="-U ${USERNAME}"
fi
lcreate ${PROGRESS} ${NETOPTS} ${USERAUTH} ${USERAUTH:+USERNAME} \
${CHECKSUM} ${FTMP}
if [ $? -ne 0 ]; then
cleanup
exit 1
fi
fi
cleanup
;;
trip)
if [ ! -f ${KFILE} ]; then
$ECHO Command file missing, skipping tripwire.
cleanup
exit 1
fi
# Since trip does not modify the system, no need for checkedout
ktcheck ${NETOPTS} -qn -c sha1
case "$?" in
0)
;;
1)
$ECHO Command file and/or transcripts are out of date.
;;
*)
cleanup
exit $?
;;
esac
fsdiff -C ${CASE} ${CHECKSUM} -o ${FTMP} ${FSDIFFROOT}
if [ $? -ne 0 ]; then
cleanup
exit 1
fi
if [ -s ${FTMP} ]; then
$ECHO Trip failure: `hostname`
cat ${FTMP}
cleanup
exit 0
fi
;;
auto)
checkedout
if [ $? -eq 1 ]; then
$ECHO "Checked out by ${OWNER}"
exit 1
fi
fsdiff -C ${CASE} ${CHECKSUM} -o ${FTMP} ${FSDIFFROOT}
if [ $? -ne 0 ]; then
$ECHO Auto failure: `hostname` fsdiff
cleanup
exit 1
fi
if [ -s ${FTMP} ]; then
$ECHO Auto failure: `hostname` trip
cat ${FTMP}
cleanup
exit 1
fi
# XXX - if this fails, do we loop, or just report error?
ktcheck ${NETOPTS} -q -c sha1
if [ $? -eq 1 ]; then
while true; do
fsdiff -A ${CASE} ${CHECKSUM} -o ${FTMP} ${FSDIFFROOT}
if [ $? -ne 0 ]; then
$ECHO Auto failure: `hostname`: fsdiff
cleanup
exit 1
fi
cksum_generate
if ! cksum_compare; then
$ECHO "Auto failure: `hostname`: difference cksum mismatch"
cksum_mismatch
cleanup_and_exit
fi
dopreapply ${FTMP}
if [ -s ${FTMP} ]; then
lapply ${NETOPTS} ${CASE} ${PROGRESS} \
-q ${CHECKSUM} ${FTMP} 2>&1 > ${LTMP}
case $? in
0)
$ECHO Auto update: `hostname`
cat ${FTMP}
cksum_print
dopostapply ${FTMP}
cleanup
break
;;
*)
if [ ${RETRY} -gt 10000 ]; then
$ECHO Auto failure: `hostname`
cat ${LTMP}
cleanup
exit 1
fi
$ECHO Auto failure: `hostname` retrying
cat ${LTMP}
sleep ${RETRY}
RETRY=${RETRY}0
ktcheck ${NETOPTS} -q -c sha1
;;
esac
else
$ECHO Nothing to apply.
cleanup
exit 0
fi
done
fi
;;
force)
checkedout
if [ $? -eq 1 ]; then
$ECHO "Checked out by ${OWNER}"
exit 1
fi
ktcheck ${NETOPTS} -c sha1
case "$?" in
0) ;;
1) ;;
*) cleanup
exit $?
;;
esac
fsdiff -A ${CASE} ${FPROGRESS} ${CHECKSUM} -o ${FTMP} ${FSDIFFROOT}
if [ $? -ne 0 ]; then
cleanup
exit 1
fi
if [ ! -s ${FTMP} ]; then
$ECHO Nothing to apply.
cleanup
exit 0
fi
cksum_generate
cksum_compare || cksum_mismatch
dopreapply ${FTMP}
lapply ${CASE} ${PROGRESS} ${NETOPTS} ${CHECKSUM} ${FTMP}
case "$?" in
0) cksum_print
;;
*) cleanup
exit $?
;;
esac
dopostapply ${FTMP}
cleanup
;;
hook)
update hook
rc=$?
while [ $rc -eq 1 ]; do
update hook
rc=$?
done
;;
*)
usage
;;
esac
cleanup
exit 0