Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751895AbdFUURC (ORCPT ); Wed, 21 Jun 2017 16:17:02 -0400 Received: from mail.kernel.org ([198.145.29.99]:60550 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750827AbdFUURB (ORCPT ); Wed, 21 Jun 2017 16:17:01 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org BB388217C3 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=sstabellini@kernel.org Date: Wed, 21 Jun 2017 13:16:56 -0700 (PDT) From: Stefano Stabellini X-X-Sender: sstabellini@sstabellini-ThinkPad-X260 To: =?UTF-8?Q?Roger_Pau_Monn=C3=A9?= cc: Stefano Stabellini , xen-devel@lists.xen.org, jgross@suse.com, Stefano Stabellini , boris.ostrovsky@oracle.com, linux-kernel@vger.kernel.org Subject: Re: [Xen-devel] [PATCH v4 07/18] xen/pvcalls: implement socket command In-Reply-To: <20170620161112.7x4qickboyt7qyvh@dhcp-3-128.uk.xensource.com> Message-ID: References: <1497553787-3709-1-git-send-email-sstabellini@kernel.org> <1497553787-3709-7-git-send-email-sstabellini@kernel.org> <20170620161112.7x4qickboyt7qyvh@dhcp-3-128.uk.xensource.com> User-Agent: Alpine 2.10 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="8323329-440379673-1498076217=:12819" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2768 Lines: 72 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --8323329-440379673-1498076217=:12819 Content-Type: TEXT/PLAIN; charset=UTF-8 Content-Transfer-Encoding: 8BIT On Tue, 20 Jun 2017, Roger Pau Monné wrote: > On Thu, Jun 15, 2017 at 12:09:36PM -0700, Stefano Stabellini wrote: > > Just reply with success to the other end for now. Delay the allocation > > of the actual socket to bind and/or connect. > > > > Signed-off-by: Stefano Stabellini > > CC: boris.ostrovsky@oracle.com > > CC: jgross@suse.com > > --- > > drivers/xen/pvcalls-back.c | 27 +++++++++++++++++++++++++++ > > 1 file changed, 27 insertions(+) > > > > diff --git a/drivers/xen/pvcalls-back.c b/drivers/xen/pvcalls-back.c > > index 437c2ad..953458b 100644 > > --- a/drivers/xen/pvcalls-back.c > > +++ b/drivers/xen/pvcalls-back.c > > @@ -12,12 +12,17 @@ > > * GNU General Public License for more details. > > */ > > > > +#include > > #include > > #include > > #include > > #include > > #include > > #include > > +#include > > +#include > > +#include > > +#include > > > > #include > > #include > > @@ -54,6 +59,28 @@ struct pvcalls_fedata { > > static int pvcalls_back_socket(struct xenbus_device *dev, > > struct xen_pvcalls_request *req) > > { > > + struct pvcalls_fedata *fedata; > > + int ret; > > + struct xen_pvcalls_response *rsp; > > + > > + fedata = dev_get_drvdata(&dev->dev); > > + > > + if (req->u.socket.domain != AF_INET || > > + req->u.socket.type != SOCK_STREAM || > > + (req->u.socket.protocol != IPPROTO_IP && > > + req->u.socket.protocol != AF_INET)) > > + ret = -EAFNOSUPPORT; > > Sorry for jumping into this out of the blue, but shouldn't all the > constants used above be part of the protocol? AF_INET/SOCK_STREAM/... > are all part of POSIX, but their specific value is not defined in the > standard, hence we should have XEN_AF_INET/XEN_SOCK_STREAM/... Or am I > just missing something? The values of these constants for the pvcalls protocol are defined by docs/misc/pvcalls.markdown under "Socket families and address format". They happen to be the same as the ones defined by Linux as AF_INET, SOCK_STREAM, etc, so in Linux I am just using those, but that is just an implementation detail internal to the Linux kernel driver. What is important from the protocol ABI perspective are the values defined by docs/misc/pvcalls.markdown. --8323329-440379673-1498076217=:12819--