[PATCH] x86: do_IRQ(): check irq number
[linux-2.6/linux-loongson.git] / net / ax25 / ax25_iface.c
blob3bb152710b77cbe07cdc556b3700a42fc36094dc
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.
7 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
8 */
9 #include <linux/config.h>
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>
15 #include <linux/module.h>
16 #include <linux/sched.h>
17 #include <linux/spinlock.h>
18 #include <linux/timer.h>
19 #include <linux/string.h>
20 #include <linux/sockios.h>
21 #include <linux/net.h>
22 #include <net/ax25.h>
23 #include <linux/inet.h>
24 #include <linux/netdevice.h>
25 #include <linux/skbuff.h>
26 #include <net/sock.h>
27 #include <asm/uaccess.h>
28 #include <asm/system.h>
29 #include <linux/fcntl.h>
30 #include <linux/mm.h>
31 #include <linux/interrupt.h>
33 static struct protocol_struct {
34 struct protocol_struct *next;
35 unsigned int pid;
36 int (*func)(struct sk_buff *, ax25_cb *);
37 } *protocol_list = NULL;
38 static DEFINE_RWLOCK(protocol_list_lock);
40 static struct linkfail_struct {
41 struct linkfail_struct *next;
42 void (*func)(ax25_cb *, int);
43 } *linkfail_list = NULL;
44 static DEFINE_SPINLOCK(linkfail_lock);
46 static struct listen_struct {
47 struct listen_struct *next;
48 ax25_address callsign;
49 struct net_device *dev;
50 } *listen_list = NULL;
51 static DEFINE_SPINLOCK(listen_lock);
53 int ax25_protocol_register(unsigned int pid,
54 int (*func)(struct sk_buff *, ax25_cb *))
56 struct protocol_struct *protocol;
58 if (pid == AX25_P_TEXT || pid == AX25_P_SEGMENT)
59 return 0;
60 #ifdef CONFIG_INET
61 if (pid == AX25_P_IP || pid == AX25_P_ARP)
62 return 0;
63 #endif
64 if ((protocol = kmalloc(sizeof(*protocol), GFP_ATOMIC)) == NULL)
65 return 0;
67 protocol->pid = pid;
68 protocol->func = func;
70 write_lock(&protocol_list_lock);
71 protocol->next = protocol_list;
72 protocol_list = protocol;
73 write_unlock(&protocol_list_lock);
75 return 1;
78 EXPORT_SYMBOL(ax25_protocol_register);
80 void ax25_protocol_release(unsigned int pid)
82 struct protocol_struct *s, *protocol;
84 write_lock(&protocol_list_lock);
85 protocol = protocol_list;
86 if (protocol == NULL) {
87 write_unlock(&protocol_list_lock);
88 return;
91 if (protocol->pid == pid) {
92 protocol_list = protocol->next;
93 write_unlock(&protocol_list_lock);
94 kfree(protocol);
95 return;
98 while (protocol != NULL && protocol->next != NULL) {
99 if (protocol->next->pid == pid) {
100 s = protocol->next;
101 protocol->next = protocol->next->next;
102 write_unlock(&protocol_list_lock);
103 kfree(s);
104 return;
107 protocol = protocol->next;
109 write_unlock(&protocol_list_lock);
112 EXPORT_SYMBOL(ax25_protocol_release);
114 int ax25_linkfail_register(void (*func)(ax25_cb *, int))
116 struct linkfail_struct *linkfail;
118 if ((linkfail = kmalloc(sizeof(*linkfail), GFP_ATOMIC)) == NULL)
119 return 0;
121 linkfail->func = func;
123 spin_lock_bh(&linkfail_lock);
124 linkfail->next = linkfail_list;
125 linkfail_list = linkfail;
126 spin_unlock_bh(&linkfail_lock);
128 return 1;
131 EXPORT_SYMBOL(ax25_linkfail_register);
133 void ax25_linkfail_release(void (*func)(ax25_cb *, int))
135 struct linkfail_struct *s, *linkfail;
137 spin_lock_bh(&linkfail_lock);
138 linkfail = linkfail_list;
139 if (linkfail == NULL) {
140 spin_unlock_bh(&linkfail_lock);
141 return;
144 if (linkfail->func == func) {
145 linkfail_list = linkfail->next;
146 spin_unlock_bh(&linkfail_lock);
147 kfree(linkfail);
148 return;
151 while (linkfail != NULL && linkfail->next != NULL) {
152 if (linkfail->next->func == func) {
153 s = linkfail->next;
154 linkfail->next = linkfail->next->next;
155 spin_unlock_bh(&linkfail_lock);
156 kfree(s);
157 return;
160 linkfail = linkfail->next;
162 spin_unlock_bh(&linkfail_lock);
165 EXPORT_SYMBOL(ax25_linkfail_release);
167 int ax25_listen_register(ax25_address *callsign, struct net_device *dev)
169 struct listen_struct *listen;
171 if (ax25_listen_mine(callsign, dev))
172 return 0;
174 if ((listen = kmalloc(sizeof(*listen), GFP_ATOMIC)) == NULL)
175 return 0;
177 listen->callsign = *callsign;
178 listen->dev = dev;
180 spin_lock_bh(&listen_lock);
181 listen->next = listen_list;
182 listen_list = listen;
183 spin_unlock_bh(&listen_lock);
185 return 1;
188 EXPORT_SYMBOL(ax25_listen_register);
190 void ax25_listen_release(ax25_address *callsign, struct net_device *dev)
192 struct listen_struct *s, *listen;
194 spin_lock_bh(&listen_lock);
195 listen = listen_list;
196 if (listen == NULL) {
197 spin_unlock_bh(&listen_lock);
198 return;
201 if (ax25cmp(&listen->callsign, callsign) == 0 && listen->dev == dev) {
202 listen_list = listen->next;
203 spin_unlock_bh(&listen_lock);
204 kfree(listen);
205 return;
208 while (listen != NULL && listen->next != NULL) {
209 if (ax25cmp(&listen->next->callsign, callsign) == 0 && listen->next->dev == dev) {
210 s = listen->next;
211 listen->next = listen->next->next;
212 spin_unlock_bh(&listen_lock);
213 kfree(s);
214 return;
217 listen = listen->next;
219 spin_unlock_bh(&listen_lock);
222 EXPORT_SYMBOL(ax25_listen_release);
224 int (*ax25_protocol_function(unsigned int pid))(struct sk_buff *, ax25_cb *)
226 int (*res)(struct sk_buff *, ax25_cb *) = NULL;
227 struct protocol_struct *protocol;
229 read_lock(&protocol_list_lock);
230 for (protocol = protocol_list; protocol != NULL; protocol = protocol->next)
231 if (protocol->pid == pid) {
232 res = protocol->func;
233 break;
235 read_unlock(&protocol_list_lock);
237 return res;
240 int ax25_listen_mine(ax25_address *callsign, struct net_device *dev)
242 struct listen_struct *listen;
244 spin_lock_bh(&listen_lock);
245 for (listen = listen_list; listen != NULL; listen = listen->next)
246 if (ax25cmp(&listen->callsign, callsign) == 0 && (listen->dev == dev || listen->dev == NULL)) {
247 spin_unlock_bh(&listen_lock);
248 return 1;
250 spin_unlock_bh(&listen_lock);
252 return 0;
255 void ax25_link_failed(ax25_cb *ax25, int reason)
257 struct linkfail_struct *linkfail;
259 spin_lock_bh(&linkfail_lock);
260 for (linkfail = linkfail_list; linkfail != NULL; linkfail = linkfail->next)
261 (linkfail->func)(ax25, reason);
262 spin_unlock_bh(&linkfail_lock);
265 int ax25_protocol_is_registered(unsigned int pid)
267 struct protocol_struct *protocol;
268 int res = 0;
270 read_lock(&protocol_list_lock);
271 for (protocol = protocol_list; protocol != NULL; protocol = protocol->next)
272 if (protocol->pid == pid) {
273 res = 1;
274 break;
276 read_unlock(&protocol_list_lock);
278 return res;