summaryrefslogtreecommitdiffstats
path: root/cli/gluster-block.c
diff options
context:
space:
mode:
Diffstat (limited to 'cli/gluster-block.c')
-rw-r--r--cli/gluster-block.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/cli/gluster-block.c b/cli/gluster-block.c
index d2ad4c2..8b6836b 100644
--- a/cli/gluster-block.c
+++ b/cli/gluster-block.c
@@ -37,8 +37,8 @@ glusterBlockCliRPC_1(void *cobj, clioperations opt, char **out)
{
CLIENT *clnt = NULL;
int ret = -1;
- int sockfd;
- struct sockaddr_un saun;
+ int sockfd = -1;
+ struct sockaddr_un saun = {0,};
blockCreateCli *create_obj;
blockDeleteCli *delete_obj;
blockInfoCli *info_obj;
@@ -46,6 +46,13 @@ glusterBlockCliRPC_1(void *cobj, clioperations opt, char **out)
blockResponse *reply = NULL;
+ if (strlen(GB_UNIX_ADDRESS) > SUN_PATH_MAX) {
+ LOG("cli", GB_LOG_ERROR,
+ "%s: path length is more than SUN_PATH_MAX: (%zu > %zu chars)",
+ GB_UNIX_ADDRESS, strlen(GB_UNIX_ADDRESS), SUN_PATH_MAX);
+ goto out;
+ }
+
if ((sockfd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
LOG("cli", GB_LOG_ERROR, "%s: socket creation failed (%s)", GB_UNIX_ADDRESS,
strerror (errno));