linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Michael Kerrisk (man-pages)" <mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Willem de Bruijn <willemb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	Carsten Andrich
	<carsten.andrich-hs6bpBdVsEZfm0AUMx9V0g@public.gmane.org>,
	Daniel Borkmann
	<dborkman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [patch] packet.7: PACKET_LOSS has inverse meaning
Date: Tue, 22 Apr 2014 20:55:59 +0200	[thread overview]
Message-ID: <5356BB3F.4030502@gmail.com> (raw)
In-Reply-To: <CA+FuTSc=4fwH=+jX58teeQHrRse718qLBOLzAcrZJSYug2TfSw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On 04/22/2014 08:36 PM, Willem de Bruijn wrote:
> On Tue, Apr 22, 2014 at 2:23 PM, Michael Kerrisk (man-pages)
> <mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>> Hi Daniel, Willem,
>>
>>
>> Daniel, your patch (dbb4f7516b) added the text on PACKET_LOSS.
>> Could you comment on the patch below please?
> 
> Carsten is correct. I made a mistake in that explanation, accidentally
> inverting the branch. My apologies and thanks for following up with a
> replacement text, Carsten. That looks good to me.

@Willem: thanks for the quick response. That helps so much.

@Carsten: I've applied your patch, but I have a question. You wrote:

[[
However if
.BR PACKET_LOSS
is set, malformed packets will be skipped, their status reset to
.BR TP_STATUS_AVAILABLE
]]

What does "their" in "their status" refer to? 

Cheers,

Michael



>> On 04/22/2014 06:01 PM, Carsten Andrich wrote:
>>> Hey there,
>>>
>>> I stumbled upon an error in packet.7 regarding the meaning of the
>>> PACKET_LOSS socket option. According to the current git version of
>>> linux-man setting PACKET_LOSS causes malformed packets to *not* be
>>> silently dropped.
>>>
>>> However it is the other way round. If PACKET_LOSS is *not* set,
>>> malformed packets will be marked TP_STATUS_WRONG_FORMAT and the
>>> transmission process aborted, leaving untransmitted packets in the ring.
>>> If it *is* set, malformed packets will be silently skipped, their status
>>> set to TP_STATUS_AVAILABLE and the transmission process continued with
>>> the following packet.
>>>
>>> This behaviour can be clearly seen in net/packet/af_packet.c:
>>> http://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/tree/net/packet/af_packet.c#n2300
>>>
>>> The value accompanying TP_PACKET_LOSS translates into po->tp_loss:
>>> http://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/tree/net/packet/af_packet.c#n3304
>>>
>>> I inverted the meaning of PACKET_LOSS and clarified the description in
>>> the attached patch.
>>
>> diff --git a/man7/packet.7 b/man7/packet.7
>> index d8257f9..5085814 100644
>> --- a/man7/packet.7
>> +++ b/man7/packet.7
>> @@ -319,9 +319,15 @@ original fanout algorithm selects a backlogged socket, the packet
>>  rolls over to the next available one.
>>  .TP
>>  .BR PACKET_LOSS " (with " PACKET_TX_RING )
>> -If set, do not silently drop a packet on transmission error, but
>> -return it with status set to
>> -.BR TP_STATUS_WRONG_FORMAT .
>> +When a malformed packet is encountered on a transmit ring, the default is to
>> +set its status to
>> +.BR TP_STATUS_WRONG_FORMAT
>> +and abort the transmission immediately (it and following packets are left
>> +lingering on the ring). However if
>> +.BR PACKET_LOSS
>> +is set, malformed packets will be skipped, their status reset to
>> +.BR TP_STATUS_AVAILABLE
>> +and the transmission process continued.
>>  .TP
>>  .BR PACKET_RESERVE " (with " PACKET_RX_RING )
>>  By default, a packet receive ring writes packets immediately following the
>> @@ -419,7 +425,7 @@ or
>>  then that overrides the socket default.
>>  On successful transmission, the socket resets the slot to
>>  .BR TP_STATUS_AVAILABLE .
>> -It discards packets silently on error unless
>> +It immediately aborts the transmission on error unless
>>  .BR PACKET_LOSS
>>  is set.
>>  .TP
>>
>>
>> --
>> Michael Kerrisk
>> Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
>> Linux/UNIX System Programming Training: http://man7.org/training/
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2014-04-22 18:55 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-22 16:01 [patch] packet.7: PACKET_LOSS has inverse meaning Carsten Andrich
2014-04-22 18:23 ` Michael Kerrisk (man-pages)
     [not found]   ` <5356B3BA.7050401-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-04-22 18:36     ` Willem de Bruijn
     [not found]       ` <CA+FuTSc=4fwH=+jX58teeQHrRse718qLBOLzAcrZJSYug2TfSw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-04-22 18:55         ` Michael Kerrisk (man-pages) [this message]
     [not found]           ` <5356BB3F.4030502-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-04-22 19:06             ` Carsten Andrich
2014-04-22 19:14             ` Willem de Bruijn
     [not found]               ` <CA+FuTScUexjc6bETYMVgPUgmN5CSR40=UrELT9N363Tvk1+waA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-04-22 20:53                 ` Carsten Andrich
     [not found]                   ` <1398200019.5031.24.camel-FQO4gtnRtnzkVFMGpb/cPg@public.gmane.org>
2014-04-23  6:06                     ` Michael Kerrisk (man-pages)
     [not found]                       ` <53575872.6080403-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-04-23  8:51                         ` Carsten Andrich
2014-04-23 10:12                           ` Michael Kerrisk (man-pages)
     [not found]                             ` <53579224.3060006-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-04-23 19:10                               ` Carsten Andrich
     [not found]                                 ` <1398280218.2416.18.camel-FQO4gtnRtnzkVFMGpb/cPg@public.gmane.org>
2014-04-24  8:20                                   ` Michael Kerrisk (man-pages)
     [not found]                                     ` <5358C957.8080402-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-04-24  9:39                                       ` Carsten Andrich
2014-04-24 10:21                                         ` Michael Kerrisk (man-pages)
     [not found]                                           ` <5358E59E.2000207-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-04-24 10:45                                             ` Daniel Borkmann
     [not found]                                               ` <CA+FuTSf6_Lvs_Nht7TXPUT973rePz9hKEqv+YvPwXSq+kOoiyQ@mail.gmail.com>
     [not found]                                                 ` <CA+FuTSf6_Lvs_Nht7TXPUT973rePz9hKEqv+YvPwXSq+kOoiyQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-04-24 19:07                                                   ` Carsten Andrich
     [not found]                                                     ` <1398366446.2647.4.camel-FQO4gtnRtnzkVFMGpb/cPg@public.gmane.org>
2014-04-25 11:20                                                       ` Neil Horman
2014-04-24 10:59                                             ` Neil Horman
2014-04-23 20:53                               ` Stefan Puiu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5356BB3F.4030502@gmail.com \
    --to=mtk.manpages-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=carsten.andrich-hs6bpBdVsEZfm0AUMx9V0g@public.gmane.org \
    --cc=dborkman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=willemb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).