Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-04-02 | fix bad printf if metadata clearing failed | Martin Reindl | |
from Rainer Giedat ok marco@ | |||
2008-02-15 | Add myself to the copyrights, ok marco@ | Chris Kuethe | |
2008-02-14 | Actually implement the crypto. | Chris Kuethe | |
ok tedu@ marco@ | |||
2008-02-07 | Add optional metadata memebers. | Marco Peereboom | |
Randomize Crypto password and add salt array. Add mock key encryption functions. | |||
2008-02-05 | Shave off a few more bytes by moving IO collision detection into a generic | Marco Peereboom | |
fucntion. Fix bug in the crypto code that could casuse data corruption as a bonus, bad cut & past tedu! | |||
2008-02-05 | Add strip size to debug print. | Marco Peereboom | |
2008-02-05 | Create a generic function to validate IO instead of copying and pasting | Marco Peereboom | |
same code in all disciplines. This shaves of a few bytes. crypto 3185 -> 2690 raid 0 2843 -> 2378 raid 1 3474 -> 2689 | |||
2008-02-03 | There is no such thing as RAIDCRYPTO so rename to CRYPTO | Marco Peereboom | |
2008-01-29 | Improve performance dramatically by preventing severeal context switches. | Marco Peereboom | |
Decrypt only once on entry or exit instead of on in and out regardless of direction. There is still room for improvement but this is the first stab. Tested by many ok tedu | |||
2008-01-24 | Create chunk and state transition functions for RAID 0. | Marco Peereboom | |
Move RAID 1 chunk and state transition functions into proper file. Let Crypto use RAID 1 chunk and state transition functions for now but this needs fixing. | |||
2008-01-24 | Bring softraid into the world of 16 byte commands; this allows for > 2TB disks | Marco Peereboom | |
Fix bioctl size output which was off by *512; diagnosed by otto | |||
2008-01-24 | KNF | Marco Peereboom | |
2008-01-20 | debug kruft | Marco Peereboom | |
2008-01-19 | Add initial scaffold for RAID 0. No IO just yet. | Marco Peereboom | |
Much prodding todd | |||
2008-01-19 | Remove printf that doesn't make sense. | Marco Peereboom | |
2008-01-05 | return with ENOTTY instead of EINVAL for unknown ioctl requests. | Brad Smith | |
ok krw@ deraadt@ dlg@ | |||
2007-11-27 | also move softraid raid1 into own file, ok marco | Ted Unangst | |
2007-11-27 | split crypto functions out into their own file, so softraid.c is not such | Ted Unangst | |
a jungle. ok deraadt marco | |||
2007-11-26 | Just CRYPTO; RAID CRYPTO doesn't mean anything. | Marco Peereboom | |
2007-11-26 | rename RAID C to RAID CRYPTO. makes marco happier | Ted Unangst | |
2007-11-16 | use arc4random_bytes() instead of multiple arc4random() calls; | Damien Miller | |
ok deraadt@ dlg@ henric@ mcbride@ | |||
2007-09-11 | KNF | Gilles Chehade | |
prompted and "much better" by marco@, ok pyr@ | |||
2007-09-08 | more M_ZERO changes | Gilles Chehade | |
ok pyr@ and krw@ | |||
2007-06-24 | rework sensor tasks to use the kernels generic workq rather than a special | David Gwynne | |
kernel thread of its own. the api has changed (which will be fixed in the manpage shortly) so all the users of sensor tasks that i can find have been fixed too. noone tested, so its going in to force people to run with it. "put it in" deraadt@ | |||
2007-06-06 | correct format strings for large types; ok marco | Theo de Raadt | |
2007-06-05 | Shuffle calculation of physical block so that bounds checking is not off by | Marco Peereboom | |
48 blocks (metadata + metdata offset). Found by drahn. Fix panic message while in the same area. Help from otto who wrote a diff that worked around the issue. ok deraadt | |||
2007-06-05 | consistently use one variable instead of deriving it repeatedly | Todd T. Fries | |
from and ok marco@ | |||
2007-06-05 | use six new macros to access & store the 48-bit disklabel fields related | Theo de Raadt | |
to size. tested on almost all machines, double checked by miod and krw next comes the type handling surrounding these values | |||
2007-06-04 | use S_IFCHR instead of S_IFBLK to shut the SCSI midlayer up during | Marco Peereboom | |
autoconf. ok drahn@ | |||
2007-06-03 | put raidc inside ifdef CRYPTO, since it won't work without it | Ted Unangst | |
2007-06-03 | shuffle the raid 1 specific functions to be all together and closer | Ted Unangst | |
to the bottom, after common functions. ok marco | |||
2007-06-03 | virtual device drivers tend not to need machine/bus.h. also important | Theo de Raadt | |
because mvme68k (and perhaps others) do not have it. showed it to dlg who just shook his head | |||
2007-06-03 | During autoassemble get the actual raid level instead of always 1. | Marco Peereboom | |
Sprinkle debug throughout crypto discipline. Various knf, bad tedu! | |||
2007-06-02 | Disable crypto until we figure out proper key management and other stuff | Marco Peereboom | |
only tedu understands. | |||
2007-06-02 | Fix collision by not adding data length but blocks instead. | Marco Peereboom | |
Some clean up. | |||
2007-06-02 | Add optional metadata element. This will be needed in the future for | Marco Peereboom | |
certain disciplines. | |||
2007-06-02 | Redo the sense mechanism to become autosense instead of request sense. | Marco Peereboom | |
General cleanup in the sense code. This was prompted by grunk. He found that out of bounds conditions were knocking disks offline (which was obviously a bug). | |||
2007-06-01 | check return value of findblkmajor; this fixes a crash on vax during boot. | Marco Peereboom | |
add check for failed geteblk. exclude rx during boot probe. help miod todd ok todd | |||
2007-06-01 | Add additional flag to indicate that we have a metdadata io pending; this | Marco Peereboom | |
way if we shut down the system we can make sure that it makes it onto disk before scsibus detach. ok dlg | |||
2007-06-01 | Check return code for resource allocation. | Marco Peereboom | |
prompted by tedu | |||
2007-06-01 | save metdata in context using dlg and tedu's shiny new workq api. | Marco Peereboom | |
detect stale metadata during bringup. | |||
2007-05-31 | Redo the syncer to be a little smarter on interaction while shutting down | Marco Peereboom | |
the system help and ok tedu | |||
2007-05-31 | Fix redundancy for RAID 1. Now one can pull a disk and continue running. | Marco Peereboom | |
help from drahn | |||
2007-05-31 | - zap unnecessary rv variable | Alexander von Gernler | |
- sprinkle an XXX to remember that we have to supply a serious key later ok tedu@ | |||
2007-05-30 | Make sure that if there are staggered syncs that they complete successfully | Marco Peereboom | |
before detaching the scsi bus. ok dlg | |||
2007-05-30 | Remove ugly print and don't panic when doing a partial bringup. | Marco Peereboom | |
2007-05-30 | Sync after the metadata is saved. | Marco Peereboom | |
2007-05-30 | add basic support for a crypto(9) backed raid C discipline | Ted Unangst | |
ok marco | |||
2007-05-29 | Add dirty bit for volumes | Marco Peereboom | |
2007-05-29 | sprinkle some SMALL_KERNEL so that it can run on boot media. | Marco Peereboom | |
ok todd |