OpenBSD manual page server

Manual Page Search Parameters

BIOCTL(8) System Manager's Manual BIOCTL(8)

bioctlRAID management interface

bioctl [-hiqv] [-a alarm-function] [-b channel:target[.lun]] [-H channel:target[.lun]] [-R device | channel:target[.lun]] [-t patrol-function] [-u channel:target[.lun]] device


bioctl [-dhiPqsv] [-C flag[,flag[,...]]] [-c raidlevel] [-k keydisk] [-l special[,special[,...]]] [-O device | channel:target[.lun]] [-p passfile] [-R device | channel:target[.lun]] [-r rounds] device

RAID device drivers which support management functionality can register their services with the bio(4) driver. bioctl then can be used to maintain RAID volumes.

In the first synopsis, RAID controllers are managed. device specifies either a drive (e.g. sd0) or a RAID controller (e.g. ami0). For operations which will be performed against ses(4) or safte(4) enclosures, it is also possible to directly specify the enclosure name (e.g. safte0).

In the second synopsis, softraid(4) devices are managed. device specifies either a drive (e.g. sd0) or a softraid(4) device (e.g. softraid0).

The options for RAID controllers are as follows:

alarm-function
Control the RAID card's alarm functionality, if supported. alarm-function may be one of:

Disable the alarm on the RAID controller.
Enable the alarm on the RAID controller.
Retrieve the current alarm state (enabled or disabled).
|
Silence the alarm if it is currently beeping.

The alarm-function may be specified as given above, or by the first letter only (e.g. -a e).

channel:target[.lun]
Instruct the device at channel:target[.lun] to start blinking, if there is ses(4) or safte(4) support in the enclosure.
channel:target[.lun]
If the device at channel:target[.lun] is currently marked “Unused”, promote it to being a “Hot Spare”.
Where necessary, produce “human-readable” output. Use unit suffixes: Byte, Kilobyte, Megabyte, Gigabyte, Terabyte, Petabyte, Exabyte in order to reduce the number of digits to four or less.
Enumerate the selected RAID devices. This is the default if no other option is given.
Show vendor, product, revision, and serial number for the given disk.
device | channel:target[.lun]
Manually kick off a rebuild of a RAID volume, using device or channel:target[.lun] as a new chunk (with softraid(4), a partition of fstype “RAID”) in the volume. device must be specified as a full path to the chunk device file (e.g. /dev/wd0d). A RAID volume rather than a RAID controller is expected as the final argument.
patrol-function
Control the RAID card's patrol functionality, if supported. patrol-function may be one of:

Stop the patrol on the RAID controller.
Start the patrol on the RAID controller.
Retrieve the current patrol configuration.
Disable the patrol functionality.
Enable the patrol functionality to start/stop manually.
[.interval[.start]]
Enable the patrol functionality to start/stop automatically in every interval seconds, starting the first iteration after start seconds.
channel:target[.lun]
Instruct the device at channel:target[.lun] to cease blinking, if there is ses(4) or safte(4) support in the enclosure.
Be more verbose in output.

In addition to the relevant options listed above, the options for softraid(4) devices are as follows:

flag[,flag[,...]]
Pass flag to bioctl. May be one of:

Force the operation; for example, force the creation of volumes with unclean data in the metadata areas.
Do not automatically assemble this volume at boot time.
raidlevel
Create a softraid(4) device of level raidlevel. The device must begin with “softraid” followed by a number.

Valid raidlevels are:

RAID 0: A striping discipline.
RAID 1: A mirroring discipline.
RAID 5: A striping discipline with floating parity chunk.
CRYPTO: An encrypting discipline.
CONCAT: A concatenating discipline.

The RAID 0, RAID 1 and CONCAT disciplines require a minimum of two devices to be provided via -l. RAID 5 requires at least three devices and the CRYPTO discipline requires exactly one.

Delete volume specified by device.
keydisk
Use special device keydisk as a key disk for a crypto volume.
special[,special[,...]]
Use special device list to create within the softraid(4) framework. Requires -c.
device | channel:target[.lun]
Set the state of device or channel:target[.lun] to offline. The state of the RAID volume will change in the same way that it would if the disk physically went offline. device must be specified as a full path to the chunk device file (e.g. /dev/wd0d). A RAID volume rather than a RAID controller is expected as the final argument.
Change the passphrase on the selected crypto volume.
passfile
Passphrase file used when crypto volumes are brought up. This file must be root owned and have 0600 permissions.
rounds
When creating an encrypted volume, specifies the number of iterations of the PBKDF2 algorithm used to convert a passphrase into a key. Higher iteration counts take more time, but offer more resistance to key guessing attacks. The minimum is 1000 rounds and the default is 8192.
Read the passphrase for the selected crypto volume from /dev/stdin rather than /dev/tty. This option cannot be used during the initial creation of the crypto volume.

The following command, executed from the command line, would configure the device softraid0 with 4 special devices (/dev/sd2e, /dev/sd3e, /dev/sd4e, /dev/sd5e) and a RAID level of 1:

# bioctl -c 1 -l /dev/sd2e,/dev/sd3e,/dev/sd4e,/dev/sd5e softraid0

The following command, executed from the command line, would configure the device softraid0 with one special device (/dev/sd2e) and an encrypting volume:

# bioctl -c C -l /dev/sd2e softraid0

bioctl will ask for a passphrase, which will be needed to unlock the encrypted disk. After creating a newly encrypted disk, the first megabyte of it should be zeroed, so tools like fdisk(8) or disklabel(8) don't get confused by the random data that appears on the new disk. This can be done with the following command (assuming the new disk is sd3):

# dd if=/dev/zero of=/dev/rsd3c bs=1m count=1

Deleting a softraid volume requires the exact volume name. For example:

# bioctl -d sd2

The following command starts a rebuild of the degraded softraid volume sd0 using a new chunk on wd0d:

# bioctl -R /dev/wd0d sd0

bio(4), scsi(4), softraid(4)

B. Kaliski, PKCS #5: Password-Based Cryptography Specification Version 2.0, RFC 2898, September 2000.

The bioctl command first appeared in OpenBSD 3.8.

The bioctl interface was written by Marco Peereboom <marco@openbsd.org>.

April 4, 2016 OpenBSD-6.0