File: sm-routing.check.tcl

package info (click to toggle)
ibutils 1.5.7%2B0.2.gbd7e502-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 38,728 kB
  • sloc: cpp: 159,552; ansic: 74,818; tcl: 13,816; sh: 13,204; makefile: 431; yacc: 333; lex: 169; awk: 53; perl: 49
file content (203 lines) | stat: -rw-r--r-- 7,229 bytes parent folder | download | duplicates (4)
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
#--
# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved.
#
# This software is available to you under a choice of one of two
# licenses.  You may choose to be licensed under the terms of the GNU
# General Public License (GPL) Version 2, available from the file
# COPYING in the main directory of this source tree, or the
# OpenIB.org BSD license below:
#
#     Redistribution and use in source and binary forms, with or
#     without modification, are permitted provided that the following
#     conditions are met:
#
#      - Redistributions of source code must retain the above
#        copyright notice, this list of conditions and the following
#        disclaimer.
#
#      - Redistributions in binary form must reproduce the above
#        copyright notice, this list of conditions and the following
#        disclaimer in the documentation and/or other materials
#        provided with the distribution.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#--

# This is the checker for SM LFT/MFT assignment checks

# given the node port group defined by the sim flow
# setup the partitions policy file for the SM
proc setupPartitionPolicyFile {fileName} {
   set f [open $fileName w]

   # no need for default partition
   # puts $f "Default=0x7fff ,ipoib : ALL, SELF=full ;"

	puts $f "G1=0x8001, ipoib: ALL=full;"
	puts $f "G2=0x8002, ipoib: ALL=full;"
	puts $f "G2=0x8003, ipoib: ALL=full;"
   close $f
}


##############################################################################
#
# Start up the test applications
# This is the default flow that will start OpenSM only in 0x43 verbosity
# Return a list of process ids it started (to be killed on exit)
#
proc runner {simDir osmPath osmPortGuid} {
   global simCtrlSock osmPid
   global env

   set osmStdOutLog [file join $simDir osm.stdout.log]
   set osmLog [file join $simDir osm.log]

   # Prepare the nodes partitions data
   set partitionPolicyFile  [file join $simDir opensm-partitions.policy]
   setupPartitionPolicyFile $partitionPolicyFile

   fconfigure $simCtrlSock -blocking 1 -buffering line

	puts "---------------------------------------------------------------------"
	puts " Starting the SM\n"

   set osmCmd "$osmPath -P$partitionPolicyFile -d2 -f $osmLog -g $osmPortGuid"
	puts "-I- Starting: $osmCmd"
   set osmPid [eval "exec $osmCmd > $osmStdOutLog &"]

   # start a tracker on the log file and process:
   startOsmLogAnalyzer $osmLog

   return $osmPid
}

##############################################################################
#
# Check for the test results: make sure we got a "SUBNET UP"
# Return the exit code
proc checker {simDir osmPath osmPortGuid} {
   global env
   global simCtrlSock
	global topologyFile
	global osmPid

   set osmLog [file join $simDir osm.log]

   if {[osmWaitForUpOrDead $osmLog]} {
      return 1
   }

	puts "---------------------------------------------------------------------"
	puts " OpemSM brought up the network"
	puts $simCtrlSock "updateProcFSForNode \$fabric $simDir H-1/U1 H-1/U1 1"
   set res [gets $simCtrlSock]
   puts "SIM: Updated H-1 proc file:$res"

	puts " All hosts now joining their IPoIB Subnets"
	puts $simCtrlSock "joinPortsByPartition \$fabric {0x8001 0x8002 0x8003}"
   puts "SIM: [gets $simCtrlSock]"
	after 10000
	puts "---------------------------------------------------------------------"
	puts " SUBNET READY FOR DIAGNOSTICS"
	puts "\nCut and paste the following in a new window then run ibdiagnet:"
	puts "cd $simDir"
	puts "setenv IBMGTSIM_DIR  $simDir"
	puts "setenv OSM_CACHE_DIR $simDir"
	puts "setenv OSM_TMP_DIR   $simDir"
	puts " "
	puts "---------------------------------------------------------------------"
	puts " Forcing LFT/MFT changes ... "
	puts $simCtrlSock "causeDeadEndOnPath \$fabric H-2/U1 1 H-41/U1 1"
	set ret [gets $simCtrlSock]
   puts "SIM:$ret\n"
	if {![regexp {at switch:(\S+)} $ret d1 swName]} {
		return 1
	}
	puts "See what errors are reported using ibdiagnet and ibdiagpath"
	puts "1) try: ibdiagnet -r"
	puts "2) try: ibdiagpath -n H-2,H-41 -t $topologyFile"
	puts " press Enter when done"
	gets stdin
	puts "---------------------------------------------------------------------"
	puts " Let the SM fix the issue:"
	puts $simCtrlSock "setSwitchChangeBit \$fabric $swName"
	puts "SIM: [gets $simCtrlSock]"
	exec kill -HUP $osmPid
	# wait for sweep to end or exit
	puts "-I- Waiting for subnet up"
	set ignorePrev 1
	if {[osmWaitForUpOrDead $osmLog $ignorePrev]} {
		return 1
	}
	puts "Repeat the previous commands to see everything is back to normal"
	puts " press Enter when done"
	gets stdin
	puts "---------------------------------------------------------------------"
	puts $simCtrlSock "causeDeadEndOnPath \$fabric H-4/U1 1 H-23/U1 1"
	set ret [gets $simCtrlSock]
   puts "SIM:$ret\n"
	if {![regexp {at switch:(\S+)} $ret d1 swName]} {
		return 1
	}
	puts "See what errors are reported using ibdiagnet and ibdiagpath"
	puts "1) try: ibdiagnet -r"
	puts "2) try: ibdiagpath -n H-4,H-23 -t $topologyFile"
	puts " press Enter when done"
	gets stdin
	puts "---------------------------------------------------------------------"
	puts " Let the SM fix the issue:"
	puts $simCtrlSock "setSwitchChangeBit \$fabric $swName"
	puts "SIM: [gets $simCtrlSock]"
	exec kill -HUP $osmPid
	# wait for sweep to end or exit
	puts "-I- Waiting for subnet up"
	set ignorePrev 1
	if {[osmWaitForUpOrDead $osmLog $ignorePrev]} {
		return 1
	}
	puts "Repeat the previous commands to see everything is back to normal"
	puts " press Enter when done"
	gets stdin
	puts "---------------------------------------------------------------------"
	puts $simCtrlSock "causeLoopOnPath \$fabric H-8/U1 1 H-22/U1 1"
	set ret [gets $simCtrlSock]
   puts "SIM:$ret\n"
	if {![regexp {at switch:(\S+)} $ret d1 swName]} {
		return 1
	}
	puts "See what errors are reported using ibdiagnet and ibdiagpath"
	puts "1) try: ibdiagnet -r"
	puts "2) try: ibdiagpath -n H-8,H-22 -t $topologyFile"
	puts " press Enter when done"
	gets stdin
	puts "---------------------------------------------------------------------"
	puts " Let the SM fix the issue:"
	puts $simCtrlSock "setSwitchChangeBit \$fabric $swName"
	puts "SIM: [gets $simCtrlSock]"
	exec kill -HUP $osmPid
	# wait for sweep to end or exit
	puts "-I- Waiting for subnet up"
	set ignorePrev 1
	if {[osmWaitForUpOrDead $osmLog $ignorePrev]} {
		return 1
	}
	puts "Repeat the previous commands to see everything is back to normal"
	puts " press Enter when done"
	gets stdin
	puts "---------------------------------------------------------------------"
	puts $simCtrlSock "breakMCG \$fabric 0xc002"
   puts "SIM: [gets $simCtrlSock]\n"
	puts "See what errors are reported using ibdiagnet:"
	puts "1) try: ibdiagnet -r"
	puts " press Enter when done"
	gets stdin
   return 0
}