scsi_transport_iscsi.c 44.5 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/mempool.h>
25
#include <linux/mutex.h>
26
#include <net/tcp.h>
L
Linus Torvalds 已提交
27 28 29 30 31
#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>
32
#include <scsi/iscsi_if.h>
L
Linus Torvalds 已提交
33

M
Mike Christie 已提交
34
#define ISCSI_SESSION_ATTRS 11
35
#define ISCSI_CONN_ATTRS 11
M
Mike Christie 已提交
36
#define ISCSI_HOST_ATTRS 0
L
Linus Torvalds 已提交
37 38

struct iscsi_internal {
39
	int daemon_pid;
L
Linus Torvalds 已提交
40
	struct scsi_transport_template t;
41 42 43
	struct iscsi_transport *iscsi_transport;
	struct list_head list;
	struct class_device cdev;
M
Mike Christie 已提交
44 45

	struct class_device_attribute *host_attrs[ISCSI_HOST_ATTRS + 1];
46 47 48
	struct transport_container conn_cont;
	struct class_device_attribute *conn_attrs[ISCSI_CONN_ATTRS + 1];
	struct transport_container session_cont;
L
Linus Torvalds 已提交
49 50 51
	struct class_device_attribute *session_attrs[ISCSI_SESSION_ATTRS + 1];
};

52 53
static int iscsi_session_nr;	/* sysfs session id for next new session */

54 55 56
/*
 * list of registered transports and lock that must
 * be held while accessing list. The iscsi_transport_lock must
57
 * be acquired after the rx_queue_mutex.
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
 */
static LIST_HEAD(iscsi_transports);
static DEFINE_SPINLOCK(iscsi_transport_lock);

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

#define cdev_to_iscsi_internal(_cdev) \
	container_of(_cdev, struct iscsi_internal, cdev)

static void iscsi_transport_release(struct class_device *cdev)
{
	struct iscsi_internal *priv = cdev_to_iscsi_internal(cdev);
	kfree(priv);
}
L
Linus Torvalds 已提交
73

74 75 76 77 78 79 80 81 82 83 84 85 86
/*
 * iscsi_transport_class represents the iscsi_transports that are
 * registered.
 */
static struct class iscsi_transport_class = {
	.name = "iscsi_transport",
	.release = iscsi_transport_release,
};

static ssize_t
show_transport_handle(struct class_device *cdev, char *buf)
{
	struct iscsi_internal *priv = cdev_to_iscsi_internal(cdev);
87
	return sprintf(buf, "%llu\n", (unsigned long long)iscsi_handle(priv->iscsi_transport));
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
}
static CLASS_DEVICE_ATTR(handle, S_IRUGO, show_transport_handle, NULL);

#define show_transport_attr(name, format)				\
static ssize_t								\
show_transport_##name(struct class_device *cdev, char *buf)		\
{									\
	struct iscsi_internal *priv = cdev_to_iscsi_internal(cdev);	\
	return sprintf(buf, format"\n", priv->iscsi_transport->name);	\
}									\
static CLASS_DEVICE_ATTR(name, S_IRUGO, show_transport_##name, NULL);

show_transport_attr(caps, "0x%x");
show_transport_attr(max_lun, "%d");
show_transport_attr(max_conn, "%d");
show_transport_attr(max_cmd_len, "%d");

static struct attribute *iscsi_transport_attrs[] = {
	&class_device_attr_handle.attr,
	&class_device_attr_caps.attr,
	&class_device_attr_max_lun.attr,
	&class_device_attr_max_conn.attr,
	&class_device_attr_max_cmd_len.attr,
	NULL,
};

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

M
Mike Christie 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
static int iscsi_setup_host(struct transport_container *tc, struct device *dev,
			    struct class_device *cdev)
{
	struct Scsi_Host *shost = dev_to_shost(dev);
	struct iscsi_host *ihost = shost->shost_data;

	memset(ihost, 0, sizeof(*ihost));
	INIT_LIST_HEAD(&ihost->sessions);
	mutex_init(&ihost->mutex);
	return 0;
}

static DECLARE_TRANSPORT_CLASS(iscsi_host_class,
			       "iscsi_host",
			       iscsi_setup_host,
			       NULL,
			       NULL);

136 137
static DECLARE_TRANSPORT_CLASS(iscsi_session_class,
			       "iscsi_session",
L
Linus Torvalds 已提交
138 139 140 141
			       NULL,
			       NULL,
			       NULL);

142 143
static DECLARE_TRANSPORT_CLASS(iscsi_connection_class,
			       "iscsi_connection",
L
Linus Torvalds 已提交
144 145 146
			       NULL,
			       NULL,
			       NULL);
147 148

static struct sock *nls;
149
static DEFINE_MUTEX(rx_queue_mutex);
150 151 152 153 154 155 156 157 158 159

struct mempool_zone {
	mempool_t *pool;
	atomic_t allocated;
	int size;
	int hiwat;
	struct list_head freequeue;
	spinlock_t freelock;
};

160
static struct mempool_zone *z_reply;
161

L
Linus Torvalds 已提交
162
/*
163 164 165 166
 * Z_MAX_* - actual mempool size allocated at the mempool_zone_init() time
 * Z_HIWAT_* - zone's high watermark when if_error bit will be set to -ENOMEM
 *             so daemon will notice OOM on NETLINK tranposrt level and will
 *             be able to predict or change operational behavior
L
Linus Torvalds 已提交
167
 */
168 169 170 171 172 173 174
#define Z_MAX_REPLY	8
#define Z_HIWAT_REPLY	6
#define Z_MAX_PDU	8
#define Z_HIWAT_PDU	6
#define Z_MAX_ERROR	16
#define Z_HIWAT_ERROR	12

175 176
static LIST_HEAD(sesslist);
static DEFINE_SPINLOCK(sesslock);
177 178
static LIST_HEAD(connlist);
static DEFINE_SPINLOCK(connlock);
179

180 181 182 183 184 185 186 187 188 189
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)
190 191 192 193 194 195
{
	unsigned long flags;
	struct iscsi_cls_session *sess;

	spin_lock_irqsave(&sesslock, flags);
	list_for_each_entry(sess, &sesslist, sess_list) {
196
		if (sess->sid == sid) {
197 198 199 200 201 202 203 204
			spin_unlock_irqrestore(&sesslock, flags);
			return sess;
		}
	}
	spin_unlock_irqrestore(&sesslock, flags);
	return NULL;
}

205 206 207 208
/*
 * Returns the matching connection to a given sid / cid tuple
 */
static struct iscsi_cls_conn *iscsi_conn_lookup(uint32_t sid, uint32_t cid)
209 210 211 212 213 214
{
	unsigned long flags;
	struct iscsi_cls_conn *conn;

	spin_lock_irqsave(&connlock, flags);
	list_for_each_entry(conn, &connlist, conn_list) {
215
		if ((conn->cid == cid) && (iscsi_conn_get_sid(conn) == sid)) {
216 217 218 219 220 221 222 223
			spin_unlock_irqrestore(&connlock, flags);
			return conn;
		}
	}
	spin_unlock_irqrestore(&connlock, flags);
	return NULL;
}

224 225 226 227 228 229 230 231
/*
 * The following functions can be used by LLDs that allocate
 * their own scsi_hosts or by software iscsi LLDs
 */
static void iscsi_session_release(struct device *dev)
{
	struct iscsi_cls_session *session = iscsi_dev_to_session(dev);
	struct Scsi_Host *shost;
232

233 234 235 236
	shost = iscsi_session_to_shost(session);
	scsi_host_put(shost);
	kfree(session);
}
237

238 239 240 241
static int iscsi_is_session_dev(const struct device *dev)
{
	return dev->release == iscsi_session_release;
}
242

M
Mike Christie 已提交
243 244 245 246 247 248 249 250
static int iscsi_user_scan(struct Scsi_Host *shost, uint channel,
			   uint id, uint lun)
{
	struct iscsi_host *ihost = shost->shost_data;
	struct iscsi_cls_session *session;

	mutex_lock(&ihost->mutex);
	list_for_each_entry(session, &ihost->sessions, host_list) {
251
		if ((channel == SCAN_WILD_CARD || channel == 0) &&
M
Mike Christie 已提交
252
		    (id == SCAN_WILD_CARD || id == session->target_id))
253
			scsi_scan_target(&session->dev, 0,
M
Mike Christie 已提交
254 255 256 257 258 259 260 261 262 263 264
					 session->target_id, lun, 1);
	}
	mutex_unlock(&ihost->mutex);

	return 0;
}

static void session_recovery_timedout(void *data)
{
	struct iscsi_cls_session *session = data;

O
Or Gerlitz 已提交
265 266
	dev_printk(KERN_INFO, &session->dev, "iscsi: session recovery timed "
		  "out after %d secs\n", session->recovery_tmo);
M
Mike Christie 已提交
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289

	if (session->transport->session_recovery_timedout)
		session->transport->session_recovery_timedout(session);

	scsi_target_unblock(&session->dev);
}

void iscsi_unblock_session(struct iscsi_cls_session *session)
{
	if (!cancel_delayed_work(&session->recovery_work))
		flush_scheduled_work();
	scsi_target_unblock(&session->dev);
}
EXPORT_SYMBOL_GPL(iscsi_unblock_session);

void iscsi_block_session(struct iscsi_cls_session *session)
{
	scsi_target_block(&session->dev);
	schedule_delayed_work(&session->recovery_work,
			     session->recovery_tmo * HZ);
}
EXPORT_SYMBOL_GPL(iscsi_block_session);

290
struct iscsi_cls_session *
291 292
iscsi_alloc_session(struct Scsi_Host *shost,
		    struct iscsi_transport *transport)
293 294 295
{
	struct iscsi_cls_session *session;

296 297
	session = kzalloc(sizeof(*session) + transport->sessiondata_size,
			  GFP_KERNEL);
298
	if (!session)
299 300
		return NULL;

301
	session->transport = transport;
M
Mike Christie 已提交
302 303 304 305
	session->recovery_tmo = 120;
	INIT_WORK(&session->recovery_work, session_recovery_timedout, session);
	INIT_LIST_HEAD(&session->host_list);
	INIT_LIST_HEAD(&session->sess_list);
306

307 308
	/* this is released in the dev's release function */
	scsi_host_get(shost);
309 310 311
	session->dev.parent = &shost->shost_gendev;
	session->dev.release = iscsi_session_release;
	device_initialize(&session->dev);
312 313
	if (transport->sessiondata_size)
		session->dd_data = &session[1];
314 315 316 317
	return session;
}
EXPORT_SYMBOL_GPL(iscsi_alloc_session);

318
int iscsi_add_session(struct iscsi_cls_session *session, unsigned int target_id)
319 320 321 322
{
	struct Scsi_Host *shost = iscsi_session_to_shost(session);
	struct iscsi_host *ihost;
	int err;
323

M
Mike Christie 已提交
324
	ihost = shost->shost_data;
325
	session->sid = iscsi_session_nr++;
326
	session->target_id = target_id;
M
Mike Christie 已提交
327

328 329
	snprintf(session->dev.bus_id, BUS_ID_SIZE, "session%u",
		 session->sid);
330
	err = device_add(&session->dev);
331 332 333
	if (err) {
		dev_printk(KERN_ERR, &session->dev, "iscsi: could not "
			   "register session's dev\n");
334
		goto release_host;
335 336 337
	}
	transport_register_device(&session->dev);

M
Mike Christie 已提交
338 339 340
	mutex_lock(&ihost->mutex);
	list_add(&session->host_list, &ihost->sessions);
	mutex_unlock(&ihost->mutex);
341
	return 0;
M
Mike Christie 已提交
342

343 344 345
release_host:
	scsi_host_put(shost);
	return err;
346
}
347
EXPORT_SYMBOL_GPL(iscsi_add_session);
348 349

/**
350 351 352
 * iscsi_create_session - create iscsi class session
 * @shost: scsi host
 * @transport: iscsi transport
353
 *
354
 * This can be called from a LLD or iscsi_transport.
355
 **/
356 357
struct iscsi_cls_session *
iscsi_create_session(struct Scsi_Host *shost,
358 359
		     struct iscsi_transport *transport,
		     unsigned int target_id)
360 361 362 363 364 365 366
{
	struct iscsi_cls_session *session;

	session = iscsi_alloc_session(shost, transport);
	if (!session)
		return NULL;

367
	if (iscsi_add_session(session, target_id)) {
368 369 370 371 372 373 374 375
		iscsi_free_session(session);
		return NULL;
	}
	return session;
}
EXPORT_SYMBOL_GPL(iscsi_create_session);

void iscsi_remove_session(struct iscsi_cls_session *session)
376
{
M
Mike Christie 已提交
377 378 379 380 381 382 383 384 385 386
	struct Scsi_Host *shost = iscsi_session_to_shost(session);
	struct iscsi_host *ihost = shost->shost_data;

	if (!cancel_delayed_work(&session->recovery_work))
		flush_scheduled_work();

	mutex_lock(&ihost->mutex);
	list_del(&session->host_list);
	mutex_unlock(&ihost->mutex);

387 388
	scsi_remove_target(&session->dev);

389
	transport_unregister_device(&session->dev);
390 391 392 393 394 395 396
	device_del(&session->dev);
}
EXPORT_SYMBOL_GPL(iscsi_remove_session);

void iscsi_free_session(struct iscsi_cls_session *session)
{
	put_device(&session->dev);
397 398
}

399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
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.
 **/
int iscsi_destroy_session(struct iscsi_cls_session *session)
{
	iscsi_remove_session(session);
	iscsi_free_session(session);
	return 0;
}
414 415
EXPORT_SYMBOL_GPL(iscsi_destroy_session);

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 456 457 458 459 460
static void mempool_zone_destroy(struct mempool_zone *zp)
{
	mempool_destroy(zp->pool);
	kfree(zp);
}

static void*
mempool_zone_alloc_skb(gfp_t gfp_mask, void *pool_data)
{
	struct mempool_zone *zone = pool_data;

	return alloc_skb(zone->size, gfp_mask);
}

static void
mempool_zone_free_skb(void *element, void *pool_data)
{
	kfree_skb(element);
}

static struct mempool_zone *
mempool_zone_init(unsigned max, unsigned size, unsigned hiwat)
{
	struct mempool_zone *zp;

	zp = kzalloc(sizeof(*zp), GFP_KERNEL);
	if (!zp)
		return NULL;

	zp->size = size;
	zp->hiwat = hiwat;
	INIT_LIST_HEAD(&zp->freequeue);
	spin_lock_init(&zp->freelock);
	atomic_set(&zp->allocated, 0);

	zp->pool = mempool_create(max, mempool_zone_alloc_skb,
				  mempool_zone_free_skb, zp);
	if (!zp->pool) {
		kfree(zp);
		return NULL;
	}

	return zp;
}

461 462 463 464 465
static void iscsi_conn_release(struct device *dev)
{
	struct iscsi_cls_conn *conn = iscsi_dev_to_conn(dev);
	struct device *parent = conn->dev.parent;

466 467 468
	mempool_zone_destroy(conn->z_pdu);
	mempool_zone_destroy(conn->z_error);

469 470 471 472 473 474 475 476 477
	kfree(conn);
	put_device(parent);
}

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

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
static int iscsi_create_event_pools(struct iscsi_cls_conn *conn)
{
	conn->z_pdu = mempool_zone_init(Z_MAX_PDU,
			NLMSG_SPACE(sizeof(struct iscsi_uevent) +
				    sizeof(struct iscsi_hdr) +
				    DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH),
			Z_HIWAT_PDU);
	if (!conn->z_pdu) {
		dev_printk(KERN_ERR, &conn->dev, "iscsi: can not allocate "
			   "pdu zone for new conn\n");
		return -ENOMEM;
	}

	conn->z_error = mempool_zone_init(Z_MAX_ERROR,
			NLMSG_SPACE(sizeof(struct iscsi_uevent)),
			Z_HIWAT_ERROR);
	if (!conn->z_error) {
		dev_printk(KERN_ERR, &conn->dev, "iscsi: can not allocate "
			   "error zone for new conn\n");
		mempool_zone_destroy(conn->z_pdu);
		return -ENOMEM;
	}
	return 0;
}

503 504 505 506 507 508 509 510
/**
 * iscsi_create_conn - create iscsi class connection
 * @session: iscsi cls session
 * @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.
511 512 513 514 515
 *
 * 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.
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
 **/
struct iscsi_cls_conn *
iscsi_create_conn(struct iscsi_cls_session *session, uint32_t cid)
{
	struct iscsi_transport *transport = session->transport;
	struct iscsi_cls_conn *conn;
	int err;

	conn = kzalloc(sizeof(*conn) + transport->conndata_size, GFP_KERNEL);
	if (!conn)
		return NULL;

	if (transport->conndata_size)
		conn->dd_data = &conn[1];

	INIT_LIST_HEAD(&conn->conn_list);
	conn->transport = transport;
533
	conn->cid = cid;
534

535 536 537
	if (iscsi_create_event_pools(conn))
		goto free_conn;

538 539
	/* this is released in the dev's release function */
	if (!get_device(&session->dev))
540
		goto free_conn_pools;
541

542
	snprintf(conn->dev.bus_id, BUS_ID_SIZE, "connection%d:%u",
543
		 session->sid, cid);
544 545 546 547 548 549 550 551 552 553 554 555 556
	conn->dev.parent = &session->dev;
	conn->dev.release = iscsi_conn_release;
	err = device_register(&conn->dev);
	if (err) {
		dev_printk(KERN_ERR, &conn->dev, "iscsi: could not register "
			   "connection's dev\n");
		goto release_parent_ref;
	}
	transport_register_device(&conn->dev);
	return conn;

release_parent_ref:
	put_device(&session->dev);
557 558
free_conn_pools:

559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
free_conn:
	kfree(conn);
	return NULL;
}

EXPORT_SYMBOL_GPL(iscsi_create_conn);

/**
 * iscsi_destroy_conn - destroy iscsi class connection
 * @session: iscsi cls session
 *
 * This can be called from a LLD or iscsi_transport.
 **/
int iscsi_destroy_conn(struct iscsi_cls_conn *conn)
{
	transport_unregister_device(&conn->dev);
	device_unregister(&conn->dev);
	return 0;
}

EXPORT_SYMBOL_GPL(iscsi_destroy_conn);

/*
 * iscsi interface functions
 */
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
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 已提交
600

601 602 603 604
static inline struct list_head *skb_to_lh(struct sk_buff *skb)
{
	return (struct list_head *)&skb->cb;
}
L
Linus Torvalds 已提交
605

606 607 608 609 610
static void
mempool_zone_complete(struct mempool_zone *zone)
{
	unsigned long flags;
	struct list_head *lh, *n;
L
Linus Torvalds 已提交
611

612 613 614 615 616 617 618 619 620 621 622
	spin_lock_irqsave(&zone->freelock, flags);
	list_for_each_safe(lh, n, &zone->freequeue) {
		struct sk_buff *skb = (struct sk_buff *)((char *)lh -
				offsetof(struct sk_buff, cb));
		if (!skb_shared(skb)) {
			list_del(skb_to_lh(skb));
			mempool_free(skb, zone->pool);
			atomic_dec(&zone->allocated);
		}
	}
	spin_unlock_irqrestore(&zone->freelock, flags);
L
Linus Torvalds 已提交
623 624
}

625 626
static struct sk_buff*
mempool_zone_get_skb(struct mempool_zone *zone)
L
Linus Torvalds 已提交
627
{
628 629 630 631 632 633 634
	struct sk_buff *skb;

	skb = mempool_alloc(zone->pool, GFP_ATOMIC);
	if (skb)
		atomic_inc(&zone->allocated);
	return skb;
}
L
Linus Torvalds 已提交
635

636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
static int
iscsi_broadcast_skb(struct mempool_zone *zone, struct sk_buff *skb)
{
	unsigned long flags;
	int rc;

	skb_get(skb);
	rc = netlink_broadcast(nls, skb, 0, 1, GFP_KERNEL);
	if (rc < 0) {
		mempool_free(skb, zone->pool);
		printk(KERN_ERR "iscsi: can not broadcast skb (%d)\n", rc);
		return rc;
	}

	spin_lock_irqsave(&zone->freelock, flags);
	INIT_LIST_HEAD(skb_to_lh(skb));
	list_add(skb_to_lh(skb), &zone->freequeue);
	spin_unlock_irqrestore(&zone->freelock, flags);
	return 0;
}

657
static int
658
iscsi_unicast_skb(struct mempool_zone *zone, struct sk_buff *skb, int pid)
659 660 661
{
	unsigned long flags;
	int rc;
L
Linus Torvalds 已提交
662

663
	skb_get(skb);
664
	rc = netlink_unicast(nls, skb, pid, MSG_DONTWAIT);
665 666 667 668 669 670 671
	if (rc < 0) {
		mempool_free(skb, zone->pool);
		printk(KERN_ERR "iscsi: can not unicast skb (%d)\n", rc);
		return rc;
	}

	spin_lock_irqsave(&zone->freelock, flags);
M
Mike Christie 已提交
672
	INIT_LIST_HEAD(skb_to_lh(skb));
673 674 675 676
	list_add(skb_to_lh(skb), &zone->freequeue);
	spin_unlock_irqrestore(&zone->freelock, flags);

	return 0;
L
Linus Torvalds 已提交
677 678
}

679
int iscsi_recv_pdu(struct iscsi_cls_conn *conn, struct iscsi_hdr *hdr,
680
		   char *data, uint32_t data_size)
L
Linus Torvalds 已提交
681
{
682 683 684 685
	struct nlmsghdr	*nlh;
	struct sk_buff *skb;
	struct iscsi_uevent *ev;
	char *pdu;
686
	struct iscsi_internal *priv;
687 688 689
	int len = NLMSG_SPACE(sizeof(*ev) + sizeof(struct iscsi_hdr) +
			      data_size);

690 691 692 693
	priv = iscsi_if_transport_lookup(conn->transport);
	if (!priv)
		return -EINVAL;

694
	mempool_zone_complete(conn->z_pdu);
695

696
	skb = mempool_zone_get_skb(conn->z_pdu);
697
	if (!skb) {
698
		iscsi_conn_error(conn, ISCSI_ERR_CONN_FAILED);
699 700
		dev_printk(KERN_ERR, &conn->dev, "iscsi: can not deliver "
			   "control PDU: OOM\n");
701 702
		return -ENOMEM;
	}
L
Linus Torvalds 已提交
703

704
	nlh = __nlmsg_put(skb, priv->daemon_pid, 0, 0, (len - sizeof(*nlh)), 0);
705 706 707 708
	ev = NLMSG_DATA(nlh);
	memset(ev, 0, sizeof(*ev));
	ev->transport_handle = iscsi_handle(conn->transport);
	ev->type = ISCSI_KEVENT_RECV_PDU;
709
	if (atomic_read(&conn->z_pdu->allocated) >= conn->z_pdu->hiwat)
710
		ev->iferror = -ENOMEM;
711 712
	ev->r.recv_req.cid = conn->cid;
	ev->r.recv_req.sid = iscsi_conn_get_sid(conn);
713 714 715
	pdu = (char*)ev + sizeof(*ev);
	memcpy(pdu, hdr, sizeof(struct iscsi_hdr));
	memcpy(pdu + sizeof(struct iscsi_hdr), data, data_size);
L
Linus Torvalds 已提交
716

717
	return iscsi_unicast_skb(conn->z_pdu, skb, priv->daemon_pid);
L
Linus Torvalds 已提交
718
}
719
EXPORT_SYMBOL_GPL(iscsi_recv_pdu);
L
Linus Torvalds 已提交
720

721
void iscsi_conn_error(struct iscsi_cls_conn *conn, enum iscsi_err error)
L
Linus Torvalds 已提交
722
{
723 724 725
	struct nlmsghdr	*nlh;
	struct sk_buff	*skb;
	struct iscsi_uevent *ev;
726
	struct iscsi_internal *priv;
727 728
	int len = NLMSG_SPACE(sizeof(*ev));

729 730 731 732
	priv = iscsi_if_transport_lookup(conn->transport);
	if (!priv)
		return;

733
	mempool_zone_complete(conn->z_error);
734

735
	skb = mempool_zone_get_skb(conn->z_error);
736
	if (!skb) {
737 738
		dev_printk(KERN_ERR, &conn->dev, "iscsi: gracefully ignored "
			  "conn error (%d)\n", error);
739 740 741
		return;
	}

742
	nlh = __nlmsg_put(skb, priv->daemon_pid, 0, 0, (len - sizeof(*nlh)), 0);
743 744 745
	ev = NLMSG_DATA(nlh);
	ev->transport_handle = iscsi_handle(conn->transport);
	ev->type = ISCSI_KEVENT_CONN_ERROR;
746
	if (atomic_read(&conn->z_error->allocated) >= conn->z_error->hiwat)
747 748
		ev->iferror = -ENOMEM;
	ev->r.connerror.error = error;
749 750
	ev->r.connerror.cid = conn->cid;
	ev->r.connerror.sid = iscsi_conn_get_sid(conn);
L
Linus Torvalds 已提交
751

752
	iscsi_broadcast_skb(conn->z_error, skb);
L
Linus Torvalds 已提交
753

754 755
	dev_printk(KERN_INFO, &conn->dev, "iscsi: detected conn error (%d)\n",
		   error);
756 757 758 759 760 761 762 763 764 765 766 767 768
}
EXPORT_SYMBOL_GPL(iscsi_conn_error);

static int
iscsi_if_send_reply(int pid, int seq, int type, int done, int multi,
		      void *payload, int size)
{
	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;

769
	mempool_zone_complete(z_reply);
770

771
	skb = mempool_zone_get_skb(z_reply);
772 773 774 775 776 777 778 779 780 781
	/*
	 * FIXME:
	 * user is supposed to react on iferror == -ENOMEM;
	 * see iscsi_if_rx().
	 */
	BUG_ON(!skb);

	nlh = __nlmsg_put(skb, pid, seq, t, (len - sizeof(*nlh)), 0);
	nlh->nlmsg_flags = flags;
	memcpy(NLMSG_DATA(nlh), payload, size);
782
	return iscsi_unicast_skb(z_reply, skb, pid);
L
Linus Torvalds 已提交
783 784
}

785
static int
786
iscsi_if_get_stats(struct iscsi_transport *transport, struct nlmsghdr *nlh)
787 788 789 790 791 792 793
{
	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;
794
	struct iscsi_internal *priv;
795 796 797 798 799
	int len = NLMSG_SPACE(sizeof(*ev) +
			      sizeof(struct iscsi_stats) +
			      sizeof(struct iscsi_stats_custom) *
			      ISCSI_STATS_CUSTOM_MAX);
	int err = 0;
800

801 802 803 804
	priv = iscsi_if_transport_lookup(transport);
	if (!priv)
		return -EINVAL;

805
	conn = iscsi_conn_lookup(ev->u.get_stats.sid, ev->u.get_stats.cid);
806 807
	if (!conn)
		return -EEXIST;
808

809 810
	do {
		int actual_size;
811

812
		mempool_zone_complete(conn->z_pdu);
813

814 815 816 817 818 819 820
		skbstat = mempool_zone_get_skb(conn->z_pdu);
		if (!skbstat) {
			dev_printk(KERN_ERR, &conn->dev, "iscsi: can not "
				   "deliver stats: OOM\n");
			return -ENOMEM;
		}

821
		nlhstat = __nlmsg_put(skbstat, priv->daemon_pid, 0, 0,
822 823 824 825 826 827 828
				      (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;
		if (atomic_read(&conn->z_pdu->allocated) >= conn->z_pdu->hiwat)
			evstat->iferror = -ENOMEM;
829 830 831 832
		evstat->u.get_stats.cid =
			ev->u.get_stats.cid;
		evstat->u.get_stats.sid =
			ev->u.get_stats.sid;
833 834 835 836
		stats = (struct iscsi_stats *)
			((char*)evstat + sizeof(*evstat));
		memset(stats, 0, sizeof(*stats));

837
		transport->get_stats(conn, stats);
838 839 840 841 842 843
		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);
844
		skb_trim(skbstat, NLMSG_ALIGN(actual_size));
845 846
		nlhstat->nlmsg_len = actual_size;

847
		err = iscsi_unicast_skb(conn->z_pdu, skbstat, priv->daemon_pid);
848 849 850
	} while (err < 0 && err != -ECONNREFUSED);

	return err;
851 852
}

853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977
/**
 * iscsi_if_destroy_session_done - send session destr. completion event
 * @conn: last connection for session
 *
 * This is called by HW iscsi LLDs to notify userpsace that its HW has
 * removed a session.
 **/
int iscsi_if_destroy_session_done(struct iscsi_cls_conn *conn)
{
	struct iscsi_internal *priv;
	struct iscsi_cls_session *session;
	struct Scsi_Host *shost;
	struct iscsi_uevent *ev;
	struct sk_buff  *skb;
	struct nlmsghdr *nlh;
	unsigned long flags;
	int rc, len = NLMSG_SPACE(sizeof(*ev));

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

	session = iscsi_dev_to_session(conn->dev.parent);
	shost = iscsi_session_to_shost(session);

	mempool_zone_complete(conn->z_pdu);

	skb = mempool_zone_get_skb(conn->z_pdu);
	if (!skb) {
		dev_printk(KERN_ERR, &conn->dev, "Cannot notify userspace of "
			  "session creation event\n");
		return -ENOMEM;
	}

	nlh = __nlmsg_put(skb, priv->daemon_pid, 0, 0, (len - sizeof(*nlh)), 0);
	ev = NLMSG_DATA(nlh);
	ev->transport_handle = iscsi_handle(conn->transport);
	ev->type = ISCSI_KEVENT_DESTROY_SESSION;
	ev->r.d_session.host_no = shost->host_no;
	ev->r.d_session.sid = session->sid;

	/*
	 * 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
	 */
	rc = iscsi_broadcast_skb(conn->z_pdu, skb);
	if (rc < 0)
		dev_printk(KERN_ERR, &conn->dev, "Cannot notify userspace of "
			  "session destruction event. Check iscsi daemon\n");

	spin_lock_irqsave(&sesslock, flags);
	list_del(&session->sess_list);
	spin_unlock_irqrestore(&sesslock, flags);

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

	return rc;
}
EXPORT_SYMBOL_GPL(iscsi_if_destroy_session_done);

/**
 * iscsi_if_create_session_done - send session creation completion event
 * @conn: leading connection for session
 *
 * This is called by HW iscsi LLDs to notify userpsace that its HW has
 * created a session or a existing session is back in the logged in state.
 **/
int iscsi_if_create_session_done(struct iscsi_cls_conn *conn)
{
	struct iscsi_internal *priv;
	struct iscsi_cls_session *session;
	struct Scsi_Host *shost;
	struct iscsi_uevent *ev;
	struct sk_buff  *skb;
	struct nlmsghdr *nlh;
	unsigned long flags;
	int rc, len = NLMSG_SPACE(sizeof(*ev));

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

	session = iscsi_dev_to_session(conn->dev.parent);
	shost = iscsi_session_to_shost(session);

	mempool_zone_complete(conn->z_pdu);

	skb = mempool_zone_get_skb(conn->z_pdu);
	if (!skb) {
		dev_printk(KERN_ERR, &conn->dev, "Cannot notify userspace of "
			  "session creation event\n");
		return -ENOMEM;
	}

	nlh = __nlmsg_put(skb, priv->daemon_pid, 0, 0, (len - sizeof(*nlh)), 0);
	ev = NLMSG_DATA(nlh);
	ev->transport_handle = iscsi_handle(conn->transport);
	ev->type = ISCSI_UEVENT_CREATE_SESSION;
	ev->r.c_session_ret.host_no = shost->host_no;
	ev->r.c_session_ret.sid = session->sid;

	/*
	 * 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
	 */
	rc = iscsi_broadcast_skb(conn->z_pdu, skb);
	if (rc < 0)
		dev_printk(KERN_ERR, &conn->dev, "Cannot notify userspace of "
			  "session creation event. Check iscsi daemon\n");

	spin_lock_irqsave(&sesslock, flags);
	list_add(&session->sess_list, &sesslist);
	spin_unlock_irqrestore(&sesslock, flags);

	spin_lock_irqsave(&connlock, flags);
	list_add(&conn->conn_list, &connlist);
	conn->active = 1;
	spin_unlock_irqrestore(&connlock, flags);
	return rc;
}
EXPORT_SYMBOL_GPL(iscsi_if_create_session_done);

978 979 980 981
static int
iscsi_if_create_session(struct iscsi_internal *priv, struct iscsi_uevent *ev)
{
	struct iscsi_transport *transport = priv->iscsi_transport;
982
	struct iscsi_cls_session *session;
M
Mike Christie 已提交
983
	unsigned long flags;
984
	uint32_t hostno;
985

M
Mike Christie 已提交
986
	session = transport->create_session(transport, &priv->t,
987
					    ev->u.c_session.initial_cmdsn,
988
					    &hostno);
989
	if (!session)
990
		return -ENOMEM;
991

M
Mike Christie 已提交
992 993 994 995
	spin_lock_irqsave(&sesslock, flags);
	list_add(&session->sess_list, &sesslist);
	spin_unlock_irqrestore(&sesslock, flags);

996 997
	ev->r.c_session_ret.host_no = hostno;
	ev->r.c_session_ret.sid = session->sid;
998 999 1000 1001
	return 0;
}

static int
1002
iscsi_if_create_conn(struct iscsi_transport *transport, struct iscsi_uevent *ev)
1003
{
1004
	struct iscsi_cls_conn *conn;
1005
	struct iscsi_cls_session *session;
1006
	unsigned long flags;
1007

1008 1009 1010 1011
	session = iscsi_session_lookup(ev->u.c_conn.sid);
	if (!session) {
		printk(KERN_ERR "iscsi: invalid session %d\n",
		       ev->u.c_conn.sid);
1012
		return -EINVAL;
1013
	}
1014

1015
	conn = transport->create_conn(session, ev->u.c_conn.cid);
1016 1017 1018 1019
	if (!conn) {
		printk(KERN_ERR "iscsi: couldn't create a new "
			   "connection for session %d\n",
			   session->sid);
1020
		return -ENOMEM;
1021
	}
1022

1023 1024
	ev->r.c_conn_ret.sid = session->sid;
	ev->r.c_conn_ret.cid = conn->cid;
1025 1026 1027 1028 1029 1030 1031

	spin_lock_irqsave(&connlock, flags);
	list_add(&conn->conn_list, &connlist);
	conn->active = 1;
	spin_unlock_irqrestore(&connlock, flags);

	return 0;
L
Linus Torvalds 已提交
1032 1033
}

1034 1035 1036 1037
static int
iscsi_if_destroy_conn(struct iscsi_transport *transport, struct iscsi_uevent *ev)
{
	unsigned long flags;
1038
	struct iscsi_cls_conn *conn;
1039

1040
	conn = iscsi_conn_lookup(ev->u.d_conn.sid, ev->u.d_conn.cid);
1041
	if (!conn)
1042
		return -EINVAL;
1043 1044 1045 1046 1047
	spin_lock_irqsave(&connlock, flags);
	conn->active = 0;
	list_del(&conn->conn_list);
	spin_unlock_irqrestore(&connlock, flags);

1048 1049 1050
	if (transport->destroy_conn)
		transport->destroy_conn(conn);
	return 0;
1051 1052
}

1053 1054 1055 1056 1057 1058
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;
1059
	int err = 0, value = 0;
1060 1061 1062 1063 1064 1065 1066

	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 已提交
1067
	case ISCSI_PARAM_SESS_RECOVERY_TMO:
1068
		sscanf(data, "%d", &value);
M
Mike Christie 已提交
1069 1070 1071
		if (value != 0)
			session->recovery_tmo = value;
		break;
1072
	default:
1073 1074
		err = transport->set_param(conn, ev->u.set_param.param,
					   data, ev->u.set_param.len);
1075 1076 1077 1078 1079
	}

	return err;
}

1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
static int
iscsi_if_transport_ep(struct iscsi_transport *transport,
		      struct iscsi_uevent *ev, int msg_type)
{
	struct sockaddr *dst_addr;
	int rc = 0;

	switch (msg_type) {
	case ISCSI_UEVENT_TRANSPORT_EP_CONNECT:
		if (!transport->ep_connect)
			return -EINVAL;

		dst_addr = (struct sockaddr *)((char*)ev + sizeof(*ev));
		rc = transport->ep_connect(dst_addr,
					   ev->u.ep_connect.non_blocking,
					   &ev->r.ep_connect_ret.handle);
		break;
	case ISCSI_UEVENT_TRANSPORT_EP_POLL:
		if (!transport->ep_poll)
			return -EINVAL;

		ev->r.retcode = transport->ep_poll(ev->u.ep_poll.ep_handle,
						   ev->u.ep_poll.timeout_ms);
		break;
	case ISCSI_UEVENT_TRANSPORT_EP_DISCONNECT:
		if (!transport->ep_disconnect)
			return -EINVAL;

		transport->ep_disconnect(ev->u.ep_disconnect.ep_handle);
		break;
	}
	return rc;
}

1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
static int
iscsi_tgt_dscvr(struct iscsi_transport *transport,
		struct iscsi_uevent *ev)
{
	struct sockaddr *dst_addr;

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

	dst_addr = (struct sockaddr *)((char*)ev + sizeof(*ev));
	return transport->tgt_dscvr(ev->u.tgt_dscvr.type,
				    ev->u.tgt_dscvr.host_no,
				    ev->u.tgt_dscvr.enable, dst_addr);
}

1129 1130 1131 1132 1133 1134 1135
static int
iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
{
	int err = 0;
	struct iscsi_uevent *ev = NLMSG_DATA(nlh);
	struct iscsi_transport *transport = NULL;
	struct iscsi_internal *priv;
1136 1137
	struct iscsi_cls_session *session;
	struct iscsi_cls_conn *conn;
M
Mike Christie 已提交
1138
	unsigned long flags;
1139 1140 1141 1142 1143 1144

	priv = iscsi_if_transport_lookup(iscsi_ptr(ev->transport_handle));
	if (!priv)
		return -EINVAL;
	transport = priv->iscsi_transport;

1145 1146 1147
	if (!try_module_get(transport->owner))
		return -EINVAL;

1148 1149
	priv->daemon_pid = NETLINK_CREDS(skb)->pid;

1150 1151 1152 1153 1154
	switch (nlh->nlmsg_type) {
	case ISCSI_UEVENT_CREATE_SESSION:
		err = iscsi_if_create_session(priv, ev);
		break;
	case ISCSI_UEVENT_DESTROY_SESSION:
1155
		session = iscsi_session_lookup(ev->u.d_session.sid);
M
Mike Christie 已提交
1156 1157 1158 1159 1160
		if (session) {
			spin_lock_irqsave(&sesslock, flags);
			list_del(&session->sess_list);
			spin_unlock_irqrestore(&sesslock, flags);

1161
			transport->destroy_session(session);
M
Mike Christie 已提交
1162
		} else
1163
			err = -EINVAL;
1164 1165 1166 1167 1168 1169 1170 1171
		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:
1172 1173
		session = iscsi_session_lookup(ev->u.b_conn.sid);
		conn = iscsi_conn_lookup(ev->u.b_conn.sid, ev->u.b_conn.cid);
1174 1175 1176

		if (session && conn)
			ev->r.retcode =	transport->bind_conn(session, conn,
1177
					ev->u.b_conn.transport_eph,
1178 1179 1180
					ev->u.b_conn.is_leading);
		else
			err = -EINVAL;
1181 1182
		break;
	case ISCSI_UEVENT_SET_PARAM:
1183
		err = iscsi_set_param(transport, ev);
1184 1185
		break;
	case ISCSI_UEVENT_START_CONN:
1186
		conn = iscsi_conn_lookup(ev->u.start_conn.sid, ev->u.start_conn.cid);
1187 1188 1189 1190
		if (conn)
			ev->r.retcode = transport->start_conn(conn);
		else
			err = -EINVAL;
1191 1192
		break;
	case ISCSI_UEVENT_STOP_CONN:
1193
		conn = iscsi_conn_lookup(ev->u.stop_conn.sid, ev->u.stop_conn.cid);
1194 1195 1196 1197
		if (conn)
			transport->stop_conn(conn, ev->u.stop_conn.flag);
		else
			err = -EINVAL;
1198 1199
		break;
	case ISCSI_UEVENT_SEND_PDU:
1200
		conn = iscsi_conn_lookup(ev->u.send_pdu.sid, ev->u.send_pdu.cid);
1201 1202 1203 1204 1205 1206 1207
		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;
1208 1209
		break;
	case ISCSI_UEVENT_GET_STATS:
1210
		err = iscsi_if_get_stats(transport, nlh);
1211
		break;
1212 1213 1214 1215 1216
	case ISCSI_UEVENT_TRANSPORT_EP_CONNECT:
	case ISCSI_UEVENT_TRANSPORT_EP_POLL:
	case ISCSI_UEVENT_TRANSPORT_EP_DISCONNECT:
		err = iscsi_if_transport_ep(transport, ev, nlh->nlmsg_type);
		break;
1217 1218 1219
	case ISCSI_UEVENT_TGT_DSCVR:
		err = iscsi_tgt_dscvr(transport, ev);
		break;
1220 1221 1222 1223 1224
	default:
		err = -EINVAL;
		break;
	}

1225
	module_put(transport->owner);
1226 1227 1228
	return err;
}

1229 1230 1231 1232 1233
/*
 * Get message from skb (based on rtnetlink_rcv_skb).  Each message is
 * processed by iscsi_if_recv_msg.  Malformed skbs with wrong lengths or
 * invalid creds are discarded silently.
 */
1234 1235 1236 1237
static void
iscsi_if_rx(struct sock *sk, int len)
{
	struct sk_buff *skb;
L
Linus Torvalds 已提交
1238

1239
	mutex_lock(&rx_queue_mutex);
1240
	while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
1241 1242 1243 1244 1245
		if (NETLINK_CREDS(skb)->uid) {
			skb_pull(skb, skb->len);
			goto free_skb;
		}

1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
		while (skb->len >= NLMSG_SPACE(0)) {
			int err;
			uint32_t rlen;
			struct nlmsghdr	*nlh;
			struct iscsi_uevent *ev;

			nlh = (struct nlmsghdr *)skb->data;
			if (nlh->nlmsg_len < sizeof(*nlh) ||
			    skb->len < nlh->nlmsg_len) {
				break;
			}
1257

1258 1259 1260 1261
			ev = NLMSG_DATA(nlh);
			rlen = NLMSG_ALIGN(nlh->nlmsg_len);
			if (rlen > skb->len)
				rlen = skb->len;
1262

1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
			err = iscsi_if_recv_msg(skb, nlh);
			if (err) {
				ev->type = ISCSI_KEVENT_IF_ERROR;
				ev->iferror = err;
			}
			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;
				err = iscsi_if_send_reply(
					NETLINK_CREDS(skb)->pid, nlh->nlmsg_seq,
					nlh->nlmsg_type, 0, 0, ev, sizeof(*ev));
1280 1281
				if (atomic_read(&z_reply->allocated) >=
						z_reply->hiwat)
1282 1283 1284 1285
					ev->iferror = -ENOMEM;
			} while (err < 0 && err != -ECONNREFUSED);
			skb_pull(skb, rlen);
		}
1286
free_skb:
1287 1288
		kfree_skb(skb);
	}
1289
	mutex_unlock(&rx_queue_mutex);
1290
}
L
Linus Torvalds 已提交
1291

1292 1293 1294
#define iscsi_cdev_to_conn(_cdev) \
	iscsi_dev_to_conn(_cdev->dev)

1295 1296 1297 1298
#define ISCSI_CLASS_ATTR(_prefix,_name,_mode,_show,_store)		\
struct class_device_attribute class_device_attr_##_prefix##_##_name =	\
	__ATTR(_name,_mode,_show,_store)

L
Linus Torvalds 已提交
1299
/*
1300
 * iSCSI connection attrs
L
Linus Torvalds 已提交
1301
 */
1302
#define iscsi_conn_attr_show(param)					\
1303
static ssize_t								\
1304
show_conn_param_##param(struct class_device *cdev, char *buf)		\
1305
{									\
1306 1307
	struct iscsi_cls_conn *conn = iscsi_cdev_to_conn(cdev);		\
	struct iscsi_transport *t = conn->transport;			\
1308
	return t->get_conn_param(conn, param, buf);			\
1309 1310
}

1311 1312 1313
#define iscsi_conn_attr(field, param)					\
	iscsi_conn_attr_show(param)					\
static ISCSI_CLASS_ATTR(conn, field, S_IRUGO, show_conn_param_##param,	\
1314
			NULL);
1315

1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
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(port, ISCSI_PARAM_CONN_PORT);
iscsi_conn_attr(exp_statsn, ISCSI_PARAM_EXP_STATSN);
iscsi_conn_attr(persistent_address, ISCSI_PARAM_PERSISTENT_ADDRESS);
iscsi_conn_attr(address, ISCSI_PARAM_CONN_ADDRESS);
L
Linus Torvalds 已提交
1327

1328 1329 1330
#define iscsi_cdev_to_session(_cdev) \
	iscsi_dev_to_session(_cdev->dev)

L
Linus Torvalds 已提交
1331
/*
1332
 * iSCSI session attrs
L
Linus Torvalds 已提交
1333
 */
1334
#define iscsi_session_attr_show(param)					\
1335
static ssize_t								\
1336
show_session_param_##param(struct class_device *cdev, char *buf)	\
1337 1338 1339
{									\
	struct iscsi_cls_session *session = iscsi_cdev_to_session(cdev); \
	struct iscsi_transport *t = session->transport;			\
1340
	return t->get_session_param(session, param, buf);		\
1341 1342
}

1343 1344 1345
#define iscsi_session_attr(field, param)				\
	iscsi_session_attr_show(param)					\
static ISCSI_CLASS_ATTR(sess, field, S_IRUGO, show_session_param_##param, \
1346 1347
			NULL);

1348 1349 1350 1351 1352 1353 1354 1355 1356 1357
iscsi_session_attr(targetname, ISCSI_PARAM_TARGET_NAME);
iscsi_session_attr(initial_r2t, ISCSI_PARAM_INITIAL_R2T_EN);
iscsi_session_attr(max_outstanding_r2t, ISCSI_PARAM_MAX_R2T);
iscsi_session_attr(immediate_data, ISCSI_PARAM_IMM_DATA_EN);
iscsi_session_attr(first_burst_len, ISCSI_PARAM_FIRST_BURST);
iscsi_session_attr(max_burst_len, ISCSI_PARAM_MAX_BURST);
iscsi_session_attr(data_pdu_in_order, ISCSI_PARAM_PDU_INORDER_EN);
iscsi_session_attr(data_seq_in_order, ISCSI_PARAM_DATASEQ_INORDER_EN);
iscsi_session_attr(erl, ISCSI_PARAM_ERL);
iscsi_session_attr(tpgt, ISCSI_PARAM_TPGT);
L
Linus Torvalds 已提交
1358

1359 1360
#define iscsi_priv_session_attr_show(field, format)			\
static ssize_t								\
1361
show_priv_session_##field(struct class_device *cdev, char *buf)		\
1362
{									\
1363
	struct iscsi_cls_session *session = iscsi_cdev_to_session(cdev);\
1364 1365 1366 1367 1368 1369 1370
	return sprintf(buf, format"\n", session->field);		\
}

#define iscsi_priv_session_attr(field, format)				\
	iscsi_priv_session_attr_show(field, format)			\
static ISCSI_CLASS_ATTR(priv_sess, field, S_IRUGO, show_priv_session_##field, \
			NULL)
M
Mike Christie 已提交
1371
iscsi_priv_session_attr(recovery_tmo, "%d");
1372 1373 1374 1375 1376 1377 1378

#define SETUP_PRIV_SESSION_RD_ATTR(field)				\
do {									\
	priv->session_attrs[count] = &class_device_attr_priv_sess_##field; \
	count++;							\
} while (0)

1379

1380 1381 1382 1383
#define SETUP_SESSION_RD_ATTR(field, param_flag)			\
do {									\
	if (tt->param_mask & param_flag) {				\
		priv->session_attrs[count] = &class_device_attr_sess_##field; \
L
Linus Torvalds 已提交
1384
		count++;						\
1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
	}								\
} while (0)

#define SETUP_CONN_RD_ATTR(field, param_flag)				\
do {									\
	if (tt->param_mask & param_flag) {				\
		priv->conn_attrs[count] = &class_device_attr_conn_##field; \
		count++;						\
	}								\
} while (0)
L
Linus Torvalds 已提交
1395

1396 1397
static int iscsi_session_match(struct attribute_container *cont,
			   struct device *dev)
L
Linus Torvalds 已提交
1398
{
1399
	struct iscsi_cls_session *session;
L
Linus Torvalds 已提交
1400
	struct Scsi_Host *shost;
1401 1402 1403 1404
	struct iscsi_internal *priv;

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

1406 1407
	session = iscsi_dev_to_session(dev);
	shost = iscsi_session_to_shost(session);
1408
	if (!shost->transportt)
L
Linus Torvalds 已提交
1409 1410
		return 0;

1411 1412
	priv = to_iscsi_internal(shost->transportt);
	if (priv->session_cont.ac.class != &iscsi_session_class.class)
L
Linus Torvalds 已提交
1413 1414
		return 0;

1415
	return &priv->session_cont.ac == cont;
L
Linus Torvalds 已提交
1416 1417
}

1418 1419 1420
static int iscsi_conn_match(struct attribute_container *cont,
			   struct device *dev)
{
1421 1422
	struct iscsi_cls_session *session;
	struct iscsi_cls_conn *conn;
L
Linus Torvalds 已提交
1423
	struct Scsi_Host *shost;
1424
	struct iscsi_internal *priv;
L
Linus Torvalds 已提交
1425

1426
	if (!iscsi_is_conn_dev(dev))
L
Linus Torvalds 已提交
1427 1428
		return 0;

1429 1430 1431 1432
	conn = iscsi_dev_to_conn(dev);
	session = iscsi_dev_to_session(conn->dev.parent);
	shost = iscsi_session_to_shost(session);

1433
	if (!shost->transportt)
L
Linus Torvalds 已提交
1434 1435
		return 0;

1436 1437 1438
	priv = to_iscsi_internal(shost->transportt);
	if (priv->conn_cont.ac.class != &iscsi_connection_class.class)
		return 0;
L
Linus Torvalds 已提交
1439

1440 1441 1442
	return &priv->conn_cont.ac == cont;
}

M
Mike Christie 已提交
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
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;
}

1461 1462
struct scsi_transport_template *
iscsi_register_transport(struct iscsi_transport *tt)
1463 1464 1465 1466 1467 1468 1469 1470 1471
{
	struct iscsi_internal *priv;
	unsigned long flags;
	int count = 0, err;

	BUG_ON(!tt);

	priv = iscsi_if_transport_lookup(tt);
	if (priv)
1472
		return NULL;
1473

J
Jes Sorensen 已提交
1474
	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1475
	if (!priv)
1476
		return NULL;
1477
	INIT_LIST_HEAD(&priv->list);
1478
	priv->daemon_pid = -1;
1479
	priv->iscsi_transport = tt;
M
Mike Christie 已提交
1480
	priv->t.user_scan = iscsi_user_scan;
1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491

	priv->cdev.class = &iscsi_transport_class;
	snprintf(priv->cdev.class_id, BUS_ID_SIZE, "%s", tt->name);
	err = class_device_register(&priv->cdev);
	if (err)
		goto free_priv;

	err = sysfs_create_group(&priv->cdev.kobj, &iscsi_transport_group);
	if (err)
		goto unregister_cdev;

M
Mike Christie 已提交
1492 1493 1494 1495 1496 1497 1498 1499
	/* host parameters */
	priv->t.host_attrs.ac.attrs = &priv->host_attrs[0];
	priv->t.host_attrs.ac.class = &iscsi_host_class.class;
	priv->t.host_attrs.ac.match = iscsi_host_match;
	priv->t.host_size = sizeof(struct iscsi_host);
	priv->host_attrs[0] = NULL;
	transport_container_register(&priv->t.host_attrs);

1500 1501 1502 1503 1504
	/* connection parameters */
	priv->conn_cont.ac.attrs = &priv->conn_attrs[0];
	priv->conn_cont.ac.class = &iscsi_connection_class.class;
	priv->conn_cont.ac.match = iscsi_conn_match;
	transport_container_register(&priv->conn_cont);
L
Linus Torvalds 已提交
1505

1506 1507 1508 1509 1510 1511 1512 1513
	SETUP_CONN_RD_ATTR(max_recv_dlength, ISCSI_MAX_RECV_DLENGTH);
	SETUP_CONN_RD_ATTR(max_xmit_dlength, ISCSI_MAX_XMIT_DLENGTH);
	SETUP_CONN_RD_ATTR(header_digest, ISCSI_HDRDGST_EN);
	SETUP_CONN_RD_ATTR(data_digest, ISCSI_DATADGST_EN);
	SETUP_CONN_RD_ATTR(ifmarker, ISCSI_IFMARKER_EN);
	SETUP_CONN_RD_ATTR(ofmarker, ISCSI_OFMARKER_EN);
	SETUP_CONN_RD_ATTR(address, ISCSI_CONN_ADDRESS);
	SETUP_CONN_RD_ATTR(port, ISCSI_CONN_PORT);
1514
	SETUP_CONN_RD_ATTR(exp_statsn, ISCSI_EXP_STATSN);
1515 1516
	SETUP_CONN_RD_ATTR(persistent_address, ISCSI_PERSISTENT_ADDRESS);
	SETUP_CONN_RD_ATTR(persistent_port, ISCSI_PERSISTENT_PORT);
1517 1518 1519

	BUG_ON(count > ISCSI_CONN_ATTRS);
	priv->conn_attrs[count] = NULL;
L
Linus Torvalds 已提交
1520 1521
	count = 0;

1522 1523 1524 1525 1526 1527
	/* session parameters */
	priv->session_cont.ac.attrs = &priv->session_attrs[0];
	priv->session_cont.ac.class = &iscsi_session_class.class;
	priv->session_cont.ac.match = iscsi_session_match;
	transport_container_register(&priv->session_cont);

1528 1529 1530 1531 1532 1533 1534 1535
	SETUP_SESSION_RD_ATTR(initial_r2t, ISCSI_INITIAL_R2T_EN);
	SETUP_SESSION_RD_ATTR(max_outstanding_r2t, ISCSI_MAX_R2T);
	SETUP_SESSION_RD_ATTR(immediate_data, ISCSI_IMM_DATA_EN);
	SETUP_SESSION_RD_ATTR(first_burst_len, ISCSI_FIRST_BURST);
	SETUP_SESSION_RD_ATTR(max_burst_len, ISCSI_MAX_BURST);
	SETUP_SESSION_RD_ATTR(data_pdu_in_order, ISCSI_PDU_INORDER_EN);
	SETUP_SESSION_RD_ATTR(data_seq_in_order, ISCSI_DATASEQ_INORDER_EN);
	SETUP_SESSION_RD_ATTR(erl, ISCSI_ERL);
1536 1537
	SETUP_SESSION_RD_ATTR(targetname, ISCSI_TARGET_NAME);
	SETUP_SESSION_RD_ATTR(tpgt, ISCSI_TPGT);
M
Mike Christie 已提交
1538
	SETUP_PRIV_SESSION_RD_ATTR(recovery_tmo);
1539

1540 1541 1542 1543 1544 1545 1546 1547
	BUG_ON(count > ISCSI_SESSION_ATTRS);
	priv->session_attrs[count] = NULL;

	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);
1548
	return &priv->t;
L
Linus Torvalds 已提交
1549

1550 1551 1552 1553
unregister_cdev:
	class_device_unregister(&priv->cdev);
free_priv:
	kfree(priv);
1554
	return NULL;
L
Linus Torvalds 已提交
1555
}
1556 1557 1558 1559 1560 1561 1562 1563 1564
EXPORT_SYMBOL_GPL(iscsi_register_transport);

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

	BUG_ON(!tt);

1565
	mutex_lock(&rx_queue_mutex);
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575

	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 已提交
1576
	transport_container_unregister(&priv->t.host_attrs);
1577 1578 1579

	sysfs_remove_group(&priv->cdev.kobj, &iscsi_transport_group);
	class_device_unregister(&priv->cdev);
1580
	mutex_unlock(&rx_queue_mutex);
L
Linus Torvalds 已提交
1581

1582 1583 1584
	return 0;
}
EXPORT_SYMBOL_GPL(iscsi_unregister_transport);
L
Linus Torvalds 已提交
1585

1586 1587
static int
iscsi_rcv_nl_event(struct notifier_block *this, unsigned long event, void *ptr)
L
Linus Torvalds 已提交
1588
{
1589 1590 1591 1592
	struct netlink_notify *n = ptr;

	if (event == NETLINK_URELEASE &&
	    n->protocol == NETLINK_ISCSI && n->pid) {
1593
		struct iscsi_cls_conn *conn;
1594 1595
		unsigned long flags;

1596
		mempool_zone_complete(z_reply);
1597 1598
		spin_lock_irqsave(&connlock, flags);
		list_for_each_entry(conn, &connlist, conn_list) {
1599 1600
			mempool_zone_complete(conn->z_error);
			mempool_zone_complete(conn->z_pdu);
1601 1602 1603
		}
		spin_unlock_irqrestore(&connlock, flags);
	}
L
Linus Torvalds 已提交
1604

1605
	return NOTIFY_DONE;
L
Linus Torvalds 已提交
1606 1607
}

1608 1609 1610
static struct notifier_block iscsi_nl_notifier = {
	.notifier_call	= iscsi_rcv_nl_event,
};
L
Linus Torvalds 已提交
1611 1612 1613

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

1616
	err = class_register(&iscsi_transport_class);
L
Linus Torvalds 已提交
1617 1618
	if (err)
		return err;
1619

M
Mike Christie 已提交
1620
	err = transport_class_register(&iscsi_host_class);
1621 1622 1623
	if (err)
		goto unregister_transport_class;

M
Mike Christie 已提交
1624 1625 1626 1627
	err = transport_class_register(&iscsi_connection_class);
	if (err)
		goto unregister_host_class;

1628 1629 1630 1631 1632 1633 1634 1635
	err = transport_class_register(&iscsi_session_class);
	if (err)
		goto unregister_conn_class;

	err = netlink_register_notifier(&iscsi_nl_notifier);
	if (err)
		goto unregister_session_class;

1636
	nls = netlink_kernel_create(NETLINK_ISCSI, 1, iscsi_if_rx,
1637
			THIS_MODULE);
1638 1639 1640 1641 1642
	if (!nls) {
		err = -ENOBUFS;
		goto unregister_notifier;
	}

1643
	z_reply = mempool_zone_init(Z_MAX_REPLY,
1644
		NLMSG_SPACE(sizeof(struct iscsi_uevent)), Z_HIWAT_REPLY);
1645
	if (z_reply)
1646 1647 1648 1649 1650 1651 1652 1653 1654
		return 0;

	sock_release(nls->sk_socket);
unregister_notifier:
	netlink_unregister_notifier(&iscsi_nl_notifier);
unregister_session_class:
	transport_class_unregister(&iscsi_session_class);
unregister_conn_class:
	transport_class_unregister(&iscsi_connection_class);
M
Mike Christie 已提交
1655 1656
unregister_host_class:
	transport_class_unregister(&iscsi_host_class);
1657 1658 1659
unregister_transport_class:
	class_unregister(&iscsi_transport_class);
	return err;
L
Linus Torvalds 已提交
1660 1661 1662 1663
}

static void __exit iscsi_transport_exit(void)
{
1664
	mempool_zone_destroy(z_reply);
1665 1666 1667 1668
	sock_release(nls->sk_socket);
	netlink_unregister_notifier(&iscsi_nl_notifier);
	transport_class_unregister(&iscsi_connection_class);
	transport_class_unregister(&iscsi_session_class);
M
Mike Christie 已提交
1669
	transport_class_unregister(&iscsi_host_class);
1670
	class_unregister(&iscsi_transport_class);
L
Linus Torvalds 已提交
1671 1672 1673 1674 1675
}

module_init(iscsi_transport_init);
module_exit(iscsi_transport_exit);

1676 1677 1678 1679
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 已提交
1680
MODULE_LICENSE("GPL");