/* loopback.c * * Copyright (C) 2002 Ulrich Marx * extended by Jose Carlos Billalabeitia and Jan Kiszka * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include #include #include #include #include #include #include MODULE_AUTHOR("Maintainer: Jan Kiszka "); MODULE_DESCRIPTION("RTnet loopback driver"); MODULE_LICENSE("GPL"); static struct rtnet_device *rt_loopback_dev; /*** * rt_loopback_open * @rtdev */ static int rt_loopback_open(struct rtnet_device *rtdev) { rt_stack_connect(rtdev, &STACK_manager); rtnetif_start_queue(rtdev); return 0; } /*** * rt_loopback_close * @rtdev */ static int rt_loopback_close(struct rtnet_device *rtdev) { rtnetif_stop_queue(rtdev); rt_stack_disconnect(rtdev); return 0; } /*** * rt_loopback_xmit - begin packet transmission * @skb: packet to be sent * @dev: network device to which packet is sent * */ static int rt_loopback_xmit(struct rtskb *rtskb, struct rtnet_device *rtdev) { /* write transmission stamp - in case any protocol ever gets the idea to ask the lookback device for this service... */ if (rtskb->xmit_stamp) *rtskb->xmit_stamp = cpu_to_be64(rtdm_clock_read() + *rtskb->xmit_stamp); /* make sure that critical fields are re-intialised */ rtskb->chain_end = rtskb; /* parse the Ethernet header as usual */ rtskb->protocol = rt_eth_type_trans(rtskb, rtdev); rt_stack_deliver(rtskb); return 0; } /*** * loopback_init */ static int __init loopback_init(void) { int err; struct rtnet_device *rtdev; pr_info("initializing loopback interface...\n"); if ((rtdev = rt_alloc_etherdev(0, 1)) == NULL) return -ENODEV; rt_rtdev_connect(rtdev, &RTDEV_manager); strcpy(rtdev->name, "rtlo"); rtdev->vers = RTDEV_VERS_2_0; rtdev->open = &rt_loopback_open; rtdev->stop = &rt_loopback_close; rtdev->hard_start_xmit = &rt_loopback_xmit; rtdev->flags |= IFF_LOOPBACK; rtdev->flags &= ~IFF_BROADCAST; rtdev->features |= NETIF_F_LLTX; if ((err = rt_register_rtnetdev(rtdev)) != 0) { rtdev_free(rtdev); return err; } rt_loopback_dev = rtdev; return 0; } /*** * loopback_cleanup */ static void __exit loopback_cleanup(void) { struct rtnet_device *rtdev = rt_loopback_dev; pr_info("removing loopback interface...\n"); rt_unregister_rtnetdev(rtdev); rt_rtdev_disconnect(rtdev); rtdev_free(rtdev); } module_init(loopback_init); module_exit(loopback_cleanup);