History log of /src/usr.sbin/rip6query |
Revision | Date | Author | Comments |
1.4 | 28-May-2007 |
tls | Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on the FORTIFY_SOURCE feature of libssp, thus checking the size of arguments to various string and memory copy and set functions (as well as a few system calls and other miscellany) where known at function entry. RedHat has evidently built all "core system packages" with this option for some time.
This option should be used at the top of Makefiles (or Makefile.inc where this is used for subdirectories) but after any setting of LIB.
This is only useful for userland code, and cannot be used in libc or in any code which includes the libc internals, because it overrides certain libc functions with macros. Some effort has been made to make USE_FORT=yes work correctly for a full-system build by having the bsd.sys.mk logic disable the feature where it should not be used (libc, libssp iteself, the kernel) but no attempt has been made to build the entire system with USE_FORT and doing so will doubtless expose numerous bugs and misfeatures.
Adjust the system build so that all programs and libraries that are setuid, directly handle network data (including serial comm data), perform authentication, or appear likely to have (or have a history of having) data-driven bugs (e.g. file(1)) are built with USE_FORT=yes by default, with the exception of libc, which cannot use USE_FORT and thus uses only USE_SSP by default. Tested on i386 with no ill results; USE_FORT=no per-directory or in a system build will disable if desired.
|
1.3 | 19-Sep-2002 |
lukem | use NETBSDSRCDIR as appropriate
|
1.2 | 19-Jan-2000 |
itojun | add manpage, rip6query(8).
|
1.1 | 02-Jul-1999 |
itojun | route6d: RIPng daemon (similar to route6d) rip6query: RIPng query (similar to ripquery)
NOTE: we usually do not run route6d on end nodes at startup (rtsol should do the trick). So I figured that route6d can be in /usr/sbin, not in /sbin (routed is in /sbin). Correct me if I'm wrong.
|
1.5 | 19-Jan-2002 |
wiz | Whitespace nits.
|
1.4 | 16-Nov-2001 |
itojun | rcsid cleanup
|
1.3 | 16-Nov-2001 |
itojun | sync with latest kame. terminate only if ripng response is not received for 5 seconds (or length specified by -w).
|
1.2 | 26-Apr-2001 |
wiz | Fix date and whitespace mininits.
|
1.1 | 19-Jan-2000 |
itojun | add manpage, rip6query(8).
|
1.11 | 30-Aug-2011 |
joerg | ANSIfy + static + __dead
|
1.10 | 05-Jan-2004 |
jmmv | Homogenize usage messages: make the 'usage' word all lowercase, as this seems to be the most common practice in our tree.
|
1.9 | 15-Apr-2003 |
itojun | %d is not 10 chars, but 12 chars. uwse NI_MAXSERV. sync w/ kame. from openbsd
|
1.8 | 08-Sep-2002 |
itojun | socklen_t audit. KNF. signal handler must use _exit(), not exit(). from deraadt, sync w/kame
|
1.7 | 16-Nov-2001 |
itojun | sync with latest kame. terminate only if ripng response is not received for 5 seconds (or length specified by -w).
|
1.6 | 07-May-2001 |
kleink | getopt(3): EOF -> -1.
|
1.5 | 06-Apr-2001 |
wiz | Negative exit code cleanup: Replace exit(-x) with exit(x). As seen on tech-userlevel.
|
1.4 | 19-Dec-2000 |
itojun | do not declare errno on our own. from: Patrick Welche <prlw1@newn.cam.ac.uk> sync with the latest kame tree.
|
1.3 | 13-Dec-1999 |
itojun | use getaddrinfo() for getting address parameter. clarify command line parser. add -I option.
(sync with recent KAME)
|
1.2 | 06-Jul-1999 |
itojun | branches: 1.2.4; add NetBSD RCS ID.
|
1.1 | 02-Jul-1999 |
itojun | route6d: RIPng daemon (similar to route6d) rip6query: RIPng query (similar to ripquery)
NOTE: we usually do not run route6d on end nodes at startup (rtsol should do the trick). So I figured that route6d can be in /usr/sbin, not in /sbin (routed is in /sbin). Correct me if I'm wrong.
|
1.2.4.1 | 27-Dec-1999 |
wrstuden | Pull up to last week's -current.
|