diff options
| author | Pranith Kumar K <pkarampu@redhat.com> | 2015-03-11 17:43:12 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vbellur@redhat.com> | 2015-03-25 11:10:40 -0700 | 
| commit | 21cd43cfd62f69cd011fced7ebec93b9347f9fce (patch) | |
| tree | e3736b832dea4721754623cae8c27b3de49cb220 /xlators/lib | |
| parent | 18dd162e00c8655648cea702bdb7b8bf25f1da97 (diff) | |
libxlator: Change marker xattr handling interface
- Changed the implementation of marker xattr handling to take just a
  function which populates important data that is different from
  default 'gauge' values and subvolumes where the call needs to be
  wound.
- Removed duplicate code I found while reading the code and moved it to
  cluster_marker_unwind. Removed unused structure members.
- Changed dht/afr/stripe implementations to follow the new implementation
- Implemented marker xattr handling for ec.
Change-Id: Ib0c3626fe31eb7c8aae841eabb694945bf23abd4
BUG: 1200372
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/9892
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Xavier Hernandez <xhernandez@datalab.es>
Reviewed-by: Shyamsundar Ranganathan <srangana@redhat.com>
Reviewed-by: Ravishankar N <ravishankar@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/lib')
| -rw-r--r-- | xlators/lib/src/libxlator.c | 310 | ||||
| -rw-r--r-- | xlators/lib/src/libxlator.h | 14 | 
2 files changed, 151 insertions, 173 deletions
diff --git a/xlators/lib/src/libxlator.c b/xlators/lib/src/libxlator.c index 0b5036c8ba8..30436131b6b 100644 --- a/xlators/lib/src/libxlator.c +++ b/xlators/lib/src/libxlator.c @@ -61,6 +61,9 @@ get_hosttime (uint32_t *oldtimbuf, uint32_t *newtimebuf)  int  match_uuid_local (const char *name, char *uuid)  { +        if (!uuid || !*uuid) +                return -1; +          name = strtail ((char *)name, MARKER_XATTR_PREFIX);          if (!name || name++[0] != '.')                  return -1; @@ -132,6 +135,57 @@ evaluate_marker_results (int *gauge, int *count)          return op_errno;  } +static void +cluster_marker_unwind (call_frame_t *frame, char *key, void *value, size_t size, +                       dict_t *dict) +{ +        xl_marker_local_t *local   = frame->local; +        int               ret      = 0; +        int32_t           op_ret   = 0; +        int32_t           op_errno = 0; +        gf_boolean_t      unref    = _gf_false; + +        frame->local = local->xl_local; + +        if (local->count[MCNT_FOUND]) { +                if (!dict) { +                        dict = dict_new(); +                        if (dict) { +                                unref = _gf_true; +                        } else { +                                op_ret = -1; +                                op_errno = ENOMEM; +                                goto out; +                        } +                } + +                ret = dict_set_static_bin (dict, key, value, size); +                if (ret) { +                        op_ret = -1; +                        op_errno = ENOMEM; +                        goto out; +                } +        } + +        op_errno = evaluate_marker_results (local->gauge, local->count); +        if (op_errno) +                op_ret = -1; + +out: +        if (local->xl_specf_unwind) { +                local->xl_specf_unwind (frame, op_ret, +                                        op_errno, dict, NULL); +        } else { +                STACK_UNWIND_STRICT (getxattr, frame, op_ret, op_errno, +                                     dict, NULL); +        } + +        GF_FREE (local); +        if (unref) +                dict_unref (dict); + +} +  /* Aggregate all the <volid>.xtime attrs of the cluster and send the max*/  int32_t  cluster_markerxtime_cbk (call_frame_t *frame, void *cookie, xlator_t *this, @@ -140,26 +194,12 @@ cluster_markerxtime_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  {          int32_t           callcnt         = 0; -        int               ret             = -1;          uint32_t          *net_timebuf    = NULL;          uint32_t          host_timebuf[2] = {0,};          char              marker_xattr[128]   = {0};          xl_marker_local_t *local          = NULL; -        char              need_unwind     = 0; -        gf_boolean_t      unref           = _gf_false; - -        if (!this || !frame || !frame->local || !cookie) { -                gf_log ("", GF_LOG_DEBUG, "possible NULL deref"); -                need_unwind = 1; -                goto out; -        }          local = frame->local; -        if (!local || !local->vol_uuid) { -                gf_log (this->name, GF_LOG_DEBUG, "possible NULL deref"); -                need_unwind = 1; -                goto out; -        }          snprintf (marker_xattr, sizeof (marker_xattr), "%s.%s.%s",                    MARKER_XATTR_PREFIX, local->vol_uuid, XTIME); @@ -199,50 +239,9 @@ cluster_markerxtime_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  unlock:          UNLOCK (&frame->lock); -        if (!callcnt) { -                op_ret = 0; -                op_errno = 0; -                need_unwind = 1; - -                if (local->count[MCNT_FOUND]) { -                        if (!dict) { -                                dict = dict_new(); -                                if (dict) { -                                        unref = _gf_true; -                                } else { -                                        op_ret = -1; -                                        op_errno = ENOMEM; -                                        goto out; -                                } -                        } - -                        ret = dict_set_static_bin (dict, marker_xattr, -                                           (void *)local->net_timebuf, 8); -                        if (ret) { -                                op_ret = -1; -                                op_errno = ENOMEM; -                                goto out; -                        } -                } - -                op_errno = evaluate_marker_results (local->gauge, local->count); -                if (op_errno) -                        op_ret = -1; -        } - -out: -        if (need_unwind && local && local->xl_specf_unwind) { -                frame->local = local->xl_local; -                local->xl_specf_unwind (frame, op_ret, -                                        op_errno, dict, xdata); -		GF_FREE (local); -        } else if (need_unwind) { -                STACK_UNWIND_STRICT (getxattr, frame, op_ret, op_errno, -                                     dict, xdata); -        } - -        if (unref) -                dict_unref (dict); +        if (callcnt == 0) +                cluster_marker_unwind (frame, marker_xattr, local->net_timebuf, +                                       8, dict);          return 0; @@ -256,23 +255,10 @@ cluster_markeruuid_cbk (call_frame_t *frame, void *cookie, xlator_t *this,          struct volume_mark  *volmark    = NULL;          xl_marker_local_t   *local      = NULL;          int32_t             ret         = -1; -        char                need_unwind = 0;          char                *vol_uuid   = NULL; -        if (!this || !frame || !cookie) { -                gf_log ("", GF_LOG_DEBUG, "possible NULL deref"); -                need_unwind = 1; -                goto out; -        } -          local = frame->local; -        if (!local) { -                gf_log (this->name, GF_LOG_DEBUG, "possible NULL deref"); -                need_unwind = 1; -                goto out; -        } -          LOCK (&frame->lock);          {                  callcnt = --local->call_count; @@ -296,9 +282,9 @@ cluster_markeruuid_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                                  goto unlock;                          } -                        if (local->retval) +                        if (local->retval) {                                  goto unlock; -                        else if (volmark->retval) { +                        } else if (volmark->retval) {                                  GF_FREE (local->volmark);                                  local->volmark =                                          memdup (volmark, sizeof (*volmark)); @@ -323,103 +309,14 @@ cluster_markeruuid_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  unlock:          UNLOCK (&frame->lock); -        if (!callcnt) { -                op_ret = 0; -                op_errno = 0; -                need_unwind = 1; +        if (callcnt == 0) +                cluster_marker_unwind (frame, GF_XATTR_MARKER_KEY, +                                       local->volmark, sizeof (*local->volmark), +                                       dict); -                if (local->count[MCNT_FOUND]) { -                        if (!dict) -                                dict = dict_new(); - -                        if (dict_set_bin (dict, GF_XATTR_MARKER_KEY, -                                          local->volmark, -                                          sizeof (struct volume_mark))) { -                                op_ret = -1; -                                op_errno = ENOMEM; -                        } -                } -                op_errno = evaluate_marker_results (local->gauge, local->count); -                if (op_errno) -                        op_ret = -1; -        } - - out: -        if (need_unwind && local && local->xl_specf_unwind) { -                frame->local = local->xl_local; -                local->xl_specf_unwind (frame, op_ret, -                                        op_errno, dict, xdata); -		GF_FREE (local); -                return 0; -        } else if (need_unwind){ -                STACK_UNWIND_STRICT (getxattr, frame, op_ret, op_errno, -                                     dict, xdata); -        }          return 0;  } - -int32_t -cluster_getmarkerattr (call_frame_t *frame,xlator_t *this, loc_t *loc, -                       const char *name, void *xl_local, -                       xlator_specf_unwind_t xl_specf_getxattr_unwind, -                       xlator_t **sub_volumes, int count, int type, -                       int *gauge, char *vol_uuid) -{ -        int                i     = 0; -        xl_marker_local_t  *local = NULL; - -        VALIDATE_OR_GOTO (frame, err); -        VALIDATE_OR_GOTO (this, err); -        VALIDATE_OR_GOTO (loc, err); -        VALIDATE_OR_GOTO (loc->path, err); -        VALIDATE_OR_GOTO (loc->inode, err); -        VALIDATE_OR_GOTO (name, err); -        VALIDATE_OR_GOTO (xl_specf_getxattr_unwind, err); - -        local = GF_CALLOC (sizeof (struct marker_str), 1, -                            gf_common_mt_libxl_marker_local); - -        if (!local) -                goto err; - -        local->xl_local = xl_local; -        local->call_count = count; -        local->xl_specf_unwind = xl_specf_getxattr_unwind; -        local->vol_uuid = vol_uuid; -        memcpy (local->gauge, gauge, sizeof (local->gauge)); - -        frame->local = local; - -        for (i=0; i < count; i++) { -                if (MARKER_UUID_TYPE == type) -                        STACK_WIND (frame, cluster_markeruuid_cbk, -                                    *(sub_volumes + i), -                                    (*(sub_volumes + i))->fops->getxattr, -                                    loc, name, NULL); -                else if (MARKER_XTIME_TYPE == type) -                        STACK_WIND (frame, cluster_markerxtime_cbk, -                                    *(sub_volumes + i), -                                    (*(sub_volumes + i))->fops->getxattr, -                                    loc, name, NULL); -                else { -                        gf_log (this->name, GF_LOG_WARNING, -                                 "Unrecognized type (%d) of marker attr " -                                 "received", type); -                        STACK_WIND (frame, default_getxattr_cbk, -                                    *(sub_volumes + i), -                                    (*(sub_volumes + i))->fops->getxattr, -                                    loc, name, NULL); -                        break; -                } -        } - -        return 0; -err: -        return -1; - -} -  int  gf_get_min_stime (xlator_t *this, dict_t *dst, char *key, data_t *value)  { @@ -529,3 +426,84 @@ error:          return ret;  } + +static int +_get_children_count (xlator_t *xl) +{ +        int i = 0; +        xlator_list_t *trav = NULL; +        for (i = 0, trav = xl->children; trav ; trav = trav->next, i++) { +                /*'i' will have the value */ +        } + +        return i; +} + +int +cluster_handle_marker_getxattr (call_frame_t *frame, loc_t *loc, +                                const char *name, char *vol_uuid, +                                xlator_specf_unwind_t unwind, +                                int (*populate_args) (call_frame_t *frame, +                                                      int type, int *gauge, +                                                      xlator_t **subvols)) +{ +        xlator_t                *this = frame->this; +        xlator_t                **subvols = NULL; +        int                     num_subvols = 0; +        int                     type = 0; +        int                i     = 0; +        int                     gauge[MCNT_MAX] = {0}; +        xl_marker_local_t  *local = NULL; + +        if (GF_CLIENT_PID_GSYNCD != frame->root->pid) +                return -EINVAL; + +        if (strcmp (GF_XATTR_MARKER_KEY, name) == 0) { +                type = MARKER_UUID_TYPE; +                memcpy (gauge, marker_uuid_default_gauge, sizeof (gauge)); +        } else if (match_uuid_local (name, vol_uuid) == 0) { +                type = MARKER_XTIME_TYPE; +                memcpy (gauge, marker_xtime_default_gauge, sizeof (gauge)); +        } else { +                return -EINVAL; +        } + +        num_subvols = _get_children_count (this); +        subvols = alloca (num_subvols * sizeof (*subvols)); +        num_subvols = populate_args (frame, type, gauge, subvols); + +        local = GF_CALLOC (sizeof (struct marker_str), 1, +                            gf_common_mt_libxl_marker_local); + +        if (!local) +                goto fail; + +        local->xl_local = frame->local; +        local->call_count = num_subvols; +        local->xl_specf_unwind = unwind; +        local->vol_uuid = vol_uuid; +        memcpy (local->gauge, gauge, sizeof (local->gauge)); + +        frame->local = local; + +        for (i = 0; i < num_subvols; i++) { +                if (MARKER_UUID_TYPE == type) +                        STACK_WIND (frame, cluster_markeruuid_cbk, +                                    subvols[i], +                                    subvols[i]->fops->getxattr, +                                    loc, name, NULL); +                else if (MARKER_XTIME_TYPE == type) +                        STACK_WIND (frame, cluster_markerxtime_cbk, +                                    subvols[i], +                                    subvols[i]->fops->getxattr, +                                    loc, name, NULL); +        } + +        return 0; +fail: +        if (unwind) +                unwind (frame, -1, ENOMEM, NULL, NULL); +        else +                default_getxattr_failure_cbk (frame, ENOMEM); +        return 0; +} diff --git a/xlators/lib/src/libxlator.h b/xlators/lib/src/libxlator.h index 404124ca7d3..20d5a32f248 100644 --- a/xlators/lib/src/libxlator.h +++ b/xlators/lib/src/libxlator.h @@ -139,13 +139,13 @@ int32_t  cluster_markeruuid_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          int op_ret, int op_errno, dict_t *dict, dict_t *xdata); -int32_t -cluster_getmarkerattr (call_frame_t *frame,xlator_t *this, loc_t *loc, -                       const char *name, void *xl_local, -                       xlator_specf_unwind_t xl_specf_getxattr_unwind, -                       xlator_t **sub_volumes, int count, int type, -                       int *gauge, char *vol_uuid); - +int +cluster_handle_marker_getxattr (call_frame_t *frame, loc_t *loc, +                                const char *name, char *vol_uuid, +                                xlator_specf_unwind_t unwind, +                                int (*populate_args) (call_frame_t *frame, +                                                      int type, int *gauge, +                                                      xlator_t **subvols));  int  match_uuid_local (const char *name, char *uuid);  | 
