summaryrefslogtreecommitdiffstats
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* Spell 'connection options' correctly.keramida2006-08-112-2/+6
| | | | Submitted by: Leonidas Tsampros <ltsampros@upnet.gr>
* Add note concerning FreeBSD-SA-06:01.texindex.cperciva2006-07-081-0/+4
| | | | Suggested by: csjp
* Resolve conflicts from OpenBSM 1.0 alpha 7 import.rwatson2006-06-271-1/+44
| | | | Obtained from: TrustedBSD Project
* This commit was generated by cvs2svn to compensate for changes in r159985,rwatson2006-06-2712-172/+663
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of OpenBSM 1.0 alpha 7, with the following change historyrwatson2006-06-2713-173/+707
| | | | | | | | | | | | | | | | | | | | | | | | | | | | notes: - Adopted Solaris-compatible format for subject32_ex and subject64_ex tokens, which previously did not correctly implement variable length address storage. - Prefer inttypes.h to stdint.h; enhance queue.h detection to test for TAILQ_FOREACH_SAFE(), which is present in recent BSD queue.h's, but not older ones. OpenBSM now builds on some FreeBSD 4.x version. - New event types for extended attributes, ACLs, and scheduling. Obtained from: TrustedBSD Project
* | Modify import instructions to include "-n" in the sample command line forrwatson2006-06-271-4/+4
| | | | | | | | | | | | the CVS import, and suggest removing it for the real import, rather than suggesting it for testing. This will hopefully prevent me (and others) from making errors.
* | This commit was generated by cvs2svn to compensate for changes in r159825,obrien2006-06-211-3/+3
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Fix segfault when '/etc/malloc.conf@ -> AJ' due to differnce betweenobrien2006-06-211-3/+3
| | | | | | | | | | | | calloc & malloc as agreed by vendor. Also remove an unused variable.
* | | Document that 'bad cksum 0' is expected on NICs with checksum off-loading.obrien2006-06-201-0/+7
| | |
* | | Update for the 'file' 4.17 import.obrien2006-06-191-2/+13
| | |
* | | This commit was generated by cvs2svn to compensate for changes in r159764,obrien2006-06-1975-8130/+26444
|\ \ \ | |/ / | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Virgin import of Christos Zoulas's FILE 4.17.obrien2006-06-1975-8130/+26444
| | |
* | | Update FreeBSD info regarding sendmail 8.13.7 importgshapiro2006-06-141-4/+4
| | |
* | | Resolve conflicts from sendmail 8.13.7 importgshapiro2006-06-144-12/+20
| | |
* | | This commit was generated by cvs2svn to compensate for changes in r159609,gshapiro2006-06-1433-748/+1423
|\ \ \ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Import sendmail 8.13.7gshapiro2006-06-1437-760/+1443
| | | | | | | | | | | | | | | | Security: FreeBSD-SA-06:17.sendmail
* | | | Make traceroute decode all the ICMP unreachable messages defineddwmalone2006-06-132-0/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in http://www.iana.org/assignments/icmp-parameters. Thankfully IANA's list aggrees with <netinet/ip_icmp.h>. I've tried to do this in a way which is mostly consistent with tcptraceroute and Debian's version of traceroute. However, sometimes a letter is used twice by these versions, so I've gone with: LBL tcptr Debian (chosen) ICMP_UNREACH_NET !N !N !N !N ICMP_UNREACH_HOST !H !H !H !H ICMP_UNREACH_PROTOCOL !P !P !P !P ICMP_UNREACH_PORT ! !p ! ! ICMP_UNREACH_NEEDFRAG !F-%d !F !F-<%d> !F-<%d> ICMP_UNREACH_SRCFAIL !S !S !S !S ICMP_UNREACH_NET_UNKNOWN !<%d> !U !<%d> !U ICMP_UNREACH_HOST_UNKNOWN !<%d> !U !<%d> !W ICMP_UNREACH_ISOLATED !<%d> !I !I !I ICMP_UNREACH_NET_PROHIB !<%d> !A !A !A ICMP_UNREACH_HOST_PROHIB !<%d> !C !C !Z ICMP_UNREACH_TOSNET !<%d> !T !T !Q ICMP_UNREACH_TOSHOST !<%d> !T !T !T ICMP_UNREACH_FILTER_PROHIB !X !A !A !X ICMP_UNREACH_HOST_PRECEDENCE !V !<%d> !V !V ICMP_UNREACH_PRECEDENCE_CUTOFF !C !<%d> !C !C Graham Wilson is planning to use the same codes in Debian's version. MFC after: 3 weeks
* | | | This commit was generated by cvs2svn to compensate for changes in r159399,marius2006-06-081-1/+5
|\ \ \ \ | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | * elf64-sparc.c (sparc64_elf_adjust_dynamic_symbol): When linking amarius2006-06-081-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | non-shared object, do not reserve space in .plt and .rela.plt for regular symbols neither defined nor referenced in shared objects. This is a backport of rev. 1.101 (sourceware.org repository) to Binutils 2.15 which fixes the creation of bogus relocations in the PLT of Firefox and Thunderbird binaries and which in turn caused them to segfault in rtld(1). This is committed to the vendor branch as it doesn't represent a local change but the original vendor fix is from after elf_link_hash_flags was replaced with bitfields. PR: sparc64/89486 Approved by: maintainer timeout Obtained from: NetBSD MFC after: 1 week
* | | | | o It's lilac-dmc.Berkeley.EDU, not lbl-csam.arpa.maxim2006-06-071-1/+1
| | | | | | | | | | | | | | | | | | | | Obtained from: NetBSD
* | | | | - Note that the synchronisation interface needs to be up and haveglebius2006-06-061-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | an IP address assigned. - Add "quick" keyword to pf.conf example. PR: docs/85209
* | | | | Regenerate config.h from OpenBSM 1.0 alpha 6 import.rwatson2006-06-051-7/+4
| | | | | | | | | | | | | | | | | | | | Obtained from: TrustedBSD Project
* | | | | This commit was generated by cvs2svn to compensate for changes in r159248,rwatson2006-06-0547-265/+5266
|\ \ \ \ \ | | |_|_|/ | |/| | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | Vendor branch import of TrustedBSD OpenBSM 1.0 alpha 6:rwatson2006-06-0547-265/+5266
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use AU_TO_WRITE and AU_NO_TO_WRITE for the 'keep' argument to au_close(); previously we used hard-coded 0 and 1 values. - Add man page for au_open(), au_write(), au_close(), and au_close_buffer(). - Support a more complete range of data types for the arbitrary data token: add AUR_CHAR (alias to AUR_BYTE), remove AUR_LONG, add AUR_INT32 (alias to AUR_INT), add AUR_INT64. - Add au_close_token(), which allows writing a single token_t to a memory buffer. Not likely to be used much by applications, but useful for writing test tools. - Modify au_to_file() so that it accepts a timeval in user space, not just kernel -- this is not a Solaris BSM API so can be modified without causing compatibility issues. - Define a new API, au_to_header32_tm(), which adds a struct timeval argument to the ordinary au_to_header32(), which is now implemented by wrapping au_to_header32_tm() and calling gettimeofday(). #ifndef KERNEL the APIs that invoke gettimeofday(), rather than having a variable definition. Don't try to retrieve time zone information using gettimeofday(), as it's not needed, and introduces possible failure modes. - Don't perform byte order transformations on the addr/machine fields of the terminal ID that appears in the process32/subject32 tokens. These are assumed to be IP addresses, and as such, to be in network byte order. - Universally, APIs now assume that IP addresses and ports are provided in network byte order. APIs now generally provide these types in network byte order when decoding. - Beginnings of an OpenBSM test framework can now be found in openbsm/test. This code is not built or installed by default. - auditd now assigns more appropriate syslog levels to its debugging and error information. - Support for audit filters introduced: audit filters are dynamically loaded shared objects that run in the context of a new daemon, auditfilterd. The daemon reads from an audit pipe and feeds both BSM and parsed versions of records to shared objects using a module API. This will provide a framework for the writing of intrusion detection services. - New utility API, audit_submit(), added to capture common elements of audit record submission for many applications. Obtained from: TrustedBSD Project
* | | | | This commit was generated by cvs2svn to compensate for changes in r159063,harti2006-05-305-114/+915
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | Vendor patch: add support for the BITS construct and enumerations in bothharti2006-05-305-114/+915
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gensnmpdef and gensnmptree. Add include and typedef directives to gensnmptree. Submitted by: soc-sheryana (partly)
* | | | | | Resolve conflicts.delphij2006-05-212-84/+156
| | | | | |
* | | | | | This commit was generated by cvs2svn to compensate for changes in r158795,delphij2006-05-213-113/+244
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | Import netcat from OpenBSD 3.9-RELEASE.delphij2006-05-215-192/+393
| | | | | | |
* | | | | | | Update the description of the `STATE' column for SMP systems,keramida2006-05-161-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and add the missing `C' SMP-only column. PR: docs/29245 Submitted by: ada@bsd.org Patch by: Pawel Worach <pawel.worach@telia.com> MFC after: 3 days
* | | | | | | Option for setting a fixed destination port. This is useful for tracingcjc2006-05-112-9/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to a host behind a firewall where only specific services are allowed. For example, to trace the hops to an HTTP server behind a firewall, $ traceroute -e -P tcp -p 80 www-firewalled.example.com MFC after: 1 week
* | | | | | | Re-add option -C to usage().ru2006-04-191-1/+1
| | | | | | |
* | | | | | | Document the -C option of top(1), which has been added to the sourcekeramida2006-04-191-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and the usage message of top, but not to the manpage. Pointy hat to: keramida Reminded by: ru MFC after: 1 week
* | | | | | | Bring SYNOPSIS in line with usage().ru2006-04-182-7/+8
| | | | | | |
* | | | | | | fix "ipf -Z" reporting rubbish and possibly panic'ing boxdarrenr2006-04-181-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | MFC after: 4 days
* | | | | | | Correct a typo: In order to make fixmount(8) quite, one shoulddelphij2006-04-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | use -q, not -v.
* | | | | | | Add a note regarding bumping the freebsd*mc files for mergemaster's sake.gshapiro2006-04-131-1/+5
| | | | | | |
* | | | | | | Document authpf's requirement for a mounted fdescfs(5).mlaier2006-03-281-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR: docs/89635 MFC after: 1 day
* | | | | | | Merge conflicts after official patchesache2006-03-272-10/+15
| | | | | | |
* | | | | | | This commit was generated by cvs2svn to compensate for changes in r157191,ache2006-03-272-6/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | | Official patches 001-004ache2006-03-274-16/+20
| | | | | | | |
* | | | | | | | Resolve conflictsache2006-03-278-299/+678
| | | | | | | |
* | | | | | | | Remove obsoleted files, update upgrade instructionsache2006-03-273-1282/+4
| | | | | | | |
* | | | | | | | This commit was generated by cvs2svn to compensate for changes in r157184,ache2006-03-2760-1463/+12939
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | | Virgin import of GNU Readline 5.1ache2006-03-2768-1754/+13615
| | | | | | | |
| * | | | | | | This files no longer usedache2004-10-188-5270/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Asked-by: ru
* | | | | | | | This commit was generated by cvs2svn to compensate for changes in r157181,sam2006-03-273-0/+22
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | | | Add eapol_version config parameter so folks with clients that (bogusly)sam2006-03-275-4/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | require the authenticator announce EAPOL version 1 don't have to hack the code to get a working setup. Discussed with Jouni; he's committed a similar set of changes to his devel branch and I sent him these changes so I'm committing this on the vendor branch in the expectation it will appear in the next import. MFC after: 1 week
* | | | | | | | | Take contrib/openbsm/etc configuration files off the vendor branch inrwatson2006-03-265-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | order to add $FreeBSD$ tags, which helps mergemaster better manage updating them. Requested by: several Obtained from: TrustedBSD Project
* | | | | | | | | Record sendmail 8.13.6 upgradegshapiro2006-03-221-4/+4
| | | | | | | | |
OpenPOWER on IntegriCloud