scsi_transport_iscsi.c 75.9 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3 4
 * iSCSI transport class definitions
 *
 * Copyright (C) IBM Corporation, 2004
5 6 7
 * Copyright (C) Mike Christie, 2004 - 2005
 * Copyright (C) Dmitry Yusupov, 2004 - 2005
 * Copyright (C) Alex Aizman, 2004 - 2005
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * 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; either version 2 of the License, or
 * (at your option) any later version.
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
#include <linux/module.h>
24
#include <linux/mutex.h>
25
#include <linux/slab.h>
26
#include <linux/bsg-lib.h>
27
#include <net/tcp.h>
L
Linus Torvalds 已提交
28 29 30 31 32
#include <scsi/scsi.h>
#include <scsi/scsi_host.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_transport.h>
#include <scsi/scsi_transport_iscsi.h>
33
#include <scsi/iscsi_if.h>
34
#include <scsi/scsi_cmnd.h>
35
#include <scsi/scsi_bsg_iscsi.h>
L
Linus Torvalds 已提交
36

37
#define ISCSI_TRANSPORT_VERSION "2.0-870"
L
Linus Torvalds 已提交
38

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
static int dbg_session;
module_param_named(debug_session, dbg_session, int,
		   S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(debug_session,
		 "Turn on debugging for sessions in scsi_transport_iscsi "
		 "module. Set to 1 to turn on, and zero to turn off. Default "
		 "is off.");

static int dbg_conn;
module_param_named(debug_conn, dbg_conn, int,
		   S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(debug_conn,
		 "Turn on debugging for connections in scsi_transport_iscsi "
		 "module. Set to 1 to turn on, and zero to turn off. Default "
		 "is off.");

#define ISCSI_DBG_TRANS_SESSION(_session, dbg_fmt, arg...)		\
	do {								\
		if (dbg_session)					\
			iscsi_cls_session_printk(KERN_INFO, _session,	\
						 "%s: " dbg_fmt,	\
						 __func__, ##arg);	\
	} while (0);

#define ISCSI_DBG_TRANS_CONN(_conn, dbg_fmt, arg...)			\
	do {								\
		if (dbg_conn)						\
			iscsi_cls_conn_printk(KERN_INFO, _conn,		\
					      "%s: " dbg_fmt,		\
					      __func__, ##arg);	\
	} while (0);

L
Linus Torvalds 已提交
71 72
struct iscsi_internal {
	struct scsi_transport_template t;
73 74
	struct iscsi_transport *iscsi_transport;
	struct list_head list;
75
	struct device dev;
M
Mike Christie 已提交
76

77 78
	struct transport_container conn_cont;
	struct transport_container session_cont;
L
Linus Torvalds 已提交
79 80
};

81
static atomic_t iscsi_session_nr; /* sysfs session id for next new session */
82
static struct workqueue_struct *iscsi_eh_timer_workq;
83

84 85 86
/*
 * list of registered transports and lock that must
 * be held while accessing list. The iscsi_transport_lock must
87
 * be acquired after the rx_queue_mutex.
88 89 90 91 92 93 94
 */
static LIST_HEAD(iscsi_transports);
static DEFINE_SPINLOCK(iscsi_transport_lock);

#define to_iscsi_internal(tmpl) \
	container_of(tmpl, struct iscsi_internal, t)

95 96
#define dev_to_iscsi_internal(_dev) \
	container_of(_dev, struct iscsi_internal, dev)
97

98
static void iscsi_transport_release(struct device *dev)
99
{
100
	struct iscsi_internal *priv = dev_to_iscsi_internal(dev);
101 102
	kfree(priv);
}
L
Linus Torvalds 已提交
103

104 105 106 107 108 109
/*
 * iscsi_transport_class represents the iscsi_transports that are
 * registered.
 */
static struct class iscsi_transport_class = {
	.name = "iscsi_transport",
110
	.dev_release = iscsi_transport_release,
111 112 113
};

static ssize_t
114 115
show_transport_handle(struct device *dev, struct device_attribute *attr,
		      char *buf)
116
{
117
	struct iscsi_internal *priv = dev_to_iscsi_internal(dev);
118
	return sprintf(buf, "%llu\n", (unsigned long long)iscsi_handle(priv->iscsi_transport));
119
}
120
static DEVICE_ATTR(handle, S_IRUGO, show_transport_handle, NULL);
121 122 123

#define show_transport_attr(name, format)				\
static ssize_t								\
124 125
show_transport_##name(struct device *dev, 				\
		      struct device_attribute *attr,char *buf)		\
126
{									\
127
	struct iscsi_internal *priv = dev_to_iscsi_internal(dev);	\
128 129
	return sprintf(buf, format"\n", priv->iscsi_transport->name);	\
}									\
130
static DEVICE_ATTR(name, S_IRUGO, show_transport_##name, NULL);
131 132 133 134

show_transport_attr(caps, "0x%x");

static struct attribute *iscsi_transport_attrs[] = {
135 136
	&dev_attr_handle.attr,
	&dev_attr_caps.attr,
137 138 139 140 141 142 143
	NULL,
};

static struct attribute_group iscsi_transport_group = {
	.attrs = iscsi_transport_attrs,
};

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
/*
 * iSCSI endpoint attrs
 */
#define iscsi_dev_to_endpoint(_dev) \
	container_of(_dev, struct iscsi_endpoint, dev)

#define ISCSI_ATTR(_prefix,_name,_mode,_show,_store)	\
struct device_attribute dev_attr_##_prefix##_##_name =	\
        __ATTR(_name,_mode,_show,_store)

static void iscsi_endpoint_release(struct device *dev)
{
	struct iscsi_endpoint *ep = iscsi_dev_to_endpoint(dev);
	kfree(ep);
}

static struct class iscsi_endpoint_class = {
	.name = "iscsi_endpoint",
	.dev_release = iscsi_endpoint_release,
};

static ssize_t
show_ep_handle(struct device *dev, struct device_attribute *attr, char *buf)
{
	struct iscsi_endpoint *ep = iscsi_dev_to_endpoint(dev);
169
	return sprintf(buf, "%llu\n", (unsigned long long) ep->id);
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
}
static ISCSI_ATTR(ep, handle, S_IRUGO, show_ep_handle, NULL);

static struct attribute *iscsi_endpoint_attrs[] = {
	&dev_attr_ep_handle.attr,
	NULL,
};

static struct attribute_group iscsi_endpoint_group = {
	.attrs = iscsi_endpoint_attrs,
};

#define ISCSI_MAX_EPID -1

static int iscsi_match_epid(struct device *dev, void *data)
{
	struct iscsi_endpoint *ep = iscsi_dev_to_endpoint(dev);
187
	uint64_t *epid = (uint64_t *) data;
188 189 190 191 192 193 194 195 196

	return *epid == ep->id;
}

struct iscsi_endpoint *
iscsi_create_endpoint(int dd_size)
{
	struct device *dev;
	struct iscsi_endpoint *ep;
197
	uint64_t id;
198 199 200
	int err;

	for (id = 1; id < ISCSI_MAX_EPID; id++) {
201
		dev = class_find_device(&iscsi_endpoint_class, NULL, &id,
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
					iscsi_match_epid);
		if (!dev)
			break;
	}
	if (id == ISCSI_MAX_EPID) {
		printk(KERN_ERR "Too many connections. Max supported %u\n",
		       ISCSI_MAX_EPID - 1);
		return NULL;
	}

	ep = kzalloc(sizeof(*ep) + dd_size, GFP_KERNEL);
	if (!ep)
		return NULL;

	ep->id = id;
	ep->dev.class = &iscsi_endpoint_class;
218
	dev_set_name(&ep->dev, "ep-%llu", (unsigned long long) id);
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
	err = device_register(&ep->dev);
        if (err)
                goto free_ep;

	err = sysfs_create_group(&ep->dev.kobj, &iscsi_endpoint_group);
	if (err)
		goto unregister_dev;

	if (dd_size)
		ep->dd_data = &ep[1];
	return ep;

unregister_dev:
	device_unregister(&ep->dev);
	return NULL;

free_ep:
	kfree(ep);
	return NULL;
}
EXPORT_SYMBOL_GPL(iscsi_create_endpoint);

void iscsi_destroy_endpoint(struct iscsi_endpoint *ep)
{
	sysfs_remove_group(&ep->dev.kobj, &iscsi_endpoint_group);
	device_unregister(&ep->dev);
}
EXPORT_SYMBOL_GPL(iscsi_destroy_endpoint);

struct iscsi_endpoint *iscsi_lookup_endpoint(u64 handle)
{
250
	struct iscsi_endpoint *ep;
251 252
	struct device *dev;

253
	dev = class_find_device(&iscsi_endpoint_class, NULL, &handle,
254 255 256 257
				iscsi_match_epid);
	if (!dev)
		return NULL;

258 259 260 261 262 263 264
	ep = iscsi_dev_to_endpoint(dev);
	/*
	 * we can drop this now because the interface will prevent
	 * removals and lookups from racing.
	 */
	put_device(dev);
	return ep;
265 266 267
}
EXPORT_SYMBOL_GPL(iscsi_lookup_endpoint);

268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
/*
 * Interface to display network param to sysfs
 */

static void iscsi_iface_release(struct device *dev)
{
	struct iscsi_iface *iface = iscsi_dev_to_iface(dev);
	struct device *parent = iface->dev.parent;

	kfree(iface);
	put_device(parent);
}


static struct class iscsi_iface_class = {
	.name = "iscsi_iface",
	.dev_release = iscsi_iface_release,
};

#define ISCSI_IFACE_ATTR(_prefix, _name, _mode, _show, _store)	\
struct device_attribute dev_attr_##_prefix##_##_name =		\
	__ATTR(_name, _mode, _show, _store)

/* iface attrs show */
#define iscsi_iface_attr_show(type, name, param_type, param)		\
static ssize_t								\
show_##type##_##name(struct device *dev, struct device_attribute *attr,	\
		     char *buf)						\
{									\
	struct iscsi_iface *iface = iscsi_dev_to_iface(dev);		\
	struct iscsi_transport *t = iface->transport;			\
	return t->get_iface_param(iface, param_type, param, buf);	\
}									\

#define iscsi_iface_net_attr(type, name, param)				\
	iscsi_iface_attr_show(type, name, ISCSI_NET_PARAM, param)	\
static ISCSI_IFACE_ATTR(type, name, S_IRUGO, show_##type##_##name, NULL);

/* generic read only ipvi4 attribute */
iscsi_iface_net_attr(ipv4_iface, ipaddress, ISCSI_NET_PARAM_IPV4_ADDR);
iscsi_iface_net_attr(ipv4_iface, gateway, ISCSI_NET_PARAM_IPV4_GW);
iscsi_iface_net_attr(ipv4_iface, subnet, ISCSI_NET_PARAM_IPV4_SUBNET);
iscsi_iface_net_attr(ipv4_iface, bootproto, ISCSI_NET_PARAM_IPV4_BOOTPROTO);

/* generic read only ipv6 attribute */
iscsi_iface_net_attr(ipv6_iface, ipaddress, ISCSI_NET_PARAM_IPV6_ADDR);
iscsi_iface_net_attr(ipv6_iface, link_local_addr, ISCSI_NET_PARAM_IPV6_LINKLOCAL);
iscsi_iface_net_attr(ipv6_iface, router_addr, ISCSI_NET_PARAM_IPV6_ROUTER);
iscsi_iface_net_attr(ipv6_iface, ipaddr_autocfg,
		     ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG);
iscsi_iface_net_attr(ipv6_iface, linklocal_autocfg,
		     ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG);

/* common read only iface attribute */
iscsi_iface_net_attr(iface, enabled, ISCSI_NET_PARAM_IFACE_ENABLE);
iscsi_iface_net_attr(iface, vlan, ISCSI_NET_PARAM_VLAN_ID);
324 325
iscsi_iface_net_attr(iface, vlan_priority, ISCSI_NET_PARAM_VLAN_PRIORITY);
iscsi_iface_net_attr(iface, vlan_enabled, ISCSI_NET_PARAM_VLAN_ENABLED);
326
iscsi_iface_net_attr(iface, mtu, ISCSI_NET_PARAM_MTU);
327 328 329 330 331 332 333

static mode_t iscsi_iface_attr_is_visible(struct kobject *kobj,
					  struct attribute *attr, int i)
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct iscsi_iface *iface = iscsi_dev_to_iface(dev);
	struct iscsi_transport *t = iface->transport;
334
	int param;
335 336

	if (attr == &dev_attr_iface_enabled.attr)
337
		param = ISCSI_NET_PARAM_IFACE_ENABLE;
338
	else if (attr == &dev_attr_iface_vlan.attr)
339
		param = ISCSI_NET_PARAM_VLAN_ID;
340 341 342 343
	else if (attr == &dev_attr_iface_vlan_priority.attr)
		param = ISCSI_NET_PARAM_VLAN_PRIORITY;
	else if (attr == &dev_attr_iface_vlan_enabled.attr)
		param = ISCSI_NET_PARAM_VLAN_ENABLED;
344 345
	else if (attr == &dev_attr_iface_mtu.attr)
		param = ISCSI_NET_PARAM_MTU;
346
	else if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4) {
347
		if (attr == &dev_attr_ipv4_iface_ipaddress.attr)
348
			param = ISCSI_NET_PARAM_IPV4_ADDR;
349
		else if (attr == &dev_attr_ipv4_iface_gateway.attr)
350
			param = ISCSI_NET_PARAM_IPV4_GW;
351
		else if (attr == &dev_attr_ipv4_iface_subnet.attr)
352
			param = ISCSI_NET_PARAM_IPV4_SUBNET;
353
		else if (attr == &dev_attr_ipv4_iface_bootproto.attr)
354 355 356
			param = ISCSI_NET_PARAM_IPV4_BOOTPROTO;
		else
			return 0;
357 358
	} else if (iface->iface_type == ISCSI_IFACE_TYPE_IPV6) {
		if (attr == &dev_attr_ipv6_iface_ipaddress.attr)
359
			param = ISCSI_NET_PARAM_IPV6_ADDR;
360
		else if (attr == &dev_attr_ipv6_iface_link_local_addr.attr)
361
			param = ISCSI_NET_PARAM_IPV6_LINKLOCAL;
362
		else if (attr == &dev_attr_ipv6_iface_router_addr.attr)
363
			param = ISCSI_NET_PARAM_IPV6_ROUTER;
364
		else if (attr == &dev_attr_ipv6_iface_ipaddr_autocfg.attr)
365
			param = ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG;
366
		else if (attr == &dev_attr_ipv6_iface_linklocal_autocfg.attr)
367 368 369 370 371 372
			param = ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG;
		else
			return 0;
	} else {
		WARN_ONCE(1, "Invalid iface attr");
		return 0;
373 374
	}

375
	return t->attr_is_visible(ISCSI_NET_PARAM, param);
376 377 378 379 380
}

static struct attribute *iscsi_iface_attrs[] = {
	&dev_attr_iface_enabled.attr,
	&dev_attr_iface_vlan.attr,
381 382
	&dev_attr_iface_vlan_priority.attr,
	&dev_attr_iface_vlan_enabled.attr,
383 384 385 386 387 388 389 390 391
	&dev_attr_ipv4_iface_ipaddress.attr,
	&dev_attr_ipv4_iface_gateway.attr,
	&dev_attr_ipv4_iface_subnet.attr,
	&dev_attr_ipv4_iface_bootproto.attr,
	&dev_attr_ipv6_iface_ipaddress.attr,
	&dev_attr_ipv6_iface_link_local_addr.attr,
	&dev_attr_ipv6_iface_router_addr.attr,
	&dev_attr_ipv6_iface_ipaddr_autocfg.attr,
	&dev_attr_ipv6_iface_linklocal_autocfg.attr,
392
	&dev_attr_iface_mtu.attr,
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
	NULL,
};

static struct attribute_group iscsi_iface_group = {
	.attrs = iscsi_iface_attrs,
	.is_visible = iscsi_iface_attr_is_visible,
};

struct iscsi_iface *
iscsi_create_iface(struct Scsi_Host *shost, struct iscsi_transport *transport,
		   uint32_t iface_type, uint32_t iface_num, int dd_size)
{
	struct iscsi_iface *iface;
	int err;

	iface = kzalloc(sizeof(*iface) + dd_size, GFP_KERNEL);
	if (!iface)
		return NULL;

	iface->transport = transport;
	iface->iface_type = iface_type;
	iface->iface_num = iface_num;
	iface->dev.release = iscsi_iface_release;
	iface->dev.class = &iscsi_iface_class;
	/* parent reference released in iscsi_iface_release */
	iface->dev.parent = get_device(&shost->shost_gendev);
	if (iface_type == ISCSI_IFACE_TYPE_IPV4)
		dev_set_name(&iface->dev, "ipv4-iface-%u-%u", shost->host_no,
			     iface_num);
	else
		dev_set_name(&iface->dev, "ipv6-iface-%u-%u", shost->host_no,
			     iface_num);

	err = device_register(&iface->dev);
	if (err)
		goto free_iface;

	err = sysfs_create_group(&iface->dev.kobj, &iscsi_iface_group);
	if (err)
		goto unreg_iface;

	if (dd_size)
		iface->dd_data = &iface[1];
	return iface;

unreg_iface:
	device_unregister(&iface->dev);
	return NULL;

free_iface:
	put_device(iface->dev.parent);
	kfree(iface);
	return NULL;
}
EXPORT_SYMBOL_GPL(iscsi_create_iface);

void iscsi_destroy_iface(struct iscsi_iface *iface)
{
	sysfs_remove_group(&iface->dev.kobj, &iscsi_iface_group);
	device_unregister(&iface->dev);
}
EXPORT_SYMBOL_GPL(iscsi_destroy_iface);

456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
/*
 * BSG support
 */
/**
 * iscsi_bsg_host_dispatch - Dispatch command to LLD.
 * @job: bsg job to be processed
 */
static int iscsi_bsg_host_dispatch(struct bsg_job *job)
{
	struct Scsi_Host *shost = iscsi_job_to_shost(job);
	struct iscsi_bsg_request *req = job->request;
	struct iscsi_bsg_reply *reply = job->reply;
	struct iscsi_internal *i = to_iscsi_internal(shost->transportt);
	int cmdlen = sizeof(uint32_t);	/* start with length of msgcode */
	int ret;

	/* check if we have the msgcode value at least */
	if (job->request_len < sizeof(uint32_t)) {
		ret = -ENOMSG;
		goto fail_host_msg;
	}

	/* Validate the host command */
	switch (req->msgcode) {
	case ISCSI_BSG_HST_VENDOR:
		cmdlen += sizeof(struct iscsi_bsg_host_vendor);
		if ((shost->hostt->vendor_id == 0L) ||
		    (req->rqst_data.h_vendor.vendor_id !=
			shost->hostt->vendor_id)) {
			ret = -ESRCH;
			goto fail_host_msg;
		}
		break;
	default:
		ret = -EBADR;
		goto fail_host_msg;
	}

	/* check if we really have all the request data needed */
	if (job->request_len < cmdlen) {
		ret = -ENOMSG;
		goto fail_host_msg;
	}

	ret = i->iscsi_transport->bsg_request(job);
	if (!ret)
		return 0;

fail_host_msg:
	/* return the errno failure code as the only status */
	BUG_ON(job->reply_len < sizeof(uint32_t));
	reply->reply_payload_rcv_len = 0;
	reply->result = ret;
	job->reply_len = sizeof(uint32_t);
	bsg_job_done(job, ret, 0);
	return 0;
}

/**
 * iscsi_bsg_host_add - Create and add the bsg hooks to receive requests
 * @shost: shost for iscsi_host
 * @cls_host: iscsi_cls_host adding the structures to
 */
static int
iscsi_bsg_host_add(struct Scsi_Host *shost, struct iscsi_cls_host *ihost)
{
	struct device *dev = &shost->shost_gendev;
	struct iscsi_internal *i = to_iscsi_internal(shost->transportt);
	struct request_queue *q;
	char bsg_name[20];
	int ret;

	if (!i->iscsi_transport->bsg_request)
		return -ENOTSUPP;

	snprintf(bsg_name, sizeof(bsg_name), "iscsi_host%d", shost->host_no);

	q = __scsi_alloc_queue(shost, bsg_request_fn);
	if (!q)
		return -ENOMEM;

	ret = bsg_setup_queue(dev, q, bsg_name, iscsi_bsg_host_dispatch, 0);
	if (ret) {
		shost_printk(KERN_ERR, shost, "bsg interface failed to "
			     "initialize - no request queue\n");
		blk_cleanup_queue(q);
		return ret;
	}

	ihost->bsg_q = q;
	return 0;
}

M
Mike Christie 已提交
549
static int iscsi_setup_host(struct transport_container *tc, struct device *dev,
550
			    struct device *cdev)
M
Mike Christie 已提交
551 552
{
	struct Scsi_Host *shost = dev_to_shost(dev);
553
	struct iscsi_cls_host *ihost = shost->shost_data;
M
Mike Christie 已提交
554 555

	memset(ihost, 0, sizeof(*ihost));
556
	atomic_set(&ihost->nr_scans, 0);
557
	mutex_init(&ihost->mutex);
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574

	iscsi_bsg_host_add(shost, ihost);
	/* ignore any bsg add error - we just can't do sgio */

	return 0;
}

static int iscsi_remove_host(struct transport_container *tc,
			     struct device *dev, struct device *cdev)
{
	struct Scsi_Host *shost = dev_to_shost(dev);
	struct iscsi_cls_host *ihost = shost->shost_data;

	if (ihost->bsg_q) {
		bsg_remove_queue(ihost->bsg_q);
		blk_cleanup_queue(ihost->bsg_q);
	}
M
Mike Christie 已提交
575 576 577 578 579 580
	return 0;
}

static DECLARE_TRANSPORT_CLASS(iscsi_host_class,
			       "iscsi_host",
			       iscsi_setup_host,
581
			       iscsi_remove_host,
M
Mike Christie 已提交
582 583
			       NULL);

584 585
static DECLARE_TRANSPORT_CLASS(iscsi_session_class,
			       "iscsi_session",
L
Linus Torvalds 已提交
586 587 588 589
			       NULL,
			       NULL,
			       NULL);

590 591
static DECLARE_TRANSPORT_CLASS(iscsi_connection_class,
			       "iscsi_connection",
L
Linus Torvalds 已提交
592 593 594
			       NULL,
			       NULL,
			       NULL);
595 596

static struct sock *nls;
597
static DEFINE_MUTEX(rx_queue_mutex);
598

599 600
static LIST_HEAD(sesslist);
static DEFINE_SPINLOCK(sesslock);
601 602
static LIST_HEAD(connlist);
static DEFINE_SPINLOCK(connlock);
603

604 605 606 607 608 609 610 611 612 613
static uint32_t iscsi_conn_get_sid(struct iscsi_cls_conn *conn)
{
	struct iscsi_cls_session *sess = iscsi_dev_to_session(conn->dev.parent);
	return sess->sid;
}

/*
 * Returns the matching session to a given sid
 */
static struct iscsi_cls_session *iscsi_session_lookup(uint32_t sid)
614 615 616 617 618 619
{
	unsigned long flags;
	struct iscsi_cls_session *sess;

	spin_lock_irqsave(&sesslock, flags);
	list_for_each_entry(sess, &sesslist, sess_list) {
620
		if (sess->sid == sid) {
621 622 623 624 625 626 627 628
			spin_unlock_irqrestore(&sesslock, flags);
			return sess;
		}
	}
	spin_unlock_irqrestore(&sesslock, flags);
	return NULL;
}

629 630 631 632
/*
 * Returns the matching connection to a given sid / cid tuple
 */
static struct iscsi_cls_conn *iscsi_conn_lookup(uint32_t sid, uint32_t cid)
633 634 635 636 637 638
{
	unsigned long flags;
	struct iscsi_cls_conn *conn;

	spin_lock_irqsave(&connlock, flags);
	list_for_each_entry(conn, &connlist, conn_list) {
639
		if ((conn->cid == cid) && (iscsi_conn_get_sid(conn) == sid)) {
640 641 642 643 644 645 646 647
			spin_unlock_irqrestore(&connlock, flags);
			return conn;
		}
	}
	spin_unlock_irqrestore(&connlock, flags);
	return NULL;
}

648 649 650 651
/*
 * The following functions can be used by LLDs that allocate
 * their own scsi_hosts or by software iscsi LLDs
 */
652 653 654 655 656 657 658 659 660
static struct {
	int value;
	char *name;
} iscsi_session_state_names[] = {
	{ ISCSI_SESSION_LOGGED_IN,	"LOGGED_IN" },
	{ ISCSI_SESSION_FAILED,		"FAILED" },
	{ ISCSI_SESSION_FREE,		"FREE" },
};

661
static const char *iscsi_session_state_name(int state)
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
{
	int i;
	char *name = NULL;

	for (i = 0; i < ARRAY_SIZE(iscsi_session_state_names); i++) {
		if (iscsi_session_state_names[i].value == state) {
			name = iscsi_session_state_names[i].name;
			break;
		}
	}
	return name;
}

int iscsi_session_chkready(struct iscsi_cls_session *session)
{
	unsigned long flags;
	int err;

	spin_lock_irqsave(&session->lock, flags);
	switch (session->state) {
	case ISCSI_SESSION_LOGGED_IN:
		err = 0;
		break;
	case ISCSI_SESSION_FAILED:
686
		err = DID_IMM_RETRY << 16;
687 688
		break;
	case ISCSI_SESSION_FREE:
689
		err = DID_TRANSPORT_FAILFAST << 16;
690 691 692 693 694 695 696 697 698 699
		break;
	default:
		err = DID_NO_CONNECT << 16;
		break;
	}
	spin_unlock_irqrestore(&session->lock, flags);
	return err;
}
EXPORT_SYMBOL_GPL(iscsi_session_chkready);

700 701 702 703 704 705 706 707 708 709 710 711 712
int iscsi_is_session_online(struct iscsi_cls_session *session)
{
	unsigned long flags;
	int ret = 0;

	spin_lock_irqsave(&session->lock, flags);
	if (session->state == ISCSI_SESSION_LOGGED_IN)
		ret = 1;
	spin_unlock_irqrestore(&session->lock, flags);
	return ret;
}
EXPORT_SYMBOL_GPL(iscsi_is_session_online);

713 714 715 716
static void iscsi_session_release(struct device *dev)
{
	struct iscsi_cls_session *session = iscsi_dev_to_session(dev);
	struct Scsi_Host *shost;
717

718 719
	shost = iscsi_session_to_shost(session);
	scsi_host_put(shost);
720
	ISCSI_DBG_TRANS_SESSION(session, "Completing session release\n");
721 722
	kfree(session);
}
723

724 725 726 727
static int iscsi_is_session_dev(const struct device *dev)
{
	return dev->release == iscsi_session_release;
}
728

729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
static int iscsi_iter_session_fn(struct device *dev, void *data)
{
	void (* fn) (struct iscsi_cls_session *) = data;

	if (!iscsi_is_session_dev(dev))
		return 0;
	fn(iscsi_dev_to_session(dev));
	return 0;
}

void iscsi_host_for_each_session(struct Scsi_Host *shost,
				 void (*fn)(struct iscsi_cls_session *))
{
	device_for_each_child(&shost->shost_gendev, fn,
			      iscsi_iter_session_fn);
}
EXPORT_SYMBOL_GPL(iscsi_host_for_each_session);

747 748 749 750 751 752 753 754 755 756
/**
 * iscsi_scan_finished - helper to report when running scans are done
 * @shost: scsi host
 * @time: scan run time
 *
 * This function can be used by drives like qla4xxx to report to the scsi
 * layer when the scans it kicked off at module load time are done.
 */
int iscsi_scan_finished(struct Scsi_Host *shost, unsigned long time)
{
757
	struct iscsi_cls_host *ihost = shost->shost_data;
758 759 760 761 762 763 764 765
	/*
	 * qla4xxx will have kicked off some session unblocks before calling
	 * scsi_scan_host, so just wait for them to complete.
	 */
	return !atomic_read(&ihost->nr_scans);
}
EXPORT_SYMBOL_GPL(iscsi_scan_finished);

766 767 768 769 770 771 772
struct iscsi_scan_data {
	unsigned int channel;
	unsigned int id;
	unsigned int lun;
};

static int iscsi_user_scan_session(struct device *dev, void *data)
M
Mike Christie 已提交
773
{
774
	struct iscsi_scan_data *scan_data = data;
M
Mike Christie 已提交
775
	struct iscsi_cls_session *session;
776 777 778 779 780 781 782 783 784
	struct Scsi_Host *shost;
	struct iscsi_cls_host *ihost;
	unsigned long flags;
	unsigned int id;

	if (!iscsi_is_session_dev(dev))
		return 0;

	session = iscsi_dev_to_session(dev);
785 786 787

	ISCSI_DBG_TRANS_SESSION(session, "Scanning session\n");

788 789
	shost = iscsi_session_to_shost(session);
	ihost = shost->shost_data;
M
Mike Christie 已提交
790 791

	mutex_lock(&ihost->mutex);
792 793 794
	spin_lock_irqsave(&session->lock, flags);
	if (session->state != ISCSI_SESSION_LOGGED_IN) {
		spin_unlock_irqrestore(&session->lock, flags);
795
		goto user_scan_exit;
M
Mike Christie 已提交
796
	}
797 798
	id = session->target_id;
	spin_unlock_irqrestore(&session->lock, flags);
M
Mike Christie 已提交
799

800 801 802 803 804 805 806 807
	if (id != ISCSI_MAX_TARGET) {
		if ((scan_data->channel == SCAN_WILD_CARD ||
		     scan_data->channel == 0) &&
		    (scan_data->id == SCAN_WILD_CARD ||
		     scan_data->id == id))
			scsi_scan_target(&session->dev, 0, id,
					 scan_data->lun, 1);
	}
808 809

user_scan_exit:
810
	mutex_unlock(&ihost->mutex);
811
	ISCSI_DBG_TRANS_SESSION(session, "Completed session scan\n");
M
Mike Christie 已提交
812 813 814
	return 0;
}

815 816 817 818 819 820 821 822 823 824 825 826 827
static int iscsi_user_scan(struct Scsi_Host *shost, uint channel,
			   uint id, uint lun)
{
	struct iscsi_scan_data scan_data;

	scan_data.channel = channel;
	scan_data.id = id;
	scan_data.lun = lun;

	return device_for_each_child(&shost->shost_gendev, &scan_data,
				     iscsi_user_scan_session);
}

828 829 830 831
static void iscsi_scan_session(struct work_struct *work)
{
	struct iscsi_cls_session *session =
			container_of(work, struct iscsi_cls_session, scan_work);
832
	struct Scsi_Host *shost = iscsi_session_to_shost(session);
833
	struct iscsi_cls_host *ihost = shost->shost_data;
834
	struct iscsi_scan_data scan_data;
835

836 837 838
	scan_data.channel = 0;
	scan_data.id = SCAN_WILD_CARD;
	scan_data.lun = SCAN_WILD_CARD;
839

840
	iscsi_user_scan_session(&session->dev, &scan_data);
841
	atomic_dec(&ihost->nr_scans);
842 843
}

844 845
/**
 * iscsi_block_scsi_eh - block scsi eh until session state has transistioned
846
 * @cmd: scsi cmd passed to scsi eh handler
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
 *
 * If the session is down this function will wait for the recovery
 * timer to fire or for the session to be logged back in. If the
 * recovery timer fires then FAST_IO_FAIL is returned. The caller
 * should pass this error value to the scsi eh.
 */
int iscsi_block_scsi_eh(struct scsi_cmnd *cmd)
{
	struct iscsi_cls_session *session =
			starget_to_session(scsi_target(cmd->device));
	unsigned long flags;
	int ret = 0;

	spin_lock_irqsave(&session->lock, flags);
	while (session->state != ISCSI_SESSION_LOGGED_IN) {
		if (session->state == ISCSI_SESSION_FREE) {
			ret = FAST_IO_FAIL;
			break;
		}
		spin_unlock_irqrestore(&session->lock, flags);
		msleep(1000);
		spin_lock_irqsave(&session->lock, flags);
	}
	spin_unlock_irqrestore(&session->lock, flags);
	return ret;
}
EXPORT_SYMBOL_GPL(iscsi_block_scsi_eh);

D
David Howells 已提交
875
static void session_recovery_timedout(struct work_struct *work)
M
Mike Christie 已提交
876
{
D
David Howells 已提交
877 878 879
	struct iscsi_cls_session *session =
		container_of(work, struct iscsi_cls_session,
			     recovery_work.work);
880
	unsigned long flags;
M
Mike Christie 已提交
881

882 883 884
	iscsi_cls_session_printk(KERN_INFO, session,
				 "session recovery timed out after %d secs\n",
				 session->recovery_tmo);
M
Mike Christie 已提交
885

886 887 888 889 890 891 892 893 894 895 896 897 898
	spin_lock_irqsave(&session->lock, flags);
	switch (session->state) {
	case ISCSI_SESSION_FAILED:
		session->state = ISCSI_SESSION_FREE;
		break;
	case ISCSI_SESSION_LOGGED_IN:
	case ISCSI_SESSION_FREE:
		/* we raced with the unblock's flush */
		spin_unlock_irqrestore(&session->lock, flags);
		return;
	}
	spin_unlock_irqrestore(&session->lock, flags);

M
Mike Christie 已提交
899 900 901
	if (session->transport->session_recovery_timedout)
		session->transport->session_recovery_timedout(session);

902
	ISCSI_DBG_TRANS_SESSION(session, "Unblocking SCSI target\n");
M
Mike Christie 已提交
903
	scsi_target_unblock(&session->dev);
904
	ISCSI_DBG_TRANS_SESSION(session, "Completed unblocking SCSI target\n");
M
Mike Christie 已提交
905 906
}

907
static void __iscsi_unblock_session(struct work_struct *work)
908
{
909 910 911
	struct iscsi_cls_session *session =
			container_of(work, struct iscsi_cls_session,
				     unblock_work);
912
	struct Scsi_Host *shost = iscsi_session_to_shost(session);
913
	struct iscsi_cls_host *ihost = shost->shost_data;
914 915
	unsigned long flags;

916
	ISCSI_DBG_TRANS_SESSION(session, "Unblocking session\n");
917 918 919 920 921
	/*
	 * The recovery and unblock work get run from the same workqueue,
	 * so try to cancel it if it was going to run after this unblock.
	 */
	cancel_delayed_work(&session->recovery_work);
922 923 924
	spin_lock_irqsave(&session->lock, flags);
	session->state = ISCSI_SESSION_LOGGED_IN;
	spin_unlock_irqrestore(&session->lock, flags);
925 926
	/* start IO */
	scsi_target_unblock(&session->dev);
927 928 929 930 931 932
	/*
	 * Only do kernel scanning if the driver is properly hooked into
	 * the async scanning code (drivers like iscsi_tcp do login and
	 * scanning from userspace).
	 */
	if (shost->hostt->scan_finished) {
933
		if (scsi_queue_work(shost, &session->scan_work))
934 935
			atomic_inc(&ihost->nr_scans);
	}
936
	ISCSI_DBG_TRANS_SESSION(session, "Completed unblocking session\n");
937
}
938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953

/**
 * iscsi_unblock_session - set a session as logged in and start IO.
 * @session: iscsi session
 *
 * Mark a session as ready to accept IO.
 */
void iscsi_unblock_session(struct iscsi_cls_session *session)
{
	queue_work(iscsi_eh_timer_workq, &session->unblock_work);
	/*
	 * make sure all the events have completed before tell the driver
	 * it is safe
	 */
	flush_workqueue(iscsi_eh_timer_workq);
}
M
Mike Christie 已提交
954 955
EXPORT_SYMBOL_GPL(iscsi_unblock_session);

956
static void __iscsi_block_session(struct work_struct *work)
M
Mike Christie 已提交
957
{
958 959 960
	struct iscsi_cls_session *session =
			container_of(work, struct iscsi_cls_session,
				     block_work);
961 962
	unsigned long flags;

963
	ISCSI_DBG_TRANS_SESSION(session, "Blocking session\n");
964 965 966
	spin_lock_irqsave(&session->lock, flags);
	session->state = ISCSI_SESSION_FAILED;
	spin_unlock_irqrestore(&session->lock, flags);
M
Mike Christie 已提交
967
	scsi_target_block(&session->dev);
968
	ISCSI_DBG_TRANS_SESSION(session, "Completed SCSI target blocking\n");
969 970 971 972
	if (session->recovery_tmo >= 0)
		queue_delayed_work(iscsi_eh_timer_workq,
				   &session->recovery_work,
				   session->recovery_tmo * HZ);
M
Mike Christie 已提交
973
}
974 975 976 977 978

void iscsi_block_session(struct iscsi_cls_session *session)
{
	queue_work(iscsi_eh_timer_workq, &session->block_work);
}
M
Mike Christie 已提交
979 980
EXPORT_SYMBOL_GPL(iscsi_block_session);

M
Mike Christie 已提交
981 982 983 984 985 986
static void __iscsi_unbind_session(struct work_struct *work)
{
	struct iscsi_cls_session *session =
			container_of(work, struct iscsi_cls_session,
				     unbind_work);
	struct Scsi_Host *shost = iscsi_session_to_shost(session);
987
	struct iscsi_cls_host *ihost = shost->shost_data;
988
	unsigned long flags;
M
Mike Christie 已提交
989

990 991
	ISCSI_DBG_TRANS_SESSION(session, "Unbinding session\n");

M
Mike Christie 已提交
992 993
	/* Prevent new scans and make sure scanning is not in progress */
	mutex_lock(&ihost->mutex);
994 995 996
	spin_lock_irqsave(&session->lock, flags);
	if (session->target_id == ISCSI_MAX_TARGET) {
		spin_unlock_irqrestore(&session->lock, flags);
M
Mike Christie 已提交
997 998 999
		mutex_unlock(&ihost->mutex);
		return;
	}
1000 1001
	session->target_id = ISCSI_MAX_TARGET;
	spin_unlock_irqrestore(&session->lock, flags);
M
Mike Christie 已提交
1002 1003 1004 1005
	mutex_unlock(&ihost->mutex);

	scsi_remove_target(&session->dev);
	iscsi_session_event(session, ISCSI_KEVENT_UNBIND_SESSION);
1006
	ISCSI_DBG_TRANS_SESSION(session, "Completed target removal\n");
M
Mike Christie 已提交
1007 1008
}

1009
struct iscsi_cls_session *
1010 1011
iscsi_alloc_session(struct Scsi_Host *shost, struct iscsi_transport *transport,
		    int dd_size)
1012 1013 1014
{
	struct iscsi_cls_session *session;

1015
	session = kzalloc(sizeof(*session) + dd_size,
1016
			  GFP_KERNEL);
1017
	if (!session)
1018 1019
		return NULL;

1020
	session->transport = transport;
M
Mike Christie 已提交
1021
	session->recovery_tmo = 120;
1022
	session->state = ISCSI_SESSION_FREE;
D
David Howells 已提交
1023
	INIT_DELAYED_WORK(&session->recovery_work, session_recovery_timedout);
M
Mike Christie 已提交
1024
	INIT_LIST_HEAD(&session->sess_list);
1025 1026
	INIT_WORK(&session->unblock_work, __iscsi_unblock_session);
	INIT_WORK(&session->block_work, __iscsi_block_session);
M
Mike Christie 已提交
1027
	INIT_WORK(&session->unbind_work, __iscsi_unbind_session);
1028
	INIT_WORK(&session->scan_work, iscsi_scan_session);
1029
	spin_lock_init(&session->lock);
1030

1031 1032
	/* this is released in the dev's release function */
	scsi_host_get(shost);
1033 1034 1035
	session->dev.parent = &shost->shost_gendev;
	session->dev.release = iscsi_session_release;
	device_initialize(&session->dev);
1036
	if (dd_size)
1037
		session->dd_data = &session[1];
1038 1039

	ISCSI_DBG_TRANS_SESSION(session, "Completed session allocation\n");
1040 1041 1042 1043
	return session;
}
EXPORT_SYMBOL_GPL(iscsi_alloc_session);

1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
static int iscsi_get_next_target_id(struct device *dev, void *data)
{
	struct iscsi_cls_session *session;
	unsigned long flags;
	int err = 0;

	if (!iscsi_is_session_dev(dev))
		return 0;

	session = iscsi_dev_to_session(dev);
	spin_lock_irqsave(&session->lock, flags);
	if (*((unsigned int *) data) == session->target_id)
		err = -EEXIST;
	spin_unlock_irqrestore(&session->lock, flags);
	return err;
}

1061
int iscsi_add_session(struct iscsi_cls_session *session, unsigned int target_id)
1062 1063
{
	struct Scsi_Host *shost = iscsi_session_to_shost(session);
1064
	struct iscsi_cls_host *ihost;
M
Mike Christie 已提交
1065
	unsigned long flags;
1066
	unsigned int id = target_id;
1067
	int err;
1068

M
Mike Christie 已提交
1069
	ihost = shost->shost_data;
1070
	session->sid = atomic_add_return(1, &iscsi_session_nr);
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084

	if (id == ISCSI_MAX_TARGET) {
		for (id = 0; id < ISCSI_MAX_TARGET; id++) {
			err = device_for_each_child(&shost->shost_gendev, &id,
						    iscsi_get_next_target_id);
			if (!err)
				break;
		}

		if (id == ISCSI_MAX_TARGET) {
			iscsi_cls_session_printk(KERN_ERR, session,
						 "Too many iscsi targets. Max "
						 "number of targets is %d.\n",
						 ISCSI_MAX_TARGET - 1);
1085
			err = -EOVERFLOW;
1086 1087 1088 1089
			goto release_host;
		}
	}
	session->target_id = id;
M
Mike Christie 已提交
1090

1091
	dev_set_name(&session->dev, "session%u", session->sid);
1092
	err = device_add(&session->dev);
1093
	if (err) {
1094 1095
		iscsi_cls_session_printk(KERN_ERR, session,
					 "could not register session's dev\n");
1096
		goto release_host;
1097 1098 1099
	}
	transport_register_device(&session->dev);

M
Mike Christie 已提交
1100 1101 1102 1103 1104
	spin_lock_irqsave(&sesslock, flags);
	list_add(&session->sess_list, &sesslist);
	spin_unlock_irqrestore(&sesslock, flags);

	iscsi_session_event(session, ISCSI_KEVENT_CREATE_SESSION);
1105
	ISCSI_DBG_TRANS_SESSION(session, "Completed session adding\n");
1106
	return 0;
M
Mike Christie 已提交
1107

1108 1109 1110
release_host:
	scsi_host_put(shost);
	return err;
1111
}
1112
EXPORT_SYMBOL_GPL(iscsi_add_session);
1113 1114

/**
1115 1116 1117
 * iscsi_create_session - create iscsi class session
 * @shost: scsi host
 * @transport: iscsi transport
1118
 * @dd_size: private driver data size
1119
 * @target_id: which target
1120
 *
1121
 * This can be called from a LLD or iscsi_transport.
1122
 */
1123
struct iscsi_cls_session *
1124 1125
iscsi_create_session(struct Scsi_Host *shost, struct iscsi_transport *transport,
		     int dd_size, unsigned int target_id)
1126 1127 1128
{
	struct iscsi_cls_session *session;

1129
	session = iscsi_alloc_session(shost, transport, dd_size);
1130 1131 1132
	if (!session)
		return NULL;

1133
	if (iscsi_add_session(session, target_id)) {
1134 1135 1136 1137 1138 1139 1140
		iscsi_free_session(session);
		return NULL;
	}
	return session;
}
EXPORT_SYMBOL_GPL(iscsi_create_session);

M
Mike Christie 已提交
1141 1142 1143 1144 1145
static void iscsi_conn_release(struct device *dev)
{
	struct iscsi_cls_conn *conn = iscsi_dev_to_conn(dev);
	struct device *parent = conn->dev.parent;

1146
	ISCSI_DBG_TRANS_CONN(conn, "Releasing conn\n");
M
Mike Christie 已提交
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
	kfree(conn);
	put_device(parent);
}

static int iscsi_is_conn_dev(const struct device *dev)
{
	return dev->release == iscsi_conn_release;
}

static int iscsi_iter_destroy_conn_fn(struct device *dev, void *data)
{
	if (!iscsi_is_conn_dev(dev))
		return 0;
	return iscsi_destroy_conn(iscsi_dev_to_conn(dev));
}

1163
void iscsi_remove_session(struct iscsi_cls_session *session)
1164
{
M
Mike Christie 已提交
1165
	struct Scsi_Host *shost = iscsi_session_to_shost(session);
M
Mike Christie 已提交
1166 1167 1168
	unsigned long flags;
	int err;

1169 1170
	ISCSI_DBG_TRANS_SESSION(session, "Removing session\n");

M
Mike Christie 已提交
1171 1172 1173
	spin_lock_irqsave(&sesslock, flags);
	list_del(&session->sess_list);
	spin_unlock_irqrestore(&sesslock, flags);
M
Mike Christie 已提交
1174

1175 1176 1177 1178 1179
	/* make sure there are no blocks/unblocks queued */
	flush_workqueue(iscsi_eh_timer_workq);
	/* make sure the timedout callout is not running */
	if (!cancel_delayed_work(&session->recovery_work))
		flush_workqueue(iscsi_eh_timer_workq);
M
Mike Christie 已提交
1180 1181 1182
	/*
	 * If we are blocked let commands flow again. The lld or iscsi
	 * layer should set up the queuecommand to fail commands.
1183 1184
	 * We assume that LLD will not be calling block/unblock while
	 * removing the session.
M
Mike Christie 已提交
1185
	 */
1186 1187 1188
	spin_lock_irqsave(&session->lock, flags);
	session->state = ISCSI_SESSION_FREE;
	spin_unlock_irqrestore(&session->lock, flags);
1189

1190 1191
	scsi_target_unblock(&session->dev);
	/* flush running scans then delete devices */
1192
	scsi_flush_work(shost);
1193
	__iscsi_unbind_session(&session->unbind_work);
M
Mike Christie 已提交
1194

M
Mike Christie 已提交
1195 1196 1197 1198
	/* hw iscsi may not have removed all connections from session */
	err = device_for_each_child(&session->dev, NULL,
				    iscsi_iter_destroy_conn_fn);
	if (err)
1199 1200 1201
		iscsi_cls_session_printk(KERN_ERR, session,
					 "Could not delete all connections "
					 "for session. Error %d.\n", err);
1202

1203
	transport_unregister_device(&session->dev);
1204 1205

	ISCSI_DBG_TRANS_SESSION(session, "Completing session removal\n");
1206 1207 1208 1209 1210 1211
	device_del(&session->dev);
}
EXPORT_SYMBOL_GPL(iscsi_remove_session);

void iscsi_free_session(struct iscsi_cls_session *session)
{
1212
	ISCSI_DBG_TRANS_SESSION(session, "Freeing session\n");
M
Mike Christie 已提交
1213
	iscsi_session_event(session, ISCSI_KEVENT_DESTROY_SESSION);
1214
	put_device(&session->dev);
1215
}
1216 1217 1218 1219 1220 1221 1222 1223
EXPORT_SYMBOL_GPL(iscsi_free_session);

/**
 * iscsi_destroy_session - destroy iscsi session
 * @session: iscsi_session
 *
 * Can be called by a LLD or iscsi_transport. There must not be
 * any running connections.
1224
 */
1225 1226 1227
int iscsi_destroy_session(struct iscsi_cls_session *session)
{
	iscsi_remove_session(session);
1228
	ISCSI_DBG_TRANS_SESSION(session, "Completing session destruction\n");
1229 1230 1231
	iscsi_free_session(session);
	return 0;
}
1232 1233 1234 1235 1236
EXPORT_SYMBOL_GPL(iscsi_destroy_session);

/**
 * iscsi_create_conn - create iscsi class connection
 * @session: iscsi cls session
1237
 * @dd_size: private driver data size
1238 1239 1240 1241 1242
 * @cid: connection id
 *
 * This can be called from a LLD or iscsi_transport. The connection
 * is child of the session so cid must be unique for all connections
 * on the session.
1243 1244 1245 1246 1247
 *
 * Since we do not support MCS, cid will normally be zero. In some cases
 * for software iscsi we could be trying to preallocate a connection struct
 * in which case there could be two connection structs and cid would be
 * non-zero.
1248
 */
1249
struct iscsi_cls_conn *
1250
iscsi_create_conn(struct iscsi_cls_session *session, int dd_size, uint32_t cid)
1251 1252 1253
{
	struct iscsi_transport *transport = session->transport;
	struct iscsi_cls_conn *conn;
M
Mike Christie 已提交
1254
	unsigned long flags;
1255 1256
	int err;

1257
	conn = kzalloc(sizeof(*conn) + dd_size, GFP_KERNEL);
1258 1259
	if (!conn)
		return NULL;
1260
	if (dd_size)
1261 1262
		conn->dd_data = &conn[1];

1263
	mutex_init(&conn->ep_mutex);
1264 1265
	INIT_LIST_HEAD(&conn->conn_list);
	conn->transport = transport;
1266
	conn->cid = cid;
1267 1268 1269

	/* this is released in the dev's release function */
	if (!get_device(&session->dev))
1270
		goto free_conn;
1271

1272
	dev_set_name(&conn->dev, "connection%d:%u", session->sid, cid);
1273 1274 1275 1276
	conn->dev.parent = &session->dev;
	conn->dev.release = iscsi_conn_release;
	err = device_register(&conn->dev);
	if (err) {
1277 1278
		iscsi_cls_session_printk(KERN_ERR, session, "could not "
					 "register connection's dev\n");
1279 1280 1281
		goto release_parent_ref;
	}
	transport_register_device(&conn->dev);
M
Mike Christie 已提交
1282 1283 1284 1285

	spin_lock_irqsave(&connlock, flags);
	list_add(&conn->conn_list, &connlist);
	spin_unlock_irqrestore(&connlock, flags);
1286 1287

	ISCSI_DBG_TRANS_CONN(conn, "Completed conn creation\n");
1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
	return conn;

release_parent_ref:
	put_device(&session->dev);
free_conn:
	kfree(conn);
	return NULL;
}

EXPORT_SYMBOL_GPL(iscsi_create_conn);

/**
 * iscsi_destroy_conn - destroy iscsi class connection
1301
 * @conn: iscsi cls session
1302
 *
M
Mike Christie 已提交
1303
 * This can be called from a LLD or iscsi_transport.
1304
 */
1305 1306
int iscsi_destroy_conn(struct iscsi_cls_conn *conn)
{
M
Mike Christie 已提交
1307 1308 1309 1310 1311 1312
	unsigned long flags;

	spin_lock_irqsave(&connlock, flags);
	list_del(&conn->conn_list);
	spin_unlock_irqrestore(&connlock, flags);

1313
	transport_unregister_device(&conn->dev);
1314
	ISCSI_DBG_TRANS_CONN(conn, "Completing conn destruction\n");
1315 1316 1317 1318 1319 1320 1321 1322
	device_unregister(&conn->dev);
	return 0;
}
EXPORT_SYMBOL_GPL(iscsi_destroy_conn);

/*
 * iscsi interface functions
 */
1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
static struct iscsi_internal *
iscsi_if_transport_lookup(struct iscsi_transport *tt)
{
	struct iscsi_internal *priv;
	unsigned long flags;

	spin_lock_irqsave(&iscsi_transport_lock, flags);
	list_for_each_entry(priv, &iscsi_transports, list) {
		if (tt == priv->iscsi_transport) {
			spin_unlock_irqrestore(&iscsi_transport_lock, flags);
			return priv;
		}
	}
	spin_unlock_irqrestore(&iscsi_transport_lock, flags);
	return NULL;
}
L
Linus Torvalds 已提交
1339

1340
static int
1341
iscsi_multicast_skb(struct sk_buff *skb, uint32_t group, gfp_t gfp)
1342
{
1343
	return nlmsg_multicast(nls, skb, 0, group, gfp);
L
Linus Torvalds 已提交
1344 1345
}

1346
int iscsi_recv_pdu(struct iscsi_cls_conn *conn, struct iscsi_hdr *hdr,
1347
		   char *data, uint32_t data_size)
L
Linus Torvalds 已提交
1348
{
1349 1350 1351 1352
	struct nlmsghdr	*nlh;
	struct sk_buff *skb;
	struct iscsi_uevent *ev;
	char *pdu;
1353
	struct iscsi_internal *priv;
1354 1355 1356
	int len = NLMSG_SPACE(sizeof(*ev) + sizeof(struct iscsi_hdr) +
			      data_size);

1357 1358 1359 1360
	priv = iscsi_if_transport_lookup(conn->transport);
	if (!priv)
		return -EINVAL;

1361
	skb = alloc_skb(len, GFP_ATOMIC);
1362
	if (!skb) {
1363
		iscsi_conn_error_event(conn, ISCSI_ERR_CONN_FAILED);
1364 1365
		iscsi_cls_conn_printk(KERN_ERR, conn, "can not deliver "
				      "control PDU: OOM\n");
1366 1367
		return -ENOMEM;
	}
L
Linus Torvalds 已提交
1368

1369
	nlh = __nlmsg_put(skb, 0, 0, 0, (len - sizeof(*nlh)), 0);
1370 1371 1372 1373
	ev = NLMSG_DATA(nlh);
	memset(ev, 0, sizeof(*ev));
	ev->transport_handle = iscsi_handle(conn->transport);
	ev->type = ISCSI_KEVENT_RECV_PDU;
1374 1375
	ev->r.recv_req.cid = conn->cid;
	ev->r.recv_req.sid = iscsi_conn_get_sid(conn);
1376 1377 1378
	pdu = (char*)ev + sizeof(*ev);
	memcpy(pdu, hdr, sizeof(struct iscsi_hdr));
	memcpy(pdu + sizeof(struct iscsi_hdr), data, data_size);
L
Linus Torvalds 已提交
1379

1380
	return iscsi_multicast_skb(skb, ISCSI_NL_GRP_ISCSID, GFP_ATOMIC);
L
Linus Torvalds 已提交
1381
}
1382
EXPORT_SYMBOL_GPL(iscsi_recv_pdu);
L
Linus Torvalds 已提交
1383

1384 1385 1386 1387 1388 1389 1390 1391 1392
int iscsi_offload_mesg(struct Scsi_Host *shost,
		       struct iscsi_transport *transport, uint32_t type,
		       char *data, uint16_t data_size)
{
	struct nlmsghdr	*nlh;
	struct sk_buff *skb;
	struct iscsi_uevent *ev;
	int len = NLMSG_SPACE(sizeof(*ev) + data_size);

1393
	skb = alloc_skb(len, GFP_ATOMIC);
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414
	if (!skb) {
		printk(KERN_ERR "can not deliver iscsi offload message:OOM\n");
		return -ENOMEM;
	}

	nlh = __nlmsg_put(skb, 0, 0, 0, (len - sizeof(*nlh)), 0);
	ev = NLMSG_DATA(nlh);
	memset(ev, 0, sizeof(*ev));
	ev->type = type;
	ev->transport_handle = iscsi_handle(transport);
	switch (type) {
	case ISCSI_KEVENT_PATH_REQ:
		ev->r.req_path.host_no = shost->host_no;
		break;
	case ISCSI_KEVENT_IF_DOWN:
		ev->r.notify_if_down.host_no = shost->host_no;
		break;
	}

	memcpy((char *)ev + sizeof(*ev), data, data_size);

1415
	return iscsi_multicast_skb(skb, ISCSI_NL_GRP_UIP, GFP_ATOMIC);
1416 1417 1418
}
EXPORT_SYMBOL_GPL(iscsi_offload_mesg);

1419
void iscsi_conn_error_event(struct iscsi_cls_conn *conn, enum iscsi_err error)
L
Linus Torvalds 已提交
1420
{
1421 1422 1423
	struct nlmsghdr	*nlh;
	struct sk_buff	*skb;
	struct iscsi_uevent *ev;
1424
	struct iscsi_internal *priv;
1425 1426
	int len = NLMSG_SPACE(sizeof(*ev));

1427 1428 1429 1430
	priv = iscsi_if_transport_lookup(conn->transport);
	if (!priv)
		return;

1431
	skb = alloc_skb(len, GFP_ATOMIC);
1432
	if (!skb) {
1433 1434
		iscsi_cls_conn_printk(KERN_ERR, conn, "gracefully ignored "
				      "conn error (%d)\n", error);
1435 1436 1437
		return;
	}

1438
	nlh = __nlmsg_put(skb, 0, 0, 0, (len - sizeof(*nlh)), 0);
1439 1440 1441 1442
	ev = NLMSG_DATA(nlh);
	ev->transport_handle = iscsi_handle(conn->transport);
	ev->type = ISCSI_KEVENT_CONN_ERROR;
	ev->r.connerror.error = error;
1443 1444
	ev->r.connerror.cid = conn->cid;
	ev->r.connerror.sid = iscsi_conn_get_sid(conn);
L
Linus Torvalds 已提交
1445

1446
	iscsi_multicast_skb(skb, ISCSI_NL_GRP_ISCSID, GFP_ATOMIC);
L
Linus Torvalds 已提交
1447

1448 1449
	iscsi_cls_conn_printk(KERN_INFO, conn, "detected conn error (%d)\n",
			      error);
1450
}
1451
EXPORT_SYMBOL_GPL(iscsi_conn_error_event);
1452

1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
void iscsi_conn_login_event(struct iscsi_cls_conn *conn,
			    enum iscsi_conn_state state)
{
	struct nlmsghdr *nlh;
	struct sk_buff  *skb;
	struct iscsi_uevent *ev;
	struct iscsi_internal *priv;
	int len = NLMSG_SPACE(sizeof(*ev));

	priv = iscsi_if_transport_lookup(conn->transport);
	if (!priv)
		return;

	skb = alloc_skb(len, GFP_ATOMIC);
	if (!skb) {
		iscsi_cls_conn_printk(KERN_ERR, conn, "gracefully ignored "
				      "conn login (%d)\n", state);
		return;
	}

	nlh = __nlmsg_put(skb, 0, 0, 0, (len - sizeof(*nlh)), 0);
	ev = NLMSG_DATA(nlh);
	ev->transport_handle = iscsi_handle(conn->transport);
	ev->type = ISCSI_KEVENT_CONN_LOGIN_STATE;
	ev->r.conn_login.state = state;
	ev->r.conn_login.cid = conn->cid;
	ev->r.conn_login.sid = iscsi_conn_get_sid(conn);
	iscsi_multicast_skb(skb, ISCSI_NL_GRP_ISCSID, GFP_ATOMIC);

	iscsi_cls_conn_printk(KERN_INFO, conn, "detected conn login (%d)\n",
			      state);
}
EXPORT_SYMBOL_GPL(iscsi_conn_login_event);

1487
static int
1488 1489
iscsi_if_send_reply(uint32_t group, int seq, int type, int done, int multi,
		    void *payload, int size)
1490 1491 1492 1493 1494 1495 1496
{
	struct sk_buff	*skb;
	struct nlmsghdr	*nlh;
	int len = NLMSG_SPACE(size);
	int flags = multi ? NLM_F_MULTI : 0;
	int t = done ? NLMSG_DONE : type;

1497
	skb = alloc_skb(len, GFP_ATOMIC);
1498 1499 1500 1501
	if (!skb) {
		printk(KERN_ERR "Could not allocate skb to send reply.\n");
		return -ENOMEM;
	}
1502

1503
	nlh = __nlmsg_put(skb, 0, 0, t, (len - sizeof(*nlh)), 0);
1504 1505
	nlh->nlmsg_flags = flags;
	memcpy(NLMSG_DATA(nlh), payload, size);
1506
	return iscsi_multicast_skb(skb, group, GFP_ATOMIC);
L
Linus Torvalds 已提交
1507 1508
}

1509
static int
1510
iscsi_if_get_stats(struct iscsi_transport *transport, struct nlmsghdr *nlh)
1511 1512 1513 1514 1515 1516 1517
{
	struct iscsi_uevent *ev = NLMSG_DATA(nlh);
	struct iscsi_stats *stats;
	struct sk_buff *skbstat;
	struct iscsi_cls_conn *conn;
	struct nlmsghdr	*nlhstat;
	struct iscsi_uevent *evstat;
1518
	struct iscsi_internal *priv;
1519 1520 1521 1522 1523
	int len = NLMSG_SPACE(sizeof(*ev) +
			      sizeof(struct iscsi_stats) +
			      sizeof(struct iscsi_stats_custom) *
			      ISCSI_STATS_CUSTOM_MAX);
	int err = 0;
1524

1525 1526 1527 1528
	priv = iscsi_if_transport_lookup(transport);
	if (!priv)
		return -EINVAL;

1529
	conn = iscsi_conn_lookup(ev->u.get_stats.sid, ev->u.get_stats.cid);
1530 1531
	if (!conn)
		return -EEXIST;
1532

1533 1534
	do {
		int actual_size;
1535

1536
		skbstat = alloc_skb(len, GFP_ATOMIC);
1537
		if (!skbstat) {
1538 1539
			iscsi_cls_conn_printk(KERN_ERR, conn, "can not "
					      "deliver stats: OOM\n");
1540 1541 1542
			return -ENOMEM;
		}

1543
		nlhstat = __nlmsg_put(skbstat, 0, 0, 0,
1544 1545 1546 1547 1548
				      (len - sizeof(*nlhstat)), 0);
		evstat = NLMSG_DATA(nlhstat);
		memset(evstat, 0, sizeof(*evstat));
		evstat->transport_handle = iscsi_handle(conn->transport);
		evstat->type = nlh->nlmsg_type;
1549 1550 1551 1552
		evstat->u.get_stats.cid =
			ev->u.get_stats.cid;
		evstat->u.get_stats.sid =
			ev->u.get_stats.sid;
1553 1554 1555 1556
		stats = (struct iscsi_stats *)
			((char*)evstat + sizeof(*evstat));
		memset(stats, 0, sizeof(*stats));

1557
		transport->get_stats(conn, stats);
1558 1559 1560 1561 1562 1563
		actual_size = NLMSG_SPACE(sizeof(struct iscsi_uevent) +
					  sizeof(struct iscsi_stats) +
					  sizeof(struct iscsi_stats_custom) *
					  stats->custom_length);
		actual_size -= sizeof(*nlhstat);
		actual_size = NLMSG_LENGTH(actual_size);
1564
		skb_trim(skbstat, NLMSG_ALIGN(actual_size));
1565 1566
		nlhstat->nlmsg_len = actual_size;

1567 1568
		err = iscsi_multicast_skb(skbstat, ISCSI_NL_GRP_ISCSID,
					  GFP_ATOMIC);
1569 1570 1571
	} while (err < 0 && err != -ECONNREFUSED);

	return err;
1572 1573
}

1574
/**
M
Mike Christie 已提交
1575 1576 1577
 * iscsi_session_event - send session destr. completion event
 * @session: iscsi class session
 * @event: type of event
1578
 */
M
Mike Christie 已提交
1579 1580
int iscsi_session_event(struct iscsi_cls_session *session,
			enum iscsi_uevent_e event)
1581 1582 1583 1584 1585 1586 1587 1588
{
	struct iscsi_internal *priv;
	struct Scsi_Host *shost;
	struct iscsi_uevent *ev;
	struct sk_buff  *skb;
	struct nlmsghdr *nlh;
	int rc, len = NLMSG_SPACE(sizeof(*ev));

M
Mike Christie 已提交
1589
	priv = iscsi_if_transport_lookup(session->transport);
1590 1591 1592 1593
	if (!priv)
		return -EINVAL;
	shost = iscsi_session_to_shost(session);

1594
	skb = alloc_skb(len, GFP_KERNEL);
1595
	if (!skb) {
1596 1597 1598
		iscsi_cls_session_printk(KERN_ERR, session,
					 "Cannot notify userspace of session "
					 "event %u\n", event);
1599 1600 1601
		return -ENOMEM;
	}

1602
	nlh = __nlmsg_put(skb, 0, 0, 0, (len - sizeof(*nlh)), 0);
1603
	ev = NLMSG_DATA(nlh);
M
Mike Christie 已提交
1604
	ev->transport_handle = iscsi_handle(session->transport);
1605

M
Mike Christie 已提交
1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
	ev->type = event;
	switch (event) {
	case ISCSI_KEVENT_DESTROY_SESSION:
		ev->r.d_session.host_no = shost->host_no;
		ev->r.d_session.sid = session->sid;
		break;
	case ISCSI_KEVENT_CREATE_SESSION:
		ev->r.c_session_ret.host_no = shost->host_no;
		ev->r.c_session_ret.sid = session->sid;
		break;
	case ISCSI_KEVENT_UNBIND_SESSION:
		ev->r.unbind_session.host_no = shost->host_no;
		ev->r.unbind_session.sid = session->sid;
		break;
	default:
1621 1622
		iscsi_cls_session_printk(KERN_ERR, session, "Invalid event "
					 "%u.\n", event);
M
Mike Christie 已提交
1623
		kfree_skb(skb);
1624 1625 1626 1627 1628 1629 1630
		return -EINVAL;
	}

	/*
	 * this will occur if the daemon is not up, so we just warn
	 * the user and when the daemon is restarted it will handle it
	 */
1631
	rc = iscsi_multicast_skb(skb, ISCSI_NL_GRP_ISCSID, GFP_KERNEL);
1632
	if (rc == -ESRCH)
1633 1634 1635 1636
		iscsi_cls_session_printk(KERN_ERR, session,
					 "Cannot notify userspace of session "
					 "event %u. Check iscsi daemon\n",
					 event);
1637 1638 1639

	ISCSI_DBG_TRANS_SESSION(session, "Completed handling event %d rc %d\n",
				event, rc);
1640 1641
	return rc;
}
M
Mike Christie 已提交
1642
EXPORT_SYMBOL_GPL(iscsi_session_event);
1643

1644
static int
1645 1646
iscsi_if_create_session(struct iscsi_internal *priv, struct iscsi_endpoint *ep,
			struct iscsi_uevent *ev, uint32_t initial_cmdsn,
1647
			uint16_t cmds_max, uint16_t queue_depth)
1648 1649
{
	struct iscsi_transport *transport = priv->iscsi_transport;
1650
	struct iscsi_cls_session *session;
1651
	struct Scsi_Host *shost;
1652

1653
	session = transport->create_session(ep, cmds_max, queue_depth,
1654
					    initial_cmdsn);
1655
	if (!session)
1656
		return -ENOMEM;
1657

1658 1659
	shost = iscsi_session_to_shost(session);
	ev->r.c_session_ret.host_no = shost->host_no;
1660
	ev->r.c_session_ret.sid = session->sid;
1661 1662
	ISCSI_DBG_TRANS_SESSION(session,
				"Completed creating transport session\n");
1663 1664 1665 1666
	return 0;
}

static int
1667
iscsi_if_create_conn(struct iscsi_transport *transport, struct iscsi_uevent *ev)
1668
{
1669
	struct iscsi_cls_conn *conn;
1670
	struct iscsi_cls_session *session;
1671

1672 1673
	session = iscsi_session_lookup(ev->u.c_conn.sid);
	if (!session) {
1674
		printk(KERN_ERR "iscsi: invalid session %d.\n",
1675
		       ev->u.c_conn.sid);
1676
		return -EINVAL;
1677
	}
1678

1679
	conn = transport->create_conn(session, ev->u.c_conn.cid);
1680
	if (!conn) {
1681 1682
		iscsi_cls_session_printk(KERN_ERR, session,
					 "couldn't create a new connection.");
1683
		return -ENOMEM;
1684
	}
1685

1686 1687
	ev->r.c_conn_ret.sid = session->sid;
	ev->r.c_conn_ret.cid = conn->cid;
1688 1689

	ISCSI_DBG_TRANS_CONN(conn, "Completed creating transport conn\n");
1690
	return 0;
L
Linus Torvalds 已提交
1691 1692
}

1693 1694 1695
static int
iscsi_if_destroy_conn(struct iscsi_transport *transport, struct iscsi_uevent *ev)
{
1696
	struct iscsi_cls_conn *conn;
1697

1698
	conn = iscsi_conn_lookup(ev->u.d_conn.sid, ev->u.d_conn.cid);
1699
	if (!conn)
1700
		return -EINVAL;
1701

1702
	ISCSI_DBG_TRANS_CONN(conn, "Destroying transport conn\n");
1703 1704
	if (transport->destroy_conn)
		transport->destroy_conn(conn);
1705

1706
	return 0;
1707 1708
}

1709 1710 1711 1712 1713 1714
static int
iscsi_set_param(struct iscsi_transport *transport, struct iscsi_uevent *ev)
{
	char *data = (char*)ev + sizeof(*ev);
	struct iscsi_cls_conn *conn;
	struct iscsi_cls_session *session;
1715
	int err = 0, value = 0;
1716 1717 1718 1719 1720 1721 1722

	session = iscsi_session_lookup(ev->u.set_param.sid);
	conn = iscsi_conn_lookup(ev->u.set_param.sid, ev->u.set_param.cid);
	if (!conn || !session)
		return -EINVAL;

	switch (ev->u.set_param.param) {
M
Mike Christie 已提交
1723
	case ISCSI_PARAM_SESS_RECOVERY_TMO:
1724
		sscanf(data, "%d", &value);
1725
		session->recovery_tmo = value;
M
Mike Christie 已提交
1726
		break;
1727
	default:
1728 1729
		err = transport->set_param(conn, ev->u.set_param.param,
					   data, ev->u.set_param.len);
1730 1731 1732 1733 1734
	}

	return err;
}

1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771
static int iscsi_if_ep_connect(struct iscsi_transport *transport,
			       struct iscsi_uevent *ev, int msg_type)
{
	struct iscsi_endpoint *ep;
	struct sockaddr *dst_addr;
	struct Scsi_Host *shost = NULL;
	int non_blocking, err = 0;

	if (!transport->ep_connect)
		return -EINVAL;

	if (msg_type == ISCSI_UEVENT_TRANSPORT_EP_CONNECT_THROUGH_HOST) {
		shost = scsi_host_lookup(ev->u.ep_connect_through_host.host_no);
		if (!shost) {
			printk(KERN_ERR "ep connect failed. Could not find "
			       "host no %u\n",
			       ev->u.ep_connect_through_host.host_no);
			return -ENODEV;
		}
		non_blocking = ev->u.ep_connect_through_host.non_blocking;
	} else
		non_blocking = ev->u.ep_connect.non_blocking;

	dst_addr = (struct sockaddr *)((char*)ev + sizeof(*ev));
	ep = transport->ep_connect(shost, dst_addr, non_blocking);
	if (IS_ERR(ep)) {
		err = PTR_ERR(ep);
		goto release_host;
	}

	ev->r.ep_connect_ret.handle = ep->id;
release_host:
	if (shost)
		scsi_host_put(shost);
	return err;
}

1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794
static int iscsi_if_ep_disconnect(struct iscsi_transport *transport,
				  u64 ep_handle)
{
	struct iscsi_cls_conn *conn;
	struct iscsi_endpoint *ep;

	if (!transport->ep_disconnect)
		return -EINVAL;

	ep = iscsi_lookup_endpoint(ep_handle);
	if (!ep)
		return -EINVAL;
	conn = ep->conn;
	if (conn) {
		mutex_lock(&conn->ep_mutex);
		conn->ep = NULL;
		mutex_unlock(&conn->ep_mutex);
	}

	transport->ep_disconnect(ep);
	return 0;
}

1795 1796 1797 1798
static int
iscsi_if_transport_ep(struct iscsi_transport *transport,
		      struct iscsi_uevent *ev, int msg_type)
{
1799
	struct iscsi_endpoint *ep;
1800 1801 1802
	int rc = 0;

	switch (msg_type) {
1803
	case ISCSI_UEVENT_TRANSPORT_EP_CONNECT_THROUGH_HOST:
1804
	case ISCSI_UEVENT_TRANSPORT_EP_CONNECT:
1805
		rc = iscsi_if_ep_connect(transport, ev, msg_type);
1806 1807 1808 1809 1810
		break;
	case ISCSI_UEVENT_TRANSPORT_EP_POLL:
		if (!transport->ep_poll)
			return -EINVAL;

1811 1812 1813 1814 1815
		ep = iscsi_lookup_endpoint(ev->u.ep_poll.ep_handle);
		if (!ep)
			return -EINVAL;

		ev->r.retcode = transport->ep_poll(ep,
1816 1817 1818
						   ev->u.ep_poll.timeout_ms);
		break;
	case ISCSI_UEVENT_TRANSPORT_EP_DISCONNECT:
1819 1820
		rc = iscsi_if_ep_disconnect(transport,
					    ev->u.ep_disconnect.ep_handle);
1821 1822 1823 1824 1825
		break;
	}
	return rc;
}

1826 1827 1828 1829
static int
iscsi_tgt_dscvr(struct iscsi_transport *transport,
		struct iscsi_uevent *ev)
{
1830
	struct Scsi_Host *shost;
1831
	struct sockaddr *dst_addr;
1832
	int err;
1833 1834 1835 1836

	if (!transport->tgt_dscvr)
		return -EINVAL;

1837
	shost = scsi_host_lookup(ev->u.tgt_dscvr.host_no);
1838
	if (!shost) {
1839 1840 1841 1842 1843 1844
		printk(KERN_ERR "target discovery could not find host no %u\n",
		       ev->u.tgt_dscvr.host_no);
		return -ENODEV;
	}


1845
	dst_addr = (struct sockaddr *)((char*)ev + sizeof(*ev));
1846 1847 1848 1849
	err = transport->tgt_dscvr(shost, ev->u.tgt_dscvr.type,
				   ev->u.tgt_dscvr.enable, dst_addr);
	scsi_host_put(shost);
	return err;
1850 1851
}

1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863
static int
iscsi_set_host_param(struct iscsi_transport *transport,
		     struct iscsi_uevent *ev)
{
	char *data = (char*)ev + sizeof(*ev);
	struct Scsi_Host *shost;
	int err;

	if (!transport->set_host_param)
		return -ENOSYS;

	shost = scsi_host_lookup(ev->u.set_host_param.host_no);
1864
	if (!shost) {
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875
		printk(KERN_ERR "set_host_param could not find host no %u\n",
		       ev->u.set_host_param.host_no);
		return -ENODEV;
	}

	err = transport->set_host_param(shost, ev->u.set_host_param.param,
					data, ev->u.set_host_param.len);
	scsi_host_put(shost);
	return err;
}

1876
static int
1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899
iscsi_set_path(struct iscsi_transport *transport, struct iscsi_uevent *ev)
{
	struct Scsi_Host *shost;
	struct iscsi_path *params;
	int err;

	if (!transport->set_path)
		return -ENOSYS;

	shost = scsi_host_lookup(ev->u.set_path.host_no);
	if (!shost) {
		printk(KERN_ERR "set path could not find host no %u\n",
		       ev->u.set_path.host_no);
		return -ENODEV;
	}

	params = (struct iscsi_path *)((char *)ev + sizeof(*ev));
	err = transport->set_path(shost, params);

	scsi_host_put(shost);
	return err;
}

1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923
static int
iscsi_set_iface_params(struct iscsi_transport *transport,
		       struct iscsi_uevent *ev)
{
	char *data = (char *)ev + sizeof(*ev);
	struct Scsi_Host *shost;
	int err;

	if (!transport->set_iface_param)
		return -ENOSYS;

	shost = scsi_host_lookup(ev->u.set_iface_params.host_no);
	if (!shost) {
		printk(KERN_ERR "set_iface_params could not find host no %u\n",
		       ev->u.set_iface_params.host_no);
		return -ENODEV;
	}

	err = transport->set_iface_param(shost, data,
					 ev->u.set_iface_params.count);
	scsi_host_put(shost);
	return err;
}

1924 1925
static int
iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, uint32_t *group)
1926 1927 1928 1929 1930
{
	int err = 0;
	struct iscsi_uevent *ev = NLMSG_DATA(nlh);
	struct iscsi_transport *transport = NULL;
	struct iscsi_internal *priv;
1931 1932
	struct iscsi_cls_session *session;
	struct iscsi_cls_conn *conn;
1933
	struct iscsi_endpoint *ep = NULL;
1934

1935 1936 1937 1938 1939
	if (nlh->nlmsg_type == ISCSI_UEVENT_PATH_UPDATE)
		*group = ISCSI_NL_GRP_UIP;
	else
		*group = ISCSI_NL_GRP_ISCSID;

1940 1941 1942 1943 1944
	priv = iscsi_if_transport_lookup(iscsi_ptr(ev->transport_handle));
	if (!priv)
		return -EINVAL;
	transport = priv->iscsi_transport;

1945 1946 1947
	if (!try_module_get(transport->owner))
		return -EINVAL;

1948 1949
	switch (nlh->nlmsg_type) {
	case ISCSI_UEVENT_CREATE_SESSION:
1950
		err = iscsi_if_create_session(priv, ep, ev,
1951 1952 1953 1954 1955
					      ev->u.c_session.initial_cmdsn,
					      ev->u.c_session.cmds_max,
					      ev->u.c_session.queue_depth);
		break;
	case ISCSI_UEVENT_CREATE_BOUND_SESSION:
1956
		ep = iscsi_lookup_endpoint(ev->u.c_bound_session.ep_handle);
1957 1958 1959 1960
		if (!ep) {
			err = -EINVAL;
			break;
		}
1961 1962

		err = iscsi_if_create_session(priv, ep, ev,
1963 1964 1965
					ev->u.c_bound_session.initial_cmdsn,
					ev->u.c_bound_session.cmds_max,
					ev->u.c_bound_session.queue_depth);
1966 1967
		break;
	case ISCSI_UEVENT_DESTROY_SESSION:
1968
		session = iscsi_session_lookup(ev->u.d_session.sid);
M
Mike Christie 已提交
1969
		if (session)
1970
			transport->destroy_session(session);
M
Mike Christie 已提交
1971 1972 1973 1974 1975 1976
		else
			err = -EINVAL;
		break;
	case ISCSI_UEVENT_UNBIND_SESSION:
		session = iscsi_session_lookup(ev->u.d_session.sid);
		if (session)
1977 1978
			scsi_queue_work(iscsi_session_to_shost(session),
					&session->unbind_work);
M
Mike Christie 已提交
1979
		else
1980
			err = -EINVAL;
1981 1982 1983 1984 1985 1986 1987 1988
		break;
	case ISCSI_UEVENT_CREATE_CONN:
		err = iscsi_if_create_conn(transport, ev);
		break;
	case ISCSI_UEVENT_DESTROY_CONN:
		err = iscsi_if_destroy_conn(transport, ev);
		break;
	case ISCSI_UEVENT_BIND_CONN:
1989 1990
		session = iscsi_session_lookup(ev->u.b_conn.sid);
		conn = iscsi_conn_lookup(ev->u.b_conn.sid, ev->u.b_conn.cid);
1991

1992 1993 1994 1995
		if (conn && conn->ep)
			iscsi_if_ep_disconnect(transport, conn->ep->id);

		if (!session || !conn) {
1996
			err = -EINVAL;
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
			break;
		}

		ev->r.retcode =	transport->bind_conn(session, conn,
						ev->u.b_conn.transport_eph,
						ev->u.b_conn.is_leading);
		if (ev->r.retcode || !transport->ep_connect)
			break;

		ep = iscsi_lookup_endpoint(ev->u.b_conn.transport_eph);
		if (ep) {
			ep->conn = conn;

			mutex_lock(&conn->ep_mutex);
			conn->ep = ep;
			mutex_unlock(&conn->ep_mutex);
		} else
			iscsi_cls_conn_printk(KERN_ERR, conn,
					      "Could not set ep conn "
					      "binding\n");
2017 2018
		break;
	case ISCSI_UEVENT_SET_PARAM:
2019
		err = iscsi_set_param(transport, ev);
2020 2021
		break;
	case ISCSI_UEVENT_START_CONN:
2022
		conn = iscsi_conn_lookup(ev->u.start_conn.sid, ev->u.start_conn.cid);
2023 2024 2025 2026
		if (conn)
			ev->r.retcode = transport->start_conn(conn);
		else
			err = -EINVAL;
2027 2028
		break;
	case ISCSI_UEVENT_STOP_CONN:
2029
		conn = iscsi_conn_lookup(ev->u.stop_conn.sid, ev->u.stop_conn.cid);
2030 2031 2032 2033
		if (conn)
			transport->stop_conn(conn, ev->u.stop_conn.flag);
		else
			err = -EINVAL;
2034 2035
		break;
	case ISCSI_UEVENT_SEND_PDU:
2036
		conn = iscsi_conn_lookup(ev->u.send_pdu.sid, ev->u.send_pdu.cid);
2037 2038 2039 2040 2041 2042 2043
		if (conn)
			ev->r.retcode =	transport->send_pdu(conn,
				(struct iscsi_hdr*)((char*)ev + sizeof(*ev)),
				(char*)ev + sizeof(*ev) + ev->u.send_pdu.hdr_size,
				ev->u.send_pdu.data_size);
		else
			err = -EINVAL;
2044 2045
		break;
	case ISCSI_UEVENT_GET_STATS:
2046
		err = iscsi_if_get_stats(transport, nlh);
2047
		break;
2048 2049 2050
	case ISCSI_UEVENT_TRANSPORT_EP_CONNECT:
	case ISCSI_UEVENT_TRANSPORT_EP_POLL:
	case ISCSI_UEVENT_TRANSPORT_EP_DISCONNECT:
2051
	case ISCSI_UEVENT_TRANSPORT_EP_CONNECT_THROUGH_HOST:
2052 2053
		err = iscsi_if_transport_ep(transport, ev, nlh->nlmsg_type);
		break;
2054 2055 2056
	case ISCSI_UEVENT_TGT_DSCVR:
		err = iscsi_tgt_dscvr(transport, ev);
		break;
2057 2058 2059
	case ISCSI_UEVENT_SET_HOST_PARAM:
		err = iscsi_set_host_param(transport, ev);
		break;
2060 2061 2062
	case ISCSI_UEVENT_PATH_UPDATE:
		err = iscsi_set_path(transport, ev);
		break;
2063 2064 2065
	case ISCSI_UEVENT_SET_IFACE_PARAMS:
		err = iscsi_set_iface_params(transport, ev);
		break;
2066
	default:
2067
		err = -ENOSYS;
2068 2069 2070
		break;
	}

2071
	module_put(transport->owner);
2072 2073 2074
	return err;
}

2075
/*
2076 2077
 * Get message from skb.  Each message is processed by iscsi_if_recv_msg.
 * Malformed skbs with wrong lengths or invalid creds are not processed.
2078
 */
2079
static void
2080
iscsi_if_rx(struct sk_buff *skb)
2081
{
2082
	mutex_lock(&rx_queue_mutex);
2083 2084 2085 2086 2087
	while (skb->len >= NLMSG_SPACE(0)) {
		int err;
		uint32_t rlen;
		struct nlmsghdr	*nlh;
		struct iscsi_uevent *ev;
2088
		uint32_t group;
2089 2090 2091 2092 2093

		nlh = nlmsg_hdr(skb);
		if (nlh->nlmsg_len < sizeof(*nlh) ||
		    skb->len < nlh->nlmsg_len) {
			break;
2094 2095
		}

2096 2097 2098 2099
		ev = NLMSG_DATA(nlh);
		rlen = NLMSG_ALIGN(nlh->nlmsg_len);
		if (rlen > skb->len)
			rlen = skb->len;
2100

2101
		err = iscsi_if_recv_msg(skb, nlh, &group);
2102 2103 2104
		if (err) {
			ev->type = ISCSI_KEVENT_IF_ERROR;
			ev->iferror = err;
2105
		}
2106 2107 2108 2109 2110 2111 2112 2113 2114
		do {
			/*
			 * special case for GET_STATS:
			 * on success - sending reply and stats from
			 * inside of if_recv_msg(),
			 * on error - fall through.
			 */
			if (ev->type == ISCSI_UEVENT_GET_STATS && !err)
				break;
2115
			err = iscsi_if_send_reply(group, nlh->nlmsg_seq,
2116 2117 2118
				nlh->nlmsg_type, 0, 0, ev, sizeof(*ev));
		} while (err < 0 && err != -ECONNREFUSED);
		skb_pull(skb, rlen);
2119
	}
2120
	mutex_unlock(&rx_queue_mutex);
2121
}
L
Linus Torvalds 已提交
2122

2123
#define ISCSI_CLASS_ATTR(_prefix,_name,_mode,_show,_store)		\
2124
struct device_attribute dev_attr_##_prefix##_##_name =	\
2125 2126
	__ATTR(_name,_mode,_show,_store)

L
Linus Torvalds 已提交
2127
/*
2128
 * iSCSI connection attrs
L
Linus Torvalds 已提交
2129
 */
2130
#define iscsi_conn_attr_show(param)					\
2131
static ssize_t								\
2132 2133
show_conn_param_##param(struct device *dev, 				\
			struct device_attribute *attr, char *buf)	\
2134
{									\
2135
	struct iscsi_cls_conn *conn = iscsi_dev_to_conn(dev->parent);	\
2136
	struct iscsi_transport *t = conn->transport;			\
2137
	return t->get_conn_param(conn, param, buf);			\
2138 2139
}

2140 2141 2142
#define iscsi_conn_attr(field, param)					\
	iscsi_conn_attr_show(param)					\
static ISCSI_CLASS_ATTR(conn, field, S_IRUGO, show_conn_param_##param,	\
2143
			NULL);
2144

2145 2146 2147 2148 2149 2150 2151 2152 2153
iscsi_conn_attr(max_recv_dlength, ISCSI_PARAM_MAX_RECV_DLENGTH);
iscsi_conn_attr(max_xmit_dlength, ISCSI_PARAM_MAX_XMIT_DLENGTH);
iscsi_conn_attr(header_digest, ISCSI_PARAM_HDRDGST_EN);
iscsi_conn_attr(data_digest, ISCSI_PARAM_DATADGST_EN);
iscsi_conn_attr(ifmarker, ISCSI_PARAM_IFMARKER_EN);
iscsi_conn_attr(ofmarker, ISCSI_PARAM_OFMARKER_EN);
iscsi_conn_attr(persistent_port, ISCSI_PARAM_PERSISTENT_PORT);
iscsi_conn_attr(exp_statsn, ISCSI_PARAM_EXP_STATSN);
iscsi_conn_attr(persistent_address, ISCSI_PARAM_PERSISTENT_ADDRESS);
2154 2155
iscsi_conn_attr(ping_tmo, ISCSI_PARAM_PING_TMO);
iscsi_conn_attr(recv_tmo, ISCSI_PARAM_RECV_TMO);
L
Linus Torvalds 已提交
2156

2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193
#define iscsi_conn_ep_attr_show(param)					\
static ssize_t show_conn_ep_param_##param(struct device *dev,		\
					  struct device_attribute *attr,\
					  char *buf)			\
{									\
	struct iscsi_cls_conn *conn = iscsi_dev_to_conn(dev->parent);	\
	struct iscsi_transport *t = conn->transport;			\
	struct iscsi_endpoint *ep;					\
	ssize_t rc;							\
									\
	/*								\
	 * Need to make sure ep_disconnect does not free the LLD's	\
	 * interconnect resources while we are trying to read them.	\
	 */								\
	mutex_lock(&conn->ep_mutex);					\
	ep = conn->ep;							\
	if (!ep && t->ep_connect) {					\
		mutex_unlock(&conn->ep_mutex);				\
		return -ENOTCONN;					\
	}								\
									\
	if (ep)								\
		rc = t->get_ep_param(ep, param, buf);			\
	else								\
		rc = t->get_conn_param(conn, param, buf);		\
	mutex_unlock(&conn->ep_mutex);					\
	return rc;							\
}

#define iscsi_conn_ep_attr(field, param)				\
	iscsi_conn_ep_attr_show(param)					\
static ISCSI_CLASS_ATTR(conn, field, S_IRUGO,				\
			show_conn_ep_param_##param, NULL);

iscsi_conn_ep_attr(address, ISCSI_PARAM_CONN_ADDRESS);
iscsi_conn_ep_attr(port, ISCSI_PARAM_CONN_PORT);

2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257
static struct attribute *iscsi_conn_attrs[] = {
	&dev_attr_conn_max_recv_dlength.attr,
	&dev_attr_conn_max_xmit_dlength.attr,
	&dev_attr_conn_header_digest.attr,
	&dev_attr_conn_data_digest.attr,
	&dev_attr_conn_ifmarker.attr,
	&dev_attr_conn_ofmarker.attr,
	&dev_attr_conn_address.attr,
	&dev_attr_conn_port.attr,
	&dev_attr_conn_exp_statsn.attr,
	&dev_attr_conn_persistent_address.attr,
	&dev_attr_conn_persistent_port.attr,
	&dev_attr_conn_ping_tmo.attr,
	&dev_attr_conn_recv_tmo.attr,
	NULL,
};

static mode_t iscsi_conn_attr_is_visible(struct kobject *kobj,
					 struct attribute *attr, int i)
{
	struct device *cdev = container_of(kobj, struct device, kobj);
	struct iscsi_cls_conn *conn = transport_class_to_conn(cdev);
	struct iscsi_transport *t = conn->transport;
	int param;

	if (attr == &dev_attr_conn_max_recv_dlength.attr)
		param = ISCSI_PARAM_MAX_RECV_DLENGTH;
	else if (attr == &dev_attr_conn_max_xmit_dlength.attr)
		param = ISCSI_PARAM_MAX_XMIT_DLENGTH;
	else if (attr == &dev_attr_conn_header_digest.attr)
		param = ISCSI_PARAM_HDRDGST_EN;
	else if (attr == &dev_attr_conn_data_digest.attr)
		param = ISCSI_PARAM_DATADGST_EN;
	else if (attr == &dev_attr_conn_ifmarker.attr)
		param = ISCSI_PARAM_IFMARKER_EN;
	else if (attr == &dev_attr_conn_ofmarker.attr)
		param = ISCSI_PARAM_OFMARKER_EN;
	else if (attr == &dev_attr_conn_address.attr)
		param = ISCSI_PARAM_CONN_ADDRESS;
	else if (attr == &dev_attr_conn_port.attr)
		param = ISCSI_PARAM_CONN_PORT;
	else if (attr == &dev_attr_conn_exp_statsn.attr)
		param = ISCSI_PARAM_EXP_STATSN;
	else if (attr == &dev_attr_conn_persistent_address.attr)
		param = ISCSI_PARAM_PERSISTENT_ADDRESS;
	else if (attr == &dev_attr_conn_persistent_port.attr)
		param = ISCSI_PARAM_PERSISTENT_PORT;
	else if (attr == &dev_attr_conn_ping_tmo.attr)
		param = ISCSI_PARAM_PING_TMO;
	else if (attr == &dev_attr_conn_recv_tmo.attr)
		param = ISCSI_PARAM_RECV_TMO;
	else {
		WARN_ONCE(1, "Invalid conn attr");
		return 0;
	}

	return t->attr_is_visible(ISCSI_PARAM, param);
}

static struct attribute_group iscsi_conn_group = {
	.attrs = iscsi_conn_attrs,
	.is_visible = iscsi_conn_attr_is_visible,
};

L
Linus Torvalds 已提交
2258
/*
2259
 * iSCSI session attrs
L
Linus Torvalds 已提交
2260
 */
2261
#define iscsi_session_attr_show(param, perm)				\
2262
static ssize_t								\
2263 2264
show_session_param_##param(struct device *dev,				\
			   struct device_attribute *attr, char *buf)	\
2265
{									\
2266 2267
	struct iscsi_cls_session *session = 				\
		iscsi_dev_to_session(dev->parent);			\
2268
	struct iscsi_transport *t = session->transport;			\
2269 2270 2271
									\
	if (perm && !capable(CAP_SYS_ADMIN))				\
		return -EACCES;						\
2272
	return t->get_session_param(session, param, buf);		\
2273 2274
}

2275 2276
#define iscsi_session_attr(field, param, perm)				\
	iscsi_session_attr_show(param, perm)				\
2277
static ISCSI_CLASS_ATTR(sess, field, S_IRUGO, show_session_param_##param, \
2278
			NULL);
2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292
iscsi_session_attr(targetname, ISCSI_PARAM_TARGET_NAME, 0);
iscsi_session_attr(initial_r2t, ISCSI_PARAM_INITIAL_R2T_EN, 0);
iscsi_session_attr(max_outstanding_r2t, ISCSI_PARAM_MAX_R2T, 0);
iscsi_session_attr(immediate_data, ISCSI_PARAM_IMM_DATA_EN, 0);
iscsi_session_attr(first_burst_len, ISCSI_PARAM_FIRST_BURST, 0);
iscsi_session_attr(max_burst_len, ISCSI_PARAM_MAX_BURST, 0);
iscsi_session_attr(data_pdu_in_order, ISCSI_PARAM_PDU_INORDER_EN, 0);
iscsi_session_attr(data_seq_in_order, ISCSI_PARAM_DATASEQ_INORDER_EN, 0);
iscsi_session_attr(erl, ISCSI_PARAM_ERL, 0);
iscsi_session_attr(tpgt, ISCSI_PARAM_TPGT, 0);
iscsi_session_attr(username, ISCSI_PARAM_USERNAME, 1);
iscsi_session_attr(username_in, ISCSI_PARAM_USERNAME_IN, 1);
iscsi_session_attr(password, ISCSI_PARAM_PASSWORD, 1);
iscsi_session_attr(password_in, ISCSI_PARAM_PASSWORD_IN, 1);
2293 2294 2295
iscsi_session_attr(fast_abort, ISCSI_PARAM_FAST_ABORT, 0);
iscsi_session_attr(abort_tmo, ISCSI_PARAM_ABORT_TMO, 0);
iscsi_session_attr(lu_reset_tmo, ISCSI_PARAM_LU_RESET_TMO, 0);
2296
iscsi_session_attr(tgt_reset_tmo, ISCSI_PARAM_TGT_RESET_TMO, 0);
2297
iscsi_session_attr(ifacename, ISCSI_PARAM_IFACE_NAME, 0);
2298 2299
iscsi_session_attr(initiatorname, ISCSI_PARAM_INITIATOR_NAME, 0);
iscsi_session_attr(targetalias, ISCSI_PARAM_TARGET_ALIAS, 0);
L
Linus Torvalds 已提交
2300

2301
static ssize_t
2302 2303
show_priv_session_state(struct device *dev, struct device_attribute *attr,
			char *buf)
2304
{
2305
	struct iscsi_cls_session *session = iscsi_dev_to_session(dev->parent);
2306 2307 2308 2309 2310
	return sprintf(buf, "%s\n", iscsi_session_state_name(session->state));
}
static ISCSI_CLASS_ATTR(priv_sess, state, S_IRUGO, show_priv_session_state,
			NULL);

2311 2312
#define iscsi_priv_session_attr_show(field, format)			\
static ssize_t								\
2313 2314
show_priv_session_##field(struct device *dev, 				\
			  struct device_attribute *attr, char *buf)	\
2315
{									\
2316 2317
	struct iscsi_cls_session *session = 				\
			iscsi_dev_to_session(dev->parent);		\
2318 2319
	if (session->field == -1)					\
		return sprintf(buf, "off\n");				\
2320 2321 2322
	return sprintf(buf, format"\n", session->field);		\
}

2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347
#define iscsi_priv_session_attr_store(field)				\
static ssize_t								\
store_priv_session_##field(struct device *dev,				\
			   struct device_attribute *attr,		\
			   const char *buf, size_t count)		\
{									\
	int val;							\
	char *cp;							\
	struct iscsi_cls_session *session =				\
		iscsi_dev_to_session(dev->parent);			\
	if ((session->state == ISCSI_SESSION_FREE) ||			\
	    (session->state == ISCSI_SESSION_FAILED))			\
		return -EBUSY;						\
	if (strncmp(buf, "off", 3) == 0)				\
		session->field = -1;					\
	else {								\
		val = simple_strtoul(buf, &cp, 0);			\
		if (*cp != '\0' && *cp != '\n')				\
			return -EINVAL;					\
		session->field = val;					\
	}								\
	return count;							\
}

#define iscsi_priv_session_rw_attr(field, format)			\
2348
	iscsi_priv_session_attr_show(field, format)			\
2349
	iscsi_priv_session_attr_store(field)				\
2350
static ISCSI_CLASS_ATTR(priv_sess, field, S_IRUGO | S_IWUSR,		\
2351 2352 2353
			show_priv_session_##field,			\
			store_priv_session_##field)
iscsi_priv_session_rw_attr(recovery_tmo, "%d");
2354

2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448
static struct attribute *iscsi_session_attrs[] = {
	&dev_attr_sess_initial_r2t.attr,
	&dev_attr_sess_max_outstanding_r2t.attr,
	&dev_attr_sess_immediate_data.attr,
	&dev_attr_sess_first_burst_len.attr,
	&dev_attr_sess_max_burst_len.attr,
	&dev_attr_sess_data_pdu_in_order.attr,
	&dev_attr_sess_data_seq_in_order.attr,
	&dev_attr_sess_erl.attr,
	&dev_attr_sess_targetname.attr,
	&dev_attr_sess_tpgt.attr,
	&dev_attr_sess_password.attr,
	&dev_attr_sess_password_in.attr,
	&dev_attr_sess_username.attr,
	&dev_attr_sess_username_in.attr,
	&dev_attr_sess_fast_abort.attr,
	&dev_attr_sess_abort_tmo.attr,
	&dev_attr_sess_lu_reset_tmo.attr,
	&dev_attr_sess_tgt_reset_tmo.attr,
	&dev_attr_sess_ifacename.attr,
	&dev_attr_sess_initiatorname.attr,
	&dev_attr_sess_targetalias.attr,
	&dev_attr_priv_sess_recovery_tmo.attr,
	&dev_attr_priv_sess_state.attr,
	NULL,
};

static mode_t iscsi_session_attr_is_visible(struct kobject *kobj,
					    struct attribute *attr, int i)
{
	struct device *cdev = container_of(kobj, struct device, kobj);
	struct iscsi_cls_session *session = transport_class_to_session(cdev);
	struct iscsi_transport *t = session->transport;
	int param;

	if (attr == &dev_attr_sess_initial_r2t.attr)
		param = ISCSI_PARAM_INITIAL_R2T_EN;
	else if (attr == &dev_attr_sess_max_outstanding_r2t.attr)
		param = ISCSI_PARAM_MAX_R2T;
	else if (attr == &dev_attr_sess_immediate_data.attr)
		param = ISCSI_PARAM_IMM_DATA_EN;
	else if (attr == &dev_attr_sess_first_burst_len.attr)
		param = ISCSI_PARAM_FIRST_BURST;
	else if (attr == &dev_attr_sess_max_burst_len.attr)
		param = ISCSI_PARAM_MAX_BURST;
	else if (attr == &dev_attr_sess_data_pdu_in_order.attr)
		param = ISCSI_PARAM_PDU_INORDER_EN;
	else if (attr == &dev_attr_sess_data_seq_in_order.attr)
		param = ISCSI_PARAM_DATASEQ_INORDER_EN;
	else if (attr == &dev_attr_sess_erl.attr)
		param = ISCSI_PARAM_ERL;
	else if (attr == &dev_attr_sess_targetname.attr)
		param = ISCSI_PARAM_TARGET_NAME;
	else if (attr == &dev_attr_sess_tpgt.attr)
		param = ISCSI_PARAM_TPGT;
	else if (attr == &dev_attr_sess_password.attr)
		param = ISCSI_PARAM_USERNAME;
	else if (attr == &dev_attr_sess_password_in.attr)
		param = ISCSI_PARAM_USERNAME_IN;
	else if (attr == &dev_attr_sess_username.attr)
		param = ISCSI_PARAM_PASSWORD;
	else if (attr == &dev_attr_sess_username_in.attr)
		param = ISCSI_PARAM_PASSWORD_IN;
	else if (attr == &dev_attr_sess_fast_abort.attr)
		param = ISCSI_PARAM_FAST_ABORT;
	else if (attr == &dev_attr_sess_abort_tmo.attr)
		param = ISCSI_PARAM_ABORT_TMO;
	else if (attr == &dev_attr_sess_lu_reset_tmo.attr)
		param = ISCSI_PARAM_LU_RESET_TMO;
	else if (attr == &dev_attr_sess_tgt_reset_tmo.attr)
		param = ISCSI_PARAM_TGT_RESET_TMO;
	else if (attr == &dev_attr_sess_ifacename.attr)
		param = ISCSI_PARAM_IFACE_NAME;
	else if (attr == &dev_attr_sess_initiatorname.attr)
		param = ISCSI_PARAM_INITIATOR_NAME;
	else if (attr == &dev_attr_sess_targetalias.attr)
		param = ISCSI_PARAM_TARGET_ALIAS;
	else if (attr == &dev_attr_priv_sess_recovery_tmo.attr)
		return S_IRUGO | S_IWUSR;
	else if (attr == &dev_attr_priv_sess_state.attr)
		return S_IRUGO;
	else {
		WARN_ONCE(1, "Invalid session attr");
		return 0;
	}

	return t->attr_is_visible(ISCSI_PARAM, param);
}

static struct attribute_group iscsi_session_group = {
	.attrs = iscsi_session_attrs,
	.is_visible = iscsi_session_attr_is_visible,
};

2449 2450 2451 2452 2453
/*
 * iSCSI host attrs
 */
#define iscsi_host_attr_show(param)					\
static ssize_t								\
2454 2455
show_host_param_##param(struct device *dev, 				\
			struct device_attribute *attr, char *buf)	\
2456
{									\
2457
	struct Scsi_Host *shost = transport_class_to_shost(dev);	\
2458 2459 2460 2461 2462 2463 2464 2465 2466
	struct iscsi_internal *priv = to_iscsi_internal(shost->transportt); \
	return priv->iscsi_transport->get_host_param(shost, param, buf); \
}

#define iscsi_host_attr(field, param)					\
	iscsi_host_attr_show(param)					\
static ISCSI_CLASS_ATTR(host, field, S_IRUGO, show_host_param_##param,	\
			NULL);

2467
iscsi_host_attr(netdev, ISCSI_HOST_PARAM_NETDEV_NAME);
2468
iscsi_host_attr(hwaddress, ISCSI_HOST_PARAM_HWADDRESS);
2469
iscsi_host_attr(ipaddress, ISCSI_HOST_PARAM_IPADDRESS);
2470
iscsi_host_attr(initiatorname, ISCSI_HOST_PARAM_INITIATOR_NAME);
2471

2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507
static struct attribute *iscsi_host_attrs[] = {
	&dev_attr_host_netdev.attr,
	&dev_attr_host_hwaddress.attr,
	&dev_attr_host_ipaddress.attr,
	&dev_attr_host_initiatorname.attr,
	NULL,
};

static mode_t iscsi_host_attr_is_visible(struct kobject *kobj,
					 struct attribute *attr, int i)
{
	struct device *cdev = container_of(kobj, struct device, kobj);
	struct Scsi_Host *shost = transport_class_to_shost(cdev);
	struct iscsi_internal *priv = to_iscsi_internal(shost->transportt);
	int param;

	if (attr == &dev_attr_host_netdev.attr)
		param = ISCSI_HOST_PARAM_NETDEV_NAME;
	else if (attr == &dev_attr_host_hwaddress.attr)
		param = ISCSI_HOST_PARAM_HWADDRESS;
	else if (attr == &dev_attr_host_ipaddress.attr)
		param = ISCSI_HOST_PARAM_IPADDRESS;
	else if (attr == &dev_attr_host_initiatorname.attr)
		param = ISCSI_HOST_PARAM_INITIATOR_NAME;
	else {
		WARN_ONCE(1, "Invalid host attr");
		return 0;
	}

	return priv->iscsi_transport->attr_is_visible(ISCSI_HOST_PARAM, param);
}

static struct attribute_group iscsi_host_group = {
	.attrs = iscsi_host_attrs,
	.is_visible = iscsi_host_attr_is_visible,
};
2508

2509 2510
static int iscsi_session_match(struct attribute_container *cont,
			   struct device *dev)
L
Linus Torvalds 已提交
2511
{
2512
	struct iscsi_cls_session *session;
L
Linus Torvalds 已提交
2513
	struct Scsi_Host *shost;
2514 2515 2516 2517
	struct iscsi_internal *priv;

	if (!iscsi_is_session_dev(dev))
		return 0;
L
Linus Torvalds 已提交
2518

2519 2520
	session = iscsi_dev_to_session(dev);
	shost = iscsi_session_to_shost(session);
2521
	if (!shost->transportt)
L
Linus Torvalds 已提交
2522 2523
		return 0;

2524 2525
	priv = to_iscsi_internal(shost->transportt);
	if (priv->session_cont.ac.class != &iscsi_session_class.class)
L
Linus Torvalds 已提交
2526 2527
		return 0;

2528
	return &priv->session_cont.ac == cont;
L
Linus Torvalds 已提交
2529 2530
}

2531 2532 2533
static int iscsi_conn_match(struct attribute_container *cont,
			   struct device *dev)
{
2534 2535
	struct iscsi_cls_session *session;
	struct iscsi_cls_conn *conn;
L
Linus Torvalds 已提交
2536
	struct Scsi_Host *shost;
2537
	struct iscsi_internal *priv;
L
Linus Torvalds 已提交
2538

2539
	if (!iscsi_is_conn_dev(dev))
L
Linus Torvalds 已提交
2540 2541
		return 0;

2542 2543 2544 2545
	conn = iscsi_dev_to_conn(dev);
	session = iscsi_dev_to_session(conn->dev.parent);
	shost = iscsi_session_to_shost(session);

2546
	if (!shost->transportt)
L
Linus Torvalds 已提交
2547 2548
		return 0;

2549 2550 2551
	priv = to_iscsi_internal(shost->transportt);
	if (priv->conn_cont.ac.class != &iscsi_connection_class.class)
		return 0;
L
Linus Torvalds 已提交
2552

2553 2554 2555
	return &priv->conn_cont.ac == cont;
}

M
Mike Christie 已提交
2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573
static int iscsi_host_match(struct attribute_container *cont,
			    struct device *dev)
{
	struct Scsi_Host *shost;
	struct iscsi_internal *priv;

	if (!scsi_is_host_device(dev))
		return 0;

	shost = dev_to_shost(dev);
	if (!shost->transportt  ||
	    shost->transportt->host_attrs.ac.class != &iscsi_host_class.class)
		return 0;

        priv = to_iscsi_internal(shost->transportt);
        return &priv->t.host_attrs.ac == cont;
}

2574 2575
struct scsi_transport_template *
iscsi_register_transport(struct iscsi_transport *tt)
2576 2577 2578
{
	struct iscsi_internal *priv;
	unsigned long flags;
2579
	int err;
2580 2581 2582 2583 2584

	BUG_ON(!tt);

	priv = iscsi_if_transport_lookup(tt);
	if (priv)
2585
		return NULL;
2586

J
Jes Sorensen 已提交
2587
	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
2588
	if (!priv)
2589
		return NULL;
2590 2591
	INIT_LIST_HEAD(&priv->list);
	priv->iscsi_transport = tt;
M
Mike Christie 已提交
2592
	priv->t.user_scan = iscsi_user_scan;
2593
	priv->t.create_work_queue = 1;
2594

2595
	priv->dev.class = &iscsi_transport_class;
2596
	dev_set_name(&priv->dev, "%s", tt->name);
2597
	err = device_register(&priv->dev);
2598 2599 2600
	if (err)
		goto free_priv;

2601
	err = sysfs_create_group(&priv->dev.kobj, &iscsi_transport_group);
2602
	if (err)
2603
		goto unregister_dev;
2604

M
Mike Christie 已提交
2605 2606 2607
	/* host parameters */
	priv->t.host_attrs.ac.class = &iscsi_host_class.class;
	priv->t.host_attrs.ac.match = iscsi_host_match;
2608
	priv->t.host_attrs.ac.grp = &iscsi_host_group;
2609
	priv->t.host_size = sizeof(struct iscsi_cls_host);
M
Mike Christie 已提交
2610 2611
	transport_container_register(&priv->t.host_attrs);

2612 2613 2614
	/* connection parameters */
	priv->conn_cont.ac.class = &iscsi_connection_class.class;
	priv->conn_cont.ac.match = iscsi_conn_match;
2615
	priv->conn_cont.ac.grp = &iscsi_conn_group;
2616
	transport_container_register(&priv->conn_cont);
L
Linus Torvalds 已提交
2617

2618 2619 2620
	/* session parameters */
	priv->session_cont.ac.class = &iscsi_session_class.class;
	priv->session_cont.ac.match = iscsi_session_match;
2621
	priv->session_cont.ac.grp = &iscsi_session_group;
2622 2623 2624 2625 2626 2627 2628
	transport_container_register(&priv->session_cont);

	spin_lock_irqsave(&iscsi_transport_lock, flags);
	list_add(&priv->list, &iscsi_transports);
	spin_unlock_irqrestore(&iscsi_transport_lock, flags);

	printk(KERN_NOTICE "iscsi: registered transport (%s)\n", tt->name);
2629
	return &priv->t;
L
Linus Torvalds 已提交
2630

2631 2632
unregister_dev:
	device_unregister(&priv->dev);
2633
	return NULL;
2634 2635
free_priv:
	kfree(priv);
2636
	return NULL;
L
Linus Torvalds 已提交
2637
}
2638 2639 2640 2641 2642 2643 2644 2645 2646
EXPORT_SYMBOL_GPL(iscsi_register_transport);

int iscsi_unregister_transport(struct iscsi_transport *tt)
{
	struct iscsi_internal *priv;
	unsigned long flags;

	BUG_ON(!tt);

2647
	mutex_lock(&rx_queue_mutex);
2648 2649 2650 2651 2652 2653 2654 2655 2656 2657

	priv = iscsi_if_transport_lookup(tt);
	BUG_ON (!priv);

	spin_lock_irqsave(&iscsi_transport_lock, flags);
	list_del(&priv->list);
	spin_unlock_irqrestore(&iscsi_transport_lock, flags);

	transport_container_unregister(&priv->conn_cont);
	transport_container_unregister(&priv->session_cont);
M
Mike Christie 已提交
2658
	transport_container_unregister(&priv->t.host_attrs);
2659

2660 2661
	sysfs_remove_group(&priv->dev.kobj, &iscsi_transport_group);
	device_unregister(&priv->dev);
2662
	mutex_unlock(&rx_queue_mutex);
L
Linus Torvalds 已提交
2663

2664 2665 2666
	return 0;
}
EXPORT_SYMBOL_GPL(iscsi_unregister_transport);
L
Linus Torvalds 已提交
2667 2668 2669

static __init int iscsi_transport_init(void)
{
2670
	int err;
L
Linus Torvalds 已提交
2671

M
Meelis Roos 已提交
2672
	printk(KERN_INFO "Loading iSCSI transport class v%s.\n",
2673 2674
		ISCSI_TRANSPORT_VERSION);

2675 2676
	atomic_set(&iscsi_session_nr, 0);

2677
	err = class_register(&iscsi_transport_class);
L
Linus Torvalds 已提交
2678 2679
	if (err)
		return err;
2680

2681
	err = class_register(&iscsi_endpoint_class);
2682 2683 2684
	if (err)
		goto unregister_transport_class;

2685
	err = class_register(&iscsi_iface_class);
2686 2687 2688
	if (err)
		goto unregister_endpoint_class;

2689 2690 2691 2692
	err = transport_class_register(&iscsi_host_class);
	if (err)
		goto unregister_iface_class;

M
Mike Christie 已提交
2693 2694 2695 2696
	err = transport_class_register(&iscsi_connection_class);
	if (err)
		goto unregister_host_class;

2697 2698 2699 2700
	err = transport_class_register(&iscsi_session_class);
	if (err)
		goto unregister_conn_class;

2701 2702
	nls = netlink_kernel_create(&init_net, NETLINK_ISCSI, 1, iscsi_if_rx,
				    NULL, THIS_MODULE);
2703 2704
	if (!nls) {
		err = -ENOBUFS;
2705
		goto unregister_session_class;
2706 2707
	}

2708 2709 2710 2711
	iscsi_eh_timer_workq = create_singlethread_workqueue("iscsi_eh");
	if (!iscsi_eh_timer_workq)
		goto release_nls;

2712
	return 0;
2713

2714
release_nls:
2715
	netlink_kernel_release(nls);
2716 2717 2718 2719
unregister_session_class:
	transport_class_unregister(&iscsi_session_class);
unregister_conn_class:
	transport_class_unregister(&iscsi_connection_class);
M
Mike Christie 已提交
2720 2721
unregister_host_class:
	transport_class_unregister(&iscsi_host_class);
2722 2723
unregister_iface_class:
	class_unregister(&iscsi_iface_class);
2724 2725
unregister_endpoint_class:
	class_unregister(&iscsi_endpoint_class);
2726 2727 2728
unregister_transport_class:
	class_unregister(&iscsi_transport_class);
	return err;
L
Linus Torvalds 已提交
2729 2730 2731 2732
}

static void __exit iscsi_transport_exit(void)
{
2733
	destroy_workqueue(iscsi_eh_timer_workq);
2734
	netlink_kernel_release(nls);
2735 2736
	transport_class_unregister(&iscsi_connection_class);
	transport_class_unregister(&iscsi_session_class);
M
Mike Christie 已提交
2737
	transport_class_unregister(&iscsi_host_class);
2738
	class_unregister(&iscsi_endpoint_class);
2739
	class_unregister(&iscsi_iface_class);
2740
	class_unregister(&iscsi_transport_class);
L
Linus Torvalds 已提交
2741 2742 2743 2744 2745
}

module_init(iscsi_transport_init);
module_exit(iscsi_transport_exit);

2746 2747 2748 2749
MODULE_AUTHOR("Mike Christie <michaelc@cs.wisc.edu>, "
	      "Dmitry Yusupov <dmitry_yus@yahoo.com>, "
	      "Alex Aizman <itn780@yahoo.com>");
MODULE_DESCRIPTION("iSCSI Transport Interface");
L
Linus Torvalds 已提交
2750
MODULE_LICENSE("GPL");
2751
MODULE_VERSION(ISCSI_TRANSPORT_VERSION);
S
Stephen Hemminger 已提交
2752
MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_ISCSI);