Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp1954242pxk; Sat, 26 Sep 2020 10:47:50 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzJmgGGd4F1oBM1LK4NGZTtSAOF1uZ2A5Plq8sLq92gPOoFsI6Pb64qH5grpeWPG158BNzG X-Received: by 2002:a17:906:3553:: with SMTP id s19mr8106194eja.178.1601142469859; Sat, 26 Sep 2020 10:47:49 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1601142469; cv=none; d=google.com; s=arc-20160816; b=Wt20it1ssvJbnECCNqVibG+ey+jlDaxrlrWasvYxX2l0JTvxKTxiO86n/EXy+oi+zs WrA7iGJSkRstNfGR9fAYjiehyjV9L7BF+WnSwEUnAc3dofONtN1AnezVvUKfmhLkqXWm YkmlzpJ7umFUCAGNNlT1q0w9qv4OKJmYlpAtfbvjdKthHBzErtHXxCibo5B242jcpe+p CcMW/AFmOw8u8XPhtT0v+kXr4c/RDabv3ECEiDcvA/Xd6VPNf4/jpf7oHgZtJagVKcMW 7LEAlWT8yC4TvsC8Pw1q+xeAyJqbEfKFKSZg5msaSPXph0+4GzhDuIcMCEc0VUODwzDq oyLg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=ItAdSh3XC/91k55+wY06eo2kGE04swYsiQQw+VK4t4c=; b=mPRfTCH9rh2/NURul4rlWLmPhbKUjDDbax6DZ9XcuDCPwh7K2qPnHNCfSuego4lUJs qnz23NQXf7E4gljrRRvFlk4rLd00AIZkrR30ammp1XZiqAUbH13SIp8Dkz01LSCkjUne TyuRBEYFBIcO34K+/c6Tv/fAc0eO9SrKyE6T03dp/6jktpvVqrm7nHB1T/2HNqRHAF/R xKt7ckGmoO0heeS6ynYH/KK9WCbvknNR15lWJfnyBLG9kG5h7xIAvfeqim/qfsUsNaw1 Ty/7hVhxm6SGKbvmnP2IUC40uTmKZVEeXANF/LP5k1+o/voEx2GtJbsGenVfeXvw7dQ2 J0wg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id r25si5802490edc.505.2020.09.26.10.47.26; Sat, 26 Sep 2020 10:47:49 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730051AbgIZRqX (ORCPT + 99 others); Sat, 26 Sep 2020 13:46:23 -0400 Received: from smtp11.smtpout.orange.fr ([80.12.242.133]:35538 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729992AbgIZRqO (ORCPT ); Sat, 26 Sep 2020 13:46:14 -0400 Received: from tomoyo.flets-east.jp ([153.230.197.127]) by mwinf5d89 with ME id Yhlm230082lQRaH03hmA50; Sat, 26 Sep 2020 19:46:13 +0200 X-ME-Helo: tomoyo.flets-east.jp X-ME-Auth: bWFpbGhvbC52aW5jZW50QHdhbmFkb28uZnI= X-ME-Date: Sat, 26 Sep 2020 19:46:13 +0200 X-ME-IP: 153.230.197.127 From: Vincent Mailhol To: linux-can@vger.kernel.org, Wolfgang Grandegger , Marc Kleine-Budde , "David S . Miller" Cc: Vincent Mailhol , linux-kernel@vger.kernel.org Subject: [PATCH 2/6] can: dev: add a helper function to get the correct length of Classical frames Date: Sun, 27 Sep 2020 02:45:32 +0900 Message-Id: <20200926174542.278166-3-mailhol.vincent@wanadoo.fr> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200926174542.278166-1-mailhol.vincent@wanadoo.fr> References: <20200926174542.278166-1-mailhol.vincent@wanadoo.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org In classical CAN, the length of the data (i.e. CAN payload) is not always equal to the DLC! If the frame is a Remote Transmission Request (RTR), data length is always zero regardless of DLC value and else, if the DLC is greater than 8, the length is 8. Contrary to common belief, ISO 11898-1 Chapter 8.4.2.3 (DLC field) do allow DLCs greater than 8 for Classical Frames and specifies that those DLCs shall indicate that the data field is 8 bytes long. Above facts are widely unknown and so many developpers uses the "len" field of "struct canfd_frame" to get the length of classical CAN frames: this is incorrect! This patch introduces function get_can_len() which can be used in remediation. The function takes the SKB as an input in order to be able to determine if the frame is classical or FD. Signed-off-by: Vincent Mailhol --- include/linux/can/dev.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/include/linux/can/dev.h b/include/linux/can/dev.h index 5e3d45525bd3..72a8a60c0094 100644 --- a/include/linux/can/dev.h +++ b/include/linux/can/dev.h @@ -177,6 +177,29 @@ u8 can_dlc2len(u8 can_dlc); /* map the sanitized data length to an appropriate data length code */ u8 can_len2dlc(u8 len); +/* + * get_can_len(skb) - get the length of the CAN payload. + * + * In classical CAN, the length of the data (i.e. CAN payload) is not + * always equal to the DLC! If the frame is a Remote Transmission + * Request (RTR), data length is always zero regardless of DLC value + * and else, if the DLC is greater than 8, the length is 8. Contrary + * to common belief, ISO 11898-1 Chapter 8.4.2.3 (DLC field) do allow + * DLCs greater than 8 for Classical Frames and specifies that those + * DLCs shall indicate that the data field is 8 bytes long. + */ +static inline int get_can_len(struct sk_buff *skb) +{ + struct canfd_frame *cf = (struct canfd_frame *)skb->data; + + if (can_is_canfd_skb(skb)) + return min_t(__u8, cf->len, CANFD_MAX_DLEN); + else if (cf->can_id & CAN_RTR_FLAG) + return 0; + else + return min_t(__u8, cf->len, CAN_MAX_DLEN); +} + struct net_device *alloc_candev_mqs(int sizeof_priv, unsigned int echo_skb_max, unsigned int txqs, unsigned int rxqs); #define alloc_candev(sizeof_priv, echo_skb_max) \ -- 2.26.2