1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright IBM Corp. 2001, 2009
8 * Original netiucv driver:
10 * Sysfs integration and all bugs therein:
16 * the source of the original IUCV driver by:
24 #define KMSG_COMPONENT "netiucv"
25 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
29 #include <linux/module.h>
30 #include <linux/init.h>
31 #include <linux/kernel.h>
32 #include <linux/slab.h>
33 #include <linux/errno.h>
34 #include <linux/types.h>
35 #include <linux/interrupt.h>
36 #include <linux/timer.h>
37 #include <linux/bitops.h>
39 #include <linux/signal.h>
40 #include <linux/string.h>
41 #include <linux/device.h>
44 #include <linux/if_arp.h>
45 #include <linux/tcp.h>
46 #include <linux/skbuff.h>
47 #include <linux/ctype.h>
51 #include <linux/uaccess.h>
52 #include <asm/ebcdic.h>
54 #include <net/iucv/iucv.h>
59 MODULE_DESCRIPTION ("Linux for S/390 IUCV network driver");
62 * Debug Facility stuff
64 #define IUCV_DBF_SETUP_NAME "iucv_setup"
65 #define IUCV_DBF_SETUP_LEN 64
66 #define IUCV_DBF_SETUP_PAGES 2
67 #define IUCV_DBF_SETUP_NR_AREAS 1
68 #define IUCV_DBF_SETUP_LEVEL 3
70 #define IUCV_DBF_DATA_NAME "iucv_data"
71 #define IUCV_DBF_DATA_LEN 128
72 #define IUCV_DBF_DATA_PAGES 2
73 #define IUCV_DBF_DATA_NR_AREAS 1
74 #define IUCV_DBF_DATA_LEVEL 2
76 #define IUCV_DBF_TRACE_NAME "iucv_trace"
77 #define IUCV_DBF_TRACE_LEN 16
78 #define IUCV_DBF_TRACE_PAGES 4
79 #define IUCV_DBF_TRACE_NR_AREAS 1
80 #define IUCV_DBF_TRACE_LEVEL 3
82 #define IUCV_DBF_TEXT(name,level,text) \
84 debug_text_event(iucv_dbf_##name,level,text); \
87 #define IUCV_DBF_HEX(name,level,addr,len) \
89 debug_event(iucv_dbf_##name,level,(void*)(addr),len); \
92 DECLARE_PER_CPU(char[256], iucv_dbf_txt_buf);
94 #define IUCV_DBF_TEXT_(name, level, text...) \
96 if (debug_level_enabled(iucv_dbf_##name, level)) { \
97 char* __buf = get_cpu_var(iucv_dbf_txt_buf); \
98 sprintf(__buf, text); \
99 debug_text_event(iucv_dbf_##name, level, __buf); \
100 put_cpu_var(iucv_dbf_txt_buf); \
104 #define IUCV_DBF_SPRINTF(name,level,text...) \
106 debug_sprintf_event(iucv_dbf_trace, level, ##text ); \
107 debug_sprintf_event(iucv_dbf_trace, level, text ); \
111 * some more debug stuff
113 #define PRINTK_HEADER " iucv: " /* for debugging */
115 /* dummy device to make sure netiucv_pm functions are called */
116 static struct device *netiucv_dev;
118 static int netiucv_pm_prepare(struct device *);
119 static void netiucv_pm_complete(struct device *);
120 static int netiucv_pm_freeze(struct device *);
121 static int netiucv_pm_restore_thaw(struct device *);
123 static const struct dev_pm_ops netiucv_pm_ops = {
124 .prepare = netiucv_pm_prepare,
125 .complete = netiucv_pm_complete,
126 .freeze = netiucv_pm_freeze,
127 .thaw = netiucv_pm_restore_thaw,
128 .restore = netiucv_pm_restore_thaw,
131 static struct device_driver netiucv_driver = {
132 .owner = THIS_MODULE,
135 .pm = &netiucv_pm_ops,
138 static int netiucv_callback_connreq(struct iucv_path *, u8 *, u8 *);
139 static void netiucv_callback_connack(struct iucv_path *, u8 *);
140 static void netiucv_callback_connrej(struct iucv_path *, u8 *);
141 static void netiucv_callback_connsusp(struct iucv_path *, u8 *);
142 static void netiucv_callback_connres(struct iucv_path *, u8 *);
143 static void netiucv_callback_rx(struct iucv_path *, struct iucv_message *);
144 static void netiucv_callback_txdone(struct iucv_path *, struct iucv_message *);
146 static struct iucv_handler netiucv_handler = {
147 .path_pending = netiucv_callback_connreq,
148 .path_complete = netiucv_callback_connack,
149 .path_severed = netiucv_callback_connrej,
150 .path_quiesced = netiucv_callback_connsusp,
151 .path_resumed = netiucv_callback_connres,
152 .message_pending = netiucv_callback_rx,
153 .message_complete = netiucv_callback_txdone
157 * Per connection profiling data
159 struct connection_profile {
160 unsigned long maxmulti;
161 unsigned long maxcqueue;
162 unsigned long doios_single;
163 unsigned long doios_multi;
165 unsigned long tx_time;
166 unsigned long send_stamp;
167 unsigned long tx_pending;
168 unsigned long tx_max_pending;
172 * Representation of one iucv connection
174 struct iucv_connection {
175 struct list_head list;
176 struct iucv_path *path;
177 struct sk_buff *rx_buff;
178 struct sk_buff *tx_buff;
179 struct sk_buff_head collect_queue;
180 struct sk_buff_head commit_queue;
181 spinlock_t collect_lock;
186 struct net_device *netdev;
187 struct connection_profile prof;
193 * Linked list of all connection structs.
195 static LIST_HEAD(iucv_connection_list);
196 static DEFINE_RWLOCK(iucv_connection_rwlock);
199 * Representation of event-data for the
200 * connection state machine.
203 struct iucv_connection *conn;
208 * Private part of the network device structure
210 struct netiucv_priv {
211 struct net_device_stats stats;
214 struct iucv_connection *conn;
220 * Link level header for a packet.
226 #define NETIUCV_HDRLEN (sizeof(struct ll_header))
227 #define NETIUCV_BUFSIZE_MAX 65537
228 #define NETIUCV_BUFSIZE_DEFAULT NETIUCV_BUFSIZE_MAX
229 #define NETIUCV_MTU_MAX (NETIUCV_BUFSIZE_MAX - NETIUCV_HDRLEN)
230 #define NETIUCV_MTU_DEFAULT 9216
231 #define NETIUCV_QUEUELEN_DEFAULT 50
232 #define NETIUCV_TIMEOUT_5SEC 5000
235 * Compatibility macros for busy handling
236 * of network devices.
238 static void netiucv_clear_busy(struct net_device *dev)
240 struct netiucv_priv *priv = netdev_priv(dev);
241 clear_bit(0, &priv->tbusy);
242 netif_wake_queue(dev);
245 static int netiucv_test_and_set_busy(struct net_device *dev)
247 struct netiucv_priv *priv = netdev_priv(dev);
248 netif_stop_queue(dev);
249 return test_and_set_bit(0, &priv->tbusy);
252 static u8 iucvMagic_ascii[16] = {
253 0x30, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
254 0x30, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20
257 static u8 iucvMagic_ebcdic[16] = {
258 0xF0, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
259 0xF0, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40
263 * Convert an iucv userId to its printable
264 * form (strip whitespace at end).
266 * @param An iucv userId
268 * @returns The printable string (static data!!)
270 static char *netiucv_printname(char *name, int len)
274 memcpy(tmp, name, len);
276 while (*p && ((p - tmp) < len) && (!isspace(*p)))
282 static char *netiucv_printuser(struct iucv_connection *conn)
284 static char tmp_uid[9];
285 static char tmp_udat[17];
286 static char buf[100];
288 if (memcmp(conn->userdata, iucvMagic_ebcdic, 16)) {
291 memcpy(tmp_uid, netiucv_printname(conn->userid, 8), 8);
292 memcpy(tmp_udat, conn->userdata, 16);
293 EBCASC(tmp_udat, 16);
294 memcpy(tmp_udat, netiucv_printname(tmp_udat, 16), 16);
295 sprintf(buf, "%s.%s", tmp_uid, tmp_udat);
298 return netiucv_printname(conn->userid, 8);
302 * States of the interface statemachine.
310 * MUST be always the last element!!
315 static const char *dev_state_names[] = {
323 * Events of the interface statemachine.
331 * MUST be always the last element!!
336 static const char *dev_event_names[] = {
344 * Events of the connection statemachine
348 * Events, representing callbacks from
349 * lowlevel iucv layer)
360 * Events, representing errors return codes from
361 * calls to lowlevel iucv layer
365 * Event, representing timer expiry.
370 * Events, representing commands from upper levels.
376 * MUST be always the last element!!
381 static const char *conn_event_names[] = {
382 "Remote connection request",
383 "Remote connection acknowledge",
384 "Remote connection reject",
385 "Connection suspended",
386 "Connection resumed",
397 * States of the connection statemachine.
401 * Connection not assigned to any device,
402 * initial state, invalid
407 * Userid assigned but not operating
412 * Connection registered,
413 * no connection request sent yet,
414 * no connection request received
416 CONN_STATE_STARTWAIT,
419 * Connection registered and connection request sent,
420 * no acknowledge and no connection request received yet.
422 CONN_STATE_SETUPWAIT,
425 * Connection up and running idle
430 * Data sent, awaiting CONN_EVENT_TXDONE
435 * Error during registration.
440 * Error during registration.
445 * MUST be always the last element!!
450 static const char *conn_state_names[] = {
458 "Registration error",
464 * Debug Facility Stuff
466 static debug_info_t *iucv_dbf_setup = NULL;
467 static debug_info_t *iucv_dbf_data = NULL;
468 static debug_info_t *iucv_dbf_trace = NULL;
470 DEFINE_PER_CPU(char[256], iucv_dbf_txt_buf);
472 static void iucv_unregister_dbf_views(void)
474 debug_unregister(iucv_dbf_setup);
475 debug_unregister(iucv_dbf_data);
476 debug_unregister(iucv_dbf_trace);
478 static int iucv_register_dbf_views(void)
480 iucv_dbf_setup = debug_register(IUCV_DBF_SETUP_NAME,
481 IUCV_DBF_SETUP_PAGES,
482 IUCV_DBF_SETUP_NR_AREAS,
484 iucv_dbf_data = debug_register(IUCV_DBF_DATA_NAME,
486 IUCV_DBF_DATA_NR_AREAS,
488 iucv_dbf_trace = debug_register(IUCV_DBF_TRACE_NAME,
489 IUCV_DBF_TRACE_PAGES,
490 IUCV_DBF_TRACE_NR_AREAS,
493 if ((iucv_dbf_setup == NULL) || (iucv_dbf_data == NULL) ||
494 (iucv_dbf_trace == NULL)) {
495 iucv_unregister_dbf_views();
498 debug_register_view(iucv_dbf_setup, &debug_hex_ascii_view);
499 debug_set_level(iucv_dbf_setup, IUCV_DBF_SETUP_LEVEL);
501 debug_register_view(iucv_dbf_data, &debug_hex_ascii_view);
502 debug_set_level(iucv_dbf_data, IUCV_DBF_DATA_LEVEL);
504 debug_register_view(iucv_dbf_trace, &debug_hex_ascii_view);
505 debug_set_level(iucv_dbf_trace, IUCV_DBF_TRACE_LEVEL);
511 * Callback-wrappers, called from lowlevel iucv layer.
514 static void netiucv_callback_rx(struct iucv_path *path,
515 struct iucv_message *msg)
517 struct iucv_connection *conn = path->private;
518 struct iucv_event ev;
522 fsm_event(conn->fsm, CONN_EVENT_RX, &ev);
525 static void netiucv_callback_txdone(struct iucv_path *path,
526 struct iucv_message *msg)
528 struct iucv_connection *conn = path->private;
529 struct iucv_event ev;
533 fsm_event(conn->fsm, CONN_EVENT_TXDONE, &ev);
536 static void netiucv_callback_connack(struct iucv_path *path, u8 ipuser[16])
538 struct iucv_connection *conn = path->private;
540 fsm_event(conn->fsm, CONN_EVENT_CONN_ACK, conn);
543 static int netiucv_callback_connreq(struct iucv_path *path, u8 *ipvmid,
546 struct iucv_connection *conn = path->private;
547 struct iucv_event ev;
548 static char tmp_user[9];
549 static char tmp_udat[17];
553 memcpy(tmp_user, netiucv_printname(ipvmid, 8), 8);
554 memcpy(tmp_udat, ipuser, 16);
555 EBCASC(tmp_udat, 16);
556 read_lock_bh(&iucv_connection_rwlock);
557 list_for_each_entry(conn, &iucv_connection_list, list) {
558 if (strncmp(ipvmid, conn->userid, 8) ||
559 strncmp(ipuser, conn->userdata, 16))
561 /* Found a matching connection for this path. */
565 fsm_event(conn->fsm, CONN_EVENT_CONN_REQ, &ev);
568 IUCV_DBF_TEXT_(setup, 2, "Connection requested for %s.%s\n",
569 tmp_user, netiucv_printname(tmp_udat, 16));
570 read_unlock_bh(&iucv_connection_rwlock);
574 static void netiucv_callback_connrej(struct iucv_path *path, u8 *ipuser)
576 struct iucv_connection *conn = path->private;
578 fsm_event(conn->fsm, CONN_EVENT_CONN_REJ, conn);
581 static void netiucv_callback_connsusp(struct iucv_path *path, u8 *ipuser)
583 struct iucv_connection *conn = path->private;
585 fsm_event(conn->fsm, CONN_EVENT_CONN_SUS, conn);
588 static void netiucv_callback_connres(struct iucv_path *path, u8 *ipuser)
590 struct iucv_connection *conn = path->private;
592 fsm_event(conn->fsm, CONN_EVENT_CONN_RES, conn);
596 * NOP action for statemachines
598 static void netiucv_action_nop(fsm_instance *fi, int event, void *arg)
603 * Actions of the connection statemachine
608 * @conn: The connection where this skb has been received.
609 * @pskb: The received skb.
611 * Unpack a just received skb and hand it over to upper layers.
612 * Helper function for conn_action_rx.
614 static void netiucv_unpack_skb(struct iucv_connection *conn,
615 struct sk_buff *pskb)
617 struct net_device *dev = conn->netdev;
618 struct netiucv_priv *privptr = netdev_priv(dev);
621 skb_put(pskb, NETIUCV_HDRLEN);
623 pskb->ip_summed = CHECKSUM_NONE;
624 pskb->protocol = cpu_to_be16(ETH_P_IP);
628 struct ll_header *header = (struct ll_header *) pskb->data;
633 skb_pull(pskb, NETIUCV_HDRLEN);
634 header->next -= offset;
635 offset += header->next;
636 header->next -= NETIUCV_HDRLEN;
637 if (skb_tailroom(pskb) < header->next) {
638 IUCV_DBF_TEXT_(data, 2, "Illegal next field: %d > %d\n",
639 header->next, skb_tailroom(pskb));
642 skb_put(pskb, header->next);
643 skb_reset_mac_header(pskb);
644 skb = dev_alloc_skb(pskb->len);
646 IUCV_DBF_TEXT(data, 2,
647 "Out of memory in netiucv_unpack_skb\n");
648 privptr->stats.rx_dropped++;
651 skb_copy_from_linear_data(pskb, skb_put(skb, pskb->len),
653 skb_reset_mac_header(skb);
654 skb->dev = pskb->dev;
655 skb->protocol = pskb->protocol;
656 pskb->ip_summed = CHECKSUM_UNNECESSARY;
657 privptr->stats.rx_packets++;
658 privptr->stats.rx_bytes += skb->len;
660 * Since receiving is always initiated from a tasklet (in iucv.c),
661 * we must use netif_rx_ni() instead of netif_rx()
664 skb_pull(pskb, header->next);
665 skb_put(pskb, NETIUCV_HDRLEN);
669 static void conn_action_rx(fsm_instance *fi, int event, void *arg)
671 struct iucv_event *ev = arg;
672 struct iucv_connection *conn = ev->conn;
673 struct iucv_message *msg = ev->data;
674 struct netiucv_priv *privptr = netdev_priv(conn->netdev);
677 IUCV_DBF_TEXT(trace, 4, __func__);
680 iucv_message_reject(conn->path, msg);
681 IUCV_DBF_TEXT(data, 2,
682 "Received data for unlinked connection\n");
685 if (msg->length > conn->max_buffsize) {
686 iucv_message_reject(conn->path, msg);
687 privptr->stats.rx_dropped++;
688 IUCV_DBF_TEXT_(data, 2, "msglen %d > max_buffsize %d\n",
689 msg->length, conn->max_buffsize);
692 conn->rx_buff->data = conn->rx_buff->head;
693 skb_reset_tail_pointer(conn->rx_buff);
694 conn->rx_buff->len = 0;
695 rc = iucv_message_receive(conn->path, msg, 0, conn->rx_buff->data,
697 if (rc || msg->length < 5) {
698 privptr->stats.rx_errors++;
699 IUCV_DBF_TEXT_(data, 2, "rc %d from iucv_receive\n", rc);
702 netiucv_unpack_skb(conn, conn->rx_buff);
705 static void conn_action_txdone(fsm_instance *fi, int event, void *arg)
707 struct iucv_event *ev = arg;
708 struct iucv_connection *conn = ev->conn;
709 struct iucv_message *msg = ev->data;
710 struct iucv_message txmsg;
711 struct netiucv_priv *privptr = NULL;
712 u32 single_flag = msg->tag;
717 unsigned long saveflags;
718 struct ll_header header;
721 IUCV_DBF_TEXT(trace, 4, __func__);
723 if (!conn || !conn->netdev) {
724 IUCV_DBF_TEXT(data, 2,
725 "Send confirmation for unlinked connection\n");
728 privptr = netdev_priv(conn->netdev);
729 conn->prof.tx_pending--;
731 if ((skb = skb_dequeue(&conn->commit_queue))) {
732 refcount_dec(&skb->users);
734 privptr->stats.tx_packets++;
735 privptr->stats.tx_bytes +=
736 (skb->len - NETIUCV_HDRLEN
739 dev_kfree_skb_any(skb);
742 conn->tx_buff->data = conn->tx_buff->head;
743 skb_reset_tail_pointer(conn->tx_buff);
744 conn->tx_buff->len = 0;
745 spin_lock_irqsave(&conn->collect_lock, saveflags);
746 while ((skb = skb_dequeue(&conn->collect_queue))) {
747 header.next = conn->tx_buff->len + skb->len + NETIUCV_HDRLEN;
748 skb_put_data(conn->tx_buff, &header, NETIUCV_HDRLEN);
749 skb_copy_from_linear_data(skb,
750 skb_put(conn->tx_buff, skb->len),
755 refcount_dec(&skb->users);
756 dev_kfree_skb_any(skb);
758 if (conn->collect_len > conn->prof.maxmulti)
759 conn->prof.maxmulti = conn->collect_len;
760 conn->collect_len = 0;
761 spin_unlock_irqrestore(&conn->collect_lock, saveflags);
762 if (conn->tx_buff->len == 0) {
763 fsm_newstate(fi, CONN_STATE_IDLE);
768 skb_put_data(conn->tx_buff, &header, NETIUCV_HDRLEN);
769 conn->prof.send_stamp = jiffies;
772 rc = iucv_message_send(conn->path, &txmsg, 0, 0,
773 conn->tx_buff->data, conn->tx_buff->len);
774 conn->prof.doios_multi++;
775 conn->prof.txlen += conn->tx_buff->len;
776 conn->prof.tx_pending++;
777 if (conn->prof.tx_pending > conn->prof.tx_max_pending)
778 conn->prof.tx_max_pending = conn->prof.tx_pending;
780 conn->prof.tx_pending--;
781 fsm_newstate(fi, CONN_STATE_IDLE);
783 privptr->stats.tx_errors += txpackets;
784 IUCV_DBF_TEXT_(data, 2, "rc %d from iucv_send\n", rc);
787 privptr->stats.tx_packets += txpackets;
788 privptr->stats.tx_bytes += txbytes;
790 if (stat_maxcq > conn->prof.maxcqueue)
791 conn->prof.maxcqueue = stat_maxcq;
795 static void conn_action_connaccept(fsm_instance *fi, int event, void *arg)
797 struct iucv_event *ev = arg;
798 struct iucv_connection *conn = ev->conn;
799 struct iucv_path *path = ev->data;
800 struct net_device *netdev = conn->netdev;
801 struct netiucv_priv *privptr = netdev_priv(netdev);
804 IUCV_DBF_TEXT(trace, 3, __func__);
807 path->msglim = NETIUCV_QUEUELEN_DEFAULT;
809 rc = iucv_path_accept(path, &netiucv_handler, conn->userdata , conn);
811 IUCV_DBF_TEXT_(setup, 2, "rc %d from iucv_accept", rc);
814 fsm_newstate(fi, CONN_STATE_IDLE);
815 netdev->tx_queue_len = conn->path->msglim;
816 fsm_event(privptr->fsm, DEV_EVENT_CONUP, netdev);
819 static void conn_action_connreject(fsm_instance *fi, int event, void *arg)
821 struct iucv_event *ev = arg;
822 struct iucv_path *path = ev->data;
824 IUCV_DBF_TEXT(trace, 3, __func__);
825 iucv_path_sever(path, NULL);
828 static void conn_action_connack(fsm_instance *fi, int event, void *arg)
830 struct iucv_connection *conn = arg;
831 struct net_device *netdev = conn->netdev;
832 struct netiucv_priv *privptr = netdev_priv(netdev);
834 IUCV_DBF_TEXT(trace, 3, __func__);
835 fsm_deltimer(&conn->timer);
836 fsm_newstate(fi, CONN_STATE_IDLE);
837 netdev->tx_queue_len = conn->path->msglim;
838 fsm_event(privptr->fsm, DEV_EVENT_CONUP, netdev);
841 static void conn_action_conntimsev(fsm_instance *fi, int event, void *arg)
843 struct iucv_connection *conn = arg;
845 IUCV_DBF_TEXT(trace, 3, __func__);
846 fsm_deltimer(&conn->timer);
847 iucv_path_sever(conn->path, conn->userdata);
848 fsm_newstate(fi, CONN_STATE_STARTWAIT);
851 static void conn_action_connsever(fsm_instance *fi, int event, void *arg)
853 struct iucv_connection *conn = arg;
854 struct net_device *netdev = conn->netdev;
855 struct netiucv_priv *privptr = netdev_priv(netdev);
857 IUCV_DBF_TEXT(trace, 3, __func__);
859 fsm_deltimer(&conn->timer);
860 iucv_path_sever(conn->path, conn->userdata);
861 dev_info(privptr->dev, "The peer z/VM guest %s has closed the "
862 "connection\n", netiucv_printuser(conn));
863 IUCV_DBF_TEXT(data, 2,
864 "conn_action_connsever: Remote dropped connection\n");
865 fsm_newstate(fi, CONN_STATE_STARTWAIT);
866 fsm_event(privptr->fsm, DEV_EVENT_CONDOWN, netdev);
869 static void conn_action_start(fsm_instance *fi, int event, void *arg)
871 struct iucv_connection *conn = arg;
872 struct net_device *netdev = conn->netdev;
873 struct netiucv_priv *privptr = netdev_priv(netdev);
876 IUCV_DBF_TEXT(trace, 3, __func__);
878 fsm_newstate(fi, CONN_STATE_STARTWAIT);
881 * We must set the state before calling iucv_connect because the
882 * callback handler could be called at any point after the connection
886 fsm_newstate(fi, CONN_STATE_SETUPWAIT);
887 conn->path = iucv_path_alloc(NETIUCV_QUEUELEN_DEFAULT, 0, GFP_KERNEL);
888 IUCV_DBF_TEXT_(setup, 2, "%s: connecting to %s ...\n",
889 netdev->name, netiucv_printuser(conn));
891 rc = iucv_path_connect(conn->path, &netiucv_handler, conn->userid,
892 NULL, conn->userdata, conn);
895 netdev->tx_queue_len = conn->path->msglim;
896 fsm_addtimer(&conn->timer, NETIUCV_TIMEOUT_5SEC,
897 CONN_EVENT_TIMER, conn);
900 dev_warn(privptr->dev,
901 "The IUCV device failed to connect to z/VM guest %s\n",
902 netiucv_printname(conn->userid, 8));
903 fsm_newstate(fi, CONN_STATE_STARTWAIT);
906 dev_warn(privptr->dev,
907 "The IUCV device failed to connect to the peer on z/VM"
908 " guest %s\n", netiucv_printname(conn->userid, 8));
909 fsm_newstate(fi, CONN_STATE_STARTWAIT);
912 dev_err(privptr->dev,
913 "Connecting the IUCV device would exceed the maximum"
914 " number of IUCV connections\n");
915 fsm_newstate(fi, CONN_STATE_CONNERR);
918 dev_err(privptr->dev,
919 "z/VM guest %s has too many IUCV connections"
920 " to connect with the IUCV device\n",
921 netiucv_printname(conn->userid, 8));
922 fsm_newstate(fi, CONN_STATE_CONNERR);
925 dev_err(privptr->dev,
926 "The IUCV device cannot connect to a z/VM guest with no"
927 " IUCV authorization\n");
928 fsm_newstate(fi, CONN_STATE_CONNERR);
931 dev_err(privptr->dev,
932 "Connecting the IUCV device failed with error %d\n",
934 fsm_newstate(fi, CONN_STATE_CONNERR);
937 IUCV_DBF_TEXT_(setup, 5, "iucv_connect rc is %d\n", rc);
942 static void netiucv_purge_skb_queue(struct sk_buff_head *q)
946 while ((skb = skb_dequeue(q))) {
947 refcount_dec(&skb->users);
948 dev_kfree_skb_any(skb);
952 static void conn_action_stop(fsm_instance *fi, int event, void *arg)
954 struct iucv_event *ev = arg;
955 struct iucv_connection *conn = ev->conn;
956 struct net_device *netdev = conn->netdev;
957 struct netiucv_priv *privptr = netdev_priv(netdev);
959 IUCV_DBF_TEXT(trace, 3, __func__);
961 fsm_deltimer(&conn->timer);
962 fsm_newstate(fi, CONN_STATE_STOPPED);
963 netiucv_purge_skb_queue(&conn->collect_queue);
965 IUCV_DBF_TEXT(trace, 5, "calling iucv_path_sever\n");
966 iucv_path_sever(conn->path, conn->userdata);
970 netiucv_purge_skb_queue(&conn->commit_queue);
971 fsm_event(privptr->fsm, DEV_EVENT_CONDOWN, netdev);
974 static void conn_action_inval(fsm_instance *fi, int event, void *arg)
976 struct iucv_connection *conn = arg;
977 struct net_device *netdev = conn->netdev;
979 IUCV_DBF_TEXT_(data, 2, "%s('%s'): conn_action_inval called\n",
980 netdev->name, conn->userid);
983 static const fsm_node conn_fsm[] = {
984 { CONN_STATE_INVALID, CONN_EVENT_START, conn_action_inval },
985 { CONN_STATE_STOPPED, CONN_EVENT_START, conn_action_start },
987 { CONN_STATE_STOPPED, CONN_EVENT_STOP, conn_action_stop },
988 { CONN_STATE_STARTWAIT, CONN_EVENT_STOP, conn_action_stop },
989 { CONN_STATE_SETUPWAIT, CONN_EVENT_STOP, conn_action_stop },
990 { CONN_STATE_IDLE, CONN_EVENT_STOP, conn_action_stop },
991 { CONN_STATE_TX, CONN_EVENT_STOP, conn_action_stop },
992 { CONN_STATE_REGERR, CONN_EVENT_STOP, conn_action_stop },
993 { CONN_STATE_CONNERR, CONN_EVENT_STOP, conn_action_stop },
995 { CONN_STATE_STOPPED, CONN_EVENT_CONN_REQ, conn_action_connreject },
996 { CONN_STATE_STARTWAIT, CONN_EVENT_CONN_REQ, conn_action_connaccept },
997 { CONN_STATE_SETUPWAIT, CONN_EVENT_CONN_REQ, conn_action_connaccept },
998 { CONN_STATE_IDLE, CONN_EVENT_CONN_REQ, conn_action_connreject },
999 { CONN_STATE_TX, CONN_EVENT_CONN_REQ, conn_action_connreject },
1001 { CONN_STATE_SETUPWAIT, CONN_EVENT_CONN_ACK, conn_action_connack },
1002 { CONN_STATE_SETUPWAIT, CONN_EVENT_TIMER, conn_action_conntimsev },
1004 { CONN_STATE_SETUPWAIT, CONN_EVENT_CONN_REJ, conn_action_connsever },
1005 { CONN_STATE_IDLE, CONN_EVENT_CONN_REJ, conn_action_connsever },
1006 { CONN_STATE_TX, CONN_EVENT_CONN_REJ, conn_action_connsever },
1008 { CONN_STATE_IDLE, CONN_EVENT_RX, conn_action_rx },
1009 { CONN_STATE_TX, CONN_EVENT_RX, conn_action_rx },
1011 { CONN_STATE_TX, CONN_EVENT_TXDONE, conn_action_txdone },
1012 { CONN_STATE_IDLE, CONN_EVENT_TXDONE, conn_action_txdone },
1015 static const int CONN_FSM_LEN = sizeof(conn_fsm) / sizeof(fsm_node);
1019 * Actions for interface - statemachine.
1024 * @fi: An instance of an interface statemachine.
1025 * @event: The event, just happened.
1026 * @arg: Generic pointer, casted from struct net_device * upon call.
1028 * Startup connection by sending CONN_EVENT_START to it.
1030 static void dev_action_start(fsm_instance *fi, int event, void *arg)
1032 struct net_device *dev = arg;
1033 struct netiucv_priv *privptr = netdev_priv(dev);
1035 IUCV_DBF_TEXT(trace, 3, __func__);
1037 fsm_newstate(fi, DEV_STATE_STARTWAIT);
1038 fsm_event(privptr->conn->fsm, CONN_EVENT_START, privptr->conn);
1042 * Shutdown connection by sending CONN_EVENT_STOP to it.
1044 * @param fi An instance of an interface statemachine.
1045 * @param event The event, just happened.
1046 * @param arg Generic pointer, casted from struct net_device * upon call.
1049 dev_action_stop(fsm_instance *fi, int event, void *arg)
1051 struct net_device *dev = arg;
1052 struct netiucv_priv *privptr = netdev_priv(dev);
1053 struct iucv_event ev;
1055 IUCV_DBF_TEXT(trace, 3, __func__);
1057 ev.conn = privptr->conn;
1059 fsm_newstate(fi, DEV_STATE_STOPWAIT);
1060 fsm_event(privptr->conn->fsm, CONN_EVENT_STOP, &ev);
1064 * Called from connection statemachine
1065 * when a connection is up and running.
1067 * @param fi An instance of an interface statemachine.
1068 * @param event The event, just happened.
1069 * @param arg Generic pointer, casted from struct net_device * upon call.
1072 dev_action_connup(fsm_instance *fi, int event, void *arg)
1074 struct net_device *dev = arg;
1075 struct netiucv_priv *privptr = netdev_priv(dev);
1077 IUCV_DBF_TEXT(trace, 3, __func__);
1079 switch (fsm_getstate(fi)) {
1080 case DEV_STATE_STARTWAIT:
1081 fsm_newstate(fi, DEV_STATE_RUNNING);
1082 dev_info(privptr->dev,
1083 "The IUCV device has been connected"
1084 " successfully to %s\n",
1085 netiucv_printuser(privptr->conn));
1086 IUCV_DBF_TEXT(setup, 3,
1087 "connection is up and running\n");
1089 case DEV_STATE_STOPWAIT:
1090 IUCV_DBF_TEXT(data, 2,
1091 "dev_action_connup: in DEV_STATE_STOPWAIT\n");
1097 * Called from connection statemachine
1098 * when a connection has been shutdown.
1100 * @param fi An instance of an interface statemachine.
1101 * @param event The event, just happened.
1102 * @param arg Generic pointer, casted from struct net_device * upon call.
1105 dev_action_conndown(fsm_instance *fi, int event, void *arg)
1107 IUCV_DBF_TEXT(trace, 3, __func__);
1109 switch (fsm_getstate(fi)) {
1110 case DEV_STATE_RUNNING:
1111 fsm_newstate(fi, DEV_STATE_STARTWAIT);
1113 case DEV_STATE_STOPWAIT:
1114 fsm_newstate(fi, DEV_STATE_STOPPED);
1115 IUCV_DBF_TEXT(setup, 3, "connection is down\n");
1120 static const fsm_node dev_fsm[] = {
1121 { DEV_STATE_STOPPED, DEV_EVENT_START, dev_action_start },
1123 { DEV_STATE_STOPWAIT, DEV_EVENT_START, dev_action_start },
1124 { DEV_STATE_STOPWAIT, DEV_EVENT_CONDOWN, dev_action_conndown },
1126 { DEV_STATE_STARTWAIT, DEV_EVENT_STOP, dev_action_stop },
1127 { DEV_STATE_STARTWAIT, DEV_EVENT_CONUP, dev_action_connup },
1129 { DEV_STATE_RUNNING, DEV_EVENT_STOP, dev_action_stop },
1130 { DEV_STATE_RUNNING, DEV_EVENT_CONDOWN, dev_action_conndown },
1131 { DEV_STATE_RUNNING, DEV_EVENT_CONUP, netiucv_action_nop },
1134 static const int DEV_FSM_LEN = sizeof(dev_fsm) / sizeof(fsm_node);
1137 * Transmit a packet.
1138 * This is a helper function for netiucv_tx().
1140 * @param conn Connection to be used for sending.
1141 * @param skb Pointer to struct sk_buff of packet to send.
1142 * The linklevel header has already been set up
1145 * @return 0 on success, -ERRNO on failure. (Never fails.)
1147 static int netiucv_transmit_skb(struct iucv_connection *conn,
1148 struct sk_buff *skb)
1150 struct iucv_message msg;
1151 unsigned long saveflags;
1152 struct ll_header header;
1155 if (fsm_getstate(conn->fsm) != CONN_STATE_IDLE) {
1156 int l = skb->len + NETIUCV_HDRLEN;
1158 spin_lock_irqsave(&conn->collect_lock, saveflags);
1159 if (conn->collect_len + l >
1160 (conn->max_buffsize - NETIUCV_HDRLEN)) {
1162 IUCV_DBF_TEXT(data, 2,
1163 "EBUSY from netiucv_transmit_skb\n");
1165 refcount_inc(&skb->users);
1166 skb_queue_tail(&conn->collect_queue, skb);
1167 conn->collect_len += l;
1170 spin_unlock_irqrestore(&conn->collect_lock, saveflags);
1172 struct sk_buff *nskb = skb;
1174 * Copy the skb to a new allocated skb in lowmem only if the
1175 * data is located above 2G in memory or tailroom is < 2.
1177 unsigned long hi = ((unsigned long)(skb_tail_pointer(skb) +
1178 NETIUCV_HDRLEN)) >> 31;
1180 if (hi || (skb_tailroom(skb) < 2)) {
1181 nskb = alloc_skb(skb->len + NETIUCV_HDRLEN +
1182 NETIUCV_HDRLEN, GFP_ATOMIC | GFP_DMA);
1184 IUCV_DBF_TEXT(data, 2, "alloc_skb failed\n");
1188 skb_reserve(nskb, NETIUCV_HDRLEN);
1189 skb_put_data(nskb, skb->data, skb->len);
1194 * skb now is below 2G and has enough room. Add headers.
1196 header.next = nskb->len + NETIUCV_HDRLEN;
1197 memcpy(skb_push(nskb, NETIUCV_HDRLEN), &header, NETIUCV_HDRLEN);
1199 skb_put_data(nskb, &header, NETIUCV_HDRLEN);
1201 fsm_newstate(conn->fsm, CONN_STATE_TX);
1202 conn->prof.send_stamp = jiffies;
1206 rc = iucv_message_send(conn->path, &msg, 0, 0,
1207 nskb->data, nskb->len);
1208 conn->prof.doios_single++;
1209 conn->prof.txlen += skb->len;
1210 conn->prof.tx_pending++;
1211 if (conn->prof.tx_pending > conn->prof.tx_max_pending)
1212 conn->prof.tx_max_pending = conn->prof.tx_pending;
1214 struct netiucv_priv *privptr;
1215 fsm_newstate(conn->fsm, CONN_STATE_IDLE);
1216 conn->prof.tx_pending--;
1217 privptr = netdev_priv(conn->netdev);
1219 privptr->stats.tx_errors++;
1221 dev_kfree_skb(nskb);
1224 * Remove our headers. They get added
1225 * again on retransmit.
1227 skb_pull(skb, NETIUCV_HDRLEN);
1228 skb_trim(skb, skb->len - NETIUCV_HDRLEN);
1230 IUCV_DBF_TEXT_(data, 2, "rc %d from iucv_send\n", rc);
1234 refcount_inc(&nskb->users);
1235 skb_queue_tail(&conn->commit_queue, nskb);
1243 * Interface API for upper network layers
1247 * Open an interface.
1248 * Called from generic network layer when ifconfig up is run.
1250 * @param dev Pointer to interface struct.
1252 * @return 0 on success, -ERRNO on failure. (Never fails.)
1254 static int netiucv_open(struct net_device *dev)
1256 struct netiucv_priv *priv = netdev_priv(dev);
1258 fsm_event(priv->fsm, DEV_EVENT_START, dev);
1263 * Close an interface.
1264 * Called from generic network layer when ifconfig down is run.
1266 * @param dev Pointer to interface struct.
1268 * @return 0 on success, -ERRNO on failure. (Never fails.)
1270 static int netiucv_close(struct net_device *dev)
1272 struct netiucv_priv *priv = netdev_priv(dev);
1274 fsm_event(priv->fsm, DEV_EVENT_STOP, dev);
1278 static int netiucv_pm_prepare(struct device *dev)
1280 IUCV_DBF_TEXT(trace, 3, __func__);
1284 static void netiucv_pm_complete(struct device *dev)
1286 IUCV_DBF_TEXT(trace, 3, __func__);
1291 * netiucv_pm_freeze() - Freeze PM callback
1292 * @dev: netiucv device
1294 * close open netiucv interfaces
1296 static int netiucv_pm_freeze(struct device *dev)
1298 struct netiucv_priv *priv = dev_get_drvdata(dev);
1299 struct net_device *ndev = NULL;
1302 IUCV_DBF_TEXT(trace, 3, __func__);
1303 if (priv && priv->conn)
1304 ndev = priv->conn->netdev;
1307 netif_device_detach(ndev);
1308 priv->pm_state = fsm_getstate(priv->fsm);
1309 rc = netiucv_close(ndev);
1315 * netiucv_pm_restore_thaw() - Thaw and restore PM callback
1316 * @dev: netiucv device
1318 * re-open netiucv interfaces closed during freeze
1320 static int netiucv_pm_restore_thaw(struct device *dev)
1322 struct netiucv_priv *priv = dev_get_drvdata(dev);
1323 struct net_device *ndev = NULL;
1326 IUCV_DBF_TEXT(trace, 3, __func__);
1327 if (priv && priv->conn)
1328 ndev = priv->conn->netdev;
1331 switch (priv->pm_state) {
1332 case DEV_STATE_RUNNING:
1333 case DEV_STATE_STARTWAIT:
1334 rc = netiucv_open(ndev);
1339 netif_device_attach(ndev);
1345 * Start transmission of a packet.
1346 * Called from generic network device layer.
1348 * @param skb Pointer to buffer containing the packet.
1349 * @param dev Pointer to interface struct.
1351 * @return 0 if packet consumed, !0 if packet rejected.
1352 * Note: If we return !0, then the packet is free'd by
1353 * the generic network layer.
1355 static int netiucv_tx(struct sk_buff *skb, struct net_device *dev)
1357 struct netiucv_priv *privptr = netdev_priv(dev);
1360 IUCV_DBF_TEXT(trace, 4, __func__);
1362 * Some sanity checks ...
1365 IUCV_DBF_TEXT(data, 2, "netiucv_tx: skb is NULL\n");
1366 privptr->stats.tx_dropped++;
1367 return NETDEV_TX_OK;
1369 if (skb_headroom(skb) < NETIUCV_HDRLEN) {
1370 IUCV_DBF_TEXT(data, 2,
1371 "netiucv_tx: skb_headroom < NETIUCV_HDRLEN\n");
1373 privptr->stats.tx_dropped++;
1374 return NETDEV_TX_OK;
1378 * If connection is not running, try to restart it
1379 * and throw away packet.
1381 if (fsm_getstate(privptr->fsm) != DEV_STATE_RUNNING) {
1383 privptr->stats.tx_dropped++;
1384 privptr->stats.tx_errors++;
1385 privptr->stats.tx_carrier_errors++;
1386 return NETDEV_TX_OK;
1389 if (netiucv_test_and_set_busy(dev)) {
1390 IUCV_DBF_TEXT(data, 2, "EBUSY from netiucv_tx\n");
1391 return NETDEV_TX_BUSY;
1393 netif_trans_update(dev);
1394 rc = netiucv_transmit_skb(privptr->conn, skb);
1395 netiucv_clear_busy(dev);
1396 return rc ? NETDEV_TX_BUSY : NETDEV_TX_OK;
1401 * @dev: Pointer to interface struct.
1403 * Returns interface statistics of a device.
1405 * Returns pointer to stats struct of this interface.
1407 static struct net_device_stats *netiucv_stats (struct net_device * dev)
1409 struct netiucv_priv *priv = netdev_priv(dev);
1411 IUCV_DBF_TEXT(trace, 5, __func__);
1412 return &priv->stats;
1416 * attributes in sysfs
1419 static ssize_t user_show(struct device *dev, struct device_attribute *attr,
1422 struct netiucv_priv *priv = dev_get_drvdata(dev);
1424 IUCV_DBF_TEXT(trace, 5, __func__);
1425 return sprintf(buf, "%s\n", netiucv_printuser(priv->conn));
1428 static int netiucv_check_user(const char *buf, size_t count, char *username,
1434 p = strchr(buf, '.');
1435 if ((p && ((count > 26) ||
1437 (buf + count - p > 18))) ||
1438 (!p && (count > 9))) {
1439 IUCV_DBF_TEXT(setup, 2, "conn_write: too long\n");
1443 for (i = 0, p = buf; i < 8 && *p && *p != '.'; i++, p++) {
1444 if (isalnum(*p) || *p == '$') {
1445 username[i] = toupper(*p);
1449 /* trailing lf, grr */
1451 IUCV_DBF_TEXT_(setup, 2,
1452 "conn_write: invalid character %02x\n", *p);
1456 username[i++] = ' ';
1461 for (i = 0; i < 16 && *p; i++, p++) {
1464 userdata[i] = toupper(*p);
1466 while (i > 0 && i < 16)
1467 userdata[i++] = ' ';
1469 memcpy(userdata, iucvMagic_ascii, 16);
1470 userdata[16] = '\0';
1471 ASCEBC(userdata, 16);
1476 static ssize_t user_write(struct device *dev, struct device_attribute *attr,
1477 const char *buf, size_t count)
1479 struct netiucv_priv *priv = dev_get_drvdata(dev);
1480 struct net_device *ndev = priv->conn->netdev;
1484 struct iucv_connection *cp;
1486 IUCV_DBF_TEXT(trace, 3, __func__);
1487 rc = netiucv_check_user(buf, count, username, userdata);
1491 if (memcmp(username, priv->conn->userid, 9) &&
1492 (ndev->flags & (IFF_UP | IFF_RUNNING))) {
1493 /* username changed while the interface is active. */
1494 IUCV_DBF_TEXT(setup, 2, "user_write: device active\n");
1497 read_lock_bh(&iucv_connection_rwlock);
1498 list_for_each_entry(cp, &iucv_connection_list, list) {
1499 if (!strncmp(username, cp->userid, 9) &&
1500 !strncmp(userdata, cp->userdata, 17) && cp->netdev != ndev) {
1501 read_unlock_bh(&iucv_connection_rwlock);
1502 IUCV_DBF_TEXT_(setup, 2, "user_write: Connection to %s "
1503 "already exists\n", netiucv_printuser(cp));
1507 read_unlock_bh(&iucv_connection_rwlock);
1508 memcpy(priv->conn->userid, username, 9);
1509 memcpy(priv->conn->userdata, userdata, 17);
1513 static DEVICE_ATTR(user, 0644, user_show, user_write);
1515 static ssize_t buffer_show (struct device *dev, struct device_attribute *attr,
1518 struct netiucv_priv *priv = dev_get_drvdata(dev);
1520 IUCV_DBF_TEXT(trace, 5, __func__);
1521 return sprintf(buf, "%d\n", priv->conn->max_buffsize);
1524 static ssize_t buffer_write (struct device *dev, struct device_attribute *attr,
1525 const char *buf, size_t count)
1527 struct netiucv_priv *priv = dev_get_drvdata(dev);
1528 struct net_device *ndev = priv->conn->netdev;
1532 IUCV_DBF_TEXT(trace, 3, __func__);
1536 rc = kstrtouint(buf, 0, &bs1);
1538 if (rc == -EINVAL) {
1539 IUCV_DBF_TEXT_(setup, 2, "buffer_write: invalid char %s\n",
1543 if ((rc == -ERANGE) || (bs1 > NETIUCV_BUFSIZE_MAX)) {
1544 IUCV_DBF_TEXT_(setup, 2,
1545 "buffer_write: buffer size %d too large\n",
1549 if ((ndev->flags & IFF_RUNNING) &&
1550 (bs1 < (ndev->mtu + NETIUCV_HDRLEN + 2))) {
1551 IUCV_DBF_TEXT_(setup, 2,
1552 "buffer_write: buffer size %d too small\n",
1556 if (bs1 < (576 + NETIUCV_HDRLEN + NETIUCV_HDRLEN)) {
1557 IUCV_DBF_TEXT_(setup, 2,
1558 "buffer_write: buffer size %d too small\n",
1563 priv->conn->max_buffsize = bs1;
1564 if (!(ndev->flags & IFF_RUNNING))
1565 ndev->mtu = bs1 - NETIUCV_HDRLEN - NETIUCV_HDRLEN;
1571 static DEVICE_ATTR(buffer, 0644, buffer_show, buffer_write);
1573 static ssize_t dev_fsm_show (struct device *dev, struct device_attribute *attr,
1576 struct netiucv_priv *priv = dev_get_drvdata(dev);
1578 IUCV_DBF_TEXT(trace, 5, __func__);
1579 return sprintf(buf, "%s\n", fsm_getstate_str(priv->fsm));
1582 static DEVICE_ATTR(device_fsm_state, 0444, dev_fsm_show, NULL);
1584 static ssize_t conn_fsm_show (struct device *dev,
1585 struct device_attribute *attr, char *buf)
1587 struct netiucv_priv *priv = dev_get_drvdata(dev);
1589 IUCV_DBF_TEXT(trace, 5, __func__);
1590 return sprintf(buf, "%s\n", fsm_getstate_str(priv->conn->fsm));
1593 static DEVICE_ATTR(connection_fsm_state, 0444, conn_fsm_show, NULL);
1595 static ssize_t maxmulti_show (struct device *dev,
1596 struct device_attribute *attr, char *buf)
1598 struct netiucv_priv *priv = dev_get_drvdata(dev);
1600 IUCV_DBF_TEXT(trace, 5, __func__);
1601 return sprintf(buf, "%ld\n", priv->conn->prof.maxmulti);
1604 static ssize_t maxmulti_write (struct device *dev,
1605 struct device_attribute *attr,
1606 const char *buf, size_t count)
1608 struct netiucv_priv *priv = dev_get_drvdata(dev);
1610 IUCV_DBF_TEXT(trace, 4, __func__);
1611 priv->conn->prof.maxmulti = 0;
1615 static DEVICE_ATTR(max_tx_buffer_used, 0644, maxmulti_show, maxmulti_write);
1617 static ssize_t maxcq_show (struct device *dev, struct device_attribute *attr,
1620 struct netiucv_priv *priv = dev_get_drvdata(dev);
1622 IUCV_DBF_TEXT(trace, 5, __func__);
1623 return sprintf(buf, "%ld\n", priv->conn->prof.maxcqueue);
1626 static ssize_t maxcq_write (struct device *dev, struct device_attribute *attr,
1627 const char *buf, size_t count)
1629 struct netiucv_priv *priv = dev_get_drvdata(dev);
1631 IUCV_DBF_TEXT(trace, 4, __func__);
1632 priv->conn->prof.maxcqueue = 0;
1636 static DEVICE_ATTR(max_chained_skbs, 0644, maxcq_show, maxcq_write);
1638 static ssize_t sdoio_show (struct device *dev, struct device_attribute *attr,
1641 struct netiucv_priv *priv = dev_get_drvdata(dev);
1643 IUCV_DBF_TEXT(trace, 5, __func__);
1644 return sprintf(buf, "%ld\n", priv->conn->prof.doios_single);
1647 static ssize_t sdoio_write (struct device *dev, struct device_attribute *attr,
1648 const char *buf, size_t count)
1650 struct netiucv_priv *priv = dev_get_drvdata(dev);
1652 IUCV_DBF_TEXT(trace, 4, __func__);
1653 priv->conn->prof.doios_single = 0;
1657 static DEVICE_ATTR(tx_single_write_ops, 0644, sdoio_show, sdoio_write);
1659 static ssize_t mdoio_show (struct device *dev, struct device_attribute *attr,
1662 struct netiucv_priv *priv = dev_get_drvdata(dev);
1664 IUCV_DBF_TEXT(trace, 5, __func__);
1665 return sprintf(buf, "%ld\n", priv->conn->prof.doios_multi);
1668 static ssize_t mdoio_write (struct device *dev, struct device_attribute *attr,
1669 const char *buf, size_t count)
1671 struct netiucv_priv *priv = dev_get_drvdata(dev);
1673 IUCV_DBF_TEXT(trace, 5, __func__);
1674 priv->conn->prof.doios_multi = 0;
1678 static DEVICE_ATTR(tx_multi_write_ops, 0644, mdoio_show, mdoio_write);
1680 static ssize_t txlen_show (struct device *dev, struct device_attribute *attr,
1683 struct netiucv_priv *priv = dev_get_drvdata(dev);
1685 IUCV_DBF_TEXT(trace, 5, __func__);
1686 return sprintf(buf, "%ld\n", priv->conn->prof.txlen);
1689 static ssize_t txlen_write (struct device *dev, struct device_attribute *attr,
1690 const char *buf, size_t count)
1692 struct netiucv_priv *priv = dev_get_drvdata(dev);
1694 IUCV_DBF_TEXT(trace, 4, __func__);
1695 priv->conn->prof.txlen = 0;
1699 static DEVICE_ATTR(netto_bytes, 0644, txlen_show, txlen_write);
1701 static ssize_t txtime_show (struct device *dev, struct device_attribute *attr,
1704 struct netiucv_priv *priv = dev_get_drvdata(dev);
1706 IUCV_DBF_TEXT(trace, 5, __func__);
1707 return sprintf(buf, "%ld\n", priv->conn->prof.tx_time);
1710 static ssize_t txtime_write (struct device *dev, struct device_attribute *attr,
1711 const char *buf, size_t count)
1713 struct netiucv_priv *priv = dev_get_drvdata(dev);
1715 IUCV_DBF_TEXT(trace, 4, __func__);
1716 priv->conn->prof.tx_time = 0;
1720 static DEVICE_ATTR(max_tx_io_time, 0644, txtime_show, txtime_write);
1722 static ssize_t txpend_show (struct device *dev, struct device_attribute *attr,
1725 struct netiucv_priv *priv = dev_get_drvdata(dev);
1727 IUCV_DBF_TEXT(trace, 5, __func__);
1728 return sprintf(buf, "%ld\n", priv->conn->prof.tx_pending);
1731 static ssize_t txpend_write (struct device *dev, struct device_attribute *attr,
1732 const char *buf, size_t count)
1734 struct netiucv_priv *priv = dev_get_drvdata(dev);
1736 IUCV_DBF_TEXT(trace, 4, __func__);
1737 priv->conn->prof.tx_pending = 0;
1741 static DEVICE_ATTR(tx_pending, 0644, txpend_show, txpend_write);
1743 static ssize_t txmpnd_show (struct device *dev, struct device_attribute *attr,
1746 struct netiucv_priv *priv = dev_get_drvdata(dev);
1748 IUCV_DBF_TEXT(trace, 5, __func__);
1749 return sprintf(buf, "%ld\n", priv->conn->prof.tx_max_pending);
1752 static ssize_t txmpnd_write (struct device *dev, struct device_attribute *attr,
1753 const char *buf, size_t count)
1755 struct netiucv_priv *priv = dev_get_drvdata(dev);
1757 IUCV_DBF_TEXT(trace, 4, __func__);
1758 priv->conn->prof.tx_max_pending = 0;
1762 static DEVICE_ATTR(tx_max_pending, 0644, txmpnd_show, txmpnd_write);
1764 static struct attribute *netiucv_attrs[] = {
1765 &dev_attr_buffer.attr,
1766 &dev_attr_user.attr,
1770 static struct attribute_group netiucv_attr_group = {
1771 .attrs = netiucv_attrs,
1774 static struct attribute *netiucv_stat_attrs[] = {
1775 &dev_attr_device_fsm_state.attr,
1776 &dev_attr_connection_fsm_state.attr,
1777 &dev_attr_max_tx_buffer_used.attr,
1778 &dev_attr_max_chained_skbs.attr,
1779 &dev_attr_tx_single_write_ops.attr,
1780 &dev_attr_tx_multi_write_ops.attr,
1781 &dev_attr_netto_bytes.attr,
1782 &dev_attr_max_tx_io_time.attr,
1783 &dev_attr_tx_pending.attr,
1784 &dev_attr_tx_max_pending.attr,
1788 static struct attribute_group netiucv_stat_attr_group = {
1790 .attrs = netiucv_stat_attrs,
1793 static const struct attribute_group *netiucv_attr_groups[] = {
1794 &netiucv_stat_attr_group,
1795 &netiucv_attr_group,
1799 static int netiucv_register_device(struct net_device *ndev)
1801 struct netiucv_priv *priv = netdev_priv(ndev);
1802 struct device *dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1805 IUCV_DBF_TEXT(trace, 3, __func__);
1808 dev_set_name(dev, "net%s", ndev->name);
1809 dev->bus = &iucv_bus;
1810 dev->parent = iucv_root;
1811 dev->groups = netiucv_attr_groups;
1813 * The release function could be called after the
1814 * module has been unloaded. It's _only_ task is to
1815 * free the struct. Therefore, we specify kfree()
1816 * directly here. (Probably a little bit obfuscating
1817 * but legitime ...).
1819 dev->release = (void (*)(struct device *))kfree;
1820 dev->driver = &netiucv_driver;
1824 ret = device_register(dev);
1830 dev_set_drvdata(dev, priv);
1834 static void netiucv_unregister_device(struct device *dev)
1836 IUCV_DBF_TEXT(trace, 3, __func__);
1837 device_unregister(dev);
1841 * Allocate and initialize a new connection structure.
1842 * Add it to the list of netiucv connections;
1844 static struct iucv_connection *netiucv_new_connection(struct net_device *dev,
1848 struct iucv_connection *conn;
1850 conn = kzalloc(sizeof(*conn), GFP_KERNEL);
1853 skb_queue_head_init(&conn->collect_queue);
1854 skb_queue_head_init(&conn->commit_queue);
1855 spin_lock_init(&conn->collect_lock);
1856 conn->max_buffsize = NETIUCV_BUFSIZE_DEFAULT;
1859 conn->rx_buff = alloc_skb(conn->max_buffsize, GFP_KERNEL | GFP_DMA);
1862 conn->tx_buff = alloc_skb(conn->max_buffsize, GFP_KERNEL | GFP_DMA);
1865 conn->fsm = init_fsm("netiucvconn", conn_state_names,
1866 conn_event_names, NR_CONN_STATES,
1867 NR_CONN_EVENTS, conn_fsm, CONN_FSM_LEN,
1872 fsm_settimer(conn->fsm, &conn->timer);
1873 fsm_newstate(conn->fsm, CONN_STATE_INVALID);
1876 memcpy(conn->userdata, userdata, 17);
1878 memcpy(conn->userid, username, 9);
1879 fsm_newstate(conn->fsm, CONN_STATE_STOPPED);
1882 write_lock_bh(&iucv_connection_rwlock);
1883 list_add_tail(&conn->list, &iucv_connection_list);
1884 write_unlock_bh(&iucv_connection_rwlock);
1888 kfree_skb(conn->tx_buff);
1890 kfree_skb(conn->rx_buff);
1898 * Release a connection structure and remove it from the
1899 * list of netiucv connections.
1901 static void netiucv_remove_connection(struct iucv_connection *conn)
1904 IUCV_DBF_TEXT(trace, 3, __func__);
1905 write_lock_bh(&iucv_connection_rwlock);
1906 list_del_init(&conn->list);
1907 write_unlock_bh(&iucv_connection_rwlock);
1908 fsm_deltimer(&conn->timer);
1909 netiucv_purge_skb_queue(&conn->collect_queue);
1911 iucv_path_sever(conn->path, conn->userdata);
1915 netiucv_purge_skb_queue(&conn->commit_queue);
1916 kfree_fsm(conn->fsm);
1917 kfree_skb(conn->rx_buff);
1918 kfree_skb(conn->tx_buff);
1922 * Release everything of a net device.
1924 static void netiucv_free_netdevice(struct net_device *dev)
1926 struct netiucv_priv *privptr = netdev_priv(dev);
1928 IUCV_DBF_TEXT(trace, 3, __func__);
1935 netiucv_remove_connection(privptr->conn);
1937 kfree_fsm(privptr->fsm);
1938 privptr->conn = NULL; privptr->fsm = NULL;
1939 /* privptr gets freed by free_netdev() */
1944 * Initialize a net device. (Called from kernel in alloc_netdev())
1946 static const struct net_device_ops netiucv_netdev_ops = {
1947 .ndo_open = netiucv_open,
1948 .ndo_stop = netiucv_close,
1949 .ndo_get_stats = netiucv_stats,
1950 .ndo_start_xmit = netiucv_tx,
1953 static void netiucv_setup_netdevice(struct net_device *dev)
1955 dev->mtu = NETIUCV_MTU_DEFAULT;
1957 dev->max_mtu = NETIUCV_MTU_MAX;
1958 dev->needs_free_netdev = true;
1959 dev->priv_destructor = netiucv_free_netdevice;
1960 dev->hard_header_len = NETIUCV_HDRLEN;
1962 dev->type = ARPHRD_SLIP;
1963 dev->tx_queue_len = NETIUCV_QUEUELEN_DEFAULT;
1964 dev->flags = IFF_POINTOPOINT | IFF_NOARP;
1965 dev->netdev_ops = &netiucv_netdev_ops;
1969 * Allocate and initialize everything of a net device.
1971 static struct net_device *netiucv_init_netdevice(char *username, char *userdata)
1973 struct netiucv_priv *privptr;
1974 struct net_device *dev;
1976 dev = alloc_netdev(sizeof(struct netiucv_priv), "iucv%d",
1977 NET_NAME_UNKNOWN, netiucv_setup_netdevice);
1981 if (dev_alloc_name(dev, dev->name) < 0)
1984 privptr = netdev_priv(dev);
1985 privptr->fsm = init_fsm("netiucvdev", dev_state_names,
1986 dev_event_names, NR_DEV_STATES, NR_DEV_EVENTS,
1987 dev_fsm, DEV_FSM_LEN, GFP_KERNEL);
1991 privptr->conn = netiucv_new_connection(dev, username, userdata);
1992 if (!privptr->conn) {
1993 IUCV_DBF_TEXT(setup, 2, "NULL from netiucv_new_connection\n");
1996 fsm_newstate(privptr->fsm, DEV_STATE_STOPPED);
2000 kfree_fsm(privptr->fsm);
2007 static ssize_t connection_store(struct device_driver *drv, const char *buf,
2013 struct net_device *dev;
2014 struct netiucv_priv *priv;
2015 struct iucv_connection *cp;
2017 IUCV_DBF_TEXT(trace, 3, __func__);
2018 rc = netiucv_check_user(buf, count, username, userdata);
2022 read_lock_bh(&iucv_connection_rwlock);
2023 list_for_each_entry(cp, &iucv_connection_list, list) {
2024 if (!strncmp(username, cp->userid, 9) &&
2025 !strncmp(userdata, cp->userdata, 17)) {
2026 read_unlock_bh(&iucv_connection_rwlock);
2027 IUCV_DBF_TEXT_(setup, 2, "conn_write: Connection to %s "
2028 "already exists\n", netiucv_printuser(cp));
2032 read_unlock_bh(&iucv_connection_rwlock);
2034 dev = netiucv_init_netdevice(username, userdata);
2036 IUCV_DBF_TEXT(setup, 2, "NULL from netiucv_init_netdevice\n");
2040 rc = netiucv_register_device(dev);
2043 IUCV_DBF_TEXT_(setup, 2,
2044 "ret %d from netiucv_register_device\n", rc);
2049 priv = netdev_priv(dev);
2050 SET_NETDEV_DEV(dev, priv->dev);
2052 rc = register_netdevice(dev);
2057 dev_info(priv->dev, "The IUCV interface to %s has been established "
2059 netiucv_printuser(priv->conn));
2064 netiucv_unregister_device(priv->dev);
2066 netiucv_free_netdevice(dev);
2069 static DRIVER_ATTR_WO(connection);
2071 static ssize_t remove_store(struct device_driver *drv, const char *buf,
2074 struct iucv_connection *cp;
2075 struct net_device *ndev;
2076 struct netiucv_priv *priv;
2078 char name[IFNAMSIZ];
2082 IUCV_DBF_TEXT(trace, 3, __func__);
2084 if (count >= IFNAMSIZ)
2085 count = IFNAMSIZ - 1;
2087 for (i = 0, p = buf; i < count && *p; i++, p++) {
2088 if (*p == '\n' || *p == ' ')
2089 /* trailing lf, grr */
2095 read_lock_bh(&iucv_connection_rwlock);
2096 list_for_each_entry(cp, &iucv_connection_list, list) {
2098 priv = netdev_priv(ndev);
2100 if (strncmp(name, ndev->name, count))
2102 read_unlock_bh(&iucv_connection_rwlock);
2103 if (ndev->flags & (IFF_UP | IFF_RUNNING)) {
2104 dev_warn(dev, "The IUCV device is connected"
2105 " to %s and cannot be removed\n",
2106 priv->conn->userid);
2107 IUCV_DBF_TEXT(data, 2, "remove_write: still active\n");
2110 unregister_netdev(ndev);
2111 netiucv_unregister_device(dev);
2114 read_unlock_bh(&iucv_connection_rwlock);
2115 IUCV_DBF_TEXT(data, 2, "remove_write: unknown device\n");
2118 static DRIVER_ATTR_WO(remove);
2120 static struct attribute * netiucv_drv_attrs[] = {
2121 &driver_attr_connection.attr,
2122 &driver_attr_remove.attr,
2126 static struct attribute_group netiucv_drv_attr_group = {
2127 .attrs = netiucv_drv_attrs,
2130 static const struct attribute_group *netiucv_drv_attr_groups[] = {
2131 &netiucv_drv_attr_group,
2135 static void netiucv_banner(void)
2137 pr_info("driver initialized\n");
2140 static void __exit netiucv_exit(void)
2142 struct iucv_connection *cp;
2143 struct net_device *ndev;
2144 struct netiucv_priv *priv;
2147 IUCV_DBF_TEXT(trace, 3, __func__);
2148 while (!list_empty(&iucv_connection_list)) {
2149 cp = list_entry(iucv_connection_list.next,
2150 struct iucv_connection, list);
2152 priv = netdev_priv(ndev);
2155 unregister_netdev(ndev);
2156 netiucv_unregister_device(dev);
2159 device_unregister(netiucv_dev);
2160 driver_unregister(&netiucv_driver);
2161 iucv_unregister(&netiucv_handler, 1);
2162 iucv_unregister_dbf_views();
2164 pr_info("driver unloaded\n");
2168 static int __init netiucv_init(void)
2172 rc = iucv_register_dbf_views();
2175 rc = iucv_register(&netiucv_handler, 1);
2178 IUCV_DBF_TEXT(trace, 3, __func__);
2179 netiucv_driver.groups = netiucv_drv_attr_groups;
2180 rc = driver_register(&netiucv_driver);
2182 IUCV_DBF_TEXT_(setup, 2, "ret %d from driver_register\n", rc);
2185 /* establish dummy device */
2186 netiucv_dev = kzalloc(sizeof(struct device), GFP_KERNEL);
2191 dev_set_name(netiucv_dev, "netiucv");
2192 netiucv_dev->bus = &iucv_bus;
2193 netiucv_dev->parent = iucv_root;
2194 netiucv_dev->release = (void (*)(struct device *))kfree;
2195 netiucv_dev->driver = &netiucv_driver;
2196 rc = device_register(netiucv_dev);
2198 put_device(netiucv_dev);
2205 driver_unregister(&netiucv_driver);
2207 iucv_unregister(&netiucv_handler, 1);
2209 iucv_unregister_dbf_views();
2214 module_init(netiucv_init);
2215 module_exit(netiucv_exit);
2216 MODULE_LICENSE("GPL");