1 /* RxRPC remote transport endpoint management
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/module.h>
13 #include <linux/net.h>
14 #include <linux/skbuff.h>
15 #include <linux/udp.h>
17 #include <linux/in6.h>
18 #include <linux/icmp.h>
19 #include <linux/slab.h>
21 #include <net/af_rxrpc.h>
23 #include <net/route.h>
24 #include "ar-internal.h"
26 static LIST_HEAD(rxrpc_peers
);
27 static DEFINE_RWLOCK(rxrpc_peer_lock
);
28 static DECLARE_WAIT_QUEUE_HEAD(rxrpc_peer_wq
);
30 static void rxrpc_destroy_peer(struct work_struct
*work
);
33 * assess the MTU size for the network interface through which this peer is
36 static void rxrpc_assess_MTU_size(struct rxrpc_peer
*peer
)
42 rt
= ip_route_output_ports(&init_net
, NULL
,
43 peer
->srx
.transport
.sin
.sin_addr
.s_addr
, 0,
44 htons(7000), htons(7001),
47 _leave(" [route err %ld]", PTR_ERR(rt
));
51 peer
->if_mtu
= dst_mtu(&rt
->dst
);
52 dst_release(&rt
->dst
);
54 _leave(" [if_mtu %u]", peer
->if_mtu
);
60 static struct rxrpc_peer
*rxrpc_alloc_peer(struct sockaddr_rxrpc
*srx
,
63 struct rxrpc_peer
*peer
;
67 peer
= kzalloc(sizeof(struct rxrpc_peer
), gfp
);
69 INIT_WORK(&peer
->destroyer
, &rxrpc_destroy_peer
);
70 INIT_LIST_HEAD(&peer
->link
);
71 INIT_LIST_HEAD(&peer
->error_targets
);
72 spin_lock_init(&peer
->lock
);
73 atomic_set(&peer
->usage
, 1);
74 peer
->debug_id
= atomic_inc_return(&rxrpc_debug_id
);
75 memcpy(&peer
->srx
, srx
, sizeof(*srx
));
77 rxrpc_assess_MTU_size(peer
);
78 peer
->mtu
= peer
->if_mtu
;
80 if (srx
->transport
.family
== AF_INET
) {
81 peer
->hdrsize
= sizeof(struct iphdr
);
82 switch (srx
->transport_type
) {
84 peer
->hdrsize
+= sizeof(struct udphdr
);
94 peer
->hdrsize
+= sizeof(struct rxrpc_header
);
95 peer
->maxdata
= peer
->mtu
- peer
->hdrsize
;
98 _leave(" = %p", peer
);
103 * obtain a remote transport endpoint for the specified address
105 struct rxrpc_peer
*rxrpc_get_peer(struct sockaddr_rxrpc
*srx
, gfp_t gfp
)
107 struct rxrpc_peer
*peer
, *candidate
;
108 const char *new = "old";
111 _enter("{%d,%d,%pI4+%hu}",
114 &srx
->transport
.sin
.sin_addr
,
115 ntohs(srx
->transport
.sin
.sin_port
));
117 /* search the peer list first */
118 read_lock_bh(&rxrpc_peer_lock
);
119 list_for_each_entry(peer
, &rxrpc_peers
, link
) {
120 _debug("check PEER %d { u=%d t=%d l=%d }",
122 atomic_read(&peer
->usage
),
123 peer
->srx
.transport_type
,
124 peer
->srx
.transport_len
);
126 if (atomic_read(&peer
->usage
) > 0 &&
127 peer
->srx
.transport_type
== srx
->transport_type
&&
128 peer
->srx
.transport_len
== srx
->transport_len
&&
129 memcmp(&peer
->srx
.transport
,
131 srx
->transport_len
) == 0)
132 goto found_extant_peer
;
134 read_unlock_bh(&rxrpc_peer_lock
);
136 /* not yet present - create a candidate for a new record and then
138 candidate
= rxrpc_alloc_peer(srx
, gfp
);
140 _leave(" = -ENOMEM");
141 return ERR_PTR(-ENOMEM
);
144 write_lock_bh(&rxrpc_peer_lock
);
146 list_for_each_entry(peer
, &rxrpc_peers
, link
) {
147 if (atomic_read(&peer
->usage
) > 0 &&
148 peer
->srx
.transport_type
== srx
->transport_type
&&
149 peer
->srx
.transport_len
== srx
->transport_len
&&
150 memcmp(&peer
->srx
.transport
,
152 srx
->transport_len
) == 0)
153 goto found_extant_second
;
156 /* we can now add the new candidate to the list */
160 list_add_tail(&peer
->link
, &rxrpc_peers
);
161 write_unlock_bh(&rxrpc_peer_lock
);
165 _net("PEER %s %d {%d,%u,%pI4+%hu}",
168 peer
->srx
.transport_type
,
169 peer
->srx
.transport
.family
,
170 &peer
->srx
.transport
.sin
.sin_addr
,
171 ntohs(peer
->srx
.transport
.sin
.sin_port
));
173 _leave(" = %p {u=%d}", peer
, atomic_read(&peer
->usage
));
176 /* we found the peer in the list immediately */
178 usage
= atomic_inc_return(&peer
->usage
);
179 read_unlock_bh(&rxrpc_peer_lock
);
182 /* we found the peer on the second time through the list */
184 usage
= atomic_inc_return(&peer
->usage
);
185 write_unlock_bh(&rxrpc_peer_lock
);
191 * find the peer associated with a packet
193 struct rxrpc_peer
*rxrpc_find_peer(struct rxrpc_local
*local
,
194 __be32 addr
, __be16 port
)
196 struct rxrpc_peer
*peer
;
200 /* search the peer list */
201 read_lock_bh(&rxrpc_peer_lock
);
203 if (local
->srx
.transport
.family
== AF_INET
&&
204 local
->srx
.transport_type
== SOCK_DGRAM
206 list_for_each_entry(peer
, &rxrpc_peers
, link
) {
207 if (atomic_read(&peer
->usage
) > 0 &&
208 peer
->srx
.transport_type
== SOCK_DGRAM
&&
209 peer
->srx
.transport
.family
== AF_INET
&&
210 peer
->srx
.transport
.sin
.sin_port
== port
&&
211 peer
->srx
.transport
.sin
.sin_addr
.s_addr
== addr
)
218 read_unlock_bh(&rxrpc_peer_lock
);
219 _leave(" = -EAFNOSUPPORT");
220 return ERR_PTR(-EAFNOSUPPORT
);
223 _net("Rx UDP DGRAM from peer %d", peer
->debug_id
);
224 atomic_inc(&peer
->usage
);
225 read_unlock_bh(&rxrpc_peer_lock
);
226 _leave(" = %p", peer
);
230 _net("Rx UDP DGRAM from NEW peer %d", peer
->debug_id
);
231 read_unlock_bh(&rxrpc_peer_lock
);
232 _leave(" = -EBUSY [new]");
233 return ERR_PTR(-EBUSY
);
237 * release a remote transport endpoint
239 void rxrpc_put_peer(struct rxrpc_peer
*peer
)
241 _enter("%p{u=%d}", peer
, atomic_read(&peer
->usage
));
243 ASSERTCMP(atomic_read(&peer
->usage
), >, 0);
245 if (likely(!atomic_dec_and_test(&peer
->usage
))) {
250 rxrpc_queue_work(&peer
->destroyer
);
255 * destroy a remote transport endpoint
257 static void rxrpc_destroy_peer(struct work_struct
*work
)
259 struct rxrpc_peer
*peer
=
260 container_of(work
, struct rxrpc_peer
, destroyer
);
262 _enter("%p{%d}", peer
, atomic_read(&peer
->usage
));
264 write_lock_bh(&rxrpc_peer_lock
);
265 list_del(&peer
->link
);
266 write_unlock_bh(&rxrpc_peer_lock
);
268 _net("DESTROY PEER %d", peer
->debug_id
);
271 if (list_empty(&rxrpc_peers
))
272 wake_up_all(&rxrpc_peer_wq
);
277 * preemptively destroy all the peer records from a transport endpoint rather
278 * than waiting for them to time out
280 void __exit
rxrpc_destroy_all_peers(void)
282 DECLARE_WAITQUEUE(myself
,current
);
286 /* we simply have to wait for them to go away */
287 if (!list_empty(&rxrpc_peers
)) {
288 set_current_state(TASK_UNINTERRUPTIBLE
);
289 add_wait_queue(&rxrpc_peer_wq
, &myself
);
291 while (!list_empty(&rxrpc_peers
)) {
293 set_current_state(TASK_UNINTERRUPTIBLE
);
296 remove_wait_queue(&rxrpc_peer_wq
, &myself
);
297 set_current_state(TASK_RUNNING
);