cookbooks/fb_swap/recipes/default.rb (76 lines of code) (raw):
#
# Cookbook Name:: fb_swap
# Recipe:: default
#
# Copyright (c) 2016-present, Facebook, Inc.
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
device = FB::FbSwap._device(node)
unless device
Chef::Log.debug('fb_swap: No swap mounts found, nothing to do here.')
return
end
Chef::Log.debug("fb_swap: Found swap device: #{device}")
# Newly provisioned hosts end up with a swap device in /etc/fstab which
# is referenced by UUID (or label, or path). We use data from ohai's
# filesystem2 plugin (which is backed by the state of the machine, not what
# is in /etc/fstab). We want to create/manage our own units with predictable
# names
#
node.default['fb_fstab']['exclude_base_swap'] = true
whyrun_safe_ruby_block 'validate swap size' do
only_if do
node['fb_swap']['size'] && node['fb_swap']['size'].to_i < 1024
end
block do
fail 'fb_swap: You asked for a swap device smaller than 1 MB. This is ' +
'probably not what you want. Please make it larger or disable swap ' +
'altogether.'
end
end
# ask fb_fstab to create the unit
node.default['fb_fstab']['mounts']['swap_device'] = {
'mount_point' => 'swap',
'device' => device,
'type' => 'swap',
}
whyrun_safe_ruby_block 'validate resize' do
only_if do
node['fb_swap']['enabled'] && node['fb_swap']['size'] &&
node['memory']['swap']['total'] != '0kB' &&
(node['fb_swap']['size'].to_i - 4) > node['memory']['swap']['total'].to_i
end
block do
fail 'fb_swap: We do not support increasing the size of a swap device'
end
end
execute 'resize swap' do
only_if do
node['fb_swap']['enabled'] && node['fb_swap']['size'] &&
# actual size is always desired - 4
(node['fb_swap']['size'].to_i - 4) < node['memory']['swap']['total'].to_i
end
command lazy {
uuid = node.filesystem_data['by_device'][device]['uuid']
size = node['fb_swap']['size']
"swapoff #{device} && mkswap -U #{uuid} #{device} " +
"#{size} && swapon #{device}"
}
end
execute 'turn swap on' do
only_if do
node['memory']['swap']['total'] == '0kB' &&
node['fb_swap']['enabled']
end
command '/sbin/swapon -a'
end
execute 'turn swap off' do
only_if do
node['memory']['swap']['total'] != '0kB' &&
!node['fb_swap']['enabled']
end
command '/sbin/swapoff -a'
end
# T40484873 mitigation - remove new device swap overrides and management unit.
service 'Swap file unmask' do
service_name lazy { FB::FbSwap._swap_unit(node, 'file') }
action :unmask
end
%w{device file}.each do |type|
fb_systemd_override "remove #{type} swap override" do
override_name 'manage'
unit_name lazy { FB::FbSwap._swap_unit(node, type) }
action :delete
end
service "manage-swap-#{type}.service" do
action :stop
end
file "/etc/systemd/system/manage-swap-#{type}.service" do
action :delete
notifies :run, 'fb_systemd_reload[system instance]', :immediately
end
end