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