mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-17 20:56:24 +00:00
- Cleanups git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1645 d57e44dd-8a1f-0410-8b47-8ef2f437770f
875 lines
20 KiB
C
875 lines
20 KiB
C
/*
|
|
* Event notification code.
|
|
*
|
|
* Copyright (C) 2005 FUJITA Tomonori <tomof@acm.org>
|
|
* Copyright (C) 2007 - 2010 Vladislav Bolkhovitin
|
|
* Copyright (C) 2007 - 2010 ID7 Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* Some functions are based on open-iscsi code
|
|
* written by Dmitry Yusupov, Alex Aizman.
|
|
*/
|
|
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <sys/ioctl.h>
|
|
#include <ctype.h>
|
|
|
|
#include <asm/types.h>
|
|
#include <sys/socket.h>
|
|
#include <linux/netlink.h>
|
|
|
|
#include <scst_const.h>
|
|
|
|
#include "iscsid.h"
|
|
|
|
#define ISCSI_ISNS_SYSFS_ACCESS_CONTROL_ENABLED "AccessControl"
|
|
|
|
static struct sockaddr_nl src_addr, dest_addr;
|
|
|
|
static int nl_write(int fd, void *data, int len)
|
|
{
|
|
struct iovec iov[2];
|
|
struct msghdr msg;
|
|
struct nlmsghdr nlh = {0};
|
|
|
|
iov[0].iov_base = &nlh;
|
|
iov[0].iov_len = sizeof(nlh);
|
|
iov[1].iov_base = data;
|
|
iov[1].iov_len = NLMSG_SPACE(len) - sizeof(nlh);
|
|
|
|
nlh.nlmsg_len = NLMSG_SPACE(len);
|
|
nlh.nlmsg_pid = getpid();
|
|
nlh.nlmsg_flags = 0;
|
|
nlh.nlmsg_type = 0;
|
|
|
|
memset(&msg, 0, sizeof(msg));
|
|
msg.msg_name= (void *)&dest_addr;
|
|
msg.msg_namelen = sizeof(dest_addr);
|
|
msg.msg_iov = iov;
|
|
msg.msg_iovlen = 2;
|
|
|
|
return sendmsg(fd, &msg, 0);
|
|
}
|
|
|
|
static int nl_read(int fd, void *data, int len)
|
|
{
|
|
struct iovec iov[2];
|
|
struct msghdr msg;
|
|
struct nlmsghdr nlh;
|
|
int res;
|
|
|
|
iov[0].iov_base = &nlh;
|
|
iov[0].iov_len = sizeof(nlh);
|
|
iov[1].iov_base = data;
|
|
iov[1].iov_len = len;
|
|
|
|
memset(&msg, 0, sizeof(msg));
|
|
msg.msg_name= (void *)&src_addr;
|
|
msg.msg_namelen = sizeof(src_addr);
|
|
msg.msg_iov = iov;
|
|
msg.msg_iovlen = 2;
|
|
|
|
res = recvmsg(fd, &msg, iscsi_enabled ? MSG_DONTWAIT : 0);
|
|
if (res > 0) {
|
|
res -= sizeof(nlh);
|
|
if (res < 0)
|
|
res = -EPIPE;
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
#ifndef CONFIG_SCST_PROC
|
|
|
|
static int send_mgmt_cmd_res(u32 tid, u32 cookie, u32 req_cmd, int result,
|
|
const char *res_str)
|
|
{
|
|
struct iscsi_kern_mgmt_cmd_res_info cinfo;
|
|
int res;
|
|
|
|
memset(&cinfo, 0, sizeof(cinfo));
|
|
cinfo.tid = tid;
|
|
cinfo.cookie = cookie;
|
|
cinfo.req_cmd = req_cmd;
|
|
cinfo.result = result;
|
|
|
|
if (res_str != NULL)
|
|
strlcpy(cinfo.value, res_str, sizeof(cinfo.value));
|
|
|
|
log_debug(1, "Sending result %d (cookie %d)", result, cookie);
|
|
|
|
res = ioctl(ctrl_fd, MGMT_CMD_CALLBACK, &cinfo);
|
|
if (res != 0) {
|
|
res = -errno;
|
|
log_error("Can't send mgmt reply (cookie %d, result %d, "
|
|
"res %d): %s\n", cookie, result, res, strerror(errno));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int handle_e_add_target(int fd, const struct iscsi_kern_event *event)
|
|
{
|
|
int res, rc;
|
|
char *buf;
|
|
int size, offs;
|
|
|
|
if (event->param1_size == 0) {
|
|
log_error("Incorrect E_ADD_TARGET: %s", "Target name expected");
|
|
res = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
/* Params are not 0-terminated */
|
|
|
|
size = strlen("Target ") + event->param1_size + 2 + event->param2_size + 1;
|
|
|
|
buf = malloc(size);
|
|
if (buf == NULL) {
|
|
log_error("Unable to allocate tmp buffer (size %d)", size);
|
|
res = -ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
offs = sprintf(buf, "Target ");
|
|
|
|
while (1) {
|
|
if ((rc = nl_read(fd, &buf[offs], event->param1_size)) < 0) {
|
|
if ((errno == EINTR) || (errno == EAGAIN))
|
|
continue;
|
|
log_error("read netlink fd (%d) failed: %s", fd,
|
|
strerror(errno));
|
|
send_mgmt_cmd_res(0, event->cookie, E_ADD_TARGET, -errno, NULL);
|
|
exit(1);
|
|
}
|
|
break;
|
|
}
|
|
|
|
offs += rc;
|
|
offs += sprintf(&buf[offs], "; ");
|
|
|
|
if (event->param2_size > 0) {
|
|
while (1) {
|
|
if ((rc = nl_read(fd, &buf[offs], event->param2_size)) < 0) {
|
|
if ((errno == EINTR) || (errno == EAGAIN))
|
|
continue;
|
|
log_error("read netlink fd (%d) failed: %s", fd,
|
|
strerror(errno));
|
|
send_mgmt_cmd_res(0, event->cookie, E_ADD_TARGET, -errno, NULL);
|
|
exit(1);
|
|
}
|
|
break;
|
|
}
|
|
offs += rc;
|
|
}
|
|
|
|
buf[offs] = '\0';
|
|
|
|
log_debug(1, "Going to parse %s", buf);
|
|
|
|
res = config_parse_main(buf, event->cookie);
|
|
if (res != 0)
|
|
goto out_free;
|
|
|
|
out_free:
|
|
free(buf);
|
|
|
|
out:
|
|
return res;
|
|
}
|
|
|
|
static int handle_e_del_target(int fd, const struct iscsi_kern_event *event)
|
|
{
|
|
int res;
|
|
|
|
log_debug(2, "Going to delete target %d", event->tid);
|
|
|
|
res = target_del(event->tid, event->cookie);
|
|
return res;
|
|
}
|
|
|
|
static int handle_add_user(struct target *target, int dir, char *sysfs_name,
|
|
char *p, u32 cookie)
|
|
{
|
|
int res;
|
|
char *name, *pass;
|
|
|
|
name = config_sep_string(&p);
|
|
pass = config_sep_string(&p);
|
|
|
|
res = __config_account_add(target, dir, name, pass, sysfs_name, 1, cookie);
|
|
|
|
return res;
|
|
}
|
|
|
|
static int handle_add_param(struct target *target, char *p, u32 cookie)
|
|
{
|
|
int res, dir;
|
|
char *pp;
|
|
|
|
pp = config_sep_string(&p);
|
|
dir = params_index_by_name_numwild(pp, user_keys);
|
|
if (dir >= 0)
|
|
res = handle_add_user(target, dir, pp, p, cookie);
|
|
else {
|
|
log_error("Syntax error at %s", pp);
|
|
res = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
out:
|
|
return res;
|
|
}
|
|
|
|
static int handle_del_user(struct target *target, int dir, char *p, u32 cookie)
|
|
{
|
|
int res;
|
|
char *name;
|
|
|
|
name = config_sep_string(&p);
|
|
|
|
res = config_account_del((target != NULL) ? target->tid : 0, dir,
|
|
name, cookie);
|
|
|
|
return res;
|
|
}
|
|
|
|
static int handle_del_param(struct target *target, char *p, u32 cookie)
|
|
{
|
|
int res, dir;
|
|
char *pp;
|
|
|
|
pp = config_sep_string(&p);
|
|
dir = params_index_by_name_numwild(pp, user_keys);
|
|
if (dir >= 0)
|
|
res = handle_del_user(target, dir, p, cookie);
|
|
else {
|
|
log_error("Syntax error at %s", pp);
|
|
res = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
out:
|
|
return res;
|
|
}
|
|
|
|
static int handle_e_mgmt_cmd(int fd, const struct iscsi_kern_event *event)
|
|
{
|
|
int res, rc;
|
|
char *buf, *p, *pp;
|
|
int size;
|
|
|
|
if (event->param1_size == 0) {
|
|
log_error("Incorrect E_MGMT_CMD: %s", "command expected");
|
|
res = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
/* Params are not 0-terminated */
|
|
|
|
size = event->param1_size + 1;
|
|
|
|
buf = malloc(size);
|
|
if (buf == NULL) {
|
|
log_error("Unable to allocate tmp buffer (size %d)", size);
|
|
res = -ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
while (1) {
|
|
if ((rc = nl_read(fd, buf, event->param1_size)) < 0) {
|
|
if ((errno == EINTR) || (errno == EAGAIN))
|
|
continue;
|
|
log_error("read netlink fd (%d) failed: %s", fd,
|
|
strerror(errno));
|
|
send_mgmt_cmd_res(0, event->cookie, E_MGMT_CMD, -errno, NULL);
|
|
exit(1);
|
|
}
|
|
break;
|
|
}
|
|
|
|
buf[rc] = '\0';
|
|
|
|
log_debug(1, "Going to parse %s", buf);
|
|
|
|
p = buf;
|
|
pp = config_sep_string(&p);
|
|
if (strcasecmp("add_attribute", pp) == 0) {
|
|
res = handle_add_param(NULL, p, event->cookie);
|
|
} else if (strcasecmp("add_target_attribute", pp) == 0) {
|
|
struct target *target;
|
|
pp = config_sep_string(&p);
|
|
target = target_find_by_name(pp);
|
|
if (target == NULL) {
|
|
log_error("Target %s not found", pp);
|
|
res = -ENOENT;
|
|
goto out_free;
|
|
}
|
|
res = handle_add_param(target, p, event->cookie);
|
|
} else if (strcasecmp("del_attribute", pp) == 0) {
|
|
res = handle_del_param(NULL, p, event->cookie);
|
|
} else if (strcasecmp("del_target_parameter", pp) == 0) {
|
|
struct target *target;
|
|
pp = config_sep_string(&p);
|
|
target = target_find_by_name(pp);
|
|
if (target == NULL) {
|
|
log_error("Target %s not found", pp);
|
|
res = -ENOENT;
|
|
goto out_free;
|
|
}
|
|
res = handle_del_param(target, p, event->cookie);
|
|
} else {
|
|
log_error("Syntax error at %s", pp);
|
|
res = -EINVAL;
|
|
}
|
|
|
|
out_free:
|
|
free(buf);
|
|
|
|
out:
|
|
return res;
|
|
}
|
|
|
|
static void add_key_mark(char *res_str, int res_str_len, int new_line)
|
|
{
|
|
int offs = strlen(res_str);
|
|
snprintf(&res_str[offs], res_str_len - offs, "%s%s\n",
|
|
new_line ? "\n" : "", SCST_SYSFS_KEY_MARK);
|
|
return;
|
|
}
|
|
|
|
static int handle_e_get_attr_value(int fd, const struct iscsi_kern_event *event)
|
|
{
|
|
int res = 0, rc, idx;
|
|
char *buf, *p, *pp;
|
|
int size;
|
|
struct target *target;
|
|
char res_str[ISCSI_MAX_ATTR_VALUE_LEN];
|
|
|
|
memset(res_str, 0, sizeof(res_str));
|
|
|
|
if (event->param1_size == 0) {
|
|
log_error("Incorrect E_GET_ATTR_VALUE: %s", "attr name expected");
|
|
res = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
/* Params are not 0-terminated */
|
|
|
|
size = event->param1_size + 1;
|
|
|
|
buf = malloc(size);
|
|
if (buf == NULL) {
|
|
log_error("Unable to allocate tmp buffer (size %d)", size);
|
|
res = -ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
while (1) {
|
|
if ((rc = nl_read(fd, buf, event->param1_size)) < 0) {
|
|
if ((errno == EINTR) || (errno == EAGAIN))
|
|
continue;
|
|
log_error("read netlink fd (%d) failed: %s", fd,
|
|
strerror(errno));
|
|
send_mgmt_cmd_res(0, event->cookie, E_GET_ATTR_VALUE, -errno, NULL);
|
|
exit(1);
|
|
}
|
|
break;
|
|
}
|
|
|
|
buf[rc] = '\0';
|
|
|
|
log_debug(1, "Going to parse name %s", buf);
|
|
|
|
target = target_find_by_id(event->tid);
|
|
|
|
p = buf;
|
|
pp = config_sep_string(&p);
|
|
if (!((idx = params_index_by_name(pp, target_keys)) < 0)) {
|
|
if (target == NULL) {
|
|
log_error("Target expected for attr %s", pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
params_val_to_str(target_keys, idx, target->target_params[idx],
|
|
res_str, sizeof(res_str));
|
|
|
|
if (target->target_params[idx] != target_keys[idx].local_def)
|
|
add_key_mark(res_str, sizeof(res_str), 1);
|
|
} else if (!((idx = params_index_by_name(pp, session_keys)) < 0)) {
|
|
if (target == NULL) {
|
|
log_error("Target expected for attr %s", pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
params_val_to_str(session_keys, idx, target->session_params[idx],
|
|
res_str, sizeof(res_str));
|
|
|
|
if (target->session_params[idx] != session_keys[idx].local_def)
|
|
add_key_mark(res_str, sizeof(res_str), 1);
|
|
} else if (!((idx = params_index_by_name_numwild(pp, user_keys)) < 0)) {
|
|
struct iscsi_user *user;
|
|
|
|
user = account_lookup_by_sysfs_name(target, idx, pp);
|
|
if (user == NULL) {
|
|
log_error("Unknown user attribute %s", pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
snprintf(res_str, sizeof(res_str), "%s %s\n", user->name,
|
|
user->password);
|
|
add_key_mark(res_str, sizeof(res_str), 0);
|
|
} else if (strcasecmp(ISCSI_ENABLED_ATTR_NAME, pp) == 0) {
|
|
if (target != NULL) {
|
|
log_error("Not NULL target %s for global attribute %s",
|
|
target->name, pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
snprintf(res_str, sizeof(res_str), "%d\n", iscsi_enabled);
|
|
} else if (strcasecmp(ISCSI_ISNS_SERVER_PARAM_NAME, pp) == 0) {
|
|
if (target != NULL) {
|
|
log_error("Not NULL target %s for global attribute %s",
|
|
target->name, pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
if (isns_server != NULL) {
|
|
snprintf(res_str, sizeof(res_str), "%s %s\n", isns_server,
|
|
isns_access_control ? ISCSI_ISNS_SYSFS_ACCESS_CONTROL_ENABLED : "");
|
|
add_key_mark(res_str, sizeof(res_str), 0);
|
|
} else
|
|
snprintf(res_str, sizeof(res_str), "%s\n", "");
|
|
} else {
|
|
log_error("Unknown attribute %s", pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
send_mgmt_cmd_res(event->tid, event->cookie, E_GET_ATTR_VALUE, 0, res_str);
|
|
|
|
out_free:
|
|
free(buf);
|
|
|
|
out:
|
|
return res;
|
|
}
|
|
|
|
static int handle_e_set_attr_value(int fd, const struct iscsi_kern_event *event)
|
|
{
|
|
int res = 0, rc, idx;
|
|
char *buf, *p, *pp, *n;
|
|
struct target *target;
|
|
int size, offs;
|
|
u32 val;
|
|
|
|
if (event->param1_size == 0) {
|
|
log_error("Incorrect E_SET_ATTR_VALUE: %s", "attr name expected");
|
|
res = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
if (event->param2_size == 0) {
|
|
log_error("Incorrect E_SET_ATTR_VALUE: %s", "attr value expected");
|
|
res = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
/* Params are not 0-terminated */
|
|
size = event->param1_size + 1 + 1 + event->param2_size + 1;
|
|
|
|
buf = malloc(size);
|
|
if (buf == NULL) {
|
|
log_error("Unable to allocate tmp buffer (size %d)", size);
|
|
res = -ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
while (1) {
|
|
if ((rc = nl_read(fd, buf, event->param1_size)) < 0) {
|
|
if ((errno == EINTR) || (errno == EAGAIN))
|
|
continue;
|
|
log_error("read netlink fd (%d) failed: %s", fd,
|
|
strerror(errno));
|
|
send_mgmt_cmd_res(0, event->cookie, E_SET_ATTR_VALUE, -errno, NULL);
|
|
exit(1);
|
|
}
|
|
break;
|
|
}
|
|
|
|
offs = rc;
|
|
offs += sprintf(&buf[offs], " ");
|
|
|
|
while (1) {
|
|
if ((rc = nl_read(fd, &buf[offs], event->param2_size)) < 0) {
|
|
if ((errno == EINTR) || (errno == EAGAIN))
|
|
continue;
|
|
log_error("read netlink fd (%d) failed: %s", fd,
|
|
strerror(errno));
|
|
send_mgmt_cmd_res(0, event->cookie, E_SET_ATTR_VALUE, -errno, NULL);
|
|
exit(1);
|
|
}
|
|
break;
|
|
}
|
|
|
|
offs += rc;
|
|
buf[offs] = '\0';
|
|
|
|
log_debug(1, "Going to parse %s", buf);
|
|
|
|
target = target_find_by_id(event->tid);
|
|
|
|
p = buf;
|
|
pp = config_sep_string(&p);
|
|
if (!((idx = params_index_by_name(pp, target_keys)) < 0)) {
|
|
struct iscsi_param params[target_key_last];
|
|
struct session *session;
|
|
|
|
if (target == NULL) {
|
|
log_error("Target expected for attr %s", pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
pp = config_sep_string(&p);
|
|
|
|
n = config_sep_string(&p);
|
|
if (*n != '\0') {
|
|
log_error("Unexpected parameter value %s\n", n);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
res = params_str_to_val(target_keys, idx, pp, &val);
|
|
if (res < 0) {
|
|
log_error("Wrong value %s for parameter %s\n",
|
|
pp, target_keys[idx].name);
|
|
goto out_free;
|
|
}
|
|
|
|
res = params_check_val(target_keys, idx, &val);
|
|
if (res < 0) {
|
|
log_error("Wrong value %u for parameter %s\n",
|
|
val, target_keys[idx].name);
|
|
goto out_free;
|
|
}
|
|
|
|
target->target_params[idx] = val;
|
|
|
|
memset(¶ms, 0, sizeof(params));
|
|
params[idx].val = val;
|
|
list_for_each_entry(session, &target->sessions_list, slist) {
|
|
kernel_params_set(event->tid, session->sid.id64,
|
|
key_target, 1 << idx, params);
|
|
}
|
|
} else if (!((idx = params_index_by_name(pp, session_keys)) < 0)) {
|
|
if (target == NULL) {
|
|
log_error("Target expected for attr %s", pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
pp = config_sep_string(&p);
|
|
|
|
n = config_sep_string(&p);
|
|
if (*n != '\0') {
|
|
log_error("Unexpected parameter value %s\n", n);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
res = params_str_to_val(session_keys, idx, pp, &val);
|
|
if (res < 0) {
|
|
log_error("Wrong value %s for parameter %s\n",
|
|
pp, session_keys[idx].name);
|
|
goto out_free;
|
|
}
|
|
|
|
res = params_check_val(session_keys, idx, &val);
|
|
if (res < 0) {
|
|
log_error("Wrong value %u for parameter %s\n",
|
|
val, session_keys[idx].name);
|
|
goto out_free;
|
|
}
|
|
|
|
target->session_params[idx] = val;
|
|
} else if (!((idx = params_index_by_name_numwild(pp, user_keys)) < 0)) {
|
|
struct iscsi_user *user;
|
|
|
|
user = account_lookup_by_sysfs_name(target, idx, pp);
|
|
if (user == NULL) {
|
|
log_error("Unknown user attribute %s", pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
res = account_replace(target, idx, pp, p);
|
|
if (res != 0)
|
|
goto out_free;
|
|
} else if (strcasecmp(ISCSI_ENABLED_ATTR_NAME, pp) == 0) {
|
|
if (target != NULL) {
|
|
log_error("Not NULL target %s for global attribute %s",
|
|
target->name, pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
pp = config_sep_string(&p);
|
|
if (strcmp(pp, "1") == 0)
|
|
iscsi_enabled = 1;
|
|
else if (strcmp(pp, "0") == 0)
|
|
iscsi_enabled = 0;
|
|
else {
|
|
log_error("Unknown value %s", pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
} else if (strcasecmp(ISCSI_ISNS_SERVER_PARAM_NAME, pp) == 0) {
|
|
if (target != NULL) {
|
|
log_error("Not NULL target %s for global attribute %s",
|
|
target->name, pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
if (isns_server != NULL)
|
|
isns_exit();
|
|
|
|
pp = config_sep_string(&p);
|
|
if (*pp == '\0') {
|
|
goto done;
|
|
}
|
|
|
|
isns_access_control = 0;
|
|
isns_server = strdup(pp);
|
|
if (isns_server == NULL) {
|
|
log_error("Unable to dublicate iSNS server name %s", pp);
|
|
res = -ENOMEM;
|
|
goto out_free;
|
|
}
|
|
|
|
pp = config_sep_string(&p);
|
|
if (strcasecmp(ISCSI_ISNS_SYSFS_ACCESS_CONTROL_ENABLED, pp) == 0) {
|
|
pp = config_sep_string(&p);
|
|
if (strcasecmp(pp, "No") == 0)
|
|
isns_access_control = 0;
|
|
else
|
|
isns_access_control = 1;
|
|
} else if (*pp != '\0') {
|
|
log_error("Unknown parameter %s", pp);
|
|
res = -EINVAL;
|
|
goto out_free_server;
|
|
}
|
|
|
|
res = isns_init();
|
|
if (res == 0) {
|
|
struct target *t;
|
|
int rc;
|
|
|
|
list_for_each_entry(t, &targets_list, tlist) {
|
|
rc = isns_target_register(t->name);
|
|
if (rc < 0) {
|
|
/*
|
|
* iSNS server can be temporary not
|
|
* available.
|
|
*/
|
|
goto out_free_isns_exit;
|
|
}
|
|
}
|
|
} else
|
|
goto out_free_server;
|
|
} else {
|
|
log_error("Unknown attribute %s", pp);
|
|
res = -EINVAL;
|
|
goto out_free;
|
|
}
|
|
|
|
done:
|
|
send_mgmt_cmd_res(event->tid, event->cookie, E_SET_ATTR_VALUE, 0, NULL);
|
|
|
|
out_free:
|
|
free(buf);
|
|
|
|
out:
|
|
return res;
|
|
|
|
out_free_isns_exit:
|
|
isns_exit();
|
|
|
|
out_free_server:
|
|
free(isns_server);
|
|
isns_server = NULL;
|
|
goto out;
|
|
}
|
|
|
|
#endif /* CONFIG_SCST_PROC */
|
|
|
|
void handle_iscsi_events(int fd)
|
|
{
|
|
struct session *session;
|
|
struct connection *conn;
|
|
struct iscsi_kern_event event;
|
|
#ifndef CONFIG_SCST_PROC
|
|
struct target *target;
|
|
#endif
|
|
int rc;
|
|
|
|
/*
|
|
* The way of handling errors by exit() is one of the worst possible,
|
|
* but IET developers thought it's OK. ToDo: fix somewhen.
|
|
*/
|
|
|
|
retry:
|
|
if ((rc = nl_read(fd, &event, sizeof(event))) < 0) {
|
|
if (errno == EAGAIN)
|
|
return;
|
|
if (errno == EINTR)
|
|
goto retry;
|
|
log_error("read netlink fd (%d) failed: %s", fd, strerror(errno));
|
|
exit(1);
|
|
}
|
|
|
|
log_debug(1, "target %u, session %#" PRIx64 ", conn %u, code %u, cookie %d",
|
|
event.tid, event.sid, event.cid, event.code, event.cookie);
|
|
|
|
/*
|
|
* Let's always report errors through send_mgmt_cmd_res(). If the error
|
|
* was returned by the corresponding ioctl(), it will lead to blank
|
|
* MGMT_CMD_CALLBACK ioctl()'s, but that's OK, because kernel will
|
|
* not reuse the cookie. Better to have extra return call, than no call
|
|
* at all.
|
|
*/
|
|
|
|
switch (event.code) {
|
|
#ifndef CONFIG_SCST_PROC
|
|
case E_ADD_TARGET:
|
|
rc = handle_e_add_target(fd, &event);
|
|
if (rc != 0)
|
|
send_mgmt_cmd_res(event.tid, event.cookie, E_ADD_TARGET, rc, NULL);
|
|
break;
|
|
|
|
case E_DEL_TARGET:
|
|
rc = handle_e_del_target(fd, &event);
|
|
if (rc != 0)
|
|
send_mgmt_cmd_res(event.tid, event.cookie, E_DEL_TARGET, rc, NULL);
|
|
break;
|
|
|
|
case E_MGMT_CMD:
|
|
rc = handle_e_mgmt_cmd(fd, &event);
|
|
if (rc != 0)
|
|
send_mgmt_cmd_res(event.tid, event.cookie, E_MGMT_CMD, rc, NULL);
|
|
break;
|
|
|
|
case E_ENABLE_TARGET:
|
|
target = target_find_by_id(event.tid);
|
|
if (target == NULL) {
|
|
log_error("Target %d not found", event.tid);
|
|
rc = -ENOENT;
|
|
} else
|
|
rc = 0;
|
|
rc |= send_mgmt_cmd_res(event.tid, event.cookie, E_ENABLE_TARGET, rc, NULL);
|
|
if (rc == 0)
|
|
target->tgt_enabled = 1;
|
|
break;
|
|
|
|
case E_DISABLE_TARGET:
|
|
target = target_find_by_id(event.tid);
|
|
if (target == NULL) {
|
|
log_error("Target %d not found", event.tid);
|
|
rc = -ENOENT;
|
|
} else
|
|
rc = 0;
|
|
rc |= send_mgmt_cmd_res(event.tid, event.cookie, E_DISABLE_TARGET, rc, NULL);
|
|
if (rc == 0)
|
|
target->tgt_enabled = 0;
|
|
break;
|
|
|
|
case E_GET_ATTR_VALUE:
|
|
rc = handle_e_get_attr_value(fd, &event);
|
|
if (rc != 0)
|
|
send_mgmt_cmd_res(event.tid, event.cookie, E_GET_ATTR_VALUE, rc, NULL);
|
|
break;
|
|
|
|
case E_SET_ATTR_VALUE:
|
|
rc = handle_e_set_attr_value(fd, &event);
|
|
if (rc != 0)
|
|
send_mgmt_cmd_res(event.tid, event.cookie, E_SET_ATTR_VALUE, rc, NULL);
|
|
break;
|
|
#endif /* CONFIG_SCST_PROC */
|
|
|
|
case E_CONN_CLOSE:
|
|
session = session_find_id(event.tid, event.sid);
|
|
if (session == NULL) {
|
|
log_error("Session %#" PRIx64 " not found", event.sid);
|
|
goto retry;
|
|
}
|
|
|
|
conn = conn_find(session, event.cid);
|
|
if (conn == NULL) {
|
|
log_error("Connection %x for session %#" PRIx64 " not "
|
|
"found", event.cid, event.sid);
|
|
goto retry;
|
|
}
|
|
|
|
conn_free(conn);
|
|
|
|
if (list_empty(&session->conn_list))
|
|
session_free(session);
|
|
break;
|
|
|
|
default:
|
|
log_error("Unknown event %u", event.code);
|
|
/* We might be out of sync in size */
|
|
exit(-1);
|
|
break;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
int nl_open(void)
|
|
{
|
|
int nl_fd, res;
|
|
|
|
nl_fd = socket(PF_NETLINK, SOCK_RAW, NETLINK_ISCSI_SCST);
|
|
if (nl_fd == -1) {
|
|
log_error("%s %d\n", __FUNCTION__, errno);
|
|
return -1;
|
|
}
|
|
|
|
memset(&src_addr, 0, sizeof(src_addr));
|
|
src_addr.nl_family = AF_NETLINK;
|
|
src_addr.nl_pid = getpid();
|
|
src_addr.nl_groups = 0; /* not in mcast groups */
|
|
|
|
memset(&dest_addr, 0, sizeof(dest_addr));
|
|
dest_addr.nl_family = AF_NETLINK;
|
|
dest_addr.nl_pid = 0; /* kernel */
|
|
dest_addr.nl_groups = 0; /* unicast */
|
|
|
|
res = nl_write(nl_fd, NULL, 0);
|
|
if (res < 0) {
|
|
log_error("%s %d\n", __FUNCTION__, res);
|
|
return res;
|
|
}
|
|
|
|
return nl_fd;
|
|
}
|