python-can icon indicating copy to clipboard operation
python-can copied to clipboard

CC-2174: modify CAN frame header structure to match updated struct ca…

Open eldadcool opened this issue 1 year ago • 8 comments

This fix allow to send CLASSIC CAN frames with a DLC value larger than 8 using the socketcan interface.

In addition it allow to parse incoming socketcan messages with the updated format #1780 @hartkopp

eldadcool avatar Sep 05 '24 08:09 eldadcool

@lumagi could you take a look at this?

zariiii9003 avatar Sep 17 '24 16:09 zariiii9003

I'll try to take a look over the next couple of days. @eldadcool do you happen to have a link to the patch set in the kernel?

lumagi avatar Sep 18 '24 20:09 lumagi

I'll try to take a look over the next couple of days. @eldadcool do you happen to have a link to the patch set in the kernel?

@lumagi, sure: The patch can be found at version 6.10.7 of the kernel, see patch at https://github.com/torvalds/linux/commit/ea7800565a128c1adafa1791ce80afd6016fe21c

To configure the bus using "ip link" command you require a version of iproute2 5.12 or higher: https://lore.kernel.org/netdev/[email protected]/

use the command

ip link set can0 down
ip link set type can cc-len8-dlc on
ip link set can0 up

note: can-utils support this only since this patch https://github.com/linux-can/can-utils/commit/11edd1d05e6fac6f45706d98ccb9ddd621621874

@hartkopp - please review my fix as well to make sure I did not misinterpret some edge cases regarding the new structure and that this will not break the usage of the old format.

eldadcool avatar Sep 19 '24 06:09 eldadcool

use the command

ip link set can0 down
ip link set type can cc-len8-dlc on
ip link set can0 up

You can simply go with the latest can-utils where candump and cangen have a -8 option to create and display the DLC values over 8. WIth the virtual CAN interfaces (e.g. vcan0) you can test the cc-len8-dlc stuff without any additional configuration. The vcan is transparent for these values.

@hartkopp - please review my fix as well to make sure I did not misinterpret some edge cases regarding the new structure and that this will not break the usage of the old format.

I'm not sure whether I can really review the patch, as I'm not that familiar with Pythons packing concept. But if you strictly followed the data structure and the rules (len == 8 and ( len8_dlc > 8 && len8_dlc <= 0xF )) apply for valid DLC over 8 length's values - then it should be fine :-)

Many thanks, Oliver

hartkopp avatar Sep 19 '24 08:09 hartkopp

I'm not sure whether I can really review the patch, as I'm not that familiar with Pythons packing concept. But if you strictly followed the data structure and the rules (len == 8 and ( len8_dlc > 8 && len8_dlc <= 0xF )) apply for valid DLC over 8 length's values - then it should be fine :-)

Actually, the DLC value in python-can relate directly to the data length. and it's not even verified to be a valid message by default. So potentially this could lead to sending a message with unexpected DLC value. This reminds me of an issue I think I found in socketcan (@hartkopp) allowing unexpected lengths for CAN FD frames (10 bytes for example...) because the length value used is socketcan also relate to the data length and not to the DLC. I think we need to be aligned regarding this and very careful because fixing it might break some existing usage of socketcan or python-can.

Note the issue with socketcan only relevant for virtual can interfaces because physical interfaces does not allow FD frames with 10 bytes of data (only <8, 8, 12, 16, 20, 24, 32, 48 and 64) but it makes virtual interfaces behave differently than physical interfeces.

eldadcool avatar Sep 19 '24 16:09 eldadcool

This reminds me of an issue I think I found in socketcan (@hartkopp) allowing unexpected lengths for CAN FD frames (10 bytes for example...) because the length value used is socketcan also relate to the data length and not to the DLC. I think we need to be aligned regarding this and very careful because fixing it might break some existing usage of socketcan or python-can.

Note the issue with socketcan only relevant for virtual can interfaces because physical interfaces does not allow FD frames with 10 bytes of data (only <8, 8, 12, 16, 20, 24, 32, 48 and 64) but it makes virtual interfaces behave differently than physical interfeces.

Yes, this is intentional. The idea is that the content which is sent via virtual CAN devices is not extensively sanitized to be able to test with uncertain values and just reflect them back to user space. This is very useful to test user space applications.

Once the CAN frame content is given to a real CAN interface or received from them the functions

can_fd_dlc2len() can_fd_len2dlc() canfd_sanitize_len() are used.

https://elixir.bootlin.com/linux/v6.11/source/include/linux/can/length.h#L290

hartkopp avatar Sep 21 '24 18:09 hartkopp

Yes, this is intentional. The idea is that the content which is sent via virtual CAN devices is not extensively sanitized to be able to test with uncertain values and just reflect them back to user space. This is very useful to test user space applications.

Cool, In that case the current solution I proposed here sanitize the length field for FD valid values. Don't think this should lead to an issue. @lumagi, have any insights?

eldadcool avatar Sep 24 '24 07:09 eldadcool

ping @eldadcool

zariiii9003 avatar Oct 16 '24 06:10 zariiii9003

ping @eldadcool

Hii sorry, I was not very available last month... Added replies to your comments. :)

eldadcool avatar Nov 05 '24 09:11 eldadcool

@lumagi feel free to approve and merge

zariiii9003 avatar Nov 23 '24 14:11 zariiii9003