4 * GPRS over Phonet pipe end point socket
6 * Copyright (C) 2008 Nokia Corporation.
8 * Author: RĂ©mi Denis-Courmont <remi.denis-courmont@nokia.com>
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
*, int);
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
, int len
)
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 LIMIT_NETDEBUG(KERN_WARNING
"%s: TX error (%d)\n",
208 dev
->stats
.tx_aborted_errors
++;
209 dev
->stats
.tx_errors
++;
211 dev
->stats
.tx_packets
++;
212 dev
->stats
.tx_bytes
+= len
;
215 netif_stop_queue(dev
);
216 if (pep_writeable(sk
))
217 netif_wake_queue(dev
);
221 static int gprs_set_mtu(struct net_device
*dev
, int new_mtu
)
223 if ((new_mtu
< 576) || (new_mtu
> (PHONET_MAX_MTU
- 11)))
230 static const struct net_device_ops gprs_netdev_ops
= {
231 .ndo_open
= gprs_open
,
232 .ndo_stop
= gprs_close
,
233 .ndo_start_xmit
= gprs_xmit
,
234 .ndo_change_mtu
= gprs_set_mtu
,
237 static void gprs_setup(struct net_device
*dev
)
239 dev
->features
= NETIF_F_FRAGLIST
;
240 dev
->type
= ARPHRD_PHONET_PIPE
;
241 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
;
242 dev
->mtu
= GPRS_DEFAULT_MTU
;
243 dev
->hard_header_len
= 0;
245 dev
->tx_queue_len
= 10;
247 dev
->netdev_ops
= &gprs_netdev_ops
;
248 dev
->destructor
= free_netdev
;
256 * Attach a GPRS interface to a datagram socket.
257 * Returns the interface index on success, negative error code on error.
259 int gprs_attach(struct sock
*sk
)
261 static const char ifname
[] = "gprs%d";
263 struct net_device
*dev
;
266 if (unlikely(sk
->sk_type
== SOCK_STREAM
))
267 return -EINVAL
; /* need packet boundaries */
269 /* Create net device */
270 dev
= alloc_netdev(sizeof(*gp
), ifname
, gprs_setup
);
273 gp
= netdev_priv(dev
);
277 netif_stop_queue(dev
);
278 err
= register_netdev(dev
);
285 if (unlikely(sk
->sk_user_data
)) {
289 if (unlikely((1 << sk
->sk_state
& (TCPF_CLOSE
|TCPF_LISTEN
)) ||
290 sock_flag(sk
, SOCK_DEAD
))) {
294 sk
->sk_user_data
= gp
;
295 gp
->old_state_change
= sk
->sk_state_change
;
296 gp
->old_data_ready
= sk
->sk_data_ready
;
297 gp
->old_write_space
= sk
->sk_write_space
;
298 sk
->sk_state_change
= gprs_state_change
;
299 sk
->sk_data_ready
= gprs_data_ready
;
300 sk
->sk_write_space
= gprs_write_space
;
304 printk(KERN_DEBUG
"%s: attached\n", dev
->name
);
309 unregister_netdev(dev
);
313 void gprs_detach(struct sock
*sk
)
315 struct gprs_dev
*gp
= sk
->sk_user_data
;
316 struct net_device
*dev
= gp
->dev
;
319 sk
->sk_user_data
= NULL
;
320 sk
->sk_state_change
= gp
->old_state_change
;
321 sk
->sk_data_ready
= gp
->old_data_ready
;
322 sk
->sk_write_space
= gp
->old_write_space
;
325 printk(KERN_DEBUG
"%s: detached\n", dev
->name
);
326 unregister_netdev(dev
);