3 Ohai.plugin(:Hardware) do
6 def read_sysctl_link(file)
7 File.basename(File.readlink(file))
11 def read_sysctl_file(file)
13 rescue Errno::ENOENT, Errno::EINVAL
16 def parse_memory_size(size)
17 if size =~ /^(\d+(?:\.\d+)?)\s*TB/i
18 Regexp.last_match(1).to_f * 2**30
19 elsif size =~ /^(\d+(?:\.\d+)?)\s*GB/i
20 Regexp.last_match(1).to_f * 2**20
21 elsif size =~ /^(\d+(?:\.\d+)?)\s*MB/i
22 Regexp.last_match(1).to_f * 2**10
26 def format_disk_size(kb)
30 kblog10 = Math.log10(kb).floor
32 kb = kb.to_f * 2 / 10**kblog10
33 kb = kb.round.to_f / 2
36 format "%gTB", kb * 10**(kblog10 - 9)
38 format "%dGB", kb * 10**(kblog10 - 6)
40 format "%dMB", kb * 10**(kblog10 - 3)
45 def memory_to_disk_size(size)
46 format_disk_size(parse_memory_size(size))
49 def find_sas_device(address)
50 file = Dir.glob("/sys/class/scsi_generic/sg*/device/sas_address").find do |file|
51 read_sysctl_file(file) == "0x#{address}"
55 dir = File.dirname(file)
56 device = Dir.glob("#{dir}/block/*").first ||
57 Dir.glob("#{dir}/scsi_generic/*").first
59 "/dev/#{File.basename(device)}"
67 IO.popen(["lspci", "-Dkvmm"]).each do |line|
68 if line =~ /^Slot:\s+((\h{4}):(\h{2}):(\h{2}).(\h))\s*$/
70 :slot => Regexp.last_match(1),
71 :domain => Regexp.last_match(2),
72 :bus => Regexp.last_match(3),
73 :device => Regexp.last_match(4),
74 :function => Regexp.last_match(5)
76 elsif device && line =~ /^([A-Z]+):\s+(.*)\s*$/i
77 case Regexp.last_match(1)
78 when "Class" then device[:class_name] = Regexp.last_match(2)
79 when "Vendor" then device[:vendor_name] = Regexp.last_match(2)
80 when "Device" then device[:device_name] = Regexp.last_match(2)
81 when "SVendor" then device[:subsystem_vendor_name] = Regexp.last_match(2)
82 when "SDevice" then device[:subsystem_device_name] = Regexp.last_match(2)
83 when "PhySlot" then device[:physical_slot] = Regexp.last_match(2)
84 when "Rev" then device[:revision] = Regexp.last_match(2)
85 when "ProgIf" then device[:programming_interface] = Regexp.last_match(2)
86 when "Driver" then device[:driver] = Regexp.last_match(2)
87 when "Module" then device[:modules] = Array(device[:modules]) << Regexp.last_match(2)
89 elsif device && line =~ /^\s*$/
90 devices[device[:slot]] = device
95 IO.popen(["lspci", "-Dkvmmn"]).each do |line|
96 if line =~ /^Slot:\s+((\h{4}):(\h{2}):(\h{2}).(\h))\s*$/
97 device = devices[Regexp.last_match(1)]
98 elsif device && line =~ /^([A-Z]+):\s+(.*)\s*$/i
99 case Regexp.last_match(1)
100 when "Class" then device[:class_id] = Regexp.last_match(2)
101 when "Vendor" then device[:vendor_id] = Regexp.last_match(2)
102 when "Device" then device[:device_id] = Regexp.last_match(2)
103 when "SVendor" then device[:subsystem_vendor_id] = Regexp.last_match(2)
104 when "SDevice" then device[:subsystem_device_id] = Regexp.last_match(2)
106 elsif device && line =~ /^\s*$/
115 Dir.glob("/sys/class/net/*").each_with_object(Mash.new) do |device, devices|
116 name = File.basename(device)
119 :device => read_sysctl_link("#{device}/device"),
120 :duplex => read_sysctl_file("#{device}/duplex"),
121 :speed => read_sysctl_file("#{device}/speed")
122 }.delete_if { |_, v| v.nil? }
129 IO.popen(["dmidecode", "-t", "memory"]).each_with_object([]) do |line, devices|
130 if line =~ /^Memory Device\s*$/
132 elsif device && line =~ /^\s+([A-Z ]+):\s+(.*)\s*$/i
133 device[Regexp.last_match(1).tr(" ", "_").downcase.to_sym] = Regexp.last_match(2).strip
134 elsif device && line =~ /^\s*$/
144 disk[:controllers] = []
148 find_direct_disks(disk)
149 find_nvme_disks(disk)
151 find_hp_disks(disk) if File.exist?("/usr/sbin/hpssacli")
152 find_megaraid_disks(disk) if File.exist?("/usr/sbin/megacli")
153 find_mpt_disks(disk) if File.exist?("/usr/sbin/sas2ircu")
154 find_adaptec_disks(disk) if File.exist?("/usr/sbin/arcconf")
155 find_areca_disks(disk) if File.exist?("/opt/areca/x86_64/cli64")
159 disk[:disks].each do |disk|
160 if disk[:vendor] =~ /^CVPR/ && disk[:model] == "INTEL"
161 disk[:model] = disk[:serial_number]
162 disk[:serial_number] = disk[:vendor]
163 disk[:vendor] = "INTEL"
166 if disk[:vendor].nil? && disk[:model] =~ /^ATA\s+(.*)$/
167 disk[:vendor] = "ATA"
168 disk[:model] = Regexp.last_match(1)
171 if disk[:vendor].nil? || disk[:vendor] == "ATA"
172 if disk[:model] =~ /^(\S+)\s+(.*)$/
173 disk[:vendor] = Regexp.last_match(1)
174 disk[:model] = Regexp.last_match(2)
175 elsif disk[:model] =~ /^ST/
176 disk[:vendor] = "SEAGATE"
177 elsif disk[:model] =~ /^C300-(.*)$/
178 disk[:vendor] = "CRUCIAL"
179 disk[:model] = Regexp.last_match(1)
183 disk[:model].sub!(/-.*$/, "")
189 def find_direct_disks(devices)
190 Dir.glob("/sys/class/scsi_host/host*") do |host|
191 driver = read_sysctl_file("#{host}/proc_name")
193 if driver == "ahci" || driver == "mptsas"
194 bus = host.sub("/sys/class/scsi_host/host", "")
196 Dir.glob("/sys/bus/scsi/devices/#{bus}:0:*").each do |device|
197 next unless File.exist?("#{device}/scsi_disk")
199 block = Dir.glob("#{device}/block/*").first
200 size = read_sysctl_file("#{block}/size").to_f / 2
203 :id => devices[:disks].count,
204 :device => "/dev/#{File.basename(block)}",
205 :vendor => read_sysctl_file("#{device}/vendor"),
206 :model => read_sysctl_file("#{device}/model"),
207 :firmware_version => read_sysctl_file("#{device}/rev"),
208 :size => format_disk_size(size),
216 def find_nvme_disks(devices)
217 Dir.glob("/sys/class/misc/nvme*") do |device|
219 :id => devices[:controllers].count,
220 :pci_slot => File.basename(Pathname.new("#{device}/device").realpath),
225 devices[:controllers] << controller
227 IO.popen(["lspci", "-Dkvmm", "-s", controller[:pci_slot]]).each do |line|
228 if line =~ /^SVendor:\s+(\S.*\S)\s*$/
229 controller[:vendor] = Regexp.last_match(1)
230 elsif line =~ /^SDevice:\s+(\S.*\S)\s*$/
231 controller[:model] = Regexp.last_match(1)
235 Dir.glob("#{device}/device/block/*").each do |block|
236 size = read_sysctl_file("#{block}/size").to_f / 2
239 :id => devices[:disks].count,
240 :controller => controller[:id],
241 :device => "/dev/#{File.basename(block)}",
242 :vendor => controller[:vendor],
243 :model => controller[:model],
244 :size => format_disk_size(size),
248 devices[:disks] << disk
249 controller[:disks] << disk[:id]
254 def find_md_arrays(devices)
257 File.new("/proc/mdstat", "r").each do |line|
258 if line =~ /^(md\d+) : active raid(\d+)((?: (?:sd[a-z]|nvme\d+n\d+)\d*\[\d+\](?:\([A-Z]\))*)+)$/
260 :id => devices[:arrays].count,
261 :device => "/dev/#{Regexp.last_match(1)}",
262 :raid_level => Regexp.last_match(2),
266 Regexp.last_match(3).scan(/ (sd[a-z]+|nvme\d+n\d+)\d*\[\d+\](?:\([A-Z]\))*/).flatten.each do |device|
267 if disk = devices[:disks].find { |d| d[:device] == "/dev/#{device}" }
268 disk[:arrays] << array[:id]
269 array[:disks] << disk[:id]
273 devices[:arrays] << array
274 elsif array && line =~ /^\s+(\d+) blocks/
275 array[:size] = format_disk_size(Regexp.last_match(1).to_i)
280 def find_hp_disks(devices)
288 IO.popen(%w(hpssacli controller all show config detail)).each do |line|
289 if line =~ /^Smart Array (\S+) /
291 :id => devices[:controllers].count,
292 :model => Regexp.last_match(1),
297 devices[:controllers] << controller
299 controllers << controller
303 elsif controller && line =~ /^ (\S.*):\s+(.*)$/
304 case Regexp.last_match(1)
305 when "Serial Number" then controller[:serial_number] = Regexp.last_match(2)
306 when "Hardware Revision" then controller[:hardware_version] = Regexp.last_match(2)
307 when "Firmware Version" then controller[:firmware_version] = Regexp.last_match(2)
308 when "PCI Address (Domain:Bus:Device.Function)" then controller[:pci_slot] = Regexp.last_match(2)
310 elsif controller && line =~ /^ Logical Drive: (\d+)$/
312 :id => devices[:arrays].count,
313 :controller => controller[:id],
314 :number => Regexp.last_match(1),
318 devices[:arrays] << array
319 controller[:arrays] << array[:id]
322 elsif controller && line =~ /^ physicaldrive (\S+) /
323 disks << Regexp.last_match(1)
324 elsif array && line =~ /^ physicaldrive (\S+)$/
326 :id => devices[:disks].count,
327 :controller => controller[:id],
328 :arrays => [array[:id]],
329 :location => Regexp.last_match(1),
330 :smart_device => "cciss,#{disks.find_index(Regexp.last_match(1))}"
333 devices[:disks] << disk
334 controller[:disks] << disk[:id]
335 array[:disks] << disk[:id]
336 elsif disk && line =~ /^ (\S[^:]+):\s+(.*\S)\s*$/
337 case Regexp.last_match(1)
338 when "Interface Type" then disk[:interface] = Regexp.last_match(2)
339 when "Size" then disk[:size] = Regexp.last_match(2)
340 when "Rotational Speed" then disk[:rpm] = Regexp.last_match(2)
341 when "Firmware Revision" then disk[:firmware_version] = Regexp.last_match(2)
342 when "Serial Number" then disk[:serial_number] = Regexp.last_match(2)
343 when "Model" then disk[:model] = Regexp.last_match(2)
345 elsif array && line =~ /^ (\S[^:]+):\s+(.*\S)\s*$/
346 case Regexp.last_match(1)
347 when "Size" then array[:size] = Regexp.last_match(2)
348 when "Fault Tolerance" then array[:raid_level] = Regexp.last_match(2)
349 when "Disk Name" then array[:device] = Regexp.last_match(2).strip
350 when "Mount Points" then array[:mount_point] = Regexp.last_match(2).split.first
351 when "Unique Identifier" then array[:wwn] = Regexp.last_match(2)
356 controllers.each do |controller|
357 if device = Dir.glob("/sys/bus/pci/devices/#{controller[:pci_slot]}/cciss*").first
358 controller[:device] = File.basename(device).sub(/^cciss(\d+)$/, "/dev/cciss/c\\1d0")
359 elsif device = Dir.glob("/sys/bus/pci/devices/#{controller[:pci_slot]}/host*/target*:3:0/*:3:0:0/scsi_generic/sg*").first
360 controller[:device] = "/dev/#{File.basename(device)}"
365 def find_megaraid_disks(devices)
373 IO.popen(%w(megacli -AdpGetPciInfo -aAll -NoLog)).each do |line|
374 if line =~ /^PCI information for Controller (\d+)$/
376 :id => devices[:controllers].count,
381 devices[:controllers] << controller
383 controllers << controller
384 elsif line =~ /^Bus Number\s+:\s+(\d+)$/
385 controller[:pci_slot] = format "0000:%02x", Integer("0x#{Regexp.last_match(1)}")
386 elsif line =~ /^Device Number\s+:\s+(\d+)$/
387 controller[:pci_slot] = format "%s:%02x", controller[:pci_slot], Integer("0x#{Regexp.last_match(1)}")
388 elsif line =~ /^Function Number\s+:\s+(\d+)$/
389 controller[:pci_slot] = format "%s.%01x", controller[:pci_slot], Integer("0x#{Regexp.last_match(1)}")
393 IO.popen(%w(megacli -AdpAllInfo -aAll -NoLog)).each do |line|
394 if line =~ /^Adapter #(\d+)$/
395 controller = controllers[Regexp.last_match(1).to_i]
396 elsif line =~ /^(\S.*\S)\s*:\s+(\S.*)$/
397 case Regexp.last_match(1)
398 when "Product Name" then controller[:model] = Regexp.last_match(2)
399 when "Serial No" then controller[:serial_number] = Regexp.last_match(2)
400 when "FW Package Build" then controller[:firmware_version] = Regexp.last_match(2)
405 IO.popen(%w(megacli -LdPdInfo -aAll -NoLog)).each do |line|
406 if line =~ /^Adapter #(\d+)$/
407 controller = controllers[Regexp.last_match(1).to_i]
408 elsif controller && line =~ /^Virtual Drive: (\d+) \(Target Id: (\d+)\)$/
409 pci_slot = controller[:pci_slot]
410 target = Regexp.last_match(2)
411 device = Dir.glob("/sys/bus/pci/devices/#{pci_slot}/host*/target*:2:#{target}/*:2:#{target}:0/block/*").first
414 :id => devices[:arrays].count,
415 :controller => controller[:id],
416 :number => Regexp.last_match(1),
417 :device => "/dev/#{File.basename(device)}",
421 devices[:arrays] << array
422 controller[:arrays] << array[:id]
427 elsif array && line =~ /^PD: (\d+) Information$/
429 :id => devices[:disks].count,
430 :controller => controller[:id],
431 :arrays => [array[:id]]
434 devices[:disks] << disk
435 controller[:disks] << disk[:id]
436 array[:disks] << disk[:id]
437 elsif disk && line =~ /^(\S.*\S)\s*:\s+(\S.*)$/
438 case Regexp.last_match(1)
439 when "Device Id" then disk[:smart_device] = "megaraid,#{Regexp.last_match(2)}"
440 when "WWN" then disk[:wwn] = Regexp.last_match(2)
441 when "PD Type" then disk[:interface] = Regexp.last_match(2)
442 when "Raw Size" then disk[:size] = memory_to_disk_size(Regexp.last_match(2).sub(/\s*\[.*\]$/, ""))
443 when "Inquiry Data" then disk[:vendor], disk[:model], disk[:serial_number] = Regexp.last_match(2).split
445 elsif array && line =~ /^(\S.*\S)\s*:\s+(\S.*)$/
446 case Regexp.last_match(1)
447 when "RAID Level" then array[:raid_level] = Regexp.last_match(2).scan(/Primary-(\d+)/).first.first
448 when "Size" then array[:size] = Regexp.last_match(2)
453 IO.popen(%w(megacli -PDList -aAll -NoLog)).each do |line|
454 if line =~ /^Adapter #(\d+)$/
455 controller = controllers[Regexp.last_match(1).to_i]
456 elsif controller && line =~ /^Enclosure Device ID: \d+$/
458 :controller => controller[:id]
460 elsif disk && line =~ /^WWN:\s+(\S+)$/
461 unless devices[:disks].find { |d| d[:wwn] == Regexp.last_match(1) }
462 disk[:id] = devices[:disks].count
463 disk[:wwn] = Regexp.last_match(1)
465 devices[:disks] << disk
467 elsif disk && line =~ /^(\S.*\S)\s*:\s+(\S.*)$/
468 case Regexp.last_match(1)
469 when "Device Id" then disk[:smart_device] = "megaraid,#{Regexp.last_match(2)}"
470 when "WWN" then disk[:wwn] = Regexp.last_match(2)
471 when "PD Type" then disk[:interface] = Regexp.last_match(2)
472 when "Raw Size" then disk[:size] = memory_to_disk_size(Regexp.last_match(2).sub(/\s*\[.*\]$/, ""))
473 when "Inquiry Data" then disk[:vendor], disk[:model], disk[:serial_number] = Regexp.last_match(2).split
478 controllers.each do |controller|
479 if device = Dir.glob("/sys/bus/pci/devices/#{controller[:pci_slot]}/host*/target*:2:0/*/scsi_generic/sg*").first
480 controller[:device] = "/dev/#{File.basename(device)}"
485 def find_mpt_disks(devices)
488 IO.popen(%w(sas2ircu list)).each do |line|
489 next unless line =~ /^\s+(\d+)\s+(\S+)\s+\h+h\s+\h+h\s+(\S+)\s+\h+h\s+\h+h\s*$/
490 controllers[Regexp.last_match(1).to_i] = {
491 :id => devices[:controllers].count,
492 :model => Regexp.last_match(2),
493 :pci_slot => Regexp.last_match(3).sub(/^(\h{2})h:(\h{2})h:(\h{2})h:0(\h)h$/, "00\\1:\\2:\\3.\\4"),
498 devices[:controllers] << controllers[Regexp.last_match(1).to_i]
501 controllers.each_with_index do |controller, index|
508 IO.popen(["sas2ircu", index.to_s, "display"]).each do |line|
509 if line =~ /^IR volume (\d+)$/
511 :id => devices[:arrays].count,
512 :controller => controller[:id],
513 :number => Regexp.last_match(1),
517 devices[:arrays] << array
518 controller[:arrays] << array[:id]
521 elsif line =~ /^Device is a Hard disk$/
523 :id => devices[:disks].count,
524 :controller => controller[:id],
528 devices[:disks] << disk
529 controller[:disks] << disk[:id]
532 elsif disk && line =~ /^ (\S.*\S)\s+:\s+(.*\S)\s*$/
533 case Regexp.last_match(1)
534 when "Enclosure #" then disk[:location] = Regexp.last_match(2)
535 when "Slot #" then disk[:location] = "#{disk[:location]}:#{Regexp.last_match(2)}"
536 when "SAS Address" then disk[:device] = find_sas_device(Regexp.last_match(2).tr("-", ""))
537 when "Size (in MB)/(in sectors)" then disk[:size] = memory_to_disk_size("#{Regexp.last_match(2).split('/').first} MB")
538 when "Manufacturer" then disk[:vendor] = Regexp.last_match(2)
539 when "Model Number" then disk[:model] = Regexp.last_match(2)
540 when "Firmware Revision" then disk[:firmware_version] = Regexp.last_match(2)
541 when "Serial Number" then disk[:serial_number] = Regexp.last_match(2)
542 when "Protocol" then disk[:interface] = Regexp.last_match(2)
544 elsif array && line =~ /^ PHY\[\d+\] Enclosure#\/Slot#\s+:\s+(\d+:\d+)\s*$/
545 array[:disks] << Regexp.last_match(1)
546 elsif array && line =~ /^ (\S.*\S)\s+:\s+(.*\S)\s*$/
547 case Regexp.last_match(1)
548 when "Volume wwid" then array[:device] = find_sas_device(Regexp.last_match(2))
549 when "RAID level" then array[:raid_level] = Regexp.last_match(2).sub(/^RAID/, "")
550 when "Size (in MB)" then array[:size] = "#{Regexp.last_match(2)} MB"
552 elsif line =~ /^ (\S.*\S)\s+:\s+(.*\S)\s*$/
553 case Regexp.last_match(1)
554 when "BIOS version" then controller[:bios_version] = Regexp.last_match(2)
555 when "Firmware version" then controller[:firmware_version] = Regexp.last_match(2)
560 arrays.each do |array|
561 array[:disks].map! do |location|
562 disk = disks.find { |disk| disk[:location] == location }
564 disk[:arrays] << array[:id]
571 def find_adaptec_disks(devices)
572 controller_count = IO.popen(%w(arcconf getconfig 0)).first.scan(/^Controllers found: (\d+)$/).first.first.to_i
574 1.upto(controller_count).each do |controller_number|
576 :id => devices[:controllers].count,
577 :number => controller_number,
582 devices[:controllers] << controller
590 IO.popen(["arcconf", "getconfig", controller_number.to_s]).each do |line|
591 if line =~ /^Logical device number (\d+)$/
593 :id => devices[:arrays].count,
594 :controller => controller[:id],
595 :number => Regexp.last_match(1).to_i,
599 devices[:arrays] << array
600 controller[:arrays] << array[:id]
603 elsif line =~ /^ Device #(\d+)$/
605 elsif line =~ /^ Device is a Hard drive$/
607 :id => devices[:disks].count,
608 :controller => controller[:id],
612 devices[:disks] << disk
613 controller[:disks] << disk[:id]
616 elsif disk && line =~ /^ Reported Channel,Device\(T:L\)\s*:\s+(\d+),(\d+)\(\d+:0\)\s*$/
617 disk[:channel_number] = Regexp.last_match(1)
618 disk[:device_number] = Regexp.last_match(1)
619 elsif disk && line =~ /^ (\S.*\S)\s*:\s+(\S.*\S)\s*$/
620 case Regexp.last_match(1)
621 when "Reported Location" then disk[:location] = Regexp.last_match(2)
622 when "Vendor" then disk[:vendor] = Regexp.last_match(2)
623 when "Model" then disk[:model] = Regexp.last_match(2)
624 when "Firmware" then disk[:firmware_version] = Regexp.last_match(2)
625 when "Serial" then disk[:serial_number] = Regexp.last_match(2)
626 when "World-wide name" then disk[:wwn] = Regexp.last_match(2)
627 when "Total Size" then disk[:size] = memory_to_disk_size(Regexp.last_match(2))
628 when "Size" then disk[:size] = memory_to_disk_size(Regexp.last_match(2))
630 elsif array && line =~ / Present \(Controller:\d+,((?:Connector|Enclosure):\d+,(?:Device|Slot):\d+)\) /
631 array[:disks] << Regexp.last_match(1).tr(":", " ").gsub(",", ", ")
632 elsif array && line =~ /^ (\S.*\S)\s*:\s+(\S.*\S)\s*$/
633 case Regexp.last_match(1)
634 when "RAID level" then array[:raid_level] = Regexp.last_match(2)
635 when "Size" then array[:size] = memory_to_disk_size(Regexp.last_match(2))
637 elsif line =~ /^ (\S.*\S)\s*:\s+(\S.*\S)\s*$/
638 case Regexp.last_match(1)
639 when "Controller Model" then controller[:model] = Regexp.last_match(2)
640 when "Controller Serial Number" then controller[:serial_number] = Regexp.last_match(2)
641 when "Controller World Wide Name" then controller[:wwn] = Regexp.last_match(2)
642 when "BIOS" then controller[:bios_version] = Regexp.last_match(2)
643 when "Firmware" then controller[:firmware_version] = Regexp.last_match(2)
648 host = Dir.glob("/sys/class/scsi_host/host*").find do |host|
649 read_sysctl_file("#{host}/serial_number") == controller[:serial_number]
652 arrays.each do |array|
653 array_number = array[:number]
654 device = Dir.glob("#{host}/device/target*:0:#{array_number}/*:0:#{array_number}:0/block/*").first
656 array[:device] = "/dev/#{File.basename(device)}"
658 array[:disks].map! do |location|
659 disk = disks.find { |disk| disk[:location] == location }
661 device_number = disk[:device_number]
662 device = Dir.glob("#{host}/device/target*:1:#{device_number}/*:1:#{device_number}:0/scsi_generic/*").first
664 disk[:device] = "/dev/#{File.basename(device)}"
666 disk[:arrays] << array[:id]
673 def find_areca_disks(devices)
675 :id => devices[:controllers].count,
680 devices[:controllers] << controller
682 IO.popen(%w(/opt/areca/x86_64/cli64 sys info)).each do |line|
683 next unless line =~ /^(\S.*\S)\s+:\s+(.*\S)\s*$/
685 case Regexp.last_match(1)
686 when "Firmware Version" then controller[:firmware_version] = Regexp.last_match(2)
687 when "BOOT ROM Version" then controller[:bios_version] = Regexp.last_match(2)
688 when "Serial Number" then controller[:serial_number] = Regexp.last_match(2)
689 when "Controller Name" then controller[:model] = Regexp.last_match(2)
693 path = Dir.glob("/sys/bus/pci/devices/*/host*/scsi_host/host*/host_fw_model").find do |file|
694 read_sysctl_file(file) == controller[:model]
697 controller[:pci_slot] = File.basename(File.expand_path("#{path}/../../../.."))
698 controller[:device] = File.basename(Dir.glob(File.expand_path("#{path}/../../../target0:0:16/0:0:16:0/scsi_generic/*")).first)
702 IO.popen(%w(/opt/areca/x86_64/cli64 vsf info)).each do |line|
703 next unless line =~ /^\s+(\d+)\s+/
705 :id => devices[:arrays].count,
706 :number => Regexp.last_match(1),
707 :controller => controller[:id],
711 devices[:arrays] << array
712 controller[:arrays] << array[:id]
717 arrays.each do |array|
718 IO.popen(["/opt/areca/x86_64/cli64", "vsf", "info", "vol=#{array[:number]}"]).each do |line|
719 if line =~ /^SCSI Ch\/Id\/Lun\s+:\s+(\d+)\/(\d+)\/(\d+)\s*$/
720 pci_slot = controller[:pci_slot]
721 channel = Regexp.last_match(1).to_i
722 id = Regexp.last_match(2).to_i
723 lun = Regexp.last_match(3).to_i
725 device = Dir.glob("/sys/bus/pci/devices/#{pci_slot}/host*/target*:0:0/0:#{channel}:#{id}:#{lun}/block/*").first
727 array[:device] = "/dev/#{File.basename(device)}"
728 elsif line =~ /^(\S.*\S)\s+:\s+(.*\S)\s*$/
729 case Regexp.last_match(1)
730 when "Volume Set Name" then array[:volume_set] = Regexp.last_match(2)
731 when "Raid Set Name" then array[:raid_set] = Regexp.last_match(2)
732 when "Volume Capacity" then array[:size] = format_disk_size(Regexp.last_match(2).to_f * 1000 * 1000)
733 when "Raid Level" then array[:raid_level] = Regexp.last_match(2).sub(/^Raid/, "")
741 IO.popen(%w(/opt/areca/x86_64/cli64 disk info)).each do |line|
742 next unless line =~ /^\s+(\d+)\s+.*\s+\d+\.\d+GB\s+(\S.*\S)\s*$/
743 next if Regexp.last_match(2) == "N.A."
746 :id => devices[:disks].count,
747 :number => Regexp.last_match(1),
748 :controller => controller[:id],
752 devices[:disks] << disk
753 controller[:disks] << disk[:id]
755 if array = arrays.find { |array| array[:raid_set] == Regexp.last_match(2) }
756 disk[:arrays] << array[:id]
757 array[:disks] << disk[:id]
764 IO.popen(["/opt/areca/x86_64/cli64", "disk", "info", "drv=#{disk[:number]}"]).each do |line|
765 if line =~ /^IDE Channel\s+:\s+(\d+)\s*$/i
766 disk[:smart_device] = "areca,#{Regexp.last_match(1)}"
767 elsif line =~ /^Device Location\s+:\s+Enclosure#(\d+) Slot#?\s*0*(\d+)\s*$/i
768 disk[:smart_device] = "areca,#{Regexp.last_match(2)}/#{Regexp.last_match(1)}"
769 elsif line =~ /^(\S.*\S)\s+:\s+(.*\S)\s*$/
770 case Regexp.last_match(1)
771 when "Model Name" then disk[:vendor], disk[:model] = Regexp.last_match(2).split
772 when "Serial Number" then disk[:serial_number] = Regexp.last_match(2)
773 when "Disk Capacity" then disk[:size] = format_disk_size(Regexp.last_match(2).to_f * 1000 * 1000)
782 :pvs => find_lvm_pvs,
783 :vgs => find_lvm_vgs,
789 IO.popen(["pvdisplay", "-c"]).each_with_object({}) do |line, pvs|
790 fields = line.strip.split(":")
794 :pv_size => fields[2],
795 :pv_status => fields[4],
796 :pe_size => fields[7],
797 :pe_total => fields[8],
798 :pe_free => fields[9],
799 :pe_allocated => fields[10],
800 :pv_uuid => fields[11]
806 IO.popen(["vgdisplay", "-c"]).each_with_object({}) do |line, vgs|
807 fields = line.strip.split(":")
810 :vg_access => fields[1],
811 :vg_status => fields[2],
812 :lv_maximum => fields[4],
813 :lv_count => fields[5],
814 :lv_open => fields[6],
815 :pv_maximum => fields[8],
816 :pv_current => fields[9],
817 :pv_actual => fields[10],
818 :vg_size => fields[11],
819 :pe_size => fields[12],
820 :pe_total => fields[13],
821 :pe_allocated => fields[14],
822 :pe_free => fields[15],
823 :vg_uuid => fields[16]
829 IO.popen(["lvdisplay", "-c"]).each_with_object({}) do |line, lvs|
830 fields = line.strip.split(":")
834 :lv_access => fields[2],
835 :lv_status => fields[3],
836 :lv_open => fields[5],
837 :lv_size => fields[6],
838 :le_count => fields[7],
839 :lv_minor => fields[11],
840 :lv_major => fields[12]
848 IO.popen(["dmidecode", "-t", "39"]).each_with_object([]) do |line, devices|
849 if line =~ /^System Power Supply\s*$/
851 elsif device && line =~ /^\s+([A-Z ]+):\s+(.*)\s*$/i
852 device[Regexp.last_match(1).tr(" ", "_").downcase.to_sym] = Regexp.last_match(2).strip
853 elsif device && line =~ /^\s*$/
863 IO.popen(["ipmitool", "mc", "info"]).each_with_object([]) do |line, devices|
864 if line =~ /(Manufacturer [A-Z ]+[A-Z])\s*:\s+(.*\S)\s+\(.*\)\s*$/i
865 device[Regexp.last_match(1).tr(" ", "_").downcase.to_sym] = Regexp.last_match(2)
866 elsif line =~ /(Product [A-Z ]+[A-Z])\s*:\s+(.*\S)\s+\(.*\)\s*$/i
867 device[Regexp.last_match(1).tr(" ", "_").downcase.to_sym] = Regexp.last_match(2)
868 elsif line =~ /([A-Z ]+[A-Z])\s*:\s+(.*\S)\s*$/i
869 device[Regexp.last_match(1).tr(" ", "_").downcase.to_sym] = Regexp.last_match(2)
873 IO.popen(["ipmitool", "mc", "guid"]).each_with_object([]) do |line, devices|
874 if line =~ /^System GUID\s*:\s+(\S+)\s*$/
875 device[:system_guid] = Regexp.last_match(1)
882 collect_data(:default) do
885 hardware[:pci] = pci_devices
886 hardware[:network] = network_devices
887 hardware[:memory] = memory_devices
888 hardware[:disk] = disk_devices
889 hardware[:lvm] = lvm_devices
890 hardware[:psu] = psu_devices
891 hardware[:mc] = mc_device