|
| 1 | +// SPDX-License-Identifier: GPL-2.0 |
| 2 | + |
| 3 | +//! Rust dummy network driver |
| 4 | +//! |
| 5 | +//! This is a demonstration of what a small driver looks like in Rust, based on drivers/net/dummy.c. |
| 6 | +//! This code is provided as a demonstration only, not as a proposal to mass-rewrite existing drivers in Rust |
| 7 | +//! |
| 8 | +//! The purpose of this driver is to provide a device to point a |
| 9 | +//! route through, but not to actually transmit packets. |
| 10 | +//! |
| 11 | +//! Why? If you have a machine whose only connection is an occasional |
| 12 | +//! PPP/SLIP/PLIP link, you can only connect to your own hostname |
| 13 | +//! when the link is up. Otherwise you have to use localhost. |
| 14 | +//! This isn't very consistent. |
| 15 | +//! |
| 16 | +//! One solution is to set up a dummy link using PPP/SLIP/PLIP, |
| 17 | +//! but this seems (to me) too much overhead for too little gain. |
| 18 | +//! This driver provides a small alternative. Thus you can do |
| 19 | +//! |
| 20 | +//! [when not running slip] |
| 21 | +//! ifconfig dummy slip.addr.ess.here up |
| 22 | +//! [to go to slip] |
| 23 | +//! ifconfig dummy down |
| 24 | +//! dip whatever |
| 25 | +//! |
| 26 | +//! This was written by looking at the dummy network driver from Nick |
| 27 | +//! Holloway, which was written by looking at Donald Becker's skeleton driver |
| 28 | +//! and the loopback driver. |
| 29 | +//! |
| 30 | +//! Finn Behrens, 30th April 2021 |
| 31 | +//! |
| 32 | +//! rust rewrite of the C version from Nick Holloway, 27th May 1994 |
| 33 | +//! see [dummy.c](./dummy.c) |
| 34 | +
|
| 35 | +#![no_std] |
| 36 | +#![feature(allocator_api, global_asm)] |
| 37 | + |
| 38 | +use kernel::net::device; |
| 39 | +use kernel::net::prelude::*; |
| 40 | +use kernel::net::rtnl; |
| 41 | +use kernel::Error; |
| 42 | +use kernel::{ |
| 43 | + net::netlink::{NlAttrVec, NlExtAck}, |
| 44 | + prelude::*, |
| 45 | +}; |
| 46 | + |
| 47 | +module! { |
| 48 | + type: RustNetDummy, |
| 49 | + name: b"dummy_rs", |
| 50 | + author: b"Rust for Linux Contributors", |
| 51 | + description: b"Rust dummy network driver", |
| 52 | + license: b"GPL v2", |
| 53 | + alias_rtnl_link: b"dummy_rs", |
| 54 | + params: { |
| 55 | + numdummies: usize { |
| 56 | + default: 0, |
| 57 | + permissions: 0, |
| 58 | + description: b"Number of dummy_rs pseudo devices", |
| 59 | + }, |
| 60 | + }, |
| 61 | +} |
| 62 | + |
| 63 | +fn setup(dev: &mut NetDevice<DummyRsDev>) { |
| 64 | + dev.ether_setup(); |
| 65 | + |
| 66 | + dev.set_ops(); |
| 67 | + |
| 68 | + // Fill in device structure with ethernet-generic values. |
| 69 | + dev.add_flag(device::Iff::NOARP); |
| 70 | + dev.remove_flag(device::Iff::MULTICAST); |
| 71 | + |
| 72 | + dev.add_private_flag(device::IffPriv::LIVE_ADDR_CHANGE); |
| 73 | + dev.add_private_flag(device::IffPriv::NO_QUEUE); |
| 74 | + |
| 75 | + let mut feature = device::feature::NetIF::new(); |
| 76 | + |
| 77 | + feature += device::feature::NETIF_F_SG; |
| 78 | + feature += device::feature::NETIF_F_FRAGLIST; |
| 79 | + feature += device::feature::NETIF_F_GSO_SOFTWARE; |
| 80 | + feature += device::feature::NETIF_F_HW_CSUM; |
| 81 | + feature += device::feature::NETIF_F_HIGHDMA; |
| 82 | + feature += device::feature::NETIF_F_LLTX; |
| 83 | + feature += device::feature::NETIF_F_GSO_ENCAP_ALL; |
| 84 | + |
| 85 | + dev.set_features(feature); |
| 86 | + dev.set_hw_features(feature); |
| 87 | + dev.set_hw_enc_features(feature); |
| 88 | + |
| 89 | + dev.hw_addr_random(); |
| 90 | + dev.set_mtu(0, 0); |
| 91 | +} |
| 92 | + |
| 93 | +fn validate(tb: &NlAttrVec, _data: &NlAttrVec, _ext_ack: &NlExtAck) -> Result { |
| 94 | + if let Some(addr) = tb.get(kernel::bindings::IFLA_ADDRESS) { |
| 95 | + if Some(kernel::net::netlink::ETH_ALEN) != addr.nla_len() { |
| 96 | + return Err(Error::EINVAL); |
| 97 | + } |
| 98 | + if !addr.is_valid_ether_addr() { |
| 99 | + return Err(Error::EADDRNOTAVAIL); |
| 100 | + } |
| 101 | + } |
| 102 | + Ok(()) |
| 103 | +} |
| 104 | + |
| 105 | +rtnl_link_ops! { |
| 106 | + kind: b"dummy_rs", |
| 107 | + type: DummyRsDev, |
| 108 | + setup: setup, |
| 109 | + validate: validate, |
| 110 | +} |
| 111 | + |
| 112 | +struct RustNetDummy { |
| 113 | + //dev: NetDevice<DummyRsDev>, |
| 114 | +} |
| 115 | + |
| 116 | +impl KernelModule for RustNetDummy { |
| 117 | + fn init() -> Result<Self> { |
| 118 | + let num = *numdummies.read(); |
| 119 | + |
| 120 | + unsafe { dummy_rs_link_ops.register() }?; |
| 121 | + |
| 122 | + for _ in 0..(num) { |
| 123 | + let dev = NetDevice::new( |
| 124 | + DummyRsDev, |
| 125 | + kernel::cstr!("dummyrs%d"), |
| 126 | + kernel::net::device::NetNameAssingType::Enum, |
| 127 | + 1, |
| 128 | + 1, |
| 129 | + )?; |
| 130 | + dev.set_rtnl_ops(unsafe { &dummy_rs_link_ops }); |
| 131 | + |
| 132 | + if let Err(e) = dev.register() { |
| 133 | + pr_warn!("could not register: {}", e.to_kernel_errno()); |
| 134 | + return Err(e); |
| 135 | + } |
| 136 | + } |
| 137 | + |
| 138 | + Ok(RustNetDummy { |
| 139 | + //dev, |
| 140 | + }) |
| 141 | + } |
| 142 | +} |
| 143 | + |
| 144 | +impl Drop for RustNetDummy { |
| 145 | + fn drop(&mut self) { |
| 146 | + // TODO: remove unsafe somehow |
| 147 | + unsafe { dummy_rs_link_ops.unregister() }; |
| 148 | + } |
| 149 | +} |
| 150 | + |
| 151 | +struct DummyRsDev; |
| 152 | + |
| 153 | +impl NetDeviceOps<Self> for DummyRsDev { |
| 154 | + kernel::declare_net_device_ops!( |
| 155 | + get_stats64, |
| 156 | + change_carrier, |
| 157 | + validate_addr, |
| 158 | + set_mac_addr, |
| 159 | + set_rx_mode |
| 160 | + ); |
| 161 | + |
| 162 | + fn init(dev: &mut NetDevice<Self>) -> Result { |
| 163 | + dev.set_new_pcpu_lstats()?; |
| 164 | + Ok(()) |
| 165 | + } |
| 166 | + |
| 167 | + fn uninit(dev: &mut NetDevice<Self>) { |
| 168 | + unsafe { dev.free_lstats() }; |
| 169 | + } |
| 170 | + |
| 171 | + fn start_xmit(skb: SkBuff, dev: &mut NetDevice<Self>) -> kernel::net::device::NetdevTX { |
| 172 | + let mut skb = skb; |
| 173 | + |
| 174 | + dev.lstats_add(skb.len()); |
| 175 | + |
| 176 | + skb.tx_timestamp(); |
| 177 | + drop(skb); |
| 178 | + |
| 179 | + kernel::net::device::NetdevTX::TX_OK |
| 180 | + } |
| 181 | + |
| 182 | + fn get_stats64(dev: &NetDevice<Self>, stats: &mut rtnl::RtnlLinkStats64) { |
| 183 | + stats.dev_read(dev); |
| 184 | + } |
| 185 | + |
| 186 | + fn change_carrier(dev: &mut NetDevice<Self>, new_carrier: bool) -> Result { |
| 187 | + dev.carrier_set(new_carrier); |
| 188 | + |
| 189 | + Ok(()) |
| 190 | + } |
| 191 | + |
| 192 | + fn validate_addr(dev: &NetDevice<Self>) -> Result { |
| 193 | + device::helpers::eth_validate_addr(dev) |
| 194 | + } |
| 195 | + |
| 196 | + fn set_mac_addr(dev: &mut NetDevice<Self>, p: *mut kernel::c_types::c_void) -> Result { |
| 197 | + device::helpers::eth_mac_addr(dev, p) |
| 198 | + } |
| 199 | + |
| 200 | + // [Someting about faking multicast](https://elixir.bootlin.com/linux/v5.12-rc4/source/drivers/net/dummy.c#L48). |
| 201 | + fn set_rx_mode(_dev: &mut NetDevice<Self>) {} |
| 202 | +} |
| 203 | + |
| 204 | +impl NetDeviceAdapter for DummyRsDev { |
| 205 | + type Inner = Self; |
| 206 | + |
| 207 | + type Ops = Self; |
| 208 | + |
| 209 | + type EthOps = Self; |
| 210 | + |
| 211 | + fn setup(dev: &mut NetDevice<Self>) { |
| 212 | + setup(dev); |
| 213 | + } |
| 214 | +} |
| 215 | + |
| 216 | +impl EthToolOps<Self> for DummyRsDev { |
| 217 | + kernel::declare_eth_tool_ops!(get_drvinfo, get_ts_info); |
| 218 | + |
| 219 | + fn get_drvinfo(_dev: &NetDevice<Self>, info: &mut ethtool::EthtoolDrvinfo) { |
| 220 | + // TODO: how to do this more efficient without unsafe? |
| 221 | + // FIXME: !! |
| 222 | + let info: &kernel::bindings::ethtool_drvinfo = info.get_internal(); |
| 223 | + unsafe { |
| 224 | + kernel::bindings::strlcpy( |
| 225 | + &(info.driver) as *const _ as *mut i8, |
| 226 | + b"dummy_rs\0" as *const _ as *mut i8, |
| 227 | + 32, |
| 228 | + ); |
| 229 | + } |
| 230 | + } |
| 231 | + |
| 232 | + fn get_ts_info(dev: &NetDevice<Self>, info: &mut ethtool::EthToolTsInfo) -> Result { |
| 233 | + kernel::net::ethtool::helpers::ethtool_op_get_ts_info(dev, info) |
| 234 | + } |
| 235 | +} |
0 commit comments