Puppet type & provider to modify BIOS of HP servers using hprcu
puppet resource hprcu
puppet apply -e "hprcu{ 'default': intelrhyperthreadingoptions => 'Enabled' }"
In a manifest:
hprcu { 'default':
intelrhyperthreadingoptions => 'Enabled'
}
In a class:
class { 'hyperthreading_on':
hprcu { 'default':
intelrhyperthreadingoptions => 'Enabled',
}
}
With different versions of the class for different BIOS revisions:
case $bios_release:
'09/12/2012': hprcu_09122012 {'default': intelrhyperthreadingoptions => 'Enabled' }
'08/11/2011': hprcu_08112011 {'default': intelhyperthreading => 'Enabled' }
Type parameters:
flagchanges - Boolean - whether changes made by the hprcu provider should be recorded in a file (defaults to false) flagfile - the path to the file where the changes will be recorded (must begin with /tmp or /var/tmp) (defaults to: "/tmp/hprcu_changes") appendchanges - whether to append changes to the flag file or overwrite it with each new change made by the provider
Notes:
- There's only one collection of BIOS settings per host so there's only one hprcu resource per host, and its name is 'default'.
- Property names must conform to the Puppet grammar, as defined in grammar.ra in the Puppet source. Thus 'Intel (R) Hyperthreading Options' is represented by 'intelrhyperthreadingoptions'.
- You may want to run this code (and therefore hprcu) only when required - running hprcu may interfere with reading the realtime clock from the CMOS (see footnote 4 here: http://mjg59.dreamwidth.org/25686.html)
It may be necessary to regenerate the Ruby code for the provider if new BIOS settings are added or names change. Here's an example of how to do this:
hprcu -a -s -f /tmp/hprcu.xml
./gen_hprcu_type.rb /tmp/hprcu.xml lib/puppet/type/hprcu.rb
This code requires Gregoire Lejeune's ruby-xslt: https://github.com/glejeune/ruby-xslt
It would be ideal to have a single type for managing BIOS settings for multiple vendors' hardware, and a provider per-vendor to manage resource properties for each particular vendor platform. However, the target is slowly moving: vendors have different names for the same BIOS setting, BIOS revisions can change property names ('name-creep'), new hardware may introduce new settings. Owing to the fact that Puppet doesn't support dynamic property names (see http://grokbase.com/t/gg/puppet-dev/1254htyrr9/how-to-allow-user-specified-property-names-in-provider-code) the names of properties must be pre-defined.
One option would be to map between a setting (e.g. C-states) and a well-defined name, but there are drawbacks to this approach:
- what to do it a setting is only supported by HP and not Oracle (for example)
- if a setting's name changes the mappings would need updating
These considerations have led me to implement a type & provider for HP hardware. The hprcu utility is used under the hood to query and change settings. In order to make life easier in the face of name-creep, the code for the type can be regenerated automatically using XML output from hprcu (the provider doesn't contain any hard-coded property names and therefore shouldn't need to be changed so often). This auto-generation may also be needed to support different BIOS revisions that have different names for settings.
Because property names are auto-generated they can be non-intuitive, for example 'intelrhyperthreadingoptions' instead of plain 'hyperthreading'. As mentioned above, I don't want to have to maintain a static mapping and hence have chosen not to use more friendly names. Running 'puppet resource hprcu' on a server is a good way to determine the name of the relevant property.