+ def find_adaptec_disks(devices)
+ controller_count = IO.popen(%w(arcconf getconfig 0)).first.scan(/^Controllers Found: (\d+)$/i).first.first.to_i
+
+ 1.upto(controller_count).each do |controller_number|
+ controller = {
+ :id => devices[:controllers].count,
+ :number => controller_number,
+ :type => "adaptec",
+ :arrays => [],
+ :disks => []
+ }
+
+ devices[:controllers] << controller
+
+ arrays = []
+ disks = []
+
+ array = nil
+ disk = nil
+
+ IO.popen(["arcconf", "getconfig", controller_number.to_s]).each do |line|
+ if line =~ /^Logical Device Number (\d+)$/i
+ array = {
+ :id => devices[:arrays].count,
+ :controller => controller[:id],
+ :number => Regexp.last_match(1).to_i,
+ :disks => []
+ }
+
+ devices[:arrays] << array
+ controller[:arrays] << array[:id]
+
+ arrays << array
+ elsif line =~ /^ Device #(\d+)$/
+ disk = nil
+ elsif line =~ /^ Device is a Hard drive$/
+ disk = {
+ :id => devices[:disks].count,
+ :controller => controller[:id],
+ :arrays => []
+ }
+
+ devices[:disks] << disk
+ controller[:disks] << disk[:id]
+
+ disks << disk
+ elsif disk && line =~ /^ Reported Channel,Device\(T:L\)\s*:\s+(\d+),(\d+)\(\d+:0\)\s*$/
+ disk[:channel_number] = Regexp.last_match(1)
+ disk[:device_number] = Regexp.last_match(2)
+ elsif disk && line =~ /^ State\s*:\s+(\S.*\S)\s*$/
+ case Regexp.last_match(1)
+ when "Online" then disk[:status] = "online"
+ when "Online (JBOD)" then disk[:status] = "online"
+ when "Hot Spare" then disk[:status] = "hotspare"
+ when "Ready" then disk[:status] = "unconfigured"
+ when "Global Hot-Spare" then disk[:status] = "hostspare"
+ when "Dedicated Hot-Spare" then disk[:status] = "hotspare"
+ else disk[:status] = "unknown"
+ end
+ elsif disk && line =~ /^ (\S.*\S)\s*:\s+(\S.*\S)\s*$/
+ case Regexp.last_match(1)
+ when "Reported Location" then disk[:location] = Regexp.last_match(2)
+ when "Vendor" then disk[:vendor] = Regexp.last_match(2)
+ when "Model" then disk[:model] = Regexp.last_match(2)
+ when "Firmware" then disk[:firmware_version] = Regexp.last_match(2)
+ when "Serial number" then disk[:serial_number] = Regexp.last_match(2)
+ when "Serial Number" then disk[:serial_number] = Regexp.last_match(2)
+ when "World-wide name" then disk[:wwn] = Regexp.last_match(2)
+ when "World-wide Name" then disk[:wwn] = Regexp.last_match(2)
+ when "Total Size" then disk[:size] = memory_to_disk_size(Regexp.last_match(2))
+ when "Size" then disk[:size] = memory_to_disk_size(Regexp.last_match(2))
+ end
+ elsif array && line =~ / Present \(.*((?:Connector|Enclosure):\d+,\s*(?:Device|Slot):\d+)\) /
+ array[:disks] << Regexp.last_match(1).tr(":", " ").gsub(/,\s*/, ", ")
+ elsif array && line =~ /^ Status of Logical Device\s*:\s+(\S.*\S)\s*$/
+ case Regexp.last_match(1)
+ when "Optimal" then array[:status] = "optimal"
+ else array[:status] = "unknown"
+ end
+ elsif array && line =~ /^ (\S.*\S)\s*:\s+(\S.*\S)\s*$/
+ case Regexp.last_match(1)
+ when "RAID level" then array[:raid_level] = Regexp.last_match(2)
+ when "RAID Level" then array[:raid_level] = Regexp.last_match(2)
+ when "Size" then array[:size] = memory_to_disk_size(Regexp.last_match(2))
+ end
+ elsif line =~ /^ (\S.*\S)\s*:\s+(\S.*\S)\s*$/
+ case Regexp.last_match(1)
+ when "Controller Model" then controller[:model] = Regexp.last_match(2)
+ when "Controller Serial Number" then controller[:serial_number] = Regexp.last_match(2)
+ when "Controller World Wide Name" then controller[:wwn] = Regexp.last_match(2)
+ when "BIOS" then controller[:bios_version] = Regexp.last_match(2)
+ when "Firmware" then controller[:firmware_version] = Regexp.last_match(2)
+ end
+ elsif line =~ /^ Serial Number\s*:\s+(\S.*\S)\s*$/
+ controller[:serial_number] = Regexp.last_match(1)
+ end
+ end
+
+ host = Dir.glob("/sys/class/scsi_host/host*").find do |host|
+ read_sysctl_file("#{host}/serial_number") == controller[:serial_number]
+ end
+
+ arrays.each do |array|
+ array_number = array[:number]
+ device = Dir.glob("#{host}/device/target*:0:#{array_number}/*:0:#{array_number}:0/block/*").first
+
+ array[:device] = "/dev/#{File.basename(device)}"
+
+ array[:disks].map! do |location|
+ disk = disks.find { |disk| disk[:location] == location }
+
+ controller_number = controller[:number] - 1
+ device_number = disk[:device_number]
+
+ disk[:device] = "/dev/#{File.basename(device)}"
+ disk[:smart_device] = "aacraid,#{controller_number},0,#{device_number}"
+
+ disk[:arrays] << array[:id]
+ disk[:id]
+ end
+ end
+ end
+ end
+