2 * vcan.c - Virtual CAN interface
4 * Copyright (c) 2002-2007 Volkswagen Group Electronic Research
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of Volkswagen nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * Alternatively, provided that this notice is retained in full, this
20 * software may be distributed under the terms of the GNU General
21 * Public License ("GPL") version 2, in which case the provisions of the
22 * GPL apply INSTEAD OF those given above.
24 * The provided data structures and external interfaces from this code
25 * are not restricted to be used by modules with a GPL compatible license.
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
42 #include <linux/module.h>
43 #include <linux/init.h>
44 #include <linux/netdevice.h>
45 #include <linux/if_arp.h>
46 #include <linux/if_ether.h>
47 #include <linux/can.h>
48 #include <linux/can/dev.h>
49 #include <linux/can/skb.h>
50 #include <linux/slab.h>
51 #include <net/rtnetlink.h>
53 MODULE_DESCRIPTION("virtual CAN interface");
54 MODULE_LICENSE("Dual BSD/GPL");
55 MODULE_AUTHOR("Urs Thuermann <urs.thuermann@volkswagen.de>");
60 * Enable the echo on driver level for testing the CAN core echo modes.
61 * See Documentation/networking/can.txt for details.
64 static bool echo
; /* echo testing. Default: 0 (Off) */
65 module_param(echo
, bool, S_IRUGO
);
66 MODULE_PARM_DESC(echo
, "Echo sent frames (for testing). Default: 0 (Off)");
69 static void vcan_rx(struct sk_buff
*skb
, struct net_device
*dev
)
71 struct canfd_frame
*cfd
= (struct canfd_frame
*)skb
->data
;
72 struct net_device_stats
*stats
= &dev
->stats
;
75 stats
->rx_bytes
+= cfd
->len
;
77 skb
->pkt_type
= PACKET_BROADCAST
;
79 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
84 static netdev_tx_t
vcan_tx(struct sk_buff
*skb
, struct net_device
*dev
)
86 struct canfd_frame
*cfd
= (struct canfd_frame
*)skb
->data
;
87 struct net_device_stats
*stats
= &dev
->stats
;
90 if (can_dropped_invalid_skb(dev
, skb
))
94 stats
->tx_bytes
+= cfd
->len
;
96 /* set flag whether this packet has to be looped back */
97 loop
= skb
->pkt_type
== PACKET_LOOPBACK
;
100 /* no echo handling available inside this driver */
104 * only count the packets here, because the
105 * CAN core already did the echo for us
108 stats
->rx_bytes
+= cfd
->len
;
114 /* perform standard echo handling for CAN network interfaces */
118 skb
= can_create_echo_skb(skb
);
122 /* receive with packet counting */
125 /* no looped packets => no counting */
131 static int vcan_change_mtu(struct net_device
*dev
, int new_mtu
)
133 /* Do not allow changing the MTU while running */
134 if (dev
->flags
& IFF_UP
)
137 if (new_mtu
!= CAN_MTU
&& new_mtu
!= CANFD_MTU
)
144 static const struct net_device_ops vcan_netdev_ops
= {
145 .ndo_start_xmit
= vcan_tx
,
146 .ndo_change_mtu
= vcan_change_mtu
,
149 static void vcan_setup(struct net_device
*dev
)
151 dev
->type
= ARPHRD_CAN
;
153 dev
->hard_header_len
= 0;
155 dev
->tx_queue_len
= 0;
156 dev
->flags
= IFF_NOARP
;
158 /* set flags according to driver capabilities */
160 dev
->flags
|= IFF_ECHO
;
162 dev
->netdev_ops
= &vcan_netdev_ops
;
163 dev
->destructor
= free_netdev
;
166 static struct rtnl_link_ops vcan_link_ops __read_mostly
= {
171 static __init
int vcan_init_module(void)
173 pr_info("vcan: Virtual CAN interface driver\n");
176 printk(KERN_INFO
"vcan: enabled echo on driver level.\n");
178 return rtnl_link_register(&vcan_link_ops
);
181 static __exit
void vcan_cleanup_module(void)
183 rtnl_link_unregister(&vcan_link_ops
);
186 module_init(vcan_init_module
);
187 module_exit(vcan_cleanup_module
);