| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * This program is free software; you can redistribute it and/or modify | 
|  | 3 | * it under the terms of the GNU General Public License as published by | 
|  | 4 | * the Free Software Foundation; either version 2 of the License, or | 
|  | 5 | * (at your option) any later version. | 
|  | 6 | * | 
|  | 7 | * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk) | 
|  | 8 | * Copyright (C) Terry Dawson VK2KTJ (terry@animats.net) | 
|  | 9 | */ | 
|  | 10 | #include <linux/errno.h> | 
|  | 11 | #include <linux/types.h> | 
|  | 12 | #include <linux/socket.h> | 
|  | 13 | #include <linux/in.h> | 
|  | 14 | #include <linux/kernel.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/timer.h> | 
|  | 16 | #include <linux/string.h> | 
|  | 17 | #include <linux/sockios.h> | 
|  | 18 | #include <linux/net.h> | 
|  | 19 | #include <net/ax25.h> | 
|  | 20 | #include <linux/inet.h> | 
|  | 21 | #include <linux/netdevice.h> | 
|  | 22 | #include <net/arp.h> | 
|  | 23 | #include <linux/if_arp.h> | 
|  | 24 | #include <linux/skbuff.h> | 
|  | 25 | #include <net/sock.h> | 
| Arnaldo Carvalho de Melo | c752f07 | 2005-08-09 20:08:28 -0700 | [diff] [blame] | 26 | #include <net/tcp_states.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <asm/system.h> | 
|  | 28 | #include <asm/uaccess.h> | 
|  | 29 | #include <linux/fcntl.h> | 
|  | 30 | #include <linux/termios.h>	/* For TIOCINQ/OUTQ */ | 
|  | 31 | #include <linux/mm.h> | 
|  | 32 | #include <linux/interrupt.h> | 
|  | 33 | #include <linux/notifier.h> | 
|  | 34 | #include <linux/netfilter.h> | 
|  | 35 | #include <linux/init.h> | 
|  | 36 | #include <net/rose.h> | 
|  | 37 | #include <linux/seq_file.h> | 
|  | 38 |  | 
|  | 39 | static unsigned int rose_neigh_no = 1; | 
|  | 40 |  | 
|  | 41 | static struct rose_node  *rose_node_list; | 
|  | 42 | static DEFINE_SPINLOCK(rose_node_list_lock); | 
|  | 43 | static struct rose_neigh *rose_neigh_list; | 
|  | 44 | static DEFINE_SPINLOCK(rose_neigh_list_lock); | 
|  | 45 | static struct rose_route *rose_route_list; | 
|  | 46 | static DEFINE_SPINLOCK(rose_route_list_lock); | 
|  | 47 |  | 
| Alexey Dobriyan | 891e6a9 | 2007-10-07 23:44:17 -0700 | [diff] [blame] | 48 | struct rose_neigh *rose_loopback_neigh; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | /* | 
|  | 51 | *	Add a new route to a node, and in the process add the node and the | 
|  | 52 | *	neighbour if it is new. | 
|  | 53 | */ | 
| Ralf Baechle | c9266b9 | 2006-12-14 15:49:28 -0800 | [diff] [blame] | 54 | static int __must_check rose_add_node(struct rose_route_struct *rose_route, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | struct net_device *dev) | 
|  | 56 | { | 
|  | 57 | struct rose_node  *rose_node, *rose_tmpn, *rose_tmpp; | 
|  | 58 | struct rose_neigh *rose_neigh; | 
|  | 59 | int i, res = 0; | 
|  | 60 |  | 
|  | 61 | spin_lock_bh(&rose_node_list_lock); | 
|  | 62 | spin_lock_bh(&rose_neigh_list_lock); | 
|  | 63 |  | 
|  | 64 | rose_node = rose_node_list; | 
|  | 65 | while (rose_node != NULL) { | 
|  | 66 | if ((rose_node->mask == rose_route->mask) && | 
|  | 67 | (rosecmpm(&rose_route->address, &rose_node->address, | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 68 | rose_route->mask) == 0)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | break; | 
|  | 70 | rose_node = rose_node->next; | 
|  | 71 | } | 
|  | 72 |  | 
|  | 73 | if (rose_node != NULL && rose_node->loopback) { | 
|  | 74 | res = -EINVAL; | 
|  | 75 | goto out; | 
|  | 76 | } | 
|  | 77 |  | 
|  | 78 | rose_neigh = rose_neigh_list; | 
|  | 79 | while (rose_neigh != NULL) { | 
|  | 80 | if (ax25cmp(&rose_route->neighbour, &rose_neigh->callsign) == 0 | 
|  | 81 | && rose_neigh->dev == dev) | 
|  | 82 | break; | 
|  | 83 | rose_neigh = rose_neigh->next; | 
|  | 84 | } | 
|  | 85 |  | 
|  | 86 | if (rose_neigh == NULL) { | 
|  | 87 | rose_neigh = kmalloc(sizeof(*rose_neigh), GFP_ATOMIC); | 
|  | 88 | if (rose_neigh == NULL) { | 
|  | 89 | res = -ENOMEM; | 
|  | 90 | goto out; | 
|  | 91 | } | 
|  | 92 |  | 
|  | 93 | rose_neigh->callsign  = rose_route->neighbour; | 
|  | 94 | rose_neigh->digipeat  = NULL; | 
|  | 95 | rose_neigh->ax25      = NULL; | 
|  | 96 | rose_neigh->dev       = dev; | 
|  | 97 | rose_neigh->count     = 0; | 
|  | 98 | rose_neigh->use       = 0; | 
|  | 99 | rose_neigh->dce_mode  = 0; | 
|  | 100 | rose_neigh->loopback  = 0; | 
|  | 101 | rose_neigh->number    = rose_neigh_no++; | 
|  | 102 | rose_neigh->restarted = 0; | 
|  | 103 |  | 
|  | 104 | skb_queue_head_init(&rose_neigh->queue); | 
|  | 105 |  | 
|  | 106 | init_timer(&rose_neigh->ftimer); | 
|  | 107 | init_timer(&rose_neigh->t0timer); | 
|  | 108 |  | 
|  | 109 | if (rose_route->ndigis != 0) { | 
|  | 110 | if ((rose_neigh->digipeat = kmalloc(sizeof(ax25_digi), GFP_KERNEL)) == NULL) { | 
|  | 111 | kfree(rose_neigh); | 
|  | 112 | res = -ENOMEM; | 
|  | 113 | goto out; | 
|  | 114 | } | 
|  | 115 |  | 
|  | 116 | rose_neigh->digipeat->ndigi      = rose_route->ndigis; | 
|  | 117 | rose_neigh->digipeat->lastrepeat = -1; | 
|  | 118 |  | 
|  | 119 | for (i = 0; i < rose_route->ndigis; i++) { | 
|  | 120 | rose_neigh->digipeat->calls[i]    = | 
|  | 121 | rose_route->digipeaters[i]; | 
|  | 122 | rose_neigh->digipeat->repeated[i] = 0; | 
|  | 123 | } | 
|  | 124 | } | 
|  | 125 |  | 
|  | 126 | rose_neigh->next = rose_neigh_list; | 
|  | 127 | rose_neigh_list  = rose_neigh; | 
|  | 128 | } | 
|  | 129 |  | 
|  | 130 | /* | 
|  | 131 | * This is a new node to be inserted into the list. Find where it needs | 
|  | 132 | * to be inserted into the list, and insert it. We want to be sure | 
|  | 133 | * to order the list in descending order of mask size to ensure that | 
|  | 134 | * later when we are searching this list the first match will be the | 
|  | 135 | * best match. | 
|  | 136 | */ | 
|  | 137 | if (rose_node == NULL) { | 
|  | 138 | rose_tmpn = rose_node_list; | 
|  | 139 | rose_tmpp = NULL; | 
|  | 140 |  | 
|  | 141 | while (rose_tmpn != NULL) { | 
|  | 142 | if (rose_tmpn->mask > rose_route->mask) { | 
|  | 143 | rose_tmpp = rose_tmpn; | 
|  | 144 | rose_tmpn = rose_tmpn->next; | 
|  | 145 | } else { | 
|  | 146 | break; | 
|  | 147 | } | 
|  | 148 | } | 
|  | 149 |  | 
|  | 150 | /* create new node */ | 
|  | 151 | rose_node = kmalloc(sizeof(*rose_node), GFP_ATOMIC); | 
|  | 152 | if (rose_node == NULL) { | 
|  | 153 | res = -ENOMEM; | 
|  | 154 | goto out; | 
|  | 155 | } | 
|  | 156 |  | 
|  | 157 | rose_node->address      = rose_route->address; | 
|  | 158 | rose_node->mask         = rose_route->mask; | 
|  | 159 | rose_node->count        = 1; | 
|  | 160 | rose_node->loopback     = 0; | 
|  | 161 | rose_node->neighbour[0] = rose_neigh; | 
|  | 162 |  | 
|  | 163 | if (rose_tmpn == NULL) { | 
|  | 164 | if (rose_tmpp == NULL) {	/* Empty list */ | 
|  | 165 | rose_node_list  = rose_node; | 
|  | 166 | rose_node->next = NULL; | 
|  | 167 | } else { | 
|  | 168 | rose_tmpp->next = rose_node; | 
|  | 169 | rose_node->next = NULL; | 
|  | 170 | } | 
|  | 171 | } else { | 
|  | 172 | if (rose_tmpp == NULL) {	/* 1st node */ | 
|  | 173 | rose_node->next = rose_node_list; | 
|  | 174 | rose_node_list  = rose_node; | 
|  | 175 | } else { | 
|  | 176 | rose_tmpp->next = rose_node; | 
|  | 177 | rose_node->next = rose_tmpn; | 
|  | 178 | } | 
|  | 179 | } | 
|  | 180 | rose_neigh->count++; | 
|  | 181 |  | 
|  | 182 | goto out; | 
|  | 183 | } | 
|  | 184 |  | 
|  | 185 | /* We have space, slot it in */ | 
|  | 186 | if (rose_node->count < 3) { | 
|  | 187 | rose_node->neighbour[rose_node->count] = rose_neigh; | 
|  | 188 | rose_node->count++; | 
|  | 189 | rose_neigh->count++; | 
|  | 190 | } | 
|  | 191 |  | 
|  | 192 | out: | 
|  | 193 | spin_unlock_bh(&rose_neigh_list_lock); | 
|  | 194 | spin_unlock_bh(&rose_node_list_lock); | 
|  | 195 |  | 
|  | 196 | return res; | 
|  | 197 | } | 
|  | 198 |  | 
|  | 199 | /* | 
|  | 200 | * Caller is holding rose_node_list_lock. | 
|  | 201 | */ | 
|  | 202 | static void rose_remove_node(struct rose_node *rose_node) | 
|  | 203 | { | 
|  | 204 | struct rose_node *s; | 
|  | 205 |  | 
|  | 206 | if ((s = rose_node_list) == rose_node) { | 
|  | 207 | rose_node_list = rose_node->next; | 
|  | 208 | kfree(rose_node); | 
|  | 209 | return; | 
|  | 210 | } | 
|  | 211 |  | 
|  | 212 | while (s != NULL && s->next != NULL) { | 
|  | 213 | if (s->next == rose_node) { | 
|  | 214 | s->next = rose_node->next; | 
|  | 215 | kfree(rose_node); | 
|  | 216 | return; | 
|  | 217 | } | 
|  | 218 |  | 
|  | 219 | s = s->next; | 
|  | 220 | } | 
|  | 221 | } | 
|  | 222 |  | 
|  | 223 | /* | 
|  | 224 | * Caller is holding rose_neigh_list_lock. | 
|  | 225 | */ | 
|  | 226 | static void rose_remove_neigh(struct rose_neigh *rose_neigh) | 
|  | 227 | { | 
|  | 228 | struct rose_neigh *s; | 
|  | 229 |  | 
|  | 230 | rose_stop_ftimer(rose_neigh); | 
|  | 231 | rose_stop_t0timer(rose_neigh); | 
|  | 232 |  | 
|  | 233 | skb_queue_purge(&rose_neigh->queue); | 
|  | 234 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | if ((s = rose_neigh_list) == rose_neigh) { | 
|  | 236 | rose_neigh_list = rose_neigh->next; | 
| Jesper Juhl | a51482b | 2005-11-08 09:41:34 -0800 | [diff] [blame] | 237 | kfree(rose_neigh->digipeat); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | kfree(rose_neigh); | 
|  | 239 | return; | 
|  | 240 | } | 
|  | 241 |  | 
|  | 242 | while (s != NULL && s->next != NULL) { | 
|  | 243 | if (s->next == rose_neigh) { | 
|  | 244 | s->next = rose_neigh->next; | 
| Jesper Juhl | a51482b | 2005-11-08 09:41:34 -0800 | [diff] [blame] | 245 | kfree(rose_neigh->digipeat); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | kfree(rose_neigh); | 
|  | 247 | return; | 
|  | 248 | } | 
|  | 249 |  | 
|  | 250 | s = s->next; | 
|  | 251 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | } | 
|  | 253 |  | 
|  | 254 | /* | 
|  | 255 | * Caller is holding rose_route_list_lock. | 
|  | 256 | */ | 
|  | 257 | static void rose_remove_route(struct rose_route *rose_route) | 
|  | 258 | { | 
|  | 259 | struct rose_route *s; | 
|  | 260 |  | 
|  | 261 | if (rose_route->neigh1 != NULL) | 
|  | 262 | rose_route->neigh1->use--; | 
|  | 263 |  | 
|  | 264 | if (rose_route->neigh2 != NULL) | 
|  | 265 | rose_route->neigh2->use--; | 
|  | 266 |  | 
|  | 267 | if ((s = rose_route_list) == rose_route) { | 
|  | 268 | rose_route_list = rose_route->next; | 
|  | 269 | kfree(rose_route); | 
|  | 270 | return; | 
|  | 271 | } | 
|  | 272 |  | 
|  | 273 | while (s != NULL && s->next != NULL) { | 
|  | 274 | if (s->next == rose_route) { | 
|  | 275 | s->next = rose_route->next; | 
|  | 276 | kfree(rose_route); | 
|  | 277 | return; | 
|  | 278 | } | 
|  | 279 |  | 
|  | 280 | s = s->next; | 
|  | 281 | } | 
|  | 282 | } | 
|  | 283 |  | 
|  | 284 | /* | 
|  | 285 | *	"Delete" a node. Strictly speaking remove a route to a node. The node | 
|  | 286 | *	is only deleted if no routes are left to it. | 
|  | 287 | */ | 
|  | 288 | static int rose_del_node(struct rose_route_struct *rose_route, | 
|  | 289 | struct net_device *dev) | 
|  | 290 | { | 
|  | 291 | struct rose_node  *rose_node; | 
|  | 292 | struct rose_neigh *rose_neigh; | 
|  | 293 | int i, err = 0; | 
|  | 294 |  | 
|  | 295 | spin_lock_bh(&rose_node_list_lock); | 
|  | 296 | spin_lock_bh(&rose_neigh_list_lock); | 
|  | 297 |  | 
|  | 298 | rose_node = rose_node_list; | 
|  | 299 | while (rose_node != NULL) { | 
|  | 300 | if ((rose_node->mask == rose_route->mask) && | 
|  | 301 | (rosecmpm(&rose_route->address, &rose_node->address, | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 302 | rose_route->mask) == 0)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | break; | 
|  | 304 | rose_node = rose_node->next; | 
|  | 305 | } | 
|  | 306 |  | 
|  | 307 | if (rose_node == NULL || rose_node->loopback) { | 
|  | 308 | err = -EINVAL; | 
|  | 309 | goto out; | 
|  | 310 | } | 
|  | 311 |  | 
|  | 312 | rose_neigh = rose_neigh_list; | 
|  | 313 | while (rose_neigh != NULL) { | 
|  | 314 | if (ax25cmp(&rose_route->neighbour, &rose_neigh->callsign) == 0 | 
|  | 315 | && rose_neigh->dev == dev) | 
|  | 316 | break; | 
|  | 317 | rose_neigh = rose_neigh->next; | 
|  | 318 | } | 
|  | 319 |  | 
|  | 320 | if (rose_neigh == NULL) { | 
|  | 321 | err = -EINVAL; | 
|  | 322 | goto out; | 
|  | 323 | } | 
|  | 324 |  | 
|  | 325 | for (i = 0; i < rose_node->count; i++) { | 
|  | 326 | if (rose_node->neighbour[i] == rose_neigh) { | 
|  | 327 | rose_neigh->count--; | 
|  | 328 |  | 
|  | 329 | if (rose_neigh->count == 0 && rose_neigh->use == 0) | 
|  | 330 | rose_remove_neigh(rose_neigh); | 
|  | 331 |  | 
|  | 332 | rose_node->count--; | 
|  | 333 |  | 
|  | 334 | if (rose_node->count == 0) { | 
|  | 335 | rose_remove_node(rose_node); | 
|  | 336 | } else { | 
|  | 337 | switch (i) { | 
|  | 338 | case 0: | 
|  | 339 | rose_node->neighbour[0] = | 
|  | 340 | rose_node->neighbour[1]; | 
|  | 341 | case 1: | 
|  | 342 | rose_node->neighbour[1] = | 
|  | 343 | rose_node->neighbour[2]; | 
|  | 344 | case 2: | 
|  | 345 | break; | 
|  | 346 | } | 
|  | 347 | } | 
|  | 348 | goto out; | 
|  | 349 | } | 
|  | 350 | } | 
|  | 351 | err = -EINVAL; | 
|  | 352 |  | 
|  | 353 | out: | 
|  | 354 | spin_unlock_bh(&rose_neigh_list_lock); | 
|  | 355 | spin_unlock_bh(&rose_node_list_lock); | 
|  | 356 |  | 
|  | 357 | return err; | 
|  | 358 | } | 
|  | 359 |  | 
|  | 360 | /* | 
|  | 361 | *	Add the loopback neighbour. | 
|  | 362 | */ | 
| Ralf Baechle | a3d3840 | 2006-12-14 15:52:13 -0800 | [diff] [blame] | 363 | void rose_add_loopback_neigh(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | { | 
| Alexey Dobriyan | 891e6a9 | 2007-10-07 23:44:17 -0700 | [diff] [blame] | 365 | struct rose_neigh *sn; | 
|  | 366 |  | 
|  | 367 | rose_loopback_neigh = kmalloc(sizeof(struct rose_neigh), GFP_KERNEL); | 
|  | 368 | if (!rose_loopback_neigh) | 
|  | 369 | return; | 
|  | 370 | sn = rose_loopback_neigh; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 |  | 
| Ralf Baechle | a3d3840 | 2006-12-14 15:52:13 -0800 | [diff] [blame] | 372 | sn->callsign  = null_ax25_address; | 
|  | 373 | sn->digipeat  = NULL; | 
|  | 374 | sn->ax25      = NULL; | 
|  | 375 | sn->dev       = NULL; | 
|  | 376 | sn->count     = 0; | 
|  | 377 | sn->use       = 0; | 
|  | 378 | sn->dce_mode  = 1; | 
|  | 379 | sn->loopback  = 1; | 
|  | 380 | sn->number    = rose_neigh_no++; | 
|  | 381 | sn->restarted = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 |  | 
| Ralf Baechle | a3d3840 | 2006-12-14 15:52:13 -0800 | [diff] [blame] | 383 | skb_queue_head_init(&sn->queue); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 |  | 
| Ralf Baechle | a3d3840 | 2006-12-14 15:52:13 -0800 | [diff] [blame] | 385 | init_timer(&sn->ftimer); | 
|  | 386 | init_timer(&sn->t0timer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 |  | 
|  | 388 | spin_lock_bh(&rose_neigh_list_lock); | 
| Ralf Baechle | a3d3840 | 2006-12-14 15:52:13 -0800 | [diff] [blame] | 389 | sn->next = rose_neigh_list; | 
|  | 390 | rose_neigh_list           = sn; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | spin_unlock_bh(&rose_neigh_list_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | } | 
|  | 393 |  | 
|  | 394 | /* | 
|  | 395 | *	Add a loopback node. | 
|  | 396 | */ | 
|  | 397 | int rose_add_loopback_node(rose_address *address) | 
|  | 398 | { | 
|  | 399 | struct rose_node *rose_node; | 
| Alexey Dobriyan | 0506d40 | 2006-12-02 22:17:48 -0800 | [diff] [blame] | 400 | int err = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 |  | 
|  | 402 | spin_lock_bh(&rose_node_list_lock); | 
|  | 403 |  | 
|  | 404 | rose_node = rose_node_list; | 
|  | 405 | while (rose_node != NULL) { | 
|  | 406 | if ((rose_node->mask == 10) && | 
|  | 407 | (rosecmpm(address, &rose_node->address, 10) == 0) && | 
|  | 408 | rose_node->loopback) | 
|  | 409 | break; | 
|  | 410 | rose_node = rose_node->next; | 
|  | 411 | } | 
|  | 412 |  | 
|  | 413 | if (rose_node != NULL) | 
|  | 414 | goto out; | 
|  | 415 |  | 
|  | 416 | if ((rose_node = kmalloc(sizeof(*rose_node), GFP_ATOMIC)) == NULL) { | 
|  | 417 | err = -ENOMEM; | 
|  | 418 | goto out; | 
|  | 419 | } | 
|  | 420 |  | 
|  | 421 | rose_node->address      = *address; | 
|  | 422 | rose_node->mask         = 10; | 
|  | 423 | rose_node->count        = 1; | 
|  | 424 | rose_node->loopback     = 1; | 
| Alexey Dobriyan | 891e6a9 | 2007-10-07 23:44:17 -0700 | [diff] [blame] | 425 | rose_node->neighbour[0] = rose_loopback_neigh; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 |  | 
|  | 427 | /* Insert at the head of list. Address is always mask=10 */ | 
|  | 428 | rose_node->next = rose_node_list; | 
|  | 429 | rose_node_list  = rose_node; | 
|  | 430 |  | 
| Alexey Dobriyan | 891e6a9 | 2007-10-07 23:44:17 -0700 | [diff] [blame] | 431 | rose_loopback_neigh->count++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 |  | 
|  | 433 | out: | 
|  | 434 | spin_unlock_bh(&rose_node_list_lock); | 
|  | 435 |  | 
| Alexey Dobriyan | 0506d40 | 2006-12-02 22:17:48 -0800 | [diff] [blame] | 436 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } | 
|  | 438 |  | 
|  | 439 | /* | 
|  | 440 | *	Delete a loopback node. | 
|  | 441 | */ | 
|  | 442 | void rose_del_loopback_node(rose_address *address) | 
|  | 443 | { | 
|  | 444 | struct rose_node *rose_node; | 
|  | 445 |  | 
|  | 446 | spin_lock_bh(&rose_node_list_lock); | 
|  | 447 |  | 
|  | 448 | rose_node = rose_node_list; | 
|  | 449 | while (rose_node != NULL) { | 
|  | 450 | if ((rose_node->mask == 10) && | 
|  | 451 | (rosecmpm(address, &rose_node->address, 10) == 0) && | 
|  | 452 | rose_node->loopback) | 
|  | 453 | break; | 
|  | 454 | rose_node = rose_node->next; | 
|  | 455 | } | 
|  | 456 |  | 
|  | 457 | if (rose_node == NULL) | 
|  | 458 | goto out; | 
|  | 459 |  | 
|  | 460 | rose_remove_node(rose_node); | 
|  | 461 |  | 
| Alexey Dobriyan | 891e6a9 | 2007-10-07 23:44:17 -0700 | [diff] [blame] | 462 | rose_loopback_neigh->count--; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 |  | 
|  | 464 | out: | 
|  | 465 | spin_unlock_bh(&rose_node_list_lock); | 
|  | 466 | } | 
|  | 467 |  | 
|  | 468 | /* | 
|  | 469 | *	A device has been removed. Remove its routes and neighbours. | 
|  | 470 | */ | 
|  | 471 | void rose_rt_device_down(struct net_device *dev) | 
|  | 472 | { | 
|  | 473 | struct rose_neigh *s, *rose_neigh; | 
|  | 474 | struct rose_node  *t, *rose_node; | 
|  | 475 | int i; | 
|  | 476 |  | 
|  | 477 | spin_lock_bh(&rose_node_list_lock); | 
|  | 478 | spin_lock_bh(&rose_neigh_list_lock); | 
|  | 479 | rose_neigh = rose_neigh_list; | 
|  | 480 | while (rose_neigh != NULL) { | 
|  | 481 | s          = rose_neigh; | 
|  | 482 | rose_neigh = rose_neigh->next; | 
|  | 483 |  | 
|  | 484 | if (s->dev != dev) | 
|  | 485 | continue; | 
|  | 486 |  | 
|  | 487 | rose_node = rose_node_list; | 
|  | 488 |  | 
|  | 489 | while (rose_node != NULL) { | 
|  | 490 | t         = rose_node; | 
|  | 491 | rose_node = rose_node->next; | 
|  | 492 |  | 
|  | 493 | for (i = 0; i < t->count; i++) { | 
|  | 494 | if (t->neighbour[i] != s) | 
|  | 495 | continue; | 
|  | 496 |  | 
|  | 497 | t->count--; | 
|  | 498 |  | 
|  | 499 | switch (i) { | 
|  | 500 | case 0: | 
|  | 501 | t->neighbour[0] = t->neighbour[1]; | 
|  | 502 | case 1: | 
|  | 503 | t->neighbour[1] = t->neighbour[2]; | 
|  | 504 | case 2: | 
|  | 505 | break; | 
|  | 506 | } | 
|  | 507 | } | 
|  | 508 |  | 
|  | 509 | if (t->count <= 0) | 
|  | 510 | rose_remove_node(t); | 
|  | 511 | } | 
|  | 512 |  | 
|  | 513 | rose_remove_neigh(s); | 
|  | 514 | } | 
|  | 515 | spin_unlock_bh(&rose_neigh_list_lock); | 
|  | 516 | spin_unlock_bh(&rose_node_list_lock); | 
|  | 517 | } | 
|  | 518 |  | 
|  | 519 | #if 0 /* Currently unused */ | 
|  | 520 | /* | 
|  | 521 | *	A device has been removed. Remove its links. | 
|  | 522 | */ | 
|  | 523 | void rose_route_device_down(struct net_device *dev) | 
|  | 524 | { | 
|  | 525 | struct rose_route *s, *rose_route; | 
|  | 526 |  | 
|  | 527 | spin_lock_bh(&rose_route_list_lock); | 
|  | 528 | rose_route = rose_route_list; | 
|  | 529 | while (rose_route != NULL) { | 
|  | 530 | s          = rose_route; | 
|  | 531 | rose_route = rose_route->next; | 
|  | 532 |  | 
|  | 533 | if (s->neigh1->dev == dev || s->neigh2->dev == dev) | 
|  | 534 | rose_remove_route(s); | 
|  | 535 | } | 
|  | 536 | spin_unlock_bh(&rose_route_list_lock); | 
|  | 537 | } | 
|  | 538 | #endif | 
|  | 539 |  | 
|  | 540 | /* | 
|  | 541 | *	Clear all nodes and neighbours out, except for neighbours with | 
|  | 542 | *	active connections going through them. | 
|  | 543 | *  Do not clear loopback neighbour and nodes. | 
|  | 544 | */ | 
|  | 545 | static int rose_clear_routes(void) | 
|  | 546 | { | 
|  | 547 | struct rose_neigh *s, *rose_neigh; | 
|  | 548 | struct rose_node  *t, *rose_node; | 
|  | 549 |  | 
|  | 550 | spin_lock_bh(&rose_node_list_lock); | 
|  | 551 | spin_lock_bh(&rose_neigh_list_lock); | 
|  | 552 |  | 
|  | 553 | rose_neigh = rose_neigh_list; | 
|  | 554 | rose_node  = rose_node_list; | 
|  | 555 |  | 
|  | 556 | while (rose_node != NULL) { | 
|  | 557 | t         = rose_node; | 
|  | 558 | rose_node = rose_node->next; | 
|  | 559 | if (!t->loopback) | 
|  | 560 | rose_remove_node(t); | 
|  | 561 | } | 
|  | 562 |  | 
|  | 563 | while (rose_neigh != NULL) { | 
|  | 564 | s          = rose_neigh; | 
|  | 565 | rose_neigh = rose_neigh->next; | 
|  | 566 |  | 
|  | 567 | if (s->use == 0 && !s->loopback) { | 
|  | 568 | s->count = 0; | 
|  | 569 | rose_remove_neigh(s); | 
|  | 570 | } | 
|  | 571 | } | 
|  | 572 |  | 
|  | 573 | spin_unlock_bh(&rose_neigh_list_lock); | 
|  | 574 | spin_unlock_bh(&rose_node_list_lock); | 
|  | 575 |  | 
|  | 576 | return 0; | 
|  | 577 | } | 
|  | 578 |  | 
|  | 579 | /* | 
|  | 580 | *	Check that the device given is a valid AX.25 interface that is "up". | 
|  | 581 | */ | 
|  | 582 | static struct net_device *rose_ax25_dev_get(char *devname) | 
|  | 583 | { | 
|  | 584 | struct net_device *dev; | 
|  | 585 |  | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 586 | if ((dev = dev_get_by_name(&init_net, devname)) == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | return NULL; | 
|  | 588 |  | 
|  | 589 | if ((dev->flags & IFF_UP) && dev->type == ARPHRD_AX25) | 
|  | 590 | return dev; | 
|  | 591 |  | 
|  | 592 | dev_put(dev); | 
|  | 593 | return NULL; | 
|  | 594 | } | 
|  | 595 |  | 
|  | 596 | /* | 
|  | 597 | *	Find the first active ROSE device, usually "rose0". | 
|  | 598 | */ | 
|  | 599 | struct net_device *rose_dev_first(void) | 
|  | 600 | { | 
|  | 601 | struct net_device *dev, *first = NULL; | 
|  | 602 |  | 
|  | 603 | read_lock(&dev_base_lock); | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 604 | for_each_netdev(&init_net, dev) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE) | 
|  | 606 | if (first == NULL || strncmp(dev->name, first->name, 3) < 0) | 
|  | 607 | first = dev; | 
|  | 608 | } | 
|  | 609 | read_unlock(&dev_base_lock); | 
|  | 610 |  | 
|  | 611 | return first; | 
|  | 612 | } | 
|  | 613 |  | 
|  | 614 | /* | 
|  | 615 | *	Find the ROSE device for the given address. | 
|  | 616 | */ | 
|  | 617 | struct net_device *rose_dev_get(rose_address *addr) | 
|  | 618 | { | 
|  | 619 | struct net_device *dev; | 
|  | 620 |  | 
|  | 621 | read_lock(&dev_base_lock); | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 622 | for_each_netdev(&init_net, dev) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE && rosecmp(addr, (rose_address *)dev->dev_addr) == 0) { | 
|  | 624 | dev_hold(dev); | 
|  | 625 | goto out; | 
|  | 626 | } | 
|  | 627 | } | 
| Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 628 | dev = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | out: | 
|  | 630 | read_unlock(&dev_base_lock); | 
|  | 631 | return dev; | 
|  | 632 | } | 
|  | 633 |  | 
|  | 634 | static int rose_dev_exists(rose_address *addr) | 
|  | 635 | { | 
|  | 636 | struct net_device *dev; | 
|  | 637 |  | 
|  | 638 | read_lock(&dev_base_lock); | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 639 | for_each_netdev(&init_net, dev) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE && rosecmp(addr, (rose_address *)dev->dev_addr) == 0) | 
|  | 641 | goto out; | 
|  | 642 | } | 
| Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 643 | dev = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | out: | 
|  | 645 | read_unlock(&dev_base_lock); | 
|  | 646 | return dev != NULL; | 
|  | 647 | } | 
|  | 648 |  | 
|  | 649 |  | 
|  | 650 |  | 
|  | 651 |  | 
|  | 652 | struct rose_route *rose_route_free_lci(unsigned int lci, struct rose_neigh *neigh) | 
|  | 653 | { | 
|  | 654 | struct rose_route *rose_route; | 
|  | 655 |  | 
|  | 656 | for (rose_route = rose_route_list; rose_route != NULL; rose_route = rose_route->next) | 
|  | 657 | if ((rose_route->neigh1 == neigh && rose_route->lci1 == lci) || | 
|  | 658 | (rose_route->neigh2 == neigh && rose_route->lci2 == lci)) | 
|  | 659 | return rose_route; | 
|  | 660 |  | 
|  | 661 | return NULL; | 
|  | 662 | } | 
|  | 663 |  | 
|  | 664 | /* | 
|  | 665 | *	Find a neighbour given a ROSE address. | 
|  | 666 | */ | 
|  | 667 | struct rose_neigh *rose_get_neigh(rose_address *addr, unsigned char *cause, | 
|  | 668 | unsigned char *diagnostic) | 
|  | 669 | { | 
|  | 670 | struct rose_neigh *res = NULL; | 
|  | 671 | struct rose_node *node; | 
|  | 672 | int failed = 0; | 
|  | 673 | int i; | 
|  | 674 |  | 
|  | 675 | spin_lock_bh(&rose_node_list_lock); | 
|  | 676 | for (node = rose_node_list; node != NULL; node = node->next) { | 
|  | 677 | if (rosecmpm(addr, &node->address, node->mask) == 0) { | 
|  | 678 | for (i = 0; i < node->count; i++) { | 
|  | 679 | if (!rose_ftimer_running(node->neighbour[i])) { | 
|  | 680 | res = node->neighbour[i]; | 
|  | 681 | goto out; | 
|  | 682 | } else | 
|  | 683 | failed = 1; | 
|  | 684 | } | 
|  | 685 | break; | 
|  | 686 | } | 
|  | 687 | } | 
|  | 688 |  | 
|  | 689 | if (failed) { | 
|  | 690 | *cause      = ROSE_OUT_OF_ORDER; | 
|  | 691 | *diagnostic = 0; | 
|  | 692 | } else { | 
|  | 693 | *cause      = ROSE_NOT_OBTAINABLE; | 
|  | 694 | *diagnostic = 0; | 
|  | 695 | } | 
|  | 696 |  | 
|  | 697 | out: | 
|  | 698 | spin_unlock_bh(&rose_node_list_lock); | 
|  | 699 |  | 
|  | 700 | return res; | 
|  | 701 | } | 
|  | 702 |  | 
|  | 703 | /* | 
|  | 704 | *	Handle the ioctls that control the routing functions. | 
|  | 705 | */ | 
|  | 706 | int rose_rt_ioctl(unsigned int cmd, void __user *arg) | 
|  | 707 | { | 
|  | 708 | struct rose_route_struct rose_route; | 
|  | 709 | struct net_device *dev; | 
|  | 710 | int err; | 
|  | 711 |  | 
|  | 712 | switch (cmd) { | 
|  | 713 | case SIOCADDRT: | 
|  | 714 | if (copy_from_user(&rose_route, arg, sizeof(struct rose_route_struct))) | 
|  | 715 | return -EFAULT; | 
|  | 716 | if ((dev = rose_ax25_dev_get(rose_route.device)) == NULL) | 
|  | 717 | return -EINVAL; | 
|  | 718 | if (rose_dev_exists(&rose_route.address)) { /* Can't add routes to ourself */ | 
|  | 719 | dev_put(dev); | 
|  | 720 | return -EINVAL; | 
|  | 721 | } | 
|  | 722 | if (rose_route.mask > 10) /* Mask can't be more than 10 digits */ | 
|  | 723 | return -EINVAL; | 
| Ralf Baechle | 95df1c0 | 2005-10-18 21:39:33 +0100 | [diff] [blame] | 724 | if (rose_route.ndigis > AX25_MAX_DIGIS) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | return -EINVAL; | 
|  | 726 | err = rose_add_node(&rose_route, dev); | 
|  | 727 | dev_put(dev); | 
|  | 728 | return err; | 
|  | 729 |  | 
|  | 730 | case SIOCDELRT: | 
|  | 731 | if (copy_from_user(&rose_route, arg, sizeof(struct rose_route_struct))) | 
|  | 732 | return -EFAULT; | 
|  | 733 | if ((dev = rose_ax25_dev_get(rose_route.device)) == NULL) | 
|  | 734 | return -EINVAL; | 
|  | 735 | err = rose_del_node(&rose_route, dev); | 
|  | 736 | dev_put(dev); | 
|  | 737 | return err; | 
|  | 738 |  | 
|  | 739 | case SIOCRSCLRRT: | 
|  | 740 | return rose_clear_routes(); | 
|  | 741 |  | 
|  | 742 | default: | 
|  | 743 | return -EINVAL; | 
|  | 744 | } | 
|  | 745 |  | 
|  | 746 | return 0; | 
|  | 747 | } | 
|  | 748 |  | 
|  | 749 | static void rose_del_route_by_neigh(struct rose_neigh *rose_neigh) | 
|  | 750 | { | 
|  | 751 | struct rose_route *rose_route, *s; | 
|  | 752 |  | 
|  | 753 | rose_neigh->restarted = 0; | 
|  | 754 |  | 
|  | 755 | rose_stop_t0timer(rose_neigh); | 
|  | 756 | rose_start_ftimer(rose_neigh); | 
|  | 757 |  | 
|  | 758 | skb_queue_purge(&rose_neigh->queue); | 
|  | 759 |  | 
|  | 760 | spin_lock_bh(&rose_route_list_lock); | 
|  | 761 |  | 
|  | 762 | rose_route = rose_route_list; | 
|  | 763 |  | 
|  | 764 | while (rose_route != NULL) { | 
|  | 765 | if ((rose_route->neigh1 == rose_neigh && rose_route->neigh2 == rose_neigh) || | 
|  | 766 | (rose_route->neigh1 == rose_neigh && rose_route->neigh2 == NULL)       || | 
|  | 767 | (rose_route->neigh2 == rose_neigh && rose_route->neigh1 == NULL)) { | 
|  | 768 | s = rose_route->next; | 
|  | 769 | rose_remove_route(rose_route); | 
|  | 770 | rose_route = s; | 
|  | 771 | continue; | 
|  | 772 | } | 
|  | 773 |  | 
|  | 774 | if (rose_route->neigh1 == rose_neigh) { | 
|  | 775 | rose_route->neigh1->use--; | 
|  | 776 | rose_route->neigh1 = NULL; | 
|  | 777 | rose_transmit_clear_request(rose_route->neigh2, rose_route->lci2, ROSE_OUT_OF_ORDER, 0); | 
|  | 778 | } | 
|  | 779 |  | 
|  | 780 | if (rose_route->neigh2 == rose_neigh) { | 
|  | 781 | rose_route->neigh2->use--; | 
|  | 782 | rose_route->neigh2 = NULL; | 
|  | 783 | rose_transmit_clear_request(rose_route->neigh1, rose_route->lci1, ROSE_OUT_OF_ORDER, 0); | 
|  | 784 | } | 
|  | 785 |  | 
|  | 786 | rose_route = rose_route->next; | 
|  | 787 | } | 
|  | 788 | spin_unlock_bh(&rose_route_list_lock); | 
|  | 789 | } | 
|  | 790 |  | 
|  | 791 | /* | 
|  | 792 | * 	A level 2 link has timed out, therefore it appears to be a poor link, | 
|  | 793 | *	then don't use that neighbour until it is reset. Blow away all through | 
|  | 794 | *	routes and connections using this route. | 
|  | 795 | */ | 
|  | 796 | void rose_link_failed(ax25_cb *ax25, int reason) | 
|  | 797 | { | 
|  | 798 | struct rose_neigh *rose_neigh; | 
|  | 799 |  | 
|  | 800 | spin_lock_bh(&rose_neigh_list_lock); | 
|  | 801 | rose_neigh = rose_neigh_list; | 
|  | 802 | while (rose_neigh != NULL) { | 
|  | 803 | if (rose_neigh->ax25 == ax25) | 
|  | 804 | break; | 
|  | 805 | rose_neigh = rose_neigh->next; | 
|  | 806 | } | 
|  | 807 |  | 
|  | 808 | if (rose_neigh != NULL) { | 
|  | 809 | rose_neigh->ax25 = NULL; | 
|  | 810 |  | 
|  | 811 | rose_del_route_by_neigh(rose_neigh); | 
|  | 812 | rose_kill_by_neigh(rose_neigh); | 
|  | 813 | } | 
|  | 814 | spin_unlock_bh(&rose_neigh_list_lock); | 
|  | 815 | } | 
|  | 816 |  | 
|  | 817 | /* | 
|  | 818 | * 	A device has been "downed" remove its link status. Blow away all | 
|  | 819 | *	through routes and connections that use this device. | 
|  | 820 | */ | 
|  | 821 | void rose_link_device_down(struct net_device *dev) | 
|  | 822 | { | 
|  | 823 | struct rose_neigh *rose_neigh; | 
|  | 824 |  | 
|  | 825 | for (rose_neigh = rose_neigh_list; rose_neigh != NULL; rose_neigh = rose_neigh->next) { | 
|  | 826 | if (rose_neigh->dev == dev) { | 
|  | 827 | rose_del_route_by_neigh(rose_neigh); | 
|  | 828 | rose_kill_by_neigh(rose_neigh); | 
|  | 829 | } | 
|  | 830 | } | 
|  | 831 | } | 
|  | 832 |  | 
|  | 833 | /* | 
|  | 834 | *	Route a frame to an appropriate AX.25 connection. | 
|  | 835 | */ | 
|  | 836 | int rose_route_frame(struct sk_buff *skb, ax25_cb *ax25) | 
|  | 837 | { | 
|  | 838 | struct rose_neigh *rose_neigh, *new_neigh; | 
|  | 839 | struct rose_route *rose_route; | 
|  | 840 | struct rose_facilities_struct facilities; | 
|  | 841 | rose_address *src_addr, *dest_addr; | 
|  | 842 | struct sock *sk; | 
|  | 843 | unsigned short frametype; | 
|  | 844 | unsigned int lci, new_lci; | 
|  | 845 | unsigned char cause, diagnostic; | 
|  | 846 | struct net_device *dev; | 
|  | 847 | int len, res = 0; | 
| Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 848 | char buf[11]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 |  | 
|  | 850 | #if 0 | 
|  | 851 | if (call_in_firewall(PF_ROSE, skb->dev, skb->data, NULL, &skb) != FW_ACCEPT) | 
|  | 852 | return res; | 
|  | 853 | #endif | 
|  | 854 |  | 
|  | 855 | frametype = skb->data[2]; | 
|  | 856 | lci = ((skb->data[0] << 8) & 0xF00) + ((skb->data[1] << 0) & 0x0FF); | 
|  | 857 | src_addr  = (rose_address *)(skb->data + 9); | 
|  | 858 | dest_addr = (rose_address *)(skb->data + 4); | 
|  | 859 |  | 
|  | 860 | spin_lock_bh(&rose_node_list_lock); | 
|  | 861 | spin_lock_bh(&rose_neigh_list_lock); | 
|  | 862 | spin_lock_bh(&rose_route_list_lock); | 
|  | 863 |  | 
|  | 864 | rose_neigh = rose_neigh_list; | 
|  | 865 | while (rose_neigh != NULL) { | 
|  | 866 | if (ax25cmp(&ax25->dest_addr, &rose_neigh->callsign) == 0 && | 
|  | 867 | ax25->ax25_dev->dev == rose_neigh->dev) | 
|  | 868 | break; | 
|  | 869 | rose_neigh = rose_neigh->next; | 
|  | 870 | } | 
|  | 871 |  | 
|  | 872 | if (rose_neigh == NULL) { | 
|  | 873 | printk("rose_route : unknown neighbour or device %s\n", | 
| Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 874 | ax2asc(buf, &ax25->dest_addr)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | goto out; | 
|  | 876 | } | 
|  | 877 |  | 
|  | 878 | /* | 
|  | 879 | *	Obviously the link is working, halt the ftimer. | 
|  | 880 | */ | 
|  | 881 | rose_stop_ftimer(rose_neigh); | 
|  | 882 |  | 
|  | 883 | /* | 
|  | 884 | *	LCI of zero is always for us, and its always a restart | 
|  | 885 | * 	frame. | 
|  | 886 | */ | 
|  | 887 | if (lci == 0) { | 
|  | 888 | rose_link_rx_restart(skb, rose_neigh, frametype); | 
|  | 889 | goto out; | 
|  | 890 | } | 
|  | 891 |  | 
|  | 892 | /* | 
|  | 893 | *	Find an existing socket. | 
|  | 894 | */ | 
|  | 895 | if ((sk = rose_find_socket(lci, rose_neigh)) != NULL) { | 
|  | 896 | if (frametype == ROSE_CALL_REQUEST) { | 
|  | 897 | struct rose_sock *rose = rose_sk(sk); | 
|  | 898 |  | 
|  | 899 | /* Remove an existing unused socket */ | 
|  | 900 | rose_clear_queues(sk); | 
|  | 901 | rose->cause	 = ROSE_NETWORK_CONGESTION; | 
|  | 902 | rose->diagnostic = 0; | 
|  | 903 | rose->neighbour->use--; | 
|  | 904 | rose->neighbour	 = NULL; | 
|  | 905 | rose->lci	 = 0; | 
|  | 906 | rose->state	 = ROSE_STATE_0; | 
|  | 907 | sk->sk_state	 = TCP_CLOSE; | 
|  | 908 | sk->sk_err	 = 0; | 
|  | 909 | sk->sk_shutdown	 |= SEND_SHUTDOWN; | 
|  | 910 | if (!sock_flag(sk, SOCK_DEAD)) { | 
|  | 911 | sk->sk_state_change(sk); | 
|  | 912 | sock_set_flag(sk, SOCK_DEAD); | 
|  | 913 | } | 
|  | 914 | } | 
|  | 915 | else { | 
| Arnaldo Carvalho de Melo | badff6d | 2007-03-13 13:06:52 -0300 | [diff] [blame] | 916 | skb_reset_transport_header(skb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | res = rose_process_rx_frame(sk, skb); | 
|  | 918 | goto out; | 
|  | 919 | } | 
|  | 920 | } | 
|  | 921 |  | 
|  | 922 | /* | 
|  | 923 | *	Is is a Call Request and is it for us ? | 
|  | 924 | */ | 
|  | 925 | if (frametype == ROSE_CALL_REQUEST) | 
|  | 926 | if ((dev = rose_dev_get(dest_addr)) != NULL) { | 
|  | 927 | res = rose_rx_call_request(skb, dev, rose_neigh, lci); | 
|  | 928 | dev_put(dev); | 
|  | 929 | goto out; | 
|  | 930 | } | 
|  | 931 |  | 
|  | 932 | if (!sysctl_rose_routing_control) { | 
|  | 933 | rose_transmit_clear_request(rose_neigh, lci, ROSE_NOT_OBTAINABLE, 0); | 
|  | 934 | goto out; | 
|  | 935 | } | 
|  | 936 |  | 
|  | 937 | /* | 
|  | 938 | *	Route it to the next in line if we have an entry for it. | 
|  | 939 | */ | 
|  | 940 | rose_route = rose_route_list; | 
|  | 941 | while (rose_route != NULL) { | 
|  | 942 | if (rose_route->lci1 == lci && | 
|  | 943 | rose_route->neigh1 == rose_neigh) { | 
|  | 944 | if (frametype == ROSE_CALL_REQUEST) { | 
|  | 945 | /* F6FBB - Remove an existing unused route */ | 
|  | 946 | rose_remove_route(rose_route); | 
|  | 947 | break; | 
|  | 948 | } else if (rose_route->neigh2 != NULL) { | 
|  | 949 | skb->data[0] &= 0xF0; | 
|  | 950 | skb->data[0] |= (rose_route->lci2 >> 8) & 0x0F; | 
|  | 951 | skb->data[1]  = (rose_route->lci2 >> 0) & 0xFF; | 
|  | 952 | rose_transmit_link(skb, rose_route->neigh2); | 
|  | 953 | if (frametype == ROSE_CLEAR_CONFIRMATION) | 
|  | 954 | rose_remove_route(rose_route); | 
|  | 955 | res = 1; | 
|  | 956 | goto out; | 
|  | 957 | } else { | 
|  | 958 | if (frametype == ROSE_CLEAR_CONFIRMATION) | 
|  | 959 | rose_remove_route(rose_route); | 
|  | 960 | goto out; | 
|  | 961 | } | 
|  | 962 | } | 
|  | 963 | if (rose_route->lci2 == lci && | 
|  | 964 | rose_route->neigh2 == rose_neigh) { | 
|  | 965 | if (frametype == ROSE_CALL_REQUEST) { | 
|  | 966 | /* F6FBB - Remove an existing unused route */ | 
|  | 967 | rose_remove_route(rose_route); | 
|  | 968 | break; | 
|  | 969 | } else if (rose_route->neigh1 != NULL) { | 
|  | 970 | skb->data[0] &= 0xF0; | 
|  | 971 | skb->data[0] |= (rose_route->lci1 >> 8) & 0x0F; | 
|  | 972 | skb->data[1]  = (rose_route->lci1 >> 0) & 0xFF; | 
|  | 973 | rose_transmit_link(skb, rose_route->neigh1); | 
|  | 974 | if (frametype == ROSE_CLEAR_CONFIRMATION) | 
|  | 975 | rose_remove_route(rose_route); | 
|  | 976 | res = 1; | 
|  | 977 | goto out; | 
|  | 978 | } else { | 
|  | 979 | if (frametype == ROSE_CLEAR_CONFIRMATION) | 
|  | 980 | rose_remove_route(rose_route); | 
|  | 981 | goto out; | 
|  | 982 | } | 
|  | 983 | } | 
|  | 984 | rose_route = rose_route->next; | 
|  | 985 | } | 
|  | 986 |  | 
|  | 987 | /* | 
|  | 988 | *	We know that: | 
|  | 989 | *	1. The frame isn't for us, | 
|  | 990 | *	2. It isn't "owned" by any existing route. | 
|  | 991 | */ | 
| David S. Miller | dc16aaf | 2005-08-23 10:50:09 -0700 | [diff] [blame] | 992 | if (frametype != ROSE_CALL_REQUEST) {	/* XXX */ | 
| David S. Miller | c1cc168 | 2005-08-23 14:55:32 -0700 | [diff] [blame] | 993 | res = 0; | 
| David S. Miller | dc16aaf | 2005-08-23 10:50:09 -0700 | [diff] [blame] | 994 | goto out; | 
|  | 995 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 |  | 
|  | 997 | len  = (((skb->data[3] >> 4) & 0x0F) + 1) / 2; | 
|  | 998 | len += (((skb->data[3] >> 0) & 0x0F) + 1) / 2; | 
|  | 999 |  | 
|  | 1000 | memset(&facilities, 0x00, sizeof(struct rose_facilities_struct)); | 
|  | 1001 |  | 
|  | 1002 | if (!rose_parse_facilities(skb->data + len + 4, &facilities)) { | 
|  | 1003 | rose_transmit_clear_request(rose_neigh, lci, ROSE_INVALID_FACILITY, 76); | 
|  | 1004 | goto out; | 
|  | 1005 | } | 
|  | 1006 |  | 
|  | 1007 | /* | 
|  | 1008 | *	Check for routing loops. | 
|  | 1009 | */ | 
|  | 1010 | rose_route = rose_route_list; | 
|  | 1011 | while (rose_route != NULL) { | 
|  | 1012 | if (rose_route->rand == facilities.rand && | 
|  | 1013 | rosecmp(src_addr, &rose_route->src_addr) == 0 && | 
|  | 1014 | ax25cmp(&facilities.dest_call, &rose_route->src_call) == 0 && | 
|  | 1015 | ax25cmp(&facilities.source_call, &rose_route->dest_call) == 0) { | 
|  | 1016 | rose_transmit_clear_request(rose_neigh, lci, ROSE_NOT_OBTAINABLE, 120); | 
|  | 1017 | goto out; | 
|  | 1018 | } | 
|  | 1019 | rose_route = rose_route->next; | 
|  | 1020 | } | 
|  | 1021 |  | 
|  | 1022 | if ((new_neigh = rose_get_neigh(dest_addr, &cause, &diagnostic)) == NULL) { | 
|  | 1023 | rose_transmit_clear_request(rose_neigh, lci, cause, diagnostic); | 
|  | 1024 | goto out; | 
|  | 1025 | } | 
|  | 1026 |  | 
|  | 1027 | if ((new_lci = rose_new_lci(new_neigh)) == 0) { | 
|  | 1028 | rose_transmit_clear_request(rose_neigh, lci, ROSE_NETWORK_CONGESTION, 71); | 
|  | 1029 | goto out; | 
|  | 1030 | } | 
|  | 1031 |  | 
|  | 1032 | if ((rose_route = kmalloc(sizeof(*rose_route), GFP_ATOMIC)) == NULL) { | 
|  | 1033 | rose_transmit_clear_request(rose_neigh, lci, ROSE_NETWORK_CONGESTION, 120); | 
|  | 1034 | goto out; | 
|  | 1035 | } | 
|  | 1036 |  | 
|  | 1037 | rose_route->lci1      = lci; | 
|  | 1038 | rose_route->src_addr  = *src_addr; | 
|  | 1039 | rose_route->dest_addr = *dest_addr; | 
|  | 1040 | rose_route->src_call  = facilities.dest_call; | 
|  | 1041 | rose_route->dest_call = facilities.source_call; | 
|  | 1042 | rose_route->rand      = facilities.rand; | 
|  | 1043 | rose_route->neigh1    = rose_neigh; | 
|  | 1044 | rose_route->lci2      = new_lci; | 
|  | 1045 | rose_route->neigh2    = new_neigh; | 
|  | 1046 |  | 
|  | 1047 | rose_route->neigh1->use++; | 
|  | 1048 | rose_route->neigh2->use++; | 
|  | 1049 |  | 
|  | 1050 | rose_route->next = rose_route_list; | 
|  | 1051 | rose_route_list  = rose_route; | 
|  | 1052 |  | 
|  | 1053 | skb->data[0] &= 0xF0; | 
|  | 1054 | skb->data[0] |= (rose_route->lci2 >> 8) & 0x0F; | 
|  | 1055 | skb->data[1]  = (rose_route->lci2 >> 0) & 0xFF; | 
|  | 1056 |  | 
|  | 1057 | rose_transmit_link(skb, rose_route->neigh2); | 
|  | 1058 | res = 1; | 
|  | 1059 |  | 
|  | 1060 | out: | 
|  | 1061 | spin_unlock_bh(&rose_route_list_lock); | 
|  | 1062 | spin_unlock_bh(&rose_neigh_list_lock); | 
|  | 1063 | spin_unlock_bh(&rose_node_list_lock); | 
|  | 1064 |  | 
|  | 1065 | return res; | 
|  | 1066 | } | 
|  | 1067 |  | 
|  | 1068 | #ifdef CONFIG_PROC_FS | 
|  | 1069 |  | 
|  | 1070 | static void *rose_node_start(struct seq_file *seq, loff_t *pos) | 
|  | 1071 | { | 
|  | 1072 | struct rose_node *rose_node; | 
|  | 1073 | int i = 1; | 
|  | 1074 |  | 
|  | 1075 | spin_lock_bh(&rose_neigh_list_lock); | 
|  | 1076 | if (*pos == 0) | 
|  | 1077 | return SEQ_START_TOKEN; | 
|  | 1078 |  | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1079 | for (rose_node = rose_node_list; rose_node && i < *pos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | rose_node = rose_node->next, ++i); | 
|  | 1081 |  | 
|  | 1082 | return (i == *pos) ? rose_node : NULL; | 
|  | 1083 | } | 
|  | 1084 |  | 
|  | 1085 | static void *rose_node_next(struct seq_file *seq, void *v, loff_t *pos) | 
|  | 1086 | { | 
|  | 1087 | ++*pos; | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1088 |  | 
|  | 1089 | return (v == SEQ_START_TOKEN) ? rose_node_list | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | : ((struct rose_node *)v)->next; | 
|  | 1091 | } | 
|  | 1092 |  | 
|  | 1093 | static void rose_node_stop(struct seq_file *seq, void *v) | 
|  | 1094 | { | 
|  | 1095 | spin_unlock_bh(&rose_neigh_list_lock); | 
|  | 1096 | } | 
|  | 1097 |  | 
|  | 1098 | static int rose_node_show(struct seq_file *seq, void *v) | 
|  | 1099 | { | 
|  | 1100 | int i; | 
|  | 1101 |  | 
|  | 1102 | if (v == SEQ_START_TOKEN) | 
|  | 1103 | seq_puts(seq, "address    mask n neigh neigh neigh\n"); | 
|  | 1104 | else { | 
|  | 1105 | const struct rose_node *rose_node = v; | 
|  | 1106 | /* if (rose_node->loopback) { | 
|  | 1107 | seq_printf(seq, "%-10s %04d 1 loopback\n", | 
|  | 1108 | rose2asc(&rose_node->address), | 
|  | 1109 | rose_node->mask); | 
|  | 1110 | } else { */ | 
|  | 1111 | seq_printf(seq, "%-10s %04d %d", | 
|  | 1112 | rose2asc(&rose_node->address), | 
|  | 1113 | rose_node->mask, | 
|  | 1114 | rose_node->count); | 
|  | 1115 |  | 
|  | 1116 | for (i = 0; i < rose_node->count; i++) | 
|  | 1117 | seq_printf(seq, " %05d", | 
|  | 1118 | rose_node->neighbour[i]->number); | 
|  | 1119 |  | 
|  | 1120 | seq_puts(seq, "\n"); | 
|  | 1121 | /* } */ | 
|  | 1122 | } | 
|  | 1123 | return 0; | 
|  | 1124 | } | 
|  | 1125 |  | 
| Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 1126 | static const struct seq_operations rose_node_seqops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | .start = rose_node_start, | 
|  | 1128 | .next = rose_node_next, | 
|  | 1129 | .stop = rose_node_stop, | 
|  | 1130 | .show = rose_node_show, | 
|  | 1131 | }; | 
|  | 1132 |  | 
|  | 1133 | static int rose_nodes_open(struct inode *inode, struct file *file) | 
|  | 1134 | { | 
|  | 1135 | return seq_open(file, &rose_node_seqops); | 
|  | 1136 | } | 
|  | 1137 |  | 
| Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 1138 | const struct file_operations rose_nodes_fops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | .owner = THIS_MODULE, | 
|  | 1140 | .open = rose_nodes_open, | 
|  | 1141 | .read = seq_read, | 
|  | 1142 | .llseek = seq_lseek, | 
|  | 1143 | .release = seq_release, | 
|  | 1144 | }; | 
|  | 1145 |  | 
|  | 1146 | static void *rose_neigh_start(struct seq_file *seq, loff_t *pos) | 
|  | 1147 | { | 
|  | 1148 | struct rose_neigh *rose_neigh; | 
|  | 1149 | int i = 1; | 
|  | 1150 |  | 
|  | 1151 | spin_lock_bh(&rose_neigh_list_lock); | 
|  | 1152 | if (*pos == 0) | 
|  | 1153 | return SEQ_START_TOKEN; | 
|  | 1154 |  | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1155 | for (rose_neigh = rose_neigh_list; rose_neigh && i < *pos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | rose_neigh = rose_neigh->next, ++i); | 
|  | 1157 |  | 
|  | 1158 | return (i == *pos) ? rose_neigh : NULL; | 
|  | 1159 | } | 
|  | 1160 |  | 
|  | 1161 | static void *rose_neigh_next(struct seq_file *seq, void *v, loff_t *pos) | 
|  | 1162 | { | 
|  | 1163 | ++*pos; | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1164 |  | 
|  | 1165 | return (v == SEQ_START_TOKEN) ? rose_neigh_list | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | : ((struct rose_neigh *)v)->next; | 
|  | 1167 | } | 
|  | 1168 |  | 
|  | 1169 | static void rose_neigh_stop(struct seq_file *seq, void *v) | 
|  | 1170 | { | 
|  | 1171 | spin_unlock_bh(&rose_neigh_list_lock); | 
|  | 1172 | } | 
|  | 1173 |  | 
|  | 1174 | static int rose_neigh_show(struct seq_file *seq, void *v) | 
|  | 1175 | { | 
| Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 1176 | char buf[11]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | int i; | 
|  | 1178 |  | 
|  | 1179 | if (v == SEQ_START_TOKEN) | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1180 | seq_puts(seq, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | "addr  callsign  dev  count use mode restart  t0  tf digipeaters\n"); | 
|  | 1182 | else { | 
|  | 1183 | struct rose_neigh *rose_neigh = v; | 
|  | 1184 |  | 
|  | 1185 | /* if (!rose_neigh->loopback) { */ | 
|  | 1186 | seq_printf(seq, "%05d %-9s %-4s   %3d %3d  %3s     %3s %3lu %3lu", | 
|  | 1187 | rose_neigh->number, | 
| Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 1188 | (rose_neigh->loopback) ? "RSLOOP-0" : ax2asc(buf, &rose_neigh->callsign), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | rose_neigh->dev ? rose_neigh->dev->name : "???", | 
|  | 1190 | rose_neigh->count, | 
|  | 1191 | rose_neigh->use, | 
|  | 1192 | (rose_neigh->dce_mode) ? "DCE" : "DTE", | 
|  | 1193 | (rose_neigh->restarted) ? "yes" : "no", | 
|  | 1194 | ax25_display_timer(&rose_neigh->t0timer) / HZ, | 
|  | 1195 | ax25_display_timer(&rose_neigh->ftimer)  / HZ); | 
|  | 1196 |  | 
|  | 1197 | if (rose_neigh->digipeat != NULL) { | 
|  | 1198 | for (i = 0; i < rose_neigh->digipeat->ndigi; i++) | 
| Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 1199 | seq_printf(seq, " %s", ax2asc(buf, &rose_neigh->digipeat->calls[i])); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | } | 
|  | 1201 |  | 
|  | 1202 | seq_puts(seq, "\n"); | 
|  | 1203 | } | 
|  | 1204 | return 0; | 
|  | 1205 | } | 
|  | 1206 |  | 
|  | 1207 |  | 
| Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 1208 | static const struct seq_operations rose_neigh_seqops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | .start = rose_neigh_start, | 
|  | 1210 | .next = rose_neigh_next, | 
|  | 1211 | .stop = rose_neigh_stop, | 
|  | 1212 | .show = rose_neigh_show, | 
|  | 1213 | }; | 
|  | 1214 |  | 
|  | 1215 | static int rose_neigh_open(struct inode *inode, struct file *file) | 
|  | 1216 | { | 
|  | 1217 | return seq_open(file, &rose_neigh_seqops); | 
|  | 1218 | } | 
|  | 1219 |  | 
| Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 1220 | const struct file_operations rose_neigh_fops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | .owner = THIS_MODULE, | 
|  | 1222 | .open = rose_neigh_open, | 
|  | 1223 | .read = seq_read, | 
|  | 1224 | .llseek = seq_lseek, | 
|  | 1225 | .release = seq_release, | 
|  | 1226 | }; | 
|  | 1227 |  | 
|  | 1228 |  | 
|  | 1229 | static void *rose_route_start(struct seq_file *seq, loff_t *pos) | 
|  | 1230 | { | 
|  | 1231 | struct rose_route *rose_route; | 
|  | 1232 | int i = 1; | 
|  | 1233 |  | 
|  | 1234 | spin_lock_bh(&rose_route_list_lock); | 
|  | 1235 | if (*pos == 0) | 
|  | 1236 | return SEQ_START_TOKEN; | 
|  | 1237 |  | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1238 | for (rose_route = rose_route_list; rose_route && i < *pos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | rose_route = rose_route->next, ++i); | 
|  | 1240 |  | 
|  | 1241 | return (i == *pos) ? rose_route : NULL; | 
|  | 1242 | } | 
|  | 1243 |  | 
|  | 1244 | static void *rose_route_next(struct seq_file *seq, void *v, loff_t *pos) | 
|  | 1245 | { | 
|  | 1246 | ++*pos; | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1247 |  | 
|  | 1248 | return (v == SEQ_START_TOKEN) ? rose_route_list | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | : ((struct rose_route *)v)->next; | 
|  | 1250 | } | 
|  | 1251 |  | 
|  | 1252 | static void rose_route_stop(struct seq_file *seq, void *v) | 
|  | 1253 | { | 
|  | 1254 | spin_unlock_bh(&rose_route_list_lock); | 
|  | 1255 | } | 
|  | 1256 |  | 
|  | 1257 | static int rose_route_show(struct seq_file *seq, void *v) | 
|  | 1258 | { | 
| Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 1259 | char buf[11]; | 
|  | 1260 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | if (v == SEQ_START_TOKEN) | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1262 | seq_puts(seq, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | "lci  address     callsign   neigh  <-> lci  address     callsign   neigh\n"); | 
|  | 1264 | else { | 
|  | 1265 | struct rose_route *rose_route = v; | 
|  | 1266 |  | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1267 | if (rose_route->neigh1) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | seq_printf(seq, | 
|  | 1269 | "%3.3X  %-10s  %-9s  %05d      ", | 
|  | 1270 | rose_route->lci1, | 
|  | 1271 | rose2asc(&rose_route->src_addr), | 
| Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 1272 | ax2asc(buf, &rose_route->src_call), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | rose_route->neigh1->number); | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1274 | else | 
|  | 1275 | seq_puts(seq, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | "000  *           *          00000      "); | 
|  | 1277 |  | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1278 | if (rose_route->neigh2) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | seq_printf(seq, | 
|  | 1280 | "%3.3X  %-10s  %-9s  %05d\n", | 
|  | 1281 | rose_route->lci2, | 
|  | 1282 | rose2asc(&rose_route->dest_addr), | 
| Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 1283 | ax2asc(buf, &rose_route->dest_call), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | rose_route->neigh2->number); | 
| YOSHIFUJI Hideaki | 3dcf7c5 | 2007-02-09 23:25:12 +0900 | [diff] [blame] | 1285 | else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | seq_puts(seq, | 
|  | 1287 | "000  *           *          00000\n"); | 
|  | 1288 | } | 
|  | 1289 | return 0; | 
|  | 1290 | } | 
|  | 1291 |  | 
| Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 1292 | static const struct seq_operations rose_route_seqops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | .start = rose_route_start, | 
|  | 1294 | .next = rose_route_next, | 
|  | 1295 | .stop = rose_route_stop, | 
|  | 1296 | .show = rose_route_show, | 
|  | 1297 | }; | 
|  | 1298 |  | 
|  | 1299 | static int rose_route_open(struct inode *inode, struct file *file) | 
|  | 1300 | { | 
|  | 1301 | return seq_open(file, &rose_route_seqops); | 
|  | 1302 | } | 
|  | 1303 |  | 
| Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 1304 | const struct file_operations rose_routes_fops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | .owner = THIS_MODULE, | 
|  | 1306 | .open = rose_route_open, | 
|  | 1307 | .read = seq_read, | 
|  | 1308 | .llseek = seq_lseek, | 
|  | 1309 | .release = seq_release, | 
|  | 1310 | }; | 
|  | 1311 |  | 
|  | 1312 | #endif /* CONFIG_PROC_FS */ | 
|  | 1313 |  | 
|  | 1314 | /* | 
|  | 1315 | *	Release all memory associated with ROSE routing structures. | 
|  | 1316 | */ | 
|  | 1317 | void __exit rose_rt_free(void) | 
|  | 1318 | { | 
|  | 1319 | struct rose_neigh *s, *rose_neigh = rose_neigh_list; | 
|  | 1320 | struct rose_node  *t, *rose_node  = rose_node_list; | 
|  | 1321 | struct rose_route *u, *rose_route = rose_route_list; | 
|  | 1322 |  | 
|  | 1323 | while (rose_neigh != NULL) { | 
|  | 1324 | s          = rose_neigh; | 
|  | 1325 | rose_neigh = rose_neigh->next; | 
|  | 1326 |  | 
|  | 1327 | rose_remove_neigh(s); | 
|  | 1328 | } | 
|  | 1329 |  | 
|  | 1330 | while (rose_node != NULL) { | 
|  | 1331 | t         = rose_node; | 
|  | 1332 | rose_node = rose_node->next; | 
|  | 1333 |  | 
|  | 1334 | rose_remove_node(t); | 
|  | 1335 | } | 
|  | 1336 |  | 
|  | 1337 | while (rose_route != NULL) { | 
|  | 1338 | u          = rose_route; | 
|  | 1339 | rose_route = rose_route->next; | 
|  | 1340 |  | 
|  | 1341 | rose_remove_route(u); | 
|  | 1342 | } | 
|  | 1343 | } |