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
|
#!/usr/bin/expect --
#******************************************************************************
# ConMan Expect Language Library (CELL)
#******************************************************************************
# $Id: conman.exp 1003 2011-01-26 18:26:06Z chris.m.dunlap $
#******************************************************************************
# Written by Chris Dunlap <cdunlap@llnl.gov>.
# Copyright (C) 2007-2011 Lawrence Livermore National Security, LLC.
# Copyright (C) 2001-2007 The Regents of the University of California.
# UCRL-CODE-2002-009.
#
# This file is part of ConMan: The Console Manager.
# For details, see <http://conman.googlecode.com/>.
#
# ConMan is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option)
# any later version.
#
# ConMan is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with ConMan. If not, see <http://www.gnu.org/licenses/>.
#******************************************************************************
proc conman_parse_opts {args_r} {
#
# Parses the 'args_r' var reference for ConMan command-line options.
# Returns a list of options, while removing those options from the args_r list.
#
upvar $args_r args
set cons {}
set opts {}
for {set i 0} {$i < [llength $args]} {incr i} {
set arg [lindex $args $i]
switch -regexp -- $arg {
"^--$" {foreach x [lrange $args [expr $i+1] end] {lappend cons $x};
break}
"^-d$" {lappend opts $arg; lappend opts [lindex $args [incr i]]}
"^-e$" {incr i ;# ignore changing esc-char seq}
"^-" {lappend opts $arg}
default {lappend cons $arg}
}
}
set args $cons
return $opts
}
proc conman_query {args {opts {}} {errmsg_r {}}} {
#
# Queries ConMan for consoles specified by the 'args' list;
# the 'opts' list specifies ConMan command-line options
# (eg, -r for matching console names via regex instead of globbing).
# Returns a list of console names if successful; o/w, returns nothing.
# On error, a message is written to the 'errmsg_r' var reference if present.
#
upvar $errmsg_r errmsg
set errmsg "Undefined"
set consoles {}
set cmd [concat |conman -q $opts -- $args]
if {[catch {open $cmd r} file]} {
set errmsg $file
return
}
while {[gets $file console] >= 0} {
lappend consoles [string trim $console]
}
if {[catch {close $file} err]} {
regexp "^ERROR: *(\[^\r\n]*)" $err ignore msg
set errmsg [string trimright $msg "."]
return
}
return $consoles
}
proc conman_open {console {opts {}} {errmsg_r {}}} {
#
# Opens a ConMan session to the specified console;
# the 'opts' list specifies ConMan command-line options
# (eg, -j to join connections, -f to force open connections).
# Returns the spawn_id if successful; o/w, returns nothing.
# On error, a message is written to the 'errmsg_r' var reference if present.
#
upvar $errmsg_r errmsg
set errmsg "Undefined"
if {[catch {eval spawn -noecho conman $opts -- $console} err]} {
set errmsg $err
return
}
expect -re "ERROR: *(\[^\r\n]*)" {
set errmsg [string trimright $expect_out(1,string) "."]
return
} -re "<ConMan> Connection \[^\r]+ opened.\r\n" {
;# exp_break
} eof {
set errmsg "Exited"
return
} timeout {
set errmsg "Timed-out"
return
}
set errmsg {}
return $spawn_id
}
proc conman_close {spawn_id} {
#
# Closes the ConMan session associated with 'spawn_id'.
#
exp_send -- "&."
expect -re "<ConMan> Connection \[^\r]+ closed.\r\n"
close
wait
return
}
proc conman_run {nproc consoles cmd args} {
#
# Runs the 'cmd' procedure on each console identified by the 'consoles' list.
# The consoles list will be parsed for ConMan command-line options,
# and ConMan will be queried for matching console names.
# The 'nproc' variable specifies the number of concurrent ConMan sessions
# on which the 'cmd' procedure is run; if nproc=1, execution is serial.
# The first three args of the 'cmd' procedure refer to:
# 1) the spawn_id of that particular ConMan console session,
# 2) the spawn_id for any data being returned to the user via stdout
# (line buffered and prepended with the console name), and
# 3) the name of the console associated with that particular session.
# These first three args are automagically set by conman_run.
# Additional args specified by the variable-length 'args' list
# will be passed on to any remaining args in the 'cmd' procedure arg list.
# Data being returned from multiple concurrent consoles can be demux'd with
# a stable sort such as: "sort -s -t: -k1,1".
#
global conman_global_ids ;# global req'd for indirect spawn ids
set conman_global_ids {}
if {$nproc <= 0} {
return
}
set opts [conman_parse_opts consoles]
set consoles [conman_query $consoles $opts err]
if {[llength $consoles] == 0} {
send_error -- "ERROR: $err.\n"
return
}
while {[llength $consoles] && $nproc > 0} {
if {[conman_run_next conman_global_ids id2con consoles opts cmd args]} {
incr nproc -1
}
}
set timeout -1
expect -i conman_global_ids -re "(^\[^\r]*)\r\n" {
send_user -- "$id2con($expect_out(spawn_id)):$expect_out(1,string)\n"
exp_continue
} eof {
catch {wait -i -1}
if {[string length $expect_out(buffer)] > 0} {
send_user -- "$id2con($expect_out(spawn_id)):$expect_out(buffer)\n"
}
set index [lsearch $conman_global_ids $expect_out(spawn_id)]
set conman_global_ids [lreplace $conman_global_ids $index $index]
while {[llength $consoles]} {
if {[conman_run_next conman_global_ids id2con consoles opts cmd args]} {
break
}
}
if {[llength $conman_global_ids]} {
exp_continue
}
}
return
}
proc conman_run_next {ids_r id2con_r consoles_r opts_r cmd_r args_r} {
#
# This is an internal routine that is only to be called by "conman_run"!
# Returns 1 if successful; o/w, returns 0.
#
upvar $ids_r conman_global_ids
upvar $id2con_r id2con
upvar $consoles_r consoles
upvar $opts_r opts
upvar $cmd_r cmd
upvar $args_r args
if {[llength $consoles] == 0} {
return 0
}
set console [lindex $consoles 0] ;# car
set consoles [lrange $consoles 1 end] ;# cdr
if {[catch {spawn -noecho -pty} err]} {
send_error -- "ERROR: $err.\n"
return 0
}
if {[fork] == 0} {
set stdout_id $spawn_id
set console_id [conman_open $console $opts err]
if {[string length $console_id] == 0} {
send_error -- "$console:ERROR: $err.\n"
exit 0
}
eval $cmd $console_id $stdout_id $console $args
conman_close $console_id
close -i $stdout_id
wait -i $stdout_id
exit 0
}
close -slave
lappend conman_global_ids $spawn_id
set id2con($spawn_id) $console
return 1
}
proc conman_check_console_state {spawn_id {tmout 4}} {
#
# Checks the output of the ConMan session associated with 'spawn_id'
# in an attempt to determine the state of the console.
# Possible states are:
# active, error, inactive, login, rmc, shell, srm, srom
#
set timeout 1
expect -re "\r\n<ConMan> \[^\r]*\r\n" {
exp_continue
} -re ".+" {
return "active"
} eof {
return "error"
}
set expect_out(buffer) ""
exp_send "\r"
set timeout $tmout
expect -nocase -re "(login|password):.*\$" {
return "login"
} -gl ">>>\$" {
return "srm"
} -gl "^SROM> \$" {
return "srom"
} -gl "^RMC>\$" {
return "rmc"
} -re "^\[^\r]*(%|#|\\\$|]|\[^>]>) \$" {
return "shell"
} -gl "\n" {
exp_continue -continue_timer
} eof {
return "error"
}
if {[string length $expect_out(buffer)] == 0} {
return "inactive"
}
return "active"
}
|