From: Vincent Mailhol <mailhol@kernel.org>
To: Oliver Hartkopp <socketcan@hartkopp.net>, linux-can@vger.kernel.org
Cc: "Stéphane Grosjean" <stephane.grosjean@hms-networks.com>
Subject: Re: [RFC PATCH v5 2/2] can: reject CAN FD content when disabled on CAN XL interfaces
Date: Tue, 16 Sep 2025 22:17:14 +0900 [thread overview]
Message-ID: <204b2bbf-eeb6-492d-9842-4720ba6c055b@kernel.org> (raw)
In-Reply-To: <034cad19-d04d-4b14-87b2-e8b2b7b14099@hartkopp.net>
On 16/09/2025 at 18:14, Oliver Hartkopp wrote:
> On 15.09.25 20:54, Vincent Mailhol wrote:
>> On 16/09/2025 at 03:08, Oliver Hartkopp wrote:
>
>>> I think the interface to set the MTU lacks a clear separation of how to set the
>>> MTU for real (hardware) CAN interfaces and virtual CAN interfaces.
>>
>> Ack.
>>
>>> 1. IMO we should be able to set the MTUs on virtual and real interfaces when the
>>> interface is down (as those MTUs have no effect at this time).
>>
>> Mostly agreed. It should not be possible to switch between the Classical CAN,
>> CAN FD or CAN XL MTUs. But I do not yet see an issue to change the MTU to
>> something in between CANXL_MIN_MTU and CANXL_MAX_MTU while a CAN XL node is
>> running.
>
> No, not while it is running (== up).
> My point was that you can set the MTU as long as the interface is not "up".
> Together with the default initial values (see below) this makes perfect sense to
> me.
>
>> I want to first study the other interfaces (e.g. ethernet) and the core net
>> infrastructure in order to make my mind. For the moment, I am just undecided.
>
> I'm not sure if ethernet is a good example for our use-case with different CAN
> protocols types (CC/FD/XL) which is more than having ethernet frames of
> different length.
I agree that we should not switch between MTUs of different protocols while the
interface is up.
My point is just to allow switching the MTU to anything between CANXL_MIN_MTU
and CANXL_MAX_MTU on a CAN XL interface which is up. So the use case is also
just one protocol type (CAN XL). And that, I think, is comparable to Ethernet
frames.
>>> 2. When a virtual interface is set to "up" the MTU is used and fixed.
>>
>> Same as above, mostly agreed aside from the CAN XL on which I do not yet have my
>> final opinion.
>>
>>> 3. When a real interface is set to up the mtu is set to ...
>>> a. mtu = CAN_MTU when fd off and xl off
>>> b. mtu = CANFD_MTU when fd on and xl off
>>> c. mtu = the configured CAN XL MTU (*) when xl on
>>>
>>> (*) when the configured mtu is not in the range of CANXL_MIN_MTU and
>>> CANXL_MAX_MTU the mtu is set to CANXL_MAX_MTU.
>>>
>>> By default the initial MTU of virtual CAN interfaces should be set to CANXL_MTU.
>>>
>>> By default the initial MTU of real CAN interfaces should be set to the maximum
>>> value which the real CAN interface is capable too:
>>> a. CAN_CTRLMODE_XL supported -> CANXL_MTU.
>>> b. CAN_CTRLMODE_FD supported -> CANFD_MTU.
>>> c. default CAN_MTU
>>
>> I was thinking of the opposite:
>>
>> a. if the device is CAN FD static it is CANFD_MTU
>> b. if the device is CAN XL static it is CANXL_MTU
>> c. otherwise, it is the CAN_MTU by default
>>
>> which, if you remove point b., happens to be the current logic. I do not see a
>> need to change this.
>
> I like that approach of having the supported MTUs as default and later reduce
> the MTU based on fd=off and xl=off, because it would be similar with the virtual
> CAN configuration then.
vcan's MTU is set to CANFD_MTU. You still need to manually increase it to enable
xl. But fair enough, we could modify the vcan default to CANXL_MTU so that it
works as you just described.
But I do not see the parallel. On vcan, FD is turned on by default. On real
interfaces, CAN_CTRLMODE_FD is turned off by default. Why should we be trying to
spot similarities on something which is different in the first place?
What I dislike the most is that there is an existing logic for the real
interfaces. The MTU is set by default to CAN_MTU here:
https://elixir.bootlin.com/linux/v6.16/source/drivers/net/can/dev/dev.c#L242
and is modified only if the device is CAN FD static here:
https://elixir.bootlin.com/linux/v6.16/source/include/linux/can/dev.h#L144
Here, we are not adding a new feature, but extending an existing one. So you
would need a strong argument to justify a change going in the opposite direction
of the current logic.
I see that can_change_mtu() is currently broken, so that's a strong enough
reason to change it. But the default MTU logic looks coherent to me so I do not
get why that should change.
> I assume the initial MTU isn't looked at by the users anyway.
The user may look at it. It is better not to make assumptions here.
The design must be such that the netlink always reports a coherent configuration
at any point in time.
>> If we set CANXL_MTU by default on XL capable devices, it means that at a moment
>> in time, we have a device with the CAN_CTRLMODE_XL off but with a CAN XL MTU.
>
> ???
>
> Maybe I was not clear enough:
>
> You intitialize the MTU to CANXL_MTU when CAN_CTRLMODE_XL is a "supported mode".
> The interface is not "up" at this time and therefore the MTU is not on active
> service.
>
> Then you configure the interface with bitrates and xl/fd on/off.
>
> And then you set the interface to "up" and in this process the MTU is set as a
> valid and activated value with a MTU based on the xl/fd on/off settings. This
> was my idea.
Then, why do we need to set an MTU in the first place? The user must call the
netlink interface at least once.
If I follow your point, we might as well set it to zero at the beginning to just
signal that the interface is not ready and that the MTU is unknown.
Also, consider the following. If I connect a real device and do right away a:
ip link set can0 type can xl off
then, what is supposed to happen?
This is supposed to be NOP (the CAN_CTRLMODE_XL is off at the beginning).
But then, should the MTU change? If yes, should it change to the CANFD_MTU or to
the CAN_MTU?
That's why I am saying that having a disconnection between the MTU and the
control modes is bad. Your logic creates some edge cases for no valid reason.
The simple logic would be this:
fd off, xl off fd on, xl off fd any, xl on
---------------------------------------------------------------------------
default mtu CAN_MTU CANFD_MTU CANXL_MTU
min mtu CAN_MTU CANFD_MTU CANXL_MIN_MTU
max mtu CAN_MTU CANFD_MTU CANXL_MAX_MTU
Each time the user touches the fd and xl flags, the MTU, MTU MIN and MTU_MAX
triplet is modified accordingly in can_changelink() to the values in above table
and this way, you are always in a coherent state in which the MTU matches the
control mode flags.
>> And this is inconsistent. For me, the MTU should always match the control mode
>> flags. Because all control modes are off at the beginning, the MTU is thus the
>> Classical CAN one.
>>
>>> I think this should make it clearer and fix the current inconsistency.
>>>
>>> Setting the CANFD_MTU via the ip set mtu feature and expect "fd on" being set at
>>> the same time is bad.
>>
>> OK. Aside of a few details, I think we agree on the big lines. The good thing is
>> that the current can_change_mtu() only targets the real interfaces. The virtual
>> ones already have their own functions and so will not get impacted.
>
> Right. The virtual CAN stuff can stay as-is.
>
>> So I am just thinking of doing a full rewrite of can_change_mtu(). The old logic
>> of being able to implicitly set the fd flag by providing an MTU will go to the
>> trash can.
>
> Yes. That was not consistent and clear in the usage.
>
> With my suggestion the can_change_mtu() will be just a simple setting of values
> which is the same for real and virtual interfaces.
> For real interfaces we might make some additional checks against the "supported
> modes" for FD and XL.
>
> And when the real interface is set to "up" the MTU is adjusted to the real cc/
> fd/xl configuration values. I hope this makes it clear now.
>
>> The new logic will try to follow as much as possible the intended MTU
>> logic of the core net framework (which I am still studying).
>
> Don't expect too much for our use-case there ;-)
There is one feature that I would really like to use:
net_device->min_mtu
and
net_device->max_mtu
Once you set those, you automatically get:
- validation by the core infrastructure that the user's inputs are in range
- reporting of those min and max MTU values through the netlink interface
The first point is a nice to have. This way, the devices are not forced anymore
to populate net_device_ops->ndo_change_mtu.
The second point is what looks the most important to me. I am incapable of
remembering what are the actual values of CANXL_MIN_MTU and CANXL_MAX_MTU. If we
advertise those through netlink, then I can easily confirm the range.
Yours sincerely,
Vincent Mailhol
next prev parent reply other threads:[~2025-09-16 13:17 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-09 9:24 [RFC PATCH v5 1/2] can: skb: enforce CANFD_FDF check in can_is_canfd_skb() Oliver Hartkopp
2025-09-09 9:24 ` [RFC PATCH v5 2/2] can: reject CAN FD content when disabled on CAN XL interfaces Oliver Hartkopp
2025-09-09 16:36 ` Oliver Hartkopp
2025-09-10 5:13 ` Vincent Mailhol
2025-09-10 7:27 ` Oliver Hartkopp
2025-09-10 7:40 ` Vincent Mailhol
2025-09-10 8:48 ` Oliver Hartkopp
2025-09-10 16:19 ` Vincent Mailhol
2025-09-10 20:12 ` Oliver Hartkopp
2025-09-15 10:55 ` Vincent Mailhol
2025-09-15 13:59 ` Vincent Mailhol
2025-09-15 18:08 ` Oliver Hartkopp
2025-09-15 18:54 ` Vincent Mailhol
2025-09-16 9:14 ` Oliver Hartkopp
2025-09-16 13:17 ` Vincent Mailhol [this message]
2025-09-17 21:29 ` Oliver Hartkopp
2025-09-18 9:18 ` Vincent Mailhol
2025-09-20 17:38 ` Oliver Hartkopp
2025-09-20 17:57 ` Vincent Mailhol
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=204b2bbf-eeb6-492d-9842-4720ba6c055b@kernel.org \
--to=mailhol@kernel.org \
--cc=linux-can@vger.kernel.org \
--cc=socketcan@hartkopp.net \
--cc=stephane.grosjean@hms-networks.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox