| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  *	Spanning tree protocol; timer-related code | 
 | 3 |  *	Linux ethernet bridge | 
 | 4 |  * | 
 | 5 |  *	Authors: | 
 | 6 |  *	Lennert Buytenhek		<buytenh@gnu.org> | 
 | 7 |  * | 
 | 8 |  *	$Id: br_stp_timer.c,v 1.3 2000/05/05 02:17:17 davem Exp $ | 
 | 9 |  * | 
 | 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. | 
 | 14 |  */ | 
 | 15 |  | 
 | 16 | #include <linux/kernel.h> | 
 | 17 | #include <linux/times.h> | 
 | 18 | #include <linux/smp_lock.h> | 
 | 19 |  | 
 | 20 | #include "br_private.h" | 
 | 21 | #include "br_private_stp.h" | 
 | 22 |  | 
 | 23 | /* called under bridge lock */ | 
 | 24 | static int br_is_designated_for_some_port(const struct net_bridge *br) | 
 | 25 | { | 
 | 26 | 	struct net_bridge_port *p; | 
 | 27 |  | 
 | 28 | 	list_for_each_entry(p, &br->port_list, list) { | 
 | 29 | 		if (p->state != BR_STATE_DISABLED && | 
| YOSHIFUJI Hideaki | 9d6f229 | 2007-02-09 23:24:35 +0900 | [diff] [blame] | 30 | 		    !memcmp(&p->designated_bridge, &br->bridge_id, 8)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | 			return 1; | 
 | 32 | 	} | 
 | 33 |  | 
 | 34 | 	return 0; | 
 | 35 | } | 
 | 36 |  | 
 | 37 | static void br_hello_timer_expired(unsigned long arg) | 
 | 38 | { | 
 | 39 | 	struct net_bridge *br = (struct net_bridge *)arg; | 
| YOSHIFUJI Hideaki | 9d6f229 | 2007-02-09 23:24:35 +0900 | [diff] [blame] | 40 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | 	pr_debug("%s: hello timer expired\n", br->dev->name); | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 42 | 	spin_lock(&br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | 	if (br->dev->flags & IFF_UP) { | 
 | 44 | 		br_config_bpdu_generation(br); | 
 | 45 |  | 
 | 46 | 		mod_timer(&br->hello_timer, jiffies + br->hello_time); | 
 | 47 | 	} | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 48 | 	spin_unlock(&br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | } | 
 | 50 |  | 
 | 51 | static void br_message_age_timer_expired(unsigned long arg) | 
 | 52 | { | 
 | 53 | 	struct net_bridge_port *p = (struct net_bridge_port *) arg; | 
 | 54 | 	struct net_bridge *br = p->br; | 
 | 55 | 	const bridge_id *id = &p->designated_bridge; | 
 | 56 | 	int was_root; | 
 | 57 |  | 
 | 58 | 	if (p->state == BR_STATE_DISABLED) | 
 | 59 | 		return; | 
 | 60 |  | 
| YOSHIFUJI Hideaki | 9d6f229 | 2007-02-09 23:24:35 +0900 | [diff] [blame] | 61 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | 	pr_info("%s: neighbor %.2x%.2x.%.2x:%.2x:%.2x:%.2x:%.2x:%.2x lost on port %d(%s)\n", | 
| YOSHIFUJI Hideaki | 9d6f229 | 2007-02-09 23:24:35 +0900 | [diff] [blame] | 63 | 		br->dev->name, | 
 | 64 | 		id->prio[0], id->prio[1], | 
 | 65 | 		id->addr[0], id->addr[1], id->addr[2], | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | 		id->addr[3], id->addr[4], id->addr[5], | 
 | 67 | 		p->port_no, p->dev->name); | 
 | 68 |  | 
 | 69 | 	/* | 
 | 70 | 	 * According to the spec, the message age timer cannot be | 
 | 71 | 	 * running when we are the root bridge. So..  this was_root | 
 | 72 | 	 * check is redundant. I'm leaving it in for now, though. | 
 | 73 | 	 */ | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 74 | 	spin_lock(&br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | 	if (p->state == BR_STATE_DISABLED) | 
 | 76 | 		goto unlock; | 
 | 77 | 	was_root = br_is_root_bridge(br); | 
 | 78 |  | 
 | 79 | 	br_become_designated_port(p); | 
 | 80 | 	br_configuration_update(br); | 
 | 81 | 	br_port_state_selection(br); | 
 | 82 | 	if (br_is_root_bridge(br) && !was_root) | 
 | 83 | 		br_become_root_bridge(br); | 
 | 84 |  unlock: | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 85 | 	spin_unlock(&br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } | 
 | 87 |  | 
 | 88 | static void br_forward_delay_timer_expired(unsigned long arg) | 
 | 89 | { | 
 | 90 | 	struct net_bridge_port *p = (struct net_bridge_port *) arg; | 
 | 91 | 	struct net_bridge *br = p->br; | 
 | 92 |  | 
 | 93 | 	pr_debug("%s: %d(%s) forward delay timer\n", | 
 | 94 | 		 br->dev->name, p->port_no, p->dev->name); | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 95 | 	spin_lock(&br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | 	if (p->state == BR_STATE_LISTENING) { | 
 | 97 | 		p->state = BR_STATE_LEARNING; | 
 | 98 | 		mod_timer(&p->forward_delay_timer, | 
 | 99 | 			  jiffies + br->forward_delay); | 
 | 100 | 	} else if (p->state == BR_STATE_LEARNING) { | 
 | 101 | 		p->state = BR_STATE_FORWARDING; | 
 | 102 | 		if (br_is_designated_for_some_port(br)) | 
 | 103 | 			br_topology_change_detection(br); | 
 | 104 | 	} | 
 | 105 | 	br_log_state(p); | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 106 | 	spin_unlock(&br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } | 
 | 108 |  | 
 | 109 | static void br_tcn_timer_expired(unsigned long arg) | 
 | 110 | { | 
 | 111 | 	struct net_bridge *br = (struct net_bridge *) arg; | 
 | 112 |  | 
 | 113 | 	pr_debug("%s: tcn timer expired\n", br->dev->name); | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 114 | 	spin_lock(&br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | 	if (br->dev->flags & IFF_UP) { | 
 | 116 | 		br_transmit_tcn(br); | 
| YOSHIFUJI Hideaki | 9d6f229 | 2007-02-09 23:24:35 +0900 | [diff] [blame] | 117 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | 		mod_timer(&br->tcn_timer,jiffies + br->bridge_hello_time); | 
 | 119 | 	} | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 120 | 	spin_unlock(&br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } | 
 | 122 |  | 
 | 123 | static void br_topology_change_timer_expired(unsigned long arg) | 
 | 124 | { | 
 | 125 | 	struct net_bridge *br = (struct net_bridge *) arg; | 
 | 126 |  | 
 | 127 | 	pr_debug("%s: topo change timer expired\n", br->dev->name); | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 128 | 	spin_lock(&br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | 	br->topology_change_detected = 0; | 
 | 130 | 	br->topology_change = 0; | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 131 | 	spin_unlock(&br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } | 
 | 133 |  | 
 | 134 | static void br_hold_timer_expired(unsigned long arg) | 
 | 135 | { | 
 | 136 | 	struct net_bridge_port *p = (struct net_bridge_port *) arg; | 
 | 137 |  | 
| YOSHIFUJI Hideaki | 9d6f229 | 2007-02-09 23:24:35 +0900 | [diff] [blame] | 138 | 	pr_debug("%s: %d(%s) hold timer expired\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | 		 p->br->dev->name,  p->port_no, p->dev->name); | 
 | 140 |  | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 141 | 	spin_lock(&p->br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | 	if (p->config_pending) | 
 | 143 | 		br_transmit_config(p); | 
| Stephen Hemminger | e3efe08 | 2006-03-20 22:56:25 -0800 | [diff] [blame] | 144 | 	spin_unlock(&p->br->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } | 
 | 146 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | void br_stp_timer_init(struct net_bridge *br) | 
 | 148 | { | 
| Stephen Hemminger | a95fcac | 2006-03-20 22:56:38 -0800 | [diff] [blame] | 149 | 	setup_timer(&br->hello_timer, br_hello_timer_expired, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | 		      (unsigned long) br); | 
 | 151 |  | 
| Stephen Hemminger | a95fcac | 2006-03-20 22:56:38 -0800 | [diff] [blame] | 152 | 	setup_timer(&br->tcn_timer, br_tcn_timer_expired, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | 		      (unsigned long) br); | 
 | 154 |  | 
| Stephen Hemminger | a95fcac | 2006-03-20 22:56:38 -0800 | [diff] [blame] | 155 | 	setup_timer(&br->topology_change_timer, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | 		      br_topology_change_timer_expired, | 
 | 157 | 		      (unsigned long) br); | 
 | 158 |  | 
| Stephen Hemminger | a95fcac | 2006-03-20 22:56:38 -0800 | [diff] [blame] | 159 | 	setup_timer(&br->gc_timer, br_fdb_cleanup, (unsigned long) br); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } | 
 | 161 |  | 
 | 162 | void br_stp_port_timer_init(struct net_bridge_port *p) | 
 | 163 | { | 
| Stephen Hemminger | a95fcac | 2006-03-20 22:56:38 -0800 | [diff] [blame] | 164 | 	setup_timer(&p->message_age_timer, br_message_age_timer_expired, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | 		      (unsigned long) p); | 
 | 166 |  | 
| Stephen Hemminger | a95fcac | 2006-03-20 22:56:38 -0800 | [diff] [blame] | 167 | 	setup_timer(&p->forward_delay_timer, br_forward_delay_timer_expired, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | 		      (unsigned long) p); | 
| YOSHIFUJI Hideaki | 9d6f229 | 2007-02-09 23:24:35 +0900 | [diff] [blame] | 169 |  | 
| Stephen Hemminger | a95fcac | 2006-03-20 22:56:38 -0800 | [diff] [blame] | 170 | 	setup_timer(&p->hold_timer, br_hold_timer_expired, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | 		      (unsigned long) p); | 
| YOSHIFUJI Hideaki | 9d6f229 | 2007-02-09 23:24:35 +0900 | [diff] [blame] | 172 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 |  | 
 | 174 | /* Report ticks left (in USER_HZ) used for API */ | 
 | 175 | unsigned long br_timer_value(const struct timer_list *timer) | 
 | 176 | { | 
 | 177 | 	return timer_pending(timer) | 
 | 178 | 		? jiffies_to_clock_t(timer->expires - jiffies) : 0; | 
 | 179 | } |