Blame view

drivers/net/wan/hdlc_raw_eth.c 3.13 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
  /*
   * Generic HDLC support routines for Linux
   * HDLC Ethernet emulation support
   *
eb2a2fd91   Krzysztof Halasa   [PATCH] Modulariz...
5
   * Copyright (C) 2002-2006 Krzysztof Halasa <khc@pm.waw.pl>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
10
   *
   * This program is free software; you can redistribute it and/or modify it
   * under the terms of version 2 of the GNU General Public License
   * as published by the Free Software Foundation.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
  #include <linux/errno.h>
4dfce4075   Krzysztof Hałasa   WAN: cosmetic cha...
12
  #include <linux/etherdevice.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
13
  #include <linux/gfp.h>
4dfce4075   Krzysztof Hałasa   WAN: cosmetic cha...
14
  #include <linux/hdlc.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
  #include <linux/if_arp.h>
4dfce4075   Krzysztof Hałasa   WAN: cosmetic cha...
16
  #include <linux/inetdevice.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
  #include <linux/init.h>
4dfce4075   Krzysztof Hałasa   WAN: cosmetic cha...
18
19
  #include <linux/kernel.h>
  #include <linux/module.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
  #include <linux/pkt_sched.h>
4dfce4075   Krzysztof Hałasa   WAN: cosmetic cha...
21
  #include <linux/poll.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
  #include <linux/rtnetlink.h>
4dfce4075   Krzysztof Hałasa   WAN: cosmetic cha...
23
  #include <linux/skbuff.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24

eb2a2fd91   Krzysztof Halasa   [PATCH] Modulariz...
25
  static int raw_eth_ioctl(struct net_device *dev, struct ifreq *ifr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26

d71a67492   Stephen Hemminger   wan: convert driv...
27
  static netdev_tx_t eth_tx(struct sk_buff *skb, struct net_device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
29
30
31
32
33
  {
  	int pad = ETH_ZLEN - skb->len;
  	if (pad > 0) {		/* Pad the frame with zeros */
  		int len = skb->len;
  		if (skb_tailroom(skb) < pad)
  			if (pskb_expand_head(skb, 0, pad, GFP_ATOMIC)) {
198191c4a   Krzysztof Halasa   WAN: convert driv...
34
  				dev->stats.tx_dropped++;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
36
37
38
39
40
41
42
  				dev_kfree_skb(skb);
  				return 0;
  			}
  		skb_put(skb, pad);
  		memset(skb->data + len, 0, pad);
  	}
  	return dev_to_hdlc(dev)->xmit(skb, dev);
  }
eb2a2fd91   Krzysztof Halasa   [PATCH] Modulariz...
43
44
  static struct hdlc_proto proto = {
  	.type_trans	= eth_type_trans,
991990a12   Krzysztof Hałasa   WAN: Convert gene...
45
  	.xmit		= eth_tx,
eb2a2fd91   Krzysztof Halasa   [PATCH] Modulariz...
46
47
48
49
50
51
  	.ioctl		= raw_eth_ioctl,
  	.module		= THIS_MODULE,
  };
  
  
  static int raw_eth_ioctl(struct net_device *dev, struct ifreq *ifr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
53
54
55
56
  {
  	raw_hdlc_proto __user *raw_s = ifr->ifr_settings.ifs_ifsu.raw_hdlc;
  	const size_t size = sizeof(raw_hdlc_proto);
  	raw_hdlc_proto new_settings;
  	hdlc_device *hdlc = dev_to_hdlc(dev);
991990a12   Krzysztof Hałasa   WAN: Convert gene...
57
  	int result, old_qlen;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
58
59
60
  
  	switch (ifr->ifr_settings.type) {
  	case IF_GET_PROTO:
eb2a2fd91   Krzysztof Halasa   [PATCH] Modulariz...
61
62
  		if (dev_to_hdlc(dev)->proto != &proto)
  			return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63
64
65
66
67
  		ifr->ifr_settings.type = IF_PROTO_HDLC_ETH;
  		if (ifr->ifr_settings.size < size) {
  			ifr->ifr_settings.size = size; /* data size wanted */
  			return -ENOBUFS;
  		}
eb2a2fd91   Krzysztof Halasa   [PATCH] Modulariz...
68
  		if (copy_to_user(raw_s, hdlc->state, size))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
  			return -EFAULT;
  		return 0;
  
  	case IF_PROTO_HDLC_ETH:
  		if (!capable(CAP_NET_ADMIN))
  			return -EPERM;
  
  		if (dev->flags & IFF_UP)
  			return -EBUSY;
  
  		if (copy_from_user(&new_settings, raw_s, size))
  			return -EFAULT;
  
  		if (new_settings.encoding == ENCODING_DEFAULT)
  			new_settings.encoding = ENCODING_NRZ;
  
  		if (new_settings.parity == PARITY_DEFAULT)
  			new_settings.parity = PARITY_CRC16_PR1_CCITT;
  
  		result = hdlc->attach(dev, new_settings.encoding,
  				      new_settings.parity);
  		if (result)
  			return result;
40d25142f   Krzysztof Halasa   Generic HDLC - re...
92
  		result = attach_hdlc_protocol(dev, &proto,
eb2a2fd91   Krzysztof Halasa   [PATCH] Modulariz...
93
94
95
96
  					      sizeof(raw_hdlc_proto));
  		if (result)
  			return result;
  		memcpy(hdlc->state, &new_settings, size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
97
98
  		old_qlen = dev->tx_queue_len;
  		ether_setup(dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
  		dev->tx_queue_len = old_qlen;
f2cedb63d   Danny Kukawka   net: replace rand...
100
  		eth_hw_addr_random(dev);
2f8364a29   Andrew Lunn   WAN: HDLC: Call n...
101
  		call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, dev);
4bc83b4d4   Krzysztof Halasa   [WAN]: Added miss...
102
  		netif_dormant_off(dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
103
104
105
106
107
  		return 0;
  	}
  
  	return -EINVAL;
  }
eb2a2fd91   Krzysztof Halasa   [PATCH] Modulariz...
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  
  
  static int __init mod_init(void)
  {
  	register_hdlc_protocol(&proto);
  	return 0;
  }
  
  
  
  static void __exit mod_exit(void)
  {
  	unregister_hdlc_protocol(&proto);
  }
  
  
  module_init(mod_init);
  module_exit(mod_exit);
  
  MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
  MODULE_DESCRIPTION("Ethernet encapsulation support for generic HDLC");
  MODULE_LICENSE("GPL v2");