Merge branch 'next' into for-linus
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / ax25 / ax25_iface.c
CommitLineData
1da177e4
LT
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 */
1da177e4
LT
9#include <linux/errno.h>
10#include <linux/types.h>
11#include <linux/socket.h>
12#include <linux/in.h>
13#include <linux/kernel.h>
70868eac 14#include <linux/module.h>
1da177e4
LT
15#include <linux/spinlock.h>
16#include <linux/timer.h>
17#include <linux/string.h>
18#include <linux/sockios.h>
19#include <linux/net.h>
5a0e3ad6 20#include <linux/slab.h>
1da177e4
LT
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>
1da177e4
LT
27#include <linux/fcntl.h>
28#include <linux/mm.h>
29#include <linux/interrupt.h>
30
8d5cf596 31static struct ax25_protocol *protocol_list;
1da177e4
LT
32static DEFINE_RWLOCK(protocol_list_lock);
33
a4282717 34static HLIST_HEAD(ax25_linkfail_list);
1da177e4
LT
35static DEFINE_SPINLOCK(linkfail_lock);
36
37static struct listen_struct {
38 struct listen_struct *next;
39 ax25_address callsign;
40 struct net_device *dev;
41} *listen_list = NULL;
42static DEFINE_SPINLOCK(listen_lock);
43
8d5cf596
RB
44/*
45 * Do not register the internal protocols AX25_P_TEXT, AX25_P_SEGMENT,
46 * AX25_P_IP or AX25_P_ARP ...
47 */
48void ax25_register_pid(struct ax25_protocol *ap)
1da177e4 49{
95ff9f4d 50 write_lock_bh(&protocol_list_lock);
8d5cf596
RB
51 ap->next = protocol_list;
52 protocol_list = ap;
95ff9f4d 53 write_unlock_bh(&protocol_list_lock);
1da177e4
LT
54}
55
8d5cf596 56EXPORT_SYMBOL_GPL(ax25_register_pid);
70868eac 57
1da177e4
LT
58void ax25_protocol_release(unsigned int pid)
59{
d8f969e6 60 struct ax25_protocol *protocol;
1da177e4 61
95ff9f4d 62 write_lock_bh(&protocol_list_lock);
1da177e4 63 protocol = protocol_list;
910d30b7
IJ
64 if (protocol == NULL)
65 goto out;
1da177e4
LT
66
67 if (protocol->pid == pid) {
68 protocol_list = protocol->next;
910d30b7 69 goto out;
1da177e4
LT
70 }
71
72 while (protocol != NULL && protocol->next != NULL) {
73 if (protocol->next->pid == pid) {
1da177e4 74 protocol->next = protocol->next->next;
910d30b7 75 goto out;
1da177e4
LT
76 }
77
78 protocol = protocol->next;
79 }
910d30b7 80out:
95ff9f4d 81 write_unlock_bh(&protocol_list_lock);
1da177e4
LT
82}
83
70868eac
RB
84EXPORT_SYMBOL(ax25_protocol_release);
85
a4282717 86void ax25_linkfail_register(struct ax25_linkfail *lf)
1da177e4 87{
1da177e4 88 spin_lock_bh(&linkfail_lock);
a4282717 89 hlist_add_head(&lf->lf_node, &ax25_linkfail_list);
1da177e4 90 spin_unlock_bh(&linkfail_lock);
1da177e4
LT
91}
92
70868eac
RB
93EXPORT_SYMBOL(ax25_linkfail_register);
94
a4282717 95void ax25_linkfail_release(struct ax25_linkfail *lf)
1da177e4 96{
1da177e4 97 spin_lock_bh(&linkfail_lock);
a4282717 98 hlist_del_init(&lf->lf_node);
1da177e4
LT
99 spin_unlock_bh(&linkfail_lock);
100}
101
70868eac
RB
102EXPORT_SYMBOL(ax25_linkfail_release);
103
1da177e4
LT
104int ax25_listen_register(ax25_address *callsign, struct net_device *dev)
105{
106 struct listen_struct *listen;
107
108 if (ax25_listen_mine(callsign, dev))
109 return 0;
110
111 if ((listen = kmalloc(sizeof(*listen), GFP_ATOMIC)) == NULL)
81dcd169 112 return -ENOMEM;
1da177e4
LT
113
114 listen->callsign = *callsign;
115 listen->dev = dev;
116
117 spin_lock_bh(&listen_lock);
118 listen->next = listen_list;
119 listen_list = listen;
120 spin_unlock_bh(&listen_lock);
121
81dcd169 122 return 0;
1da177e4
LT
123}
124
70868eac
RB
125EXPORT_SYMBOL(ax25_listen_register);
126
1da177e4
LT
127void ax25_listen_release(ax25_address *callsign, struct net_device *dev)
128{
129 struct listen_struct *s, *listen;
130
131 spin_lock_bh(&listen_lock);
132 listen = listen_list;
133 if (listen == NULL) {
134 spin_unlock_bh(&listen_lock);
135 return;
136 }
137
138 if (ax25cmp(&listen->callsign, callsign) == 0 && listen->dev == dev) {
139 listen_list = listen->next;
140 spin_unlock_bh(&listen_lock);
141 kfree(listen);
142 return;
143 }
144
145 while (listen != NULL && listen->next != NULL) {
146 if (ax25cmp(&listen->next->callsign, callsign) == 0 && listen->next->dev == dev) {
147 s = listen->next;
148 listen->next = listen->next->next;
149 spin_unlock_bh(&listen_lock);
150 kfree(s);
151 return;
152 }
153
154 listen = listen->next;
155 }
156 spin_unlock_bh(&listen_lock);
157}
158
70868eac
RB
159EXPORT_SYMBOL(ax25_listen_release);
160
1da177e4
LT
161int (*ax25_protocol_function(unsigned int pid))(struct sk_buff *, ax25_cb *)
162{
163 int (*res)(struct sk_buff *, ax25_cb *) = NULL;
8d5cf596 164 struct ax25_protocol *protocol;
1da177e4
LT
165
166 read_lock(&protocol_list_lock);
167 for (protocol = protocol_list; protocol != NULL; protocol = protocol->next)
168 if (protocol->pid == pid) {
169 res = protocol->func;
170 break;
171 }
172 read_unlock(&protocol_list_lock);
173
174 return res;
175}
176
177int ax25_listen_mine(ax25_address *callsign, struct net_device *dev)
178{
179 struct listen_struct *listen;
180
181 spin_lock_bh(&listen_lock);
182 for (listen = listen_list; listen != NULL; listen = listen->next)
81dcd169
RB
183 if (ax25cmp(&listen->callsign, callsign) == 0 &&
184 (listen->dev == dev || listen->dev == NULL)) {
1da177e4
LT
185 spin_unlock_bh(&listen_lock);
186 return 1;
187 }
188 spin_unlock_bh(&listen_lock);
189
190 return 0;
191}
192
193void ax25_link_failed(ax25_cb *ax25, int reason)
194{
a4282717 195 struct ax25_linkfail *lf;
1da177e4
LT
196
197 spin_lock_bh(&linkfail_lock);
b67bfe0d 198 hlist_for_each_entry(lf, &ax25_linkfail_list, lf_node)
a4282717 199 lf->func(ax25, reason);
1da177e4
LT
200 spin_unlock_bh(&linkfail_lock);
201}
202
203int ax25_protocol_is_registered(unsigned int pid)
204{
8d5cf596 205 struct ax25_protocol *protocol;
1da177e4
LT
206 int res = 0;
207
95ff9f4d 208 read_lock_bh(&protocol_list_lock);
1da177e4
LT
209 for (protocol = protocol_list; protocol != NULL; protocol = protocol->next)
210 if (protocol->pid == pid) {
211 res = 1;
212 break;
213 }
95ff9f4d 214 read_unlock_bh(&protocol_list_lock);
1da177e4
LT
215
216 return res;
217}