summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRajesh Amaravathi <rajesh.amaravathi@gmail.com>2011-09-12 17:29:47 +0530
committerVijay Bellur <vijay@gluster.com>2011-09-19 05:39:13 -0700
commitb23d329608163ee2aa1aa89b907a5a6e50291464 (patch)
tree412bb8a00f5b7c4a7dda8f740855dfeefe6b780d
parent8ad4d3f53000724389db6003ca6d6d777b880017 (diff)
glusterd: provide a option to start processes with valgrind
By enabling the brick-with-valgrind option in glusterd, one can automatically start all bricks with valgrind monitoring them. Change-Id: Ib0a97a83c4461c0878454e96bc84462f6cad6bc8 BUG: 3461 Reviewed-on: http://review.gluster.com/311 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Vijay Bellur <vijay@gluster.com>
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-utils.c28
-rw-r--r--xlators/mgmt/glusterd/src/glusterd.c25
-rw-r--r--xlators/mgmt/glusterd/src/glusterd.h3
3 files changed, 50 insertions, 6 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c
index 6393f1fca20..5963bb712bc 100644
--- a/xlators/mgmt/glusterd/src/glusterd-utils.c
+++ b/xlators/mgmt/glusterd/src/glusterd-utils.c
@@ -1057,7 +1057,9 @@ glusterd_volume_start_glusterfs (glusterd_volinfo_t *volinfo,
FILE *file = NULL;
gf_boolean_t is_locked = _gf_false;
char socketpath[PATH_MAX] = {0};
-
+#ifdef DEBUG
+ char valgrind_logfile[PATH_MAX] = {0};
+#endif
GF_ASSERT (volinfo);
GF_ASSERT (brickinfo);
@@ -1138,12 +1140,32 @@ glusterd_volume_start_glusterfs (glusterd_volinfo_t *volinfo,
port = pmap_registry_alloc (THIS);
runinit (&runner);
- runner_add_args (&runner, GFS_PREFIX"/sbin/glusterfsd",
+
+#ifdef DEBUG
+ if (priv->valgrind) {
+ if (volinfo->logdir) {
+ snprintf (valgrind_logfile, PATH_MAX,
+ "%s/valgrind-%s-%s.log", volinfo->logdir,
+ volinfo->volname, exp_path);
+ } else {
+ snprintf (valgrind_logfile, PATH_MAX,
+ "%s/bricks/valgrnd-%s-%s.log",
+ DEFAULT_LOG_FILE_DIRECTORY,
+ volinfo->volname, exp_path);
+ }
+ /* Run bricks with valgrind */
+ runner_add_args (&runner, "valgrind", "--leak-check=full",
+ "--trace-children=yes", NULL);
+ runner_argprintf (&runner, "--log-file=%s", valgrind_logfile);
+ }
+#endif
+ runner_add_args (&runner, GFS_PREFIX"/sbin/glusterfsd",
"-s", "localhost", "--volfile-id", volfile,
"-p", pidfile, "-S", socketpath,
"--brick-name", brickinfo->path,
- "-l", brickinfo->logfile, "--brick-port", NULL);
+ "-l", brickinfo->logfile, NULL);
+ runner_add_arg (&runner, "--brick-port");
if (volinfo->transport_type != GF_TRANSPORT_BOTH_TCP_RDMA) {
runner_argprintf (&runner, "%d", port);
} else {
diff --git a/xlators/mgmt/glusterd/src/glusterd.c b/xlators/mgmt/glusterd/src/glusterd.c
index b9e09254ba8..40dc2616d7e 100644
--- a/xlators/mgmt/glusterd/src/glusterd.c
+++ b/xlators/mgmt/glusterd/src/glusterd.c
@@ -762,6 +762,9 @@ init (xlator_t *this)
int first_time = 0;
char *mountbroker_root = NULL;
+#ifdef DEBUG
+ char *valgrind_str = NULL;
+#endif
dir_data = dict_get (this->options, "working-directory");
if (!dir_data) {
@@ -943,8 +946,23 @@ init (xlator_t *this)
if (ret)
goto out;
+ /* Set option to run bricks on valgrind if enabled in glusterd.vol */
+#ifdef DEBUG
+ conf->valgrind = _gf_false;
+ ret = dict_get_str (this->options, "brick-with-valgrind", &valgrind_str);
+ if (ret < 0) {
+ gf_log (THIS->name, GF_LOG_ERROR,
+ "cannot get brick-with-valgrind value");
+ }
+ if (valgrind_str) {
+ if (gf_string2boolean (valgrind_str, &(conf->valgrind))) {
+ gf_log (THIS->name, GF_LOG_WARNING,
+ "brick-with-valgrind value not a boolean string");
+ }
+ }
+#endif
this->private = conf;
- //this->ctx->top = this;
+ /* this->ctx->top = this;*/
ret = glusterd_uuid_init (first_time);
if (ret < 0)
@@ -1090,11 +1108,9 @@ struct volume_options options[] = {
{ .key = {"downgrade"},
.type = GF_OPTION_TYPE_BOOL,
},
-
{ .key = {"bind-insecure"},
.type = GF_OPTION_TYPE_BOOL,
},
-
{ .key = {"mountbroker-root"},
.type = GF_OPTION_TYPE_PATH,
},
@@ -1110,5 +1126,8 @@ struct volume_options options[] = {
{ .key = {GEOREP"-log-group"},
.type = GF_OPTION_TYPE_ANY,
},
+ { .key = {"brick-with-valgrind"},
+ .type = GF_OPTION_TYPE_BOOL,
+ },
{ .key = {NULL} },
};
diff --git a/xlators/mgmt/glusterd/src/glusterd.h b/xlators/mgmt/glusterd/src/glusterd.h
index 45890a5d8b7..ab521af0f4b 100644
--- a/xlators/mgmt/glusterd/src/glusterd.h
+++ b/xlators/mgmt/glusterd/src/glusterd.h
@@ -112,6 +112,9 @@ typedef struct {
glusterd_sm_tr_log_t op_sm_log;
struct rpc_clnt_program *gfs_mgmt;
struct list_head mount_specs;
+#ifdef DEBUG
+ gf_boolean_t valgrind;
+#endif
} glusterd_conf_t;
typedef enum gf_brick_status {