-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkhdo
executable file
·327 lines (273 loc) · 4.4 KB
/
khdo
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
#!/bin/bash
#set -x
#####################################
#
# IBM Coporation
# Project kittyhawk
#
# khpipe a simple tool to mainpulate
# set of nodes acquired from khctl
#
#
#####################################
if [[ $BASH_VERSION != 3.1.* ]]; then shopt -s compat31; fi
declare -r KHPIPEFILEPREFIX=${KHPIPE_FILEPREFIX:-/tmp/$USER}
declare pipestagedatafile
declare -a pipedatalines
declare lines
declare line
declare -i i=0
declare -i initialstage=0
declare console
declare -a nodes
declare -a netids
declare -a interfaces
declare -a nodeinfo
usage()
{
local func=$1
if [[ -z $func ]]
then
echo "USAGE: ${0##*/} func args" >&2
grep '^function' $0
else
case "$func" in
'load')
;;
*)
usage
;;
esac
fi
}
processargs()
{
if [[ $# == 0 ]]
then
usage
exit -1
fi
dofunc=$1
}
# deprecated for backwards compatibility
write()
{
writecon $*
}
function writecon
{
data="$*"
if [[ -n "$data" ]]
then
echo "$data" | ssh -T -q $console
fi
}
function readcon
{
TERM=KHREAD exec ssh -ttt -q $console < /dev/null 2> /dev/null
}
function writefile
{
file=$1
if [[ -z "$file" ]]
then
echo "USAGE: $FUNCNAME: <file to send>"
return -1
fi
if [[ -r $file ]]
then
# dd if=$file bs=240 | ssh -T -q $console
(dd if=$file bs=240 && sleep 1) | ssh -T -q $console
fi
return 0
}
filesize()
{
if [[ -z "$1" ]]
then
echo "USAGE: FUNCNAME: <file>"
return -1
fi
stat -L -c "%s" $1
return $?
}
function loadfile
{
local addr="$1"
local file=$2
local -i size
if [[ -r $file ]]
then
size=$(filesize $file)
write "mrw $addr $size"
sleep 1
writefile $file
return 0
else
return -1
fi
}
function loadkernel
{
loadfile "\$loadaddr" $1
return 0
}
function loadramdisk
{
loadfile "\$ramfsaddr" $1
return 0
}
function cmd
{
# take care of stdout dispositiion
eval $1 \"$console\" \"${nodes[@]}\" \"${netids[@]}\" $outdirective
return 0
}
function concmd
{
# set -x
local cmd="$1"
if [[ -n "$cmd" ]]
then
cmd="${cmd//\%con\%/\$console}"
eval $cmd
return $?
fi
return 0
}
function peripcmd
{
# set -x
local cmd=$1
local ip
local n
cmd=${cmd//\%ip\%/\$ip}
for n in ${nodes[@]}
do
[[ ${nodeinfo[$n]} =~ "^([0-9]+) ([0-9]+) ([0-9.]+)" ]]
ip=${BASH_REMATCH[3]}
eval $cmd
done
}
function nodescmd
{
return 0
}
function netscmd
{
return 0
}
function interfacescmd
{
return 0
}
function pernodecmd
{
local cmd="$1"
local n
cmd="${cmd//\%node\%/\$n}"
for n in ${nodes[@]}
do
eval $cmd
done
return 0
}
function pernetcmd
{
local cmd="$1"
local n
local i
local -i j=0
cmd="${cmd//\%net\%/\$n}"
cmd="${cmd//\%if\%/\$i}"
while (( $j < ${#netids[@]} ))
do
i=${interfaces[$j]}
n=${netids[$j]}
eval $cmd
((j++))
done
return 0
}
function null
{
return 0
}
addpipeinfo()
{
if [[ -z $KHPIPEINFO ]]
then
KHPIPEINFO="$1:"
else
KHPIPEINFO="$KHPIPEINFO $*:"
fi
}
function parsepipeinfo
{
return 0
}
processargs "$@"
shift
(( i = -1 ))
while read line
do
(( i++ ))
if (( $i == 0 )) && [[ $line =~ "^KHPIPEINFO: .*" ]]
then
KHPIPEINFO="$line"
continue
fi
if (( $i == 0 )) && [[ ! $line =~ "^KHPIPEINFO: .*" ]]
then
(( initialstage++ ))
fi
pipedatalines[$i]="$line"
lines="$lines$line
"
if [[ "$line" =~ "^con.*" ]]
then
console="$line"
continue
fi
if [[ "$line" =~ "^network.*" ]]
then
interface=${line##*: }
interfaces=( ${interfaces[@]} $interface )
netid=${line%% :*}
netid=${netid#* }
# if [[ "$netid" = "External" ]]; then netid=1; fi
# if [[ "$netid" = "Internal" ]]; then netid=2; fi
netids=( ${netids[@]} $netid )
continue
fi
if [[ "$line" =~ "^nodeinfo: .*" ]]
then
n=${line##*: }
n=${n%% *}
nodeinfo[$n]=${line##*: }
fi
if [[ "$line" =~ "^nodes:.*" ]]
then
nodes=( ${nodes[@]} ${line#nodes: } )
break;
fi
done
# abort if passed parameter is not a valid control block
if [[ -z $nodes ]]; then exit -1; fi
if (( $initialstage == 1 ))
then
addpipeinfo "KHPIPEINFO"
else
# set -x
true
fi
parsepipeinfo "$KHPIPEINFO"
$dofunc "$@"
if (( $# == 0 ))
then
addpipeinfo "$dofunc"
else
addpipeinfo "$dofunc $@"
fi
#echo $KHPIPEINFO
#echo "$lines"