Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * An implementation of the Acorn Econet and AUN protocols. |
| 3 | * Philip Blundell <philb@gnu.org> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License |
| 7 | * as published by the Free Software Foundation; either version |
| 8 | * 2 of the License, or (at your option) any later version. |
| 9 | * |
| 10 | */ |
| 11 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 12 | #define pr_fmt(fmt) fmt |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/module.h> |
| 15 | |
| 16 | #include <linux/types.h> |
| 17 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/string.h> |
| 19 | #include <linux/mm.h> |
| 20 | #include <linux/socket.h> |
| 21 | #include <linux/sockios.h> |
| 22 | #include <linux/in.h> |
| 23 | #include <linux/errno.h> |
| 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/if_ether.h> |
| 26 | #include <linux/netdevice.h> |
| 27 | #include <linux/inetdevice.h> |
| 28 | #include <linux/route.h> |
| 29 | #include <linux/inet.h> |
| 30 | #include <linux/etherdevice.h> |
| 31 | #include <linux/if_arp.h> |
| 32 | #include <linux/wireless.h> |
| 33 | #include <linux/skbuff.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 34 | #include <linux/udp.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 35 | #include <linux/slab.h> |
Phil Blundell | a27e13d | 2010-11-24 11:51:47 -0800 | [diff] [blame] | 36 | #include <linux/vmalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <net/sock.h> |
| 38 | #include <net/inet_common.h> |
| 39 | #include <linux/stat.h> |
| 40 | #include <linux/init.h> |
| 41 | #include <linux/if_ec.h> |
| 42 | #include <net/udp.h> |
| 43 | #include <net/ip.h> |
| 44 | #include <linux/spinlock.h> |
| 45 | #include <linux/rcupdate.h> |
| 46 | #include <linux/bitops.h> |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 47 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 49 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <asm/system.h> |
| 51 | |
Eric Dumazet | 90ddc4f | 2005-12-22 12:49:22 -0800 | [diff] [blame] | 52 | static const struct proto_ops econet_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | static struct hlist_head econet_sklist; |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 54 | static DEFINE_SPINLOCK(econet_lock); |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 55 | static DEFINE_MUTEX(econet_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | /* Since there are only 256 possible network numbers (or fewer, depends |
| 58 | how you count) it makes sense to use a simple lookup table. */ |
| 59 | static struct net_device *net2dev_map[256]; |
| 60 | |
| 61 | #define EC_PORT_IP 0xd2 |
| 62 | |
| 63 | #ifdef CONFIG_ECONET_AUNUDP |
YOSHIFUJI Hideaki | ca40330 | 2006-01-04 13:56:08 -0800 | [diff] [blame] | 64 | static DEFINE_SPINLOCK(aun_queue_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | static struct socket *udpsock; |
| 66 | #define AUN_PORT 0x8000 |
| 67 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 68 | struct aunhdr { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | unsigned char code; /* AUN magic protocol byte */ |
| 70 | unsigned char port; |
| 71 | unsigned char cb; |
| 72 | unsigned char pad; |
| 73 | unsigned long handle; |
| 74 | }; |
| 75 | |
| 76 | static unsigned long aun_seq; |
| 77 | |
| 78 | /* Queue of packets waiting to be transmitted. */ |
| 79 | static struct sk_buff_head aun_queue; |
| 80 | static struct timer_list ab_cleanup_timer; |
| 81 | |
| 82 | #endif /* CONFIG_ECONET_AUNUDP */ |
| 83 | |
| 84 | /* Per-packet information */ |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 85 | struct ec_cb { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | struct sockaddr_ec sec; |
| 87 | unsigned long cookie; /* Supplied by user. */ |
| 88 | #ifdef CONFIG_ECONET_AUNUDP |
| 89 | int done; |
| 90 | unsigned long seq; /* Sequencing */ |
| 91 | unsigned long timeout; /* Timeout */ |
| 92 | unsigned long start; /* jiffies */ |
| 93 | #endif |
| 94 | #ifdef CONFIG_ECONET_NATIVE |
| 95 | void (*sent)(struct sk_buff *, int result); |
| 96 | #endif |
| 97 | }; |
| 98 | |
| 99 | static void econet_remove_socket(struct hlist_head *list, struct sock *sk) |
| 100 | { |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 101 | spin_lock_bh(&econet_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | sk_del_node_init(sk); |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 103 | spin_unlock_bh(&econet_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | static void econet_insert_socket(struct hlist_head *list, struct sock *sk) |
| 107 | { |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 108 | spin_lock_bh(&econet_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | sk_add_node(sk, list); |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 110 | spin_unlock_bh(&econet_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | /* |
| 114 | * Pull a packet from our receive queue and hand it to the user. |
| 115 | * If necessary we block. |
| 116 | */ |
| 117 | |
| 118 | static int econet_recvmsg(struct kiocb *iocb, struct socket *sock, |
| 119 | struct msghdr *msg, size_t len, int flags) |
| 120 | { |
| 121 | struct sock *sk = sock->sk; |
| 122 | struct sk_buff *skb; |
| 123 | size_t copied; |
| 124 | int err; |
| 125 | |
| 126 | msg->msg_namelen = sizeof(struct sockaddr_ec); |
| 127 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 128 | mutex_lock(&econet_mutex); |
| 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | /* |
| 131 | * Call the generic datagram receiver. This handles all sorts |
| 132 | * of horrible races and re-entrancy so we can forget about it |
| 133 | * in the protocol layers. |
| 134 | * |
| 135 | * Now it will return ENETDOWN, if device have just gone down, |
| 136 | * but then it will block. |
| 137 | */ |
| 138 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 139 | skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
| 141 | /* |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 142 | * An error occurred so return it. Because skb_recv_datagram() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | * handles the blocking we don't see and worry about blocking |
| 144 | * retries. |
| 145 | */ |
| 146 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 147 | if (skb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | goto out; |
| 149 | |
| 150 | /* |
| 151 | * You lose any data beyond the buffer you gave. If it worries a |
| 152 | * user program they can ask the device for its MTU anyway. |
| 153 | */ |
| 154 | |
| 155 | copied = skb->len; |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 156 | if (copied > len) { |
| 157 | copied = len; |
| 158 | msg->msg_flags |= MSG_TRUNC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | /* We can't use skb_copy_datagram here */ |
| 162 | err = memcpy_toiovec(msg->msg_iov, skb->data, copied); |
| 163 | if (err) |
| 164 | goto out_free; |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 165 | sk->sk_stamp = skb->tstamp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
| 167 | if (msg->msg_name) |
| 168 | memcpy(msg->msg_name, skb->cb, msg->msg_namelen); |
| 169 | |
| 170 | /* |
| 171 | * Free or return the buffer as appropriate. Again this |
| 172 | * hides all the races and re-entrancy issues from us. |
| 173 | */ |
| 174 | err = copied; |
| 175 | |
| 176 | out_free: |
| 177 | skb_free_datagram(sk, skb); |
| 178 | out: |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 179 | mutex_unlock(&econet_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | return err; |
| 181 | } |
| 182 | |
| 183 | /* |
| 184 | * Bind an Econet socket. |
| 185 | */ |
| 186 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 187 | static int econet_bind(struct socket *sock, struct sockaddr *uaddr, |
| 188 | int addr_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
| 190 | struct sockaddr_ec *sec = (struct sockaddr_ec *)uaddr; |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 191 | struct sock *sk; |
| 192 | struct econet_sock *eo; |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | /* |
| 195 | * Check legality |
| 196 | */ |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | if (addr_len < sizeof(struct sockaddr_ec) || |
| 199 | sec->sec_family != AF_ECONET) |
| 200 | return -EINVAL; |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 201 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 202 | mutex_lock(&econet_mutex); |
| 203 | |
| 204 | sk = sock->sk; |
| 205 | eo = ec_sk(sk); |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | eo->cb = sec->cb; |
| 208 | eo->port = sec->port; |
| 209 | eo->station = sec->addr.station; |
| 210 | eo->net = sec->addr.net; |
| 211 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 212 | mutex_unlock(&econet_mutex); |
| 213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return 0; |
| 215 | } |
| 216 | |
| 217 | #if defined(CONFIG_ECONET_AUNUDP) || defined(CONFIG_ECONET_NATIVE) |
| 218 | /* |
| 219 | * Queue a transmit result for the user to be told about. |
| 220 | */ |
| 221 | |
| 222 | static void tx_result(struct sock *sk, unsigned long cookie, int result) |
| 223 | { |
| 224 | struct sk_buff *skb = alloc_skb(0, GFP_ATOMIC); |
| 225 | struct ec_cb *eb; |
| 226 | struct sockaddr_ec *sec; |
| 227 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 228 | if (skb == NULL) { |
| 229 | pr_debug("econet: memory squeeze, transmit result dropped\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | return; |
| 231 | } |
| 232 | |
| 233 | eb = (struct ec_cb *)&skb->cb; |
| 234 | sec = (struct sockaddr_ec *)&eb->sec; |
| 235 | memset(sec, 0, sizeof(struct sockaddr_ec)); |
| 236 | sec->cookie = cookie; |
| 237 | sec->type = ECTYPE_TRANSMIT_STATUS | result; |
| 238 | sec->sec_family = AF_ECONET; |
| 239 | |
| 240 | if (sock_queue_rcv_skb(sk, skb) < 0) |
| 241 | kfree_skb(skb); |
| 242 | } |
| 243 | #endif |
| 244 | |
| 245 | #ifdef CONFIG_ECONET_NATIVE |
| 246 | /* |
| 247 | * Called by the Econet hardware driver when a packet transmit |
| 248 | * has completed. Tell the user. |
| 249 | */ |
| 250 | |
| 251 | static void ec_tx_done(struct sk_buff *skb, int result) |
| 252 | { |
| 253 | struct ec_cb *eb = (struct ec_cb *)&skb->cb; |
| 254 | tx_result(skb->sk, eb->cookie, result); |
| 255 | } |
| 256 | #endif |
| 257 | |
| 258 | /* |
| 259 | * Send a packet. We have to work out which device it's going out on |
| 260 | * and hence whether to use real Econet or the UDP emulation. |
| 261 | */ |
| 262 | |
| 263 | static int econet_sendmsg(struct kiocb *iocb, struct socket *sock, |
| 264 | struct msghdr *msg, size_t len) |
| 265 | { |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 266 | struct sockaddr_ec *saddr = (struct sockaddr_ec *)msg->msg_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | struct net_device *dev; |
| 268 | struct ec_addr addr; |
| 269 | int err; |
| 270 | unsigned char port, cb; |
| 271 | #if defined(CONFIG_ECONET_AUNUDP) || defined(CONFIG_ECONET_NATIVE) |
Eric Dumazet | 389f2a1 | 2011-01-26 00:04:18 +0000 | [diff] [blame] | 272 | struct sock *sk = sock->sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | struct sk_buff *skb; |
| 274 | struct ec_cb *eb; |
| 275 | #endif |
| 276 | #ifdef CONFIG_ECONET_AUNUDP |
| 277 | struct msghdr udpmsg; |
Phil Blundell | a27e13d | 2010-11-24 11:51:47 -0800 | [diff] [blame] | 278 | struct iovec iov[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | struct aunhdr ah; |
| 280 | struct sockaddr_in udpdest; |
| 281 | __kernel_size_t size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | mm_segment_t oldfs; |
Phil Blundell | a27e13d | 2010-11-24 11:51:47 -0800 | [diff] [blame] | 283 | char *userbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | #endif |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | /* |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 287 | * Check the flags. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | */ |
| 289 | |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 290 | if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | return -EINVAL; |
| 292 | |
| 293 | /* |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 294 | * Get and verify the address. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | */ |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 296 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 297 | mutex_lock(&econet_mutex); |
| 298 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 299 | if (saddr == NULL || msg->msg_namelen < sizeof(struct sockaddr_ec)) { |
| 300 | mutex_unlock(&econet_mutex); |
| 301 | return -EINVAL; |
| 302 | } |
| 303 | addr.station = saddr->addr.station; |
| 304 | addr.net = saddr->addr.net; |
| 305 | port = saddr->port; |
| 306 | cb = saddr->cb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
| 308 | /* Look for a device with the right network number. */ |
| 309 | dev = net2dev_map[addr.net]; |
| 310 | |
| 311 | /* If not directly reachable, use some default */ |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 312 | if (dev == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | dev = net2dev_map[0]; |
| 314 | /* No interfaces at all? */ |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 315 | if (dev == NULL) { |
| 316 | mutex_unlock(&econet_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | return -ENETDOWN; |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 318 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
| 320 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 321 | if (dev->type == ARPHRD_ECONET) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | /* Real hardware Econet. We're not worthy etc. */ |
| 323 | #ifdef CONFIG_ECONET_NATIVE |
| 324 | unsigned short proto = 0; |
Stephen Hemminger | 0c4e858 | 2007-10-09 01:36:32 -0700 | [diff] [blame] | 325 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
Phil Blundell | a27e13d | 2010-11-24 11:51:47 -0800 | [diff] [blame] | 327 | if (len + 15 > dev->mtu) { |
| 328 | mutex_unlock(&econet_mutex); |
| 329 | return -EMSGSIZE; |
| 330 | } |
| 331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | dev_hold(dev); |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 333 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 334 | skb = sock_alloc_send_skb(sk, len + LL_ALLOCATED_SPACE(dev), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | msg->msg_flags & MSG_DONTWAIT, &err); |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 336 | if (skb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | goto out_unlock; |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | skb_reserve(skb, LL_RESERVED_SPACE(dev)); |
Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 340 | skb_reset_network_header(skb); |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | eb = (struct ec_cb *)&skb->cb; |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 343 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | eb->cookie = saddr->cookie; |
| 345 | eb->sec = *saddr; |
| 346 | eb->sent = ec_tx_done; |
| 347 | |
Stephen Hemminger | 0c4e858 | 2007-10-09 01:36:32 -0700 | [diff] [blame] | 348 | err = -EINVAL; |
| 349 | res = dev_hard_header(skb, dev, ntohs(proto), &addr, NULL, len); |
| 350 | if (res < 0) |
| 351 | goto out_free; |
| 352 | if (res > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | struct ec_framehdr *fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | /* Poke in our control byte and |
| 355 | port number. Hack, hack. */ |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 356 | fh = (struct ec_framehdr *)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | fh->cb = cb; |
| 358 | fh->port = port; |
| 359 | if (sock->type != SOCK_DGRAM) { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 360 | skb_reset_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | skb->len = 0; |
Stephen Hemminger | 0c4e858 | 2007-10-09 01:36:32 -0700 | [diff] [blame] | 362 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | } |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | /* Copy the data. Returns -EFAULT on error */ |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 366 | err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | skb->protocol = proto; |
| 368 | skb->dev = dev; |
| 369 | skb->priority = sk->sk_priority; |
| 370 | if (err) |
| 371 | goto out_free; |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | err = -ENETDOWN; |
| 374 | if (!(dev->flags & IFF_UP)) |
| 375 | goto out_free; |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 376 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | /* |
| 378 | * Now send it |
| 379 | */ |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | dev_queue_xmit(skb); |
| 382 | dev_put(dev); |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 383 | mutex_unlock(&econet_mutex); |
Eric Dumazet | a02cec2 | 2010-09-22 20:43:57 +0000 | [diff] [blame] | 384 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 386 | out_free: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | kfree_skb(skb); |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 388 | out_unlock: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | if (dev) |
| 390 | dev_put(dev); |
| 391 | #else |
| 392 | err = -EPROTOTYPE; |
| 393 | #endif |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 394 | mutex_unlock(&econet_mutex); |
| 395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | return err; |
| 397 | } |
| 398 | |
| 399 | #ifdef CONFIG_ECONET_AUNUDP |
| 400 | /* AUN virtual Econet. */ |
| 401 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 402 | if (udpsock == NULL) { |
| 403 | mutex_unlock(&econet_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | return -ENETDOWN; /* No socket - can't send */ |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 405 | } |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 406 | |
Phil Blundell | a27e13d | 2010-11-24 11:51:47 -0800 | [diff] [blame] | 407 | if (len > 32768) { |
| 408 | err = -E2BIG; |
| 409 | goto error; |
| 410 | } |
| 411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | /* Make up a UDP datagram and hand it off to some higher intellect. */ |
| 413 | |
| 414 | memset(&udpdest, 0, sizeof(udpdest)); |
| 415 | udpdest.sin_family = AF_INET; |
| 416 | udpdest.sin_port = htons(AUN_PORT); |
| 417 | |
| 418 | /* At the moment we use the stupid Acorn scheme of Econet address |
| 419 | y.x maps to IP a.b.c.x. This should be replaced with something |
| 420 | more flexible and more aware of subnet masks. */ |
| 421 | { |
| 422 | struct in_device *idev; |
| 423 | unsigned long network = 0; |
| 424 | |
| 425 | rcu_read_lock(); |
Herbert Xu | e5ed639 | 2005-10-03 14:35:55 -0700 | [diff] [blame] | 426 | idev = __in_dev_get_rcu(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | if (idev) { |
| 428 | if (idev->ifa_list) |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 429 | network = ntohl(idev->ifa_list->ifa_address) & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | 0xffffff00; /* !!! */ |
| 431 | } |
| 432 | rcu_read_unlock(); |
| 433 | udpdest.sin_addr.s_addr = htonl(network | addr.station); |
| 434 | } |
| 435 | |
Vasiliy Kulikov | 67c5c6c | 2011-03-17 01:40:10 +0000 | [diff] [blame] | 436 | memset(&ah, 0, sizeof(ah)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | ah.port = port; |
| 438 | ah.cb = cb & 0x7f; |
| 439 | ah.code = 2; /* magic */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | /* tack our header on the front of the iovec */ |
| 442 | size = sizeof(struct aunhdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | iov[0].iov_base = (void *)&ah; |
| 444 | iov[0].iov_len = size; |
Phil Blundell | a27e13d | 2010-11-24 11:51:47 -0800 | [diff] [blame] | 445 | |
| 446 | userbuf = vmalloc(len); |
| 447 | if (userbuf == NULL) { |
| 448 | err = -ENOMEM; |
| 449 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | } |
| 451 | |
Phil Blundell | a27e13d | 2010-11-24 11:51:47 -0800 | [diff] [blame] | 452 | iov[1].iov_base = userbuf; |
| 453 | iov[1].iov_len = len; |
| 454 | err = memcpy_fromiovec(userbuf, msg->msg_iov, len); |
| 455 | if (err) |
| 456 | goto error_free_buf; |
| 457 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | /* Get a skbuff (no data, just holds our cb information) */ |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 459 | skb = sock_alloc_send_skb(sk, 0, msg->msg_flags & MSG_DONTWAIT, &err); |
| 460 | if (skb == NULL) |
Phil Blundell | a27e13d | 2010-11-24 11:51:47 -0800 | [diff] [blame] | 461 | goto error_free_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
| 463 | eb = (struct ec_cb *)&skb->cb; |
| 464 | |
| 465 | eb->cookie = saddr->cookie; |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 466 | eb->timeout = 5 * HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | eb->start = jiffies; |
| 468 | ah.handle = aun_seq; |
| 469 | eb->seq = (aun_seq++); |
| 470 | eb->sec = *saddr; |
| 471 | |
| 472 | skb_queue_tail(&aun_queue, skb); |
| 473 | |
| 474 | udpmsg.msg_name = (void *)&udpdest; |
| 475 | udpmsg.msg_namelen = sizeof(udpdest); |
| 476 | udpmsg.msg_iov = &iov[0]; |
Phil Blundell | a27e13d | 2010-11-24 11:51:47 -0800 | [diff] [blame] | 477 | udpmsg.msg_iovlen = 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | udpmsg.msg_control = NULL; |
| 479 | udpmsg.msg_controllen = 0; |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 480 | udpmsg.msg_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 482 | oldfs = get_fs(); |
| 483 | set_fs(KERNEL_DS); /* More privs :-) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | err = sock_sendmsg(udpsock, &udpmsg, size); |
| 485 | set_fs(oldfs); |
Phil Blundell | a27e13d | 2010-11-24 11:51:47 -0800 | [diff] [blame] | 486 | |
| 487 | error_free_buf: |
| 488 | vfree(userbuf); |
Eric Dumazet | 389f2a1 | 2011-01-26 00:04:18 +0000 | [diff] [blame] | 489 | error: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | #else |
| 491 | err = -EPROTOTYPE; |
| 492 | #endif |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 493 | mutex_unlock(&econet_mutex); |
| 494 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | return err; |
| 496 | } |
| 497 | |
| 498 | /* |
| 499 | * Look up the address of a socket. |
| 500 | */ |
| 501 | |
| 502 | static int econet_getname(struct socket *sock, struct sockaddr *uaddr, |
| 503 | int *uaddr_len, int peer) |
| 504 | { |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 505 | struct sock *sk; |
| 506 | struct econet_sock *eo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | struct sockaddr_ec *sec = (struct sockaddr_ec *)uaddr; |
| 508 | |
| 509 | if (peer) |
| 510 | return -EOPNOTSUPP; |
| 511 | |
Eric Dumazet | 80922bb | 2009-08-06 03:48:36 +0000 | [diff] [blame] | 512 | memset(sec, 0, sizeof(*sec)); |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 513 | mutex_lock(&econet_mutex); |
| 514 | |
| 515 | sk = sock->sk; |
| 516 | eo = ec_sk(sk); |
| 517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | sec->sec_family = AF_ECONET; |
| 519 | sec->port = eo->port; |
| 520 | sec->addr.station = eo->station; |
| 521 | sec->addr.net = eo->net; |
| 522 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 523 | mutex_unlock(&econet_mutex); |
| 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | *uaddr_len = sizeof(*sec); |
| 526 | return 0; |
| 527 | } |
| 528 | |
| 529 | static void econet_destroy_timer(unsigned long data) |
| 530 | { |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 531 | struct sock *sk = (struct sock *)data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | |
Eric Dumazet | c564039 | 2009-06-16 10:12:03 +0000 | [diff] [blame] | 533 | if (!sk_has_allocations(sk)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | sk_free(sk); |
| 535 | return; |
| 536 | } |
| 537 | |
| 538 | sk->sk_timer.expires = jiffies + 10 * HZ; |
| 539 | add_timer(&sk->sk_timer); |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 540 | pr_debug("econet: socket destroy delayed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | /* |
| 544 | * Close an econet socket. |
| 545 | */ |
| 546 | |
| 547 | static int econet_release(struct socket *sock) |
| 548 | { |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 549 | struct sock *sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 551 | mutex_lock(&econet_mutex); |
| 552 | |
| 553 | sk = sock->sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | if (!sk) |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 555 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
| 557 | econet_remove_socket(&econet_sklist, sk); |
| 558 | |
| 559 | /* |
| 560 | * Now the socket is dead. No more input will appear. |
| 561 | */ |
| 562 | |
| 563 | sk->sk_state_change(sk); /* It is useless. Just for sanity. */ |
| 564 | |
David S. Miller | 0efffaf | 2008-06-17 03:01:47 -0700 | [diff] [blame] | 565 | sock_orphan(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
| 567 | /* Purge queues */ |
| 568 | |
| 569 | skb_queue_purge(&sk->sk_receive_queue); |
| 570 | |
Eric Dumazet | c564039 | 2009-06-16 10:12:03 +0000 | [diff] [blame] | 571 | if (sk_has_allocations(sk)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | sk->sk_timer.data = (unsigned long)sk; |
| 573 | sk->sk_timer.expires = jiffies + HZ; |
| 574 | sk->sk_timer.function = econet_destroy_timer; |
| 575 | add_timer(&sk->sk_timer); |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 576 | |
| 577 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | sk_free(sk); |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 581 | |
| 582 | out_unlock: |
| 583 | mutex_unlock(&econet_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | return 0; |
| 585 | } |
| 586 | |
| 587 | static struct proto econet_proto = { |
| 588 | .name = "ECONET", |
| 589 | .owner = THIS_MODULE, |
| 590 | .obj_size = sizeof(struct econet_sock), |
| 591 | }; |
| 592 | |
| 593 | /* |
| 594 | * Create an Econet socket |
| 595 | */ |
| 596 | |
Eric Paris | 3f378b6 | 2009-11-05 22:18:14 -0800 | [diff] [blame] | 597 | static int econet_create(struct net *net, struct socket *sock, int protocol, |
| 598 | int kern) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | { |
| 600 | struct sock *sk; |
| 601 | struct econet_sock *eo; |
| 602 | int err; |
| 603 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 604 | if (!net_eq(net, &init_net)) |
Eric W. Biederman | 1b8d7ae | 2007-10-08 23:24:22 -0700 | [diff] [blame] | 605 | return -EAFNOSUPPORT; |
| 606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | /* Econet only provides datagram services. */ |
| 608 | if (sock->type != SOCK_DGRAM) |
| 609 | return -ESOCKTNOSUPPORT; |
| 610 | |
| 611 | sock->state = SS_UNCONNECTED; |
| 612 | |
| 613 | err = -ENOBUFS; |
Pavel Emelyanov | 6257ff2 | 2007-11-01 00:39:31 -0700 | [diff] [blame] | 614 | sk = sk_alloc(net, PF_ECONET, GFP_KERNEL, &econet_proto); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | if (sk == NULL) |
| 616 | goto out; |
| 617 | |
| 618 | sk->sk_reuse = 1; |
| 619 | sock->ops = &econet_ops; |
| 620 | sock_init_data(sock, sk); |
| 621 | |
| 622 | eo = ec_sk(sk); |
| 623 | sock_reset_flag(sk, SOCK_ZAPPED); |
| 624 | sk->sk_family = PF_ECONET; |
| 625 | eo->num = protocol; |
| 626 | |
| 627 | econet_insert_socket(&econet_sklist, sk); |
Eric Dumazet | a02cec2 | 2010-09-22 20:43:57 +0000 | [diff] [blame] | 628 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | out: |
| 630 | return err; |
| 631 | } |
| 632 | |
| 633 | /* |
| 634 | * Handle Econet specific ioctls |
| 635 | */ |
| 636 | |
| 637 | static int ec_dev_ioctl(struct socket *sock, unsigned int cmd, void __user *arg) |
| 638 | { |
| 639 | struct ifreq ifr; |
| 640 | struct ec_device *edev; |
| 641 | struct net_device *dev; |
| 642 | struct sockaddr_ec *sec; |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 643 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | |
| 645 | /* |
| 646 | * Fetch the caller's info block into kernel space |
| 647 | */ |
| 648 | |
| 649 | if (copy_from_user(&ifr, arg, sizeof(struct ifreq))) |
| 650 | return -EFAULT; |
| 651 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 652 | dev = dev_get_by_name(&init_net, ifr.ifr_name); |
| 653 | if (dev == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | return -ENODEV; |
| 655 | |
| 656 | sec = (struct sockaddr_ec *)&ifr.ifr_addr; |
| 657 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 658 | mutex_lock(&econet_mutex); |
| 659 | |
| 660 | err = 0; |
| 661 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | case SIOCSIFADDR: |
Nelson Elhage | 0c62fc6 | 2010-12-08 10:13:55 -0800 | [diff] [blame] | 663 | if (!capable(CAP_NET_ADMIN)) { |
| 664 | err = -EPERM; |
| 665 | break; |
| 666 | } |
Phil Blundell | 16c4174 | 2010-11-24 11:49:53 -0800 | [diff] [blame] | 667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | edev = dev->ec_ptr; |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 669 | if (edev == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | /* Magic up a new one. */ |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 671 | edev = kzalloc(sizeof(struct ec_device), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | if (edev == NULL) { |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 673 | err = -ENOMEM; |
| 674 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | dev->ec_ptr = edev; |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 677 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | net2dev_map[edev->net] = NULL; |
| 679 | edev->station = sec->addr.station; |
| 680 | edev->net = sec->addr.net; |
| 681 | net2dev_map[sec->addr.net] = dev; |
| 682 | if (!net2dev_map[0]) |
| 683 | net2dev_map[0] = dev; |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 684 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
| 686 | case SIOCGIFADDR: |
| 687 | edev = dev->ec_ptr; |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 688 | if (edev == NULL) { |
| 689 | err = -ENODEV; |
| 690 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | } |
| 692 | memset(sec, 0, sizeof(struct sockaddr_ec)); |
| 693 | sec->addr.station = edev->station; |
| 694 | sec->addr.net = edev->net; |
| 695 | sec->sec_family = AF_ECONET; |
| 696 | dev_put(dev); |
| 697 | if (copy_to_user(arg, &ifr, sizeof(struct ifreq))) |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 698 | err = -EFAULT; |
| 699 | break; |
| 700 | |
| 701 | default: |
| 702 | err = -EINVAL; |
| 703 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | } |
| 705 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 706 | mutex_unlock(&econet_mutex); |
| 707 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | dev_put(dev); |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 709 | |
| 710 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | } |
| 712 | |
| 713 | /* |
| 714 | * Handle generic ioctls |
| 715 | */ |
| 716 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 717 | static int econet_ioctl(struct socket *sock, unsigned int cmd, |
| 718 | unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | { |
| 720 | struct sock *sk = sock->sk; |
| 721 | void __user *argp = (void __user *)arg; |
| 722 | |
Joe Perches | 075e191 | 2011-07-01 09:43:04 +0000 | [diff] [blame] | 723 | switch (cmd) { |
| 724 | case SIOCGSTAMP: |
| 725 | return sock_get_timestamp(sk, argp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | |
Joe Perches | 075e191 | 2011-07-01 09:43:04 +0000 | [diff] [blame] | 727 | case SIOCGSTAMPNS: |
| 728 | return sock_get_timestampns(sk, argp); |
Eric Dumazet | ae40eb1 | 2007-03-18 17:33:16 -0700 | [diff] [blame] | 729 | |
Joe Perches | 075e191 | 2011-07-01 09:43:04 +0000 | [diff] [blame] | 730 | case SIOCSIFADDR: |
| 731 | case SIOCGIFADDR: |
| 732 | return ec_dev_ioctl(sock, cmd, argp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | } |
Joe Perches | 075e191 | 2011-07-01 09:43:04 +0000 | [diff] [blame] | 735 | |
| 736 | return -ENOIOCTLCMD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | } |
| 738 | |
Stephen Hemminger | ec1b4cf | 2009-10-05 05:58:39 +0000 | [diff] [blame] | 739 | static const struct net_proto_family econet_family_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | .family = PF_ECONET, |
| 741 | .create = econet_create, |
| 742 | .owner = THIS_MODULE, |
| 743 | }; |
| 744 | |
David S. Miller | 1d18183 | 2006-03-28 00:01:55 -0800 | [diff] [blame] | 745 | static const struct proto_ops econet_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | .family = PF_ECONET, |
| 747 | .owner = THIS_MODULE, |
| 748 | .release = econet_release, |
| 749 | .bind = econet_bind, |
| 750 | .connect = sock_no_connect, |
| 751 | .socketpair = sock_no_socketpair, |
| 752 | .accept = sock_no_accept, |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 753 | .getname = econet_getname, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | .poll = datagram_poll, |
| 755 | .ioctl = econet_ioctl, |
| 756 | .listen = sock_no_listen, |
| 757 | .shutdown = sock_no_shutdown, |
| 758 | .setsockopt = sock_no_setsockopt, |
| 759 | .getsockopt = sock_no_getsockopt, |
| 760 | .sendmsg = econet_sendmsg, |
| 761 | .recvmsg = econet_recvmsg, |
| 762 | .mmap = sock_no_mmap, |
| 763 | .sendpage = sock_no_sendpage, |
| 764 | }; |
| 765 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | #if defined(CONFIG_ECONET_AUNUDP) || defined(CONFIG_ECONET_NATIVE) |
| 767 | /* |
| 768 | * Find the listening socket, if any, for the given data. |
| 769 | */ |
| 770 | |
| 771 | static struct sock *ec_listening_socket(unsigned char port, unsigned char |
| 772 | station, unsigned char net) |
| 773 | { |
| 774 | struct sock *sk; |
| 775 | struct hlist_node *node; |
| 776 | |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 777 | spin_lock(&econet_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | sk_for_each(sk, node, &econet_sklist) { |
| 779 | struct econet_sock *opt = ec_sk(sk); |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 780 | if ((opt->port == port || opt->port == 0) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | (opt->station == station || opt->station == 0) && |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 782 | (opt->net == net || opt->net == 0)) { |
| 783 | sock_hold(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | goto found; |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 785 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |
| 787 | sk = NULL; |
| 788 | found: |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 789 | spin_unlock(&econet_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | return sk; |
| 791 | } |
| 792 | |
| 793 | /* |
| 794 | * Queue a received packet for a socket. |
| 795 | */ |
| 796 | |
| 797 | static int ec_queue_packet(struct sock *sk, struct sk_buff *skb, |
| 798 | unsigned char stn, unsigned char net, |
| 799 | unsigned char cb, unsigned char port) |
| 800 | { |
| 801 | struct ec_cb *eb = (struct ec_cb *)&skb->cb; |
| 802 | struct sockaddr_ec *sec = (struct sockaddr_ec *)&eb->sec; |
| 803 | |
| 804 | memset(sec, 0, sizeof(struct sockaddr_ec)); |
| 805 | sec->sec_family = AF_ECONET; |
| 806 | sec->type = ECTYPE_PACKET_RECEIVED; |
| 807 | sec->port = port; |
| 808 | sec->cb = cb; |
| 809 | sec->addr.net = net; |
| 810 | sec->addr.station = stn; |
| 811 | |
| 812 | return sock_queue_rcv_skb(sk, skb); |
| 813 | } |
| 814 | #endif |
| 815 | |
| 816 | #ifdef CONFIG_ECONET_AUNUDP |
| 817 | /* |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 818 | * Send an AUN protocol response. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | */ |
| 820 | |
| 821 | static void aun_send_response(__u32 addr, unsigned long seq, int code, int cb) |
| 822 | { |
| 823 | struct sockaddr_in sin = { |
| 824 | .sin_family = AF_INET, |
| 825 | .sin_port = htons(AUN_PORT), |
| 826 | .sin_addr = {.s_addr = addr} |
| 827 | }; |
| 828 | struct aunhdr ah = {.code = code, .cb = cb, .handle = seq}; |
| 829 | struct kvec iov = {.iov_base = (void *)&ah, .iov_len = sizeof(ah)}; |
| 830 | struct msghdr udpmsg; |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | udpmsg.msg_name = (void *)&sin; |
| 833 | udpmsg.msg_namelen = sizeof(sin); |
| 834 | udpmsg.msg_control = NULL; |
| 835 | udpmsg.msg_controllen = 0; |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 836 | udpmsg.msg_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | |
| 838 | kernel_sendmsg(udpsock, &udpmsg, &iov, 1, sizeof(ah)); |
| 839 | } |
| 840 | |
| 841 | |
| 842 | /* |
| 843 | * Handle incoming AUN packets. Work out if anybody wants them, |
| 844 | * and send positive or negative acknowledgements as appropriate. |
| 845 | */ |
| 846 | |
| 847 | static void aun_incoming(struct sk_buff *skb, struct aunhdr *ah, size_t len) |
| 848 | { |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 849 | struct iphdr *ip = ip_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | unsigned char stn = ntohl(ip->saddr) & 0xff; |
David S. Miller | 4e085e7 | 2010-12-08 18:42:23 -0800 | [diff] [blame] | 851 | struct dst_entry *dst = skb_dst(skb); |
| 852 | struct ec_device *edev = NULL; |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 853 | struct sock *sk = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | struct sk_buff *newskb; |
David S. Miller | 4e085e7 | 2010-12-08 18:42:23 -0800 | [diff] [blame] | 855 | |
| 856 | if (dst) |
| 857 | edev = dst->dev->ec_ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 859 | if (!edev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | goto bad; |
| 861 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 862 | sk = ec_listening_socket(ah->port, stn, edev->net); |
| 863 | if (sk == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | goto bad; /* Nobody wants it */ |
| 865 | |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 866 | newskb = alloc_skb((len - sizeof(struct aunhdr) + 15) & ~15, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | GFP_ATOMIC); |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 868 | if (newskb == NULL) { |
| 869 | pr_debug("AUN: memory squeeze, dropping packet\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | /* Send nack and hope sender tries again */ |
| 871 | goto bad; |
| 872 | } |
| 873 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 874 | memcpy(skb_put(newskb, len - sizeof(struct aunhdr)), (void *)(ah + 1), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | len - sizeof(struct aunhdr)); |
| 876 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 877 | if (ec_queue_packet(sk, newskb, stn, edev->net, ah->cb, ah->port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | /* Socket is bankrupt. */ |
| 879 | kfree_skb(newskb); |
| 880 | goto bad; |
| 881 | } |
| 882 | |
| 883 | aun_send_response(ip->saddr, ah->handle, 3, 0); |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 884 | sock_put(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | return; |
| 886 | |
| 887 | bad: |
| 888 | aun_send_response(ip->saddr, ah->handle, 4, 0); |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 889 | if (sk) |
| 890 | sock_put(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | } |
| 892 | |
| 893 | /* |
| 894 | * Handle incoming AUN transmit acknowledgements. If the sequence |
| 895 | * number matches something in our backlog then kill it and tell |
| 896 | * the user. If the remote took too long to reply then we may have |
| 897 | * dropped the packet already. |
| 898 | */ |
| 899 | |
| 900 | static void aun_tx_ack(unsigned long seq, int result) |
| 901 | { |
| 902 | struct sk_buff *skb; |
| 903 | unsigned long flags; |
| 904 | struct ec_cb *eb; |
| 905 | |
| 906 | spin_lock_irqsave(&aun_queue_lock, flags); |
David S. Miller | de10334 | 2009-05-28 16:46:29 -0700 | [diff] [blame] | 907 | skb_queue_walk(&aun_queue, skb) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | eb = (struct ec_cb *)&skb->cb; |
| 909 | if (eb->seq == seq) |
| 910 | goto foundit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | } |
| 912 | spin_unlock_irqrestore(&aun_queue_lock, flags); |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 913 | pr_debug("AUN: unknown sequence %ld\n", seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | return; |
| 915 | |
| 916 | foundit: |
| 917 | tx_result(skb->sk, eb->cookie, result); |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 918 | skb_unlink(skb, &aun_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | spin_unlock_irqrestore(&aun_queue_lock, flags); |
| 920 | kfree_skb(skb); |
| 921 | } |
| 922 | |
| 923 | /* |
| 924 | * Deal with received AUN frames - sort out what type of thing it is |
| 925 | * and hand it to the right function. |
| 926 | */ |
| 927 | |
| 928 | static void aun_data_available(struct sock *sk, int slen) |
| 929 | { |
| 930 | int err; |
| 931 | struct sk_buff *skb; |
| 932 | unsigned char *data; |
| 933 | struct aunhdr *ah; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | size_t len; |
| 935 | |
| 936 | while ((skb = skb_recv_datagram(sk, 0, 1, &err)) == NULL) { |
| 937 | if (err == -EAGAIN) { |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 938 | pr_err("AUN: no data available?!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | return; |
| 940 | } |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 941 | pr_debug("AUN: recvfrom() error %d\n", -err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | } |
| 943 | |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 944 | data = skb_transport_header(skb) + sizeof(struct udphdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | ah = (struct aunhdr *)data; |
| 946 | len = skb->len - sizeof(struct udphdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 948 | switch (ah->code) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | case 2: |
| 950 | aun_incoming(skb, ah, len); |
| 951 | break; |
| 952 | case 3: |
| 953 | aun_tx_ack(ah->handle, ECTYPE_TRANSMIT_OK); |
| 954 | break; |
| 955 | case 4: |
| 956 | aun_tx_ack(ah->handle, ECTYPE_TRANSMIT_NOT_LISTENING); |
| 957 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | default: |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 959 | pr_debug("AUN: unknown packet type: %d\n", data[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | skb_free_datagram(sk, skb); |
| 963 | } |
| 964 | |
| 965 | /* |
| 966 | * Called by the timer to manage the AUN transmit queue. If a packet |
| 967 | * was sent to a dead or nonexistent host then we will never get an |
| 968 | * acknowledgement back. After a few seconds we need to spot this and |
| 969 | * drop the packet. |
| 970 | */ |
| 971 | |
| 972 | static void ab_cleanup(unsigned long h) |
| 973 | { |
David S. Miller | de10334 | 2009-05-28 16:46:29 -0700 | [diff] [blame] | 974 | struct sk_buff *skb, *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | unsigned long flags; |
| 976 | |
| 977 | spin_lock_irqsave(&aun_queue_lock, flags); |
David S. Miller | de10334 | 2009-05-28 16:46:29 -0700 | [diff] [blame] | 978 | skb_queue_walk_safe(&aun_queue, skb, n) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | struct ec_cb *eb = (struct ec_cb *)&skb->cb; |
David S. Miller | de10334 | 2009-05-28 16:46:29 -0700 | [diff] [blame] | 980 | if ((jiffies - eb->start) > eb->timeout) { |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 981 | tx_result(skb->sk, eb->cookie, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | ECTYPE_TRANSMIT_NOT_PRESENT); |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 983 | skb_unlink(skb, &aun_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | kfree_skb(skb); |
| 985 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | } |
| 987 | spin_unlock_irqrestore(&aun_queue_lock, flags); |
| 988 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 989 | mod_timer(&ab_cleanup_timer, jiffies + (HZ * 2)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | static int __init aun_udp_initialise(void) |
| 993 | { |
| 994 | int error; |
| 995 | struct sockaddr_in sin; |
| 996 | |
| 997 | skb_queue_head_init(&aun_queue); |
Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 998 | setup_timer(&ab_cleanup_timer, ab_cleanup, 0); |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 999 | ab_cleanup_timer.expires = jiffies + (HZ * 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | add_timer(&ab_cleanup_timer); |
| 1001 | |
| 1002 | memset(&sin, 0, sizeof(sin)); |
| 1003 | sin.sin_port = htons(AUN_PORT); |
| 1004 | |
| 1005 | /* We can count ourselves lucky Acorn machines are too dim to |
| 1006 | speak IPv6. :-) */ |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 1007 | error = sock_create_kern(PF_INET, SOCK_DGRAM, 0, &udpsock); |
| 1008 | if (error < 0) { |
| 1009 | pr_err("AUN: socket error %d\n", -error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | return error; |
| 1011 | } |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 1012 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | udpsock->sk->sk_reuse = 1; |
| 1014 | udpsock->sk->sk_allocation = GFP_ATOMIC; /* we're going to call it |
| 1015 | from interrupts */ |
YOSHIFUJI Hideaki | c9b6aab | 2007-02-09 23:24:42 +0900 | [diff] [blame] | 1016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | error = udpsock->ops->bind(udpsock, (struct sockaddr *)&sin, |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 1018 | sizeof(sin)); |
| 1019 | if (error < 0) { |
| 1020 | pr_err("AUN: bind error %d\n", -error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | goto release; |
| 1022 | } |
| 1023 | |
| 1024 | udpsock->sk->sk_data_ready = aun_data_available; |
| 1025 | |
| 1026 | return 0; |
| 1027 | |
| 1028 | release: |
| 1029 | sock_release(udpsock); |
| 1030 | udpsock = NULL; |
| 1031 | return error; |
| 1032 | } |
| 1033 | #endif |
| 1034 | |
| 1035 | #ifdef CONFIG_ECONET_NATIVE |
| 1036 | |
| 1037 | /* |
| 1038 | * Receive an Econet frame from a device. |
| 1039 | */ |
| 1040 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 1041 | static int econet_rcv(struct sk_buff *skb, struct net_device *dev, |
| 1042 | struct packet_type *pt, struct net_device *orig_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | { |
| 1044 | struct ec_framehdr *hdr; |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 1045 | struct sock *sk = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | struct ec_device *edev = dev->ec_ptr; |
| 1047 | |
YOSHIFUJI Hideaki | 721499e | 2008-07-19 22:34:43 -0700 | [diff] [blame] | 1048 | if (!net_eq(dev_net(dev), &init_net)) |
Eric W. Biederman | e730c15 | 2007-09-17 11:53:39 -0700 | [diff] [blame] | 1049 | goto drop; |
| 1050 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | if (skb->pkt_type == PACKET_OTHERHOST) |
| 1052 | goto drop; |
| 1053 | |
| 1054 | if (!edev) |
| 1055 | goto drop; |
| 1056 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 1057 | skb = skb_share_check(skb, GFP_ATOMIC); |
| 1058 | if (skb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | return NET_RX_DROP; |
| 1060 | |
| 1061 | if (!pskb_may_pull(skb, sizeof(struct ec_framehdr))) |
| 1062 | goto drop; |
| 1063 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 1064 | hdr = (struct ec_framehdr *)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | |
| 1066 | /* First check for encapsulated IP */ |
| 1067 | if (hdr->port == EC_PORT_IP) { |
| 1068 | skb->protocol = htons(ETH_P_IP); |
| 1069 | skb_pull(skb, sizeof(struct ec_framehdr)); |
| 1070 | netif_rx(skb); |
Mark Smith | 482d804 | 2009-07-06 11:05:58 +0000 | [diff] [blame] | 1071 | return NET_RX_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | } |
| 1073 | |
| 1074 | sk = ec_listening_socket(hdr->port, hdr->src_stn, hdr->src_net); |
| 1075 | if (!sk) |
| 1076 | goto drop; |
| 1077 | |
| 1078 | if (ec_queue_packet(sk, skb, edev->net, hdr->src_stn, hdr->cb, |
| 1079 | hdr->port)) |
| 1080 | goto drop; |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 1081 | sock_put(sk); |
Mark Smith | 482d804 | 2009-07-06 11:05:58 +0000 | [diff] [blame] | 1082 | return NET_RX_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | |
| 1084 | drop: |
Eric Dumazet | 0c78a92 | 2010-06-09 16:33:05 +0000 | [diff] [blame] | 1085 | if (sk) |
| 1086 | sock_put(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | kfree_skb(skb); |
| 1088 | return NET_RX_DROP; |
| 1089 | } |
| 1090 | |
Stephen Hemminger | 7546dd9 | 2009-03-09 08:18:29 +0000 | [diff] [blame] | 1091 | static struct packet_type econet_packet_type __read_mostly = { |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 1092 | .type = cpu_to_be16(ETH_P_ECONET), |
| 1093 | .func = econet_rcv, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | }; |
| 1095 | |
| 1096 | static void econet_hw_initialise(void) |
| 1097 | { |
| 1098 | dev_add_pack(&econet_packet_type); |
| 1099 | } |
| 1100 | |
| 1101 | #endif |
| 1102 | |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 1103 | static int econet_notifier(struct notifier_block *this, unsigned long msg, |
| 1104 | void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | { |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 1106 | struct net_device *dev = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | struct ec_device *edev; |
| 1108 | |
YOSHIFUJI Hideaki | 721499e | 2008-07-19 22:34:43 -0700 | [diff] [blame] | 1109 | if (!net_eq(dev_net(dev), &init_net)) |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 1110 | return NOTIFY_DONE; |
| 1111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | switch (msg) { |
| 1113 | case NETDEV_UNREGISTER: |
| 1114 | /* A device has gone down - kill any data we hold for it. */ |
| 1115 | edev = dev->ec_ptr; |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 1116 | if (edev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | if (net2dev_map[0] == dev) |
| 1118 | net2dev_map[0] = NULL; |
| 1119 | net2dev_map[edev->net] = NULL; |
| 1120 | kfree(edev); |
| 1121 | dev->ec_ptr = NULL; |
| 1122 | } |
| 1123 | break; |
| 1124 | } |
| 1125 | |
| 1126 | return NOTIFY_DONE; |
| 1127 | } |
| 1128 | |
| 1129 | static struct notifier_block econet_netdev_notifier = { |
Joe Perches | ee9c88f | 2011-07-03 08:28:33 +0000 | [diff] [blame] | 1130 | .notifier_call = econet_notifier, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | }; |
| 1132 | |
| 1133 | static void __exit econet_proto_exit(void) |
| 1134 | { |
| 1135 | #ifdef CONFIG_ECONET_AUNUDP |
| 1136 | del_timer(&ab_cleanup_timer); |
| 1137 | if (udpsock) |
| 1138 | sock_release(udpsock); |
| 1139 | #endif |
| 1140 | unregister_netdevice_notifier(&econet_netdev_notifier); |
Alexey Dobriyan | 9c29a37 | 2007-08-14 17:25:20 -0700 | [diff] [blame] | 1141 | #ifdef CONFIG_ECONET_NATIVE |
| 1142 | dev_remove_pack(&econet_packet_type); |
| 1143 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | sock_unregister(econet_family_ops.family); |
| 1145 | proto_unregister(&econet_proto); |
| 1146 | } |
| 1147 | |
| 1148 | static int __init econet_proto_init(void) |
| 1149 | { |
| 1150 | int err = proto_register(&econet_proto, 0); |
| 1151 | |
| 1152 | if (err != 0) |
| 1153 | goto out; |
| 1154 | sock_register(&econet_family_ops); |
| 1155 | #ifdef CONFIG_ECONET_AUNUDP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | aun_udp_initialise(); |
| 1157 | #endif |
| 1158 | #ifdef CONFIG_ECONET_NATIVE |
| 1159 | econet_hw_initialise(); |
| 1160 | #endif |
| 1161 | register_netdevice_notifier(&econet_netdev_notifier); |
| 1162 | out: |
| 1163 | return err; |
| 1164 | } |
| 1165 | |
| 1166 | module_init(econet_proto_init); |
| 1167 | module_exit(econet_proto_exit); |
| 1168 | |
| 1169 | MODULE_LICENSE("GPL"); |
| 1170 | MODULE_ALIAS_NETPROTO(PF_ECONET); |