mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-14 16:26:30 +00:00
Renaming 'get_cmd_switch' and 'get_cmd_arg' to 'have_cmd_arg' and 'cmd_arg' respectively blends in nicely with the now omnipresent pattern with 'have_[spec|board|installed|include]'. This commit deprecates 'get_cmd_switch' and 'get_cmd_arg', which will be removed in a later commit. Issue #5432
122 lines
3.2 KiB
Plaintext
122 lines
3.2 KiB
Plaintext
##
|
|
# Get output of the target machine via Intel AMT's SoL feature
|
|
#
|
|
# \param --log-amt-host network address of target machine
|
|
# \param --log-amt-password AMT password for target machine
|
|
# \param --log-amt-filter Sanitize output by piping it through a filter
|
|
# \param --log-amt-skip-test Skip AMT SOL availability test
|
|
#
|
|
|
|
source [genode_dir]/tool/run/log.inc
|
|
source [genode_dir]/tool/run/amt.inc
|
|
|
|
|
|
proc log_amt_host { } {
|
|
return [cmd_arg_first --log-amt-host ""]
|
|
}
|
|
|
|
|
|
proc log_amt_password { } {
|
|
return [cmd_arg_first --log-amt-password ""]
|
|
}
|
|
|
|
proc log_amt_filter { } {
|
|
return [cmd_arg_first --log-amt-filter ""]
|
|
}
|
|
|
|
proc log_amt_timeout { } {
|
|
return [cmd_arg_first --log-amt-timeout "30"]
|
|
}
|
|
|
|
proc log_amt_skip_test { } {
|
|
return [have_cmd_arg --log-amt-skip-test]
|
|
}
|
|
|
|
|
|
##
|
|
# Log output of the test machine using Intel's AMT
|
|
#
|
|
proc run_log { wait_for_re timeout_value } {
|
|
global output_spawn_id
|
|
|
|
if {![is_amt_available [log_amt_host] [log_amt_password]]} {
|
|
set exit_result 1
|
|
return false
|
|
}
|
|
|
|
set amt_tool [cmd_arg --amt-tool "default"]
|
|
|
|
# Check that SOL is correctly configured if wsman is available
|
|
if {![log_amt_skip_test] && ( $amt_tool == "wsman" || $amt_tool == "default" )} {
|
|
if {[have_installed wsman]} {
|
|
puts "Test for working AMT SOL redirection service ..."
|
|
set redir_state [exec wsman get http://intel.com/wbem/wscim/1/amt-schema/1/AMT_RedirectionService -h [log_amt_host] -P 16992 -u admin -p [log_amt_password]]
|
|
set redir_state [regexp -inline {ListenerEnabled.*ListenerEnabled} $redir_state]
|
|
|
|
if {![regexp {ListenerEnabled>true} $redir_state]} {
|
|
puts " Warning: AMT_RedirectionService listener is disabled - serial output will not be available"
|
|
puts " Use wsman to enable the listener service, e.g.:"
|
|
puts " wsman put http://intel.com/wbem/wscim/1/amt-schema/1/AMT_RedirectionService -h [log_amt_host] -P 16992 -u admin -p <your-intel-me-amt-password> -k ListenerEnabled=true"
|
|
puts ""
|
|
}
|
|
} else {
|
|
puts " Warning: could not check AMT SOL redirection service because of missing wsman tool, --amt-tool==$amt_tool"
|
|
}
|
|
}
|
|
|
|
if {$wait_for_re == "forever"} {
|
|
set timeout -1
|
|
} else {
|
|
set timeout [expr $timeout_value + [log_amt_timeout]]
|
|
}
|
|
set exit_result 1
|
|
|
|
#
|
|
# prepare command
|
|
#
|
|
if {[have_installed meshcmd] && ( $amt_tool == "meshcmd" )} {
|
|
set amt_cmd "meshcmd amtterm --host [log_amt_host] --password [log_amt_password]"
|
|
set amt_log ".*Connected"
|
|
} else {
|
|
#
|
|
# password via environment variable for amtterm will not show up in logs
|
|
#
|
|
set ::env(AMT_PASSWORD) [log_amt_password]
|
|
|
|
set amt_cmd "amtterm -u admin -v [log_amt_host]"
|
|
set amt_log ".*session authentication"
|
|
}
|
|
|
|
if {[have_cmd_arg --log-amt-filter]} {
|
|
set amt_cmd "$amt_cmd | [log_amt_filter]"
|
|
}
|
|
|
|
#
|
|
# grab output
|
|
#
|
|
lassign [retry 30 "/bin/sh -c \"$amt_cmd\"" "$amt_log" 2] retry_output output_spawn_id
|
|
|
|
if {$retry_output == ""} {
|
|
puts stderr "Aborting, AMT SOL not accessible"
|
|
return false
|
|
}
|
|
|
|
set kernel_msg [run_boot_string]
|
|
|
|
expect {
|
|
-i $output_spawn_id $kernel_msg { }
|
|
eof {
|
|
puts stderr "Aborting, received EOF"
|
|
return false
|
|
}
|
|
timeout {
|
|
puts stderr "Boot process timed out"
|
|
close -i $output_spawn_id; wait
|
|
return false
|
|
}
|
|
}
|
|
|
|
wait_for_output $wait_for_re $timeout_value $output_spawn_id
|
|
return true
|
|
}
|