All of lore.kernel.org
 help / color / mirror / Atom feed
From: Oliver Hartkopp <socketcan@hartkopp.net>
To: Vincent MAILHOL <mailhol.vincent@wanadoo.fr>
Cc: "Marc Kleine-Budde" <mkl@pengutronix.de>,
	linux-can@vger.kernel.org, kernel@pengutronix.de,
	"Stéphane Grosjean" <s.grosjean@peak-system.com>
Subject: Re: [net-rfc 04/16] can: dev: can_get_len(): add a helper function to get the correct length of Classical frames
Date: Thu, 22 Oct 2020 19:06:58 +0200	[thread overview]
Message-ID: <adabe4ca-7065-0aa7-7654-51f77d9b2916@hartkopp.net> (raw)
In-Reply-To: <CAMZ6RqJrpwOkFPNDNdUU=g=p_VwuPW5erGfj-bk0quKQYsCcXQ@mail.gmail.com>



On 22.10.20 17:46, Vincent MAILHOL wrote:
> On 22.10.20 22:28, Oliver Hartkopp wrote:
>> On 22.10.20 14:23, Vincent MAILHOL wrote:

>>>> The above pseudo code together with CAN_CTRLMODE_RAW_DLC seems to be a
>>>> pretty safe option to me. Even if 'legacy' applications with
>>>> uninitialized raw_dlc send CAN frames or AF_PACKET users enable
>>>> CAN_CTRLMODE_RAW_DLC we always end up with a proper can_dlc == 8  and a
>>>> fitting valid raw_dlc.
>>>
>>> But what if that "fitting valid raw_dlc" is greater than 8?
>>
>> This is the plan!
>>
>>> The kernel
>>
>> the CAN driver
>>
>>> would see that frame as valid, a frame with a DLC greater than 8 will
>>> be sent on the wire and received by the other devices than might be
>>> connected on the CAN bus.
>>
>> Exactly.
> 
> And this is my point. The legacy application intended to send a frame
> of 8 bytes with a DLC of 8 but on the wire, there is a frame of 8
> bytes with a DLC greater than 8. The other devices on the CAN bus
> might ignore it (if the device has a DLC filter) or might crash if
> there is a vulnerability in DLC handling.

But this is your intention, right?

You wanted to test this behaviour. This is no normal operation - it's a 
*test* mode to detect said vulnerabilities in DLC handling.

And what do you mean with "if the device has a DLC filter"?

You told me the DLCs from 9..15 are correct from the ISO standpoint. 
That a good programmer checks the DLC and makes sure he only processes 
max. 8 bytes is a common thing and no 'filtering'.

You might introduce CAN_RAW_RAW_DLC sockopt for CAN_RAW sockets but when 
you use packet sockets e.g. with Wireshark and forge some CAN frames 
there your only chance to have proper 0..8 DLCs is to disable 
CAN_CTRLMODE_RAW_DLC.

Btw. do you really see any legacy SocketCAN applications (*together* 
with your testing application on the same Linux host) where you don't 
have the source code to check whether they properly initialize the 
reserved/padding bytes?

You can also use the can-gw to let 'malicious' CAN apps run on a private 
virtual CAN. Forwarded modified CAN frames definitely initialize the 
reserved/padding bytes.

>>> Basically, that would replace the use of the can_len2dlc() function.
>>>
>>> I also think it should be extended to CAN-FD, but no need to elaborate
>>> more on this at the moment: let's keep the discussion focused on
>>> classical CAN and tackle this later.
>>
>> Why do you want this?
>>
>> You get of the bike and push your bicycle for what reason?
>>
>> No.
> 
> Pushing the bike: yes, that was actually my motivation. One more time,
> I am not telling you are wrong, just that I would do it in a different
> way. I explained my view and you read it. I do not have more arguments
> to bring.

/me either ...

https://youtu.be/aKnX5wci404?t=34

>>>> Ok, let me rephrase: Filling can_dlc with something else than a plain
>>>> length information 0..8 ;-)
>>>
>>> Got it :-)
>>>
>>>   From my preliminary study, not so much changes or sanity check would
>>> need to be added:
>>>
>>>     1. The current can_dlc sanity checks in can_send() and can_rcv() in
>>>        net/can/af_can.c definitely needs to be adjusted (but this would
>>>        also be the case for the raw_dlc field solution).
>>>
>>>     2. In the kernel Rx and Tx paths: the length should not be accessed
>>>        directly anymore but through a getter function.
>>>
>>>     3. In the kernel: drivers "DLC aware" need to adapt their code and
>>>        use the length getter function.
>>>
>>>     4. In user land: new "DLC aware" code should always use struct
>>>        can_frame for classical CAN and check whether can_dlc is greater
>>>        that CAN_MAX_DLEN before accessing data.
>>>
>>> That's mostly all that would have to be adjusted.
>>>
>>
>> No, it is not.
>> You have to go through all protocols, e.g. raw.c, bcm.c, gw.c, j1939,
>> isotp.c which get a skb to be (sometimes) cloned by them. And when they
>> need to modify the can_dlc value to send it to the userspace or
>> whatever, you need to modify skb->data - and then you can't clone it
>> anymore but need to skbcopy() them.
>> HERE you will get a really big effort. Occasionally I was also thinking
>> using can_dlc would be nice but then I looked into above code and your
>> use-case does not justify that effort/ risk and performance impact.
> 
> I naively thought this part would not get impacted. I have yet to
> understand the full impact in detail but you made your point clear.
> 
> You won :-)
> Sorry for the long exchange and thank you for your patience.

I really don't want to 'win'. But by the time the features and 
functionalities have been grown and many people rely on its 
functionality and performance.

The discussion helps to find the hopefully best solution and brings all 
of us to new insights.

The difference is to make a new door into a house or to replace its 
entire water system. You need a VERY good reason to replace the water 
system ... when you want a new door.

>>>> The approach with CAN_CTRLMODE_RAW_DLC and the described testing would
>>>> be even robust against unintended miss-use.
>>>
>>> Exception: can_dlc == 8 and a non-initialed raw_dlc gets a garbage
>>> value between 9 and 15 from the stack (c.f. above comment).
>>
>> Right, and what would be the effect of this?
>>
>> You know the answer: Nothing breaks.
> 
> A frame of 8 bytes and DLC between 9 and 15 is sent on the wire and
> this has the potential to crash the other devices on the bus as
> explained in my initial e-mails.

Yes. But that is what you wanted to archive when you enable 
CAN_CTRLMODE_RAW_DLC ¯\_(ツ)_/¯
(see my comment above)

Regards,
Oliver

  reply	other threads:[~2020-10-22 17:07 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-19 19:05 [RFC]: can 2020-10-19 Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 01/16] can: proc: can_remove_proc(): silence remove_proc_entry warning Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 02/16] can: rx-offload: don't call kfree_skb() from IRQ context Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 03/16] can: dev: can_get_echo_skb(): prevent call to kfree_skb() in hard " Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 04/16] can: dev: can_get_len(): add a helper function to get the correct length of Classical frames Marc Kleine-Budde
2020-10-19 20:35   ` Oliver Hartkopp
2020-10-20  6:35     ` Marc Kleine-Budde
2020-10-20 11:30       ` Vincent Mailhol
2020-10-20 11:48         ` Marc Kleine-Budde
2020-10-20 12:38         ` Oliver Hartkopp
2020-10-20 15:02           ` Marc Kleine-Budde
2020-10-20 16:07           ` Vincent Mailhol
2020-10-20 17:04             ` Oliver Hartkopp
2020-10-20 18:50               ` Marc Kleine-Budde
2020-10-21  0:52               ` Vincent Mailhol
2020-10-21  6:23                 ` Vincent MAILHOL
2020-10-21  7:11                   ` Joakim Zhang
2020-10-21  7:21                     ` Marc Kleine-Budde
2020-10-21  7:48                       ` Joakim Zhang
2020-10-21  9:21                   ` Oliver Hartkopp
2020-10-21  9:48                     ` Oliver Hartkopp
2020-10-21 11:55                     ` Vincent MAILHOL
2020-10-21 17:52                       ` Oliver Hartkopp
2020-10-22  3:30                         ` Vincent MAILHOL
2020-10-22  7:15                           ` Oliver Hartkopp
2020-10-22 12:23                             ` Vincent MAILHOL
2020-10-22 13:28                               ` Oliver Hartkopp
2020-10-22 15:46                                 ` Vincent MAILHOL
2020-10-22 17:06                                   ` Oliver Hartkopp [this message]
2020-10-23 10:36                                     ` Vincent MAILHOL
2020-10-23 16:47                                       ` Oliver Hartkopp
2020-10-24  5:25                                         ` Vincent MAILHOL
2020-10-24 11:31                                           ` Oliver Hartkopp
2020-10-19 19:05 ` [net-rfc 05/16] can: dev: __can_get_echo_skb(): fix the returned length of CAN frame Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 06/16] can: can_create_echo_skb(): fix echo skb generation: always use skb_clone() Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 07/16] can: j1939: j1939_sk_bind(): return failure if netdev is down Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 08/16] can: isotp: Explain PDU in CAN_ISOTP help text Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 09/16] can: isotp: enable RX timeout handling in listen-only mode Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 10/16] can: ti_hecc: add missed clk_disable_unprepare() in error path Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 11/16] can: xilinx_can: handle failure cases of pm_runtime_get_sync Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 12/16] can: peak_usb: fix timestamp wrapping Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 13/16] can: peak_canfd: fix echo management when loopback is on Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 14/16] can: mcp251xfd: mcp251xfd_regmap_crc_read(): increase severity of CRC read error messages Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 15/16] can: mcp251xfd: mcp251xfd_regmap_nocrc_read(): fix semicolon.cocci warnings Marc Kleine-Budde
2020-10-19 19:05 ` [net-rfc 16/16] can: mcp251xfd: remove unneeded break Marc Kleine-Budde

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=adabe4ca-7065-0aa7-7654-51f77d9b2916@hartkopp.net \
    --to=socketcan@hartkopp.net \
    --cc=kernel@pengutronix.de \
    --cc=linux-can@vger.kernel.org \
    --cc=mailhol.vincent@wanadoo.fr \
    --cc=mkl@pengutronix.de \
    --cc=s.grosjean@peak-system.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.