Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) Alan Cox GW4PTS (alan@lxorguk.ukuu.org.uk) |
| 5 | * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk) |
| 6 | * Copyright (C) Steven Whitehouse GW7RRM (stevew@acm.org) |
| 7 | * Copyright (C) Joerg Reuter DL1BKE (jreuter@yaina.de) |
| 8 | * Copyright (C) Hans-Joachim Hetscher DD8NE (dd8ne@bnv-bamberg.de) |
| 9 | * Copyright (C) Frederic Rible F1OAT (frible@teaser.fr) |
| 10 | */ |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 11 | |
| 12 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/errno.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/socket.h> |
| 16 | #include <linux/timer.h> |
| 17 | #include <linux/in.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/sched.h> |
| 20 | #include <linux/string.h> |
| 21 | #include <linux/sockios.h> |
| 22 | #include <linux/net.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <net/ax25.h> |
| 25 | #include <linux/inet.h> |
| 26 | #include <linux/netdevice.h> |
| 27 | #include <linux/if_arp.h> |
| 28 | #include <linux/skbuff.h> |
| 29 | #include <linux/spinlock.h> |
| 30 | #include <net/sock.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 31 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/fcntl.h> |
| 33 | #include <linux/mm.h> |
| 34 | #include <linux/interrupt.h> |
| 35 | #include <linux/init.h> |
| 36 | #include <linux/seq_file.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 37 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | static ax25_route *ax25_route_list; |
Eric Dumazet | 63530ab | 2019-01-22 10:40:59 -0800 | [diff] [blame] | 40 | DEFINE_RWLOCK(ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | void ax25_rt_device_down(struct net_device *dev) |
| 43 | { |
| 44 | ax25_route *s, *t, *ax25_rt; |
| 45 | |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 46 | write_lock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | ax25_rt = ax25_route_list; |
| 48 | while (ax25_rt != NULL) { |
| 49 | s = ax25_rt; |
| 50 | ax25_rt = ax25_rt->next; |
| 51 | |
| 52 | if (s->dev == dev) { |
| 53 | if (ax25_route_list == s) { |
| 54 | ax25_route_list = s->next; |
Jesper Juhl | a51482b | 2005-11-08 09:41:34 -0800 | [diff] [blame] | 55 | kfree(s->digipeat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | kfree(s); |
| 57 | } else { |
| 58 | for (t = ax25_route_list; t != NULL; t = t->next) { |
| 59 | if (t->next == s) { |
| 60 | t->next = s->next; |
Jesper Juhl | a51482b | 2005-11-08 09:41:34 -0800 | [diff] [blame] | 61 | kfree(s->digipeat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | kfree(s); |
| 63 | break; |
| 64 | } |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | } |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 69 | write_unlock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | |
Ralf Baechle | c9266b9 | 2006-12-14 15:49:28 -0800 | [diff] [blame] | 72 | static int __must_check ax25_rt_add(struct ax25_routes_struct *route) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { |
| 74 | ax25_route *ax25_rt; |
| 75 | ax25_dev *ax25_dev; |
| 76 | int i; |
| 77 | |
| 78 | if ((ax25_dev = ax25_addr_ax25dev(&route->port_addr)) == NULL) |
| 79 | return -EINVAL; |
| 80 | if (route->digi_count > AX25_MAX_DIGIS) |
| 81 | return -EINVAL; |
| 82 | |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 83 | write_lock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | ax25_rt = ax25_route_list; |
| 86 | while (ax25_rt != NULL) { |
| 87 | if (ax25cmp(&ax25_rt->callsign, &route->dest_addr) == 0 && |
YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 88 | ax25_rt->dev == ax25_dev->dev) { |
Jesper Juhl | a51482b | 2005-11-08 09:41:34 -0800 | [diff] [blame] | 89 | kfree(ax25_rt->digipeat); |
| 90 | ax25_rt->digipeat = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | if (route->digi_count != 0) { |
| 92 | if ((ax25_rt->digipeat = kmalloc(sizeof(ax25_digi), GFP_ATOMIC)) == NULL) { |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 93 | write_unlock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | return -ENOMEM; |
| 95 | } |
| 96 | ax25_rt->digipeat->lastrepeat = -1; |
| 97 | ax25_rt->digipeat->ndigi = route->digi_count; |
| 98 | for (i = 0; i < route->digi_count; i++) { |
| 99 | ax25_rt->digipeat->repeated[i] = 0; |
| 100 | ax25_rt->digipeat->calls[i] = route->digi_addr[i]; |
| 101 | } |
| 102 | } |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 103 | write_unlock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | return 0; |
| 105 | } |
| 106 | ax25_rt = ax25_rt->next; |
| 107 | } |
| 108 | |
| 109 | if ((ax25_rt = kmalloc(sizeof(ax25_route), GFP_ATOMIC)) == NULL) { |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 110 | write_unlock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | return -ENOMEM; |
| 112 | } |
| 113 | |
Reshetova, Elena | 39f25d4 | 2017-07-04 15:53:30 +0300 | [diff] [blame] | 114 | refcount_set(&ax25_rt->refcount, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | ax25_rt->callsign = route->dest_addr; |
| 116 | ax25_rt->dev = ax25_dev->dev; |
| 117 | ax25_rt->digipeat = NULL; |
| 118 | ax25_rt->ip_mode = ' '; |
| 119 | if (route->digi_count != 0) { |
| 120 | if ((ax25_rt->digipeat = kmalloc(sizeof(ax25_digi), GFP_ATOMIC)) == NULL) { |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 121 | write_unlock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | kfree(ax25_rt); |
| 123 | return -ENOMEM; |
| 124 | } |
| 125 | ax25_rt->digipeat->lastrepeat = -1; |
| 126 | ax25_rt->digipeat->ndigi = route->digi_count; |
| 127 | for (i = 0; i < route->digi_count; i++) { |
| 128 | ax25_rt->digipeat->repeated[i] = 0; |
| 129 | ax25_rt->digipeat->calls[i] = route->digi_addr[i]; |
| 130 | } |
| 131 | } |
| 132 | ax25_rt->next = ax25_route_list; |
| 133 | ax25_route_list = ax25_rt; |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 134 | write_unlock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
| 136 | return 0; |
| 137 | } |
| 138 | |
Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 139 | void __ax25_put_route(ax25_route *ax25_rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { |
Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 141 | kfree(ax25_rt->digipeat); |
| 142 | kfree(ax25_rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | static int ax25_rt_del(struct ax25_routes_struct *route) |
| 146 | { |
| 147 | ax25_route *s, *t, *ax25_rt; |
| 148 | ax25_dev *ax25_dev; |
| 149 | |
| 150 | if ((ax25_dev = ax25_addr_ax25dev(&route->port_addr)) == NULL) |
| 151 | return -EINVAL; |
| 152 | |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 153 | write_lock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | ax25_rt = ax25_route_list; |
| 156 | while (ax25_rt != NULL) { |
| 157 | s = ax25_rt; |
| 158 | ax25_rt = ax25_rt->next; |
| 159 | if (s->dev == ax25_dev->dev && |
| 160 | ax25cmp(&route->dest_addr, &s->callsign) == 0) { |
| 161 | if (ax25_route_list == s) { |
| 162 | ax25_route_list = s->next; |
Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 163 | ax25_put_route(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | } else { |
| 165 | for (t = ax25_route_list; t != NULL; t = t->next) { |
| 166 | if (t->next == s) { |
| 167 | t->next = s->next; |
Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 168 | ax25_put_route(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | break; |
| 170 | } |
| 171 | } |
| 172 | } |
| 173 | } |
| 174 | } |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 175 | write_unlock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
| 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | static int ax25_rt_opt(struct ax25_route_opt_struct *rt_option) |
| 181 | { |
| 182 | ax25_route *ax25_rt; |
| 183 | ax25_dev *ax25_dev; |
| 184 | int err = 0; |
| 185 | |
| 186 | if ((ax25_dev = ax25_addr_ax25dev(&rt_option->port_addr)) == NULL) |
| 187 | return -EINVAL; |
| 188 | |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 189 | write_lock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
| 191 | ax25_rt = ax25_route_list; |
| 192 | while (ax25_rt != NULL) { |
| 193 | if (ax25_rt->dev == ax25_dev->dev && |
| 194 | ax25cmp(&rt_option->dest_addr, &ax25_rt->callsign) == 0) { |
| 195 | switch (rt_option->cmd) { |
| 196 | case AX25_SET_RT_IPMODE: |
| 197 | switch (rt_option->arg) { |
| 198 | case ' ': |
| 199 | case 'D': |
| 200 | case 'V': |
| 201 | ax25_rt->ip_mode = rt_option->arg; |
| 202 | break; |
| 203 | default: |
| 204 | err = -EINVAL; |
| 205 | goto out; |
| 206 | } |
| 207 | break; |
| 208 | default: |
| 209 | err = -EINVAL; |
| 210 | goto out; |
| 211 | } |
| 212 | } |
| 213 | ax25_rt = ax25_rt->next; |
| 214 | } |
| 215 | |
| 216 | out: |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 217 | write_unlock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | return err; |
| 219 | } |
| 220 | |
| 221 | int ax25_rt_ioctl(unsigned int cmd, void __user *arg) |
| 222 | { |
| 223 | struct ax25_route_opt_struct rt_option; |
| 224 | struct ax25_routes_struct route; |
| 225 | |
| 226 | switch (cmd) { |
| 227 | case SIOCADDRT: |
| 228 | if (copy_from_user(&route, arg, sizeof(route))) |
| 229 | return -EFAULT; |
| 230 | return ax25_rt_add(&route); |
| 231 | |
| 232 | case SIOCDELRT: |
| 233 | if (copy_from_user(&route, arg, sizeof(route))) |
| 234 | return -EFAULT; |
| 235 | return ax25_rt_del(&route); |
| 236 | |
| 237 | case SIOCAX25OPTRT: |
| 238 | if (copy_from_user(&rt_option, arg, sizeof(rt_option))) |
| 239 | return -EFAULT; |
| 240 | return ax25_rt_opt(&rt_option); |
| 241 | |
| 242 | default: |
| 243 | return -EINVAL; |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | #ifdef CONFIG_PROC_FS |
| 248 | |
| 249 | static void *ax25_rt_seq_start(struct seq_file *seq, loff_t *pos) |
Eric Dumazet | f16f302 | 2008-01-13 22:29:41 -0800 | [diff] [blame] | 250 | __acquires(ax25_route_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | { |
| 252 | struct ax25_route *ax25_rt; |
| 253 | int i = 1; |
YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 254 | |
| 255 | read_lock(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | if (*pos == 0) |
| 257 | return SEQ_START_TOKEN; |
| 258 | |
| 259 | for (ax25_rt = ax25_route_list; ax25_rt != NULL; ax25_rt = ax25_rt->next) { |
| 260 | if (i == *pos) |
| 261 | return ax25_rt; |
| 262 | ++i; |
| 263 | } |
| 264 | |
| 265 | return NULL; |
| 266 | } |
| 267 | |
| 268 | static void *ax25_rt_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 269 | { |
| 270 | ++*pos; |
YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 271 | return (v == SEQ_START_TOKEN) ? ax25_route_list : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | ((struct ax25_route *) v)->next; |
| 273 | } |
| 274 | |
| 275 | static void ax25_rt_seq_stop(struct seq_file *seq, void *v) |
Eric Dumazet | f16f302 | 2008-01-13 22:29:41 -0800 | [diff] [blame] | 276 | __releases(ax25_route_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | { |
| 278 | read_unlock(&ax25_route_lock); |
| 279 | } |
| 280 | |
| 281 | static int ax25_rt_seq_show(struct seq_file *seq, void *v) |
| 282 | { |
Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 283 | char buf[11]; |
| 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | if (v == SEQ_START_TOKEN) |
| 286 | seq_puts(seq, "callsign dev mode digipeaters\n"); |
| 287 | else { |
| 288 | struct ax25_route *ax25_rt = v; |
| 289 | const char *callsign; |
| 290 | int i; |
| 291 | |
| 292 | if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0) |
| 293 | callsign = "default"; |
| 294 | else |
Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 295 | callsign = ax2asc(buf, &ax25_rt->callsign); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
| 297 | seq_printf(seq, "%-9s %-4s", |
| 298 | callsign, |
| 299 | ax25_rt->dev ? ax25_rt->dev->name : "???"); |
| 300 | |
| 301 | switch (ax25_rt->ip_mode) { |
| 302 | case 'V': |
| 303 | seq_puts(seq, " vc"); |
| 304 | break; |
| 305 | case 'D': |
| 306 | seq_puts(seq, " dg"); |
| 307 | break; |
| 308 | default: |
| 309 | seq_puts(seq, " *"); |
| 310 | break; |
| 311 | } |
| 312 | |
| 313 | if (ax25_rt->digipeat != NULL) |
| 314 | for (i = 0; i < ax25_rt->digipeat->ndigi; i++) |
Ralf Baechle | f75268c | 2005-09-06 15:49:39 -0700 | [diff] [blame] | 315 | seq_printf(seq, " %s", |
| 316 | ax2asc(buf, &ax25_rt->digipeat->calls[i])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
| 318 | seq_puts(seq, "\n"); |
| 319 | } |
| 320 | return 0; |
| 321 | } |
| 322 | |
Christoph Hellwig | fddda2b | 2018-04-13 19:44:18 +0200 | [diff] [blame] | 323 | const struct seq_operations ax25_rt_seqops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | .start = ax25_rt_seq_start, |
| 325 | .next = ax25_rt_seq_next, |
| 326 | .stop = ax25_rt_seq_stop, |
| 327 | .show = ax25_rt_seq_show, |
| 328 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | #endif |
| 330 | |
| 331 | /* |
| 332 | * Find AX.25 route |
| 333 | * |
Ralf Baechle | 3f07231 | 2006-05-03 23:22:36 -0700 | [diff] [blame] | 334 | * Only routes with a reference count of zero can be destroyed. |
Eric Dumazet | 63530ab | 2019-01-22 10:40:59 -0800 | [diff] [blame] | 335 | * Must be called with ax25_route_lock read locked. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | */ |
Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 337 | ax25_route *ax25_get_route(ax25_address *addr, struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | { |
| 339 | ax25_route *ax25_spe_rt = NULL; |
| 340 | ax25_route *ax25_def_rt = NULL; |
| 341 | ax25_route *ax25_rt; |
| 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | /* |
| 344 | * Bind to the physical interface we heard them on, or the default |
| 345 | * route if none is found; |
| 346 | */ |
| 347 | for (ax25_rt = ax25_route_list; ax25_rt != NULL; ax25_rt = ax25_rt->next) { |
| 348 | if (dev == NULL) { |
| 349 | if (ax25cmp(&ax25_rt->callsign, addr) == 0 && ax25_rt->dev != NULL) |
| 350 | ax25_spe_rt = ax25_rt; |
| 351 | if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0 && ax25_rt->dev != NULL) |
| 352 | ax25_def_rt = ax25_rt; |
| 353 | } else { |
| 354 | if (ax25cmp(&ax25_rt->callsign, addr) == 0 && ax25_rt->dev == dev) |
| 355 | ax25_spe_rt = ax25_rt; |
| 356 | if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0 && ax25_rt->dev == dev) |
| 357 | ax25_def_rt = ax25_rt; |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | ax25_rt = ax25_def_rt; |
| 362 | if (ax25_spe_rt != NULL) |
| 363 | ax25_rt = ax25_spe_rt; |
| 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | return ax25_rt; |
| 366 | } |
| 367 | |
| 368 | /* |
| 369 | * Adjust path: If you specify a default route and want to connect |
| 370 | * a target on the digipeater path but w/o having a special route |
| 371 | * set before, the path has to be truncated from your target on. |
| 372 | */ |
| 373 | static inline void ax25_adjust_path(ax25_address *addr, ax25_digi *digipeat) |
| 374 | { |
| 375 | int k; |
| 376 | |
| 377 | for (k = 0; k < digipeat->ndigi; k++) { |
| 378 | if (ax25cmp(addr, &digipeat->calls[k]) == 0) |
| 379 | break; |
| 380 | } |
| 381 | |
| 382 | digipeat->ndigi = k; |
| 383 | } |
| 384 | |
| 385 | |
| 386 | /* |
| 387 | * Find which interface to use. |
| 388 | */ |
| 389 | int ax25_rt_autobind(ax25_cb *ax25, ax25_address *addr) |
| 390 | { |
Ralf Baechle | 01d7dd0 | 2005-08-23 10:11:45 -0700 | [diff] [blame] | 391 | ax25_uid_assoc *user; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | ax25_route *ax25_rt; |
Julia Lawall | b3d18f1 | 2010-08-16 06:26:57 +0000 | [diff] [blame] | 393 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
Eric Dumazet | 63530ab | 2019-01-22 10:40:59 -0800 | [diff] [blame] | 395 | ax25_route_lock_use(); |
| 396 | ax25_rt = ax25_get_route(addr, NULL); |
| 397 | if (!ax25_rt) { |
| 398 | ax25_route_lock_unuse(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | return -EHOSTUNREACH; |
Eric Dumazet | 63530ab | 2019-01-22 10:40:59 -0800 | [diff] [blame] | 400 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | if ((ax25->ax25_dev = ax25_dev_ax25dev(ax25_rt->dev)) == NULL) { |
| 402 | err = -EHOSTUNREACH; |
| 403 | goto put; |
| 404 | } |
| 405 | |
David Howells | 7340040 | 2008-11-14 10:39:06 +1100 | [diff] [blame] | 406 | user = ax25_findbyuid(current_euid()); |
Ralf Baechle | 01d7dd0 | 2005-08-23 10:11:45 -0700 | [diff] [blame] | 407 | if (user) { |
| 408 | ax25->source_addr = user->call; |
| 409 | ax25_uid_put(user); |
| 410 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | if (ax25_uid_policy && !capable(CAP_NET_BIND_SERVICE)) { |
| 412 | err = -EPERM; |
| 413 | goto put; |
| 414 | } |
Ralf Baechle | 01d7dd0 | 2005-08-23 10:11:45 -0700 | [diff] [blame] | 415 | ax25->source_addr = *(ax25_address *)ax25->ax25_dev->dev->dev_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | if (ax25_rt->digipeat != NULL) { |
Arnaldo Carvalho de Melo | 0459d70a | 2006-11-17 12:43:07 -0200 | [diff] [blame] | 419 | ax25->digipeat = kmemdup(ax25_rt->digipeat, sizeof(ax25_digi), |
| 420 | GFP_ATOMIC); |
| 421 | if (ax25->digipeat == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | err = -ENOMEM; |
| 423 | goto put; |
| 424 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | ax25_adjust_path(addr, ax25->digipeat); |
| 426 | } |
| 427 | |
| 428 | if (ax25->sk != NULL) { |
| 429 | bh_lock_sock(ax25->sk); |
| 430 | sock_reset_flag(ax25->sk, SOCK_ZAPPED); |
| 431 | bh_unlock_sock(ax25->sk); |
| 432 | } |
| 433 | |
| 434 | put: |
Eric Dumazet | 63530ab | 2019-01-22 10:40:59 -0800 | [diff] [blame] | 435 | ax25_route_lock_unuse(); |
Julia Lawall | b3d18f1 | 2010-08-16 06:26:57 +0000 | [diff] [blame] | 436 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
| 438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | struct sk_buff *ax25_rt_build_path(struct sk_buff *skb, ax25_address *src, |
| 440 | ax25_address *dest, ax25_digi *digi) |
| 441 | { |
| 442 | struct sk_buff *skbn; |
| 443 | unsigned char *bp; |
| 444 | int len; |
| 445 | |
| 446 | len = digi->ndigi * AX25_ADDR_LEN; |
| 447 | |
| 448 | if (skb_headroom(skb) < len) { |
| 449 | if ((skbn = skb_realloc_headroom(skb, len)) == NULL) { |
| 450 | printk(KERN_CRIT "AX.25: ax25_dg_build_path - out of memory\n"); |
| 451 | return NULL; |
| 452 | } |
| 453 | |
| 454 | if (skb->sk != NULL) |
| 455 | skb_set_owner_w(skbn, skb->sk); |
| 456 | |
Eric Dumazet | 5d0ba55 | 2012-06-04 01:17:19 +0000 | [diff] [blame] | 457 | consume_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
| 459 | skb = skbn; |
| 460 | } |
| 461 | |
| 462 | bp = skb_push(skb, len); |
| 463 | |
| 464 | ax25_addr_build(bp, src, dest, digi, AX25_COMMAND, AX25_MODULUS); |
| 465 | |
| 466 | return skb; |
| 467 | } |
| 468 | |
| 469 | /* |
| 470 | * Free all memory associated with routing structures. |
| 471 | */ |
| 472 | void __exit ax25_rt_free(void) |
| 473 | { |
| 474 | ax25_route *s, *ax25_rt = ax25_route_list; |
| 475 | |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 476 | write_lock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | while (ax25_rt != NULL) { |
| 478 | s = ax25_rt; |
| 479 | ax25_rt = ax25_rt->next; |
| 480 | |
Jesper Juhl | a51482b | 2005-11-08 09:41:34 -0800 | [diff] [blame] | 481 | kfree(s->digipeat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | kfree(s); |
| 483 | } |
Jarek Poplawski | 4de211f | 2008-02-11 21:26:43 -0800 | [diff] [blame] | 484 | write_unlock_bh(&ax25_route_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | } |