netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: drop write-only stack variable
@ 2016-02-02 17:17 David Herrmann
  2016-02-02 17:53 ` Sergei Shtylyov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: David Herrmann @ 2016-02-02 17:17 UTC (permalink / raw)
  To: netdev; +Cc: David S . Miller, David Herrmann

Remove a write-only stack variable from unix_attach_fds(). This is a
left-over from the security fix in:

    commit 712f4aad406bb1ed67f3f98d04c044191f0ff593
    Author: willy tarreau <w@1wt.eu>
    Date:   Sun Jan 10 07:54:56 2016 +0100

        unix: properly account for FDs passed over unix sockets

Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
---
 net/unix/af_unix.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
index c5bf5ef..9f88193 100644
--- a/net/unix/af_unix.c
+++ b/net/unix/af_unix.c
@@ -1534,7 +1534,6 @@ static int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb)
 {
 	int i;
 	unsigned char max_level = 0;
-	int unix_sock_count = 0;
 
 	if (too_many_unix_fds(current))
 		return -ETOOMANYREFS;
@@ -1542,11 +1541,9 @@ static int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb)
 	for (i = scm->fp->count - 1; i >= 0; i--) {
 		struct sock *sk = unix_get_socket(scm->fp->fp[i]);
 
-		if (sk) {
-			unix_sock_count++;
+		if (sk)
 			max_level = max(max_level,
 					unix_sk(sk)->recursion_level);
-		}
 	}
 	if (unlikely(max_level > MAX_RECURSION_LEVEL))
 		return -ETOOMANYREFS;
-- 
2.7.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: drop write-only stack variable
  2016-02-02 17:17 [PATCH] net: drop write-only stack variable David Herrmann
@ 2016-02-02 17:53 ` Sergei Shtylyov
  2016-02-02 20:50 ` Hannes Frederic Sowa
  2016-02-07 19:07 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Sergei Shtylyov @ 2016-02-02 17:53 UTC (permalink / raw)
  To: David Herrmann, netdev; +Cc: David S . Miller

Hello.

On 02/02/2016 08:17 PM, David Herrmann wrote:

> Remove a write-only stack variable from unix_attach_fds(). This is a
> left-over from the security fix in:
>
>      commit 712f4aad406bb1ed67f3f98d04c044191f0ff593
>      Author: willy tarreau <w@1wt.eu>
>      Date:   Sun Jan 10 07:54:56 2016 +0100
>
>          unix: properly account for FDs passed over unix sockets

    scripts/checkpatch.pl now enforces a ceratin commit citing style (not so 
verbose :-)).

> Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
[...]

MBR, Sergei

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: drop write-only stack variable
  2016-02-02 17:17 [PATCH] net: drop write-only stack variable David Herrmann
  2016-02-02 17:53 ` Sergei Shtylyov
@ 2016-02-02 20:50 ` Hannes Frederic Sowa
  2016-02-07 19:07 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Hannes Frederic Sowa @ 2016-02-02 20:50 UTC (permalink / raw)
  To: David Herrmann, netdev; +Cc: David S . Miller

On 02.02.2016 18:17, David Herrmann wrote:
> Remove a write-only stack variable from unix_attach_fds(). This is a
> left-over from the security fix in:
>
>      commit 712f4aad406bb1ed67f3f98d04c044191f0ff593
>      Author: willy tarreau <w@1wt.eu>
>      Date:   Sun Jan 10 07:54:56 2016 +0100
>
>          unix: properly account for FDs passed over unix sockets
>
> Signed-off-by: David Herrmann <dh.herrmann@gmail.com>

I don't think this specifically needs a Fixes tag. Seems more like a 
clean-up.

Anyway, I also noticed this during review and it can be removed safely.

Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>

Thanks,
Hannes

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: drop write-only stack variable
  2016-02-02 17:17 [PATCH] net: drop write-only stack variable David Herrmann
  2016-02-02 17:53 ` Sergei Shtylyov
  2016-02-02 20:50 ` Hannes Frederic Sowa
@ 2016-02-07 19:07 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2016-02-07 19:07 UTC (permalink / raw)
  To: dh.herrmann; +Cc: netdev

From: David Herrmann <dh.herrmann@gmail.com>
Date: Tue,  2 Feb 2016 18:17:54 +0100

> Remove a write-only stack variable from unix_attach_fds(). This is a
> left-over from the security fix in:
> 
>     commit 712f4aad406bb1ed67f3f98d04c044191f0ff593
>     Author: willy tarreau <w@1wt.eu>
>     Date:   Sun Jan 10 07:54:56 2016 +0100
> 
>         unix: properly account for FDs passed over unix sockets
> 
> Signed-off-by: David Herrmann <dh.herrmann@gmail.com>

Applied, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-02-07 19:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-02 17:17 [PATCH] net: drop write-only stack variable David Herrmann
2016-02-02 17:53 ` Sergei Shtylyov
2016-02-02 20:50 ` Hannes Frederic Sowa
2016-02-07 19:07 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).