-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathkhpipe
More file actions
executable file
·317 lines (263 loc) · 4.17 KB
/
khpipe
File metadata and controls
executable file
·317 lines (263 loc) · 4.17 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
#!/bin/bash
set -x
#####################################
#
# IBM Coporation
# Project kittyhawk
#
# khpipe a simple tool to mainpulate
# set of nodes acquired from khctl
#
#
#####################################
declare -i buffered=1
declare -r KHPIPEFILEPREFIX=${KHPIPE_FILEPREFIX:-/tmp/$USER}
declare buffer
declare pipestagedatafile
declare -a pipedatalines
declare lines
declare line
declare -i i=0
declare -i initialstage=0
declare console
declare -a nodes
declare -a networks
declare -a interfaces
declare sshpid
declare conpipe
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
}
function sendfiles
{
if [[ -z "$@" ]]
then
echo "USAGE: $FUNCNAME: <file to send>"
return -1
fi
cat $@ > $PIPEDATA
return 0
}
filesize()
{
if [[ -z "$1" ]]
then
echo "USAGE: FUNCNAME: <file>"
return -1
fi
stat -c "%s" $1
}
function loadfile
{
local addr="$1"
local file=$2
local -i size
return 0
}
function loadkernel
{
loadfile "\$loadaddr" $1
return 0
}
function loadramdisk
{
loadfile "\$ramfsaddr" $1
return 0
}
function flushbuffer
{
if (( buffered == 1 ))
then
cat $buffer > $conpipe
return $?
fi
return 0
}
function createbuffer
{
local file=${KHPIPEFILEPREFIX}/khpipebuf.$$.$RANDOM
if ! mkdir -p ${KHPIPEFILEPREFIX}
then
echo "ERROR: could not create ${KHPIPEFILEPREFIX}" >&2
return -1
fi
if ! touch $file
then
echo "ERROR: could not create $buffer" >&2
return -1
fi
addpipeinfo "$file"
return 0
}
function resetbuffer
{
cat /dev/null > $buffer
return 0
}
function cmd
{
# take care of stdout dispositiion
eval $1 \"$console\" \"${nodes[@]}\" \"${networks[@]}\" $outdirective
return 0
}
function concmd
{
return 0
}
function nodescmd
{
return 0
}
function netscmd
{
return 0
}
function interfacescmd
{
return 0
}
function pernodecmd
{
return 0
}
function pernetcmd
{
return 0
}
function perinterfacecmd
{
return 0
}
function null
{
return 0
}
addpipeinfo()
{
if [[ -z $KHPIPEINFO ]]
then
KHPIPEINFO="$1:"
else
KHPIPEINFO="$KHPIPEINFO $1:"
fi
}
function parsepipeinfo
{
local info="$1"
info=${info%KHPIPEINFO: }
conpipe=${info##:.*}
sshpid=${conpipe%%* }
conpipe=${conpipe## *}
info=${info%*: }
buffer=${info##:.*}
if [[ $buffer = "NOBUFFER" ]]
then
buffer=""
buffered=0
else
buffered=1
fi
}
function createconpipe
{
local file=${KHPIPEFILEPREFIX}/khconpipe.$$.$RANDOM
if [[ -c $file ]]
then
rm -rf $file
fi
mknod $file p
cat $file | ssh $console >& /dev/null &
sshpid=$(jobs -p %%)
disown %%
conpipe="$file"
return 0
}
processargs "$@"
shift
(( i = -1 ))
while read line
do
(( i++ ))
if (( $i == 0 )) && [[ ! $line =~ "^KHPIPEINFO: .*" ]]
then
(( initialstage++ ))
continue
fi
if (( $i == 0 )) && [[ $line =~ "^KHPIPEINFO: .*" ]]
then
KHPIPEINFO="$line"
continue
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" =~ "^nodes:.*" ]]
then
nodes=( ${nodes[@]} ${line#nodes: } )
break;
fi
done
if (( $initialstage == 1 ))
then
addpipeinfo "KHPIPEINFO"
createconpipe
addpipeinfo "$conpipe $sshpid"
if (( $buffered == 1 ));
then
createbuffer
else
addpipeinfo "NOBUFFER"
fi
else
# set -x
true
fi
parsepipeinfo "$KHPIPEINFO"
$dofunc $@
if (( $# == 0 ))
then
addpipeinfo "$dofunc"
else
addpipeinfo "$dofunc $@"
fi
echo $KHPIPEINFO
echo "$lines"