Class: Moob::Idrac7

Inherits:
BaseLom show all
Defined in:
lib/moob/idrac7.rb

Constant Summary collapse

INFO_FIELDS =
%w[
  biosVer svcTag expSvcCode hostName
  osName osVersion sysDesc sysRev datetime initCountdown presentCountdown
  fwVersion fwUpdated LCCfwVersion
  firstBootDevice vmBootOnce
  racName hwVersionmacAddr recoveryAction
  NicEtherMac1  NicEtherMac2  NicEtherMac3  NicEtherMac4
  NiciSCSIMac1  NiciSCSIMac2  NiciSCSIMac3  NiciSCSIMac4
  NicEtherVMac1 NicEtherVMac2 NicEtherVMac3 NicEtherVMac4
  v4Enabled v4IPAddr v4Gateway v4NetMask
  v6Enabled v6Addr   v6Gateway v6Prefix v6LinkLocal
  v4DHCPEnabled v4DHCPServers v4DNS1 v4DNS2
  v6DHCPEnabled v6DHCPServers v6DNS1 v6DNS2
  v6SiteLocal v6SiteLocal3 v6SiteLocal4 v6SiteLocal5 v6SiteLocal6 v6SiteLocal7 v6SiteLocal8
  v6SiteLocal9 v6SiteLocal10 v6SiteLocal11 v6SiteLocal12 v6SiteLocal13 v6SiteLocal14 v6SiteLocal15
  ipmiLAN ipmiMinPriv ipmiKey hostname
]

Instance Attribute Summary

Attributes inherited from BaseLom

#hostname, #username

Instance Method Summary collapse

Methods inherited from BaseLom

action, actions, name

Constructor Details

#initialize(hostname, options = {}) ⇒ Idrac7

Returns a new instance of Idrac7.



24
25
26
27
28
29
# File 'lib/moob/idrac7.rb', line 24

def initialize hostname, options = {}
  super hostname, options
  @username ||= 'root'
  @password ||= 'calvin'
  @index = nil
end

Instance Method Details

#authenticateObject



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
# File 'lib/moob/idrac7.rb', line 31

def authenticate
  @session.handle_cookies nil
  # Needed for new version of iDrac emb web server to even responde
  @session.headers['Accept-Language'] = 'en-US,en;q=0.8,sv;q=0.6'

   = @session.get 'login.html'

  raise ResponseError.new  unless .status == 200

  auth = @session.post 'data/login', "user=#{@username}&password=#{@password}"

  raise ResponseError.new auth unless auth.status == 200

  auth.body =~ /<authResult>([^<]+)<\/authResult>/

  raise 'Cannot find auth result' unless $&
  raise "Auth failed with: \"#{auth.body}\"" unless $1 == "0"

  auth.body =~ /<forwardUrl>([^<]+)<\/forwardUrl>/

  raise 'Cannot find the authenticated index url after auth' unless $&

  @indexurl = $1

  #1.30.30 (Build 43) introduced a nag to change credentials. bypass it.

  if @indexurl =~ /defaultCred/
    @indexurl.gsub!(/defaultCred/,'index')
    Moob.warn "iDRAC recommends you should change the default credentials!"
  end

  Moob.inform "Requesting indexurl of #{@indexurl}"

  # someone decided it was a good idea to include a ST2 token in every XHR
  # request. We need it for a lot of our features.
  @authhash = @indexurl.split('?')[1]
  @authhash =~ /ST2=([0-9a-f]+)/
  @st2 = $1

  if @st2.nil?
      Moob.inform 'Trying to parse ST2 token from HTML page'

      @index = @session.get @indexurl
      @index.body =~ /var TOKEN_VALUE = "([0-9a-f]+)";/
      raise ResponseError.new @index unless @index.status == 200
      @st2 = $1
  end

  @session.headers['ST2'] = @st2

  return self
end

#boot_on(level) ⇒ Object



124
125
126
127
128
# File 'lib/moob/idrac7.rb', line 124

def boot_on level
  req = @session.post "data?set=vmBootOnce:1,firstBootDevice:#{level}", {}
  raise ResponseError.new req unless req.status == 200
  return nil
end

#detectObject



94
95
96
97
98
99
100
101
# File 'lib/moob/idrac7.rb', line 94

def detect
  begin
    home = @session.get 'login.html'
    home.body =~ /(Integrated Dell Remote Access Controller 7)|(iDRAC7)/
  rescue
    false
  end
end

#drac_set_params(params) ⇒ Object



205
206
207
208
209
210
211
# File 'lib/moob/idrac7.rb', line 205

def drac_set_params params
  params.each do |p,v|
    req = @session.post "data?set=#{p}:#{v}", {}
    raise ResponseError.new req unless req.status == 200
  end
  return nil
end

#enable_ipmiObject



201
202
203
# File 'lib/moob/idrac7.rb', line 201

def enable_ipmi
  drac_set_params({ 'ipmiLAN' => 1 })
end

#fetch_console_previewObject



216
217
218
219
220
221
222
223
224
225
226
227
228
229
# File 'lib/moob/idrac7.rb', line 216

def fetch_console_preview
  imgfile = Tempfile.new('console_preview')

  refreshreq = @session.get "data?get=consolepreview[auto%20#{Time.now.utc.to_i}]", {}

  raise ResponseError.new req unless refreshreq.status == 200

  req = @session.get_file "capconsole/scapture0.png?#{Time.now.utc.to_i}", imgfile.path

  raise ResponseError.new req unless req.status == 200
  raise UnexpectedContentError.new req unless req.headers['Content-type'] =~ /image\//

  return imgfile, req.headers
end

#get_infos(keys) ⇒ Object



176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'lib/moob/idrac7.rb', line 176

def get_infos keys
  Moob.inform "Requesting data?get=#{keys.join(',')}"
  infos = @session.post "data?get=#{keys.join(',')}", {}

  raise ResponseError.new infos unless infos.status == 200
  raise "The status isn't OK" unless infos.body =~ /<status>ok<\/status>/

  return Hash[keys.collect do |k|
    if infos.body =~ /<#{k}>(.*?)<\/#{k}>/
      [k, $1]
    else
      [k, nil]
    end
  end]
end

#infosObject



172
173
174
# File 'lib/moob/idrac7.rb', line 172

def infos
  return JSON.pretty_generate get_infos INFO_FIELDS
end

#jnlpObject



105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/moob/idrac7.rb', line 105

def jnlp
  # Request system name and hostname from data end-point
  req = get_infos ['sysDesc' ,'hostname']

  # eg escaped "idrac-A1BCD2E, PowerEdge R610, User:root"
  title = CGI::escape "#{req['hostname']}, #{req['sysDesc']}, User:#{@username}"

  viewer = @session.get "viewer.jnlp(#{@hostname}@0@#{title}@#{Time.now.to_i * 1000}@#{@authhash})"
  raise ResponseError.new viewer unless viewer.status == 200

  return viewer.body
end

#logoutObject



84
85
86
87
88
89
90
91
92
# File 'lib/moob/idrac7.rb', line 84

def logout
  if @skiplogout
    Moob.inform 'Skipping logout...'
  else
    out = @session.get 'data/logout'
    raise ResponseError.new out unless out.status == 200
  end
  return self
end

#lomresetObject



232
233
234
235
# File 'lib/moob/idrac7.rb', line 232

def lomreset
  @skiplogout = true
  drac_set_params({ 'iDracReset' => 1 })
end

#power_control(action) ⇒ Object



118
119
120
121
122
# File 'lib/moob/idrac7.rb', line 118

def power_control action
  req = @session.post "data?set=pwState:#{action}", {}
  raise ResponseError.new req unless req.status == 200
  return nil
end

#pstatusObject



160
161
162
163
164
165
166
167
168
169
# File 'lib/moob/idrac7.rb', line 160

def pstatus
  case get_infos(['pwState'])['pwState']
  when '0'
    return :off
  when '1'
    return :on
  else
    return nil
  end
end

#set_paramsObject



193
194
195
196
197
198
# File 'lib/moob/idrac7.rb', line 193

def set_params
  unless @params
    raise "Params are not set!"
  end
  drac_set_params @params
end