From: Jason Wang <jasowang@redhat.com>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: linux-kernel@vger.kernel.org, David Miller <davem@davemloft.net>,
cornelia.huck@de.ibm.com, rusty@au1.ibm.com, nab@linux-iscsi.org,
pbonzini@redhat.com, thuth@linux.vnet.ibm.com,
dahi@linux.vnet.ibm.com, Vlad Yasevich <vyasevich@gmail.com>,
Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>,
Tom Herbert <therbert@google.com>,
Ben Hutchings <ben@decadent.org.uk>,
netdev@vger.kernel.org
Subject: Re: [PATCH v6 41/46] macvtap: TUN_VNET_HDR support
Date: Fri, 28 Nov 2014 08:32:11 +0008 [thread overview]
Message-ID: <1417163051.5822.3@smtp.corp.redhat.com> (raw)
In-Reply-To: <1417118789-18231-42-git-send-email-mst@redhat.com>
On Fri, Nov 28, 2014 at 4:11 AM, Michael S. Tsirkin <mst@redhat.com>
wrote:
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> drivers/net/macvtap.c | 68
> ++++++++++++++++++++++++++++++++-------------------
> 1 file changed, 43 insertions(+), 25 deletions(-)
>
> diff --git a/drivers/net/macvtap.c b/drivers/net/macvtap.c
> index 880cc09..af90ab5 100644
> --- a/drivers/net/macvtap.c
> +++ b/drivers/net/macvtap.c
> @@ -45,6 +45,18 @@ struct macvtap_queue {
> struct list_head next;
> };
>
> +#define MACVTAP_FEATURES (IFF_VNET_HDR | IFF_VNET_LE |
> IFF_MULTI_QUEUE)
> +
> +static inline u16 macvtap16_to_cpu(struct macvtap_queue *q,
> __virtio16 val)
> +{
> + return __virtio16_to_cpu(q->flags & IFF_VNET_LE, val);
> +}
> +
> +static inline __virtio16 cpu_to_macvtap16(struct macvtap_queue *q,
> u16 val)
> +{
> + return __cpu_to_virtio16(q->flags & IFF_VNET_LE, val);
> +}
> +
> static struct proto macvtap_proto = {
> .name = "macvtap",
> .owner = THIS_MODULE,
> @@ -557,7 +569,8 @@ static inline struct sk_buff
> *macvtap_alloc_skb(struct sock *sk, size_t prepad,
> * macvtap_skb_from_vnet_hdr and macvtap_skb_to_vnet_hdr should
> * be shared with the tun/tap driver.
> */
> -static int macvtap_skb_from_vnet_hdr(struct sk_buff *skb,
> +static int macvtap_skb_from_vnet_hdr(struct macvtap_queue *q,
> + struct sk_buff *skb,
> struct virtio_net_hdr *vnet_hdr)
> {
> unsigned short gso_type = 0;
> @@ -588,13 +601,13 @@ static int macvtap_skb_from_vnet_hdr(struct
> sk_buff *skb,
> }
>
> if (vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
> - if (!skb_partial_csum_set(skb, vnet_hdr->csum_start,
> - vnet_hdr->csum_offset))
> + if (!skb_partial_csum_set(skb, macvtap16_to_cpu(q,
> vnet_hdr->csum_start),
> + macvtap16_to_cpu(q, vnet_hdr->csum_offset)))
> return -EINVAL;
> }
>
> if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
> - skb_shinfo(skb)->gso_size = vnet_hdr->gso_size;
> + skb_shinfo(skb)->gso_size = macvtap16_to_cpu(q,
> vnet_hdr->gso_size);
> skb_shinfo(skb)->gso_type = gso_type;
>
> /* Header must be checked, and gso_segs computed. */
> @@ -604,8 +617,9 @@ static int macvtap_skb_from_vnet_hdr(struct
> sk_buff *skb,
> return 0;
> }
>
> -static void macvtap_skb_to_vnet_hdr(const struct sk_buff *skb,
> - struct virtio_net_hdr *vnet_hdr)
> +static void macvtap_skb_to_vnet_hdr(struct macvtap_queue *q,
> + const struct sk_buff *skb,
> + struct virtio_net_hdr *vnet_hdr)
> {
> memset(vnet_hdr, 0, sizeof(*vnet_hdr));
>
> @@ -613,8 +627,8 @@ static void macvtap_skb_to_vnet_hdr(const struct
> sk_buff *skb,
> struct skb_shared_info *sinfo = skb_shinfo(skb);
>
> /* This is a hint as to how much should be linear. */
> - vnet_hdr->hdr_len = skb_headlen(skb);
> - vnet_hdr->gso_size = sinfo->gso_size;
> + vnet_hdr->hdr_len = cpu_to_macvtap16(q, skb_headlen(skb));
> + vnet_hdr->gso_size = cpu_to_macvtap16(q, sinfo->gso_size);
> if (sinfo->gso_type & SKB_GSO_TCPV4)
> vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
> else if (sinfo->gso_type & SKB_GSO_TCPV6)
> @@ -628,10 +642,13 @@ static void macvtap_skb_to_vnet_hdr(const
> struct sk_buff *skb,
>
> if (skb->ip_summed == CHECKSUM_PARTIAL) {
> vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
> - vnet_hdr->csum_start = skb_checksum_start_offset(skb);
> if (vlan_tx_tag_present(skb))
> - vnet_hdr->csum_start += VLAN_HLEN;
> - vnet_hdr->csum_offset = skb->csum_offset;
> + vnet_hdr->csum_start = cpu_to_macvtap16(q,
> + skb_checksum_start_offset(skb) + VLAN_HLEN);
> + else
> + vnet_hdr->csum_start = cpu_to_macvtap16(q,
> + skb_checksum_start_offset(skb));
> + vnet_hdr->csum_offset = cpu_to_macvtap16(q, skb->csum_offset);
> } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
> vnet_hdr->flags = VIRTIO_NET_HDR_F_DATA_VALID;
> } /* else everything is zero */
> @@ -666,12 +683,14 @@ static ssize_t macvtap_get_user(struct
> macvtap_queue *q, struct msghdr *m,
> if (err < 0)
> goto err;
> if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
> - vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
> - vnet_hdr.hdr_len)
> - vnet_hdr.hdr_len = vnet_hdr.csum_start +
> - vnet_hdr.csum_offset + 2;
> + macvtap16_to_cpu(q, vnet_hdr.csum_start) +
> + macvtap16_to_cpu(q, vnet_hdr.csum_offset) + 2 >
> + macvtap16_to_cpu(q, vnet_hdr.hdr_len))
> + vnet_hdr.hdr_len = cpu_to_macvtap16(q,
> + macvtap16_to_cpu(q, vnet_hdr.csum_start) +
> + macvtap16_to_cpu(q, vnet_hdr.csum_offset) + 2);
> err = -EINVAL;
> - if (vnet_hdr.hdr_len > len)
> + if (macvtap16_to_cpu(q, vnet_hdr.hdr_len) > len)
> goto err;
> }
>
> @@ -684,7 +703,8 @@ static ssize_t macvtap_get_user(struct
> macvtap_queue *q, struct msghdr *m,
> goto err;
>
> if (m && m->msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY)) {
> - copylen = vnet_hdr.hdr_len ? vnet_hdr.hdr_len : GOODCOPY_LEN;
> + copylen = vnet_hdr.hdr_len ?
> + macvtap16_to_cpu(q, vnet_hdr.hdr_len) : GOODCOPY_LEN;
> if (copylen > good_linear)
> copylen = good_linear;
> linear = copylen;
> @@ -695,10 +715,10 @@ static ssize_t macvtap_get_user(struct
> macvtap_queue *q, struct msghdr *m,
>
> if (!zerocopy) {
> copylen = len;
> - if (vnet_hdr.hdr_len > good_linear)
> + if (macvtap16_to_cpu(q, vnet_hdr.hdr_len) > good_linear)
> linear = good_linear;
> else
> - linear = vnet_hdr.hdr_len;
> + linear = macvtap16_to_cpu(q, vnet_hdr.hdr_len);
> }
>
> skb = macvtap_alloc_skb(&q->sk, NET_IP_ALIGN, copylen,
> @@ -725,7 +745,7 @@ static ssize_t macvtap_get_user(struct
> macvtap_queue *q, struct msghdr *m,
> skb->protocol = eth_hdr(skb)->h_proto;
>
> if (vnet_hdr_len) {
> - err = macvtap_skb_from_vnet_hdr(skb, &vnet_hdr);
> + err = macvtap_skb_from_vnet_hdr(q, skb, &vnet_hdr);
> if (err)
> goto err_kfree;
> }
> @@ -791,7 +811,7 @@ static ssize_t macvtap_put_user(struct
> macvtap_queue *q,
> if ((len -= vnet_hdr_len) < 0)
> return -EINVAL;
>
> - macvtap_skb_to_vnet_hdr(skb, &vnet_hdr);
> + macvtap_skb_to_vnet_hdr(q, skb, &vnet_hdr);
>
> if (memcpy_toiovecend(iv, (void *)&vnet_hdr, 0, sizeof(vnet_hdr)))
> return -EFAULT;
> @@ -1003,8 +1023,7 @@ static long macvtap_ioctl(struct file *file,
> unsigned int cmd,
> return -EFAULT;
>
> ret = 0;
> - if ((u & ~(IFF_VNET_HDR | IFF_MULTI_QUEUE)) !=
> - (IFF_NO_PI | IFF_TAP))
> + if ((u & ~MACVTAP_FEATURES) != (IFF_NO_PI | IFF_TAP))
> ret = -EINVAL;
> else
> q->flags = u;
> @@ -1036,8 +1055,7 @@ static long macvtap_ioctl(struct file *file,
> unsigned int cmd,
> return ret;
>
> case TUNGETFEATURES:
> - if (put_user(IFF_TAP | IFF_NO_PI | IFF_VNET_HDR |
> - IFF_MULTI_QUEUE, up))
> + if (put_user(IFF_TAP | IFF_NO_PI | MACVTAP_FEATURES, up))
> return -EFAULT;
> return 0;
>
> --
> MST
Reviewed-by: Jason Wang <jasowang@redhat.com>
btw, title should be macvtap: IFF_VNET_LE support
next prev parent reply other threads:[~2014-11-28 8:24 UTC|newest]
Thread overview: 75+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-27 20:07 [PATCH v6 00/45] linux: towards virtio-1 guest support Michael S. Tsirkin
2014-11-27 20:07 ` [PATCH v6 01/46] virtio: add low-level APIs for feature bits Michael S. Tsirkin
2014-11-28 10:02 ` Cornelia Huck
2014-11-29 17:30 ` Michael S. Tsirkin
2014-11-28 12:10 ` David Hildenbrand
2014-11-29 17:32 ` Michael S. Tsirkin
2014-11-27 20:07 ` [PATCH v6 02/46] virtio: use u32, not bitmap for features Michael S. Tsirkin
2014-11-28 12:44 ` Cornelia Huck
2014-11-29 17:34 ` Michael S. Tsirkin
2014-11-27 20:07 ` [PATCH v6 03/46] mic_virtio: robust feature array size calculation Michael S. Tsirkin
2014-11-27 20:07 ` [PATCH v6 04/46] virtio: add support for 64 bit features Michael S. Tsirkin
2014-11-28 8:52 ` David Hildenbrand
2014-11-28 12:47 ` Cornelia Huck
2014-11-27 20:08 ` [PATCH v6 05/46] virtio: assert 32 bit features in transports Michael S. Tsirkin
2014-11-28 8:54 ` David Hildenbrand
2014-11-28 12:50 ` Cornelia Huck
2014-11-27 20:08 ` [PATCH v6 06/46] virtio_ccw: add support for 64 bit features Michael S. Tsirkin
2014-11-28 12:56 ` Cornelia Huck
2014-11-27 20:08 ` [PATCH v6 07/46] virtio: add virtio 1.0 feature bit Michael S. Tsirkin
2014-11-27 20:08 ` [PATCH v6 08/46] virtio: memory access APIs Michael S. Tsirkin
2014-11-27 20:08 ` [PATCH v6 09/46] virtio_ring: switch to new " Michael S. Tsirkin
2014-11-27 20:08 ` [PATCH v6 10/46] virtio_config: endian conversion for v1.0 Michael S. Tsirkin
2014-11-27 20:08 ` [PATCH v6 11/46] virtio: allow transports to get avail/used addresses Michael S. Tsirkin
2014-11-27 20:08 ` [PATCH v6 12/46] virtio: set FEATURES_OK Michael S. Tsirkin
2014-11-27 20:08 ` [PATCH v6 13/46] virtio: simplify feature bit handling Michael S. Tsirkin
2014-11-27 20:08 ` [PATCH v6 14/46] virtio: add legacy feature table support Michael S. Tsirkin
2014-11-27 20:09 ` [PATCH v6 15/46] virtio_net: v1.0 endianness Michael S. Tsirkin
2014-11-27 20:09 ` [PATCH v6 16/46] virtio_blk: v1.0 support Michael S. Tsirkin
2014-11-27 20:09 ` [PATCH v6 17/46] KVM: s390: Set virtio-ccw transport revision Michael S. Tsirkin
2014-11-27 20:09 ` [PATCH v6 18/46] KVM: s390: virtio-ccw revision 1 SET_VQ Michael S. Tsirkin
2014-11-27 20:09 ` [PATCH v6 19/46] KVM: s390 allow virtio_ccw status writes to fail Michael S. Tsirkin
2014-11-27 20:09 ` [PATCH v6 20/46] KVM: s390: enable virtio-ccw revision 1 Michael S. Tsirkin
2014-11-28 10:09 ` Cornelia Huck
2014-11-29 17:31 ` Michael S. Tsirkin
2014-11-27 20:09 ` [PATCH v6 21/46] virtio_blk: make serial attribute static Michael S. Tsirkin
2014-11-27 20:09 ` [PATCH v6 22/46] virtio_blk: fix race at module removal Michael S. Tsirkin
2014-11-27 20:09 ` [PATCH v6 23/46] virtio_net: pass vi around Michael S. Tsirkin
2014-11-27 20:09 ` [PATCH v6 24/46] virtio_net: get rid of virtio_net_hdr/skb_vnet_hdr Michael S. Tsirkin
2014-11-28 8:30 ` Jason Wang
2014-11-27 20:09 ` [PATCH v6 25/46] virtio_net: stricter short buffer length checks Michael S. Tsirkin
2014-11-28 8:31 ` Jason Wang
2014-11-27 20:10 ` [PATCH v6 26/46] virtio_net: bigger header when VERSION_1 is set Michael S. Tsirkin
2014-11-28 8:31 ` Jason Wang
2014-11-27 20:10 ` [PATCH v6 27/46] virtio_net: enable v1.0 support Michael S. Tsirkin
2014-11-27 20:10 ` [PATCH v6 28/46] vhost: make features 64 bit Michael S. Tsirkin
2014-11-28 8:32 ` Jason Wang
2014-11-27 20:10 ` [PATCH v6 29/46] vhost: add memory access wrappers Michael S. Tsirkin
2014-11-28 8:35 ` Jason Wang
2014-11-27 20:10 ` [PATCH v6 30/46] vhost/net: force len for TX to host endian Michael S. Tsirkin
2014-11-28 8:36 ` Jason Wang
2014-11-27 20:10 ` [PATCH v6 31/46] vhost: virtio 1.0 endian-ness support Michael S. Tsirkin
2014-11-27 20:10 ` [PATCH v6 32/46] vhost/net: virtio 1.0 byte swap Michael S. Tsirkin
2014-11-27 20:10 ` [PATCH v6 33/46] vhost/net: larger header for virtio 1.0 Michael S. Tsirkin
2014-11-28 8:38 ` Jason Wang
2014-11-27 20:10 ` [PATCH v6 34/46] virtio_net: disable mac write " Michael S. Tsirkin
2014-11-28 8:40 ` Jason Wang
2014-11-29 17:28 ` Michael S. Tsirkin
2014-11-27 20:10 ` [PATCH v6 35/46] vhost/net: enable " Michael S. Tsirkin
2014-11-27 20:10 ` [PATCH v6 36/46] vhost/net: suppress compiler warning Michael S. Tsirkin
2014-11-27 20:10 ` [PATCH v6 37/46] tun: move internal flag defines out of uapi Michael S. Tsirkin
2014-11-28 8:07 ` Jason Wang
2014-11-29 17:17 ` Michael S. Tsirkin
2014-11-27 20:11 ` [PATCH v6 38/46] tun: drop most type defines Michael S. Tsirkin
2014-11-28 8:09 ` Jason Wang
2014-11-29 17:23 ` Michael S. Tsirkin
2014-11-27 20:11 ` [PATCH v6 39/46] tun: add VNET_LE flag Michael S. Tsirkin
2014-11-27 20:11 ` [PATCH v6 40/46] tun: TUN_VNET_LE support, fix sparse warnings for virtio headers Michael S. Tsirkin
2014-11-28 8:19 ` Jason Wang
2014-11-27 20:11 ` [PATCH v6 41/46] macvtap: TUN_VNET_HDR support Michael S. Tsirkin
2014-11-28 8:24 ` Jason Wang [this message]
2014-11-27 20:11 ` [PATCH v6 42/46] virtio_scsi: v1.0 support Michael S. Tsirkin
2014-11-27 20:11 ` [PATCH v6 43/46] virtio_scsi: move to uapi Michael S. Tsirkin
2014-11-27 20:11 ` [PATCH v6 44/46] virtio_scsi: export to userspace Michael S. Tsirkin
2014-11-27 20:11 ` [PATCH v6 45/46] vhost/scsi: partial virtio 1.0 support Michael S. Tsirkin
2014-11-27 20:11 ` [PATCH v6 46/46] af_packet: virtio 1.0 stubs Michael S. Tsirkin
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=1417163051.5822.3@smtp.corp.redhat.com \
--to=jasowang@redhat.com \
--cc=ben@decadent.org.uk \
--cc=cornelia.huck@de.ibm.com \
--cc=dahi@linux.vnet.ibm.com \
--cc=davem@davemloft.net \
--cc=linux-kernel@vger.kernel.org \
--cc=mst@redhat.com \
--cc=nab@linux-iscsi.org \
--cc=netdev@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=rusty@au1.ibm.com \
--cc=therbert@google.com \
--cc=thuth@linux.vnet.ibm.com \
--cc=vyasevich@gmail.com \
--cc=wuzhy@linux.vnet.ibm.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
Powered by JetHome