diff options
| author | Amar Tumballi <amar@gluster.com> | 2011-06-17 06:10:53 +0000 | 
|---|---|---|
| committer | Anand Avati <avati@gluster.com> | 2011-06-19 02:16:34 -0700 | 
| commit | a6fd403a15ffead93daba8a737cd7c6d6a943744 (patch) | |
| tree | 618fd1c03ead241bb4605a774e55c14425c2c026 /glusterfsd/src/glusterfsd-mgmt.c | |
| parent | 3d6efb17f12fa23482936ec7a5a666bbf9c0f78b (diff) | |
fix multiple transport related portmap issues in client handshake
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2258 (enhance gluster volume rebalance)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2258
Diffstat (limited to 'glusterfsd/src/glusterfsd-mgmt.c')
| -rw-r--r-- | glusterfsd/src/glusterfsd-mgmt.c | 60 | 
1 files changed, 60 insertions, 0 deletions
diff --git a/glusterfsd/src/glusterfsd-mgmt.c b/glusterfsd/src/glusterfsd-mgmt.c index a6d8a480076..02b622f9884 100644 --- a/glusterfsd/src/glusterfsd-mgmt.c +++ b/glusterfsd/src/glusterfsd-mgmt.c @@ -546,12 +546,51 @@ out:  static int +mgmt_pmap_signin2_cbk (struct rpc_req *req, struct iovec *iov, int count, +                       void *myframe) +{ +        pmap_signin_rsp  rsp   = {0,}; +        call_frame_t    *frame = NULL; +        int              ret   = 0; + +        frame = myframe; + +        if (-1 == req->rpc_status) { +                rsp.op_ret   = -1; +                rsp.op_errno = EINVAL; +                goto out; +        } + +        ret = xdr_to_pmap_signin_rsp (*iov, &rsp); +        if (ret < 0) { +                gf_log (frame->this->name, GF_LOG_ERROR, "XDR decode error"); +                rsp.op_ret   = -1; +                rsp.op_errno = EINVAL; +                goto out; +        } + +        if (-1 == rsp.op_ret) { +                gf_log (frame->this->name, GF_LOG_ERROR, +                        "failed to register the port with glusterd"); +                goto out; +        } +out: +        STACK_DESTROY (frame->root); +        return 0; + +} + +static int  mgmt_pmap_signin_cbk (struct rpc_req *req, struct iovec *iov, int count,                        void *myframe)  {          pmap_signin_rsp  rsp   = {0,};          call_frame_t    *frame = NULL;          int              ret   = 0; +        pmap_signin_req  pmap_req = {0, }; +        cmd_args_t      *cmd_args = NULL; +        glusterfs_ctx_t *ctx      = NULL; +        char             brick_name[PATH_MAX] = {0,};          frame = myframe; @@ -574,6 +613,27 @@ mgmt_pmap_signin_cbk (struct rpc_req *req, struct iovec *iov, int count,                          "failed to register the port with glusterd");                  goto out;          } + +        ctx = glusterfs_ctx_get (); +        cmd_args = &ctx->cmd_args; + +        if (!cmd_args->brick_port2) { +                /* We are done with signin process */ +                goto out; +        } + +        snprintf (brick_name, PATH_MAX, "%s.rdma", cmd_args->brick_name); +        pmap_req.port  = cmd_args->brick_port2; +        pmap_req.brick = brick_name; + +        ret = mgmt_submit_request (&pmap_req, frame, ctx, &clnt_pmap_prog, +                                   GF_PMAP_SIGNIN, xdr_from_pmap_signin_req, +                                   mgmt_pmap_signin2_cbk); +        if (ret) +                goto out; + +        return 0; +  out:          STACK_DESTROY (frame->root);  | 
