From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932245AbdEZS6a (ORCPT ); Fri, 26 May 2017 14:58:30 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:39303 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754123AbdEZS62 (ORCPT ); Fri, 26 May 2017 14:58:28 -0400 Subject: Re: [PATCH v2 07/18] xen/pvcalls: implement socket command To: Stefano Stabellini , xen-devel@lists.xen.org References: <1495236179-27776-1-git-send-email-sstabellini@kernel.org> <1495236179-27776-7-git-send-email-sstabellini@kernel.org> Cc: linux-kernel@vger.kernel.org, jgross@suse.com, Stefano Stabellini From: Boris Ostrovsky Message-ID: Date: Fri, 26 May 2017 14:58:10 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <1495236179-27776-7-git-send-email-sstabellini@kernel.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Source-IP: aserv0021.oracle.com [141.146.126.233] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 05/19/2017 07:22 PM, 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 | 29 ++++++++++++++++++++++++++++- > 1 file changed, 28 insertions(+), 1 deletion(-) > > diff --git a/drivers/xen/pvcalls-back.c b/drivers/xen/pvcalls-back.c > index 9dc8a28..fed54bf 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 > @@ -55,7 +60,29 @@ struct pvcalls_back_priv { > static int pvcalls_back_socket(struct xenbus_device *dev, > struct xen_pvcalls_request *req) > { > - return 0; > + struct pvcalls_back_priv *priv; > + int ret; > + struct xen_pvcalls_response *rsp; > + > + priv = dev_get_drvdata(&dev->dev); > + > + if (req->u.socket.domain != AF_INET || > + req->u.socket.type != SOCK_STREAM || > + (req->u.socket.protocol != 0 && > + req->u.socket.protocol != AF_INET)) > + ret = -EAFNOSUPPORT; > + else > + ret = 0; > + > + /* leave the actual socket allocation for later */ Why is this allocation deferred (to connect and bind)? Doesn't it in some way violate semantics of socket call? -boris > + > + rsp = RING_GET_RESPONSE(&priv->ring, priv->ring.rsp_prod_pvt++); > + rsp->req_id = req->req_id; > + rsp->cmd = req->cmd; > + rsp->u.socket.id = req->u.socket.id; > + rsp->ret = ret; > + > + return ret; > } > > static int pvcalls_back_connect(struct xenbus_device *dev,