Release 4.11 drivers/net/wan/hdlc_raw.c
/*
* Generic HDLC support routines for Linux
* HDLC support
*
* Copyright (C) 1999 - 2006 Krzysztof Halasa <khc@pm.waw.pl>
*
* 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.
*/
#include <linux/errno.h>
#include <linux/hdlc.h>
#include <linux/if_arp.h>
#include <linux/inetdevice.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pkt_sched.h>
#include <linux/poll.h>
#include <linux/rtnetlink.h>
#include <linux/skbuff.h>
static int raw_ioctl(struct net_device *dev, struct ifreq *ifr);
static __be16 raw_type_trans(struct sk_buff *skb, struct net_device *dev)
{
return cpu_to_be16(ETH_P_IP);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
François Romieu | 12 | 54.55% | 1 | 25.00% |
Krzysztof Hałasa | 8 | 36.36% | 1 | 25.00% |
Harvey Harrison | 1 | 4.55% | 1 | 25.00% |
Alexey Dobriyan | 1 | 4.55% | 1 | 25.00% |
Total | 22 | 100.00% | 4 | 100.00% |
static struct hdlc_proto proto = {
.type_trans = raw_type_trans,
.ioctl = raw_ioctl,
.module = THIS_MODULE,
};
static int raw_ioctl(struct net_device *dev, struct ifreq *ifr)
{
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);
int result;
switch (ifr->ifr_settings.type) {
case IF_GET_PROTO:
if (dev_to_hdlc(dev)->proto != &proto)
return -EINVAL;
ifr->ifr_settings.type = IF_PROTO_HDLC;
if (ifr->ifr_settings.size < size) {
ifr->ifr_settings.size = size; /* data size wanted */
return -ENOBUFS;
}
if (copy_to_user(raw_s, hdlc->state, size))
return -EFAULT;
return 0;
case IF_PROTO_HDLC:
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;
result = attach_hdlc_protocol(dev, &proto,
sizeof(raw_hdlc_proto));
if (result)
return result;
memcpy(hdlc->state, &new_settings, size);
dev->type = ARPHRD_RAWHDLC;
call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, dev);
netif_dormant_off(dev);
return 0;
}
return -EINVAL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
François Romieu | 147 | 50.87% | 2 | 18.18% |
Krzysztof Hałasa | 97 | 33.56% | 4 | 36.36% |
Alan Cox | 29 | 10.03% | 1 | 9.09% |
Al Viro | 9 | 3.11% | 3 | 27.27% |
Andrew Lunn | 7 | 2.42% | 1 | 9.09% |
Total | 289 | 100.00% | 11 | 100.00% |
static int __init mod_init(void)
{
register_hdlc_protocol(&proto);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Krzysztof Hałasa | 18 | 100.00% | 1 | 100.00% |
Total | 18 | 100.00% | 1 | 100.00% |
static void __exit mod_exit(void)
{
unregister_hdlc_protocol(&proto);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Krzysztof Hałasa | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
module_init(mod_init);
module_exit(mod_exit);
MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
MODULE_DESCRIPTION("Raw HDLC protocol support for generic HDLC");
MODULE_LICENSE("GPL v2");
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Krzysztof Hałasa | 211 | 47.95% | 5 | 35.71% |
François Romieu | 182 | 41.36% | 2 | 14.29% |
Alan Cox | 29 | 6.59% | 1 | 7.14% |
Al Viro | 9 | 2.05% | 3 | 21.43% |
Andrew Lunn | 7 | 1.59% | 1 | 7.14% |
Alexey Dobriyan | 1 | 0.23% | 1 | 7.14% |
Harvey Harrison | 1 | 0.23% | 1 | 7.14% |
Total | 440 | 100.00% | 14 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.