blob: aff3e652c2d110ad55448ae2e41dd15fcac5affc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/errno.h>
10#include <linux/types.h>
11#include <linux/socket.h>
12#include <linux/in.h>
13#include <linux/kernel.h>
Ralf Baechle70868ea2006-05-03 23:25:17 -070014#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sched.h>
16#include <linux/spinlock.h>
17#include <linux/timer.h>
18#include <linux/string.h>
19#include <linux/sockios.h>
20#include <linux/net.h>
21#include <net/ax25.h>
22#include <linux/inet.h>
23#include <linux/netdevice.h>
24#include <linux/skbuff.h>
25#include <net/sock.h>
26#include <asm/uaccess.h>
27#include <asm/system.h>
28#include <linux/fcntl.h>
29#include <linux/mm.h>
30#include <linux/interrupt.h>
31
Ralf Baechle8d5cf592006-12-14 15:50:01 -080032static struct ax25_protocol *protocol_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static DEFINE_RWLOCK(protocol_list_lock);
34
Ralf Baechlea4282712006-12-14 15:51:23 -080035static HLIST_HEAD(ax25_linkfail_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static DEFINE_SPINLOCK(linkfail_lock);
37
38static struct listen_struct {
39 struct listen_struct *next;
40 ax25_address callsign;
41 struct net_device *dev;
42} *listen_list = NULL;
43static DEFINE_SPINLOCK(listen_lock);
44
Ralf Baechle8d5cf592006-12-14 15:50:01 -080045/*
46 * Do not register the internal protocols AX25_P_TEXT, AX25_P_SEGMENT,
47 * AX25_P_IP or AX25_P_ARP ...
48 */
49void ax25_register_pid(struct ax25_protocol *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Ralf Baechle95ff9f42006-07-10 16:21:29 -070051 write_lock_bh(&protocol_list_lock);
Ralf Baechle8d5cf592006-12-14 15:50:01 -080052 ap->next = protocol_list;
53 protocol_list = ap;
Ralf Baechle95ff9f42006-07-10 16:21:29 -070054 write_unlock_bh(&protocol_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
Ralf Baechle8d5cf592006-12-14 15:50:01 -080057EXPORT_SYMBOL_GPL(ax25_register_pid);
Ralf Baechle70868ea2006-05-03 23:25:17 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059void ax25_protocol_release(unsigned int pid)
60{
Ralf Baechle8d5cf592006-12-14 15:50:01 -080061 struct ax25_protocol *s, *protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Ralf Baechle95ff9f42006-07-10 16:21:29 -070063 write_lock_bh(&protocol_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 protocol = protocol_list;
65 if (protocol == NULL) {
Ralf Baechle95ff9f42006-07-10 16:21:29 -070066 write_unlock_bh(&protocol_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 return;
68 }
69
70 if (protocol->pid == pid) {
71 protocol_list = protocol->next;
Ralf Baechle95ff9f42006-07-10 16:21:29 -070072 write_unlock_bh(&protocol_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 kfree(protocol);
74 return;
75 }
76
77 while (protocol != NULL && protocol->next != NULL) {
78 if (protocol->next->pid == pid) {
79 s = protocol->next;
80 protocol->next = protocol->next->next;
Ralf Baechle95ff9f42006-07-10 16:21:29 -070081 write_unlock_bh(&protocol_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 kfree(s);
83 return;
84 }
85
86 protocol = protocol->next;
87 }
Ralf Baechle95ff9f42006-07-10 16:21:29 -070088 write_unlock_bh(&protocol_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
Ralf Baechle70868ea2006-05-03 23:25:17 -070091EXPORT_SYMBOL(ax25_protocol_release);
92
Ralf Baechlea4282712006-12-14 15:51:23 -080093void ax25_linkfail_register(struct ax25_linkfail *lf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 spin_lock_bh(&linkfail_lock);
Ralf Baechlea4282712006-12-14 15:51:23 -080096 hlist_add_head(&lf->lf_node, &ax25_linkfail_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 spin_unlock_bh(&linkfail_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Ralf Baechle70868ea2006-05-03 23:25:17 -0700100EXPORT_SYMBOL(ax25_linkfail_register);
101
Ralf Baechlea4282712006-12-14 15:51:23 -0800102void ax25_linkfail_release(struct ax25_linkfail *lf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 spin_lock_bh(&linkfail_lock);
Ralf Baechlea4282712006-12-14 15:51:23 -0800105 hlist_del_init(&lf->lf_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 spin_unlock_bh(&linkfail_lock);
107}
108
Ralf Baechle70868ea2006-05-03 23:25:17 -0700109EXPORT_SYMBOL(ax25_linkfail_release);
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111int ax25_listen_register(ax25_address *callsign, struct net_device *dev)
112{
113 struct listen_struct *listen;
114
115 if (ax25_listen_mine(callsign, dev))
116 return 0;
117
118 if ((listen = kmalloc(sizeof(*listen), GFP_ATOMIC)) == NULL)
Ralf Baechle81dcd162006-12-14 15:50:34 -0800119 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 listen->callsign = *callsign;
122 listen->dev = dev;
123
124 spin_lock_bh(&listen_lock);
125 listen->next = listen_list;
126 listen_list = listen;
127 spin_unlock_bh(&listen_lock);
128
Ralf Baechle81dcd162006-12-14 15:50:34 -0800129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Ralf Baechle70868ea2006-05-03 23:25:17 -0700132EXPORT_SYMBOL(ax25_listen_register);
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134void ax25_listen_release(ax25_address *callsign, struct net_device *dev)
135{
136 struct listen_struct *s, *listen;
137
138 spin_lock_bh(&listen_lock);
139 listen = listen_list;
140 if (listen == NULL) {
141 spin_unlock_bh(&listen_lock);
142 return;
143 }
144
145 if (ax25cmp(&listen->callsign, callsign) == 0 && listen->dev == dev) {
146 listen_list = listen->next;
147 spin_unlock_bh(&listen_lock);
148 kfree(listen);
149 return;
150 }
151
152 while (listen != NULL && listen->next != NULL) {
153 if (ax25cmp(&listen->next->callsign, callsign) == 0 && listen->next->dev == dev) {
154 s = listen->next;
155 listen->next = listen->next->next;
156 spin_unlock_bh(&listen_lock);
157 kfree(s);
158 return;
159 }
160
161 listen = listen->next;
162 }
163 spin_unlock_bh(&listen_lock);
164}
165
Ralf Baechle70868ea2006-05-03 23:25:17 -0700166EXPORT_SYMBOL(ax25_listen_release);
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168int (*ax25_protocol_function(unsigned int pid))(struct sk_buff *, ax25_cb *)
169{
170 int (*res)(struct sk_buff *, ax25_cb *) = NULL;
Ralf Baechle8d5cf592006-12-14 15:50:01 -0800171 struct ax25_protocol *protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 read_lock(&protocol_list_lock);
174 for (protocol = protocol_list; protocol != NULL; protocol = protocol->next)
175 if (protocol->pid == pid) {
176 res = protocol->func;
177 break;
178 }
179 read_unlock(&protocol_list_lock);
180
181 return res;
182}
183
184int ax25_listen_mine(ax25_address *callsign, struct net_device *dev)
185{
186 struct listen_struct *listen;
187
188 spin_lock_bh(&listen_lock);
189 for (listen = listen_list; listen != NULL; listen = listen->next)
Ralf Baechle81dcd162006-12-14 15:50:34 -0800190 if (ax25cmp(&listen->callsign, callsign) == 0 &&
191 (listen->dev == dev || listen->dev == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 spin_unlock_bh(&listen_lock);
193 return 1;
194 }
195 spin_unlock_bh(&listen_lock);
196
197 return 0;
198}
199
200void ax25_link_failed(ax25_cb *ax25, int reason)
201{
Ralf Baechlea4282712006-12-14 15:51:23 -0800202 struct ax25_linkfail *lf;
203 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 spin_lock_bh(&linkfail_lock);
Ralf Baechlea4282712006-12-14 15:51:23 -0800206 hlist_for_each_entry(lf, node, &ax25_linkfail_list, lf_node)
207 lf->func(ax25, reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 spin_unlock_bh(&linkfail_lock);
209}
210
211int ax25_protocol_is_registered(unsigned int pid)
212{
Ralf Baechle8d5cf592006-12-14 15:50:01 -0800213 struct ax25_protocol *protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 int res = 0;
215
Ralf Baechle95ff9f42006-07-10 16:21:29 -0700216 read_lock_bh(&protocol_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 for (protocol = protocol_list; protocol != NULL; protocol = protocol->next)
218 if (protocol->pid == pid) {
219 res = 1;
220 break;
221 }
Ralf Baechle95ff9f42006-07-10 16:21:29 -0700222 read_unlock_bh(&protocol_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 return res;
225}