| Commit message (Expand) | Author | Age | Files | Lines |
* | Make bioctl properly verify raidlevels specified via the -c option. |  stsp | 2021-02-08 | 1 | -1/+3 |
* | Add a RAID1C (raid1 + crypto) softraid(8) discipline. |  stsp | 2021-02-08 | 1 | -4/+12 |
* | Do not use ".Ar device" for both an option argument and for the operand. |  schwarze | 2020-10-30 | 1 | -3/+3 |
* | Reduce minimum allowed number of chunks in a CONCAT volume from 2 to |  krw | 2020-04-25 | 1 | -2/+2 |
* | When system calls indicate an error they return -1, not some arbitrary |  deraadt | 2019-06-28 | 1 | -19/+19 |
* | Kill a couple of superfluous "return;" statements |  krw | 2019-05-11 | 1 | -5/+1 |
* | This commit removes bio_status() calls after a BIOCLOCATE since the |  patrick | 2016-12-20 | 1 | -5/+2 |
* | optarg is declared in unistd.h and usage is __dead. From Jan Stary. |  tb | 2016-10-20 | 1 | -4/+3 |
* | Add support for automatically selecting the number of rounds to use with |  jsing | 2016-09-21 | 1 | -1/+47 |
* | Switch softraid crypto from PKCS5 PBKDF2 to bcrypt PBKDF. |  jsing | 2016-09-19 | 1 | -6/+9 |
* | Teach bioctl derive_key() how to handle bcrypt_pbkdf. |  jsing | 2016-09-10 | 1 | -6/+16 |
* | Ugh, too many initialisms... |  jsing | 2016-09-10 | 1 | -3/+3 |
* | Clean up some softraid crypto code - rename struct sr_crypto_kdf_pbkdf2 to |  jsing | 2016-09-10 | 1 | -16/+16 |
* | When changing the passphrase, keep the previous number of rounds, unless |  jsing | 2016-09-08 | 1 | -3/+7 |
* | Shuffle some code to make futher changes easier - pass the KDF type into |  jsing | 2016-09-08 | 1 | -15/+16 |
* | When changing a passphrase, use bio_kdf_generate() so that we generate a |  jsing | 2016-09-08 | 1 | -2/+2 |
* | overzealous use of errx() hides useful information about errors. |  tedu | 2016-05-13 | 1 | -3/+3 |
* | Fix an unitialized variable; pointed out by jsg@. |  uebayasi | 2016-02-04 | 1 | -2/+2 |
* | remove the restriction to disallow the use of a passphrase file during |  halex | 2015-07-18 | 1 | -5/+2 |
* | fix usage(); |  jmc | 2015-05-30 | 1 | -3/+4 |
* | Initial addition of ``Patrol Read'' support in bio(4), biocto(8), and |  uebayasi | 2015-05-29 | 1 | -6/+161 |
* | explicit_bzero(3) on private data, in case of core dumps (and being a good example) |  pelikan | 2015-05-11 | 1 | -9/+9 |
* | Re-enable the RAID 5 discipline for softraid(4). |  jsing | 2015-04-11 | 1 | -3/+1 |
* | Sort getopt() string. |  uebayasi | 2015-03-18 | 1 | -2/+2 |
* | Replace <sys/param.h> with <limits.h> and other less dirty headers where |  deraadt | 2015-01-16 | 1 | -3/+4 |
* | tedu the tedu code that tedu forgot to tedu when he tedued the other part |  jsing | 2014-10-08 | 1 | -82/+5 |
* | Make sure the correct errno is reported by warn* or err* and not |  guenther | 2014-07-20 | 1 | -3/+5 |
* | malloc/memset -> calloc. from peter malone |  tedu | 2014-04-22 | 1 | -3/+2 |
* | Disable the RAID 5 discipline in bioctl, as the current softraid RAID 5 |  jsing | 2014-01-18 | 1 | -1/+5 |
* | Remove the RAID 4 discipline from softraid. Anyone sensible would use RAID |  jsing | 2014-01-18 | 1 | -2/+1 |
* | Whole bunch of (unsigned char) casts carefully added for ctype calls. |  deraadt | 2013-11-22 | 1 | -2/+2 |
* | oops, forgot a #ifdef AOE in last commit |  deraadt | 2013-11-11 | 1 | -1/+4 |
* | substantial namespace cleanup. Might go a little bit too far, but we |  deraadt | 2013-11-04 | 1 | -8/+21 |
* | Make sure -v output is properly aligned with the normal output. |  kettenis | 2013-10-31 | 1 | -2/+2 |
* | Add support for displaying the cache write policy of RAID volumes to bioctl(8) |  kettenis | 2013-10-23 | 1 | -4/+16 |
* | Only keep track of the bio(4) cookie, not an entire bio_locate struct. |  jsing | 2012-09-10 | 1 | -16/+19 |
* | move pkcs5_pbkdf5 function to libutil so everybody can play with it |  tedu | 2012-09-06 | 1 | -3/+1 |
* | clear memory before passing to ioctl routines instead of praying it |  deraadt | 2012-04-19 | 1 | -3/+5 |
* | If no controller name is provided, use the program name as a prefix. Also, |  jsing | 2012-01-22 | 1 | -8/+16 |
* | Teach bioctl(8) about the new status interface for bio(4). With the |  jsing | 2012-01-20 | 1 | -60/+93 |
* | Move the bio(4) cookie into a separate struct and make this struct the |  jsing | 2012-01-17 | 1 | -15/+15 |
* | CONCAT requires at least two disks. |  jsing | 2012-01-17 | 1 | -2/+2 |
* | Provide a bioctl(8) option that changes the state of a chunk to offline. |  jsing | 2012-01-07 | 1 | -4/+12 |
* | Implement a concatenating discipline for softraid. |  jsing | 2011-12-31 | 1 | -1/+6 |
* | Add missing closing braces in usage(). |  matthieu | 2011-08-01 | 1 | -3/+3 |
* | Add a missing prototype, fix build with WARNINGS=yes. |  nicm | 2011-07-09 | 1 | -1/+2 |
* | add basic config support for creating aoe disks. ok marco |  tedu | 2011-07-08 | 1 | -8/+65 |
* | use stronum, removing an atoi from the tree. ok deraadt matthew |  tedu | 2011-07-04 | 1 | -4/+6 |
* | give more space when printing volumes to allow softraid0 to fit |  jcs | 2011-04-04 | 1 | -5/+5 |
* | Allow add a -s switch to make bioctl read the passphrase from stdin. Handy |  ckuethe | 2010-12-01 | 1 | -9/+13 |