Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[201911] Support vrf mgmt for aaa #271

Open
wants to merge 1 commit into
base: 201911
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions patch/Support-aaa-for-mgmt-vrf.patch
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

1 change: 1 addition & 0 deletions patch/series
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ driver-ixgbe-external-phy.patch
fix_ismt_alignment_issue.patch
net-psample-module-unload.patch
config-sensor-mp2975.patch
Support-aaa-for-mgmt-vrf.patch
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where is the patch file? Did you forget to add it with git add?

stg import: [Errno 2] No such file or directory: '/__w/3/s/patch/Support-aaa-
            for-mgmt-vrf.patch'

#
# This series applies on GIT commit 1451b36b2b0d62178e42f648d8a18131af18f7d8
# Tkernel-sched-core-fix-cgroup-fork-race.patch
Expand Down