1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright 2006 IBM Corporation
4 * IUCV protocol stack for Linux on zSeries
6 * Author(s): Jennifer Hunt <jenhunt@us.ibm.com>
13 #include <asm/types.h>
14 #include <asm/byteorder.h>
15 #include <linux/list.h>
16 #include <linux/poll.h>
17 #include <linux/socket.h>
18 #include <net/iucv/iucv.h>
22 #define PF_IUCV AF_IUCV
25 /* Connection and socket states */
36 #define IUCV_QUEUELEN_DEFAULT 65535
37 #define IUCV_HIPER_MSGLIM_DEFAULT 128
38 #define IUCV_CONN_TIMEOUT (HZ * 40)
39 #define IUCV_DISCONN_TIMEOUT (HZ * 2)
40 #define IUCV_CONN_IDLE_TIMEOUT (HZ * 60)
41 #define IUCV_BUFSIZE_DEFAULT 32768
43 /* IUCV socket address */
44 struct sockaddr_iucv
{
45 sa_family_t siucv_family
;
46 unsigned short siucv_port
; /* Reserved */
47 unsigned int siucv_addr
; /* Reserved */
48 char siucv_nodeid
[8]; /* Reserved */
49 char siucv_user_id
[8]; /* Guest User Id */
50 char siucv_name
[8]; /* Application Name */
54 /* Common socket structures and functions */
56 struct iucv_path
*path
;
57 struct iucv_message msg
;
58 struct list_head list
;
62 #define AF_IUCV_FLAG_ACK 0x1
63 #define AF_IUCV_FLAG_SYN 0x2
64 #define AF_IUCV_FLAG_FIN 0x4
65 #define AF_IUCV_FLAG_WIN 0x8
66 #define AF_IUCV_FLAG_SHT 0x10
68 struct af_iucv_trans_hdr
{
78 char srcAppName
[16]; /* => 70 bytes */
79 struct iucv_message iucv_hdr
; /* => 33 bytes */
80 u8 pad
; /* total 104 bytes */
84 /* transmission of skb is completed and was successful */
86 /* target is unreachable */
87 TX_NOTIFY_UNREACHABLE
= 1,
88 /* transfer pending queue full */
89 TX_NOTIFY_TPQFULL
= 2,
91 TX_NOTIFY_GENERALERROR
= 3,
92 /* transmission of skb is pending - may interleave
93 * with TX_NOTIFY_DELAYED_* */
94 TX_NOTIFY_PENDING
= 4,
95 /* transmission of skb was done successfully (delayed) */
96 TX_NOTIFY_DELAYED_OK
= 5,
97 /* target unreachable (detected delayed) */
98 TX_NOTIFY_DELAYED_UNREACHABLE
= 6,
99 /* general error (detected delayed) */
100 TX_NOTIFY_DELAYED_GENERALERROR
= 7,
103 #define iucv_sk(__sk) ((struct iucv_sock *) __sk)
105 #define AF_IUCV_TRANS_IUCV 0
106 #define AF_IUCV_TRANS_HIPER 1
114 struct list_head accept_q
;
115 spinlock_t accept_q_lock
;
117 struct iucv_path
*path
;
118 struct net_device
*hs_dev
;
119 struct sk_buff_head send_skb_q
;
120 struct sk_buff_head backlog_skb_q
;
121 struct sock_msg_q message_q
;
122 unsigned int send_tag
;
130 void (*sk_txnotify
)(struct sk_buff
*skb
,
131 enum iucv_tx_notify n
);
135 u32
class; /* target class of message */
136 u32 tag
; /* tag associated with message */
137 u32 offset
; /* offset for skb receival */
140 #define IUCV_SKB_CB(__skb) ((struct iucv_skb_cb *)&((__skb)->cb[0]))
142 /* iucv socket options (SOL_IUCV) */
143 #define SO_IPRMDATA_MSG 0x0080 /* send/recv IPRM_DATA msgs */
144 #define SO_MSGLIMIT 0x1000 /* get/set IUCV MSGLIMIT */
145 #define SO_MSGSIZE 0x0800 /* get maximum msgsize */
147 /* iucv related control messages (scm) */
148 #define SCM_IUCV_TRGCLS 0x0001 /* target class control message */
150 struct iucv_sock_list
{
151 struct hlist_head head
;
153 atomic_t autobind_name
;
156 unsigned int iucv_sock_poll(struct file
*file
, struct socket
*sock
,
158 void iucv_sock_link(struct iucv_sock_list
*l
, struct sock
*s
);
159 void iucv_sock_unlink(struct iucv_sock_list
*l
, struct sock
*s
);
160 void iucv_accept_enqueue(struct sock
*parent
, struct sock
*sk
);
161 void iucv_accept_unlink(struct sock
*sk
);
162 struct sock
*iucv_accept_dequeue(struct sock
*parent
, struct socket
*newsock
);
164 #endif /* __IUCV_H */