4 * GPRS over Phonet pipe end point socket
6 * Copyright (C) 2008 Nokia Corporation.
8 * Author: Rémi Denis-Courmont
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * version 2 as published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
25 #include <linux/kernel.h>
26 #include <linux/netdevice.h>
27 #include <linux/if_ether.h>
28 #include <linux/if_arp.h>
31 #include <linux/if_phonet.h>
32 #include <net/tcp_states.h>
33 #include <net/phonet/gprs.h>
35 #define GPRS_DEFAULT_MTU 1400
39 void (*old_state_change)(struct sock *);
40 void (*old_data_ready)(struct sock *);
41 void (*old_write_space)(struct sock *);
43 struct net_device *dev;
46 static __be16 gprs_type_trans(struct sk_buff *skb)
51 pvfc = skb_header_pointer(skb, 0, 1, &buf);
54 /* Look at IP version field */
57 return htons(ETH_P_IP);
59 return htons(ETH_P_IPV6);
64 static void gprs_writeable(struct gprs_dev *gp)
66 struct net_device *dev = gp->dev;
68 if (pep_writeable(gp->sk))
69 netif_wake_queue(dev);
76 static void gprs_state_change(struct sock *sk)
78 struct gprs_dev *gp = sk->sk_user_data;
80 if (sk->sk_state == TCP_CLOSE_WAIT) {
81 struct net_device *dev = gp->dev;
83 netif_stop_queue(dev);
84 netif_carrier_off(dev);
88 static int gprs_recv(struct gprs_dev *gp, struct sk_buff *skb)
90 struct net_device *dev = gp->dev;
92 __be16 protocol = gprs_type_trans(skb);
99 if (skb_headroom(skb) & 3) {
100 struct sk_buff *rskb, *fs;
103 /* Phonet Pipe data header may be misaligned (3 bytes),
104 * so wrap the IP packet as a single fragment of an head-less
105 * socket buffer. The network stack will pull what it needs,
106 * but at least, the whole IP payload is not memcpy'd. */
107 rskb = netdev_alloc_skb(dev, 0);
112 skb_shinfo(rskb)->frag_list = skb;
113 rskb->len += skb->len;
114 rskb->data_len += rskb->len;
115 rskb->truesize += rskb->len;
117 /* Avoid nested fragments */
118 skb_walk_frags(skb, fs)
120 skb->next = skb_shinfo(skb)->frag_list;
121 skb_frag_list_init(skb);
123 skb->data_len -= flen;
124 skb->truesize -= flen;
129 skb->protocol = protocol;
130 skb_reset_mac_header(skb);
133 if (likely(dev->flags & IFF_UP)) {
134 dev->stats.rx_packets++;
135 dev->stats.rx_bytes += skb->len;
144 dev->stats.rx_dropped++;
149 static void gprs_data_ready(struct sock *sk)
151 struct gprs_dev *gp = sk->sk_user_data;
154 while ((skb = pep_read(sk)) != NULL) {
160 static void gprs_write_space(struct sock *sk)
162 struct gprs_dev *gp = sk->sk_user_data;
164 if (netif_running(gp->dev))
169 * Network device callbacks
172 static int gprs_open(struct net_device *dev)
174 struct gprs_dev *gp = netdev_priv(dev);
180 static int gprs_close(struct net_device *dev)
182 netif_stop_queue(dev);
186 static netdev_tx_t gprs_xmit(struct sk_buff *skb, struct net_device *dev)
188 struct gprs_dev *gp = netdev_priv(dev);
189 struct sock *sk = gp->sk;
192 switch (skb->protocol) {
193 case htons(ETH_P_IP):
194 case htons(ETH_P_IPV6):
202 skb_set_owner_w(skb, sk);
204 err = pep_write(sk, skb);
206 net_dbg_ratelimited("%s: TX error (%d)\n", dev->name, err);
207 dev->stats.tx_aborted_errors++;
208 dev->stats.tx_errors++;
210 dev->stats.tx_packets++;
211 dev->stats.tx_bytes += len;
214 netif_stop_queue(dev);
215 if (pep_writeable(sk))
216 netif_wake_queue(dev);
220 static const struct net_device_ops gprs_netdev_ops = {
221 .ndo_open = gprs_open,
222 .ndo_stop = gprs_close,
223 .ndo_start_xmit = gprs_xmit,
226 static void gprs_setup(struct net_device *dev)
228 dev->features = NETIF_F_FRAGLIST;
229 dev->type = ARPHRD_PHONET_PIPE;
230 dev->flags = IFF_POINTOPOINT | IFF_NOARP;
231 dev->mtu = GPRS_DEFAULT_MTU;
233 dev->max_mtu = (PHONET_MAX_MTU - 11);
234 dev->hard_header_len = 0;
236 dev->tx_queue_len = 10;
238 dev->netdev_ops = &gprs_netdev_ops;
239 dev->needs_free_netdev = true;
247 * Attach a GPRS interface to a datagram socket.
248 * Returns the interface index on success, negative error code on error.
250 int gprs_attach(struct sock *sk)
252 static const char ifname[] = "gprs%d";
254 struct net_device *dev;
257 if (unlikely(sk->sk_type == SOCK_STREAM))
258 return -EINVAL; /* need packet boundaries */
260 /* Create net device */
261 dev = alloc_netdev(sizeof(*gp), ifname, NET_NAME_UNKNOWN, gprs_setup);
264 gp = netdev_priv(dev);
268 netif_stop_queue(dev);
269 err = register_netdev(dev);
276 if (unlikely(sk->sk_user_data)) {
280 if (unlikely((1 << sk->sk_state & (TCPF_CLOSE|TCPF_LISTEN)) ||
281 sock_flag(sk, SOCK_DEAD))) {
285 sk->sk_user_data = gp;
286 gp->old_state_change = sk->sk_state_change;
287 gp->old_data_ready = sk->sk_data_ready;
288 gp->old_write_space = sk->sk_write_space;
289 sk->sk_state_change = gprs_state_change;
290 sk->sk_data_ready = gprs_data_ready;
291 sk->sk_write_space = gprs_write_space;
295 printk(KERN_DEBUG"%s: attached\n", dev->name);
300 unregister_netdev(dev);
304 void gprs_detach(struct sock *sk)
306 struct gprs_dev *gp = sk->sk_user_data;
307 struct net_device *dev = gp->dev;
310 sk->sk_user_data = NULL;
311 sk->sk_state_change = gp->old_state_change;
312 sk->sk_data_ready = gp->old_data_ready;
313 sk->sk_write_space = gp->old_write_space;
316 printk(KERN_DEBUG"%s: detached\n", dev->name);
317 unregister_netdev(dev);