Commit Graph

7924 Commits

Author SHA1 Message Date
sketch
18b6ee6d42 Complete removal of uvm_useracc(9), as described in
http://mail-index.netbsd.org/source-changes/2003/11/13/0011.html
2004-07-05 11:08:37 +00:00
mycroft
ace8694948 Attempt to make Perry less confused. 2004-07-03 20:04:03 +00:00
mycroft
a10e4d1f3a Cardbus -> CardBus 2004-07-03 17:36:51 +00:00
mycroft
02bab8c5fb There is no "DWL-G520B". There is, however, a "DWL-G520", which actually
works now.
Also, spell "CardBus" consistently.
2004-07-03 16:58:18 +00:00
junyoung
b774e487ce - Add missing .YorN
- Fix typos in previous commit
2004-07-02 18:20:27 +00:00
sjg
3a0c68edfd Add support for SHA1 hashed passwords.
The algorithm used is essentially PBKDF1 from RFC 2898 but using
hmac_sha1 rather than SHA1 directly (suggested by smb@research.att.com).

 * The format of the encrypted password is:
 * $<tag>$<iterations>$<salt>$<digest>
 *
 * where:
 *      <tag>           is "sha1"
 *      <iterations>    is an unsigned int identifying how many rounds
 *                      have been applied to <digest>.  The number
 *                      should vary slightly for each password to make
 *                      it harder to generate a dictionary of
 *                      pre-computed hashes.  See crypt_sha1_iterations.
 *      <salt>          up to 64 bytes of random data, 8 bytes is
 *                      currently considered more than enough.
 *      <digest>        the hashed password.

hmac.c implementes HMAC as defined in RFC 2104 and includes a unit
test for both hmac_sha1 and hmac_sha1 using a selection of the Known
Answer Tests from RFC 2202.

It is worth noting that to be FIPS compliant the hmac key (password)
should be 10-20 chars.
2004-07-02 00:05:23 +00:00
kleink
2d356478dd Make the spelling of reentrant match the rest of the system. 2004-07-01 10:38:28 +00:00
junyoung
844c9270d0 Add missing MKCVS, MKKERBEROS4, MKPOSTFIX, MKSENDMAIL, and MKUUCP.
Note that some variables are still missing, since i'm not sure how
to describe them...
Bump date.
2004-07-01 06:09:57 +00:00
jmc
f648d12d47 Add missing NetBSD ID tags 2004-06-30 03:26:26 +00:00
snj
d4652fb7f7 Add TNF. 2004-06-29 18:12:13 +00:00
wiz
78bc620954 Add the minus sign that is behind route {add|delete} by default.
Noted by christos.
2004-06-28 13:44:12 +00:00
wiz
383ad11060 Add route.conf(5). Closes PR 25818 by mrg. 2004-06-25 16:31:20 +00:00
itojun
e197438eb7 $NetBSD$ 2004-06-25 16:27:02 +00:00
itojun
344e6a89ca spamdb(8) and spamd.conf(5). noted by Thomas Klausner 2004-06-25 16:25:00 +00:00
itojun
b4d647b66c PF from OpenBSD 3.5 2004-06-25 16:11:48 +00:00
wiz
0fc8b3b26d Fix Dd argument. 2004-06-25 15:33:13 +00:00
wiz
c58cd09201 Avoid contractions; use macro for emphasizing instead of stars; add articles. 2004-06-25 15:31:37 +00:00
christos
c4d334e77e check for defined before checking for empty to ease a 1.6 transition 2004-06-25 02:05:39 +00:00
itojun
a60209cdf0 for platforms that has problem with c++ comment, switch to good old /* */ 2004-06-24 03:28:50 +00:00
matt
d414d4dd69 Add xpterm and hpterm as aliases for xhpterm. 2004-06-23 22:48:56 +00:00
wiz
658c849ad6 Bump date for previous. 2004-06-23 15:45:59 +00:00
jmc
567190270a If USETOOLS != yes then depend on the system tmac directory, not DESTDIR since
USETOOLS=no/never means the system groff is being used so depending on
anything except it's tmac files makes no sense (and prevents builds with
USETOOLS=no/never from working as PR#23067 points out)
2004-06-23 15:28:19 +00:00
mrg
7815ecbdd9 note that re(4) does not work on sparc64 yet 2004-06-23 15:20:32 +00:00
snj
f1081a5943 tsarna@ says uep(4) won't happen in 2.0, so revert last. 2004-06-23 14:35:38 +00:00
jmc
3eb2232819 PR#26016. Fix 3.0->2.0 for NetBSD version 2004-06-23 05:33:36 +00:00
toshii
ef8af66f53 re(4) appeared in NetBSD 2.0. 2004-06-22 15:10:16 +00:00
itojun
9e6c9caf46 PF from openbsd 3.5 2004-06-22 15:06:49 +00:00
itojun
7ebcee1564 add pf manpage for installation 2004-06-22 14:58:41 +00:00
itojun
4a887d96a0 add $NetBSD$ 2004-06-22 14:34:58 +00:00
itojun
d70f07f00c PF from OpenBSD 3.5 2004-06-22 14:33:10 +00:00
wiz
a3581a08d2 Bump date for previous. 2004-06-22 09:12:48 +00:00
mycroft
1f65a19a82 Delete the "quite buggy" comment. 2004-06-22 09:10:55 +00:00
jmc
84fafa3db5 Ignore errors on some rm -rf's for platforms that aren't quite
POSIX compliant
and return errors on r/o source (FreeBSD) for -rf. Fixes PR#25022
2004-06-21 18:20:08 +00:00
jmc
b2f782612f Completely rework how tools/compat is done. Purge all uses/references to
_NETBSD_SOURCE as this makes cross building from older/newer versions of
NetBSD harder, not easier (and also makes the resulting tools 'different')

Wrap all required code with the inclusion of nbtool_config.h, attempt to
only use POSIX code in all places (or when reasonable test w. configure and
provide definitions: ala u_int, etc).

Reviewed by lukem. Tested on FreeBSD 4.9, Redhat Linux ES3, NetBSD 1.6.2 x86
NetBSD current (x86 and amd64) and Solaris 9.

Fixes PR's: PR#17762 PR#25944
2004-06-20 22:20:14 +00:00
hannken
7a5be5a9ff - Add flag L_COWINPROGRESS to struct lwp to avoid recursion when
doing copy-on-write.

- Change VFS_SNAPSHOT() to return the snapshot vnode locked.

- Make the IO path for copy-on-write and snapshot-read more lightweight.
  Avoids deadlocks where vn_rdwr(...READ...) has a shared lock and needs
  to copy-on-write.
  Avoids deadlocks/panics where to clean pages the copy-on-write needs
  to allocate pages for its VOP_PUTPAGES().

L_COWINPROGRESS part approved by: Jason R. Thorpe <thorpej@netbsd.org>
2004-06-20 18:55:58 +00:00
yamt
f34604727e sync with the recent reality. (allocbuf; hi, pk) 2004-06-17 13:13:41 +00:00
lha
cc333b3dd7 Add list of async-signal-safe functions
Approved by wiz
2004-06-13 19:17:06 +00:00
jmc
3ca8952a49 Note default for MANINSTALL 2004-06-13 08:17:22 +00:00
jmc
bfd6078e17 Clean up HOST_OSTYPE a bit more and turn any spaces into _'s as well as
stripping paren'd values from HOST_ARCH. Fixes PR#25586 for uname -p output
on linux hosts which return multi-word values
2004-06-11 07:14:16 +00:00
lukem
4fbb0461b9 Be consistent in handling YHEADER, similar to Christos' fix in bsd.lib.mk 1.253 2004-06-10 00:29:58 +00:00
christos
d3b5333e6b PR/25887: Peter Bex: Missing yacc dependency in bsd Make system 2004-06-09 22:45:24 +00:00
abs
a43917f536 Add TOOL_SPARKCRC. Need to clean up what happens in the non tools case. 2004-06-08 21:46:52 +00:00
wiz
0c391626db Bump date for previous. 2004-06-06 04:05:49 +00:00
rumble
fb87883ff1 Mention "Xterasys XN2511B" under supported hardware. 2004-06-05 15:30:42 +00:00
rumble
913fa30477 Fix typos. 2004-06-05 15:24:04 +00:00
rumble
9f060af51f typo: "The value NULL is be used" -> "The value NULL is used" 2004-06-05 15:05:02 +00:00
jdolecek
388cab5e29 sort the Sitecom entry properly 2004-06-05 11:44:55 +00:00
jdolecek
fe0b738ada sort the product list by alphabet, and add some recently added items
bump date
2004-06-05 11:42:52 +00:00
jmmv
42592938f8 + TDD 2004-06-03 18:31:53 +00:00
seb
1dedb26d50 Fix macro name.
Approved by wiz@
2004-06-02 21:11:15 +00:00