2005-02-06 10:47:12 +00:00
|
|
|
/* $OpenBSD: tcpdrop.c,v 1.4 2004/05/22 23:55:22 deraadt Exp $ */
|
|
|
|
|
|
|
|
/*-
|
2009-06-01 06:49:09 +00:00
|
|
|
* Copyright (c) 2009 Juli Mallett <jmallett@FreeBSD.org>
|
2005-02-06 10:47:12 +00:00
|
|
|
* Copyright (c) 2004 Markus Friedl <markus@openbsd.org>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2011-06-06 17:07:38 +00:00
|
|
|
#include <sys/param.h>
|
2005-02-06 10:47:12 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2009-06-01 06:49:09 +00:00
|
|
|
#include <sys/socketvar.h>
|
2005-02-06 10:47:12 +00:00
|
|
|
#include <sys/sysctl.h>
|
2009-06-01 06:49:09 +00:00
|
|
|
|
2011-06-06 17:07:38 +00:00
|
|
|
#include <netinet/in.h>
|
2009-06-01 06:49:09 +00:00
|
|
|
#include <netinet/in_pcb.h>
|
|
|
|
#define TCPSTATES
|
|
|
|
#include <netinet/tcp_fsm.h>
|
2005-02-06 10:47:12 +00:00
|
|
|
#include <netinet/tcp_var.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <netdb.h>
|
2009-06-01 06:49:09 +00:00
|
|
|
#include <stdbool.h>
|
2005-02-06 10:47:12 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2009-06-01 06:49:09 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#define TCPDROP_FOREIGN 0
|
|
|
|
#define TCPDROP_LOCAL 1
|
|
|
|
|
|
|
|
struct host_service {
|
|
|
|
char hs_host[NI_MAXHOST];
|
|
|
|
char hs_service[NI_MAXSERV];
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool tcpdrop_list_commands = false;
|
|
|
|
|
2013-01-30 18:24:29 +00:00
|
|
|
static char *findport(const char *);
|
2009-06-01 06:49:09 +00:00
|
|
|
static struct xinpgen *getxpcblist(const char *);
|
|
|
|
static void sockinfo(const struct sockaddr *, struct host_service *);
|
|
|
|
static bool tcpdrop(const struct sockaddr *, const struct sockaddr *);
|
2017-09-12 13:39:44 +00:00
|
|
|
static bool tcpdropall(const char *, int);
|
2009-06-01 06:49:09 +00:00
|
|
|
static bool tcpdropbyname(const char *, const char *, const char *,
|
|
|
|
const char *);
|
|
|
|
static bool tcpdropconn(const struct in_conninfo *);
|
|
|
|
static void usage(void);
|
2005-02-06 10:47:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Drop a tcp connection.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2017-09-12 13:39:44 +00:00
|
|
|
char stack[TCP_FUNCTION_NAME_LEN_MAX];
|
2013-01-30 18:24:29 +00:00
|
|
|
char *lport, *fport;
|
2017-09-12 13:39:44 +00:00
|
|
|
bool dropall, dropallstack;
|
|
|
|
int ch, state;
|
2009-06-01 06:49:09 +00:00
|
|
|
|
|
|
|
dropall = false;
|
2017-09-12 13:39:44 +00:00
|
|
|
dropallstack = false;
|
2018-05-28 01:58:49 +00:00
|
|
|
stack[0] = '\0';
|
2017-09-12 13:39:44 +00:00
|
|
|
state = -1;
|
2009-06-01 06:49:09 +00:00
|
|
|
|
2017-09-12 13:39:44 +00:00
|
|
|
while ((ch = getopt(argc, argv, "alS:s:")) != -1) {
|
2009-06-01 06:49:09 +00:00
|
|
|
switch (ch) {
|
|
|
|
case 'a':
|
|
|
|
dropall = true;
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
tcpdrop_list_commands = true;
|
|
|
|
break;
|
2017-09-12 13:39:44 +00:00
|
|
|
case 'S':
|
|
|
|
dropallstack = true;
|
2018-05-28 01:58:49 +00:00
|
|
|
strlcpy(stack, optarg, sizeof(stack));
|
2017-09-12 13:39:44 +00:00
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
dropallstack = true;
|
|
|
|
for (state = 0; state < TCP_NSTATES; state++) {
|
|
|
|
if (strcmp(tcpstates[state], optarg) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2009-06-01 06:49:09 +00:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
2017-09-12 13:39:44 +00:00
|
|
|
if (state == TCP_NSTATES ||
|
|
|
|
state == TCPS_CLOSED ||
|
|
|
|
state == TCPS_LISTEN)
|
|
|
|
usage();
|
|
|
|
if (dropall && dropallstack)
|
|
|
|
usage();
|
|
|
|
if (dropall || dropallstack) {
|
2009-06-01 06:49:09 +00:00
|
|
|
if (argc != 0)
|
|
|
|
usage();
|
2017-09-12 13:39:44 +00:00
|
|
|
if (!tcpdropall(stack, state))
|
2009-06-01 06:49:09 +00:00
|
|
|
exit(1);
|
|
|
|
exit(0);
|
|
|
|
}
|
2005-02-06 10:47:12 +00:00
|
|
|
|
2013-01-30 18:24:29 +00:00
|
|
|
if ((argc != 2 && argc != 4) || tcpdrop_list_commands)
|
2009-06-01 06:49:09 +00:00
|
|
|
usage();
|
|
|
|
|
2013-01-30 18:24:29 +00:00
|
|
|
if (argc == 2) {
|
|
|
|
lport = findport(argv[0]);
|
|
|
|
fport = findport(argv[1]);
|
|
|
|
if (lport == NULL || lport[1] == '\0' || fport == NULL ||
|
|
|
|
fport[1] == '\0')
|
|
|
|
usage();
|
|
|
|
*lport++ = '\0';
|
|
|
|
*fport++ = '\0';
|
|
|
|
if (!tcpdropbyname(argv[0], lport, argv[1], fport))
|
|
|
|
exit(1);
|
|
|
|
} else if (!tcpdropbyname(argv[0], argv[1], argv[2], argv[3]))
|
2007-10-31 13:49:20 +00:00
|
|
|
exit(1);
|
2009-06-01 06:49:09 +00:00
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2013-01-30 18:24:29 +00:00
|
|
|
static char *
|
|
|
|
findport(const char *arg)
|
|
|
|
{
|
|
|
|
char *dot, *colon;
|
|
|
|
|
|
|
|
/* A strrspn() or strrpbrk() would be nice. */
|
|
|
|
dot = strrchr(arg, '.');
|
|
|
|
colon = strrchr(arg, ':');
|
|
|
|
if (dot == NULL)
|
|
|
|
return (colon);
|
|
|
|
if (colon == NULL)
|
|
|
|
return (dot);
|
|
|
|
if (dot < colon)
|
|
|
|
return (colon);
|
|
|
|
else
|
|
|
|
return (dot);
|
|
|
|
}
|
|
|
|
|
2009-06-01 06:49:09 +00:00
|
|
|
static struct xinpgen *
|
|
|
|
getxpcblist(const char *name)
|
|
|
|
{
|
|
|
|
struct xinpgen *xinp;
|
|
|
|
size_t len;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
len = 0;
|
|
|
|
rv = sysctlbyname(name, NULL, &len, NULL, 0);
|
|
|
|
if (rv == -1)
|
|
|
|
err(1, "sysctlbyname %s", name);
|
|
|
|
|
|
|
|
if (len == 0)
|
|
|
|
errx(1, "%s is empty", name);
|
|
|
|
|
|
|
|
xinp = malloc(len);
|
|
|
|
if (xinp == NULL)
|
|
|
|
errx(1, "malloc failed");
|
|
|
|
|
|
|
|
rv = sysctlbyname(name, xinp, &len, NULL, 0);
|
|
|
|
if (rv == -1)
|
|
|
|
err(1, "sysctlbyname %s", name);
|
|
|
|
|
|
|
|
return (xinp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sockinfo(const struct sockaddr *sa, struct host_service *hs)
|
|
|
|
{
|
|
|
|
static const int flags = NI_NUMERICHOST | NI_NUMERICSERV;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
rv = getnameinfo(sa, sa->sa_len, hs->hs_host, sizeof hs->hs_host,
|
|
|
|
hs->hs_service, sizeof hs->hs_service, flags);
|
|
|
|
if (rv == -1)
|
|
|
|
err(1, "getnameinfo");
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
tcpdrop(const struct sockaddr *lsa, const struct sockaddr *fsa)
|
|
|
|
{
|
|
|
|
struct host_service local, foreign;
|
|
|
|
struct sockaddr_storage addrs[2];
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
memcpy(&addrs[TCPDROP_FOREIGN], fsa, fsa->sa_len);
|
|
|
|
memcpy(&addrs[TCPDROP_LOCAL], lsa, lsa->sa_len);
|
|
|
|
|
|
|
|
sockinfo(lsa, &local);
|
|
|
|
sockinfo(fsa, &foreign);
|
|
|
|
|
|
|
|
if (tcpdrop_list_commands) {
|
|
|
|
printf("tcpdrop %s %s %s %s\n", local.hs_host, local.hs_service,
|
|
|
|
foreign.hs_host, foreign.hs_service);
|
|
|
|
return (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = sysctlbyname("net.inet.tcp.drop", NULL, NULL, &addrs,
|
|
|
|
sizeof addrs);
|
|
|
|
if (rv == -1) {
|
|
|
|
warn("%s %s %s %s", local.hs_host, local.hs_service,
|
|
|
|
foreign.hs_host, foreign.hs_service);
|
|
|
|
return (false);
|
|
|
|
}
|
|
|
|
printf("%s %s %s %s: dropped\n", local.hs_host, local.hs_service,
|
|
|
|
foreign.hs_host, foreign.hs_service);
|
|
|
|
return (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2017-09-12 13:39:44 +00:00
|
|
|
tcpdropall(const char *stack, int state)
|
2009-06-01 06:49:09 +00:00
|
|
|
{
|
|
|
|
struct xinpgen *head, *xinp;
|
Hide struct inpcb, struct tcpcb from the userland.
This is a painful change, but it is needed. On the one hand, we avoid
modifying them, and this slows down some ideas, on the other hand we still
eventually modify them and tools like netstat(1) never work on next version of
FreeBSD. We maintain a ton of spares in them, and we already got some ifdef
hell at the end of tcpcb.
Details:
- Hide struct inpcb, struct tcpcb under _KERNEL || _WANT_FOO.
- Make struct xinpcb, struct xtcpcb pure API structures, not including
kernel structures inpcb and tcpcb inside. Export into these structures
the fields from inpcb and tcpcb that are known to be used, and put there
a ton of spare space.
- Make kernel and userland utilities compilable after these changes.
- Bump __FreeBSD_version.
Reviewed by: rrs, gnn
Differential Revision: D10018
2017-03-21 06:39:49 +00:00
|
|
|
struct xtcpcb *xtp;
|
|
|
|
struct xinpcb *xip;
|
2009-06-01 06:49:09 +00:00
|
|
|
bool ok;
|
|
|
|
|
|
|
|
ok = true;
|
|
|
|
|
|
|
|
head = getxpcblist("net.inet.tcp.pcblist");
|
|
|
|
|
|
|
|
#define XINP_NEXT(xinp) \
|
2018-07-10 13:03:06 +00:00
|
|
|
((struct xinpgen *)(uintptr_t)((uintptr_t)(xinp) + (xinp)->xig_len))
|
2009-06-01 06:49:09 +00:00
|
|
|
|
|
|
|
for (xinp = XINP_NEXT(head); xinp->xig_len > sizeof *xinp;
|
|
|
|
xinp = XINP_NEXT(xinp)) {
|
Hide struct inpcb, struct tcpcb from the userland.
This is a painful change, but it is needed. On the one hand, we avoid
modifying them, and this slows down some ideas, on the other hand we still
eventually modify them and tools like netstat(1) never work on next version of
FreeBSD. We maintain a ton of spares in them, and we already got some ifdef
hell at the end of tcpcb.
Details:
- Hide struct inpcb, struct tcpcb under _KERNEL || _WANT_FOO.
- Make struct xinpcb, struct xtcpcb pure API structures, not including
kernel structures inpcb and tcpcb inside. Export into these structures
the fields from inpcb and tcpcb that are known to be used, and put there
a ton of spare space.
- Make kernel and userland utilities compilable after these changes.
- Bump __FreeBSD_version.
Reviewed by: rrs, gnn
Differential Revision: D10018
2017-03-21 06:39:49 +00:00
|
|
|
xtp = (struct xtcpcb *)xinp;
|
|
|
|
xip = &xtp->xt_inp;
|
2009-06-01 06:49:09 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* Check protocol, support just v4 or v6, etc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Ignore PCBs which were freed during copyout. */
|
Hide struct inpcb, struct tcpcb from the userland.
This is a painful change, but it is needed. On the one hand, we avoid
modifying them, and this slows down some ideas, on the other hand we still
eventually modify them and tools like netstat(1) never work on next version of
FreeBSD. We maintain a ton of spares in them, and we already got some ifdef
hell at the end of tcpcb.
Details:
- Hide struct inpcb, struct tcpcb under _KERNEL || _WANT_FOO.
- Make struct xinpcb, struct xtcpcb pure API structures, not including
kernel structures inpcb and tcpcb inside. Export into these structures
the fields from inpcb and tcpcb that are known to be used, and put there
a ton of spare space.
- Make kernel and userland utilities compilable after these changes.
- Bump __FreeBSD_version.
Reviewed by: rrs, gnn
Differential Revision: D10018
2017-03-21 06:39:49 +00:00
|
|
|
if (xip->inp_gencnt > head->xig_gen)
|
2009-06-01 06:49:09 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Skip listening sockets. */
|
Hide struct inpcb, struct tcpcb from the userland.
This is a painful change, but it is needed. On the one hand, we avoid
modifying them, and this slows down some ideas, on the other hand we still
eventually modify them and tools like netstat(1) never work on next version of
FreeBSD. We maintain a ton of spares in them, and we already got some ifdef
hell at the end of tcpcb.
Details:
- Hide struct inpcb, struct tcpcb under _KERNEL || _WANT_FOO.
- Make struct xinpcb, struct xtcpcb pure API structures, not including
kernel structures inpcb and tcpcb inside. Export into these structures
the fields from inpcb and tcpcb that are known to be used, and put there
a ton of spare space.
- Make kernel and userland utilities compilable after these changes.
- Bump __FreeBSD_version.
Reviewed by: rrs, gnn
Differential Revision: D10018
2017-03-21 06:39:49 +00:00
|
|
|
if (xtp->t_state == TCPS_LISTEN)
|
2009-06-01 06:49:09 +00:00
|
|
|
continue;
|
|
|
|
|
2017-09-12 13:39:44 +00:00
|
|
|
/* If requested, skip sockets not having the requested state. */
|
|
|
|
if ((state != -1) && (xtp->t_state != state))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* If requested, skip sockets not having the requested stack. */
|
2018-05-28 01:58:49 +00:00
|
|
|
if (stack[0] != '\0' &&
|
2017-09-12 13:39:44 +00:00
|
|
|
strncmp(xtp->xt_stack, stack, TCP_FUNCTION_NAME_LEN_MAX))
|
|
|
|
continue;
|
|
|
|
|
Hide struct inpcb, struct tcpcb from the userland.
This is a painful change, but it is needed. On the one hand, we avoid
modifying them, and this slows down some ideas, on the other hand we still
eventually modify them and tools like netstat(1) never work on next version of
FreeBSD. We maintain a ton of spares in them, and we already got some ifdef
hell at the end of tcpcb.
Details:
- Hide struct inpcb, struct tcpcb under _KERNEL || _WANT_FOO.
- Make struct xinpcb, struct xtcpcb pure API structures, not including
kernel structures inpcb and tcpcb inside. Export into these structures
the fields from inpcb and tcpcb that are known to be used, and put there
a ton of spare space.
- Make kernel and userland utilities compilable after these changes.
- Bump __FreeBSD_version.
Reviewed by: rrs, gnn
Differential Revision: D10018
2017-03-21 06:39:49 +00:00
|
|
|
if (!tcpdropconn(&xip->inp_inc))
|
2009-06-01 06:49:09 +00:00
|
|
|
ok = false;
|
2007-10-31 13:49:20 +00:00
|
|
|
}
|
2009-06-01 06:49:09 +00:00
|
|
|
free(head);
|
|
|
|
|
|
|
|
return (ok);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
tcpdropbyname(const char *lhost, const char *lport, const char *fhost,
|
|
|
|
const char *fport)
|
|
|
|
{
|
|
|
|
static const struct addrinfo hints = {
|
|
|
|
/*
|
|
|
|
* Look for streams in all domains.
|
|
|
|
*/
|
|
|
|
.ai_family = AF_UNSPEC,
|
|
|
|
.ai_socktype = SOCK_STREAM,
|
|
|
|
};
|
|
|
|
struct addrinfo *ail, *local, *aif, *foreign;
|
|
|
|
int error;
|
|
|
|
bool ok, infamily;
|
|
|
|
|
|
|
|
error = getaddrinfo(lhost, lport, &hints, &local);
|
|
|
|
if (error != 0)
|
|
|
|
errx(1, "getaddrinfo: %s port %s: %s", lhost, lport,
|
|
|
|
gai_strerror(error));
|
|
|
|
|
|
|
|
error = getaddrinfo(fhost, fport, &hints, &foreign);
|
|
|
|
if (error != 0) {
|
|
|
|
freeaddrinfo(local); /* XXX gratuitous */
|
2013-01-30 18:24:29 +00:00
|
|
|
errx(1, "getaddrinfo: %s port %s: %s", fhost, fport,
|
2009-06-01 06:49:09 +00:00
|
|
|
gai_strerror(error));
|
2005-02-06 10:47:12 +00:00
|
|
|
}
|
2009-06-01 06:49:09 +00:00
|
|
|
|
|
|
|
ok = true;
|
|
|
|
infamily = false;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Try every combination of local and foreign address pairs.
|
|
|
|
*/
|
|
|
|
for (ail = local; ail != NULL; ail = ail->ai_next) {
|
|
|
|
for (aif = foreign; aif != NULL; aif = aif->ai_next) {
|
2005-02-06 10:47:12 +00:00
|
|
|
if (ail->ai_family != aif->ai_family)
|
|
|
|
continue;
|
2009-06-01 06:49:09 +00:00
|
|
|
infamily = true;
|
|
|
|
if (!tcpdrop(ail->ai_addr, aif->ai_addr))
|
|
|
|
ok = false;
|
2005-02-06 10:47:12 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-01 06:49:09 +00:00
|
|
|
|
|
|
|
if (!infamily) {
|
|
|
|
warnx("%s %s %s %s: different address families", lhost, lport,
|
|
|
|
fhost, fport);
|
|
|
|
ok = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
freeaddrinfo(local);
|
|
|
|
freeaddrinfo(foreign);
|
|
|
|
|
|
|
|
return (ok);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
tcpdropconn(const struct in_conninfo *inc)
|
|
|
|
{
|
|
|
|
struct sockaddr *local, *foreign;
|
|
|
|
struct sockaddr_in6 sin6[2];
|
|
|
|
struct sockaddr_in sin4[2];
|
|
|
|
|
|
|
|
if ((inc->inc_flags & INC_ISIPV6) != 0) {
|
|
|
|
memset(sin6, 0, sizeof sin6);
|
|
|
|
|
|
|
|
sin6[TCPDROP_LOCAL].sin6_len = sizeof sin6[TCPDROP_LOCAL];
|
|
|
|
sin6[TCPDROP_LOCAL].sin6_family = AF_INET6;
|
|
|
|
sin6[TCPDROP_LOCAL].sin6_port = inc->inc_lport;
|
|
|
|
memcpy(&sin6[TCPDROP_LOCAL].sin6_addr, &inc->inc6_laddr,
|
|
|
|
sizeof inc->inc6_laddr);
|
|
|
|
local = (struct sockaddr *)&sin6[TCPDROP_LOCAL];
|
|
|
|
|
|
|
|
sin6[TCPDROP_FOREIGN].sin6_len = sizeof sin6[TCPDROP_FOREIGN];
|
|
|
|
sin6[TCPDROP_FOREIGN].sin6_family = AF_INET6;
|
|
|
|
sin6[TCPDROP_FOREIGN].sin6_port = inc->inc_fport;
|
|
|
|
memcpy(&sin6[TCPDROP_FOREIGN].sin6_addr, &inc->inc6_faddr,
|
|
|
|
sizeof inc->inc6_faddr);
|
|
|
|
foreign = (struct sockaddr *)&sin6[TCPDROP_FOREIGN];
|
|
|
|
} else {
|
2017-04-28 09:17:16 +00:00
|
|
|
memset(sin4, 0, sizeof sin4);
|
2009-06-01 06:49:09 +00:00
|
|
|
|
|
|
|
sin4[TCPDROP_LOCAL].sin_len = sizeof sin4[TCPDROP_LOCAL];
|
|
|
|
sin4[TCPDROP_LOCAL].sin_family = AF_INET;
|
|
|
|
sin4[TCPDROP_LOCAL].sin_port = inc->inc_lport;
|
|
|
|
memcpy(&sin4[TCPDROP_LOCAL].sin_addr, &inc->inc_laddr,
|
|
|
|
sizeof inc->inc_laddr);
|
|
|
|
local = (struct sockaddr *)&sin4[TCPDROP_LOCAL];
|
|
|
|
|
|
|
|
sin4[TCPDROP_FOREIGN].sin_len = sizeof sin4[TCPDROP_FOREIGN];
|
|
|
|
sin4[TCPDROP_FOREIGN].sin_family = AF_INET;
|
|
|
|
sin4[TCPDROP_FOREIGN].sin_port = inc->inc_fport;
|
|
|
|
memcpy(&sin4[TCPDROP_FOREIGN].sin_addr, &inc->inc_faddr,
|
|
|
|
sizeof inc->inc_faddr);
|
|
|
|
foreign = (struct sockaddr *)&sin4[TCPDROP_FOREIGN];
|
|
|
|
}
|
|
|
|
|
|
|
|
return (tcpdrop(local, foreign));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr,
|
|
|
|
"usage: tcpdrop local-address local-port foreign-address foreign-port\n"
|
2013-01-30 18:24:29 +00:00
|
|
|
" tcpdrop local-address:local-port foreign-address:foreign-port\n"
|
|
|
|
" tcpdrop local-address.local-port foreign-address.foreign-port\n"
|
2017-09-12 13:39:44 +00:00
|
|
|
" tcpdrop [-l] -a\n"
|
|
|
|
" tcpdrop [-l] -S stack\n"
|
|
|
|
" tcpdrop [-l] -s state\n"
|
|
|
|
" tcpdrop [-l] -S stack -s state\n");
|
2009-06-01 06:49:09 +00:00
|
|
|
exit(1);
|
2005-02-06 10:47:12 +00:00
|
|
|
}
|