From: jca Date: Tue, 28 Jun 2016 17:35:14 +0000 (+0000) Subject: Add -M and -m options to specify the outgoing and incoming minimum TTL X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=029fe797425fceaff1085f812c94a431f0b77621;p=openbsd Add -M and -m options to specify the outgoing and incoming minimum TTL Req by and ok blumh@ --- diff --git a/usr.bin/nc/nc.1 b/usr.bin/nc/nc.1 index ee57a64a6b5..384442b6035 100644 --- a/usr.bin/nc/nc.1 +++ b/usr.bin/nc/nc.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: nc.1,v 1.72 2016/06/02 04:26:32 beck Exp $ +.\" $OpenBSD: nc.1,v 1.73 2016/06/28 17:35:14 jca Exp $ .\" .\" Copyright (c) 1996 David Sacerdote .\" All rights reserved. @@ -25,7 +25,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: June 2 2016 $ +.Dd $Mdocdate: June 28 2016 $ .Dt NC 1 .Os .Sh NAME @@ -40,6 +40,8 @@ .Op Fl I Ar length .Op Fl i Ar interval .Op Fl K Ar keyfile +.Op Fl M Ar ttl +.Op Fl m Ar minttl .Op Fl O Ar length .Op Fl P Ar proxy_username .Op Fl p Ar source_port @@ -171,6 +173,11 @@ options. Additionally, any timeouts specified with the .Fl w option are ignored. +.It Fl M Ar ttl +Set the TTL / Hop Limit of outgoing packets. +.It Fl m Ar minttl +Ask the kernel to drop incoming packets whose TTL / Hop Limit is under +.Ar minttl . .It Fl N .Xr shutdown 2 the network socket after EOF on the input. diff --git a/usr.bin/nc/netcat.c b/usr.bin/nc/netcat.c index 99fea29b032..cc5d58f25e0 100644 --- a/usr.bin/nc/netcat.c +++ b/usr.bin/nc/netcat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: netcat.c,v 1.155 2016/06/28 00:01:10 deraadt Exp $ */ +/* $OpenBSD: netcat.c,v 1.156 2016/06/28 17:35:14 jca Exp $ */ /* * Copyright (c) 2001 Eric Jackson * Copyright (c) 2015 Bob Beck. All rights reserved. @@ -115,6 +115,8 @@ int timeout = -1; int family = AF_UNSPEC; char *portlist[PORT_MAX+1]; char *unix_dg_tmp_socket; +int ttl = -1; +int minttl = -1; void atelnet(int, unsigned char *, unsigned int); void build_ports(char *); @@ -166,7 +168,7 @@ main(int argc, char *argv[]) signal(SIGPIPE, SIG_IGN); while ((ch = getopt(argc, argv, - "46C:cDde:FH:hI:i:K:klNnO:P:p:R:rSs:T:tUuV:vw:X:x:z")) != -1) { + "46C:cDde:FH:hI:i:K:klM:m:NnO:P:p:R:rSs:T:tUuV:vw:X:x:z")) != -1) { switch (ch) { case '4': family = AF_INET; @@ -222,6 +224,16 @@ main(int argc, char *argv[]) case 'l': lflag = 1; break; + case 'M': + ttl = strtonum(optarg, 0, 255, &errstr); + if (errstr) + errx(1, "ttl is %s", errstr); + break; + case 'm': + minttl = strtonum(optarg, 0, 255, &errstr); + if (errstr) + errx(1, "minttl is %s", errstr); + break; case 'N': Nflag = 1; break; @@ -1423,6 +1435,29 @@ set_common_sockopts(int s, int af) &Oflag, sizeof(Oflag)) == -1) err(1, "set TCP send buffer size"); } + if (ttl != -1 || minttl != -1) { + int proto, in_ttl_opt, out_ttl_opt; + switch (af) { + case AF_INET: + proto = IPPROTO_IP; + in_ttl_opt = IP_MINTTL; + out_ttl_opt = IP_TTL; + break; + case AF_INET6: + proto = IPPROTO_IPV6; + in_ttl_opt = IPV6_MINHOPCOUNT; + out_ttl_opt = IPV6_UNICAST_HOPS; + break; + default: + errx(1, "unknown address family: %d", af); + } + if (minttl != -1 && setsockopt(s, proto, in_ttl_opt, + &minttl, sizeof(minttl))) + err(1, "setsockopt minttl"); + if (ttl != -1 && setsockopt(s, proto, out_ttl_opt, + &ttl, sizeof(ttl))) + err(1, "setsockopt ttl"); + } } int @@ -1570,6 +1605,8 @@ help(void) \t-K keyfile Private key file\n\ \t-k Keep inbound sockets open for multiple connects\n\ \t-l Listen mode, for inbound connects\n\ + \t-M ttl Outgoing TTL / Hop Limit\n\ + \t-m minttl Minimum incoming TTL / Hop Limit\n\ \t-N Shutdown the network socket after EOF on stdin\n\ \t-n Suppress name/port resolutions\n\ \t-O length TCP send buffer length\n\ @@ -1599,11 +1636,10 @@ usage(int ret) fprintf(stderr, "usage: nc [-46cDdFhklNnrStUuvz] [-C certfile] [-e name] " "[-H hash] [-I length]\n" - "\t [-i interval] [-K keyfile] [-O length] [-P proxy_username]\n" - "\t [-p source_port] [-R CAfile] [-s source] " - "[-T keyword] [-V rtable]\n" - "\t [-w timeout] [-X proxy_protocol] [-x proxy_address[:port]]\n" - "\t [destination] [port]\n"); + "\t [-i interval] [-K keyfile] [-M ttl] [-m minttl] [-O length]\n" + "\t [-P proxy_username] [-p source_port] [-R CAfile] [-s source]\n" + "\t [-T keyword] [-V rtable] [-w timeout] [-X proxy_protocol]\n" + "\t [-x proxy_address[:port]] [destination] [port]\n"); if (ret) exit(1); }