netiucv.c 54.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * IUCV network driver
 *
4
 * Copyright 2001 IBM Deutschland Entwicklung GmbH, IBM Corporation
L
Linus Torvalds 已提交
5 6
 * Author(s): Fritz Elfert (elfert@de.ibm.com, felfert@millenux.com)
 *
7 8
 * Sysfs integration and all bugs therein by Cornelia Huck
 * (cornelia.huck@de.ibm.com)
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
 *
 * Documentation used:
 *  the source of the original IUCV driver by:
 *    Stefan Hegewald <hegewald@de.ibm.com>
 *    Hartmut Penner <hpenner@de.ibm.com>
 *    Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
 *    Martin Schwidefsky (schwidefsky@de.ibm.com)
 *    Alan Altmark (Alan_Altmark@us.ibm.com)  Sept. 2000
 *
 * 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, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */
33

34 35 36
#define KMSG_COMPONENT "netiucv"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

L
Linus Torvalds 已提交
37 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
#undef DEBUG

#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/interrupt.h>
#include <linux/timer.h>
#include <linux/bitops.h>

#include <linux/signal.h>
#include <linux/string.h>
#include <linux/device.h>

#include <linux/ip.h>
#include <linux/if_arp.h>
#include <linux/tcp.h>
#include <linux/skbuff.h>
#include <linux/ctype.h>
#include <net/dst.h>

#include <asm/io.h>
#include <asm/uaccess.h>

63
#include <net/iucv/iucv.h>
L
Linus Torvalds 已提交
64 65 66 67 68 69
#include "fsm.h"

MODULE_AUTHOR
    ("(C) 2001 IBM Corporation by Fritz Elfert (felfert@millenux.com)");
MODULE_DESCRIPTION ("Linux for S/390 IUCV network driver");

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
/**
 * Debug Facility stuff
 */
#define IUCV_DBF_SETUP_NAME "iucv_setup"
#define IUCV_DBF_SETUP_LEN 32
#define IUCV_DBF_SETUP_PAGES 2
#define IUCV_DBF_SETUP_NR_AREAS 1
#define IUCV_DBF_SETUP_LEVEL 3

#define IUCV_DBF_DATA_NAME "iucv_data"
#define IUCV_DBF_DATA_LEN 128
#define IUCV_DBF_DATA_PAGES 2
#define IUCV_DBF_DATA_NR_AREAS 1
#define IUCV_DBF_DATA_LEVEL 2

#define IUCV_DBF_TRACE_NAME "iucv_trace"
#define IUCV_DBF_TRACE_LEN 16
#define IUCV_DBF_TRACE_PAGES 4
#define IUCV_DBF_TRACE_NR_AREAS 1
#define IUCV_DBF_TRACE_LEVEL 3

#define IUCV_DBF_TEXT(name,level,text) \
	do { \
		debug_text_event(iucv_dbf_##name,level,text); \
	} while (0)

#define IUCV_DBF_HEX(name,level,addr,len) \
	do { \
		debug_event(iucv_dbf_##name,level,(void*)(addr),len); \
	} while (0)

DECLARE_PER_CPU(char[256], iucv_dbf_txt_buf);

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
/* Allow to sort out low debug levels early to avoid wasted sprints */
static inline int iucv_dbf_passes(debug_info_t *dbf_grp, int level)
{
	return (level <= dbf_grp->level);
}

#define IUCV_DBF_TEXT_(name, level, text...) \
	do { \
		if (iucv_dbf_passes(iucv_dbf_##name, level)) { \
			char* iucv_dbf_txt_buf = \
					get_cpu_var(iucv_dbf_txt_buf); \
			sprintf(iucv_dbf_txt_buf, text); \
			debug_text_event(iucv_dbf_##name, level, \
						iucv_dbf_txt_buf); \
			put_cpu_var(iucv_dbf_txt_buf); \
		} \
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
	} while (0)

#define IUCV_DBF_SPRINTF(name,level,text...) \
	do { \
		debug_sprintf_event(iucv_dbf_trace, level, ##text ); \
		debug_sprintf_event(iucv_dbf_trace, level, text ); \
	} while (0)

/**
 * some more debug stuff
 */
#define IUCV_HEXDUMP16(importance,header,ptr) \
PRINT_##importance(header "%02x %02x %02x %02x  %02x %02x %02x %02x  " \
		   "%02x %02x %02x %02x  %02x %02x %02x %02x\n", \
		   *(((char*)ptr)),*(((char*)ptr)+1),*(((char*)ptr)+2), \
		   *(((char*)ptr)+3),*(((char*)ptr)+4),*(((char*)ptr)+5), \
		   *(((char*)ptr)+6),*(((char*)ptr)+7),*(((char*)ptr)+8), \
		   *(((char*)ptr)+9),*(((char*)ptr)+10),*(((char*)ptr)+11), \
		   *(((char*)ptr)+12),*(((char*)ptr)+13), \
		   *(((char*)ptr)+14),*(((char*)ptr)+15)); \
PRINT_##importance(header "%02x %02x %02x %02x  %02x %02x %02x %02x  " \
		   "%02x %02x %02x %02x  %02x %02x %02x %02x\n", \
		   *(((char*)ptr)+16),*(((char*)ptr)+17), \
		   *(((char*)ptr)+18),*(((char*)ptr)+19), \
		   *(((char*)ptr)+20),*(((char*)ptr)+21), \
		   *(((char*)ptr)+22),*(((char*)ptr)+23), \
		   *(((char*)ptr)+24),*(((char*)ptr)+25), \
		   *(((char*)ptr)+26),*(((char*)ptr)+27), \
		   *(((char*)ptr)+28),*(((char*)ptr)+29), \
		   *(((char*)ptr)+30),*(((char*)ptr)+31));

L
Linus Torvalds 已提交
150 151 152
#define PRINTK_HEADER " iucv: "       /* for debugging */

static struct device_driver netiucv_driver = {
153
	.owner = THIS_MODULE,
L
Linus Torvalds 已提交
154 155 156 157
	.name = "netiucv",
	.bus  = &iucv_bus,
};

158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
static int netiucv_callback_connreq(struct iucv_path *,
				    u8 ipvmid[8], u8 ipuser[16]);
static void netiucv_callback_connack(struct iucv_path *, u8 ipuser[16]);
static void netiucv_callback_connrej(struct iucv_path *, u8 ipuser[16]);
static void netiucv_callback_connsusp(struct iucv_path *, u8 ipuser[16]);
static void netiucv_callback_connres(struct iucv_path *, u8 ipuser[16]);
static void netiucv_callback_rx(struct iucv_path *, struct iucv_message *);
static void netiucv_callback_txdone(struct iucv_path *, struct iucv_message *);

static struct iucv_handler netiucv_handler = {
	.path_pending	  = netiucv_callback_connreq,
	.path_complete	  = netiucv_callback_connack,
	.path_severed	  = netiucv_callback_connrej,
	.path_quiesced	  = netiucv_callback_connsusp,
	.path_resumed	  = netiucv_callback_connres,
	.message_pending  = netiucv_callback_rx,
	.message_complete = netiucv_callback_txdone
};

L
Linus Torvalds 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
/**
 * Per connection profiling data
 */
struct connection_profile {
	unsigned long maxmulti;
	unsigned long maxcqueue;
	unsigned long doios_single;
	unsigned long doios_multi;
	unsigned long txlen;
	unsigned long tx_time;
	struct timespec send_stamp;
	unsigned long tx_pending;
	unsigned long tx_max_pending;
};

/**
 * Representation of one iucv connection
 */
struct iucv_connection {
196 197
	struct list_head	  list;
	struct iucv_path	  *path;
L
Linus Torvalds 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
	struct sk_buff            *rx_buff;
	struct sk_buff            *tx_buff;
	struct sk_buff_head       collect_queue;
	struct sk_buff_head	  commit_queue;
	spinlock_t                collect_lock;
	int                       collect_len;
	int                       max_buffsize;
	fsm_timer                 timer;
	fsm_instance              *fsm;
	struct net_device         *netdev;
	struct connection_profile prof;
	char                      userid[9];
};

/**
 * Linked list of all connection structs.
 */
215
static LIST_HEAD(iucv_connection_list);
216
static DEFINE_RWLOCK(iucv_connection_rwlock);
L
Linus Torvalds 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240

/**
 * Representation of event-data for the
 * connection state machine.
 */
struct iucv_event {
	struct iucv_connection *conn;
	void                   *data;
};

/**
 * Private part of the network device structure
 */
struct netiucv_priv {
	struct net_device_stats stats;
	unsigned long           tbusy;
	fsm_instance            *fsm;
        struct iucv_connection  *conn;
	struct device           *dev;
};

/**
 * Link level header for a packet.
 */
241 242 243
struct ll_header {
	u16 next;
};
L
Linus Torvalds 已提交
244

245
#define NETIUCV_HDRLEN		 (sizeof(struct ll_header))
L
Linus Torvalds 已提交
246 247 248 249 250 251 252 253 254 255 256
#define NETIUCV_BUFSIZE_MAX      32768
#define NETIUCV_BUFSIZE_DEFAULT  NETIUCV_BUFSIZE_MAX
#define NETIUCV_MTU_MAX          (NETIUCV_BUFSIZE_MAX - NETIUCV_HDRLEN)
#define NETIUCV_MTU_DEFAULT      9216
#define NETIUCV_QUEUELEN_DEFAULT 50
#define NETIUCV_TIMEOUT_5SEC     5000

/**
 * Compatibility macros for busy handling
 * of network devices.
 */
257
static inline void netiucv_clear_busy(struct net_device *dev)
L
Linus Torvalds 已提交
258
{
259 260
	struct netiucv_priv *priv = netdev_priv(dev);
	clear_bit(0, &priv->tbusy);
L
Linus Torvalds 已提交
261 262 263
	netif_wake_queue(dev);
}

264
static inline int netiucv_test_and_set_busy(struct net_device *dev)
L
Linus Torvalds 已提交
265
{
266
	struct netiucv_priv *priv = netdev_priv(dev);
L
Linus Torvalds 已提交
267
	netif_stop_queue(dev);
268
	return test_and_set_bit(0, &priv->tbusy);
L
Linus Torvalds 已提交
269 270
}

271
static u8 iucvMagic[16] = {
L
Linus Torvalds 已提交
272 273 274 275 276 277 278 279 280 281 282 283
	0xF0, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
	0xF0, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40
};

/**
 * Convert an iucv userId to its printable
 * form (strip whitespace at end).
 *
 * @param An iucv userId
 *
 * @returns The printable string (static data!!)
 */
284
static char *netiucv_printname(char *name)
L
Linus Torvalds 已提交
285 286 287 288 289 290 291 292 293 294
{
	static char tmp[9];
	char *p = tmp;
	memcpy(tmp, name, 8);
	tmp[8] = '\0';
	while (*p && (!isspace(*p)))
		p++;
	*p = '\0';
	return tmp;
}
295

L
Linus Torvalds 已提交
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 324 325 326 327 328 329 330 331 332 333 334 335 336
/**
 * States of the interface statemachine.
 */
enum dev_states {
	DEV_STATE_STOPPED,
	DEV_STATE_STARTWAIT,
	DEV_STATE_STOPWAIT,
	DEV_STATE_RUNNING,
	/**
	 * MUST be always the last element!!
	 */
	NR_DEV_STATES
};

static const char *dev_state_names[] = {
	"Stopped",
	"StartWait",
	"StopWait",
	"Running",
};

/**
 * Events of the interface statemachine.
 */
enum dev_events {
	DEV_EVENT_START,
	DEV_EVENT_STOP,
	DEV_EVENT_CONUP,
	DEV_EVENT_CONDOWN,
	/**
	 * MUST be always the last element!!
	 */
	NR_DEV_EVENTS
};

static const char *dev_event_names[] = {
	"Start",
	"Stop",
	"Connection up",
	"Connection down",
};
337

L
Linus Torvalds 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 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 456
/**
 * Events of the connection statemachine
 */
enum conn_events {
	/**
	 * Events, representing callbacks from
	 * lowlevel iucv layer)
	 */
	CONN_EVENT_CONN_REQ,
	CONN_EVENT_CONN_ACK,
	CONN_EVENT_CONN_REJ,
	CONN_EVENT_CONN_SUS,
	CONN_EVENT_CONN_RES,
	CONN_EVENT_RX,
	CONN_EVENT_TXDONE,

	/**
	 * Events, representing errors return codes from
	 * calls to lowlevel iucv layer
	 */

	/**
	 * Event, representing timer expiry.
	 */
	CONN_EVENT_TIMER,

	/**
	 * Events, representing commands from upper levels.
	 */
	CONN_EVENT_START,
	CONN_EVENT_STOP,

	/**
	 * MUST be always the last element!!
	 */
	NR_CONN_EVENTS,
};

static const char *conn_event_names[] = {
	"Remote connection request",
	"Remote connection acknowledge",
	"Remote connection reject",
	"Connection suspended",
	"Connection resumed",
	"Data received",
	"Data sent",

	"Timer",

	"Start",
	"Stop",
};

/**
 * States of the connection statemachine.
 */
enum conn_states {
	/**
	 * Connection not assigned to any device,
	 * initial state, invalid
	 */
	CONN_STATE_INVALID,

	/**
	 * Userid assigned but not operating
	 */
	CONN_STATE_STOPPED,

	/**
	 * Connection registered,
	 * no connection request sent yet,
	 * no connection request received
	 */
	CONN_STATE_STARTWAIT,

	/**
	 * Connection registered and connection request sent,
	 * no acknowledge and no connection request received yet.
	 */
	CONN_STATE_SETUPWAIT,

	/**
	 * Connection up and running idle
	 */
	CONN_STATE_IDLE,

	/**
	 * Data sent, awaiting CONN_EVENT_TXDONE
	 */
	CONN_STATE_TX,

	/**
	 * Error during registration.
	 */
	CONN_STATE_REGERR,

	/**
	 * Error during registration.
	 */
	CONN_STATE_CONNERR,

	/**
	 * MUST be always the last element!!
	 */
	NR_CONN_STATES,
};

static const char *conn_state_names[] = {
	"Invalid",
	"Stopped",
	"StartWait",
	"SetupWait",
	"Idle",
	"TX",
	"Terminating",
	"Registration error",
	"Connect error",
};

457

L
Linus Torvalds 已提交
458 459 460 461 462 463 464 465 466
/**
 * Debug Facility Stuff
 */
static debug_info_t *iucv_dbf_setup = NULL;
static debug_info_t *iucv_dbf_data = NULL;
static debug_info_t *iucv_dbf_trace = NULL;

DEFINE_PER_CPU(char[256], iucv_dbf_txt_buf);

467
static void iucv_unregister_dbf_views(void)
L
Linus Torvalds 已提交
468 469 470 471 472 473 474 475
{
	if (iucv_dbf_setup)
		debug_unregister(iucv_dbf_setup);
	if (iucv_dbf_data)
		debug_unregister(iucv_dbf_data);
	if (iucv_dbf_trace)
		debug_unregister(iucv_dbf_trace);
}
476
static int iucv_register_dbf_views(void)
L
Linus Torvalds 已提交
477 478
{
	iucv_dbf_setup = debug_register(IUCV_DBF_SETUP_NAME,
479
					IUCV_DBF_SETUP_PAGES,
L
Linus Torvalds 已提交
480 481 482
					IUCV_DBF_SETUP_NR_AREAS,
					IUCV_DBF_SETUP_LEN);
	iucv_dbf_data = debug_register(IUCV_DBF_DATA_NAME,
483
				       IUCV_DBF_DATA_PAGES,
L
Linus Torvalds 已提交
484 485 486
				       IUCV_DBF_DATA_NR_AREAS,
				       IUCV_DBF_DATA_LEN);
	iucv_dbf_trace = debug_register(IUCV_DBF_TRACE_NAME,
487
					IUCV_DBF_TRACE_PAGES,
L
Linus Torvalds 已提交
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
					IUCV_DBF_TRACE_NR_AREAS,
					IUCV_DBF_TRACE_LEN);

	if ((iucv_dbf_setup == NULL) || (iucv_dbf_data == NULL) ||
	    (iucv_dbf_trace == NULL)) {
		iucv_unregister_dbf_views();
		return -ENOMEM;
	}
	debug_register_view(iucv_dbf_setup, &debug_hex_ascii_view);
	debug_set_level(iucv_dbf_setup, IUCV_DBF_SETUP_LEVEL);

	debug_register_view(iucv_dbf_data, &debug_hex_ascii_view);
	debug_set_level(iucv_dbf_data, IUCV_DBF_DATA_LEVEL);

	debug_register_view(iucv_dbf_trace, &debug_hex_ascii_view);
	debug_set_level(iucv_dbf_trace, IUCV_DBF_TRACE_LEVEL);

	return 0;
}

508
/*
L
Linus Torvalds 已提交
509
 * Callback-wrappers, called from lowlevel iucv layer.
510
 */
L
Linus Torvalds 已提交
511

512 513
static void netiucv_callback_rx(struct iucv_path *path,
				struct iucv_message *msg)
L
Linus Torvalds 已提交
514
{
515
	struct iucv_connection *conn = path->private;
L
Linus Torvalds 已提交
516 517 518
	struct iucv_event ev;

	ev.conn = conn;
519
	ev.data = msg;
L
Linus Torvalds 已提交
520 521 522
	fsm_event(conn->fsm, CONN_EVENT_RX, &ev);
}

523 524
static void netiucv_callback_txdone(struct iucv_path *path,
				    struct iucv_message *msg)
L
Linus Torvalds 已提交
525
{
526
	struct iucv_connection *conn = path->private;
L
Linus Torvalds 已提交
527 528 529
	struct iucv_event ev;

	ev.conn = conn;
530
	ev.data = msg;
L
Linus Torvalds 已提交
531 532 533
	fsm_event(conn->fsm, CONN_EVENT_TXDONE, &ev);
}

534
static void netiucv_callback_connack(struct iucv_path *path, u8 ipuser[16])
L
Linus Torvalds 已提交
535
{
536
	struct iucv_connection *conn = path->private;
L
Linus Torvalds 已提交
537

538
	fsm_event(conn->fsm, CONN_EVENT_CONN_ACK, conn);
L
Linus Torvalds 已提交
539 540
}

541 542
static int netiucv_callback_connreq(struct iucv_path *path,
				    u8 ipvmid[8], u8 ipuser[16])
L
Linus Torvalds 已提交
543
{
544
	struct iucv_connection *conn = path->private;
L
Linus Torvalds 已提交
545
	struct iucv_event ev;
546
	int rc;
L
Linus Torvalds 已提交
547

548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
	if (memcmp(iucvMagic, ipuser, sizeof(ipuser)))
		/* ipuser must match iucvMagic. */
		return -EINVAL;
	rc = -EINVAL;
	read_lock_bh(&iucv_connection_rwlock);
	list_for_each_entry(conn, &iucv_connection_list, list) {
		if (strncmp(ipvmid, conn->userid, 8))
			continue;
		/* Found a matching connection for this path. */
		conn->path = path;
		ev.conn = conn;
		ev.data = path;
		fsm_event(conn->fsm, CONN_EVENT_CONN_REQ, &ev);
		rc = 0;
	}
	read_unlock_bh(&iucv_connection_rwlock);
	return rc;
L
Linus Torvalds 已提交
565 566
}

567
static void netiucv_callback_connrej(struct iucv_path *path, u8 ipuser[16])
L
Linus Torvalds 已提交
568
{
569
	struct iucv_connection *conn = path->private;
L
Linus Torvalds 已提交
570

571
	fsm_event(conn->fsm, CONN_EVENT_CONN_REJ, conn);
L
Linus Torvalds 已提交
572 573
}

574
static void netiucv_callback_connsusp(struct iucv_path *path, u8 ipuser[16])
L
Linus Torvalds 已提交
575
{
576
	struct iucv_connection *conn = path->private;
L
Linus Torvalds 已提交
577

578
	fsm_event(conn->fsm, CONN_EVENT_CONN_SUS, conn);
L
Linus Torvalds 已提交
579 580
}

581
static void netiucv_callback_connres(struct iucv_path *path, u8 ipuser[16])
L
Linus Torvalds 已提交
582
{
583
	struct iucv_connection *conn = path->private;
L
Linus Torvalds 已提交
584

585 586
	fsm_event(conn->fsm, CONN_EVENT_CONN_RES, conn);
}
L
Linus Torvalds 已提交
587 588

/**
589
 * NOP action for statemachines
L
Linus Torvalds 已提交
590
 */
591
static void netiucv_action_nop(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
592 593
{
}
594

595
/*
L
Linus Torvalds 已提交
596
 * Actions of the connection statemachine
597
 */
L
Linus Torvalds 已提交
598 599

/**
600 601 602
 * netiucv_unpack_skb
 * @conn: The connection where this skb has been received.
 * @pskb: The received skb.
L
Linus Torvalds 已提交
603
 *
604 605
 * Unpack a just received skb and hand it over to upper layers.
 * Helper function for conn_action_rx.
L
Linus Torvalds 已提交
606
 */
607 608
static void netiucv_unpack_skb(struct iucv_connection *conn,
			       struct sk_buff *pskb)
L
Linus Torvalds 已提交
609 610
{
	struct net_device     *dev = conn->netdev;
611 612
	struct netiucv_priv   *privptr = netdev_priv(dev);
	u16 offset = 0;
L
Linus Torvalds 已提交
613 614 615 616 617 618 619 620

	skb_put(pskb, NETIUCV_HDRLEN);
	pskb->dev = dev;
	pskb->ip_summed = CHECKSUM_NONE;
	pskb->protocol = ntohs(ETH_P_IP);

	while (1) {
		struct sk_buff *skb;
621
		struct ll_header *header = (struct ll_header *) pskb->data;
L
Linus Torvalds 已提交
622 623 624 625 626 627 628 629 630 631 632 633 634 635

		if (!header->next)
			break;

		skb_pull(pskb, NETIUCV_HDRLEN);
		header->next -= offset;
		offset += header->next;
		header->next -= NETIUCV_HDRLEN;
		if (skb_tailroom(pskb) < header->next) {
			IUCV_DBF_TEXT_(data, 2, "Illegal next field: %d > %d\n",
				header->next, skb_tailroom(pskb));
			return;
		}
		skb_put(pskb, header->next);
636
		skb_reset_mac_header(pskb);
L
Linus Torvalds 已提交
637 638 639 640 641 642 643
		skb = dev_alloc_skb(pskb->len);
		if (!skb) {
			IUCV_DBF_TEXT(data, 2,
				"Out of memory in netiucv_unpack_skb\n");
			privptr->stats.rx_dropped++;
			return;
		}
644 645
		skb_copy_from_linear_data(pskb, skb_put(skb, pskb->len),
					  pskb->len);
646
		skb_reset_mac_header(skb);
L
Linus Torvalds 已提交
647 648 649
		skb->dev = pskb->dev;
		skb->protocol = pskb->protocol;
		pskb->ip_summed = CHECKSUM_UNNECESSARY;
650 651
		privptr->stats.rx_packets++;
		privptr->stats.rx_bytes += skb->len;
L
Linus Torvalds 已提交
652 653 654 655 656 657 658 659 660 661 662
		/*
		 * Since receiving is always initiated from a tasklet (in iucv.c),
		 * we must use netif_rx_ni() instead of netif_rx()
		 */
		netif_rx_ni(skb);
		dev->last_rx = jiffies;
		skb_pull(pskb, header->next);
		skb_put(pskb, NETIUCV_HDRLEN);
	}
}

663
static void conn_action_rx(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
664
{
665
	struct iucv_event *ev = arg;
L
Linus Torvalds 已提交
666
	struct iucv_connection *conn = ev->conn;
667 668
	struct iucv_message *msg = ev->data;
	struct netiucv_priv *privptr = netdev_priv(conn->netdev);
L
Linus Torvalds 已提交
669 670
	int rc;

671
	IUCV_DBF_TEXT(trace, 4, __func__);
L
Linus Torvalds 已提交
672 673

	if (!conn->netdev) {
674
		iucv_message_reject(conn->path, msg);
L
Linus Torvalds 已提交
675
		IUCV_DBF_TEXT(data, 2,
676
			      "Received data for unlinked connection\n");
L
Linus Torvalds 已提交
677 678
		return;
	}
679 680
	if (msg->length > conn->max_buffsize) {
		iucv_message_reject(conn->path, msg);
L
Linus Torvalds 已提交
681 682
		privptr->stats.rx_dropped++;
		IUCV_DBF_TEXT_(data, 2, "msglen %d > max_buffsize %d\n",
683
			       msg->length, conn->max_buffsize);
L
Linus Torvalds 已提交
684 685
		return;
	}
686 687
	conn->rx_buff->data = conn->rx_buff->head;
	skb_reset_tail_pointer(conn->rx_buff);
L
Linus Torvalds 已提交
688
	conn->rx_buff->len = 0;
689 690 691
	rc = iucv_message_receive(conn->path, msg, 0, conn->rx_buff->data,
				  msg->length, NULL);
	if (rc || msg->length < 5) {
L
Linus Torvalds 已提交
692 693 694 695 696 697 698
		privptr->stats.rx_errors++;
		IUCV_DBF_TEXT_(data, 2, "rc %d from iucv_receive\n", rc);
		return;
	}
	netiucv_unpack_skb(conn, conn->rx_buff);
}

699
static void conn_action_txdone(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
700
{
701
	struct iucv_event *ev = arg;
L
Linus Torvalds 已提交
702
	struct iucv_connection *conn = ev->conn;
703 704
	struct iucv_message *msg = ev->data;
	struct iucv_message txmsg;
L
Linus Torvalds 已提交
705
	struct netiucv_priv *privptr = NULL;
706 707 708 709
	u32 single_flag = msg->tag;
	u32 txbytes = 0;
	u32 txpackets = 0;
	u32 stat_maxcq = 0;
L
Linus Torvalds 已提交
710 711
	struct sk_buff *skb;
	unsigned long saveflags;
712 713
	struct ll_header header;
	int rc;
L
Linus Torvalds 已提交
714

715
	IUCV_DBF_TEXT(trace, 4, __func__);
L
Linus Torvalds 已提交
716

717 718
	if (conn && conn->netdev)
		privptr = netdev_priv(conn->netdev);
L
Linus Torvalds 已提交
719 720 721 722 723 724 725 726 727 728 729 730 731
	conn->prof.tx_pending--;
	if (single_flag) {
		if ((skb = skb_dequeue(&conn->commit_queue))) {
			atomic_dec(&skb->users);
			dev_kfree_skb_any(skb);
			if (privptr) {
				privptr->stats.tx_packets++;
				privptr->stats.tx_bytes +=
					(skb->len - NETIUCV_HDRLEN
					 	  - NETIUCV_HDRLEN);
			}
		}
	}
732 733
	conn->tx_buff->data = conn->tx_buff->head;
	skb_reset_tail_pointer(conn->tx_buff);
L
Linus Torvalds 已提交
734 735 736 737 738 739
	conn->tx_buff->len = 0;
	spin_lock_irqsave(&conn->collect_lock, saveflags);
	while ((skb = skb_dequeue(&conn->collect_queue))) {
		header.next = conn->tx_buff->len + skb->len + NETIUCV_HDRLEN;
		memcpy(skb_put(conn->tx_buff, NETIUCV_HDRLEN), &header,
		       NETIUCV_HDRLEN);
740 741 742
		skb_copy_from_linear_data(skb,
					  skb_put(conn->tx_buff, skb->len),
					  skb->len);
L
Linus Torvalds 已提交
743 744 745 746 747 748 749 750 751 752
		txbytes += skb->len;
		txpackets++;
		stat_maxcq++;
		atomic_dec(&skb->users);
		dev_kfree_skb_any(skb);
	}
	if (conn->collect_len > conn->prof.maxmulti)
		conn->prof.maxmulti = conn->collect_len;
	conn->collect_len = 0;
	spin_unlock_irqrestore(&conn->collect_lock, saveflags);
753 754 755 756
	if (conn->tx_buff->len == 0) {
		fsm_newstate(fi, CONN_STATE_IDLE);
		return;
	}
L
Linus Torvalds 已提交
757

758 759
	header.next = 0;
	memcpy(skb_put(conn->tx_buff, NETIUCV_HDRLEN), &header, NETIUCV_HDRLEN);
760
	conn->prof.send_stamp = current_kernel_time();
761 762 763
	txmsg.class = 0;
	txmsg.tag = 0;
	rc = iucv_message_send(conn->path, &txmsg, 0, 0,
L
Linus Torvalds 已提交
764
			       conn->tx_buff->data, conn->tx_buff->len);
765 766 767 768 769 770 771
	conn->prof.doios_multi++;
	conn->prof.txlen += conn->tx_buff->len;
	conn->prof.tx_pending++;
	if (conn->prof.tx_pending > conn->prof.tx_max_pending)
		conn->prof.tx_max_pending = conn->prof.tx_pending;
	if (rc) {
		conn->prof.tx_pending--;
L
Linus Torvalds 已提交
772
		fsm_newstate(fi, CONN_STATE_IDLE);
773 774 775 776 777 778 779 780 781 782 783
		if (privptr)
			privptr->stats.tx_errors += txpackets;
		IUCV_DBF_TEXT_(data, 2, "rc %d from iucv_send\n", rc);
	} else {
		if (privptr) {
			privptr->stats.tx_packets += txpackets;
			privptr->stats.tx_bytes += txbytes;
		}
		if (stat_maxcq > conn->prof.maxcqueue)
			conn->prof.maxcqueue = stat_maxcq;
	}
L
Linus Torvalds 已提交
784 785
}

786
static void conn_action_connaccept(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
787
{
788
	struct iucv_event *ev = arg;
L
Linus Torvalds 已提交
789
	struct iucv_connection *conn = ev->conn;
790
	struct iucv_path *path = ev->data;
L
Linus Torvalds 已提交
791
	struct net_device *netdev = conn->netdev;
792
	struct netiucv_priv *privptr = netdev_priv(netdev);
L
Linus Torvalds 已提交
793 794
	int rc;

795
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
796

797 798 799 800
	conn->path = path;
	path->msglim = NETIUCV_QUEUELEN_DEFAULT;
	path->flags = 0;
	rc = iucv_path_accept(path, &netiucv_handler, NULL, conn);
L
Linus Torvalds 已提交
801 802 803 804 805
	if (rc) {
		IUCV_DBF_TEXT_(setup, 2, "rc %d from iucv_accept", rc);
		return;
	}
	fsm_newstate(fi, CONN_STATE_IDLE);
806
	netdev->tx_queue_len = conn->path->msglim;
L
Linus Torvalds 已提交
807 808 809
	fsm_event(privptr->fsm, DEV_EVENT_CONUP, netdev);
}

810
static void conn_action_connreject(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
811
{
812 813
	struct iucv_event *ev = arg;
	struct iucv_path *path = ev->data;
L
Linus Torvalds 已提交
814

815
	IUCV_DBF_TEXT(trace, 3, __func__);
816
	iucv_path_sever(path, NULL);
L
Linus Torvalds 已提交
817 818
}

819
static void conn_action_connack(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
820
{
821
	struct iucv_connection *conn = arg;
L
Linus Torvalds 已提交
822
	struct net_device *netdev = conn->netdev;
823
	struct netiucv_priv *privptr = netdev_priv(netdev);
L
Linus Torvalds 已提交
824

825
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
826 827
	fsm_deltimer(&conn->timer);
	fsm_newstate(fi, CONN_STATE_IDLE);
828
	netdev->tx_queue_len = conn->path->msglim;
L
Linus Torvalds 已提交
829 830 831
	fsm_event(privptr->fsm, DEV_EVENT_CONUP, netdev);
}

832
static void conn_action_conntimsev(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
833
{
834
	struct iucv_connection *conn = arg;
L
Linus Torvalds 已提交
835

836
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
837
	fsm_deltimer(&conn->timer);
838
	iucv_path_sever(conn->path, NULL);
L
Linus Torvalds 已提交
839 840 841
	fsm_newstate(fi, CONN_STATE_STARTWAIT);
}

842
static void conn_action_connsever(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
843
{
844
	struct iucv_connection *conn = arg;
L
Linus Torvalds 已提交
845
	struct net_device *netdev = conn->netdev;
846
	struct netiucv_priv *privptr = netdev_priv(netdev);
L
Linus Torvalds 已提交
847

848
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
849 850

	fsm_deltimer(&conn->timer);
851
	iucv_path_sever(conn->path, NULL);
852 853
	dev_info(privptr->dev, "The peer interface of the IUCV device"
		" has closed the connection\n");
L
Linus Torvalds 已提交
854
	IUCV_DBF_TEXT(data, 2,
855
		      "conn_action_connsever: Remote dropped connection\n");
L
Linus Torvalds 已提交
856 857 858 859
	fsm_newstate(fi, CONN_STATE_STARTWAIT);
	fsm_event(privptr->fsm, DEV_EVENT_CONDOWN, netdev);
}

860
static void conn_action_start(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
861
{
862
	struct iucv_connection *conn = arg;
863 864
	struct net_device *netdev = conn->netdev;
	struct netiucv_priv *privptr = netdev_priv(netdev);
L
Linus Torvalds 已提交
865 866
	int rc;

867
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
868

869
	fsm_newstate(fi, CONN_STATE_STARTWAIT);
870
	IUCV_DBF_TEXT_(setup, 2, "%s('%s'): connecting ...\n",
871
		netdev->name, conn->userid);
L
Linus Torvalds 已提交
872

873 874 875 876 877
	/*
	 * We must set the state before calling iucv_connect because the
	 * callback handler could be called at any point after the connection
	 * request is sent
	 */
L
Linus Torvalds 已提交
878 879

	fsm_newstate(fi, CONN_STATE_SETUPWAIT);
880 881 882
	conn->path = iucv_path_alloc(NETIUCV_QUEUELEN_DEFAULT, 0, GFP_KERNEL);
	rc = iucv_path_connect(conn->path, &netiucv_handler, conn->userid,
			       NULL, iucvMagic, conn);
L
Linus Torvalds 已提交
883
	switch (rc) {
884
	case 0:
885
		netdev->tx_queue_len = conn->path->msglim;
886 887 888 889
		fsm_addtimer(&conn->timer, NETIUCV_TIMEOUT_5SEC,
			     CONN_EVENT_TIMER, conn);
		return;
	case 11:
890 891 892
		dev_warn(privptr->dev,
			"The IUCV device failed to connect to z/VM guest %s\n",
			netiucv_printname(conn->userid));
893 894 895
		fsm_newstate(fi, CONN_STATE_STARTWAIT);
		break;
	case 12:
896 897 898
		dev_warn(privptr->dev,
			"The IUCV device failed to connect to the peer on z/VM"
			" guest %s\n", netiucv_printname(conn->userid));
899 900 901
		fsm_newstate(fi, CONN_STATE_STARTWAIT);
		break;
	case 13:
902 903 904
		dev_err(privptr->dev,
			"Connecting the IUCV device would exceed the maximum"
			" number of IUCV connections\n");
905 906 907
		fsm_newstate(fi, CONN_STATE_CONNERR);
		break;
	case 14:
908 909 910 911
		dev_err(privptr->dev,
			"z/VM guest %s has too many IUCV connections"
			" to connect with the IUCV device\n",
			netiucv_printname(conn->userid));
912 913 914
		fsm_newstate(fi, CONN_STATE_CONNERR);
		break;
	case 15:
915 916 917
		dev_err(privptr->dev,
			"The IUCV device cannot connect to a z/VM guest with no"
			" IUCV authorization\n");
918 919 920
		fsm_newstate(fi, CONN_STATE_CONNERR);
		break;
	default:
921 922 923
		dev_err(privptr->dev,
			"Connecting the IUCV device failed with error %d\n",
			rc);
924 925
		fsm_newstate(fi, CONN_STATE_CONNERR);
		break;
L
Linus Torvalds 已提交
926 927
	}
	IUCV_DBF_TEXT_(setup, 5, "iucv_connect rc is %d\n", rc);
928 929
	kfree(conn->path);
	conn->path = NULL;
L
Linus Torvalds 已提交
930 931
}

932
static void netiucv_purge_skb_queue(struct sk_buff_head *q)
L
Linus Torvalds 已提交
933 934 935 936 937 938 939 940 941
{
	struct sk_buff *skb;

	while ((skb = skb_dequeue(q))) {
		atomic_dec(&skb->users);
		dev_kfree_skb_any(skb);
	}
}

942
static void conn_action_stop(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
943
{
944
	struct iucv_event *ev = arg;
L
Linus Torvalds 已提交
945 946
	struct iucv_connection *conn = ev->conn;
	struct net_device *netdev = conn->netdev;
947
	struct netiucv_priv *privptr = netdev_priv(netdev);
L
Linus Torvalds 已提交
948

949
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
950 951 952 953

	fsm_deltimer(&conn->timer);
	fsm_newstate(fi, CONN_STATE_STOPPED);
	netiucv_purge_skb_queue(&conn->collect_queue);
954 955 956 957 958 959
	if (conn->path) {
		IUCV_DBF_TEXT(trace, 5, "calling iucv_path_sever\n");
		iucv_path_sever(conn->path, iucvMagic);
		kfree(conn->path);
		conn->path = NULL;
	}
L
Linus Torvalds 已提交
960 961 962 963
	netiucv_purge_skb_queue(&conn->commit_queue);
	fsm_event(privptr->fsm, DEV_EVENT_CONDOWN, netdev);
}

964
static void conn_action_inval(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
965
{
966
	struct iucv_connection *conn = arg;
L
Linus Torvalds 已提交
967 968
	struct net_device *netdev = conn->netdev;

969 970
	IUCV_DBF_TEXT_(data, 2, "%s('%s'): conn_action_inval called\n",
		netdev->name, conn->userid);
L
Linus Torvalds 已提交
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
}

static const fsm_node conn_fsm[] = {
	{ CONN_STATE_INVALID,   CONN_EVENT_START,    conn_action_inval      },
	{ CONN_STATE_STOPPED,   CONN_EVENT_START,    conn_action_start      },

	{ CONN_STATE_STOPPED,   CONN_EVENT_STOP,     conn_action_stop       },
	{ CONN_STATE_STARTWAIT, CONN_EVENT_STOP,     conn_action_stop       },
	{ CONN_STATE_SETUPWAIT, CONN_EVENT_STOP,     conn_action_stop       },
	{ CONN_STATE_IDLE,      CONN_EVENT_STOP,     conn_action_stop       },
	{ CONN_STATE_TX,        CONN_EVENT_STOP,     conn_action_stop       },
	{ CONN_STATE_REGERR,    CONN_EVENT_STOP,     conn_action_stop       },
	{ CONN_STATE_CONNERR,   CONN_EVENT_STOP,     conn_action_stop       },

	{ CONN_STATE_STOPPED,   CONN_EVENT_CONN_REQ, conn_action_connreject },
        { CONN_STATE_STARTWAIT, CONN_EVENT_CONN_REQ, conn_action_connaccept },
	{ CONN_STATE_SETUPWAIT, CONN_EVENT_CONN_REQ, conn_action_connaccept },
	{ CONN_STATE_IDLE,      CONN_EVENT_CONN_REQ, conn_action_connreject },
	{ CONN_STATE_TX,        CONN_EVENT_CONN_REQ, conn_action_connreject },

	{ CONN_STATE_SETUPWAIT, CONN_EVENT_CONN_ACK, conn_action_connack    },
	{ CONN_STATE_SETUPWAIT, CONN_EVENT_TIMER,    conn_action_conntimsev },

	{ CONN_STATE_SETUPWAIT, CONN_EVENT_CONN_REJ, conn_action_connsever  },
	{ CONN_STATE_IDLE,      CONN_EVENT_CONN_REJ, conn_action_connsever  },
	{ CONN_STATE_TX,        CONN_EVENT_CONN_REJ, conn_action_connsever  },

	{ CONN_STATE_IDLE,      CONN_EVENT_RX,       conn_action_rx         },
	{ CONN_STATE_TX,        CONN_EVENT_RX,       conn_action_rx         },

	{ CONN_STATE_TX,        CONN_EVENT_TXDONE,   conn_action_txdone     },
	{ CONN_STATE_IDLE,      CONN_EVENT_TXDONE,   conn_action_txdone     },
};

static const int CONN_FSM_LEN = sizeof(conn_fsm) / sizeof(fsm_node);

1007

1008
/*
L
Linus Torvalds 已提交
1009
 * Actions for interface - statemachine.
1010
 */
L
Linus Torvalds 已提交
1011 1012

/**
1013 1014 1015 1016
 * dev_action_start
 * @fi: An instance of an interface statemachine.
 * @event: The event, just happened.
 * @arg: Generic pointer, casted from struct net_device * upon call.
L
Linus Torvalds 已提交
1017
 *
1018
 * Startup connection by sending CONN_EVENT_START to it.
L
Linus Torvalds 已提交
1019
 */
1020
static void dev_action_start(fsm_instance *fi, int event, void *arg)
L
Linus Torvalds 已提交
1021
{
1022 1023
	struct net_device   *dev = arg;
	struct netiucv_priv *privptr = netdev_priv(dev);
L
Linus Torvalds 已提交
1024

1025
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1026 1027

	fsm_newstate(fi, DEV_STATE_STARTWAIT);
1028
	fsm_event(privptr->conn->fsm, CONN_EVENT_START, privptr->conn);
L
Linus Torvalds 已提交
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
}

/**
 * Shutdown connection by sending CONN_EVENT_STOP to it.
 *
 * @param fi    An instance of an interface statemachine.
 * @param event The event, just happened.
 * @param arg   Generic pointer, casted from struct net_device * upon call.
 */
static void
dev_action_stop(fsm_instance *fi, int event, void *arg)
{
1041 1042
	struct net_device   *dev = arg;
	struct netiucv_priv *privptr = netdev_priv(dev);
L
Linus Torvalds 已提交
1043 1044
	struct iucv_event   ev;

1045
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063

	ev.conn = privptr->conn;

	fsm_newstate(fi, DEV_STATE_STOPWAIT);
	fsm_event(privptr->conn->fsm, CONN_EVENT_STOP, &ev);
}

/**
 * Called from connection statemachine
 * when a connection is up and running.
 *
 * @param fi    An instance of an interface statemachine.
 * @param event The event, just happened.
 * @param arg   Generic pointer, casted from struct net_device * upon call.
 */
static void
dev_action_connup(fsm_instance *fi, int event, void *arg)
{
1064 1065
	struct net_device   *dev = arg;
	struct netiucv_priv *privptr = netdev_priv(dev);
L
Linus Torvalds 已提交
1066

1067
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1068 1069 1070 1071

	switch (fsm_getstate(fi)) {
		case DEV_STATE_STARTWAIT:
			fsm_newstate(fi, DEV_STATE_RUNNING);
1072 1073 1074
			dev_info(privptr->dev,
				"The IUCV device has been connected"
				" successfully to %s\n", privptr->conn->userid);
L
Linus Torvalds 已提交
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
			IUCV_DBF_TEXT(setup, 3,
				"connection is up and running\n");
			break;
		case DEV_STATE_STOPWAIT:
			IUCV_DBF_TEXT(data, 2,
				"dev_action_connup: in DEV_STATE_STOPWAIT\n");
			break;
	}
}

/**
 * Called from connection statemachine
 * when a connection has been shutdown.
 *
 * @param fi    An instance of an interface statemachine.
 * @param event The event, just happened.
 * @param arg   Generic pointer, casted from struct net_device * upon call.
 */
static void
dev_action_conndown(fsm_instance *fi, int event, void *arg)
{
1096
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119

	switch (fsm_getstate(fi)) {
		case DEV_STATE_RUNNING:
			fsm_newstate(fi, DEV_STATE_STARTWAIT);
			break;
		case DEV_STATE_STOPWAIT:
			fsm_newstate(fi, DEV_STATE_STOPPED);
			IUCV_DBF_TEXT(setup, 3, "connection is down\n");
			break;
	}
}

static const fsm_node dev_fsm[] = {
	{ DEV_STATE_STOPPED,    DEV_EVENT_START,   dev_action_start    },

	{ DEV_STATE_STOPWAIT,   DEV_EVENT_START,   dev_action_start    },
	{ DEV_STATE_STOPWAIT,   DEV_EVENT_CONDOWN, dev_action_conndown },

	{ DEV_STATE_STARTWAIT,  DEV_EVENT_STOP,    dev_action_stop     },
	{ DEV_STATE_STARTWAIT,  DEV_EVENT_CONUP,   dev_action_connup   },

	{ DEV_STATE_RUNNING,    DEV_EVENT_STOP,    dev_action_stop     },
	{ DEV_STATE_RUNNING,    DEV_EVENT_CONDOWN, dev_action_conndown },
1120
	{ DEV_STATE_RUNNING,    DEV_EVENT_CONUP,   netiucv_action_nop  },
L
Linus Torvalds 已提交
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
};

static const int DEV_FSM_LEN = sizeof(dev_fsm) / sizeof(fsm_node);

/**
 * Transmit a packet.
 * This is a helper function for netiucv_tx().
 *
 * @param conn Connection to be used for sending.
 * @param skb Pointer to struct sk_buff of packet to send.
 *            The linklevel header has already been set up
 *            by netiucv_tx().
 *
 * @return 0 on success, -ERRNO on failure. (Never fails.)
 */
1136 1137 1138 1139
static int netiucv_transmit_skb(struct iucv_connection *conn,
				struct sk_buff *skb)
{
	struct iucv_message msg;
L
Linus Torvalds 已提交
1140
	unsigned long saveflags;
1141 1142
	struct ll_header header;
	int rc;
L
Linus Torvalds 已提交
1143 1144 1145 1146 1147 1148 1149 1150 1151

	if (fsm_getstate(conn->fsm) != CONN_STATE_IDLE) {
		int l = skb->len + NETIUCV_HDRLEN;

		spin_lock_irqsave(&conn->collect_lock, saveflags);
		if (conn->collect_len + l >
		    (conn->max_buffsize - NETIUCV_HDRLEN)) {
			rc = -EBUSY;
			IUCV_DBF_TEXT(data, 2,
1152
				      "EBUSY from netiucv_transmit_skb\n");
L
Linus Torvalds 已提交
1153 1154 1155 1156
		} else {
			atomic_inc(&skb->users);
			skb_queue_tail(&conn->collect_queue, skb);
			conn->collect_len += l;
1157
			rc = 0;
L
Linus Torvalds 已提交
1158 1159 1160 1161 1162 1163 1164 1165
		}
		spin_unlock_irqrestore(&conn->collect_lock, saveflags);
	} else {
		struct sk_buff *nskb = skb;
		/**
		 * Copy the skb to a new allocated skb in lowmem only if the
		 * data is located above 2G in memory or tailroom is < 2.
		 */
1166 1167
		unsigned long hi = ((unsigned long)(skb_tail_pointer(skb) +
				    NETIUCV_HDRLEN)) >> 31;
L
Linus Torvalds 已提交
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
		int copied = 0;
		if (hi || (skb_tailroom(skb) < 2)) {
			nskb = alloc_skb(skb->len + NETIUCV_HDRLEN +
					 NETIUCV_HDRLEN, GFP_ATOMIC | GFP_DMA);
			if (!nskb) {
				IUCV_DBF_TEXT(data, 2, "alloc_skb failed\n");
				rc = -ENOMEM;
				return rc;
			} else {
				skb_reserve(nskb, NETIUCV_HDRLEN);
				memcpy(skb_put(nskb, skb->len),
				       skb->data, skb->len);
			}
			copied = 1;
		}
		/**
		 * skb now is below 2G and has enough room. Add headers.
		 */
		header.next = nskb->len + NETIUCV_HDRLEN;
		memcpy(skb_push(nskb, NETIUCV_HDRLEN), &header, NETIUCV_HDRLEN);
		header.next = 0;
		memcpy(skb_put(nskb, NETIUCV_HDRLEN), &header,  NETIUCV_HDRLEN);

		fsm_newstate(conn->fsm, CONN_STATE_TX);
1192
		conn->prof.send_stamp = current_kernel_time();
1193

1194 1195 1196 1197
		msg.tag = 1;
		msg.class = 0;
		rc = iucv_message_send(conn->path, &msg, 0, 0,
				       nskb->data, nskb->len);
L
Linus Torvalds 已提交
1198 1199 1200 1201 1202 1203 1204 1205 1206
		conn->prof.doios_single++;
		conn->prof.txlen += skb->len;
		conn->prof.tx_pending++;
		if (conn->prof.tx_pending > conn->prof.tx_max_pending)
			conn->prof.tx_max_pending = conn->prof.tx_pending;
		if (rc) {
			struct netiucv_priv *privptr;
			fsm_newstate(conn->fsm, CONN_STATE_IDLE);
			conn->prof.tx_pending--;
1207
			privptr = netdev_priv(conn->netdev);
L
Linus Torvalds 已提交
1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
			if (privptr)
				privptr->stats.tx_errors++;
			if (copied)
				dev_kfree_skb(nskb);
			else {
				/**
				 * Remove our headers. They get added
				 * again on retransmit.
				 */
				skb_pull(skb, NETIUCV_HDRLEN);
				skb_trim(skb, skb->len - NETIUCV_HDRLEN);
			}
			IUCV_DBF_TEXT_(data, 2, "rc %d from iucv_send\n", rc);
		} else {
			if (copied)
				dev_kfree_skb(skb);
			atomic_inc(&nskb->users);
			skb_queue_tail(&conn->commit_queue, nskb);
		}
	}

	return rc;
}
1231

1232
/*
L
Linus Torvalds 已提交
1233
 * Interface API for upper network layers
1234
 */
L
Linus Torvalds 已提交
1235 1236 1237 1238 1239 1240 1241 1242 1243

/**
 * Open an interface.
 * Called from generic network layer when ifconfig up is run.
 *
 * @param dev Pointer to interface struct.
 *
 * @return 0 on success, -ERRNO on failure. (Never fails.)
 */
1244 1245 1246 1247 1248
static int netiucv_open(struct net_device *dev)
{
	struct netiucv_priv *priv = netdev_priv(dev);

	fsm_event(priv->fsm, DEV_EVENT_START, dev);
L
Linus Torvalds 已提交
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
	return 0;
}

/**
 * Close an interface.
 * Called from generic network layer when ifconfig down is run.
 *
 * @param dev Pointer to interface struct.
 *
 * @return 0 on success, -ERRNO on failure. (Never fails.)
 */
1260 1261 1262 1263 1264
static int netiucv_close(struct net_device *dev)
{
	struct netiucv_priv *priv = netdev_priv(dev);

	fsm_event(priv->fsm, DEV_EVENT_STOP, dev);
L
Linus Torvalds 已提交
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
	return 0;
}

/**
 * Start transmission of a packet.
 * Called from generic network device layer.
 *
 * @param skb Pointer to buffer containing the packet.
 * @param dev Pointer to interface struct.
 *
 * @return 0 if packet consumed, !0 if packet rejected.
 *         Note: If we return !0, then the packet is free'd by
 *               the generic network layer.
 */
static int netiucv_tx(struct sk_buff *skb, struct net_device *dev)
{
1281 1282
	struct netiucv_priv *privptr = netdev_priv(dev);
	int rc;
L
Linus Torvalds 已提交
1283

1284
	IUCV_DBF_TEXT(trace, 4, __func__);
L
Linus Torvalds 已提交
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
	/**
	 * Some sanity checks ...
	 */
	if (skb == NULL) {
		IUCV_DBF_TEXT(data, 2, "netiucv_tx: skb is NULL\n");
		privptr->stats.tx_dropped++;
		return 0;
	}
	if (skb_headroom(skb) < NETIUCV_HDRLEN) {
		IUCV_DBF_TEXT(data, 2,
			"netiucv_tx: skb_headroom < NETIUCV_HDRLEN\n");
		dev_kfree_skb(skb);
		privptr->stats.tx_dropped++;
		return 0;
	}

	/**
	 * If connection is not running, try to restart it
1303
	 * and throw away packet.
L
Linus Torvalds 已提交
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
	 */
	if (fsm_getstate(privptr->fsm) != DEV_STATE_RUNNING) {
		dev_kfree_skb(skb);
		privptr->stats.tx_dropped++;
		privptr->stats.tx_errors++;
		privptr->stats.tx_carrier_errors++;
		return 0;
	}

	if (netiucv_test_and_set_busy(dev)) {
		IUCV_DBF_TEXT(data, 2, "EBUSY from netiucv_tx\n");
1315
		return NETDEV_TX_BUSY;
L
Linus Torvalds 已提交
1316 1317
	}
	dev->trans_start = jiffies;
1318
	rc = netiucv_transmit_skb(privptr->conn, skb);
L
Linus Torvalds 已提交
1319
	netiucv_clear_busy(dev);
1320
	return rc ? NETDEV_TX_BUSY : NETDEV_TX_OK;
L
Linus Torvalds 已提交
1321 1322 1323
}

/**
1324 1325
 * netiucv_stats
 * @dev: Pointer to interface struct.
L
Linus Torvalds 已提交
1326
 *
1327
 * Returns interface statistics of a device.
L
Linus Torvalds 已提交
1328
 *
1329
 * Returns pointer to stats struct of this interface.
L
Linus Torvalds 已提交
1330
 */
1331
static struct net_device_stats *netiucv_stats (struct net_device * dev)
L
Linus Torvalds 已提交
1332
{
1333 1334
	struct netiucv_priv *priv = netdev_priv(dev);

1335
	IUCV_DBF_TEXT(trace, 5, __func__);
1336
	return &priv->stats;
L
Linus Torvalds 已提交
1337 1338 1339
}

/**
1340 1341 1342
 * netiucv_change_mtu
 * @dev: Pointer to interface struct.
 * @new_mtu: The new MTU to use for this interface.
L
Linus Torvalds 已提交
1343
 *
1344
 * Sets MTU of an interface.
L
Linus Torvalds 已提交
1345
 *
1346
 * Returns 0 on success, -EINVAL if MTU is out of valid range.
L
Linus Torvalds 已提交
1347 1348
 *         (valid range is 576 .. NETIUCV_MTU_MAX).
 */
1349
static int netiucv_change_mtu(struct net_device * dev, int new_mtu)
L
Linus Torvalds 已提交
1350
{
1351
	IUCV_DBF_TEXT(trace, 3, __func__);
1352
	if (new_mtu < 576 || new_mtu > NETIUCV_MTU_MAX) {
L
Linus Torvalds 已提交
1353 1354 1355 1356 1357 1358 1359
		IUCV_DBF_TEXT(setup, 2, "given MTU out of valid range\n");
		return -EINVAL;
	}
	dev->mtu = new_mtu;
	return 0;
}

1360
/*
L
Linus Torvalds 已提交
1361
 * attributes in sysfs
1362
 */
L
Linus Torvalds 已提交
1363

1364 1365
static ssize_t user_show(struct device *dev, struct device_attribute *attr,
			 char *buf)
L
Linus Torvalds 已提交
1366 1367 1368
{
	struct netiucv_priv *priv = dev->driver_data;

1369
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1370 1371 1372
	return sprintf(buf, "%s\n", netiucv_printname(priv->conn->userid));
}

1373 1374
static ssize_t user_write(struct device *dev, struct device_attribute *attr,
			  const char *buf, size_t count)
L
Linus Torvalds 已提交
1375 1376 1377 1378 1379
{
	struct netiucv_priv *priv = dev->driver_data;
	struct net_device *ndev = priv->conn->netdev;
	char    *p;
	char    *tmp;
1380
	char 	username[9];
L
Linus Torvalds 已提交
1381
	int 	i;
1382
	struct iucv_connection *cp;
L
Linus Torvalds 已提交
1383

1384
	IUCV_DBF_TEXT(trace, 3, __func__);
1385
	if (count > 9) {
L
Linus Torvalds 已提交
1386
		IUCV_DBF_TEXT_(setup, 2,
1387
			       "%d is length of username\n", (int) count);
L
Linus Torvalds 已提交
1388 1389 1390 1391
		return -EINVAL;
	}

	tmp = strsep((char **) &buf, "\n");
1392 1393
	for (i = 0, p = tmp; i < 8 && *p; i++, p++) {
		if (isalnum(*p) || (*p == '$')) {
1394
			username[i]= toupper(*p);
1395 1396 1397
			continue;
		}
		if (*p == '\n') {
L
Linus Torvalds 已提交
1398 1399 1400
			/* trailing lf, grr */
			break;
		}
1401 1402 1403
		IUCV_DBF_TEXT_(setup, 2,
			       "username: invalid character %c\n", *p);
		return -EINVAL;
L
Linus Torvalds 已提交
1404
	}
1405
	while (i < 8)
L
Linus Torvalds 已提交
1406
		username[i++] = ' ';
1407
	username[8] = '\0';
L
Linus Torvalds 已提交
1408

1409 1410 1411 1412
	if (memcmp(username, priv->conn->userid, 9) &&
	    (ndev->flags & (IFF_UP | IFF_RUNNING))) {
		/* username changed while the interface is active. */
		IUCV_DBF_TEXT(setup, 2, "user_write: device active\n");
1413
		return -EPERM;
1414 1415 1416 1417 1418
	}
	read_lock_bh(&iucv_connection_rwlock);
	list_for_each_entry(cp, &iucv_connection_list, list) {
		if (!strncmp(username, cp->userid, 9) && cp->netdev != ndev) {
			read_unlock_bh(&iucv_connection_rwlock);
1419 1420
			IUCV_DBF_TEXT_(setup, 2, "user_write: Connection "
				"to %s already exists\n", username);
1421
			return -EEXIST;
L
Linus Torvalds 已提交
1422 1423
		}
	}
1424
	read_unlock_bh(&iucv_connection_rwlock);
L
Linus Torvalds 已提交
1425 1426 1427 1428 1429 1430
	memcpy(priv->conn->userid, username, 9);
	return count;
}

static DEVICE_ATTR(user, 0644, user_show, user_write);

1431 1432 1433
static ssize_t buffer_show (struct device *dev, struct device_attribute *attr,
			    char *buf)
{	struct netiucv_priv *priv = dev->driver_data;
L
Linus Torvalds 已提交
1434

1435
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1436 1437 1438
	return sprintf(buf, "%d\n", priv->conn->max_buffsize);
}

1439 1440
static ssize_t buffer_write (struct device *dev, struct device_attribute *attr,
			     const char *buf, size_t count)
L
Linus Torvalds 已提交
1441 1442 1443 1444 1445 1446
{
	struct netiucv_priv *priv = dev->driver_data;
	struct net_device *ndev = priv->conn->netdev;
	char         *e;
	int          bs1;

1447
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1448 1449 1450 1451 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
	if (count >= 39)
		return -EINVAL;

	bs1 = simple_strtoul(buf, &e, 0);

	if (e && (!isspace(*e))) {
		IUCV_DBF_TEXT_(setup, 2, "buffer_write: invalid char %c\n", *e);
		return -EINVAL;
	}
	if (bs1 > NETIUCV_BUFSIZE_MAX) {
		IUCV_DBF_TEXT_(setup, 2,
			"buffer_write: buffer size %d too large\n",
			bs1);
		return -EINVAL;
	}
	if ((ndev->flags & IFF_RUNNING) &&
	    (bs1 < (ndev->mtu + NETIUCV_HDRLEN + 2))) {
		IUCV_DBF_TEXT_(setup, 2,
			"buffer_write: buffer size %d too small\n",
			bs1);
		return -EINVAL;
	}
	if (bs1 < (576 + NETIUCV_HDRLEN + NETIUCV_HDRLEN)) {
		IUCV_DBF_TEXT_(setup, 2,
			"buffer_write: buffer size %d too small\n",
			bs1);
		return -EINVAL;
	}

	priv->conn->max_buffsize = bs1;
	if (!(ndev->flags & IFF_RUNNING))
		ndev->mtu = bs1 - NETIUCV_HDRLEN - NETIUCV_HDRLEN;

	return count;

}

static DEVICE_ATTR(buffer, 0644, buffer_show, buffer_write);

1487 1488
static ssize_t dev_fsm_show (struct device *dev, struct device_attribute *attr,
			     char *buf)
L
Linus Torvalds 已提交
1489 1490 1491
{
	struct netiucv_priv *priv = dev->driver_data;

1492
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1493 1494 1495 1496 1497
	return sprintf(buf, "%s\n", fsm_getstate_str(priv->fsm));
}

static DEVICE_ATTR(device_fsm_state, 0444, dev_fsm_show, NULL);

1498 1499
static ssize_t conn_fsm_show (struct device *dev,
			      struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
1500 1501 1502
{
	struct netiucv_priv *priv = dev->driver_data;

1503
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1504 1505 1506 1507 1508
	return sprintf(buf, "%s\n", fsm_getstate_str(priv->conn->fsm));
}

static DEVICE_ATTR(connection_fsm_state, 0444, conn_fsm_show, NULL);

1509 1510
static ssize_t maxmulti_show (struct device *dev,
			      struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
1511 1512 1513
{
	struct netiucv_priv *priv = dev->driver_data;

1514
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1515 1516 1517
	return sprintf(buf, "%ld\n", priv->conn->prof.maxmulti);
}

1518 1519 1520
static ssize_t maxmulti_write (struct device *dev,
			       struct device_attribute *attr,
			       const char *buf, size_t count)
L
Linus Torvalds 已提交
1521 1522 1523
{
	struct netiucv_priv *priv = dev->driver_data;

1524
	IUCV_DBF_TEXT(trace, 4, __func__);
L
Linus Torvalds 已提交
1525 1526 1527 1528 1529 1530
	priv->conn->prof.maxmulti = 0;
	return count;
}

static DEVICE_ATTR(max_tx_buffer_used, 0644, maxmulti_show, maxmulti_write);

1531 1532
static ssize_t maxcq_show (struct device *dev, struct device_attribute *attr,
			   char *buf)
L
Linus Torvalds 已提交
1533 1534 1535
{
	struct netiucv_priv *priv = dev->driver_data;

1536
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1537 1538 1539
	return sprintf(buf, "%ld\n", priv->conn->prof.maxcqueue);
}

1540 1541
static ssize_t maxcq_write (struct device *dev, struct device_attribute *attr,
			    const char *buf, size_t count)
L
Linus Torvalds 已提交
1542 1543
{
	struct netiucv_priv *priv = dev->driver_data;
1544

1545
	IUCV_DBF_TEXT(trace, 4, __func__);
L
Linus Torvalds 已提交
1546 1547 1548 1549 1550 1551
	priv->conn->prof.maxcqueue = 0;
	return count;
}

static DEVICE_ATTR(max_chained_skbs, 0644, maxcq_show, maxcq_write);

1552 1553
static ssize_t sdoio_show (struct device *dev, struct device_attribute *attr,
			   char *buf)
L
Linus Torvalds 已提交
1554 1555 1556
{
	struct netiucv_priv *priv = dev->driver_data;

1557
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1558 1559 1560
	return sprintf(buf, "%ld\n", priv->conn->prof.doios_single);
}

1561 1562
static ssize_t sdoio_write (struct device *dev, struct device_attribute *attr,
			    const char *buf, size_t count)
L
Linus Torvalds 已提交
1563 1564
{
	struct netiucv_priv *priv = dev->driver_data;
1565

1566
	IUCV_DBF_TEXT(trace, 4, __func__);
L
Linus Torvalds 已提交
1567 1568 1569 1570 1571 1572
	priv->conn->prof.doios_single = 0;
	return count;
}

static DEVICE_ATTR(tx_single_write_ops, 0644, sdoio_show, sdoio_write);

1573 1574
static ssize_t mdoio_show (struct device *dev, struct device_attribute *attr,
			   char *buf)
L
Linus Torvalds 已提交
1575 1576 1577
{
	struct netiucv_priv *priv = dev->driver_data;

1578
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1579 1580 1581
	return sprintf(buf, "%ld\n", priv->conn->prof.doios_multi);
}

1582 1583
static ssize_t mdoio_write (struct device *dev, struct device_attribute *attr,
			    const char *buf, size_t count)
L
Linus Torvalds 已提交
1584 1585
{
	struct netiucv_priv *priv = dev->driver_data;
1586

1587
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1588 1589 1590 1591 1592 1593
	priv->conn->prof.doios_multi = 0;
	return count;
}

static DEVICE_ATTR(tx_multi_write_ops, 0644, mdoio_show, mdoio_write);

1594 1595
static ssize_t txlen_show (struct device *dev, struct device_attribute *attr,
			   char *buf)
L
Linus Torvalds 已提交
1596 1597 1598
{
	struct netiucv_priv *priv = dev->driver_data;

1599
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1600 1601 1602
	return sprintf(buf, "%ld\n", priv->conn->prof.txlen);
}

1603 1604
static ssize_t txlen_write (struct device *dev, struct device_attribute *attr,
			    const char *buf, size_t count)
L
Linus Torvalds 已提交
1605 1606
{
	struct netiucv_priv *priv = dev->driver_data;
1607

1608
	IUCV_DBF_TEXT(trace, 4, __func__);
L
Linus Torvalds 已提交
1609 1610 1611 1612 1613 1614
	priv->conn->prof.txlen = 0;
	return count;
}

static DEVICE_ATTR(netto_bytes, 0644, txlen_show, txlen_write);

1615 1616
static ssize_t txtime_show (struct device *dev, struct device_attribute *attr,
			    char *buf)
L
Linus Torvalds 已提交
1617 1618 1619
{
	struct netiucv_priv *priv = dev->driver_data;

1620
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1621 1622 1623
	return sprintf(buf, "%ld\n", priv->conn->prof.tx_time);
}

1624 1625
static ssize_t txtime_write (struct device *dev, struct device_attribute *attr,
			     const char *buf, size_t count)
L
Linus Torvalds 已提交
1626 1627
{
	struct netiucv_priv *priv = dev->driver_data;
1628

1629
	IUCV_DBF_TEXT(trace, 4, __func__);
L
Linus Torvalds 已提交
1630 1631 1632 1633 1634 1635
	priv->conn->prof.tx_time = 0;
	return count;
}

static DEVICE_ATTR(max_tx_io_time, 0644, txtime_show, txtime_write);

1636 1637
static ssize_t txpend_show (struct device *dev, struct device_attribute *attr,
			    char *buf)
L
Linus Torvalds 已提交
1638 1639 1640
{
	struct netiucv_priv *priv = dev->driver_data;

1641
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1642 1643 1644
	return sprintf(buf, "%ld\n", priv->conn->prof.tx_pending);
}

1645 1646
static ssize_t txpend_write (struct device *dev, struct device_attribute *attr,
			     const char *buf, size_t count)
L
Linus Torvalds 已提交
1647 1648 1649
{
	struct netiucv_priv *priv = dev->driver_data;

1650
	IUCV_DBF_TEXT(trace, 4, __func__);
L
Linus Torvalds 已提交
1651 1652 1653 1654 1655 1656
	priv->conn->prof.tx_pending = 0;
	return count;
}

static DEVICE_ATTR(tx_pending, 0644, txpend_show, txpend_write);

1657 1658
static ssize_t txmpnd_show (struct device *dev, struct device_attribute *attr,
			    char *buf)
L
Linus Torvalds 已提交
1659 1660 1661
{
	struct netiucv_priv *priv = dev->driver_data;

1662
	IUCV_DBF_TEXT(trace, 5, __func__);
L
Linus Torvalds 已提交
1663 1664 1665
	return sprintf(buf, "%ld\n", priv->conn->prof.tx_max_pending);
}

1666 1667
static ssize_t txmpnd_write (struct device *dev, struct device_attribute *attr,
			     const char *buf, size_t count)
L
Linus Torvalds 已提交
1668 1669 1670
{
	struct netiucv_priv *priv = dev->driver_data;

1671
	IUCV_DBF_TEXT(trace, 4, __func__);
L
Linus Torvalds 已提交
1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
	priv->conn->prof.tx_max_pending = 0;
	return count;
}

static DEVICE_ATTR(tx_max_pending, 0644, txmpnd_show, txmpnd_write);

static struct attribute *netiucv_attrs[] = {
	&dev_attr_buffer.attr,
	&dev_attr_user.attr,
	NULL,
};

static struct attribute_group netiucv_attr_group = {
	.attrs = netiucv_attrs,
};

static struct attribute *netiucv_stat_attrs[] = {
	&dev_attr_device_fsm_state.attr,
	&dev_attr_connection_fsm_state.attr,
	&dev_attr_max_tx_buffer_used.attr,
	&dev_attr_max_chained_skbs.attr,
	&dev_attr_tx_single_write_ops.attr,
	&dev_attr_tx_multi_write_ops.attr,
	&dev_attr_netto_bytes.attr,
	&dev_attr_max_tx_io_time.attr,
	&dev_attr_tx_pending.attr,
	&dev_attr_tx_max_pending.attr,
	NULL,
};

static struct attribute_group netiucv_stat_attr_group = {
	.name  = "stats",
	.attrs = netiucv_stat_attrs,
};

1707
static int netiucv_add_files(struct device *dev)
L
Linus Torvalds 已提交
1708 1709 1710
{
	int ret;

1711
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1712 1713 1714 1715 1716 1717 1718 1719 1720
	ret = sysfs_create_group(&dev->kobj, &netiucv_attr_group);
	if (ret)
		return ret;
	ret = sysfs_create_group(&dev->kobj, &netiucv_stat_attr_group);
	if (ret)
		sysfs_remove_group(&dev->kobj, &netiucv_attr_group);
	return ret;
}

1721
static void netiucv_remove_files(struct device *dev)
L
Linus Torvalds 已提交
1722
{
1723
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1724 1725 1726 1727
	sysfs_remove_group(&dev->kobj, &netiucv_stat_attr_group);
	sysfs_remove_group(&dev->kobj, &netiucv_attr_group);
}

1728
static int netiucv_register_device(struct net_device *ndev)
L
Linus Torvalds 已提交
1729
{
1730
	struct netiucv_priv *priv = netdev_priv(ndev);
1731
	struct device *dev = kzalloc(sizeof(struct device), GFP_KERNEL);
L
Linus Torvalds 已提交
1732 1733 1734
	int ret;


1735
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1736 1737

	if (dev) {
1738
		dev_set_name(dev, "net%s", ndev->name);
L
Linus Torvalds 已提交
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
		dev->bus = &iucv_bus;
		dev->parent = iucv_root;
		/*
		 * The release function could be called after the
		 * module has been unloaded. It's _only_ task is to
		 * free the struct. Therefore, we specify kfree()
		 * directly here. (Probably a little bit obfuscating
		 * but legitime ...).
		 */
		dev->release = (void (*)(struct device *))kfree;
		dev->driver = &netiucv_driver;
	} else
		return -ENOMEM;

	ret = device_register(dev);

	if (ret)
		return ret;
	ret = netiucv_add_files(dev);
	if (ret)
		goto out_unreg;
	priv->dev = dev;
	dev->driver_data = priv;
	return 0;

out_unreg:
	device_unregister(dev);
	return ret;
}

1769
static void netiucv_unregister_device(struct device *dev)
L
Linus Torvalds 已提交
1770
{
1771
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1772 1773 1774 1775 1776 1777 1778 1779
	netiucv_remove_files(dev);
	device_unregister(dev);
}

/**
 * Allocate and initialize a new connection structure.
 * Add it to the list of netiucv connections;
 */
1780 1781 1782 1783
static struct iucv_connection *netiucv_new_connection(struct net_device *dev,
						      char *username)
{
	struct iucv_connection *conn;
L
Linus Torvalds 已提交
1784

1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812
	conn = kzalloc(sizeof(*conn), GFP_KERNEL);
	if (!conn)
		goto out;
	skb_queue_head_init(&conn->collect_queue);
	skb_queue_head_init(&conn->commit_queue);
	spin_lock_init(&conn->collect_lock);
	conn->max_buffsize = NETIUCV_BUFSIZE_DEFAULT;
	conn->netdev = dev;

	conn->rx_buff = alloc_skb(conn->max_buffsize, GFP_KERNEL | GFP_DMA);
	if (!conn->rx_buff)
		goto out_conn;
	conn->tx_buff = alloc_skb(conn->max_buffsize, GFP_KERNEL | GFP_DMA);
	if (!conn->tx_buff)
		goto out_rx;
	conn->fsm = init_fsm("netiucvconn", conn_state_names,
			     conn_event_names, NR_CONN_STATES,
			     NR_CONN_EVENTS, conn_fsm, CONN_FSM_LEN,
			     GFP_KERNEL);
	if (!conn->fsm)
		goto out_tx;

	fsm_settimer(conn->fsm, &conn->timer);
	fsm_newstate(conn->fsm, CONN_STATE_INVALID);

	if (username) {
		memcpy(conn->userid, username, 9);
		fsm_newstate(conn->fsm, CONN_STATE_STOPPED);
L
Linus Torvalds 已提交
1813
	}
1814 1815 1816 1817

	write_lock_bh(&iucv_connection_rwlock);
	list_add_tail(&conn->list, &iucv_connection_list);
	write_unlock_bh(&iucv_connection_rwlock);
L
Linus Torvalds 已提交
1818
	return conn;
1819 1820 1821 1822 1823 1824 1825 1826 1827

out_tx:
	kfree_skb(conn->tx_buff);
out_rx:
	kfree_skb(conn->rx_buff);
out_conn:
	kfree(conn);
out:
	return NULL;
L
Linus Torvalds 已提交
1828 1829 1830 1831 1832 1833
}

/**
 * Release a connection structure and remove it from the
 * list of netiucv connections.
 */
1834
static void netiucv_remove_connection(struct iucv_connection *conn)
L
Linus Torvalds 已提交
1835
{
1836
	IUCV_DBF_TEXT(trace, 3, __func__);
1837 1838 1839
	write_lock_bh(&iucv_connection_rwlock);
	list_del_init(&conn->list);
	write_unlock_bh(&iucv_connection_rwlock);
1840 1841
	fsm_deltimer(&conn->timer);
	netiucv_purge_skb_queue(&conn->collect_queue);
1842 1843 1844 1845
	if (conn->path) {
		iucv_path_sever(conn->path, iucvMagic);
		kfree(conn->path);
		conn->path = NULL;
L
Linus Torvalds 已提交
1846
	}
1847
	netiucv_purge_skb_queue(&conn->commit_queue);
1848 1849 1850
	kfree_fsm(conn->fsm);
	kfree_skb(conn->rx_buff);
	kfree_skb(conn->tx_buff);
L
Linus Torvalds 已提交
1851 1852 1853 1854 1855
}

/**
 * Release everything of a net device.
 */
1856
static void netiucv_free_netdevice(struct net_device *dev)
L
Linus Torvalds 已提交
1857
{
1858
	struct netiucv_priv *privptr = netdev_priv(dev);
L
Linus Torvalds 已提交
1859

1860
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878

	if (!dev)
		return;

	if (privptr) {
		if (privptr->conn)
			netiucv_remove_connection(privptr->conn);
		if (privptr->fsm)
			kfree_fsm(privptr->fsm);
		privptr->conn = NULL; privptr->fsm = NULL;
		/* privptr gets freed by free_netdev() */
	}
	free_netdev(dev);
}

/**
 * Initialize a net device. (Called from kernel in alloc_netdev())
 */
1879 1880 1881 1882 1883 1884 1885 1886
static const struct net_device_ops netiucv_netdev_ops = {
	.ndo_open		= netiucv_open,
	.ndo_stop		= netiucv_close,
	.ndo_get_stats		= netiucv_stats,
	.ndo_start_xmit		= netiucv_tx,
	.ndo_change_mtu	   	= netiucv_change_mtu,
};

1887
static void netiucv_setup_netdevice(struct net_device *dev)
L
Linus Torvalds 已提交
1888 1889 1890 1891 1892 1893 1894 1895
{
	dev->mtu	         = NETIUCV_MTU_DEFAULT;
	dev->destructor          = netiucv_free_netdevice;
	dev->hard_header_len     = NETIUCV_HDRLEN;
	dev->addr_len            = 0;
	dev->type                = ARPHRD_SLIP;
	dev->tx_queue_len        = NETIUCV_QUEUELEN_DEFAULT;
	dev->flags	         = IFF_POINTOPOINT | IFF_NOARP;
1896
	dev->netdev_ops		 = &netiucv_netdev_ops;
L
Linus Torvalds 已提交
1897 1898 1899 1900 1901
}

/**
 * Allocate and initialize everything of a net device.
 */
1902
static struct net_device *netiucv_init_netdevice(char *username)
L
Linus Torvalds 已提交
1903 1904 1905 1906 1907 1908 1909 1910
{
	struct netiucv_priv *privptr;
	struct net_device *dev;

	dev = alloc_netdev(sizeof(struct netiucv_priv), "iucv%d",
			   netiucv_setup_netdevice);
	if (!dev)
		return NULL;
1911 1912
	if (dev_alloc_name(dev, dev->name) < 0)
		goto out_netdev;
L
Linus Torvalds 已提交
1913

1914
	privptr = netdev_priv(dev);
L
Linus Torvalds 已提交
1915 1916 1917
	privptr->fsm = init_fsm("netiucvdev", dev_state_names,
				dev_event_names, NR_DEV_STATES, NR_DEV_EVENTS,
				dev_fsm, DEV_FSM_LEN, GFP_KERNEL);
1918 1919 1920
	if (!privptr->fsm)
		goto out_netdev;

L
Linus Torvalds 已提交
1921 1922 1923
	privptr->conn = netiucv_new_connection(dev, username);
	if (!privptr->conn) {
		IUCV_DBF_TEXT(setup, 2, "NULL from netiucv_new_connection\n");
1924
		goto out_fsm;
L
Linus Torvalds 已提交
1925 1926 1927
	}
	fsm_newstate(privptr->fsm, DEV_STATE_STOPPED);
	return dev;
1928 1929 1930 1931 1932 1933

out_fsm:
	kfree_fsm(privptr->fsm);
out_netdev:
	free_netdev(dev);
	return NULL;
L
Linus Torvalds 已提交
1934 1935
}

1936 1937
static ssize_t conn_write(struct device_driver *drv,
			  const char *buf, size_t count)
L
Linus Torvalds 已提交
1938
{
1939
	const char *p;
1940
	char username[9];
1941
	int i, rc;
L
Linus Torvalds 已提交
1942
	struct net_device *dev;
1943 1944
	struct netiucv_priv *priv;
	struct iucv_connection *cp;
L
Linus Torvalds 已提交
1945

1946
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
1947 1948 1949 1950 1951
	if (count>9) {
		IUCV_DBF_TEXT(setup, 2, "conn_write: too long\n");
		return -EINVAL;
	}

1952 1953 1954 1955 1956 1957
	for (i = 0, p = buf; i < 8 && *p; i++, p++) {
		if (isalnum(*p) || *p == '$') {
			username[i] = toupper(*p);
			continue;
		}
		if (*p == '\n')
L
Linus Torvalds 已提交
1958 1959
			/* trailing lf, grr */
			break;
1960 1961 1962
		IUCV_DBF_TEXT_(setup, 2,
			       "conn_write: invalid character %c\n", *p);
		return -EINVAL;
L
Linus Torvalds 已提交
1963
	}
1964
	while (i < 8)
L
Linus Torvalds 已提交
1965
		username[i++] = ' ';
1966 1967
	username[8] = '\0';

1968 1969 1970 1971
	read_lock_bh(&iucv_connection_rwlock);
	list_for_each_entry(cp, &iucv_connection_list, list) {
		if (!strncmp(username, cp->userid, 9)) {
			read_unlock_bh(&iucv_connection_rwlock);
1972 1973
			IUCV_DBF_TEXT_(setup, 2, "conn_write: Connection "
				"to %s already exists\n", username);
1974 1975
			return -EEXIST;
		}
1976
	}
1977 1978
	read_unlock_bh(&iucv_connection_rwlock);

L
Linus Torvalds 已提交
1979 1980 1981 1982 1983 1984
	dev = netiucv_init_netdevice(username);
	if (!dev) {
		IUCV_DBF_TEXT(setup, 2, "NULL from netiucv_init_netdevice\n");
		return -ENODEV;
	}

1985 1986
	rc = netiucv_register_device(dev);
	if (rc) {
L
Linus Torvalds 已提交
1987
		IUCV_DBF_TEXT_(setup, 2,
1988
			"ret %d from netiucv_register_device\n", rc);
L
Linus Torvalds 已提交
1989 1990 1991 1992
		goto out_free_ndev;
	}

	/* sysfs magic */
1993 1994
	priv = netdev_priv(dev);
	SET_NETDEV_DEV(dev, priv->dev);
L
Linus Torvalds 已提交
1995

1996 1997 1998
	rc = register_netdev(dev);
	if (rc)
		goto out_unreg;
L
Linus Torvalds 已提交
1999

2000 2001
	dev_info(priv->dev, "The IUCV interface to %s has been"
		" established successfully\n", netiucv_printname(username));
2002

L
Linus Torvalds 已提交
2003 2004
	return count;

2005 2006
out_unreg:
	netiucv_unregister_device(priv->dev);
L
Linus Torvalds 已提交
2007 2008
out_free_ndev:
	netiucv_free_netdevice(dev);
2009
	return rc;
L
Linus Torvalds 已提交
2010 2011
}

2012
static DRIVER_ATTR(connection, 0200, NULL, conn_write);
L
Linus Torvalds 已提交
2013

2014 2015
static ssize_t remove_write (struct device_driver *drv,
			     const char *buf, size_t count)
L
Linus Torvalds 已提交
2016
{
2017
	struct iucv_connection *cp;
L
Linus Torvalds 已提交
2018 2019 2020 2021
        struct net_device *ndev;
        struct netiucv_priv *priv;
        struct device *dev;
        char name[IFNAMSIZ];
2022
	const char *p;
L
Linus Torvalds 已提交
2023 2024
        int i;

2025
	IUCV_DBF_TEXT(trace, 3, __func__);
L
Linus Torvalds 已提交
2026 2027

        if (count >= IFNAMSIZ)
2028
                count = IFNAMSIZ - 1;;
L
Linus Torvalds 已提交
2029

2030 2031
	for (i = 0, p = buf; i < count && *p; i++, p++) {
		if (*p == '\n' || *p == ' ')
L
Linus Torvalds 已提交
2032 2033
                        /* trailing lf, grr */
                        break;
2034
		name[i] = *p;
L
Linus Torvalds 已提交
2035 2036 2037
        }
        name[i] = '\0';

2038 2039 2040 2041
	read_lock_bh(&iucv_connection_rwlock);
	list_for_each_entry(cp, &iucv_connection_list, list) {
		ndev = cp->netdev;
		priv = netdev_priv(ndev);
L
Linus Torvalds 已提交
2042
                dev = priv->dev;
2043 2044 2045
		if (strncmp(name, ndev->name, count))
			continue;
		read_unlock_bh(&iucv_connection_rwlock);
L
Linus Torvalds 已提交
2046
                if (ndev->flags & (IFF_UP | IFF_RUNNING)) {
2047 2048 2049
			dev_warn(dev, "The IUCV device is connected"
				" to %s and cannot be removed\n",
				priv->conn->userid);
L
Linus Torvalds 已提交
2050
			IUCV_DBF_TEXT(data, 2, "remove_write: still active\n");
2051
			return -EPERM;
L
Linus Torvalds 已提交
2052 2053 2054 2055 2056
                }
                unregister_netdev(ndev);
                netiucv_unregister_device(dev);
                return count;
        }
2057
	read_unlock_bh(&iucv_connection_rwlock);
L
Linus Torvalds 已提交
2058 2059 2060 2061
	IUCV_DBF_TEXT(data, 2, "remove_write: unknown device\n");
        return -EINVAL;
}

2062
static DRIVER_ATTR(remove, 0200, NULL, remove_write);
L
Linus Torvalds 已提交
2063

2064 2065 2066 2067 2068 2069 2070 2071 2072 2073
static struct attribute * netiucv_drv_attrs[] = {
	&driver_attr_connection.attr,
	&driver_attr_remove.attr,
	NULL,
};

static struct attribute_group netiucv_drv_attr_group = {
	.attrs = netiucv_drv_attrs,
};

2074 2075 2076 2077 2078
static struct attribute_group *netiucv_drv_attr_groups[] = {
	&netiucv_drv_attr_group,
	NULL,
};

2079
static void netiucv_banner(void)
L
Linus Torvalds 已提交
2080
{
2081
	pr_info("driver initialized\n");
L
Linus Torvalds 已提交
2082 2083
}

2084
static void __exit netiucv_exit(void)
L
Linus Torvalds 已提交
2085
{
2086 2087 2088 2089 2090
	struct iucv_connection *cp;
	struct net_device *ndev;
	struct netiucv_priv *priv;
	struct device *dev;

2091
	IUCV_DBF_TEXT(trace, 3, __func__);
2092 2093 2094 2095 2096 2097
	while (!list_empty(&iucv_connection_list)) {
		cp = list_entry(iucv_connection_list.next,
				struct iucv_connection, list);
		ndev = cp->netdev;
		priv = netdev_priv(ndev);
		dev = priv->dev;
L
Linus Torvalds 已提交
2098 2099 2100 2101 2102 2103

		unregister_netdev(ndev);
		netiucv_unregister_device(dev);
	}

	driver_unregister(&netiucv_driver);
2104
	iucv_unregister(&netiucv_handler, 1);
L
Linus Torvalds 已提交
2105 2106
	iucv_unregister_dbf_views();

2107
	pr_info("driver unloaded\n");
L
Linus Torvalds 已提交
2108 2109 2110
	return;
}

2111
static int __init netiucv_init(void)
L
Linus Torvalds 已提交
2112
{
2113
	int rc;
2114

2115 2116 2117 2118 2119 2120
	rc = iucv_register_dbf_views();
	if (rc)
		goto out;
	rc = iucv_register(&netiucv_handler, 1);
	if (rc)
		goto out_dbf;
2121
	IUCV_DBF_TEXT(trace, 3, __func__);
2122
	netiucv_driver.groups = netiucv_drv_attr_groups;
2123 2124 2125 2126
	rc = driver_register(&netiucv_driver);
	if (rc) {
		IUCV_DBF_TEXT_(setup, 2, "ret %d from driver_register\n", rc);
		goto out_iucv;
L
Linus Torvalds 已提交
2127 2128
	}

2129 2130 2131 2132 2133 2134 2135 2136 2137
	netiucv_banner();
	return rc;

out_iucv:
	iucv_unregister(&netiucv_handler, 1);
out_dbf:
	iucv_unregister_dbf_views();
out:
	return rc;
L
Linus Torvalds 已提交
2138
}
2139

L
Linus Torvalds 已提交
2140 2141 2142
module_init(netiucv_init);
module_exit(netiucv_exit);
MODULE_LICENSE("GPL");