1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-21 23:18:00 -08:00

Accept netstat-style address.port syntax too.

OK bluhm@ deraadt@ jmc@
This commit is contained in:
millert 2023-02-06 18:14:10 +00:00
parent 67a77ffea4
commit 8aa0c375a2
2 changed files with 25 additions and 9 deletions

View File

@ -1,4 +1,4 @@
.\" $OpenBSD: tcpdrop.8,v 1.13 2014/08/28 08:22:42 jmc Exp $
.\" $OpenBSD: tcpdrop.8,v 1.14 2023/02/06 18:14:10 millert Exp $
.\"
.\" Copyright (c) 2004 Markus Friedl <markus@openbsd.org>
.\"
@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: August 28 2014 $
.Dd $Mdocdate: February 6 2023 $
.Dt TCPDROP 8
.Os
.Sh NAME
@ -26,9 +26,6 @@
.Ar local-port
.Ar remote-addr
.Ar remote-port
.Nm tcpdrop
.Ar local-addr : Ns Ar local-port
.Ar remote-addr : Ns Ar remote-port
.Sh DESCRIPTION
The
.Nm
@ -41,6 +38,18 @@ and the foreign address
port
.Ar remote-port .
Addresses and ports can be specified by name or numeric value.
.Pp
To simplify dropping TCP connections using the output of
.Xr fstat 1
and
.Xr netstat 1 ,
.Nm
also supports a two-argument form where the address and port are
separated by a colon
.Pq Sq \&:
or dot
.Pq Sq \&.
character.
.Sh EXAMPLES
If a connection to
.Xr httpd 8
@ -57,6 +66,8 @@ Either of the following commands will drop the connection:
# tcpdrop 192.168.5.41 80 192.168.5.1 26747
# tcpdrop 192.168.5.41:80 192.168.5.1:26747
# tcpdrop 192.168.5.41.80 192.168.5.1.26747
.Ed
.Sh SEE ALSO
.Xr fstat 1 ,

View File

@ -1,4 +1,4 @@
/* $OpenBSD: tcpdrop.c,v 1.20 2021/07/12 15:09:21 beck Exp $ */
/* $OpenBSD: tcpdrop.c,v 1.21 2023/02/06 18:14:10 millert Exp $ */
/*
* Copyright (c) 2004 Markus Friedl <markus@openbsd.org>
@ -44,9 +44,6 @@ usage(void)
fprintf(stderr,
"usage: %s local-addr local-port remote-addr remote-port\n",
__progname);
fprintf(stderr,
" %s local-addr:local-port remote-addr:remote-port\n",
__progname);
exit(1);
}
@ -76,10 +73,15 @@ main(int argc, char **argv)
hints.ai_socktype = SOCK_STREAM;
if (argc == 3) {
char *dot;
laddr1 = addr1 = strdup(argv[1]);
if (!addr1)
err(1, "strdup");
port1 = strrchr(addr1, ':');
dot = strrchr(addr1, '.');
if (dot > port1)
port1 = dot;
if (port1)
*port1++ = '\0';
else
@ -89,6 +91,9 @@ main(int argc, char **argv)
if (!addr2)
err(1, "strdup");
port2 = strrchr(addr2, ':');
dot = strrchr(addr2, '.');
if (dot > port2)
port2 = dot;
if (port2)
*port2++ = '\0';
else