Re:Re: [PATCH] net/ipv4/ip_fragment:fix missing Flags reserved bit set in iphdr

From: meijusan
Date: Wed May 12 2021 - 00:59:10 EST



At 2021-05-11 11:05:54, "David Ahern" <dsahern@xxxxxxxxx> wrote:
>On 5/10/21 7:18 PM, meijusan wrote:
>>
>> At 2021-05-08 06:59:00, "Jakub Kicinski" <kuba@xxxxxxxxxx> wrote:
>>> On Thu, 6 May 2021 22:59:05 +0800 meijusan wrote:
>>>> ip frag with the iphdr flags reserved bit set,via router,ip frag reasm or
>>>> fragment,causing the reserved bit is reset to zero.
>>>>
>>>> Keep reserved bit set is not modified in ip frag defrag or fragment.
>>>>
>>>> Signed-off-by: meijusan <meijusan@xxxxxxx>
>>>
>>> Could you please provide more background on why we'd want to do this?
>>
>>> Preferably with references to relevant (non-April Fools' Day) RFCs.
>>
>> [background]
>> the Simple network usage scenarios: the one PC software<--->linux router(L3)/linux bridege(L2,bridge-nf-call-iptables)<--->the other PC software
>> 1)the PC software send the ip packet with the iphdr flags reserved bit is set, when ip packet(not fragments ) via the one linux router/linux bridge,and the iphdr flags reserved bit is not modified;
>> 2)but the ip fragments via router,the linux IP reassembly or fragmentation ,causing the reserved bit is reset to zero,Which leads to The other PC software depending on the reserved bit set process the Packet failed.
>> [rfc]
>> RFC791
>> Bit 0: reserved, must be zero
>> RFC3514
>> Introduction This bit , but The scene seems different from us,we expect Keep reserved bit set is not modified when forward the linux router
>>
>>
>>
>>
>>
>
>Why process the packet at all? If a reserved bit must be 0 and it is

>not, drop the packet.

Sorry, my background description is not clearly described

the Simple network usage scenarios: one PC software<--->linux router(L3)/linux bridege(L2,bridge-nf-call-iptables)<--->the other PC software
1)the PC software send the ip packet with the iphdr flags reserved bit is set 1,The packet can pass through the router normally, and the reserved flags bit have not been modified;
2)When the ip fragment packet passes through the linux router, the linux network protocol stack's re-fragmentation function of the IP fragment causes the first bit of the reserved field of the ip header to be cleared to 0. When the packet reaches the software of another pc, the PC software checks the reserved bit and finds that the reserved bit is not 0, discard the packet.

If according to rfc791, the reserved bit must be 0, how does the kernel protocol stack deal with fragmented packets or non-fragmented packets that carry the reserved field bit as 1? I personally think that either all of them are transmitted transparently or all of them are discarded. This needs to be discussed.