pjd
f2ed81d3aa
Correct error messages.
...
MFC after: 2 weeks
2006-05-01 12:05:45 +00:00
ru
388e590f95
Reimplementation of world/kernel build options. For details, see:
...
http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html
The src.conf(5) manpage is to follow in a few days.
Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
2006-03-17 18:54:44 +00:00
pjd
65255e20ba
Add some notes how to properly dump kernel onto gmirror provider.
...
Reviewed and corrected by: brueffer
MFC after: 3 days
2006-03-08 08:50:52 +00:00
wkoszek
d8eb71788e
Print "clear" and "dump" only once.
...
Reviewed by: pjd
Approved by: cognet (mentor)
MFC after: 3 days
2006-03-03 21:35:57 +00:00
pjd
ab17cb5277
Add an example how to use keyfiles for encrypted providers which should be
...
attached before the root file system is mounted.
MFC after: 3 days
2006-02-11 13:18:47 +00:00
pjd
8f76601c25
- Allow to use -b without passphrase or with keyfiles as it will be
...
supported for a moment.
- Don't allow to use -i when no passphrase is given. Now if iterations is
equal to -1 (not set), we know that we should not ask for the passphrase
on boot.
It still doesn't handle situation when one key is protected with
passphrase and the other is not. There is no quick fix for this.
The complete solution will be to make number of iterations a per-key
value. Because this need metadata format change and is only needed for
devices attached on boot, I'll leave it as it is for now.
MFC after: 3 days
2006-02-11 13:04:10 +00:00
pjd
85ddd3fd4b
Deny init/attach/setkey subcommands when no key components are given.
...
MFC after: 3 days
Tested with: prove /usr/src/tools/regression/geom_eli
2006-02-01 15:01:55 +00:00
joel
87dcb0582d
Expand contractions.
2006-02-01 14:33:14 +00:00
pjd
f31d2a3b5c
Remove trailing spaces.
2006-02-01 12:11:37 +00:00
pjd
2c22d1672b
Remove unused argument.
...
MFC after: 3 days
2006-01-31 15:55:52 +00:00
pjd
74978a10e1
Allow to specify only one disk. This is helpful when we want to extend
...
our concatenated device later.
MFC after: 1 week
2006-01-30 22:47:07 +00:00
pjd
7ea810fefd
Teach NOP GEOM class how to gather the following statistics:
...
- number of read I/O requests,
- number of write I/O requests,
- number of read bytes,
- number of written bytes.
Add 'reset' subcommand for resetting statistics.
2005-12-08 23:00:31 +00:00
pjd
03a6ffac1f
- The geom(8) utility only uses three types of arguments: string (char *),
...
value (intmax_t) and boolean (int).
Based on that provide three functions:
- gctl_get_ascii()
- gctl_get_int()
- gctl_get_intmax()
- Hide gctl_get_param() function, as it is only used internally in
subr.c.
- Allow to provide argument name as (fmt, ...).
- Assert geom(8) bugs (missing argument is a geom(8) bug).
- Clean-up and simplify the code by using new functions and assumtions
(no more checking for missing argument).
Tested by: regression tests
2005-12-07 01:38:27 +00:00
joel
7eed0b9958
s/5.5/6.0/ in HISTORY section.
...
Discussed with: ru
2005-11-24 09:25:10 +00:00
ceri
a4edf83a8d
gmirror.8:
...
Note the default balancing algorithm and stripe size.
geom_mirror.c:
Slightly friendlier error message.
Reviewed by: pjd
2005-10-25 13:45:07 +00:00
pjd
2c9137ee39
Add a note in example as well, that last sector is used for metadata,
...
so it don't provoke confusions.
Noticed by: Victor Sudakov <sudakov@sibptus.tomsk.ru>
MFC after: 2 days
2005-09-29 08:56:15 +00:00
pjd
e74d0361d3
Even if there are no valid keys in metadata, but provider is attached
...
we can still use setkey subcommand.
MFC after: 3 days
Found by: regression tests
2005-09-10 07:43:03 +00:00
marius
a128a96ae0
As with NO_CRYPT, don't try to compile geli(8) when NO_OPENSSL is defined
...
either.
MFC after: 1 week
2005-08-27 20:51:12 +00:00
takawata
393fbc1df4
Update Document.
2005-08-26 11:39:38 +00:00
pjd
aee0040df6
By default, when doing crypto work in software, start as many threads
...
as we have active CPUs and bind each thread to its own CPU.
MFC after: 3 days
2005-08-21 18:12:51 +00:00
pjd
0c33c951a5
Allow to change number of iterations for PKCS#5v2. It can only be used
...
when there is only one key set.
MFC after: 3 days
2005-08-19 22:19:25 +00:00
pjd
94bc690fb5
Move function for calculating number of bits into more central place.
...
I want to use it so more.
MFC after: 3 days
2005-08-19 22:13:09 +00:00
pjd
e00e4fe291
Update manual page (now dedicated kernel thread is always started).
...
MFC after: 3 days
2005-08-17 15:27:23 +00:00
pjd
f8b8e82885
When keys were configured without passphrase, number of iterations in
...
metadata is equal to -1. if we then wanted to attach provider (or change
keys) and forget about '-p' flag it failed on assertion (quite ok, without
assertion it could call PKCS#5v2 with 4294967295 iterations).
Instead of failing on assertion, remind about '-p' flag.
MFC after: 3 days
2005-08-14 14:13:07 +00:00
pjd
beb7869726
GELI doesn't need cryptodev.
...
MFC after: 2 days
2005-08-12 07:44:42 +00:00
pjd
b9935076f6
Add code for Ext2FS and ReiserFS labels recognition.
...
Submitted by: Stanislav Sedov <stas@310.ru>
PR: kern/84638
MFC after: 1 week
2005-08-12 00:27:45 +00:00
ru
4cb266fe14
Add missing check for the NO_CRYPT build option.
...
Reported by: Alexander Polakov
2005-08-02 20:12:30 +00:00
brueffer
9ac3a9fcb9
Misc cleanup (spelling, grammar, mdoc, style, cut >80 char lines).
2005-07-30 13:27:15 +00:00
pjd
7079ab35b4
I actually do need libmd.
2005-07-29 10:06:57 +00:00
pjd
66b1e1d508
I think I found the problem, reconnect geli to the build.
2005-07-27 23:56:32 +00:00
pjd
4ab523d931
- Reduce WARNS level to 3, so it will be compilabe on alpha.
...
- Don't link libmd, it is not needed.
- Connect manual page to the build.
MFC after: 1 week
2005-07-27 23:56:01 +00:00
pjd
075c0555b8
Disconnect geli from the build for now.
...
I need to find out first what is the cause of sha2.c compilation problem
on alpha.
2005-07-27 23:30:50 +00:00
pjd
ae2e0b62c3
Connect GEOM_ELI class to the build.
...
MFC after: 1 week
2005-07-27 21:47:55 +00:00
pjd
57922fa5cc
Add GEOM_ELI class which provides GEOM providers encryption.
...
For features list and usage see manual page: geli(8).
Sponsored by: Wheel Sp. z o.o.
http://www.wheel.pl
MFC after: 1 week
2005-07-27 21:43:37 +00:00
pjd
894f400097
Don't forget to initialize 'id' field.
...
MFC after: 3 days
2005-07-13 07:46:55 +00:00
pjd
5745532ed1
Fix stripe size in example.
...
Found by: kris
MFC after: 3 days
2005-04-26 09:23:21 +00:00
pjd
c7eadd3426
Remove duplicated description of 'clear' subcommand.
...
Pointed out by: marck
X-MFC-after: few seconds
2005-04-23 12:17:21 +00:00
pjd
1dcaba98da
Document 'clear' and 'dump' subcommands.
...
MFC after: 1 week
2005-04-15 23:51:20 +00:00
pjd
ebb3a9b55b
Allow classes to specify local source files.
...
MFC after: 3 weeks
2005-04-07 15:57:38 +00:00
pjd
4c29f3b1e1
Define subcommands' usage inside g_command structure.
...
MFC after: 1 week
2005-03-14 14:25:47 +00:00
pjd
8ef3f502d0
Instead of documenting every standard subcommand's argument everywhere,
...
just leave reference to geom(8).
MFC after: 1 week
2005-03-14 13:14:04 +00:00
pjd
e421eec8b6
- Document 'status' subcommand.
...
- Update copyrights.
MFC after: 1 week
2005-03-13 19:38:12 +00:00
brueffer
18848be824
Typos and grammar fixes, wordsmithing
2005-02-28 01:33:10 +00:00
pjd
668a028670
- Add md_provsize field to metadata, which will help with
...
shared-last-sector problem.
After this change, even if there is more than one provider with the same
last sector, the proper one will be chosen based on its size.
It still doesn't fix the 'c' partition problem (when da0s1 can be confused
with da0s1c) and situation when 'a' partition starts at offset 0
(then da0s1a can be confused with da0s1 and da0s1c). One can use '-h'
option there, when creating device or avoid sharing last sector.
Actually, when providers share the same last sector and their size is equal,
they provide exactly the same data, so the name (da0s1, da0s1a, da0s1c)
isn't important at all.
- Provide backward compatibility.
- Update copyright's year.
MFC after: 1 week
2005-02-27 23:07:47 +00:00
trhodes
506f73b1a9
Fix a couple of grammar nits.
...
PR: 77437
Submitted by: Paul A. Hoadley <paulh@logicsquad.net> (original version)
2005-02-24 01:00:09 +00:00
pjd
4debf0685e
Fix year in copyrights.
2005-02-16 22:19:13 +00:00
ru
13fe9ea5a2
Sort sections.
2005-01-18 10:09:38 +00:00
ru
6cc4b6c220
Added the EXIT STATUS section where appropriate.
2005-01-17 07:44:44 +00:00
pjd
1a16120a14
Fix arguments syntax.
...
Manual pages fixes by: ru
MFC after: 3 days
2005-01-15 13:02:50 +00:00
ru
1df46a2a90
Markup fixes.
2005-01-15 10:05:02 +00:00