Imported Upstream version 0.8.9
[platform/upstream/multipath-tools.git] / libmultipath / structs.c
index e225f8b..4b62da5 100644 (file)
@@ -8,7 +8,6 @@
 #include <libudev.h>
 
 #include "checkers.h"
-#include "memory.h"
 #include "vector.h"
 #include "util.h"
 #include "structs.h"
 #include "blacklist.h"
 #include "prio.h"
 #include "prioritizers/alua_spc3.h"
+#include "dm-generic.h"
+#include "devmapper.h"
 
 struct adapter_group *
 alloc_adaptergroup(void)
 {
        struct adapter_group *agp;
 
-       agp = (struct adapter_group *)MALLOC(sizeof(struct adapter_group));
+       agp = (struct adapter_group *)calloc(1, sizeof(struct adapter_group));
 
        if (!agp)
                return NULL;
 
        agp->host_groups = vector_alloc();
        if (!agp->host_groups) {
-               FREE(agp);
+               free(agp);
                agp = NULL;
        }
        return agp;
@@ -44,7 +45,7 @@ void free_adaptergroup(vector adapters)
 
        vector_foreach_slot(adapters, agp, i) {
                free_hostgroup(agp->host_groups);
-               FREE(agp);
+               free(agp);
        }
        vector_free(adapters);
 }
@@ -59,7 +60,7 @@ void free_hostgroup(vector hostgroups)
 
        vector_foreach_slot(hostgroups, hgp, i) {
                vector_free(hgp->paths);
-               FREE(hgp);
+               free(hgp);
        }
        vector_free(hostgroups);
 }
@@ -69,7 +70,7 @@ alloc_hostgroup(void)
 {
        struct host_group *hgp;
 
-       hgp = (struct host_group *)MALLOC(sizeof(struct host_group));
+       hgp = (struct host_group *)calloc(1, sizeof(struct host_group));
 
        if (!hgp)
                return NULL;
@@ -77,7 +78,7 @@ alloc_hostgroup(void)
        hgp->paths = vector_alloc();
 
        if (!hgp->paths) {
-               FREE(hgp);
+               free(hgp);
                hgp = NULL;
        }
        return hgp;
@@ -88,42 +89,70 @@ alloc_path (void)
 {
        struct path * pp;
 
-       pp = (struct path *)MALLOC(sizeof(struct path));
+       pp = (struct path *)calloc(1, sizeof(struct path));
 
        if (pp) {
+               pp->initialized = INIT_NEW;
                pp->sg_id.host_no = -1;
                pp->sg_id.channel = -1;
                pp->sg_id.scsi_id = -1;
-               pp->sg_id.lun = -1;
+               pp->sg_id.lun = SCSI_INVALID_LUN;
                pp->sg_id.proto_id = SCSI_PROTOCOL_UNSPEC;
                pp->fd = -1;
                pp->tpgs = TPGS_UNDEF;
                pp->priority = PRIO_UNDEF;
+               pp->checkint = CHECKINT_UNDEF;
+               checker_clear(&pp->checker);
+               dm_path_to_gen(pp)->ops = &dm_gen_path_ops;
+               pp->hwe = vector_alloc();
+               if (pp->hwe == NULL) {
+                       free(pp);
+                       return NULL;
+               }
        }
        return pp;
 }
 
 void
-free_path (struct path * pp)
+uninitialize_path(struct path *pp)
 {
        if (!pp)
                return;
 
+       pp->dmstate = PSTATE_UNDEF;
+       pp->uid_attribute = NULL;
+       pp->getuid = NULL;
+
        if (checker_selected(&pp->checker))
                checker_put(&pp->checker);
 
        if (prio_selected(&pp->prio))
                prio_put(&pp->prio);
 
-       if (pp->fd >= 0)
+       if (pp->fd >= 0) {
                close(pp->fd);
+               pp->fd = -1;
+       }
+}
+
+void
+free_path (struct path * pp)
+{
+       if (!pp)
+               return;
+
+       uninitialize_path(pp);
 
        if (pp->udev) {
                udev_device_unref(pp->udev);
                pp->udev = NULL;
        }
+       if (pp->vpd_data)
+               free(pp->vpd_data);
 
-       FREE(pp);
+       vector_free(pp->hwe);
+
+       free(pp);
 }
 
 void
@@ -147,7 +176,7 @@ alloc_pathgroup (void)
 {
        struct pathgroup * pgp;
 
-       pgp = (struct pathgroup *)MALLOC(sizeof(struct pathgroup));
+       pgp = (struct pathgroup *)calloc(1, sizeof(struct pathgroup));
 
        if (!pgp)
                return NULL;
@@ -155,10 +184,11 @@ alloc_pathgroup (void)
        pgp->paths = vector_alloc();
 
        if (!pgp->paths) {
-               FREE(pgp);
-               pgp = NULL;
+               free(pgp);
+               return NULL;
        }
 
+       dm_pathgroup_to_gen(pgp)->ops = &dm_gen_pathgroup_ops;
        return pgp;
 }
 
@@ -169,7 +199,7 @@ free_pathgroup (struct pathgroup * pgp, enum free_path_mode free_paths)
                return;
 
        free_pathvec(pgp->paths, free_paths);
-       FREE(pgp);
+       free(pgp);
 }
 
 void
@@ -192,34 +222,46 @@ alloc_multipath (void)
 {
        struct multipath * mpp;
 
-       mpp = (struct multipath *)MALLOC(sizeof(struct multipath));
+       mpp = (struct multipath *)calloc(1, sizeof(struct multipath));
 
        if (mpp) {
                mpp->bestpg = 1;
                mpp->mpcontext = NULL;
                mpp->no_path_retry = NO_PATH_RETRY_UNDEF;
                mpp->fast_io_fail = MP_FAST_IO_FAIL_UNSET;
+               dm_multipath_to_gen(mpp)->ops = &dm_gen_multipath_ops;
        }
        return mpp;
 }
 
+void *set_mpp_hwe(struct multipath *mpp, const struct path *pp)
+{
+       if (!mpp || !pp || !pp->hwe)
+               return NULL;
+       if (mpp->hwe)
+               return mpp->hwe;
+       mpp->hwe = vector_convert(NULL, pp->hwe,
+                                 struct hwentry, identity);
+       return mpp->hwe;
+}
+
 void free_multipath_attributes(struct multipath *mpp)
 {
        if (!mpp)
                return;
 
        if (mpp->selector) {
-               FREE(mpp->selector);
+               free(mpp->selector);
                mpp->selector = NULL;
        }
 
        if (mpp->features) {
-               FREE(mpp->features);
+               free(mpp->features);
                mpp->features = NULL;
        }
 
        if (mpp->hwhandler) {
-               FREE(mpp->hwhandler);
+               free(mpp->hwhandler);
                mpp->hwhandler = NULL;
        }
 }
@@ -233,19 +275,33 @@ free_multipath (struct multipath * mpp, enum free_path_mode free_paths)
        free_multipath_attributes(mpp);
 
        if (mpp->alias) {
-               FREE(mpp->alias);
+               free(mpp->alias);
                mpp->alias = NULL;
        }
 
-       if (mpp->dmi) {
-               FREE(mpp->dmi);
-               mpp->dmi = NULL;
+       if (!free_paths && mpp->pg) {
+               struct pathgroup *pgp;
+               struct path *pp;
+               int i, j;
+
+               /*
+                * Make sure paths carry no reference to this mpp any more
+                */
+               vector_foreach_slot(mpp->pg, pgp, i) {
+                       vector_foreach_slot(pgp->paths, pp, j)
+                               if (pp->mpp == mpp)
+                                       pp->mpp = NULL;
+               }
        }
 
        free_pathvec(mpp->paths, free_paths);
        free_pgvec(mpp->pg, free_paths);
-       FREE_PTR(mpp->mpcontext);
-       FREE(mpp);
+       if (mpp->hwe) {
+               vector_free(mpp->hwe);
+               mpp->hwe = NULL;
+       }
+       free(mpp->mpcontext);
+       free(mpp);
 }
 
 void
@@ -291,7 +347,7 @@ store_path (vector pathvec, struct path * pp)
                err++;
        }
        if (!strlen(pp->dev)) {
-               condlog(2, "%s: Empty device name", pp->dev_t);
+               condlog(3, "%s: Empty device name", pp->dev_t);
                err++;
        }
 
@@ -306,14 +362,14 @@ store_path (vector pathvec, struct path * pp)
        return 0;
 }
 
-int
-store_pathgroup (vector pgvec, struct pathgroup * pgp)
+int add_pathgroup(struct multipath *mpp, struct pathgroup *pgp)
 {
-       if (!vector_alloc_slot(pgvec))
+       if (!vector_alloc_slot(mpp->pg))
                return 1;
 
-       vector_set_slot(pgvec, pgp);
+       vector_set_slot(mpp->pg, pgp);
 
+       pgp->mpp = mpp;
        return 0;
 }
 
@@ -338,7 +394,7 @@ store_adaptergroup(vector adapters, struct adapter_group * agp)
 }
 
 struct multipath *
-find_mp_by_minor (vector mpvec, int minor)
+find_mp_by_minor (const struct _vector *mpvec, unsigned int minor)
 {
        int i;
        struct multipath * mpp;
@@ -347,17 +403,17 @@ find_mp_by_minor (vector mpvec, int minor)
                return NULL;
 
        vector_foreach_slot (mpvec, mpp, i) {
-               if (!mpp->dmi)
+               if (!has_dm_info(mpp))
                        continue;
 
-               if (mpp->dmi->minor == minor)
+               if (mpp->dmi.minor == minor)
                        return mpp;
        }
        return NULL;
 }
 
 struct multipath *
-find_mp_by_wwid (vector mpvec, char * wwid)
+find_mp_by_wwid (const struct _vector *mpvec, const char * wwid)
 {
        int i;
        struct multipath * mpp;
@@ -373,10 +429,10 @@ find_mp_by_wwid (vector mpvec, char * wwid)
 }
 
 struct multipath *
-find_mp_by_alias (vector mpvec, char * alias)
+find_mp_by_alias (const struct _vector *mpvec, const char * alias)
 {
        int i;
-       int len;
+       size_t len;
        struct multipath * mpp;
 
        if (!mpvec)
@@ -396,7 +452,7 @@ find_mp_by_alias (vector mpvec, char * alias)
 }
 
 struct multipath *
-find_mp_by_str (vector mpvec, char * str)
+find_mp_by_str (const struct _vector *mpvec, const char * str)
 {
        int minor;
 
@@ -407,12 +463,12 @@ find_mp_by_str (vector mpvec, char * str)
 }
 
 struct path *
-find_path_by_dev (vector pathvec, char * dev)
+find_path_by_dev (const struct _vector *pathvec, const char *dev)
 {
        int i;
        struct path * pp;
 
-       if (!pathvec)
+       if (!pathvec || !dev)
                return NULL;
 
        vector_foreach_slot (pathvec, pp, i)
@@ -424,7 +480,7 @@ find_path_by_dev (vector pathvec, char * dev)
 }
 
 struct path *
-find_path_by_devt (vector pathvec, char * dev_t)
+find_path_by_devt (const struct _vector *pathvec, const char * dev_t)
 {
        int i;
        struct path * pp;
@@ -440,33 +496,62 @@ find_path_by_devt (vector pathvec, char * dev_t)
        return NULL;
 }
 
-int pathcountgr(struct pathgroup *pgp, int state)
+static int do_pathcount(const struct multipath *mpp, const int *states,
+                       unsigned int nr_states)
 {
+       struct pathgroup *pgp;
        struct path *pp;
        int count = 0;
-       int i;
-
-       vector_foreach_slot (pgp->paths, pp, i)
-               if ((pp->state == state) || (state == PATH_WILD))
-                       count++;
-
+       unsigned int i, j, k;
+
+       if (!mpp->pg || !nr_states)
+               return count;
+
+       vector_foreach_slot (mpp->pg, pgp, i) {
+               vector_foreach_slot (pgp->paths, pp, j) {
+                       for (k = 0; k < nr_states; k++) {
+                               if (pp->state == states[k]) {
+                                       count++;
+                                       break;
+                               }
+                       }
+               }
+       }
        return count;
 }
 
-int pathcount(struct multipath *mpp, int state)
+int pathcount(const struct multipath *mpp, int state)
+{
+       return do_pathcount(mpp, &state, 1);
+}
+
+int count_active_paths(const struct multipath *mpp)
 {
        struct pathgroup *pgp;
+       struct path *pp;
        int count = 0;
-       int i;
+       int i, j;
+
+       if (!mpp->pg)
+               return 0;
 
-       if (mpp->pg) {
-               vector_foreach_slot (mpp->pg, pgp, i)
-                       count += pathcountgr(pgp, state);
+       vector_foreach_slot (mpp->pg, pgp, i) {
+               vector_foreach_slot (pgp->paths, pp, j) {
+                       if (pp->state == PATH_UP || pp->state == PATH_GHOST)
+                               count++;
+               }
        }
        return count;
 }
 
-int pathcmp(struct pathgroup *pgp, struct pathgroup *cpgp)
+int count_active_pending_paths(const struct multipath *mpp)
+{
+       int states[] = {PATH_UP, PATH_GHOST, PATH_PENDING};
+
+       return do_pathcount(mpp, states, 3);
+}
+
+int pathcmp(const struct pathgroup *pgp, const struct pathgroup *cpgp)
 {
        int i, j;
        struct path *pp, *cpp;
@@ -486,7 +571,7 @@ int pathcmp(struct pathgroup *pgp, struct pathgroup *cpgp)
 }
 
 struct path *
-first_path (struct multipath * mpp)
+first_path (const struct multipath * mpp)
 {
        struct pathgroup * pgp;
        if (!mpp->pg)
@@ -496,27 +581,10 @@ first_path (struct multipath * mpp)
        return pgp?VECTOR_SLOT(pgp->paths, 0):NULL;
 }
 
-void setup_feature(struct multipath *mpp, char *feature)
+int add_feature(char **f, const char *n)
 {
-       if (!strncmp(feature, "queue_if_no_path", 16)) {
-               if (mpp->no_path_retry <= NO_PATH_RETRY_UNDEF)
-                       mpp->no_path_retry = NO_PATH_RETRY_QUEUE;
-               else
-                       condlog(1, "%s: ignoring feature queue_if_no_path because no_path_retry = %d",
-                               mpp->alias, mpp->no_path_retry);
-       } else if (!strcmp(feature, "retain_attached_hw_handler")) {
-               if (mpp->retain_hwhandler != RETAIN_HWHANDLER_OFF)
-                       mpp->retain_hwhandler = RETAIN_HWHANDLER_ON;
-               else
-                       condlog(1, "%s: ignoring feature 'retain_attached_hw_handler'",
-                               mpp->alias);
-       }
-}
-
-int add_feature(char **f, char *n)
-{
-       int c = 0, d, l = 0;
-       char *e, *p, *t;
+       int c = 0, d, l;
+       char *e, *t;
 
        if (!f)
                return 1;
@@ -525,6 +593,11 @@ int add_feature(char **f, char *n)
        if (!n || *n == '0')
                return 0;
 
+       if (strchr(n, ' ') != NULL) {
+               condlog(0, "internal error: feature \"%s\" contains spaces", n);
+               return 1;
+       }
+
        /* default feature is null */
        if(!*f)
        {
@@ -537,74 +610,46 @@ int add_feature(char **f, char *n)
        }
 
        /* Check if feature is already present */
-       if (*f) {
-               if (strstr(*f, n))
-                       return 0;
-
-               /* Get feature count */
-               c = strtoul(*f, &e, 10);
-               if (*f == e)
-                       /* parse error */
-                       return 1;
+       if (strstr(*f, n))
+               return 0;
 
-               /* Check if we need to increase feature count space */
-               l = strlen(*f) + strlen(n) + 1;
+       /* Get feature count */
+       c = strtoul(*f, &e, 10);
+       if (*f == e || (*e != ' ' && *e != '\0')) {
+               condlog(0, "parse error in feature string \"%s\"", *f);
+               return 1;
        }
-       /* Count new features */
-       if ((c % 10) == 9)
-               l++;
+
+       /* Add 1 digit and 1 space */
+       l = strlen(e) + strlen(n) + 2;
+
        c++;
-       p = n;
-       while (*p != '\0') {
-               if (*p == ' ' && p[1] != '\0' && p[1] != ' ') {
-                       if ((c % 10) == 9)
-                               l++;
-                       c++;
-               }
-               p++;
-       }
+       /* Check if we need more digits for feature count */
+       for (d = c; d >= 10; d /= 10)
+               l++;
 
-       t = MALLOC(l + 1);
+       t = calloc(1, l + 1);
        if (!t)
                return 1;
 
-       memset(t, 0, l + 1);
+       /* e: old feature string with leading space, or "" */
+       if (*e == ' ')
+               while (*(e + 1) == ' ')
+                       e++;
 
-       /* Update feature count */
-       d = c;
-       l = 1;
-       while (d > 9) {
-               d /= 10;
-               l++;
-       }
-       p = t;
-       snprintf(p, l + 2, "%0d ", c);
-
-       /* Copy the feature string */
-       p = NULL;
-       if (*f)
-               p = strchr(*f, ' ');
+       snprintf(t, l + 1, "%0d%s %s", c, e, n);
 
-       if (p) {
-               while (*p == ' ')
-                       p++;
-               strcat(t, p);
-               strcat(t, " ");
-       } else {
-               p = t + strlen(t);
-       }
-       strcat(t, n);
-
-       FREE(*f);
+       free(*f);
        *f = t;
 
        return 0;
 }
 
-int remove_feature(char **f, char *o)
+int remove_feature(char **f, const char *o)
 {
        int c = 0, d, l;
        char *e, *p, *n;
+       const char *q;
 
        if (!f || !*f)
                return 1;
@@ -630,23 +675,23 @@ int remove_feature(char **f, char *o)
        /* Just spaces, return */
        if (*o == '\0')
                return 0;
-       e = o + strlen(o);
-       while (*e == ' ')
-               e--;
-       d = (int)(e - o);
+       q = o + strlen(o);
+       while (*q == ' ')
+               q--;
+       d = (int)(q - o);
 
        /* Update feature count */
        c--;
-       p = o;
-       while (p[0] != '\0') {
-               if (p[0] == ' ' && p[1] != ' ' && p[1] != '\0')
+       q = o;
+       while (q[0] != '\0') {
+               if (q[0] == ' ' && q[1] != ' ' && q[1] != '\0')
                        c--;
-               p++;
+               q++;
        }
 
        /* Quick exit if all features have been removed */
        if (c == 0) {
-               n = MALLOC(2);
+               n = malloc(2);
                if (!n)
                        return 1;
                strcpy(n, "0");
@@ -661,7 +706,7 @@ int remove_feature(char **f, char *o)
 
        /* Update feature count space */
        l = strlen(*f) - d;
-       n =  MALLOC(l + 1);
+       n =  malloc(l + 1);
        if (!n)
                return 1;
 
@@ -674,7 +719,7 @@ int remove_feature(char **f, char *o)
        p = strchr(*f, ' ');
        if (!p) {
                /* Internal error, feature string inconsistent */
-               FREE(n);
+               free(n);
                return 1;
        }
        while (*p == ' ')
@@ -703,8 +748,18 @@ int remove_feature(char **f, char *o)
        }
 
 out:
-       FREE(*f);
+       free(*f);
        *f = n;
 
        return 0;
 }
+
+unsigned int bus_protocol_id(const struct path *pp) {
+       if (!pp || pp->bus < 0 || pp->bus > SYSFS_BUS_SCSI)
+               return SYSFS_BUS_UNDEF;
+       if (pp->bus != SYSFS_BUS_SCSI)
+               return pp->bus;
+       if ((int)pp->sg_id.proto_id < 0 || pp->sg_id.proto_id > SCSI_PROTOCOL_UNSPEC)
+               return SYSFS_BUS_UNDEF;
+       return SYSFS_BUS_SCSI + pp->sg_id.proto_id;
+}