diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2016-10-07 19:04:45 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2016-10-07 19:04:45 +0000 |
commit | 0688d86e59e343bf073cd86959cc58c99d371dc4 (patch) | |
tree | a6aab4e1d5f966608e69863b615a8cd589f23606 /lib/libc | |
parent | 66326e3cb1dfa7853e83964d3b17dbb944a02583 (diff) |
introduce a sysctl to hijack dns sockets. when set to a port number,
all dns socket connections will be redirected to localhost:port.
this could be a sockopt on the listening socket, but sysctl is
an easier interface to work with right now.
ok deraadt
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/sysctl.3 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/libc/gen/sysctl.3 b/lib/libc/gen/sysctl.3 index 189cb5edcac..9b2659f983b 100644 --- a/lib/libc/gen/sysctl.3 +++ b/lib/libc/gen/sysctl.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sysctl.3,v 1.271 2016/09/28 17:53:13 jmc Exp $ +.\" $OpenBSD: sysctl.3,v 1.272 2016/10/07 19:04:44 tedu Exp $ .\" .\" Copyright (c) 1993 .\" The Regents of the University of California. All rights reserved. @@ -27,7 +27,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: September 28 2016 $ +.Dd $Mdocdate: October 7 2016 $ .Dt SYSCTL 3 .Os .Sh NAME @@ -416,6 +416,7 @@ information. .It Dv KERN_BUFCACHEPERCENT Ta "integer" Ta "yes" .It Dv KERN_CCPU Ta "integer" Ta "no" .It Dv KERN_CLOCKRATE Ta "struct clockinfo" Ta "no" +.It Dv KERN_DNSJACKPORT Ta "integer" Ta "yes" .It Dv KERN_CONSDEV Ta "dev_t" Ta "no" .It Dv KERN_CPTIME Ta "long[CPUSTATES]" Ta "no" .It Dv KERN_CPTIME2 Ta "u_int64_t[CPUSTATES]" Ta "no" @@ -508,6 +509,9 @@ structure is returned. This structure contains the clock, statistics clock and profiling clock frequencies, the number of micro-seconds per hz tick, and the clock skew rate. +.It Dv KERN_DNSJACKPORT +When non zero, the localhost port to which all DNS sockets should be +redirected. .It Dv KERN_CONSDEV The console device. .It Dv KERN_CPTIME |