summaryrefslogtreecommitdiffstats
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* Add the '-n' option which is the opposite of '-N', "Do not list tags."obrien2006-12-121-1/+4
| | | | | The '-n' option is needed when one has "log -N" in their ~/.cvsrc, but wishes to see tags for a particular invocation.
* This commit was generated by cvs2svn to compensate for changes in r165078,dougb2006-12-102-314/+0
| | | | which included commits to RCS files with non-trunk default branches.
* This commit was generated by cvs2svn to compensate for changes in r165071,dougb2006-12-10251-7058/+11926
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of BIND 9.3.3dougb2006-12-10251-7058/+11926
| |
* | This commit was generated by cvs2svn to compensate for changes in r165009,harti2006-12-083-49/+100
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Vendor patch that adds a microsecond timer function.harti2006-12-083-49/+100
| | |
* | | The sigconv.awk script generates a sigdesc.h header file, whichkeramida2006-12-011-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | contains a sigdec[] vector of structures, but the generated output is missing braces around the initializer of each struct, which triggers warnings in WARNS=3: src/usr.bin/top/sigdesc.h:10: warning: missing braces around initializer src/usr.bin/top/sigdesc.h:10: warning: (near initialization for `sigdesc[0]') * Fix the sigconv.awk script to generate a header with initializers which look better. * Add rules to usr.bin/top/Makefile that rebuilds a new sigconv.h header which matches the correct signal set from the build-time version of `${DESTDIR}/usr/include/signal.h' (so sigconv.h doesn't get stale once changes are made to the header). * Remove the old sigconv.h header, now that it is autoupdated at build time. * Various Makefile style fixes (the committed Makefile was kindly submitted by Ruslan): - Reorder .PATH, PROG, SRCS and CFLAGS to match style.Makefile(5) - Split off the generated sources (sigdesc.h top.local.h) in an SRCS+= line of their own. - Add entries to CLEANFILES near the rules that generate the respective files. - Move the explicit rule which builds top.1 after the implicit rules which generate its dependencies. Reviewed by: ru, bde Submitted by: ru (Makefile) MFC after: 2 weeks
* | | From OpenBSD, rev. 1.91:mlaier2006-11-301-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | fix servicecurve check; no point in checking the same sc three times, it was obviously intended to check all three. has been wrong since the beginning, 4 years... noticed by Earl Lapus <earl.lapus@gmail.com>, Vasil Dimov <vd@FreeBSD.org> mailed me then, ok mcbride MFC after: 3 days
* | | This commit was generated by cvs2svn to compensate for changes in r163976,dougb2006-11-046-44/+122
|\ \ \ | | |/ | |/| | | | which included commits to RCS files with non-trunk default branches.
| * | Update to version 9.3.2-P2, which addresses the vulnerabilitydougb2006-11-046-44/+122
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | announced by ISC dated 31 October (delivered via e-mail to the bind-announce@isc.org list on 2 November): Description: Because of OpenSSL's recently announced vulnerabilities (CAN-2006-4339, CVE-2006-2937 and CVE-2006-2940) which affect named, we are announcing this workaround and releasing patches. A proof of concept attack on OpenSSL has been demonstrated for CAN-2006-4339. OpenSSL is required to use DNSSEC with BIND. Fix for version 9.3.2-P1 and lower: Upgrade to BIND 9.3.2-P2, then generate new RSASHA1 and RSAMD5 keys for all old keys using the old default exponent and perform a key rollover to these new keys. These versions also change the default RSA exponent to be 65537 which is not vulnerable to the attacks described in CAN-2006-4339.
* | | This commit was generated by cvs2svn to compensate for changes in r163820,harti2006-10-312-28/+63
|\ \ \ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Vendor patch: synthesize the initial value for sysObjectId from the valueharti2006-10-312-28/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | of uname -r in FreeBSD. This value can be overwritten in the configuration file. Suggested by: phk
* | | | This commit was generated by cvs2svn to compensate for changes in r163799,harti2006-10-301-5/+6
|\ \ \ \ | |/ / / | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Vendor patch: improve readability by using the IF_Mbps macro.harti2006-10-301-5/+6
| | | | | | | | | | | | | | | | Submitted by: glebius
* | | | Mention that we do not support route labels in the BUGS section.mlaier2006-10-301-1/+7
| | | | | | | | | | | | | | | | | | | | PR: docs/93590 Reported by: Niki Denev
* | | | Fixed -mprofiler-epilogue. The garbage collector apparently doesn'tbde2006-10-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | understand that non-local variables can never be collected, and when it collected the static variable for mexitcount_libfunc, gcc aborted on the next use of this variable. This quick fix is to reinitialize the variable on every use and depend on garbage collection recovering the small amount of memory wasted by this, and not worry by the small amount of time wasted by this. It would be better to initialize the variable together with most of the other libfuncs in optabs.c and depend on whatever magic is there to prevent its collection, but we initialize it here to avoid taking at least 2 more files off the vendor branch.
* | | | Make it so that the synopsis and usage message almost agree.dwmalone2006-10-152-2/+2
| | | | | | | | | | | | | | | | MFC after: 3 weeks
* | | | Add a -D option to traceroute that prints the differences betweendwmalone2006-10-152-6/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the probe packet we sent and the packet quoted by the ICMP response. Can be useful for spotting hops that change the packet in-flight or have problems generating correct ICMP responses. MFC after: 3 weeks
* | | | This commit was generated by cvs2svn to compensate for changes in r163356,ru2006-10-141-12/+15
|\ \ \ \ | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | Fix from upstream: unbreak generation of the terminfo.5 manpage.ru2006-10-141-12/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR: docs/46709, docs/56981, docs/80871 MFC after: 3 days Obtained from: ftp://invisible-island.net/ncurses/ncurses-5.5.tar.gz
* | | | | This commit was generated by cvs2svn to compensate for changes in r162837,delphij2006-09-301-2789/+0
| | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
* | | | | Markup nits.ru2006-09-291-2/+2
| | | | |
* | | | | This commit was generated by cvs2svn to compensate for changes in r162735,roberto2006-09-282-0/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | Fix compilation with gcc 4.1. This is imported on the vendor branch as itroberto2006-09-282-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | was applied in the mainstream source and a later complete import of 4.2.2p3 will complete the fix. Submitted by: kan
* | | | | | Remove bogus casts of valid integer ioctl() arguments.ru2006-09-261-4/+4
| | | | | |
* | | | | | Resolve conflicts from OpenBSM 1.0 alpha 12 import.rwatson2006-09-252-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | Obtained from: TrustedBSD Project
* | | | | | This commit was generated by cvs2svn to compensate for changes in r162621,rwatson2006-09-2516-57/+290
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | Vendor import TrustedBSD OpenBSM 1.0 alpha 12, with the following changerwatson2006-09-2519-60/+302
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | history notes since the last import: OpenBSM 1.0 alpha 12 - Correct bug in auditreduce which prevented the -c option from working correctly when the user specifies to process successful or failed events. The problem stemmed from not having access to the return token at the time the initial preselection occurred, but now a second preselection process occurs while processing the return token. - getacfilesz(3) API added to read new audit_control(5) filesz setting, which auditd(8) now sets the kernel audit trail rotation size to. - auditreduce(1) now uses stdin if no file names are specified on the command line; this was the documented behavior previously, but it was not implemented. Be more specific in auditreduce(1)'s examples section about what might be done with the output of auditreduce. - Add audit_warn(5) closefile event so that administrators can hook termination of an audit trail file. For example, this might be used to compress the trail file after it is closed. - auditreduce(1) now uses regular expressions for pathname matching. Users can now supply one or more (comma delimited) regular expressions for searching the pathnames. If one of the regular expressions is prefixed with a tilde (~), and a path matches, it will be excluded from the search results. MFC after: 3 days Obtained from: TrustedBSD Project
* | | | | | | Removed these from HEAD as well.ru2006-09-212-4940/+0
| | | | | | |
* | | | | | | This commit was generated by cvs2svn to compensate for changes in r162512,ru2006-09-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
* | | | | | | This commit was generated by cvs2svn to compensate for changes in r162509,ru2006-09-213-3989/+5506
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | | Updated manpages for 3.4.6 release.ru2006-09-213-3989/+5506
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | OK'ed by: kan Obtained from: gcc-3.4.6.tar.bz2
* | | | | | | | Update config.h for OpenBSM 1.0 alpha 11 import: strlcat is now detectedrwatson2006-09-211-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | by configure.
* | | | | | | | Resolve conflicts from OpenBSM 1.0 alpha 11 vendor import: we have locallyrwatson2006-09-212-7/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | added $FreeBSD$ to /etc configuration files to assist mergemaster.
* | | | | | | | This commit was generated by cvs2svn to compensate for changes in r162503,rwatson2006-09-2157-171/+665
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | | Vendor import of OpenBSM 1.0 alpha 11, with the following change historyrwatson2006-09-2161-191/+693
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | notes since the last import: OpenBSM 1.0 alpha 11 - Reclassify certain read/write operations as having no class rather than the fr/fw class; our default classes audit intent (open) not operations (read, write). - Introduce AUE_SYSCTL_WRITE event so that BSD/Darwin systems can audit reads and writes of sysctls as separate events. Add additional kernel environment and jail events for FreeBSD. - Break AUDIT_TRIGGER_OPEN_NEW into two events, AUDIT_TRIGGER_ROTATE_USER (issued by the user audit(8) tool) and AUDIT_TRIGGER_ROTATE_KERNEL (issued by the kernel audit implementation) so that they can be distinguished. - Disable rate limiting of rotate requests; as the kernel doesn't retransmit a dropped request, the log file will otherwise grow indefinitely if the trigger is dropped. - Improve auditd debugging output. - Fix a number of threading related bugs in audit_control file reading routines. - Add APIs au_poltostr() and au_strtopol() to convert between text representations of audit_control policy flags and the flags passed to auditon(A_SETPOLICY) and retrieved from auditon(A_GETPOLICY). - Add API getacpol() to return the 'policy:' entry from audit_control, an extension to the Solaris file format to allow specification of policy persistent flags. - Update audump to print the audit_control policy field. - Update auditd to read the audit_control policy field and set the kernel policy to match it when configuring/reconfiguring. Remove the -s and -h arguments as these policies are now set via the configuration file. If a policy line is not found in the configuration file, continue with the current default of setting AUDIT_CNT. - Fix bugs in the parsing of large execve(2) arguments and environmental variable tokens; increase maximum parsed argument and variable count. - configure now detects strlcat(), used by policy-related functions. - Reference token and record sample files added to test tree. Obtained from: TrustedBSD Project
* | | | | | | | o Mention .telnetrc DEFAULT keyword.maxim2006-09-181-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR: bin/100496 (sort of) Obtained from: NetBSD, heas@netbsd MFC after: 3 weeks
* | | | | | | | Sort sections.ru2006-09-172-8/+8
| | | | | | | |
* | | | | | | | Remove vestiges of GNU tar.ru2006-09-15117-47564/+0
| | | | | | | |
* | | | | | | | This commit was generated by cvs2svn to compensate for changes in r162079,dougb2006-09-064-28/+42
|\ \ \ \ \ \ \ \ | | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | | Vendor import of BIND 9.3.2-P1, which addresses the following securitydougb2006-09-064-28/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vulnerabilities: http://www.niscc.gov.uk/niscc/docs/re-20060905-00590.pdf?lang=en 2066. [security] Handle SIG queries gracefully. [RT #16300] http://www.kb.cert.org/vuls/id/697164 1941. [bug] ncache_adderesult() should set eresult even if no rdataset is passed to it. [RT #15642] All users of BIND 9 are encouraged to upgrade to this version.
| * | | | | | | Remove files from the vendor branch that are no longer presentdougb2006-01-1431-23572/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in BIND 9.3.2 that were mistakenly removed from HEAD.
* | | | | | | | resolve merge conflictssam2006-09-0419-293/+557
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MFC after: 1 month
* | | | | | | | sigh, put back buffer overflow fix of 1.1.11 that seems to havesam2006-09-041-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | not gone into the 0.9.4 release; don't put it on the vendor branch so we won't lose it on the next import if they continue to lose it
* | | | | | | | This commit was generated by cvs2svn to compensate for changes in r162017,sam2006-09-0497-314/+6192
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | | | Import of tcpdump v3.9.4sam2006-09-04114-599/+6747
| | | | | | | | |
* | | | | | | | | update instructionssam2006-09-041-13/+12
| | | | | | | | |
* | | | | | | | | resolve merge conflictssam2006-09-047-85/+262
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MFC after: 1 month
* | | | | | | | | This commit was generated by cvs2svn to compensate for changes in r162012,sam2006-09-0422-293/+3983
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | | | | Import of libpcap v0.9.4sam2006-09-0429-381/+4246
| | | | | | | | | |
OpenPOWER on IntegriCloud