interact.exp
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #! /bin/sh
  2. # The next line is executed by /bin/sh, but not Tcl 
  3.       exec expect $0 ${1+"$@"}
  4. # ====================================================================
  5. # The Vovida Software License, Version 1.0 
  6. # Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  7. # Redistribution and use in source and binary forms, with or without
  8. # modification, are permitted provided that the following conditions
  9. # are met:
  10. # 1. Redistributions of source code must retain the above copyright
  11. #    notice, this list of conditions and the following disclaimer.
  12. # 2. Redistributions in binary form must reproduce the above copyright
  13. #    notice, this list of conditions and the following disclaimer in
  14. #    the documentation and/or other materials provided with the
  15. #    distribution.
  16. # 3. The names "VOCAL", "Vovida Open Communication Application Library",
  17. #    and "Vovida Open Communication Application Library (VOCAL)" must
  18. #    not be used to endorse or promote products derived from this
  19. #    software without prior written permission. For written
  20. #    permission, please contact vocal@vovida.org.
  21. # 4. Products derived from this software may not be called "VOCAL", nor
  22. #    may "VOCAL" appear in their name, without prior written
  23. #    permission of Vovida Networks, Inc.
  24. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  25. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  26. # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  27. # NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  28. # NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  29. # IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  30. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  31. # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  32. # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  33. # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  34. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  35. # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  36. # DAMAGE.
  37. # ====================================================================
  38. # This software consists of voluntary contributions made by Vovida
  39. # Networks, Inc. and many individuals on behalf of Vovida Networks,
  40. # Inc.  For more information on Vovida Networks, Inc., please see
  41. # <http://www.vovida.org/>.
  42. set argc [llength $argv]
  43. if { $argc < 5 } {
  44.     puts "usage: interact.exp <sec> <pwd> <host> <rootpf> <userpf> <command>n"
  45.     exit 1
  46. }
  47. set uid     [exec whoami]
  48. set sec     [lindex $argv 0]
  49. set pwd     [lindex $argv 1]
  50. set host    [lindex $argv 2]
  51. set rootpf  [lindex $argv 3]
  52. set userpf  [lindex $argv 4]
  53. set command [lindex $argv 5]
  54. if { $host != "localhost" } {
  55.     # suppressing stdout printout
  56.     log_user 0
  57.     stty -echo
  58.     if { !([file exists "/tmp/$rootpf"] && [file exists "/tmp/$userpf"]) } {
  59.         # if passwd file does not exist get it and save it
  60.         if { ![file exists "/tmp/$rootpf"] } {
  61.             send_user "Enter root password: "
  62.             expect_user -re "(.*)n"
  63.             send_user "n"
  64.             set rootpasswd $expect_out(1,string)
  65.             set file [open "/tmp/$rootpf" "w"]
  66.             puts $file $rootpasswd
  67.             close $file
  68.         }
  69.         if { ![file exists "/tmp/$userpf"] } {
  70.             send_user "Enter user password or passphrase: "
  71.             expect_user -re "(.*)n"
  72.             send_user "n"
  73.             set userpasswd $expect_out(1,string)
  74.             set file [open "/tmp/$userpf" "w"]
  75.             puts $file $userpasswd
  76.             close $file
  77.         }
  78.     }
  79.     set file [open "/tmp/$rootpf" "r"]
  80.     set rootpasswd [read $file]
  81.     close $file
  82.     set file [open "/tmp/$userpf" "r"]
  83.     set userpasswd [read $file]
  84.     close $file
  85.     # starts with host and password
  86.     spawn ssh $host
  87.     set timeout 2
  88.     expect {
  89.         -re "^.*continue connecting (yes/no)?.*$" {
  90.             send -- "yesn"
  91.         }
  92.     }
  93.     set timeout 20 
  94.     expect {
  95.         -re "^.*root.*password:.*$" {
  96.             send -- "$rootpasswd"
  97.          }
  98.         -re "^.*$uid.*password:.*$" {
  99.             send -- "$userpasswd"
  100.         }
  101.         -re "^.*passphrase.*$uid.*:.*$" {
  102.             send -- "$userpasswd"
  103.         }
  104.     }
  105.     expect {
  106.         -exact "Last" {
  107.             send -- "cd $pwdn"
  108.         }
  109.         -exact "Permission denied." {
  110.             puts "invalid passwordn"
  111.             exit 1
  112.         }
  113.     }
  114. } else {
  115.     # starts with host and password
  116.     spawn tcsh 
  117.     send -- "cd $pwdn"
  118. }
  119. # compound commands 
  120. sleep $sec
  121. send -- "$commandn"
  122. log_user 1
  123. set stty echo
  124. interact