summaryrefslogtreecommitdiffstats
path: root/xlators/protocol/server/src/authenticate.c
diff options
context:
space:
mode:
authorManikandan Selvaganesh <mselvaga@redhat.com>2015-03-11 20:11:09 +0530
committerRaghavendra G <rgowdapp@redhat.com>2015-04-29 22:33:41 -0700
commitdc089a1a51988c2b407040e1684d7b0adbd79556 (patch)
tree530b8b1e1aa6e695ff6e495cd0907a87cbe8628c /xlators/protocol/server/src/authenticate.c
parent00700a0d665fa18e28b6898b5fd09c34fc0150bc (diff)
protocol/server : port log messages to new framework.
Change-Id: I7901f55d06716161cc31d2b79a600a16b5ec2ef8 BUG: 1194640 Signed-off-by: Manikandan Selvaganesh <mselvaga@redhat.com> Reviewed-on: http://review.gluster.org/9874 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Raghavendra G <rgowdapp@redhat.com> Tested-by: Raghavendra G <rgowdapp@redhat.com>
Diffstat (limited to 'xlators/protocol/server/src/authenticate.c')
-rw-r--r--xlators/protocol/server/src/authenticate.c29
1 files changed, 17 insertions, 12 deletions
diff --git a/xlators/protocol/server/src/authenticate.c b/xlators/protocol/server/src/authenticate.c
index d8d138a84bc..8b45c41a59b 100644
--- a/xlators/protocol/server/src/authenticate.c
+++ b/xlators/protocol/server/src/authenticate.c
@@ -23,6 +23,7 @@
#include <dlfcn.h>
#include <errno.h>
#include "authenticate.h"
+#include "server-messages.h"
static int
init (dict_t *this, char *key, data_t *value, void *data)
@@ -38,9 +39,9 @@ init (dict_t *this, char *key, data_t *value, void *data)
error = data;
if (!strncasecmp (key, "ip", strlen ("ip"))) {
- gf_log ("authenticate", GF_LOG_ERROR,
- "AUTHENTICATION MODULE \"IP\" HAS BEEN REPLACED "
- "BY \"ADDR\"");
+ gf_msg ("authenticate", GF_LOG_ERROR, 0,
+ PS_MSG_AUTHENTICATE_ERROR, "AUTHENTICATION MODULE "
+ "\"IP\" HAS BEEN REPLACED BY \"ADDR\"");
dict_set (this, key, data_from_dynptr (NULL, 0));
/* TODO: 1.3.x backword compatibility */
// *error = -1;
@@ -57,7 +58,8 @@ init (dict_t *this, char *key, data_t *value, void *data)
handle = dlopen (auth_file, RTLD_LAZY);
if (!handle) {
- gf_log ("authenticate", GF_LOG_ERROR, "dlopen(%s): %s\n",
+ gf_msg ("authenticate", GF_LOG_ERROR, 0,
+ PS_MSG_AUTHENTICATE_ERROR, "dlopen(%s): %s\n",
auth_file, dlerror ());
dict_set (this, key, data_from_dynptr (NULL, 0));
GF_FREE (auth_file);
@@ -68,8 +70,9 @@ init (dict_t *this, char *key, data_t *value, void *data)
authenticate = dlsym (handle, "gf_auth");
if (!authenticate) {
- gf_log ("authenticate", GF_LOG_ERROR,
- "dlsym(gf_auth) on %s\n", dlerror ());
+ gf_msg ("authenticate", GF_LOG_ERROR, 0,
+ PS_MSG_AUTHENTICATE_ERROR, "dlsym(gf_auth) on %s\n",
+ dlerror ());
dict_set (this, key, data_from_dynptr (NULL, 0));
dlclose (handle);
*error = -1;
@@ -95,8 +98,8 @@ init (dict_t *this, char *key, data_t *value, void *data)
}
auth_handle->vol_opt->given_opt = dlsym (handle, "options");
if (auth_handle->vol_opt->given_opt == NULL) {
- gf_log ("authenticate", GF_LOG_DEBUG,
- "volume option validation not specified");
+ gf_msg_debug ("authenticate", 0, "volume option validation "
+ "not specified");
}
auth_handle->authenticate = authenticate;
@@ -135,8 +138,9 @@ _gf_auth_option_validate (dict_t *d, char *k, data_t *v, void *tmp)
ret = xlator_options_validate_list (xl, xl->options,
handle->vol_opt, NULL);
if (ret) {
- gf_log ("authenticate", GF_LOG_ERROR,
- "volume option validation failed");
+ gf_msg ("authenticate", GF_LOG_ERROR, 0,
+ PS_MSG_VOL_VALIDATE_FAILED, "volume option validation "
+ "failed");
return -1;
}
return 0;
@@ -155,7 +159,8 @@ gf_auth_init (xlator_t *xl, dict_t *auth_modules)
out:
if (ret) {
- gf_log (xl->name, GF_LOG_ERROR, "authentication init failed");
+ gf_msg (xl->name, GF_LOG_ERROR, 0, PS_MSG_AUTH_INIT_FAILED,
+ "authentication init failed");
dict_foreach (auth_modules, fini, &ret);
ret = -1;
}
@@ -234,7 +239,7 @@ gf_authenticate (dict_t *input_params,
name = peerinfo_data->data;
}
- gf_log ("auth", GF_LOG_ERROR,
+ gf_msg ("auth", GF_LOG_ERROR, 0, PS_MSG_REMOTE_CLIENT_REFUSED,
"no authentication module is interested in "
"accepting remote-client %s", name);
result = AUTH_REJECT;