]> git.openstreetmap.org Git - chef.git/blob - cookbooks/hardware/recipes/default.rb
Serial port is on S0 for Gen10 machines
[chef.git] / cookbooks / hardware / recipes / default.rb
1 #
2 # Cookbook:: 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 #     https://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 "git"
21 include_recipe "munin"
22 include_recipe "prometheus"
23 include_recipe "sysfs"
24 include_recipe "tools"
25
26 ohai_plugin "hardware" do
27   template "ohai.rb.erb"
28 end
29
30 case node[:cpu][:"0"][:vendor_id]
31 when "GenuineIntel"
32   package "intel-microcode"
33 when "AuthenticAMD"
34   package "amd64-microcode"
35 end
36
37 if node[:dmi] && node[:dmi][:system]
38   case node[:dmi][:system][:manufacturer]
39   when "empty"
40     manufacturer = node[:dmi][:base_board][:manufacturer]
41     product = node[:dmi][:base_board][:product_name]
42   else
43     manufacturer = node[:dmi][:system][:manufacturer]
44     product = node[:dmi][:system][:product_name]
45   end
46 else
47   manufacturer = "Unknown"
48   product = "Unknown"
49 end
50
51 units = []
52
53 if node[:roles].include?("bytemark") || node[:roles].include?("exonetric") || node[:roles].include?("prgmr")
54   units << "0"
55 end
56
57 case manufacturer
58 when "HP", "HPE"
59   include_recipe "apt::management-component-pack"
60
61   package "hponcfg"
62
63   execute "update-ilo" do
64     action :nothing
65     command "/usr/sbin/hponcfg -f /etc/ilo-defaults.xml"
66   end
67
68   template "/etc/ilo-defaults.xml" do
69     source "ilo-defaults.xml.erb"
70     owner "root"
71     group "root"
72     mode "644"
73     notifies :run, "execute[update-ilo]"
74   end
75
76   package "hp-health" do
77     action :install
78     notifies :restart, "service[hp-health]"
79     only_if { node[:lsb][:release].to_f < 22.04 }
80   end
81
82   service "hp-health" do
83     action [:enable, :start]
84     supports :status => true, :restart => true
85     only_if { node[:lsb][:release].to_f < 22.04 }
86   end
87
88   if product.end_with?("Gen8", "Gen9")
89     package "hp-ams" do
90       action :install
91       notifies :restart, "service[hp-ams]"
92     end
93
94     service "hp-ams" do
95       action [:enable, :start]
96       supports :status => true, :restart => true
97     end
98   end
99
100   units << if product.end_with?("Gen10")
101              "0"
102            else
103              "1"
104            end
105 when "TYAN"
106   units << "0"
107 when "TYAN Computer Corporation"
108   units << "0"
109 when "Supermicro"
110   units << "1"
111 when "IBM"
112   units << "0"
113 when "VMware, Inc."
114   package "open-vm-tools"
115
116   # Remove timeSync plugin completely
117   # https://github.com/vmware/open-vm-tools/issues/302
118   file "/usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so" do
119     action :delete
120     notifies :restart, "service[open-vm-tools]"
121   end
122
123   # Attempt to tell Host we are not interested in timeSync
124   execute "vmware-toolbox-cmd-timesync-disable" do
125     command "/usr/bin/vmware-toolbox-cmd timesync disable"
126     ignore_failure true
127   end
128
129   service "open-vm-tools" do
130     action [:enable, :start]
131     supports :status => true, :restart => true
132   end
133 end
134
135 units.sort.uniq.each do |unit|
136   service "serial-getty@ttyS#{unit}" do
137     action [:enable, :start]
138   end
139 end
140
141 # if we need a different / special kernel version to make the hardware
142 # work (e.g: https://github.com/openstreetmap/operations/issues/45) then
143 # ensure that we have the package installed. the grub template will
144 # make sure that this is the default on boot.
145 if node[:hardware][:grub][:kernel]
146   kernel_version = node[:hardware][:grub][:kernel]
147
148   package "linux-image-#{kernel_version}-generic"
149   package "linux-image-extra-#{kernel_version}-generic"
150   package "linux-headers-#{kernel_version}-generic"
151   package "linux-tools-#{kernel_version}-generic"
152
153   boot_device = IO.popen(["df", "/boot"]).readlines.last.split.first
154   boot_uuid = IO.popen(["blkid", "-o", "value", "-s", "UUID", boot_device]).readlines.first.chomp
155   grub_entry = "gnulinux-advanced-#{boot_uuid}>gnulinux-#{kernel_version}-advanced-#{boot_uuid}"
156 else
157   grub_entry = "0"
158 end
159
160 if File.exist?("/etc/default/grub")
161   execute "update-grub" do
162     action :nothing
163     command "/usr/sbin/update-grub"
164     not_if { kitchen? }
165   end
166
167   template "/etc/default/grub" do
168     source "grub.erb"
169     owner "root"
170     group "root"
171     mode "644"
172     variables :units => units, :entry => grub_entry
173     notifies :run, "execute[update-grub]"
174   end
175 end
176
177 execute "update-initramfs" do
178   action :nothing
179   command "update-initramfs -u -k all"
180   user "root"
181   group "root"
182 end
183
184 template "/etc/initramfs-tools/conf.d/mdadm" do
185   source "initramfs-mdadm.erb"
186   owner "root"
187   group "root"
188   mode "644"
189   notifies :run, "execute[update-initramfs]"
190 end
191
192 package "haveged"
193 service "haveged" do
194   action [:enable, :start]
195 end
196
197 if node[:kernel][:modules].include?("ipmi_si")
198   package "ipmitool"
199   package "freeipmi-tools"
200
201   template "/etc/prometheus/ipmi_local.yml" do
202     source "ipmi_local.yml.erb"
203     owner "root"
204     group "root"
205     mode "644"
206   end
207
208   prometheus_exporter "ipmi" do
209     port 9290
210     options "--config.file=/etc/prometheus/ipmi_local.yml"
211     subscribes :restart, "template[/etc/prometheus/ipmi_local.yml]"
212   end
213 end
214
215 package "irqbalance"
216
217 service "irqbalance" do
218   action [:start, :enable]
219   supports :status => false, :restart => true, :reload => false
220 end
221
222 package "lldpd"
223
224 service "lldpd" do
225   action [:start, :enable]
226   supports :status => true, :restart => true, :reload => true
227 end
228
229 ohai_plugin "lldp" do
230   template "lldp.rb.erb"
231 end
232
233 package %w[
234   rasdaemon
235   ruby-sqlite3
236 ]
237
238 service "rasdaemon" do
239   action [:enable, :start]
240 end
241
242 prometheus_exporter "rasdaemon" do
243   port 9797
244 end
245
246 tools_packages = []
247 status_packages = {}
248
249 if node[:virtualization][:role] != "guest" ||
250    (node[:virtualization][:system] != "lxc" &&
251     node[:virtualization][:system] != "lxd" &&
252     node[:virtualization][:system] != "openvz")
253
254   node[:kernel][:modules].each_key do |modname|
255     case modname
256     when "cciss"
257       tools_packages << "ssacli"
258       status_packages["cciss-vol-status"] ||= []
259     when "hpsa"
260       tools_packages << "ssacli"
261       status_packages["cciss-vol-status"] ||= []
262     when "mptsas"
263       tools_packages << "lsiutil"
264       status_packages["mpt-status"] ||= []
265     when "mpt2sas", "mpt3sas"
266       tools_packages << "sas2ircu"
267       status_packages["sas2ircu-status"] ||= []
268     when "megaraid_sas"
269       tools_packages << "megacli"
270       status_packages["megaclisas-status"] ||= []
271     when "aacraid"
272       tools_packages << "arcconf"
273       status_packages["aacraid-status"] ||= []
274     when "arcmsr"
275       tools_packages << "areca"
276     end
277   end
278
279   node[:block_device].each do |name, attributes|
280     next unless attributes[:vendor] == "HP" && attributes[:model] == "LOGICAL VOLUME"
281
282     if name =~ /^cciss!(c[0-9]+)d[0-9]+$/
283       status_packages["cciss-vol-status"] |= ["cciss/#{Regexp.last_match[1]}d0"]
284     else
285       Dir.glob("/sys/block/#{name}/device/scsi_generic/*").each do |sg|
286         status_packages["cciss-vol-status"] |= [File.basename(sg)]
287       end
288     end
289   end
290 end
291
292 %w[ssacli lsiutil sas2ircu megactl megacli arcconf].each do |tools_package|
293   if tools_packages.include?(tools_package)
294     package tools_package
295   else
296     package tools_package do
297       action :purge
298     end
299   end
300 end
301
302 if tools_packages.include?("areca")
303   include_recipe "git"
304
305   git "/opt/areca" do
306     action :sync
307     repository "https://git.openstreetmap.org/private/areca.git"
308     depth 1
309     user "root"
310     group "root"
311     not_if { kitchen? }
312   end
313 else
314   directory "/opt/areca" do
315     action :delete
316     recursive true
317   end
318 end
319
320 include_recipe "apt::hwraid" unless status_packages.empty?
321
322 if status_packages.include?("cciss-vol-status")
323   template "/usr/local/bin/cciss-vol-statusd" do
324     source "cciss-vol-statusd.erb"
325     owner "root"
326     group "root"
327     mode "755"
328     notifies :restart, "service[cciss-vol-statusd]"
329   end
330
331   systemd_service "cciss-vol-statusd" do
332     description "Check cciss_vol_status values in the background"
333     exec_start "/usr/local/bin/cciss-vol-statusd"
334     nice 10
335     private_tmp true
336     protect_system "full"
337     protect_home true
338     no_new_privileges true
339     notifies :restart, "service[cciss-vol-statusd]"
340   end
341 else
342   systemd_service "cciss-vol-statusd" do
343     action :delete
344   end
345
346   template "/usr/local/bin/cciss-vol-statusd" do
347     action :delete
348   end
349 end
350
351 %w[cciss-vol-status mpt-status sas2ircu-status megaclisas-status aacraid-status].each do |status_package|
352   if status_packages.include?(status_package)
353     package status_package
354
355     template "/etc/default/#{status_package}d" do
356       source "raid.default.erb"
357       owner "root"
358       group "root"
359       mode "644"
360       variables :devices => status_packages[status_package]
361     end
362
363     service "#{status_package}d" do
364       action [:start, :enable]
365       supports :status => false, :restart => true, :reload => false
366       subscribes :restart, "template[/etc/default/#{status_package}d]"
367     end
368   else
369     package status_package do
370       action :purge
371     end
372
373     file "/etc/default/#{status_package}d" do
374       action :delete
375     end
376   end
377 end
378
379 disks = if node[:hardware][:disk]
380           node[:hardware][:disk][:disks]
381         else
382           []
383         end
384
385 intel_ssds = disks.select { |d| d[:vendor] == "INTEL" && d[:model] =~ /^SSD/ }
386
387 nvmes = if node[:hardware][:pci]
388           node[:hardware][:pci].values.select { |pci| pci[:driver] == "nvme" }
389         else
390           []
391         end
392
393 unless nvmes.empty?
394   package "nvme-cli"
395 end
396
397 intel_nvmes = nvmes.select { |pci| pci[:vendor_name] == "Intel Corporation" }
398
399 if !intel_ssds.empty? || !intel_nvmes.empty?
400   package "unzip"
401
402   sst_tool_version = "1.3"
403   sst_package_version = "#{sst_tool_version}.208-0"
404
405   remote_file "#{Chef::Config[:file_cache_path]}/SST_CLI_Linux_#{sst_tool_version}.zip" do
406     source "https://downloadmirror.intel.com/743764/SST_CLI_Linux_#{sst_tool_version}.zip"
407   end
408
409   execute "#{Chef::Config[:file_cache_path]}/SST_CLI_Linux_#{sst_tool_version}.zip" do
410     command "unzip SST_CLI_Linux_#{sst_tool_version}.zip sst_#{sst_package_version}_amd64.deb"
411     cwd Chef::Config[:file_cache_path]
412     user "root"
413     group "root"
414     not_if { ::File.exist?("#{Chef::Config[:file_cache_path]}/sst_#{sst_package_version}_amd64.deb") }
415   end
416
417   dpkg_package "sst" do
418     version "#{sst_package_version}"
419     source "#{Chef::Config[:file_cache_path]}/sst_#{sst_package_version}_amd64.deb"
420   end
421
422   dpkg_package "intelmas" do
423     action :purge
424   end
425 end
426
427 disks = disks.map do |disk|
428   next if disk[:state] == "spun_down" || %w[unconfigured failed].any?(disk[:status])
429
430   if disk[:smart_device]
431     controller = node[:hardware][:disk][:controllers][disk[:controller]]
432
433     if controller && controller[:device]
434       device = controller[:device].sub("/dev/", "")
435       smart = disk[:smart_device]
436
437       if device.start_with?("cciss/") && smart =~ /^cciss,(\d+)$/
438         array = node[:hardware][:disk][:arrays][disk[:arrays].first]
439         munin = "cciss-3#{array[:wwn]}-#{Regexp.last_match(1)}"
440       elsif smart =~ /^.*,(\d+)$/
441         munin = "#{device}-#{Regexp.last_match(1)}"
442       elsif smart =~ %r{^.*,(\d+)/(\d+)$}
443         munin = "#{device}-#{Regexp.last_match(1)}:#{Regexp.last_match(2)}"
444       end
445     elsif disk[:device]
446       device = disk[:device].sub("/dev/", "")
447       smart = disk[:smart_device]
448
449       if smart =~ /^.*,(\d+),(\d+),(\d+)$/
450         munin = "#{device}-#{Regexp.last_match(1)}:#{Regexp.last_match(2)}:#{Regexp.last_match(3)}"
451       end
452     end
453   elsif disk[:device] =~ %r{^/dev/(nvme\d+)n\d+$}
454     device = Regexp.last_match(1)
455     munin = device
456   elsif disk[:device]
457     device = disk[:device].sub("/dev/", "")
458     munin = device
459   end
460
461   next if device.nil?
462
463   Hash[
464     :device => device,
465     :smart => smart,
466     :munin => munin,
467     :hddtemp => munin.tr("-:", "_")
468   ]
469 end
470
471 disks = disks.compact.uniq
472
473 if disks.count.positive?
474   package "smartmontools"
475
476   template "/etc/cron.daily/update-smart-drivedb" do
477     source "update-smart-drivedb.erb"
478     owner "root"
479     group "root"
480     mode "755"
481   end
482
483   template "/usr/local/bin/smartd-mailer" do
484     source "smartd-mailer.erb"
485     owner "root"
486     group "root"
487     mode "755"
488   end
489
490   template "/etc/smartd.conf" do
491     source "smartd.conf.erb"
492     owner "root"
493     group "root"
494     mode "644"
495     variables :disks => disks
496   end
497
498   template "/etc/default/smartmontools" do
499     source "smartmontools.erb"
500     owner "root"
501     group "root"
502     mode "644"
503   end
504
505   service "smartmontools" do
506     action [:enable, :start]
507     subscribes :reload, "template[/etc/smartd.conf]"
508     subscribes :restart, "template[/etc/default/smartmontools]"
509   end
510
511   template "/etc/prometheus/collectors/smart.devices" do
512     source "smart.devices.erb"
513     owner "root"
514     group "root"
515     mode "644"
516     variables :disks => disks
517   end
518
519   prometheus_collector "smart" do
520     interval "15m"
521   end
522
523   # Don't try and do munin monitoring of disks behind
524   # an Areca controller as they only allow one thing to
525   # talk to the controller at a time and smartd will
526   # throw errors if it clashes with munin
527   disks = disks.reject { |disk| disk[:smart]&.start_with?("areca,") }
528
529   disks.each do |disk|
530     munin_plugin "smart_#{disk[:munin]}" do
531       target "smart_"
532       conf "munin.smart.erb"
533       conf_variables :disk => disk
534     end
535   end
536 else
537   service "smartd" do
538     action [:stop, :disable]
539   end
540 end
541
542 if disks.count.positive?
543   munin_plugin "hddtemp_smartctl" do
544     conf "munin.hddtemp.erb"
545     conf_variables :disks => disks
546   end
547 else
548   munin_plugin "hddtemp_smartctl" do
549     action :delete
550     conf "munin.hddtemp.erb"
551   end
552 end
553
554 plugins = Dir.glob("/etc/munin/plugins/smart_*").map { |p| File.basename(p) } -
555           disks.map { |d| "smart_#{d[:munin]}" }
556
557 plugins.each do |plugin|
558   munin_plugin plugin do
559     action :delete
560     conf "munin.smart.erb"
561   end
562 end
563
564 if File.exist?("/etc/mdadm/mdadm.conf")
565   mdadm_conf = edit_file "/etc/mdadm/mdadm.conf" do |line|
566     line.gsub!(/^MAILADDR .*$/, "MAILADDR admins@openstreetmap.org")
567
568     line
569   end
570
571   file "/etc/mdadm/mdadm.conf" do
572     owner "root"
573     group "root"
574     mode "644"
575     content mdadm_conf
576   end
577
578   service "mdadm" do
579     action :nothing
580     subscribes :restart, "file[/etc/mdadm/mdadm.conf]"
581   end
582 end
583
584 file "/etc/modules" do
585   action :delete
586 end
587
588 node[:hardware][:modules].each do |module_name|
589   kernel_module module_name do
590     action :install
591     not_if { kitchen? }
592   end
593 end
594
595 node[:hardware][:blacklisted_modules].each do |module_name|
596   kernel_module module_name do
597     action :blacklist
598   end
599 end
600
601 if node[:hardware][:watchdog]
602   package "watchdog"
603
604   template "/etc/default/watchdog" do
605     source "watchdog.erb"
606     owner "root"
607     group "root"
608     mode "644"
609     variables :module => node[:hardware][:watchdog]
610   end
611
612   service "watchdog" do
613     action [:enable, :start]
614   end
615 end
616
617 unless Dir.glob("/sys/class/hwmon/hwmon*").empty?
618   package "lm-sensors"
619
620   Dir.glob("/sys/devices/platform/coretemp.*").each do |coretemp|
621     cpu = File.basename(coretemp).sub("coretemp.", "").to_i
622     chip = format("coretemp-isa-%04d", cpu)
623
624     temps = if File.exist?("#{coretemp}/name")
625               Dir.glob("#{coretemp}/temp*_input").map do |temp|
626                 File.basename(temp).sub("temp", "").sub("_input", "").to_i
627               end.sort
628             else
629               Dir.glob("#{coretemp}/hwmon/hwmon*/temp*_input").map do |temp|
630                 File.basename(temp).sub("temp", "").sub("_input", "").to_i
631               end.sort
632             end
633
634     if temps.first == 1
635       node.default[:hardware][:sensors][chip][:temps][:temp1][:label] = "CPU #{cpu}"
636       temps.shift
637     end
638
639     temps.each_with_index do |temp, index|
640       node.default[:hardware][:sensors][chip][:temps]["temp#{temp}"][:label] = "CPU #{cpu} Core #{index}"
641     end
642   end
643
644   execute "/etc/sensors.d/chef.conf" do
645     action :nothing
646     command "/usr/bin/sensors -s"
647     user "root"
648     group "root"
649   end
650
651   template "/etc/sensors.d/chef.conf" do
652     source "sensors.conf.erb"
653     owner "root"
654     group "root"
655     mode "644"
656     notifies :run, "execute[/etc/sensors.d/chef.conf]"
657   end
658 end
659
660 if node[:hardware][:shm_size]
661   execute "remount-dev-shm" do
662     action :nothing
663     command "/bin/mount -o remount /dev/shm"
664     user "root"
665     group "root"
666   end
667
668   mount "/dev/shm" do
669     action :enable
670     device "tmpfs"
671     fstype "tmpfs"
672     options "rw,nosuid,nodev,size=#{node[:hardware][:shm_size]}"
673     notifies :run, "execute[remount-dev-shm]"
674   end
675 end
676
677 prometheus_collector "ohai" do
678   interval "15m"
679 end