]> Git Repo - linux.git/blame - net/bridge/br_stp_timer.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-linus
[linux.git] / net / bridge / br_stp_timer.c
CommitLineData
1da177e4
LT
1/*
2 * Spanning tree protocol; timer-related code
3 * Linux ethernet bridge
4 *
5 * Authors:
6 * Lennert Buytenhek <[email protected]>
7 *
1da177e4
LT
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#include <linux/kernel.h>
15#include <linux/times.h>
1da177e4
LT
16
17#include "br_private.h"
18#include "br_private_stp.h"
19
20/* called under bridge lock */
21static int br_is_designated_for_some_port(const struct net_bridge *br)
22{
23 struct net_bridge_port *p;
24
25 list_for_each_entry(p, &br->port_list, list) {
26 if (p->state != BR_STATE_DISABLED &&
9d6f229f 27 !memcmp(&p->designated_bridge, &br->bridge_id, 8))
1da177e4
LT
28 return 1;
29 }
30
31 return 0;
32}
33
34static void br_hello_timer_expired(unsigned long arg)
35{
36 struct net_bridge *br = (struct net_bridge *)arg;
9d6f229f 37
28a16c97 38 br_debug(br, "hello timer expired\n");
e3efe08e 39 spin_lock(&br->lock);
1da177e4
LT
40 if (br->dev->flags & IFF_UP) {
41 br_config_bpdu_generation(br);
42
9a834b87 43 mod_timer(&br->hello_timer, round_jiffies(jiffies + br->hello_time));
1da177e4 44 }
e3efe08e 45 spin_unlock(&br->lock);
1da177e4
LT
46}
47
48static void br_message_age_timer_expired(unsigned long arg)
49{
50 struct net_bridge_port *p = (struct net_bridge_port *) arg;
51 struct net_bridge *br = p->br;
52 const bridge_id *id = &p->designated_bridge;
53 int was_root;
54
55 if (p->state == BR_STATE_DISABLED)
56 return;
57
28a16c97 58 br_info(br, "port %u(%s) neighbor %.2x%.2x.%pM lost\n",
59 (unsigned) p->port_no, p->dev->name,
60 id->prio[0], id->prio[1], &id->addr);
1da177e4
LT
61
62 /*
63 * According to the spec, the message age timer cannot be
64 * running when we are the root bridge. So.. this was_root
65 * check is redundant. I'm leaving it in for now, though.
66 */
e3efe08e 67 spin_lock(&br->lock);
1da177e4
LT
68 if (p->state == BR_STATE_DISABLED)
69 goto unlock;
70 was_root = br_is_root_bridge(br);
71
72 br_become_designated_port(p);
73 br_configuration_update(br);
74 br_port_state_selection(br);
75 if (br_is_root_bridge(br) && !was_root)
76 br_become_root_bridge(br);
77 unlock:
e3efe08e 78 spin_unlock(&br->lock);
1da177e4
LT
79}
80
81static void br_forward_delay_timer_expired(unsigned long arg)
82{
83 struct net_bridge_port *p = (struct net_bridge_port *) arg;
84 struct net_bridge *br = p->br;
85
28a16c97 86 br_debug(br, "port %u(%s) forward delay timer\n",
87 (unsigned) p->port_no, p->dev->name);
e3efe08e 88 spin_lock(&br->lock);
1da177e4
LT
89 if (p->state == BR_STATE_LISTENING) {
90 p->state = BR_STATE_LEARNING;
91 mod_timer(&p->forward_delay_timer,
92 jiffies + br->forward_delay);
93 } else if (p->state == BR_STATE_LEARNING) {
94 p->state = BR_STATE_FORWARDING;
95 if (br_is_designated_for_some_port(br))
96 br_topology_change_detection(br);
1faa4356 97 netif_carrier_on(br->dev);
1da177e4
LT
98 }
99 br_log_state(p);
e3efe08e 100 spin_unlock(&br->lock);
1da177e4
LT
101}
102
103static void br_tcn_timer_expired(unsigned long arg)
104{
105 struct net_bridge *br = (struct net_bridge *) arg;
106
28a16c97 107 br_debug(br, "tcn timer expired\n");
e3efe08e 108 spin_lock(&br->lock);
1da177e4
LT
109 if (br->dev->flags & IFF_UP) {
110 br_transmit_tcn(br);
9d6f229f 111
1da177e4
LT
112 mod_timer(&br->tcn_timer,jiffies + br->bridge_hello_time);
113 }
e3efe08e 114 spin_unlock(&br->lock);
1da177e4
LT
115}
116
117static void br_topology_change_timer_expired(unsigned long arg)
118{
119 struct net_bridge *br = (struct net_bridge *) arg;
120
28a16c97 121 br_debug(br, "topo change timer expired\n");
e3efe08e 122 spin_lock(&br->lock);
1da177e4
LT
123 br->topology_change_detected = 0;
124 br->topology_change = 0;
e3efe08e 125 spin_unlock(&br->lock);
1da177e4
LT
126}
127
128static void br_hold_timer_expired(unsigned long arg)
129{
130 struct net_bridge_port *p = (struct net_bridge_port *) arg;
131
28a16c97 132 br_debug(p->br, "port %u(%s) hold timer expired\n",
133 (unsigned) p->port_no, p->dev->name);
1da177e4 134
e3efe08e 135 spin_lock(&p->br->lock);
1da177e4
LT
136 if (p->config_pending)
137 br_transmit_config(p);
e3efe08e 138 spin_unlock(&p->br->lock);
1da177e4
LT
139}
140
1da177e4
LT
141void br_stp_timer_init(struct net_bridge *br)
142{
a95fcacd 143 setup_timer(&br->hello_timer, br_hello_timer_expired,
1da177e4
LT
144 (unsigned long) br);
145
a95fcacd 146 setup_timer(&br->tcn_timer, br_tcn_timer_expired,
1da177e4
LT
147 (unsigned long) br);
148
a95fcacd 149 setup_timer(&br->topology_change_timer,
1da177e4
LT
150 br_topology_change_timer_expired,
151 (unsigned long) br);
152
a95fcacd 153 setup_timer(&br->gc_timer, br_fdb_cleanup, (unsigned long) br);
1da177e4
LT
154}
155
156void br_stp_port_timer_init(struct net_bridge_port *p)
157{
a95fcacd 158 setup_timer(&p->message_age_timer, br_message_age_timer_expired,
1da177e4
LT
159 (unsigned long) p);
160
a95fcacd 161 setup_timer(&p->forward_delay_timer, br_forward_delay_timer_expired,
1da177e4 162 (unsigned long) p);
9d6f229f 163
a95fcacd 164 setup_timer(&p->hold_timer, br_hold_timer_expired,
1da177e4 165 (unsigned long) p);
9d6f229f 166}
1da177e4
LT
167
168/* Report ticks left (in USER_HZ) used for API */
169unsigned long br_timer_value(const struct timer_list *timer)
170{
171 return timer_pending(timer)
172 ? jiffies_to_clock_t(timer->expires - jiffies) : 0;
173}
This page took 0.548391 seconds and 4 git commands to generate.