Parav Pandit
2021-Jul-02 06:04 UTC
[PATCH linux-next v3 2/6] vdpa: Introduce query of device config layout
> From: Jason Wang <jasowang at redhat.com> > Sent: Thursday, July 1, 2021 1:13 PM > > > Actually it depends on what attributes is required for building the config. > > We can simply reuse the existing virtio_net_config, if most of the fields are > required. > > struct virtio_net_config_set { > ??? ??? __virtio64 features; > ??? ??? union { > ??? ??? ??? struct virtio_net_config; > ??? ??? ??? __virtio64 reserved[64]; > ??? ??? } > }; > > If only few of the is required, we can just pick them and use another > structure.The point is we define structure based on current fields. Tomorrow a new RSS or rx scaling scheme appears, and structure size might need change. And it demands us to go back to length based typecasting code. and to avoid some length check we pick some arbitrary size reserved words. And I do not know what network research group will come up for new rss algorithm and needed plumbing.> > Actually, I think just pass the whole config with the device_features during > device creation is a good choice that can simplify a lot of things.Yes. I totally agree to this.> > We can define what is needed and ignore the others in the virtio spec. > Then there's no need to worry about any other things. vDPA core can just do > santiy test like checking size vs features.Yes, we are trying to have code that avoids such sanity checks based on structure size, length etc fields. :-)> > > > Instead of doing them as individual netlink attributes, its lumped together > in a struct of arbitrary length. :-) > > > I think not? We want to have a fixed length of the structure which never > grow. >I am not sure defining that future now is right choice, at least for me.> So the different is: > > 1) using netlink dedicated fields > > if (nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]) > > 2) using netlink as transport > > if (features & VIRTIO_NET_F_MAC) > > > > > > I notice several fields of the vduse device is setup via ioctl, which I think > should be setup via this vdpa device add interface. > > > > Also we can always wrap above nl_attr code in a helper API so that drivers > to not hand-code it. > > > Then it would be still more like 2) above (wrap netlink back to > something like virtio_net_config)? > > > > > >> We may meet similar issue when provision VF/SF instance at the > hardware > >> level. So I think we may need something in the virtio spec in the near > future.Given the device config is not spelled out in the virtio spec, may be we can wait for it to define virtio management interface.> > I don't object but it needs to be done in virtio uAPI instead of > netlink, since it's the device ABI.Device config can surely be part of the virtio uAPI. We need not have put that in UAPI. More below.> > This is the reverse of netlink which offers to not reserve any arbitrary size > structure. > > > It's not arbitrary but with fixed length.Its fixed, but decided arbitrarily large in anticipation that we likely need to grow. And sometimes that fall short when next research comes up with more creative thoughts.> > It may only work for netlink (with some duplication with the existing > virtio uAPI). If we can solve it at general virtio layer, it would be > better. Otherwise we need to invent them again in the virtio spec. >Virtio spec will likely define what should be config fields to program and its layout. Kernel can always fill up the format that virtio spec demands.> I think even for the current mlx5e vDPA it would be better, otherwise we > may have: > > vDPA tool -> [netlink specific vDPA attributes(1)] -> vDPA core -> [vDPA > core specific VDPA attributes(2)] -> mlx5e_vDPA -> [mlx5e specific vDPA > attributes(3)] -> mlx5e_core > > We need to use a single and unified virtio structure in all the (1), (2) > and (3).This is where I differ. Its only vdpa tool -> vdpa core -> vendor_driver Vdpa tool -> vdpa core = netlink attribute Vdpa core -> vendor driver = struct_foo. (internal inside the linux kernel) If tomorrow virtio spec defines struct_foo to be something else, kernel can always upgrade to struct_bar without upgrading UAPI netlink attributes. Netlink attributes addition will be needed only when struct_foo has newer fields. This will be still forward/backward compatible. An exact example of this is drivers/net/vxlan.c vxlan_nl2conf(). A vxlan device needs VNI, src ip, dst ip, tos, and more. Instead of putting all in single structure vxlan_config as UAPI, those optional fields are netlink attributes. And vxlan driver internally fills up the config structure. I am very much convinced with the above vxlan approach that enables all functionality needed without typecasting code and without defining arbitrary length structs.
Jason Wang
2021-Jul-05 04:35 UTC
[PATCH linux-next v3 2/6] vdpa: Introduce query of device config layout
? 2021/7/2 ??2:04, Parav Pandit ??:> >> From: Jason Wang <jasowang at redhat.com> >> Sent: Thursday, July 1, 2021 1:13 PM >> >> >> Actually it depends on what attributes is required for building the config. >> >> We can simply reuse the existing virtio_net_config, if most of the fields are >> required. >> >> struct virtio_net_config_set { >> ??? ??? __virtio64 features; >> ??? ??? union { >> ??? ??? ??? struct virtio_net_config; >> ??? ??? ??? __virtio64 reserved[64]; >> ??? ??? } >> }; >> >> If only few of the is required, we can just pick them and use another >> structure. > The point is we define structure based on current fields. Tomorrow a new RSS or rx scaling scheme appears, and structure size might need change. > And it demands us to go back to length based typecasting code. > and to avoid some length check we pick some arbitrary size reserved words. > And I do not know what network research group will come up for new rss algorithm and needed plumbing.Yes, but as discussed, we may suffer the similar issue at the device level. E.g we need a command to let PF to "build" the config for a VF or SF.> >> Actually, I think just pass the whole config with the device_features during >> device creation is a good choice that can simplify a lot of things. > Yes. I totally agree to this. > >> We can define what is needed and ignore the others in the virtio spec. >> Then there's no need to worry about any other things. vDPA core can just do >> santiy test like checking size vs features. > Yes, we are trying to have code that avoids such sanity checks based on structure size, length etc fields. :-) > >> >>> Instead of doing them as individual netlink attributes, its lumped together >> in a struct of arbitrary length. :-) >> >> >> I think not? We want to have a fixed length of the structure which never >> grow. >> > I am not sure defining that future now is right choice, at least for me. > >> So the different is: >> >> 1) using netlink dedicated fields >> >> if (nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]) >> >> 2) using netlink as transport >> >> if (features & VIRTIO_NET_F_MAC) >> >> >>> I notice several fields of the vduse device is setup via ioctl, which I think >> should be setup via this vdpa device add interface. >>> Also we can always wrap above nl_attr code in a helper API so that drivers >> to not hand-code it. >> >> >> Then it would be still more like 2) above (wrap netlink back to >> something like virtio_net_config)? >> >> >>>> We may meet similar issue when provision VF/SF instance at the >> hardware >>>> level. So I think we may need something in the virtio spec in the near >> future. > Given the device config is not spelled out in the virtio spec, may be we can wait for it to define virtio management interface.Yes.> >> I don't object but it needs to be done in virtio uAPI instead of >> netlink, since it's the device ABI. > Device config can surely be part of the virtio uAPI. > We need not have put that in UAPI. > More below. > >>> This is the reverse of netlink which offers to not reserve any arbitrary size >> structure. >> >> >> It's not arbitrary but with fixed length. > Its fixed, but decided arbitrarily large in anticipation that we likely need to grow. > And sometimes that fall short when next research comes up with more creative thoughts.How about something like TLVs in the virtio spec then?> >> It may only work for netlink (with some duplication with the existing >> virtio uAPI). If we can solve it at general virtio layer, it would be >> better. Otherwise we need to invent them again in the virtio spec. >> > Virtio spec will likely define what should be config fields to program and its layout. > Kernel can always fill up the format that virtio spec demands.Yes, I wonder if you have the interest to work on the spec to support this.> >> I think even for the current mlx5e vDPA it would be better, otherwise we >> may have: >> >> vDPA tool -> [netlink specific vDPA attributes(1)] -> vDPA core -> [vDPA >> core specific VDPA attributes(2)] -> mlx5e_vDPA -> [mlx5e specific vDPA >> attributes(3)] -> mlx5e_core >> >> We need to use a single and unified virtio structure in all the (1), (2) >> and (3). > This is where I differ. > Its only vdpa tool -> vdpa core -> vendor_driver > > Vdpa tool -> vdpa core = netlink attribute > Vdpa core -> vendor driver = struct_foo. (internal inside the linux kernel) > > If tomorrow virtio spec defines struct_foo to be something else, kernel can always upgrade to struct_bar without upgrading UAPI netlink attributes.That's fine. Note that actually have an extra level if vendor_driver is virtio-pci vDPA driver (vp_vdpa). Then we have vdpa tool -> vdpa core -> vp_vdpa -> virtio-pci device So we still need invent commands to configure/build VF/SF config space between vp_vdpa and virtio-pci device. And I think we may suffer the similar issue as we met here (vdpa tool -> vdpa core).> Netlink attributes addition will be needed only when struct_foo has newer fields. > This will be still forward/backward compatible. > > An exact example of this is drivers/net/vxlan.c > vxlan_nl2conf(). > A vxlan device needs VNI, src ip, dst ip, tos, and more. > Instead of putting all in single structure vxlan_config as UAPI, those optional fields are netlink attributes. > And vxlan driver internally fills up the config structure. > > I am very much convinced with the above vxlan approach that enables all functionality needed without typecasting code and without defining arbitrary length structs.Right, but we had some small differences here: 1) vxlan doesn't have a existing uAPI 2) vxlan configuration is not used for hardware Basically, I'm not against this approach, I just wonder if it's better/simpler to solve it at virtio layer because the semantic is defined by the spec not netlink. Thanks