On Thu, Feb 07, 2019 at 01:27:28PM +0100, Phil Sutter wrote: > On Thu, Feb 07, 2019 at 11:24:38AM +0100, Phil Sutter wrote: > > Align interface name handling regarding alias interfaces in > > rtnl_getlink() with dev_ioctl() treating SIOCGIFINDEX ioctl calls. The > > latter function strips any colon suffix before doing the interface > > lookup, do the same for RTM_GETLINK requests. > > After a second thought, I'll self-NACK this one: Given that netlink API > is completely unrelated to ioctl one, there is no inherent need to do > things the same way. Looking at RTM_NEWLINK handler, it seems possible > to create interface names containing a colon via netlink.
Not since commit a4176a939186 ("net: reject creation of netdev names with colons") which disallowed using such names in general. But I still don't think it would be a good idea. It's bad enough that (as I just learned to my surprise) "ip link del dummy1:0" deletes dummy1 without any complaint because ip uses SIOCGIFINDEX ioctl for ifindex lookup. Michal Kubecek