summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Mention that we're checking kernel log messages, even if there'sbrian2002-06-281-2/+2
| | | | | | | no output. PR: 39618 MFC after: 1 week
* Refer to utilities, not commands, for consistency with env(1), nice(1), etc.tjr2002-06-282-8/+8
|
* Don't use SignalBundle if it's not setbrian2002-06-281-3/+6
| | | | Submitted by: Federico G. Schwindt <fgsch@olimpo.com.br>
* Document the fairly obvious effects of the PATH environment variable.tjr2002-06-283-1/+25
|
* Discourage use of env(1)'s "-" flag by moving its description to thetjr2002-06-282-6/+8
| | | | Compatibility section of the manual page.
* Complain about (and fix) misformatted RADIUS attributes rather than silentlybrian2002-06-281-2/+6
| | | | fixing them.
* When a RADIUS server is being used, don't use MPPE unless the RADIUSbrian2002-06-281-6/+19
| | | | server says it's ok.
* Fix warning.dfr2002-06-281-1/+1
| | | | Reviewed by: luigi
* bring Makefile up to date with new ipfwjulian2002-06-281-1/+1
| | | | Submitted by: luigi
* Fix a botched flag clear operation. Rumor has it that this also fixesscottl2002-06-281-1/+1
| | | | | | | the funky-volume-settings-on-startup problem. Reviewed by: the channel that shall not be named MFC after: 7 days
* Overwrite "term" from login.conf(5) for any known TERMache2002-06-281-2/+9
|
* Use full URL path in references to the Handbook.bmah2002-06-282-12/+12
|
* Add my entry to the mojo file.dillon2002-06-281-0/+1
|
* There will be no GDB related .info files unless someone that cares about themobrien2002-06-281-1/+1
| | | | sends a patch.
* This commit was generated by cvs2svn to compensate for changes in r98954,obrien2002-06-282-0/+246
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of GDB 5.2.obrien2002-06-282-0/+246
| | | | | | | | | | These bits are taken from the FSF gdb_5_2-branch anoncvs repo on 27-June-2002 12:01:00 EDT.
* | add my entry.cjh2002-06-281-0/+1
| |
* | NO! We DON'T wany any libintl action here.obrien2002-06-281-1/+1
| |
* | Actually rev 1.3 (don't declare tilde_expand()) is needed with GDB 5.2.obrien2002-06-281-4/+2
| |
* | Things Gdb 5.2 wants to know about us.obrien2002-06-281-27/+203
| |
* | Our FreeBSD custom changes are OBE. Return to using the stock vendor sources.obrien2002-06-2825-17753/+23531
| |
* | Remove a printf and add a comment on an assumption that could beluigi2002-06-271-3/+10
| | | | | | | | occasionally violated by device drivers.
* | This commit was generated by cvs2svn to compensate for changes in r98944,obrien2002-06-27514-44801/+242791
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of GDB 5.2.obrien2002-06-27639-90062/+295298
| | | | | | | | | | These bits are taken from the FSF gdb_5_2-branch anoncvs repo on 27-June-2002 12:01:00 EDT.
* | The new ipfw code.luigi2002-06-278-278/+6251
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This code makes use of variable-size kernel representation of rules (exactly the same concept of BPF instructions, as used in the BSDI's firewall), which makes firewall operation a lot faster, and the code more readable and easier to extend and debug. The interface with the rest of the system is unchanged, as witnessed by this commit. The only extra kernel files that I am touching are if_fw.h and ip_dummynet.c, which is quite tied to ipfw. In userland I only had to touch those programs which manipulate the internal representation of firewall rules). The code is almost entirely new (and I believe I have written the vast majority of those sections which were taken from the former ip_fw.c), so rather than modifying the old ip_fw.c I decided to create a new file, sys/netinet/ip_fw2.c . Same for the user interface, which is in sbin/ipfw/ipfw2.c (it still compiles to /sbin/ipfw). The old files are still there, and will be removed in due time. I have not renamed the header file because it would have required touching a one-line change to a number of kernel files. In terms of user interface, the new "ipfw" is supposed to accepts the old syntax for ipfw rules (and produce the same output with "ipfw show". Only a couple of the old options (out of some 30 of them) has not been implemented, but they will be soon. On the other hand, the new code has some very powerful extensions. First, you can put "or" connectives between match fields (and soon also between options), and write things like ipfw add allow ip from { 1.2.3.4/27 or 5.6.7.8/30 } 10-23,25,1024-3000 to any This should make rulesets slightly more compact (and lines longer!), by condensing 2 or more of the old rules into single ones. Also, as an example of how easy the rules can be extended, I have implemented an 'address set' match pattern, where you can specify an IP address in a format like this: 10.20.30.0/26{18,44,33,22,9} which will match the set of hosts listed in braces belonging to the subnet 10.20.30.0/26 . The match is done using a bitmap, so it is essentially a constant time operation requiring a handful of CPU instructions (and a very small amount of memmory -- for a full /24 subnet, the instruction only consumes 40 bytes). Again, in this commit I have focused on functionality and tried to minimize changes to the other parts of the system. Some performance improvement can be achieved with minor changes to the interface of ip_fw_chk_t. This will be done later when this code is settled. The code is meant to compile unmodified on RELENG_4 (once the PACKET_TAG_* changes have been merged), for this reason you will see #ifdef __FreeBSD_version in a couple of places. This should minimize errors when (hopefully soon) it will be time to do the MFC.
* | NO_GDB while it is being upgraded.obrien2002-06-271-0/+1
| |
* | Forcibly revert to mainline.des2002-06-2781-2523/+1701
| |
* | Delay the AC97 calibration until after the system clock has beenscottl2002-06-271-5/+22
| | | | | | | | | | | | | | | | | | | | calibrated. This fixes the problem where playback and recording do not run at the correct speed. It probably also eliminates the need for the hacks/workarounds/sysctl's that were previously devised to deal with this, but I will leave that for a different time. Reviewed by: orion
* | This commit was generated by cvs2svn to compensate for changes in r98937,des2002-06-27178-116/+22936
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Vendor import of OpenSSH 3.3p1.des2002-06-27215-1145/+24630
| | |
* | | In the SUPPORT_DOT case, warn that seperation with a period is deprecated.jmallett2002-06-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In -STABLE, this is default, in -CURRENT it is not, which leads to many a headache for a user coming to -CURRENT without remembering this fact. It is one of the POLA violations we have not avoided by preparing the users for it appopriately. Therefore, a warnx(3) is added here, explicitly to be MFC'd shortly to start the re-education process rolling. Reviewed by: General murmurs of approval in that IRC channel. MFC after: 3 days
* | | Increment morefiles, balance braces. This should really be using getopt(3).jmallett2002-06-271-2/+3
| | |
* | | Instead of not using argc and doing other great evil, check for no argumentsjmallett2002-06-271-5/+6
| | | | | | | | | | | | | | | in main() and print usage, or if there are too many arguments, handle that there, too.
* | | The thread-safe time functions appear to have been introduced as ofwollman2002-06-271-6/+7
| | | | | | | | | | | | | | | ISO 9945-1: 1996 (according to the change bars therein), which corresponds to 1003.1c-1995. Give them appropriate visibility protection.
* | | Lots of people have had to hack around the fixed address for cardbusimp2002-06-271-1/+1
| | | | | | | | | | | | | | | | | | bridges in modern hardware (that hardware w/ lots of RAM). Raise the address from 0x44000000 to 0x88000000 to match what we do with NEWCARD. However, this really should be done in the pci layer.
* | | Fix a bug that prevented the deletion of non-default ACLs from beingrwatson2002-06-273-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | passed down the VFS stack. While I'm here, replace a '0' with a 'NULL' to make the code more readable. Sponsored by: DARPA, NAI Labs Obtained from: TrustedBSD Project
* | | A bit of whitespace magic.rwatson2002-06-273-15/+15
| | |
* | | Update my name here, pointed out by grep(1).jmallett2002-06-271-1/+1
| | |
* | | Add these libs from the 4.6-RELEASE.obrien2002-06-273-0/+2152
| | | | | | | | | | | | | | | libstdc++ was bumped with the switch to Gcc 3.1, and libpam was bumped with the switch to OpenPAM.
* | | Add these libs from the 4.6-RELEASE.obrien2002-06-273-0/+1861
| | | | | | | | | | | | | | | libstdc++ was bumped with the switch to Gcc 3.1, and libpam was bumped with the switch to OpenPAM.
* | | Resort namespace blocks into a more sensible order. Delete a redundantwollman2002-06-271-8/+7
| | | | | | | | | | | | comment.
* | | Leave it to a non-native speaker of English to catch another typo: "do do" ->imp2002-06-271-1/+1
| | | | | | | | | | | | | | | | | | "to do" submitted by: marius@alchemy.franken.de
* | | Spell less like a 'merkin and more like a speaker of Englishimp2002-06-271-1/+1
| | |
* | | Document addition of RLIMIT_VMEM support, added in rev 1.26 of miscbltin.c.sheldonh2002-06-271-1/+3
| | |
* | | Arrgh. Forgot to note that fixes for SA-02:28 have been MFC-ed.bmah2002-06-272-2/+2
| | |
* | | New release notes: RLIMIT_VMEM, zero-copy support, SA-02:28,bmah2002-06-272-2/+62
| | | | | | | | | | | | | | | | | | OpenSSH 3.3p1, pkg_version(1) rewrite. MFC noted: sed(1) -i.
* | | Point -CURRENT seekers to a snapshot site that's actually up.bmah2002-06-271-1/+1
| | |
* | | The wrong y/// output got spammed into this file; from green@ indirectly.jmallett2002-06-271-1/+1
| | |
* | | Correct the psl regression test for sed(1)'s now-fixed newlinegreen2002-06-273-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | behavior. Add the bcb regression test which checks for failures due to a backslash ('\') coinciding with the very last character of the command buffer. The regression test is cf. this PR (which I did not know about) and has a different fix for the bug. PR: bin/22351 Submitted by: Stefan Duerholt <stefan.duerholt@t-online.de>
* | | GENERIC now builds with -Werror, so remove NO_WERROR.mux2002-06-271-1/+0
| | | | | | | | | | | | Approved by: jake
OpenPOWER on IntegriCloud