| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Add optional metadata memebers. | 2008-02-07 | 1 | -9/+100 | ||
| | | | | | | Randomize Crypto password and add salt array. Add mock key encryption functions. | |||||
| * | Shave off a few more bytes by moving IO collision detection into a generic | 2008-02-05 | 1 | -1/+33 | ||
| | | | | | | fucntion. Fix bug in the crypto code that could casuse data corruption as a bonus, bad cut & past tedu! | |||||
| * | Add strip size to debug print. | 2008-02-05 | 1 | -1/+2 | ||
| | | ||||||
| * | Create a generic function to validate IO instead of copying and pasting | 2008-02-05 | 1 | -1/+58 | ||
| | | | | | | | | | same code in all disciplines. This shaves of a few bytes. crypto 3185 -> 2690 raid 0 2843 -> 2378 raid 1 3474 -> 2689 | |||||
| * | There is no such thing as RAIDCRYPTO so rename to CRYPTO | 2008-02-03 | 1 | -3/+3 | ||
| | | ||||||
| * | Improve performance dramatically by preventing severeal context switches. | 2008-01-29 | 1 | -2/+3 | ||
| | | | | | | | | | | 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 | |||||
| * | Create chunk and state transition functions for RAID 0. | 2008-01-24 | 1 | -204/+8 | ||
| | | | | | | | 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. | |||||
| * | Bring softraid into the world of 16 byte commands; this allows for > 2TB disks | 2008-01-24 | 1 | -11/+28 | ||
| | | | | | Fix bioctl size output which was off by *512; diagnosed by otto | |||||
| * | KNF | 2008-01-24 | 1 | -4/+5 | ||
| | | ||||||
| * | debug kruft | 2008-01-20 | 1 | -7/+1 | ||
| | | ||||||
| * | Add initial scaffold for RAID 0. No IO just yet. | 2008-01-19 | 1 | -11/+78 | ||
| | | | | | Much prodding todd | |||||
| * | Remove printf that doesn't make sense. | 2008-01-19 | 1 | -2/+1 | ||
| | | ||||||
| * | return with ENOTTY instead of EINVAL for unknown ioctl requests. | 2008-01-05 | 1 | -2/+2 | ||
| | | | | | ok krw@ deraadt@ dlg@ | |||||
| * | also move softraid raid1 into own file, ok marco | 2007-11-27 | 1 | -381/+1 | ||
| | | ||||||
| * | split crypto functions out into their own file, so softraid.c is not such | 2007-11-27 | 1 | -449/+4 | ||
| | | | | | a jungle. ok deraadt marco | |||||
| * | Just CRYPTO; RAID CRYPTO doesn't mean anything. | 2007-11-26 | 1 | -2/+2 | ||
| | | ||||||
| * | rename RAID C to RAID CRYPTO. makes marco happier | 2007-11-26 | 1 | -6/+6 | ||
| | | ||||||
| * | use arc4random_bytes() instead of multiple arc4random() calls; | 2007-11-16 | 1 | -5/+2 | ||
| | | | | | ok deraadt@ dlg@ henric@ mcbride@ | |||||
| * | KNF | 2007-09-11 | 1 | -13/+15 | ||
| | | | | | prompted and "much better" by marco@, ok pyr@ | |||||
| * | more M_ZERO changes | 2007-09-08 | 1 | -26/+13 | ||
| | | | | | ok pyr@ and krw@ | |||||
| * | rework sensor tasks to use the kernels generic workq rather than a special | 2007-06-24 | 1 | -2/+2 | ||
| | | | | | | | | | | 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@ | |||||
| * | correct format strings for large types; ok marco | 2007-06-06 | 1 | -29/+27 | ||
| | | ||||||
| * | Shuffle calculation of physical block so that bounds checking is not off by | 2007-06-05 | 1 | -13/+16 | ||
| | | | | | | | | | | 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 | |||||
| * | consistently use one variable instead of deriving it repeatedly | 2007-06-05 | 1 | -2/+2 | ||
| | | | | | from and ok marco@ | |||||
| * | use six new macros to access & store the 48-bit disklabel fields related | 2007-06-05 | 1 | -2/+2 | ||
| | | | | | | to size. tested on almost all machines, double checked by miod and krw next comes the type handling surrounding these values | |||||
| * | use S_IFCHR instead of S_IFBLK to shut the SCSI midlayer up during | 2007-06-04 | 1 | -7/+13 | ||
| | | | | | | | autoconf. ok drahn@ | |||||
| * | put raidc inside ifdef CRYPTO, since it won't work without it | 2007-06-03 | 1 | -1/+5 | ||
| | | ||||||
| * | shuffle the raid 1 specific functions to be all together and closer | 2007-06-03 | 1 | -376/+376 | ||
| | | | | | to the bottom, after common functions. ok marco | |||||
| * | virtual device drivers tend not to need machine/bus.h. also important | 2007-06-03 | 1 | -3/+1 | ||
| | | | | | | because mvme68k (and perhaps others) do not have it. showed it to dlg who just shook his head | |||||
| * | During autoassemble get the actual raid level instead of always 1. | 2007-06-03 | 1 | -13/+35 | ||
| | | | | | | Sprinkle debug throughout crypto discipline. Various knf, bad tedu! | |||||
| * | Disable crypto until we figure out proper key management and other stuff | 2007-06-02 | 1 | -1/+3 | ||
| | | | | | only tedu understands. | |||||
| * | Fix collision by not adding data length but blocks instead. | 2007-06-02 | 1 | -22/+21 | ||
| | | | | | Some clean up. | |||||
| * | Add optional metadata element. This will be needed in the future for | 2007-06-02 | 1 | -1/+6 | ||
| | | | | | certain disciplines. | |||||
| * | Redo the sense mechanism to become autosense instead of request sense. | 2007-06-02 | 1 | -36/+22 | ||
| | | | | | | | | 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). | |||||
| * | check return value of findblkmajor; this fixes a crash on vax during boot. | 2007-06-01 | 1 | -2/+8 | ||
| | | | | | | | | | add check for failed geteblk. exclude rx during boot probe. help miod todd ok todd | |||||
| * | Add additional flag to indicate that we have a metdadata io pending; this | 2007-06-01 | 1 | -3/+12 | ||
| | | | | | | | | way if we shut down the system we can make sure that it makes it onto disk before scsibus detach. ok dlg | |||||
| * | Check return code for resource allocation. | 2007-06-01 | 1 | -6/+12 | ||
| | | | | | prompted by tedu | |||||
| * | save metdata in context using dlg and tedu's shiny new workq api. | 2007-06-01 | 1 | -5/+27 | ||
| | | | | | detect stale metadata during bringup. | |||||
| * | Redo the syncer to be a little smarter on interaction while shutting down | 2007-05-31 | 1 | -5/+16 | ||
| | | | | | | | the system help and ok tedu | |||||
| * | Fix redundancy for RAID 1. Now one can pull a disk and continue running. | 2007-05-31 | 1 | -18/+98 | ||
| | | | | | help from drahn | |||||
| * | - zap unnecessary rv variable | 2007-05-31 | 1 | -5/+5 | ||
| | | | | | | | - sprinkle an XXX to remember that we have to supply a serious key later ok tedu@ | |||||
| * | Make sure that if there are staggered syncs that they complete successfully | 2007-05-30 | 1 | -1/+7 | ||
| | | | | | | | before detaching the scsi bus. ok dlg | |||||
| * | Remove ugly print and don't panic when doing a partial bringup. | 2007-05-30 | 1 | -5/+4 | ||
| | | ||||||
| * | Sync after the metadata is saved. | 2007-05-30 | 1 | -3/+13 | ||
| | | ||||||
| * | add basic support for a crypto(9) backed raid C discipline | 2007-05-30 | 1 | -41/+453 | ||
| | | | | | ok marco | |||||
| * | Add dirty bit for volumes | 2007-05-29 | 1 | -6/+12 | ||
| | | ||||||
| * | sprinkle some SMALL_KERNEL so that it can run on boot media. | 2007-05-29 | 1 | -6/+16 | ||
| | | | | | ok todd | |||||
| * | Add shutdownhook for all disciplines | 2007-05-29 | 1 | -15/+65 | ||
| | | ||||||
| * | Kill stale comment | 2007-05-29 | 1 | -2/+1 | ||
| | | ||||||
| * | Fix race in sync code. | 2007-05-29 | 1 | -7/+10 | ||
| | | ||||||
