summaryrefslogtreecommitdiffstats
path: root/sbin/ipf
Commit message (Collapse)AuthorAgeFilesLines
* MFC r314655:ngie2017-05-304-12/+12
| | | | | | bin: normalize paths using SRCTOP-relative paths or :H when possible This simplifies make logic/output
* MFHgjb2016-03-025-76/+0
|\ | | | | | | Sponsored by: The FreeBSD Foundation
| * DIRDEPS_BUILD: Regenerate without local dependencies.bdrewery2016-02-245-76/+0
| | | | | | | | | | | | | | | | These are no longer needed after the recent 'beforebuild: depend' changes and hooking DIRDEPS_BUILD into a subset of FAST_DEPEND which supports skipping 'make depend'. Sponsored by: EMC / Isilon Storage Division
* | Create packages for atm, ccdconfig, devd, ipf, ipfw,gjb2016-02-099-0/+9
|/ | | | | | | | iscsi, natd, nandfs, pf, quotacheck, and routed. Add ping6 and rtsol to the runtime package. Sponsored by: The FreeBSD Foundation
* For INTERNALLIB always add in the corresponding _DP_ and use LIBADD inbdrewery2015-12-041-0/+2
| | | | | | | | | the real build file. This lessens the need to define DPADD_<lib> and LDADD_<lib> to just very special cases. Sponsored by: EMC / Isilon Storage Division
* Don't add LIBADD=ipf to libipf itself.bdrewery2015-12-011-0/+2
| | | | | | | This had no real impact since libipf is a static INTERNALLIB. It does conflict with an assertion I am adding for LIBADD though. Sponsored by: EMC / Isilon Storage Division
* Update dependencies after r291406 added libelf to libkvm.bdrewery2015-12-018-0/+8
| | | | | | | | Unfortunately filemon/meta mode tracks all indirect dependencies here since ld(1) is reading libelf when linking in libkvm. Churn would be reduced if this was able to be limited to direct dependencies. Sponsored by: EMC / Isilon Storage Division
* Remove redundant DPSRCS which were already in SRCS.bdrewery2015-11-255-9/+0
| | | | | | | DPSRCS already contains all of SRCS. MFC after: 1 week Sponsored by: EMC / Isilon Storage Division
* META_MODE: For some reason meta mode cannot generate the intermediate tab.cbdrewery2015-10-021-6/+18
| | | | | | | | files. Split up all of the targets to be more clear on how they are generated to fix the problem. MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
* Add SUBDIR_PARALLEL.bdrewery2015-09-261-1/+2
| | | | | MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
* Remove disconnected directories.bdrewery2015-09-264-68/+0
| | | | | | These were added disconnected in 2005 in r145524. Sponsored by: EMC / Isilon Storage Division
* Update META_MODE dependencies.bdrewery2015-09-171-0/+6
|
* Add META_MODE support.sjg2015-06-139-0/+261
|\ | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp
| * dirdeps.mk now sets DEP_RELDIRsjg2015-06-089-18/+0
| |
| * Merge sync of headsjg2015-05-2710-10/+9
| |\ | |/ |/|
| * Merge from head@274682sjg2014-11-198-14/+8
| |\
| * \ Merge head from 7/28sjg2014-08-197-0/+14
| |\ \
| * | | Updated dependenciessjg2014-05-168-8/+0
| | | |
| * | | Updated dependenciessjg2014-05-108-0/+16
| | | |
| * | | Merge headsjg2013-09-113-18/+42
| |\ \ \
| * | | | Updated dependenciessjg2013-03-118-0/+8
| | | | |
| * | | | Updated dependenciessjg2013-02-169-18/+0
| | | | |
| | | | |
| | \ \ \
| *-. \ \ \ Sync from headsjg2012-11-041-2/+2
| |\ \ \ \ \
| * | | | | | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.marcel2012-08-229-0/+268
| | |/ / / / | |/| | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net>
* | | | | | Convert sbin/ to LIBADDbapt2014-11-254-9/+4
| |_|_|_|/ |/| | | | | | | | | | | | | | Reduce overlinking
* | | | | Revert r267233 for now. PIE support needs to be reworked.bdrewery2014-08-197-14/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. 50+% of NO_PIE use is fixed by adding -fPIC to INTERNALLIB and other build-only utility libraries. 2. Another 40% is fixed by generating _pic.a variants of various libraries. 3. Some of the NO_PIE use is a bit absurd as it is disabling PIE (and ASLR) where it never would work anyhow, such as csu or loader. This suggests there may be better ways of adding support to the tree. Many of these cases can be fixed such that -fPIE will work but there is really no reason to have it in those cases. 4. Some of the uses are working around hacks done to some Makefiles that are really building libraries but have been using bsd.prog.mk because the code is cleaner. Had they been using bsd.lib.mk then NO_PIE would not have been needed. We likely do want to enable PIE by default (opt-out) for non-tree consumers (such as ports). For in-tree though we probably want to only enable PIE (opt-in) for common attack targets such as remote service daemons and setuid utilities. This is also a great performance compromise since ASLR is expected to reduce performance. As such it does not make sense to enable it in all utilities such as ls(1) that have little benefit to having it enabled. Reported by: kib
* | | | | Honour WITH and WITHOUT_INET6_SUPPORT.cy2014-08-051-0/+8
| |_|_|/ |/| | | | | | | | | | | | | | | Approved by: glebius (mentor) MFC after: 3 days
* | | | In preparation for ASLR [1] support add WITH_PIE to support building with -fPIE.bdrewery2014-06-087-0/+14
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is currently an opt-in build flag. Once ASLR support is ready and stable it should changed to opt-out and be enabled by default along with ASLR. Each application Makefile uses opt-out to ensure that ASLR will be enabled by default in new directories when the system is compiled with PIE/ASLR. [2] Mark known build failures as NO_PIE for now. The only known runtime failure was rtld. [1] http://www.bsdcan.org/2014/schedule/events/452.en.html Submitted by: Shawn Webb <lattera@gmail.com> Discussed between: des@ and Shawn Webb [2]
* | | Update ipfilter 4.1.28 --> 5.1.2.cy2013-09-063-18/+42
| |/ |/| | | | | | | Approved by: glebius (mentor) BSD Licensed by: Darren Reed <darrenr@reed.wattle.id.au> (author)
* | Link ipfilter(4) and ipfilter(5) to the build to stop the wrong man pageissyl02012-08-281-2/+2
|/ | | | | | | | displaying for 'man 4 ipfilter'. PR: docs/118020 Approved by: gjb (mentor) MFC after: 5 days
* Use both NO_WFORMAT and NO_WARRAY_BOUNDS for sbin/ipf, it would be toodim2011-12-171-0/+2
| | | | | | | disruptive to actually fix all the warnings, and the code hasn't been maintained for several years. MFC after: 1 week
* Always assign WARNS using ?=uqs2010-03-021-2/+1
| | | | | | | - fix some nearby style bugs - include Makefile.inc where it makes sense and reduces duplication Approved by: ed (co-mentor)
* Switch the default WARNS level for sbin/ to 6.ru2009-10-191-0/+2
| | | | Submitted by: Ulrich Spörlein
* This makefile builds contrib code, so I won't try to fix all thejb2007-11-181-0/+2
| | | | casts from pointer to int here.
* Exclude inet_addr.c from the build.cognet2007-06-111-1/+1
| | | | | | | It only provides inet_aton(), which is already provided by the libc. This causes multiple symbol definitions when linking statically. Reviewed by: darrenr
* Merge IPFilter 4.1.23 back to HEADdarrenr2007-06-041-22/+22
| | | | See src/contrib/ipfilter/HISTORY for details of changes since 4.1.13
* Fix the manual build.obrien2006-09-105-24/+23
|
* Regularly scheduled patch to unbreak regularly scheduled post-ipfilterkan2006-08-171-1/+1
| | | | | | | buildworld breakage. Exclude loglevel.c from the build. It does not appear to be used by anything in the tree and buildworld succeeds just fine without it.
* Adapt to ipf 4.1.13guido2006-08-161-2/+2
|
* fix style nitobrien2006-05-071-1/+1
|
* Add missing library dependencies.ru2006-04-131-0/+1
|
* Add printproto.c to libipfguido2005-12-301-2/+2
|
* Fix the contents of the underneath .depend files and "make checkdpadd".ru2005-05-171-8/+4
|
* Enable building /sbin/ipf (but not the rescue version) with the ability todarrenr2005-05-161-2/+4
| | | | parse bpf strings for filter rules in ipf.conf
* Patches from Ruslam Ermilov to remove NetBSD bits from Makefiles and cleanupdarrenr2005-04-288-38/+4
| | | | build problems with rescue.
* Not looking for ipfilter source files in the right placedarrenr2005-04-261-1/+1
|
* create a new build heirarchy for ipfilter toolsdarrenr2005-04-2514-16/+418
|
* Link a couple of missing manpagesguido2005-01-071-0/+2
| | | | | Submitted by: Hideyuki KURASHINA <rushani@FreeBSD.org> MFC after: 1 week
* style.Makefile(5):johan2004-02-231-1/+1
| | | | Use WARNS?= instead of WARNS=.
* Move my maintainership of parts of ipfilter back to Darren Reedguido2003-06-061-1/+1
|
OpenPOWER on IntegriCloud