3 * Linux ethernet bridge
6 * Lennert Buytenhek <buytenh@gnu.org>
8 * $Id: br_device.c,v 1.6 2001/12/24 00:59:55 davem Exp $
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
16 #include <linux/kernel.h>
17 #include <linux/netdevice.h>
18 #include <linux/etherdevice.h>
19 #include <linux/ethtool.h>
21 #include <asm/uaccess.h>
22 #include "br_private.h"
24 static struct net_device_stats
*br_dev_get_stats(struct net_device
*dev
)
26 struct net_bridge
*br
= netdev_priv(dev
);
27 return &br
->statistics
;
30 /* net device transmit always called with no BH (preempt_disabled) */
31 int br_dev_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
33 struct net_bridge
*br
= netdev_priv(dev
);
34 const unsigned char *dest
= skb
->data
;
35 struct net_bridge_fdb_entry
*dst
;
37 br
->statistics
.tx_packets
++;
38 br
->statistics
.tx_bytes
+= skb
->len
;
40 skb
->mac
.raw
= skb
->data
;
41 skb_pull(skb
, ETH_HLEN
);
44 br_flood_deliver(br
, skb
, 0);
45 else if ((dst
= __br_fdb_get(br
, dest
)) != NULL
)
46 br_deliver(dst
->dst
, skb
);
48 br_flood_deliver(br
, skb
, 0);
53 static int br_dev_open(struct net_device
*dev
)
55 struct net_bridge
*br
= netdev_priv(dev
);
57 br_features_recompute(br
);
58 netif_start_queue(dev
);
59 br_stp_enable_bridge(br
);
64 static void br_dev_set_multicast_list(struct net_device
*dev
)
68 static int br_dev_stop(struct net_device
*dev
)
70 br_stp_disable_bridge(netdev_priv(dev
));
72 netif_stop_queue(dev
);
77 static int br_change_mtu(struct net_device
*dev
, int new_mtu
)
79 if (new_mtu
< 68 || new_mtu
> br_min_mtu(netdev_priv(dev
)))
86 /* Allow setting mac address of pseudo-bridge to be same as
87 * any of the bound interfaces
89 static int br_set_mac_address(struct net_device
*dev
, void *p
)
91 struct net_bridge
*br
= netdev_priv(dev
);
92 struct sockaddr
*addr
= p
;
93 struct net_bridge_port
*port
;
94 int err
= -EADDRNOTAVAIL
;
96 spin_lock_bh(&br
->lock
);
97 list_for_each_entry(port
, &br
->port_list
, list
) {
98 if (!compare_ether_addr(port
->dev
->dev_addr
, addr
->sa_data
)) {
99 br_stp_change_bridge_id(br
, addr
->sa_data
);
104 spin_unlock_bh(&br
->lock
);
109 static void br_getinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
111 strcpy(info
->driver
, "bridge");
112 strcpy(info
->version
, BR_VERSION
);
113 strcpy(info
->fw_version
, "N/A");
114 strcpy(info
->bus_info
, "N/A");
117 static int br_set_sg(struct net_device
*dev
, u32 data
)
119 struct net_bridge
*br
= netdev_priv(dev
);
122 br
->feature_mask
|= NETIF_F_SG
;
124 br
->feature_mask
&= ~NETIF_F_SG
;
126 br_features_recompute(br
);
130 static int br_set_tso(struct net_device
*dev
, u32 data
)
132 struct net_bridge
*br
= netdev_priv(dev
);
135 br
->feature_mask
|= NETIF_F_TSO
;
137 br
->feature_mask
&= ~NETIF_F_TSO
;
139 br_features_recompute(br
);
143 static int br_set_tx_csum(struct net_device
*dev
, u32 data
)
145 struct net_bridge
*br
= netdev_priv(dev
);
148 br
->feature_mask
|= NETIF_F_NO_CSUM
;
150 br
->feature_mask
&= ~NETIF_F_ALL_CSUM
;
152 br_features_recompute(br
);
156 static struct ethtool_ops br_ethtool_ops
= {
157 .get_drvinfo
= br_getinfo
,
158 .get_link
= ethtool_op_get_link
,
159 .get_sg
= ethtool_op_get_sg
,
161 .get_tx_csum
= ethtool_op_get_tx_csum
,
162 .set_tx_csum
= br_set_tx_csum
,
163 .get_tso
= ethtool_op_get_tso
,
164 .set_tso
= br_set_tso
,
167 void br_dev_setup(struct net_device
*dev
)
169 memset(dev
->dev_addr
, 0, ETH_ALEN
);
173 dev
->do_ioctl
= br_dev_ioctl
;
174 dev
->get_stats
= br_dev_get_stats
;
175 dev
->hard_start_xmit
= br_dev_xmit
;
176 dev
->open
= br_dev_open
;
177 dev
->set_multicast_list
= br_dev_set_multicast_list
;
178 dev
->change_mtu
= br_change_mtu
;
179 dev
->destructor
= free_netdev
;
180 SET_MODULE_OWNER(dev
);
181 SET_ETHTOOL_OPS(dev
, &br_ethtool_ops
);
182 dev
->stop
= br_dev_stop
;
183 dev
->tx_queue_len
= 0;
184 dev
->set_mac_address
= br_set_mac_address
;
185 dev
->priv_flags
= IFF_EBRIDGE
;
187 dev
->features
= NETIF_F_SG
| NETIF_F_FRAGLIST
| NETIF_F_HIGHDMA
|
188 NETIF_F_TSO
| NETIF_F_NO_CSUM
| NETIF_F_GSO_ROBUST
;