Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-19 | clear memory before passing to ioctl routines instead of praying it | Theo de Raadt | |
will be ok and not break things upon return. ok claudio | |||
2012-01-22 | If no controller name is provided, use the program name as a prefix. Also, | Joel Sing | |
exit with an "unknown error" if a bio(4) error is reported but no status message has been provided. | |||
2012-01-20 | Teach bioctl(8) about the new status interface for bio(4). With the | Joel Sing | |
exception of a few messages specific to softraid(4) CRYPTO, there should be no functional change for drivers that do not yet implement the interface (which is currently all of them). | |||
2012-01-17 | Move the bio(4) cookie into a separate struct and make this struct the | Joel Sing | |
first member of each ioctl data structure. This will allow for future changes to bio(4) status handling. | |||
2012-01-17 | CONCAT requires at least two disks. | Joel Sing | |
2012-01-07 | Provide a bioctl(8) option that changes the state of a chunk to offline. | Joel Sing | |
man page part with todd@ | |||
2011-12-31 | Implement a concatenating discipline for softraid. | Joel Sing | |
Many thanks to Marco Peereboom for his assistance with testing and debugging. Thanks also to Josh Grosse and Chris Jackman for testing. | |||
2011-08-01 | Add missing closing braces in usage(). | Matthieu Herrb | |
Ok jmc@ (who also pointed me to the 2nd missing one) sobrado@. | |||
2011-07-09 | Add a missing prototype, fix build with WARNINGS=yes. | Nicholas Marriott | |
2011-07-08 | add basic config support for creating aoe disks. ok marco | Ted Unangst | |
2011-07-04 | use stronum, removing an atoi from the tree. ok deraadt matthew | Ted Unangst | |
2011-04-04 | give more space when printing volumes to allow softraid0 to fit | joshua stein | |
ok marco@ | |||
2010-12-01 | Allow add a -s switch to make bioctl read the passphrase from stdin. Handy | Chris Kuethe | |
for scripting a big batch of remote unlocks. ok marco | |||
2010-07-10 | Eliminate some unnecessary #include lines. | Matthew Dempsky | |
"sure" marco@ | |||
2010-07-01 | Use opendev(3) when handling key disks so that disklabel UIDs are | Joel Sing | |
supported. ok marco@ | |||
2010-06-22 | rename devname->devicename to prevent shadowing devname(3). ok marco jsing | Darren Tucker | |
2010-06-18 | Make bioctl(8) disklabel UID friendly by attempting to open the device | Joel Sing | |
using opendev(3) first and then trying /dev/bio if that failed. Also use opendev(3) when getting device numbers for softraid. ok marco@ | |||
2010-05-18 | dont let sys/ioctl.h imply that you get the ioctls in dkio.h. this | David Gwynne | |
gets rid of #include <sys/dkio.h> in sys/ioctl.h and adds #include <sys/dkio.h> to the places that actually want and use the disk ioctls. this became an issue when krw@'s X build failed when he was testing a change to dkio.h. tested by krw@ help from and ok miod@ | |||
2010-04-03 | scsi_all.h is needed before scsi_disk.h now. ok marco | Nicholas Marriott | |
2010-01-08 | "Too less" => "Too few" | Alexander Hall | |
ok marco@ | |||
2010-01-03 | Nuke some unused variables, ok marco | Nicholas Marriott | |
2009-12-31 | use the same arg name for -k as the man page; | Jason McIntyre | |
2009-12-31 | Add support for key disks. This allows a crypto volume to be constructed | Joel Sing | |
without using a passphrase - instead the encryption mask key is stored on the specified key disk partition (ideally being one on a removable device). This also enables automatic assembly of crypto volumes at boot time. ok marco@ | |||
2009-12-24 | spelling fixes, from Brad Tilley; we will not fix src/sbin/dump/dump.h | Igor Sobrado | |
as neither arrayified not arrayfied exist -- sanctioned dictionaries like Merriam-Webster ones suggest a few alternatives (e.g., arrayed), however these made up words are easy to understand and we are not certain that current ones are not ok. ok jmc@ | |||
2009-11-24 | put -P in the right place; | Jason McIntyre | |
2009-11-24 | Allow the passphrase to be changed on softraid crypto volumes. Ensure that | Joel Sing | |
you backup your data and lock up your pets prior to using this. Tested by todd@ ok marco@ | |||
2009-10-25 | Somehow during my testing I missed a test case where an existing crypto | Marco Peereboom | |
volume could no longer be brought up. Found by Pedro la Peu <pedro@am-gen.org>, thanks for the report. | |||
2009-10-22 | tweak previous; ok marco | Jason McIntyre | |
2009-10-21 | Add passphrase file for crypto volume bring-up. Proded and ok deraadt | Marco Peereboom | |
2009-07-31 | Allow hotspares to be added to bio devices rather than requiring an sd | Joel Sing | |
device. "Yeah!" marco@ | |||
2009-06-18 | fix crypto raid error message | Alexander Hall | |
ok marco@ | |||
2009-06-17 | Add raid 4 & 5 in create | Marco Peereboom | |
ok jordan | |||
2009-02-22 | split synopsis and the options list according to functionality; | Jason McIntyre | |
diff from Mitja Mu?eni? ok marco | |||
2008-09-02 | devname -> devicename to prevent shadowing devname(3); ok marco@ | Darren Tucker | |
2008-08-22 | - -R before -r in SYNOPSIS/usage() | Jason McIntyre | |
- avoid marking up `|' | |||
2008-08-22 | Add a hack to manually kick off rebuilds. This will need some love in the | Marco Peereboom | |
near future. ok deraadt | |||
2008-08-11 | Undo last commit; deraadt didn't like it. | Marco Peereboom | |
2008-08-11 | Add infrastructure to manually kick off rebuilds. | Marco Peereboom | |
2008-07-02 | string munging: say 'CRYPTO' not 'RAID67' | Todd T. Fries | |
ok marco@ | |||
2008-06-15 | fix usage(); | Jason McIntyre | |
2008-06-15 | When generating a new volume, ask the user to re-type the passphrase for | Hans-Joerg Hoexer | |
verification. ok djm | |||
2008-06-14 | Provide a status field for operations on the bc_opaque data. Now we're | Hans-Joerg Hoexer | |
able to distinguish cleanly an failing ioctl (ie. return value -1) from trying to retrieve a KDF hint from a not yet initialized volume. ok marco djm | |||
2008-06-14 | add a -r option to specify the number of PKCS5 PBKDF2 iterations used | Damien Miller | |
to derive the password (minimum: 1000, maximum: more than you want) ok hshoexer@ | |||
2008-06-14 | Replace PBKDF2 implementation pulled in from vnconfig with one | Damien Miller | |
derived from Damien Bergamini's wpa-psk. This implementation is smaller, cleaner and uses the libc SHA1 functions instead of pulling in OpenSSL. make bioctl.c -Wall clean too Verified with rfc3962 test vectors and against a assembled cryptoraid; ok hshoexer@ | |||
2008-06-14 | friendly error message when key decryption fails; ok hshoexer@ | Damien Miller | |
2008-06-13 | Implement pbkdf2 in in bioctl to derive master key from a passphrase. | Hans-Joerg Hoexer | |
ok marco djm | |||
2008-06-12 | -d tweaks; | Jason McIntyre | |
2008-06-12 | Add delete volume functionality. | Marco Peereboom | |
discussed with krw, kettenis & drahn ok hshoexer | |||
2008-01-19 | Add initial scaffold for RAID 0. No IO just yet. | Marco Peereboom | |
Much prodding todd | |||
2007-09-08 | make bioctl behave like a unix program and exit 1 on error | Henning Brauer | |
ok deraadt, silence dlg marco |