lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Sun, 2 Mar 2008 00:03:34 +0200 (EET)
From:	"Ilpo Järvinen" <ilpo.jarvinen@...sinki.fi>
To:	Patrick McManus <mcmanus@...ksong.com>
cc:	"netdev@...r.kernel.org" <netdev@...r.kernel.org>
Subject: Re: [PATCH 3/3 (spin 2)] TCP_DEFER_ACCEPT updates - process as
 established

On Sat, 1 Mar 2008, Patrick McManus wrote:

There are a number of style issues, please see Documentation/CodingStyle 
for more details (most of them noted below as well)...

> @@ -461,9 +457,8 @@ void inet_csk_reqsk_queue_prune(struct sock *parent,
>                 reqp=&lopt->syn_table[i];
>                 while ((req = *reqp) != NULL) {
>                         if (time_after_eq(now, req->expires)) {
> -                               if ((req->retrans < (inet_rsk(req)->acked ? max_retries : thresh))
> -                                   &&  (inet_rsk(req)->acked ||
> -                                        !req->rsk_ops->rtx_syn_ack(parent, req, NULL))) {
> +                               if (req->retrans < thresh
> +                                   && !req->rsk_ops->rtx_syn_ack(parent, req, NULL)) {

These &&/|| are usually placed into end of the previous line.

>                                         unsigned long timeo;
> 
>                                         if (req->retrans++ == 0)
> diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
> index 071e83a..905e39e 100644
> --- a/net/ipv4/tcp.c
> +++ b/net/ipv4/tcp.c
> @@ -2105,16 +2105,15 @@ static int do_tcp_setsockopt(struct sock *sk, int level,
>                 break;
> 
>         case TCP_DEFER_ACCEPT:
> -               icsk->icsk_accept_queue.rskq_defer_accept = 0;
> -               if (val > 0) {
> -                       /* Translate value in seconds to number of
> -                        * retransmits */
> -                       while (icsk->icsk_accept_queue.rskq_defer_accept < 32 &&
> -                              val > ((TCP_TIMEOUT_INIT / HZ) <<
> -                                      icsk->icsk_accept_queue.rskq_defer_accept))
> -                               icsk->icsk_accept_queue.rskq_defer_accept++;
> -                       icsk->icsk_accept_queue.rskq_defer_accept++;
> +               if (val < 0)
> +                       err = -EINVAL;
> +               else
> +               {

Put brace to the same line with else and use braces for the both blocks  
whenever either block needs them.

> +                       if (val > MAX_TCP_ACCEPT_DEFERRED)
> +                               val = MAX_TCP_ACCEPT_DEFERRED;
> +                       icsk->icsk_accept_queue.rskq_defer_accept = val;
>                 }
> +
>                 break;
> 
>         case TCP_WINDOW_CLAMP:
> @@ -2295,8 +2294,7 @@ static int do_tcp_getsockopt(struct sock *sk, int level,
>                         val = (val ? : sysctl_tcp_fin_timeout) / HZ;
>                 break;
>         case TCP_DEFER_ACCEPT:
> -               val = !icsk->icsk_accept_queue.rskq_defer_accept ? 0 :
> -                       ((TCP_TIMEOUT_INIT / HZ) << (icsk->icsk_accept_queue.rskq_defer_accept - 1));
> +               val = icsk->icsk_accept_queue.rskq_defer_accept;
>                 break;
>         case TCP_WINDOW_CLAMP:
>                 val = tp->window_clamp;
> diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
> index 19c449f..60a51e7 100644
> --- a/net/ipv4/tcp_input.c
> +++ b/net/ipv4/tcp_input.c
> @@ -4807,6 +4807,40 @@ step5:
> 
>         tcp_data_snd_check(sk);
>         tcp_ack_snd_check(sk);
> +
> +       if (tp->defer_tcp_accept.request ) {

space--

> +
> +               if ((!th->fin) &&
> +                   tp->defer_tcp_accept.listen_sk->sk_state == TCP_LISTEN) {
> +
> +                       if (sock_flag(sk, SOCK_KEEPOPEN)) {
> +                               inet_csk_reset_keepalive_timer(sk,
> +                                                              keepalive_time_when(tp));
> +                       }
> +                       else {

braces & elses to the same line please.

> +                               inet_csk_delete_keepalive_timer(sk);
> +                       }
> +
> +                       inet_csk_reqsk_queue_add(
> +                               tp->defer_tcp_accept.listen_sk,
> +                               tp->defer_tcp_accept.request,
> +                               sk);
> +
> +                       tp->defer_tcp_accept.listen_sk->sk_data_ready(
> +                               tp->defer_tcp_accept.listen_sk, 0);
> +
> +                       sock_put (tp->defer_tcp_accept.listen_sk);
> +                       sock_put (sk);

spaces--;

> +                       tp->defer_tcp_accept.listen_sk = NULL;
> +                       tp->defer_tcp_accept.request = NULL;
> +               }
> +               else
> +               {

both braces on the same line as else please.

> +                       tcp_reset(sk);
> +                       return 1;
> +               }
> +       }
> +
>         return 0;

Please check for similar things elsewhere as well, and quickly check what 
the CodingStyle has to say as well. I stopped here and might have missed 
something above as well.


-- 
 i.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ