]> git.openstreetmap.org Git - chef.git/blob - cookbooks/hardware/recipes/default.rb
41eae5a5b63c245888978d7fcbb9df6487c87ab9
[chef.git] / cookbooks / hardware / recipes / default.rb
1 #
2 # Cookbook Name:: hardware
3 # Recipe:: default
4 #
5 # Copyright 2012, OpenStreetMap Foundation
6 #
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
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 include_recipe "tools"
21 include_recipe "munin"
22
23 ohai_plugin "hardware" do
24   template "ohai.rb.erb"
25 end
26
27 case node[:cpu][:"0"][:vendor_id]
28 when "GenuineIntel"
29   package "intel-microcode"
30 when "AuthenticAMD"
31   package "amd64-microcode"
32 end
33
34 if node[:dmi] && node[:dmi][:system]
35   case node[:dmi][:system][:manufacturer]
36   when "empty"
37     manufacturer = node[:dmi][:base_board][:manufacturer]
38     product = node[:dmi][:base_board][:product_name]
39   else
40     manufacturer = node[:dmi][:system][:manufacturer]
41     product = node[:dmi][:system][:product_name]
42   end
43 else
44   manufacturer = "Unknown"
45   product = "Unknown"
46 end
47
48 units = []
49
50 if node[:roles].include?("bytemark") || node[:roles].include?("exonetric")
51   units << "0"
52 end
53
54 case manufacturer
55 when "HP"
56   package "hponcfg"
57
58   package "hp-health" do
59     action :install
60     notifies :restart, "service[hp-health]"
61   end
62
63   service "hp-health" do
64     action [:enable, :start]
65     supports :status => true, :restart => true
66   end
67
68   units << "1"
69 when "TYAN"
70   units << "0"
71 when "TYAN Computer Corporation"
72   units << "0"
73 when "Supermicro"
74   case product
75   when "H8DGU", "X9SCD", "X7DBU", "X7DW3", "X9DR7/E-(J)LN4F", "X9DR3-F", "X9DRW", "SYS-2028U-TN24R4T+", "Super Server"
76     units << "1"
77   else
78     units << "0"
79   end
80 when "IBM"
81   units << "0"
82 end
83
84 # Remove legacy HP G4 support which breaks modern hp-health 10.4
85 if manufacturer == "HP"
86   %w[/opt/hp/hp-health/bin/hpasmd /usr/lib/libhpasmintrfc.so.3.0 %/usr/lib/libhpasmintrfc.so.3 /usr/lib/libhpasmintrfc.so].each do |filename|
87     file filename do
88       action :delete
89     end
90   end
91
92   directory "/opt/hp/hp-legacy" do
93     action :delete
94     recursive true
95   end
96 end
97
98 units.sort.uniq.each do |unit|
99   if node[:lsb][:release].to_f >= 16.04
100     service "serial-getty@ttyS#{unit}" do
101       action [:enable, :start]
102     end
103   else
104     file "/etc/init/ttySttyS#{unit}.conf" do
105       action :delete
106     end
107
108     template "/etc/init/ttyS#{unit}.conf" do
109       source "tty.conf.erb"
110       owner "root"
111       group "root"
112       mode 0o644
113       variables :unit => unit
114     end
115
116     service "ttyS#{unit}" do
117       provider Chef::Provider::Service::Upstart
118       action [:enable, :start]
119       supports :status => true, :restart => true, :reload => false
120       subscribes :restart, "template[/etc/init/ttyS#{unit}.conf]"
121     end
122   end
123 end
124
125 # if we need a different / special kernel version to make the hardware
126 # work (e.g: https://github.com/openstreetmap/operations/issues/45) then
127 # ensure that we have the package installed. the grub template will
128 # make sure that this is the default on boot.
129 if node[:hardware][:grub][:kernel]
130   kernel_version = node[:hardware][:grub][:kernel]
131
132   package "linux-image-#{kernel_version}-generic"
133   package "linux-image-extra-#{kernel_version}-generic"
134   package "linux-headers-#{kernel_version}-generic"
135
136   boot_device = IO.popen(["df", "/boot"]).readlines.last.split.first
137   boot_uuid = IO.popen(["blkid", "-o", "value", "-s", "UUID", boot_device]).readlines.first.chomp
138   grub_entry = "gnulinux-advanced-#{boot_uuid}>gnulinux-#{kernel_version}-advanced-#{boot_uuid}"
139 else
140   grub_entry = "0"
141 end
142
143 if File.exist?("/etc/default/grub")
144   execute "update-grub" do
145     action :nothing
146     command "/usr/sbin/update-grub"
147   end
148
149   template "/etc/default/grub" do
150     source "grub.erb"
151     owner "root"
152     group "root"
153     mode 0o644
154     variables :units => units, :entry => grub_entry
155     notifies :run, "execute[update-grub]"
156   end
157 end
158
159 execute "update-initramfs" do
160   action :nothing
161   command "update-initramfs -u -k all"
162   user "root"
163   group "root"
164 end
165
166 template "/etc/initramfs-tools/conf.d/mdadm" do
167   source "initramfs-mdadm.erb"
168   owner "root"
169   group "root"
170   mode 0o644
171   notifies :run, "execute[update-initramfs]"
172 end
173
174 package "haveged"
175 service "haveged" do
176   action [:enable, :start]
177 end
178
179 package "ipmitool" if node[:kernel][:modules].include?("ipmi_si")
180
181 package "irqbalance"
182
183 template "/etc/default/irqbalance" do
184   source "irqbalance.erb"
185   owner "root"
186   group "root"
187   mode 0o644
188 end
189
190 service "irqbalance" do
191   action [:start, :enable]
192   supports :status => false, :restart => true, :reload => false
193   subscribes :restart, "template[/etc/default/irqbalance]"
194 end
195
196 # Link Layer Discovery Protocol Daemon
197 package "lldpd"
198 service "lldpd" do
199   action [:start, :enable]
200   supports :status => true, :restart => true, :reload => true
201 end
202
203 package "mcelog"
204
205 %w[bus cache dimm iomca page socket-memory unknown].each do |trigger|
206   template "/etc/mcelog/#{trigger}-error-trigger.local" do
207     source "mcelog-trigger.erb"
208     owner "root"
209     group "root"
210     mode 0o755
211   end
212 end
213
214 service "mcelog" do
215   action [:start, :enable]
216   supports :status => true, :restart => true, :reload => false
217 end
218
219 tools_packages = []
220 status_packages = {}
221
222 node[:kernel][:modules].each_key do |modname|
223   case modname
224   when "cciss"
225     tools_packages << "ssacli"
226     status_packages["cciss-vol-status"] ||= []
227   when "hpsa"
228     tools_packages << "ssacli"
229     status_packages["cciss-vol-status"] ||= []
230   when "mptsas"
231     tools_packages << "lsiutil"
232     status_packages["mpt-status"] ||= []
233   when "mpt2sas", "mpt3sas"
234     tools_packages << "sas2ircu"
235     status_packages["sas2ircu-status"] ||= []
236   when "megaraid_mm"
237     tools_packages << "megactl"
238     status_packages["megaraid-status"] ||= []
239   when "megaraid_sas"
240     tools_packages << "megacli"
241     status_packages["megaclisas-status"] ||= []
242   when "aacraid"
243     tools_packages << "arcconf"
244     status_packages["aacraid-status"] ||= []
245   when "arcmsr"
246     tools_packages << "areca"
247   end
248 end
249
250 node[:block_device].each do |name, attributes|
251   next unless attributes[:vendor] == "HP" && attributes[:model] == "LOGICAL VOLUME"
252
253   if name =~ /^cciss!(c[0-9]+)d[0-9]+$/
254     status_packages["cciss-vol-status"] |= ["cciss/#{Regexp.last_match[1]}d0"]
255   else
256     Dir.glob("/sys/block/#{name}/device/scsi_generic/*").each do |sg|
257       status_packages["cciss-vol-status"] |= [File.basename(sg)]
258     end
259   end
260 end
261
262 %w[ssacli lsiutil sas2ircu megactl megacli arcconf].each do |tools_package|
263   if tools_packages.include?(tools_package)
264     package tools_package
265   else
266     package tools_package do
267       action :purge
268     end
269   end
270 end
271
272 if tools_packages.include?("areca")
273   include_recipe "git"
274
275   git "/opt/areca" do
276     action :sync
277     repository "git://chef.openstreetmap.org/areca.git"
278     user "root"
279     group "root"
280   end
281 else
282   directory "/opt/areca" do
283     action :delete
284     recursive true
285   end
286 end
287
288 ["cciss-vol-status", "mpt-status", "sas2ircu-status", "megaraid-status", "megaclisas-status", "aacraid-status"].each do |status_package|
289   if status_packages.include?(status_package)
290     package status_package
291
292     template "/etc/default/#{status_package}d" do
293       source "raid.default.erb"
294       owner "root"
295       group "root"
296       mode 0o644
297       variables :devices => status_packages[status_package]
298     end
299
300     service "#{status_package}d" do
301       action [:start, :enable]
302       supports :status => false, :restart => true, :reload => false
303       subscribes :restart, "template[/etc/default/#{status_package}d]"
304     end
305   else
306     package status_package do
307       action :purge
308     end
309
310     file "/etc/default/#{status_package}d" do
311       action :delete
312     end
313   end
314 end
315
316 disks = if node[:hardware][:disk]
317           node[:hardware][:disk][:disks]
318         else
319           []
320         end
321
322 intel_ssds = disks.select { |d| d[:vendor] == "INTEL" && d[:model] =~ /^SSD/ }
323
324 nvmes = if node[:hardware][:pci]
325           node[:hardware][:pci].values.select { |pci| pci[:driver] == "nvme" }
326         else
327           []
328         end
329
330 intel_nvmes = nvmes.select { |pci| pci[:vendor_name] == "Intel Corporation" }
331
332 if !intel_ssds.empty? || !intel_nvmes.empty?
333   package "unzip"
334
335   remote_file "#{Chef::Config[:file_cache_path]}/Intel_SSD_Data_Center_Tool_3.0.7_Linux.zip" do
336     source "https://downloadmirror.intel.com/27144/eng/Intel_SSD_Data_Center_Tool_3.0.7_Linux.zip"
337   end
338
339   execute "#{Chef::Config[:file_cache_path]}/Intel_SSD_Data_Center_Tool_3.0.7_Linux.zip" do
340     command "unzip Intel_SSD_Data_Center_Tool_3.0.7_Linux.zip isdct_3.0.7.401-17_amd64.deb"
341     cwd Chef::Config[:file_cache_path]
342     user "root"
343     group "root"
344     not_if { File.exist?("#{Chef::Config[:file_cache_path]}/isdct_3.0.7.401-17_amd64.deb") }
345   end
346
347   dpkg_package "isdct" do
348     version "3.0.7.401-17"
349     source "#{Chef::Config[:file_cache_path]}/isdct_3.0.7.401-17_amd64.deb"
350   end
351 end
352
353 disks = disks.map do |disk|
354   next if disk[:state] == "spun_down"
355
356   if disk[:smart_device]
357     controller = node[:hardware][:disk][:controllers][disk[:controller]]
358     device = controller[:device].sub("/dev/", "")
359     smart = disk[:smart_device]
360
361     if device.start_with?("cciss/") && smart =~ /^cciss,(\d+)$/
362       array = node[:hardware][:disk][:arrays][disk[:arrays].first]
363       munin = "cciss-3#{array[:wwn]}-#{Regexp.last_match(1)}"
364     elsif smart =~ /^.*,(\d+)$/
365       munin = "#{device}-#{Regexp.last_match(1)}"
366     elsif smart =~ %r{^.*,(\d+)/(\d+)$}
367       munin = "#{device}-#{Regexp.last_match(1)}:#{Regexp.last_match(2)}"
368     end
369   elsif disk[:device]
370     device = disk[:device].sub("/dev/", "")
371     munin = device
372   end
373
374   next if device.nil?
375
376   Hash[
377     :device => device,
378     :smart => smart,
379     :munin => munin,
380     :hddtemp => munin.tr("-:", "_")
381   ]
382 end
383
384 smartd_service = if node[:lsb][:release].to_f >= 16.04
385                    "smartd"
386                  else
387                    "smartmontools"
388                  end
389
390 disks = disks.compact
391
392 if disks.count.positive?
393   package "smartmontools"
394
395   template "/usr/local/bin/smartd-mailer" do
396     source "smartd-mailer.erb"
397     owner "root"
398     group "root"
399     mode 0o755
400   end
401
402   template "/etc/smartd.conf" do
403     source "smartd.conf.erb"
404     owner "root"
405     group "root"
406     mode 0o644
407     variables :disks => disks
408   end
409
410   template "/etc/default/smartmontools" do
411     source "smartmontools.erb"
412     owner "root"
413     group "root"
414     mode 0o644
415   end
416
417   service smartd_service do
418     action [:enable, :start]
419     subscribes :reload, "template[/etc/smartd.conf]"
420     subscribes :restart, "template[/etc/default/smartmontools]"
421   end
422
423   # Don't try and do munin monitoring of disks behind
424   # an Areca controller as they only allow one thing to
425   # talk to the controller at a time and smartd will
426   # throw errors if it clashes with munin
427   disks = disks.reject { |disk| disk[:smart]&.start_with?("areca,") }
428
429   disks.each do |disk|
430     munin_plugin "smart_#{disk[:munin]}" do
431       target "smart_"
432       conf "munin.smart.erb"
433       conf_variables :disk => disk
434     end
435   end
436 else
437   service smartd_service do
438     action [:stop, :disable]
439   end
440 end
441
442 if disks.count.positive?
443   munin_plugin "hddtemp_smartctl" do
444     conf "munin.hddtemp.erb"
445     conf_variables :disks => disks
446   end
447 else
448   munin_plugin "hddtemp_smartctl" do
449     action :delete
450     conf "munin.hddtemp.erb"
451   end
452 end
453
454 plugins = Dir.glob("/etc/munin/plugins/smart_*").map { |p| File.basename(p) } -
455           disks.map { |d| "smart_#{d[:munin]}" }
456
457 plugins.each do |plugin|
458   munin_plugin plugin do
459     action :delete
460   end
461 end
462
463 if File.exist?("/etc/mdadm/mdadm.conf")
464   mdadm_conf = edit_file "/etc/mdadm/mdadm.conf" do |line|
465     line.gsub!(/^MAILADDR .*$/, "MAILADDR admins@openstreetmap.org")
466
467     line
468   end
469
470   file "/etc/mdadm/mdadm.conf" do
471     owner "root"
472     group "root"
473     mode 0o644
474     content mdadm_conf
475   end
476
477   service "mdadm" do
478     action :nothing
479     subscribes :restart, "file[/etc/mdadm/mdadm.conf]"
480   end
481 end
482
483 template "/etc/modules" do
484   source "modules.erb"
485   owner "root"
486   group "root"
487   mode 0o644
488 end
489
490 service "kmod" do
491   action :nothing
492   subscribes :start, "template[/etc/modules]"
493 end
494
495 if node[:hardware][:watchdog]
496   package "watchdog"
497
498   template "/etc/default/watchdog" do
499     source "watchdog.erb"
500     owner "root"
501     group "root"
502     mode 0o644
503     variables :module => node[:hardware][:watchdog]
504   end
505
506   service "watchdog" do
507     action [:enable, :start]
508   end
509 end
510
511 unless Dir.glob("/sys/class/hwmon/hwmon*").empty?
512   package "lm-sensors"
513
514   Dir.glob("/sys/devices/platform/coretemp.*").each do |coretemp|
515     cpu = File.basename(coretemp).sub("coretemp.", "").to_i
516     chip = format("coretemp-isa-%04d", cpu)
517
518     temps = if File.exist?("#{coretemp}/name")
519               Dir.glob("#{coretemp}/temp*_input").map do |temp|
520                 File.basename(temp).sub("temp", "").sub("_input", "").to_i
521               end.sort
522             else
523               Dir.glob("#{coretemp}/hwmon/hwmon*/temp*_input").map do |temp|
524                 File.basename(temp).sub("temp", "").sub("_input", "").to_i
525               end.sort
526             end
527
528     if temps.first == 1
529       node.default[:hardware][:sensors][chip][:temps][:temp1][:label] = "CPU #{cpu}"
530       temps.shift
531     end
532
533     temps.each_with_index do |temp, index|
534       node.default[:hardware][:sensors][chip][:temps]["temp#{temp}"][:label] = "CPU #{cpu} Core #{index}"
535     end
536   end
537
538   execute "/etc/sensors.d/chef.conf" do
539     action :nothing
540     command "/usr/bin/sensors -s"
541     user "root"
542     group "root"
543   end
544
545   template "/etc/sensors.d/chef.conf" do
546     source "sensors.conf.erb"
547     owner "root"
548     group "root"
549     mode 0o644
550     notifies :run, "execute[/etc/sensors.d/chef.conf]"
551   end
552 end