* [PATCH] netlabel: add address family checks to netlbl_{sock, req}_delattr()
@ 2016-06-06 19:35 Paul Moore
2016-06-06 19:37 ` Paul Moore
0 siblings, 1 reply; 3+ messages in thread
From: Paul Moore @ 2016-06-06 19:35 UTC (permalink / raw)
To: netdev, linux-security-module; +Cc: maninder1.s, selinux
From: Paul Moore <paul@paul-moore.com>
It seems risky to always rely on the caller to ensure the socket's
address family is correct before passing it to the NetLabel kAPI,
especially since we see at least one LSM which didn't. Add address
family checks to the *_delattr() functions to help prevent future
problems.
Cc: <stable@vger.kernel.org>
Reported-by: Maninder Singh <maninder1.s@samsung.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
---
net/netlabel/netlabel_kapi.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/net/netlabel/netlabel_kapi.c b/net/netlabel/netlabel_kapi.c
index 1325776..bd007a9 100644
--- a/net/netlabel/netlabel_kapi.c
+++ b/net/netlabel/netlabel_kapi.c
@@ -824,7 +824,11 @@ socket_setattr_return:
*/
void netlbl_sock_delattr(struct sock *sk)
{
- cipso_v4_sock_delattr(sk);
+ switch (sk->sk_family) {
+ case AF_INET:
+ cipso_v4_sock_delattr(sk);
+ break;
+ }
}
/**
@@ -987,7 +991,11 @@ req_setattr_return:
*/
void netlbl_req_delattr(struct request_sock *req)
{
- cipso_v4_req_delattr(req);
+ switch (req->rsk_ops->family) {
+ case AF_INET:
+ cipso_v4_req_delattr(req);
+ break;
+ }
}
/**
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] netlabel: add address family checks to netlbl_{sock, req}_delattr()
2016-06-06 19:35 [PATCH] netlabel: add address family checks to netlbl_{sock, req}_delattr() Paul Moore
@ 2016-06-06 19:37 ` Paul Moore
2016-06-06 21:06 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Paul Moore @ 2016-06-06 19:37 UTC (permalink / raw)
To: netdev; +Cc: maninder1.s, selinux, linux-security-module
On Mon, Jun 6, 2016 at 3:35 PM, Paul Moore <pmoore@redhat.com> wrote:
> From: Paul Moore <paul@paul-moore.com>
>
> It seems risky to always rely on the caller to ensure the socket's
> address family is correct before passing it to the NetLabel kAPI,
> especially since we see at least one LSM which didn't. Add address
> family checks to the *_delattr() functions to help prevent future
> problems.
>
> Cc: <stable@vger.kernel.org>
> Reported-by: Maninder Singh <maninder1.s@samsung.com>
> Signed-off-by: Paul Moore <paul@paul-moore.com>
> ---
> net/netlabel/netlabel_kapi.c | 12 ++++++++++--
> 1 file changed, 10 insertions(+), 2 deletions(-)
DaveM, since this is such a trivial fix I'm adding it into my
selinux#next branch right now, but if you would prefer to carry it via
netdev#next let me know.
> diff --git a/net/netlabel/netlabel_kapi.c b/net/netlabel/netlabel_kapi.c
> index 1325776..bd007a9 100644
> --- a/net/netlabel/netlabel_kapi.c
> +++ b/net/netlabel/netlabel_kapi.c
> @@ -824,7 +824,11 @@ socket_setattr_return:
> */
> void netlbl_sock_delattr(struct sock *sk)
> {
> - cipso_v4_sock_delattr(sk);
> + switch (sk->sk_family) {
> + case AF_INET:
> + cipso_v4_sock_delattr(sk);
> + break;
> + }
> }
>
> /**
> @@ -987,7 +991,11 @@ req_setattr_return:
> */
> void netlbl_req_delattr(struct request_sock *req)
> {
> - cipso_v4_req_delattr(req);
> + switch (req->rsk_ops->family) {
> + case AF_INET:
> + cipso_v4_req_delattr(req);
> + break;
> + }
> }
>
> /**
>
--
paul moore
security @ redhat
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] netlabel: add address family checks to netlbl_{sock, req}_delattr()
2016-06-06 19:37 ` Paul Moore
@ 2016-06-06 21:06 ` David Miller
0 siblings, 0 replies; 3+ messages in thread
From: David Miller @ 2016-06-06 21:06 UTC (permalink / raw)
To: pmoore; +Cc: netdev, maninder1.s, selinux, linux-security-module
From: Paul Moore <pmoore@redhat.com>
Date: Mon, 6 Jun 2016 15:37:56 -0400
> On Mon, Jun 6, 2016 at 3:35 PM, Paul Moore <pmoore@redhat.com> wrote:
>> From: Paul Moore <paul@paul-moore.com>
>>
>> It seems risky to always rely on the caller to ensure the socket's
>> address family is correct before passing it to the NetLabel kAPI,
>> especially since we see at least one LSM which didn't. Add address
>> family checks to the *_delattr() functions to help prevent future
>> problems.
>>
>> Cc: <stable@vger.kernel.org>
>> Reported-by: Maninder Singh <maninder1.s@samsung.com>
>> Signed-off-by: Paul Moore <paul@paul-moore.com>
>> ---
>> net/netlabel/netlabel_kapi.c | 12 ++++++++++--
>> 1 file changed, 10 insertions(+), 2 deletions(-)
>
> DaveM, since this is such a trivial fix I'm adding it into my
> selinux#next branch right now, but if you would prefer to carry it via
> netdev#next let me know.
That's fine.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-06-06 21:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-06 19:35 [PATCH] netlabel: add address family checks to netlbl_{sock, req}_delattr() Paul Moore
2016-06-06 19:37 ` Paul Moore
2016-06-06 21:06 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox