* [PATCH net-next] inet_diag: Add equal-operator for ports
@ 2017-12-27 17:27 Kristian Evensen
2018-01-02 18:54 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Kristian Evensen @ 2017-12-27 17:27 UTC (permalink / raw)
To: netdev; +Cc: Kristian Evensen
inet_diag currently provides less/greater than or equal operators for
comparing ports when filtering sockets. An equal comparison can be
performed by combining the two existing operators, or a user can for
example request a port range and then do the final filtering in
userspace. However, these approaches both have drawbacks. Implementing
equal using LE/GE causes the size and complexity of a filter to grow
quickly as the number of ports increase, while it on busy machines would
be great if the kernel only returns information about relevant sockets.
This patch introduces source and destination port equal operators.
INET_DIAG_BC_S_EQ is used to match a source port, INET_DIAG_BC_D_EQ a
destination port, and usage is the same as for the existing port
operators. I.e., the port to match is stored in the no-member of the
next inet_diag_bc_op-struct in the filter.
Signed-off-by: Kristian Evensen <kristian.evensen@gmail.com>
---
include/uapi/linux/inet_diag.h | 2 ++
net/ipv4/inet_diag.c | 8 ++++++++
2 files changed, 10 insertions(+)
diff --git a/include/uapi/linux/inet_diag.h b/include/uapi/linux/inet_diag.h
index 817d807e9481..14565d703291 100644
--- a/include/uapi/linux/inet_diag.h
+++ b/include/uapi/linux/inet_diag.h
@@ -92,6 +92,8 @@ enum {
INET_DIAG_BC_D_COND,
INET_DIAG_BC_DEV_COND, /* u32 ifindex */
INET_DIAG_BC_MARK_COND,
+ INET_DIAG_BC_S_EQ,
+ INET_DIAG_BC_D_EQ,
};
struct inet_diag_hostcond {
diff --git a/net/ipv4/inet_diag.c b/net/ipv4/inet_diag.c
index c9c35b61a027..a383f299ce24 100644
--- a/net/ipv4/inet_diag.c
+++ b/net/ipv4/inet_diag.c
@@ -564,12 +564,18 @@ static int inet_diag_bc_run(const struct nlattr *_bc,
case INET_DIAG_BC_JMP:
yes = 0;
break;
+ case INET_DIAG_BC_S_EQ:
+ yes = entry->sport == op[1].no;
+ break;
case INET_DIAG_BC_S_GE:
yes = entry->sport >= op[1].no;
break;
case INET_DIAG_BC_S_LE:
yes = entry->sport <= op[1].no;
break;
+ case INET_DIAG_BC_D_EQ:
+ yes = entry->dport == op[1].no;
+ break;
case INET_DIAG_BC_D_GE:
yes = entry->dport >= op[1].no;
break;
@@ -802,8 +808,10 @@ static int inet_diag_bc_audit(const struct nlattr *attr,
if (!valid_devcond(bc, len, &min_len))
return -EINVAL;
break;
+ case INET_DIAG_BC_S_EQ:
case INET_DIAG_BC_S_GE:
case INET_DIAG_BC_S_LE:
+ case INET_DIAG_BC_D_EQ:
case INET_DIAG_BC_D_GE:
case INET_DIAG_BC_D_LE:
if (!valid_port_comparison(bc, len, &min_len))
--
2.14.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH net-next] inet_diag: Add equal-operator for ports
2017-12-27 17:27 [PATCH net-next] inet_diag: Add equal-operator for ports Kristian Evensen
@ 2018-01-02 18:54 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2018-01-02 18:54 UTC (permalink / raw)
To: kristian.evensen; +Cc: netdev
From: Kristian Evensen <kristian.evensen@gmail.com>
Date: Wed, 27 Dec 2017 18:27:58 +0100
> inet_diag currently provides less/greater than or equal operators for
> comparing ports when filtering sockets. An equal comparison can be
> performed by combining the two existing operators, or a user can for
> example request a port range and then do the final filtering in
> userspace. However, these approaches both have drawbacks. Implementing
> equal using LE/GE causes the size and complexity of a filter to grow
> quickly as the number of ports increase, while it on busy machines would
> be great if the kernel only returns information about relevant sockets.
>
> This patch introduces source and destination port equal operators.
> INET_DIAG_BC_S_EQ is used to match a source port, INET_DIAG_BC_D_EQ a
> destination port, and usage is the same as for the existing port
> operators. I.e., the port to match is stored in the no-member of the
> next inet_diag_bc_op-struct in the filter.
>
> Signed-off-by: Kristian Evensen <kristian.evensen@gmail.com>
Applied, thank you.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-01-02 18:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-27 17:27 [PATCH net-next] inet_diag: Add equal-operator for ports Kristian Evensen
2018-01-02 18:54 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox