2 # Cookbook Name:: hardware
5 # Copyright 2012, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 include_recipe "tools"
21 include_recipe "munin"
23 ohai_plugin "hardware" do
24 template "ohai.rb.erb"
27 case node[:cpu][:"0"][:vendor_id]
29 package "intel-microcode"
32 case node[:cpu][:"0"][:vendor_id]
34 if node[:lsb][:release].to_f >= 14.04
35 package "amd64-microcode"
39 if node[:dmi] && node[:dmi][:system]
40 case node[:dmi][:system][:manufacturer]
42 manufacturer = node[:dmi][:base_board][:manufacturer]
43 product = node[:dmi][:base_board][:product_name]
45 manufacturer = node[:dmi][:system][:manufacturer]
46 product = node[:dmi][:system][:product_name]
49 manufacturer = "Unknown"
62 when "TYAN Computer Corporation"
67 when "H8DGU", "X9SCD", "X7DBU", "X7DW3", "X9DR7/E-(J)LN4F", "X9DR3-F", "X9DRW"
79 if manufacturer == "HP" && node[:lsb][:release].to_f > 11.10
82 git "/opt/hp/hp-legacy" do
84 repository "git://chef.openstreetmap.org/hp-legacy.git"
90 link "/opt/hp/hp-health/bin/hpasmd" do
91 to "/opt/hp/hp-legacy/hpasmd"
94 link "/usr/lib/libhpasmintrfc.so.3.0" do
95 to "/opt/hp/hp-legacy/libhpasmintrfc.so.3.0"
98 link "/usr/lib/libhpasmintrfc.so.3" do
99 to "libhpasmintrfc.so.3.0"
102 link "/usr/lib/libhpasmintrfc.so" do
103 to "libhpasmintrfc.so.3.0"
108 file "/etc/init/ttySttyS#{unit}.conf" do
112 template "/etc/init/ttyS#{unit}.conf" do
113 source "tty.conf.erb"
117 variables :unit => unit, :speed => speed
120 service "ttyS#{unit}" do
121 provider Chef::Provider::Service::Upstart
122 action [:enable, :start]
123 supports :status => true, :restart => true, :reload => false
124 subscribes :restart, "template[/etc/init/ttyS#{unit}.conf]"
128 # if we need a different / special kernel version to make the hardware
129 # work (e.g: https://github.com/openstreetmap/operations/issues/45) then
130 # ensure that we have the package installed. the grub template will
131 # make sure that this is the default on boot.
132 if node[:hardware][:grub][:kernel]
133 kernel_version = node[:hardware][:grub][:kernel]
135 package "linux-image-#{kernel_version}-generic"
136 package "linux-image-extra-#{kernel_version}-generic"
137 package "linux-headers-#{kernel_version}-generic"
139 boot_device = IO.popen(["df", "/boot"]).readlines.last.split.first
140 boot_uuid = IO.popen(["blkid", "-o", "value", "-s", "UUID", boot_device]).readlines.first.chomp
141 grub_entry = "gnulinux-advanced-#{boot_uuid}>gnulinux-#{kernel_version}-advanced-#{boot_uuid}"
146 if File.exist?("/etc/default/grub")
147 execute "update-grub" do
149 command "/usr/sbin/update-grub"
152 template "/etc/default/grub" do
157 variables :unit => unit, :speed => speed, :entry => grub_entry
158 notifies :run, "execute[update-grub]"
162 execute "update-initramfs" do
164 command "update-initramfs -u -k all"
169 template "/etc/initramfs-tools/conf.d/mdadm" do
170 source "initramfs-mdadm.erb"
174 notifies :run, "execute[update-initramfs]"
179 action [:enable, :start]
182 if node[:kernel][:modules].include?("ipmi_si")
186 if node[:lsb][:release].to_f >= 12.10
189 template "/etc/default/irqbalance" do
190 source "irqbalance.erb"
196 service "irqbalance" do
197 action [:start, :enable]
198 supports :status => false, :restart => true, :reload => false
199 subscribes :restart, "template[/etc/default/irqbalance]"
206 node[:kernel][:modules].each_key do |modname|
209 tools_packages << "hpssacli"
210 status_packages["cciss-vol-status"] ||= []
212 tools_packages << "hpssacli"
213 status_packages["cciss-vol-status"] ||= []
215 tools_packages << "lsiutil"
216 # status_packages["mpt-status"] ||= []
217 when "mpt2sas", "mpt3sas"
218 tools_packages << "sas2ircu"
219 status_packages["sas2ircu-status"] ||= []
221 tools_packages << "megactl"
222 status_packages["megaraid-status"] ||= []
224 tools_packages << "megacli"
225 status_packages["megaclisas-status"] ||= []
227 tools_packages << "arcconf"
228 status_packages["aacraid-status"] ||= []
230 tools_packages << "areca"
234 node[:block_device].each do |name, attributes|
235 next unless attributes[:vendor] == "HP" && attributes[:model] == "LOGICAL VOLUME"
237 if name =~ /^cciss!(c[0-9]+)d[0-9]+$/
238 status_packages["cciss-vol-status"] |= ["cciss/#{Regexp.last_match[1]}d0"]
240 Dir.glob("/sys/block/#{name}/device/scsi_generic/*").each do |sg|
241 status_packages["cciss-vol-status"] |= [File.basename(sg)]
246 %w(hpssacli lsiutil sas2ircu megactl megacli arcconf).each do |tools_package|
247 if tools_packages.include?(tools_package)
248 package tools_package
250 package tools_package do
256 if tools_packages.include?("areca")
261 repository "git://chef.openstreetmap.org/areca.git"
266 directory "/opt/areca" do
272 ["cciss-vol-status", "mpt-status", "sas2ircu-status", "megaraid-status", "megaclisas-status", "aacraid-status"].each do |status_package|
273 if status_packages.include?(status_package)
274 package status_package
276 template "/etc/default/#{status_package}d" do
277 source "raid.default.erb"
281 variables :devices => status_packages[status_package]
284 service "#{status_package}d" do
285 action [:start, :enable]
286 supports :status => false, :restart => true, :reload => false
287 subscribes :restart, "template[/etc/default/#{status_package}d]"
290 package status_package do
294 file "/etc/default/#{status_package}d" do
302 node[:block_device].each do |name, attributes|
303 disks << { :device => name } if attributes[:vendor] == "ATA"
306 if status_packages["cciss-vol-status"] && File.exist?("/usr/sbin/cciss_vol_status")
307 status_packages["cciss-vol-status"].each do |device|
308 IO.popen(["cciss_vol_status", "-V", "/dev/#{device}"]).each do |line|
309 disks << { :device => device, :driver => "cciss", :id => Regexp.last_match[1].to_i - 1 } if line =~ / bay ([0-9]+) +HP /
314 if status_packages["megaclisas-status"] && File.exist?("/usr/sbin/megacli")
317 Dir.glob("/sys/class/scsi_host/host*") do |host|
318 driver = File.new("#{host}/proc_name").read.chomp
320 next unless driver == "megaraid_sas"
322 bus = host.sub("/sys/class/scsi_host/host", "")
323 device = File.basename(Dir.glob("/sys/bus/scsi/devices/#{bus}:*/scsi_generic/*").first)
325 IO.popen(["megacli", "-PDList", "-a#{controller}", "-NoLog"]).each do |line|
326 disks << { :device => device, :driver => "megaraid", :id => Regexp.last_match[1] } if line =~ /^Device Id: ([0-9]+)$/
328 disks.pop if line =~ /^Firmware state: Hotspare, Spun down$/
335 if tools_packages.include?("lsiutil")
336 Dir.glob("/sys/class/scsi_host/host*") do |host|
337 driver = File.new("#{host}/proc_name").read.chomp
339 next unless driver == "mptsas"
341 bus = host.sub("/sys/class/scsi_host/host", "")
343 Dir.glob("/sys/bus/scsi/devices/#{bus}:0:*/scsi_generic/*").each do |sg|
344 disks << { :device => File.basename(sg) }
349 if status_packages["sas2ircu-status"]
350 Dir.glob("/sys/class/scsi_host/host*") do |host|
351 driver = File.new("#{host}/proc_name").read.chomp
353 next unless driver == "mpt2sas" || driver == "mpt3sas"
355 bus = host.sub("/sys/class/scsi_host/host", "")
357 Dir.glob("/sys/bus/scsi/devices/#{bus}:0:*/scsi_generic/*").each do |sg|
358 next if File.directory?("#{sg}/../../block")
360 disks << { :device => File.basename(sg) }
365 if status_packages["aacraid-status"]
366 Dir.glob("/sys/class/scsi_host/host*") do |host|
367 driver = File.new("#{host}/proc_name").read.chomp
369 next unless driver == "aacraid"
371 bus = host.sub("/sys/class/scsi_host/host", "")
373 Dir.glob("/sys/bus/scsi/devices/#{bus}:1:*/scsi_generic/*").each do |sg|
374 disks << { :device => File.basename(sg) }
379 if tools_packages.include?("areca") && File.exist?("/opt/areca/x86_64/cli64")
380 device = IO.popen(["lsscsi", "-g"]).grep(%r{Areca +RAID controller .*/dev/(sg[0-9]+)}) do
384 IO.popen(["/opt/areca/x86_64/cli64", "disk", "info"]).each do |line|
385 next if line =~ /N\.A\./
387 if line =~ /^ +[0-9]+ +0*([0-9]+) +(?:Slot#|SLOT )0*([0-9]+) +/
388 enc = Regexp.last_match[1]
389 slot = Regexp.last_match[2]
391 disks << { :device => device, :driver => "areca", :id => "#{slot}/#{enc}" }
392 elsif line =~ /^ +([0-9]+) +[0-9]+ +/
393 disks << { :device => device, :driver => "areca", :id => Regexp.last_match[1] }
399 if disk[:device] =~ %r{^cciss/(.*)$}
400 id = File.read("/sys/bus/cciss/devices/#{Regexp.last_match[1]}/unique_id").chomp
402 disk[:munin] = "cciss-3#{id.downcase}"
404 disk[:munin] = disk[:device]
408 disk[:munin] = "#{disk[:munin]}-#{disk[:id].to_s.tr('/', ':')}"
411 disk[:hddtemp] = disk[:munin].tr("-:", "_")
415 package "smartmontools"
417 template "/usr/local/bin/smartd-mailer" do
418 source "smartd-mailer.erb"
424 template "/etc/smartd.conf" do
425 source "smartd.conf.erb"
429 variables :disks => disks
430 notifies :reload, "service[smartmontools]"
433 template "/etc/default/smartmontools" do
434 source "smartmontools.erb"
438 notifies :restart, "service[smartmontools]"
441 service "smartmontools" do
442 action [:enable, :start]
443 supports :status => true, :restart => true, :reload => true
446 # Don't try and do munin monitoring of disks behind
447 # an Areca controller as they only allow one thing to
448 # talk to the controller at a time and smartd will
449 # throw errors if it clashes with munin
450 disks = disks.reject { |disk| disk[:driver] == "areca" }
453 munin_plugin "smart_#{disk[:munin]}" do
455 conf "munin.smart.erb"
456 conf_variables :disk => disk
460 service "smartmontools" do
461 action [:stop, :disable]
466 munin_plugin "hddtemp_smartctl" do
467 conf "munin.hddtemp.erb"
468 conf_variables :disks => disks
471 munin_plugin "hddtemp_smartctl" do
473 conf "munin.hddtemp.erb"
477 plugins = Dir.glob("/etc/munin/plugins/smart_*").map { |p| File.basename(p) } -
478 disks.map { |d| "smart_#{d[:munin]}" }
480 plugins.each do |plugin|
481 munin_plugin plugin do
486 if File.exist?("/etc/mdadm/mdadm.conf")
487 mdadm_conf = edit_file "/etc/mdadm/mdadm.conf" do |line|
488 line.gsub!(/^MAILADDR .*$/, "MAILADDR admins@openstreetmap.org")
493 file "/etc/mdadm/mdadm.conf" do
502 subscribes :restart, "file[/etc/mdadm/mdadm.conf]"
506 template "/etc/modules" do
513 if node[:lsb][:release].to_f <= 12.10
514 service "module-init-tools" do
515 provider Chef::Provider::Service::Upstart
517 subscribes :start, "template[/etc/modules]"
521 provider Chef::Provider::Service::Upstart
523 subscribes :start, "template[/etc/modules]"
527 if node[:hardware][:watchdog]
530 template "/etc/default/watchdog" do
531 source "watchdog.erb"
535 variables :module => node[:hardware][:watchdog]
538 service "watchdog" do
539 action [:enable, :start]
543 unless Dir.glob("/sys/class/hwmon/hwmon*").empty?
546 Dir.glob("/sys/devices/platform/coretemp.*").each do |coretemp|
547 cpu = File.basename(coretemp).sub("coretemp.", "").to_i
548 chip = format("coretemp-isa-%04d", cpu)
550 if File.exist?("#{coretemp}/name")
551 temps = Dir.glob("#{coretemp}/temp*_input").map do |temp|
552 File.basename(temp).sub("temp", "").sub("_input", "").to_i
555 temps = Dir.glob("#{coretemp}/hwmon/hwmon*/temp*_input").map do |temp|
556 File.basename(temp).sub("temp", "").sub("_input", "").to_i
561 node.default[:hardware][:sensors][chip][:temps][:temp1][:label] = "CPU #{cpu}"
565 temps.each_with_index do |temp, index|
566 node.default[:hardware][:sensors][chip][:temps]["temp#{temp}"][:label] = "CPU #{cpu} Core #{index}"
570 execute "/etc/sensors.d/chef.conf" do
572 command "/usr/bin/sensors -s"
577 template "/etc/sensors.d/chef.conf" do
578 source "sensors.conf.erb"
582 notifies :run, "execute[/etc/sensors.d/chef.conf]"