-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consider if the socket is bound to a device when binding.
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 62228e8a35770a9f7059533acb51846872c03777 Mon Sep 17 00:00:00 2001 | ||
From: inspurSDN <[email protected]> | ||
Date: Tue, 1 Mar 2022 14:38:35 +0000 | ||
Subject: [PATCH] Consider if the socket is bound to a device when binding. | ||
|
||
--- | ||
net/core/sock.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/net/core/sock.c b/net/core/sock.c | ||
index 4d60e7fc..ef504469 100644 | ||
--- a/net/core/sock.c | ||
+++ b/net/core/sock.c | ||
@@ -534,7 +534,7 @@ static int sock_setbindtodevice(struct sock *sk, char __user *optval, | ||
|
||
/* Sorry... */ | ||
ret = -EPERM; | ||
- if (!ns_capable(net->user_ns, CAP_NET_RAW)) | ||
+ if (sk->sk_bound_dev_if && !ns_capable(net->user_ns, CAP_NET_RAW)) | ||
goto out; | ||
|
||
ret = -EINVAL; | ||
-- | ||
2.17.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters