]> git.openstreetmap.org Git - chef.git/blob - cookbooks/hardware/recipes/default.rb
Add an ohai plugin to gather LLDP data
[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 package "lldpd"
203
204 service "lldpd" do
205   action [:start, :enable]
206   supports :status => true, :restart => true, :reload => true
207 end
208
209 ohai_plugin "lldp" do
210   template "lldp.rb.erb"
211 end
212
213 tools_packages = []
214 status_packages = {}
215
216 if node[:virtualization][:role] != "guest" ||
217    (node[:virtualization][:system] != "lxc" &&
218     node[:virtualization][:system] != "lxd" &&
219     node[:virtualization][:system] != "openvz")
220
221   node[:kernel][:modules].each_key do |modname|
222     case modname
223     when "cciss"
224       tools_packages << "ssacli"
225       status_packages["cciss-vol-status"] ||= []
226     when "hpsa"
227       tools_packages << "ssacli"
228       status_packages["cciss-vol-status"] ||= []
229     when "mptsas"
230       tools_packages << "lsiutil"
231       status_packages["mpt-status"] ||= []
232     when "mpt2sas", "mpt3sas"
233       tools_packages << "sas2ircu"
234       status_packages["sas2ircu-status"] ||= []
235     when "megaraid_mm"
236       tools_packages << "megactl"
237       status_packages["megaraid-status"] ||= []
238     when "megaraid_sas"
239       tools_packages << "megacli"
240       status_packages["megaclisas-status"] ||= []
241     when "aacraid"
242       tools_packages << "arcconf"
243       status_packages["aacraid-status"] ||= []
244     when "arcmsr"
245       tools_packages << "areca"
246     end
247   end
248
249   node[:block_device].each do |name, attributes|
250     next unless attributes[:vendor] == "HP" && attributes[:model] == "LOGICAL VOLUME"
251
252     if name =~ /^cciss!(c[0-9]+)d[0-9]+$/
253       status_packages["cciss-vol-status"] |= ["cciss/#{Regexp.last_match[1]}d0"]
254     else
255       Dir.glob("/sys/block/#{name}/device/scsi_generic/*").each do |sg|
256         status_packages["cciss-vol-status"] |= [File.basename(sg)]
257       end
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 "https://git.openstreetmap.org/private/areca.git"
278     depth 1
279     user "root"
280     group "root"
281     not_if { kitchen? }
282   end
283 else
284   directory "/opt/areca" do
285     action :delete
286     recursive true
287   end
288 end
289
290 if status_packages.include?("cciss-vol-status")
291   template "/usr/local/bin/cciss-vol-statusd" do
292     source "cciss-vol-statusd.erb"
293     owner "root"
294     group "root"
295     mode "755"
296     notifies :restart, "service[cciss-vol-statusd]"
297   end
298
299   systemd_service "cciss-vol-statusd" do
300     description "Check cciss_vol_status values in the background"
301     exec_start "/usr/local/bin/cciss-vol-statusd"
302     private_tmp true
303     protect_system "full"
304     protect_home true
305     no_new_privileges true
306     notifies :restart, "service[cciss-vol-statusd]"
307   end
308 else
309   systemd_service "cciss-vol-statusd" do
310     action :delete
311   end
312
313   template "/usr/local/bin/cciss-vol-statusd" do
314     action :delete
315   end
316 end
317
318 %w[cciss-vol-status mpt-status sas2ircu-status megaraid-status megaclisas-status aacraid-status].each do |status_package|
319   if status_packages.include?(status_package)
320     package status_package
321
322     template "/etc/default/#{status_package}d" do
323       source "raid.default.erb"
324       owner "root"
325       group "root"
326       mode "644"
327       variables :devices => status_packages[status_package]
328     end
329
330     service "#{status_package}d" do
331       action [:start, :enable]
332       supports :status => false, :restart => true, :reload => false
333       subscribes :restart, "template[/etc/default/#{status_package}d]"
334     end
335   else
336     package status_package do
337       action :purge
338     end
339
340     file "/etc/default/#{status_package}d" do
341       action :delete
342     end
343   end
344 end
345
346 disks = if node[:hardware][:disk]
347           node[:hardware][:disk][:disks]
348         else
349           []
350         end
351
352 intel_ssds = disks.select { |d| d[:vendor] == "INTEL" && d[:model] =~ /^SSD/ }
353
354 nvmes = if node[:hardware][:pci]
355           node[:hardware][:pci].values.select { |pci| pci[:driver] == "nvme" }
356         else
357           []
358         end
359
360 unless nvmes.empty?
361   package "nvme-cli"
362 end
363
364 intel_nvmes = nvmes.select { |pci| pci[:vendor_name] == "Intel Corporation" }
365
366 if !intel_ssds.empty? || !intel_nvmes.empty?
367   package "unzip"
368
369   intel_mas_tool_version = "1.10"
370   intel_mas_package_version = "#{intel_mas_tool_version}.155-0"
371
372   remote_file "#{Chef::Config[:file_cache_path]}/Intel_MAS_CLI_Tool_#{intel_mas_tool_version}_Linux.zip" do
373     source "https://downloadmirror.intel.com/646992/Intel_MAS_CLI_Tool_Linux_#{intel_mas_tool_version}-v2.zip"
374   end
375
376   execute "#{Chef::Config[:file_cache_path]}/Intel_MAS_CLI_Tool_#{intel_mas_tool_version}_Linux.zip" do
377     command "unzip Intel_MAS_CLI_Tool_#{intel_mas_tool_version}_Linux.zip intelmas_#{intel_mas_package_version}_amd64.deb"
378     cwd Chef::Config[:file_cache_path]
379     user "root"
380     group "root"
381     not_if { ::File.exist?("#{Chef::Config[:file_cache_path]}/intelmas_#{intel_mas_package_version}_amd64.deb") }
382   end
383
384   dpkg_package "intelmas" do
385     version "#{intel_mas_package_version}"
386     source "#{Chef::Config[:file_cache_path]}/intelmas_#{intel_mas_package_version}_amd64.deb"
387   end
388
389   dpkg_package "isdct" do
390     action :purge
391   end
392 end
393
394 disks = disks.map do |disk|
395   next if disk[:state] == "spun_down" || %w[unconfigured failed].any?(disk[:status])
396
397   if disk[:smart_device]
398     controller = node[:hardware][:disk][:controllers][disk[:controller]]
399
400     if controller && controller[:device]
401       device = controller[:device].sub("/dev/", "")
402       smart = disk[:smart_device]
403
404       if device.start_with?("cciss/") && smart =~ /^cciss,(\d+)$/
405         array = node[:hardware][:disk][:arrays][disk[:arrays].first]
406         munin = "cciss-3#{array[:wwn]}-#{Regexp.last_match(1)}"
407       elsif smart =~ /^.*,(\d+)$/
408         munin = "#{device}-#{Regexp.last_match(1)}"
409       elsif smart =~ %r{^.*,(\d+)/(\d+)$}
410         munin = "#{device}-#{Regexp.last_match(1)}:#{Regexp.last_match(2)}"
411       end
412     elsif disk[:device]
413       device = disk[:device].sub("/dev/", "")
414       smart = disk[:smart_device]
415
416       if smart =~ /^.*,(\d+),(\d+),(\d+)$/
417         munin = "#{device}-#{Regexp.last_match(1)}:#{Regexp.last_match(2)}:#{Regexp.last_match(3)}"
418       end
419     end
420   elsif disk[:device] =~ %r{^/dev/(nvme\d+)n\d+$}
421     device = Regexp.last_match(1)
422     munin = device
423   elsif disk[:device]
424     device = disk[:device].sub("/dev/", "")
425     munin = device
426   end
427
428   next if device.nil?
429
430   Hash[
431     :device => device,
432     :smart => smart,
433     :munin => munin,
434     :hddtemp => munin.tr("-:", "_")
435   ]
436 end
437
438 disks = disks.compact.uniq
439
440 if disks.count.positive?
441   package "smartmontools"
442
443   template "/etc/cron.daily/update-smart-drivedb" do
444     source "update-smart-drivedb.erb"
445     owner "root"
446     group "root"
447     mode "755"
448   end
449
450   template "/usr/local/bin/smartd-mailer" do
451     source "smartd-mailer.erb"
452     owner "root"
453     group "root"
454     mode "755"
455   end
456
457   template "/etc/smartd.conf" do
458     source "smartd.conf.erb"
459     owner "root"
460     group "root"
461     mode "644"
462     variables :disks => disks
463   end
464
465   template "/etc/default/smartmontools" do
466     source "smartmontools.erb"
467     owner "root"
468     group "root"
469     mode "644"
470   end
471
472   service "smartmontools" do
473     action [:enable, :start]
474     subscribes :reload, "template[/etc/smartd.conf]"
475     subscribes :restart, "template[/etc/default/smartmontools]"
476   end
477
478   template "/etc/prometheus/collectors/smart.devices" do
479     source "smart.devices.erb"
480     owner "root"
481     group "root"
482     mode "644"
483     variables :disks => disks
484   end
485
486   prometheus_collector "smart" do
487     interval "15m"
488   end
489
490   # Don't try and do munin monitoring of disks behind
491   # an Areca controller as they only allow one thing to
492   # talk to the controller at a time and smartd will
493   # throw errors if it clashes with munin
494   disks = disks.reject { |disk| disk[:smart]&.start_with?("areca,") }
495
496   disks.each do |disk|
497     munin_plugin "smart_#{disk[:munin]}" do
498       target "smart_"
499       conf "munin.smart.erb"
500       conf_variables :disk => disk
501     end
502   end
503 else
504   service "smartd" do
505     action [:stop, :disable]
506   end
507 end
508
509 if disks.count.positive?
510   munin_plugin "hddtemp_smartctl" do
511     conf "munin.hddtemp.erb"
512     conf_variables :disks => disks
513   end
514 else
515   munin_plugin "hddtemp_smartctl" do
516     action :delete
517     conf "munin.hddtemp.erb"
518   end
519 end
520
521 plugins = Dir.glob("/etc/munin/plugins/smart_*").map { |p| File.basename(p) } -
522           disks.map { |d| "smart_#{d[:munin]}" }
523
524 plugins.each do |plugin|
525   munin_plugin plugin do
526     action :delete
527     conf "munin.smart.erb"
528   end
529 end
530
531 if File.exist?("/etc/mdadm/mdadm.conf")
532   mdadm_conf = edit_file "/etc/mdadm/mdadm.conf" do |line|
533     line.gsub!(/^MAILADDR .*$/, "MAILADDR admins@openstreetmap.org")
534
535     line
536   end
537
538   file "/etc/mdadm/mdadm.conf" do
539     owner "root"
540     group "root"
541     mode "644"
542     content mdadm_conf
543   end
544
545   service "mdadm" do
546     action :nothing
547     subscribes :restart, "file[/etc/mdadm/mdadm.conf]"
548   end
549 end
550
551 file "/etc/modules" do
552   action :delete
553 end
554
555 node[:hardware][:modules].each do |module_name|
556   kernel_module module_name do
557     action :install
558     not_if { kitchen? }
559   end
560 end
561
562 node[:hardware][:blacklisted_modules].each do |module_name|
563   kernel_module module_name do
564     action :blacklist
565   end
566 end
567
568 if node[:hardware][:watchdog]
569   package "watchdog"
570
571   template "/etc/default/watchdog" do
572     source "watchdog.erb"
573     owner "root"
574     group "root"
575     mode "644"
576     variables :module => node[:hardware][:watchdog]
577   end
578
579   service "watchdog" do
580     action [:enable, :start]
581   end
582 end
583
584 unless Dir.glob("/sys/class/hwmon/hwmon*").empty?
585   package "lm-sensors"
586
587   Dir.glob("/sys/devices/platform/coretemp.*").each do |coretemp|
588     cpu = File.basename(coretemp).sub("coretemp.", "").to_i
589     chip = format("coretemp-isa-%04d", cpu)
590
591     temps = if File.exist?("#{coretemp}/name")
592               Dir.glob("#{coretemp}/temp*_input").map do |temp|
593                 File.basename(temp).sub("temp", "").sub("_input", "").to_i
594               end.sort
595             else
596               Dir.glob("#{coretemp}/hwmon/hwmon*/temp*_input").map do |temp|
597                 File.basename(temp).sub("temp", "").sub("_input", "").to_i
598               end.sort
599             end
600
601     if temps.first == 1
602       node.default[:hardware][:sensors][chip][:temps][:temp1][:label] = "CPU #{cpu}"
603       temps.shift
604     end
605
606     temps.each_with_index do |temp, index|
607       node.default[:hardware][:sensors][chip][:temps]["temp#{temp}"][:label] = "CPU #{cpu} Core #{index}"
608     end
609   end
610
611   execute "/etc/sensors.d/chef.conf" do
612     action :nothing
613     command "/usr/bin/sensors -s"
614     user "root"
615     group "root"
616   end
617
618   template "/etc/sensors.d/chef.conf" do
619     source "sensors.conf.erb"
620     owner "root"
621     group "root"
622     mode "644"
623     notifies :run, "execute[/etc/sensors.d/chef.conf]"
624   end
625 end
626
627 if node[:hardware][:shm_size]
628   execute "remount-dev-shm" do
629     action :nothing
630     command "/bin/mount -o remount /dev/shm"
631     user "root"
632     group "root"
633   end
634
635   mount "/dev/shm" do
636     action :enable
637     device "tmpfs"
638     fstype "tmpfs"
639     options "rw,nosuid,nodev,size=#{node[:hardware][:shm_size]}"
640     notifies :run, "execute[remount-dev-shm]"
641   end
642 end