Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb75994e authored by Wang Chen's avatar Wang Chen Committed by David S. Miller
Browse files

[UDP]: Defer InDataGrams increment until recvmsg() does checksum



Thanks dave, herbert, gerrit, andi and other people for your
discussion about this problem.

UdpInDatagrams can be confusing because it counts packets that
might be dropped later.
Move UdpInDatagrams into recvmsg() as allowed by the RFC.

Signed-off-by: default avatarWang Chen <wangchen@cn.fujitsu.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6859d494
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -236,7 +236,7 @@

  This displays UDP-Lite statistics variables, whose meaning is as follows.

   InDatagrams:     Total number of received datagrams.
   InDatagrams:     The total number of datagrams delivered to users.

   NoPorts:         Number of packets received to an unknown port.
                    These cases are counted separately (not as InErrors).
+3 −4
Original line number Diff line number Diff line
@@ -873,6 +873,8 @@ int udp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
	if (err)
		goto out_free;

	UDP_INC_STATS_USER(UDP_MIB_INDATAGRAMS, is_udplite);

	sock_recv_timestamp(msg, sk, skb);

	/* Copy the address. */
@@ -966,11 +968,9 @@ int udp_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
			int ret;

			ret = (*up->encap_rcv)(sk, skb);
			if (ret <= 0) {
				UDP_INC_STATS_BH(UDP_MIB_INDATAGRAMS, up->pcflag);
			if (ret <= 0)
				return -ret;
		}
		}

		/* FALLTHROUGH -- it's a UDP Packet */
	}
@@ -1023,7 +1023,6 @@ int udp_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
		goto drop;
	}

	UDP_INC_STATS_BH(UDP_MIB_INDATAGRAMS, up->pcflag);
	return 0;

drop:
+3 −1
Original line number Diff line number Diff line
@@ -164,6 +164,8 @@ int udpv6_recvmsg(struct kiocb *iocb, struct sock *sk,
	if (err)
		goto out_free;

	UDP6_INC_STATS_USER(UDP_MIB_INDATAGRAMS, is_udplite);

	sock_recv_timestamp(msg, sk, skb);

	/* Copy the address. */
@@ -292,7 +294,7 @@ int udpv6_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
			UDP6_INC_STATS_BH(UDP_MIB_RCVBUFERRORS, up->pcflag);
		goto drop;
	}
	UDP6_INC_STATS_BH(UDP_MIB_INDATAGRAMS, up->pcflag);

	return 0;
drop:
	UDP6_INC_STATS_BH(UDP_MIB_INERRORS, up->pcflag);