-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 15527 b: refs/heads/master c: 8129765 h: refs/heads/master i: 15525: 074f743 15523: 3ff287a 15519: d157876 v: v3
- Loading branch information
Arnaldo Carvalho de Melo
authored and
David S. Miller
committed
Jan 3, 2006
1 parent
02b123c
commit 1233145
Showing
6 changed files
with
138 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: c2977c2213993bff51911f4117281b31c4612591 | ||
refs/heads/master: 8129765ac07c2455c927051e3a8b048b619b56ee |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* NET Generic infrastructure for INET6 connection oriented protocols. | ||
* | ||
* Authors: Many people, see the TCPv6 sources | ||
* | ||
* From code originally in TCPv6 | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; either version | ||
* 2 of the License, or (at your option) any later version. | ||
*/ | ||
#ifndef _INET6_CONNECTION_SOCK_H | ||
#define _INET6_CONNECTION_SOCK_H | ||
|
||
#include <linux/types.h> | ||
|
||
struct sock; | ||
struct request_sock; | ||
|
||
extern struct request_sock *inet6_csk_search_req(const struct sock *sk, | ||
struct request_sock ***prevp, | ||
const __u16 rport, | ||
const struct in6_addr *raddr, | ||
const struct in6_addr *laddr, | ||
const int iif); | ||
|
||
extern void inet6_csk_reqsk_queue_hash_add(struct sock *sk, | ||
struct request_sock *req, | ||
const unsigned long timeout); | ||
#endif /* _INET6_CONNECTION_SOCK_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/* | ||
* INET An implementation of the TCP/IP protocol suite for the LINUX | ||
* operating system. INET is implemented using the BSD Socket | ||
* interface as the means of communication with the user level. | ||
* | ||
* Support for INET6 connection oriented protocols. | ||
* | ||
* Authors: See the TCPv6 sources | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; either version | ||
* 2 of the License, or(at your option) any later version. | ||
*/ | ||
|
||
#include <linux/config.h> | ||
#include <linux/module.h> | ||
#include <linux/in6.h> | ||
#include <linux/ipv6.h> | ||
#include <linux/jhash.h> | ||
|
||
#include <net/addrconf.h> | ||
#include <net/inet_connection_sock.h> | ||
#include <net/sock.h> | ||
|
||
/* | ||
* request_sock (formerly open request) hash tables. | ||
*/ | ||
static u32 inet6_synq_hash(const struct in6_addr *raddr, const u16 rport, | ||
const u32 rnd, const u16 synq_hsize) | ||
{ | ||
u32 a = raddr->s6_addr32[0]; | ||
u32 b = raddr->s6_addr32[1]; | ||
u32 c = raddr->s6_addr32[2]; | ||
|
||
a += JHASH_GOLDEN_RATIO; | ||
b += JHASH_GOLDEN_RATIO; | ||
c += rnd; | ||
__jhash_mix(a, b, c); | ||
|
||
a += raddr->s6_addr32[3]; | ||
b += (u32)rport; | ||
__jhash_mix(a, b, c); | ||
|
||
return c & (synq_hsize - 1); | ||
} | ||
|
||
struct request_sock *inet6_csk_search_req(const struct sock *sk, | ||
struct request_sock ***prevp, | ||
const __u16 rport, | ||
const struct in6_addr *raddr, | ||
const struct in6_addr *laddr, | ||
const int iif) | ||
{ | ||
const struct inet_connection_sock *icsk = inet_csk(sk); | ||
struct listen_sock *lopt = icsk->icsk_accept_queue.listen_opt; | ||
struct request_sock *req, **prev; | ||
|
||
for (prev = &lopt->syn_table[inet6_synq_hash(raddr, rport, | ||
lopt->hash_rnd, | ||
lopt->nr_table_entries)]; | ||
(req = *prev) != NULL; | ||
prev = &req->dl_next) { | ||
const struct tcp6_request_sock *treq = tcp6_rsk(req); | ||
|
||
if (inet_rsk(req)->rmt_port == rport && | ||
req->rsk_ops->family == AF_INET6 && | ||
ipv6_addr_equal(&treq->rmt_addr, raddr) && | ||
ipv6_addr_equal(&treq->loc_addr, laddr) && | ||
(!treq->iif || treq->iif == iif)) { | ||
BUG_TRAP(req->sk == NULL); | ||
*prevp = prev; | ||
return req; | ||
} | ||
} | ||
|
||
return NULL; | ||
} | ||
|
||
EXPORT_SYMBOL_GPL(inet6_csk_search_req); | ||
|
||
void inet6_csk_reqsk_queue_hash_add(struct sock *sk, | ||
struct request_sock *req, | ||
const unsigned long timeout) | ||
{ | ||
struct inet_connection_sock *icsk = inet_csk(sk); | ||
struct listen_sock *lopt = icsk->icsk_accept_queue.listen_opt; | ||
const u32 h = inet6_synq_hash(&tcp6_rsk(req)->rmt_addr, | ||
inet_rsk(req)->rmt_port, | ||
lopt->hash_rnd, lopt->nr_table_entries); | ||
|
||
reqsk_queue_hash_req(&icsk->icsk_accept_queue, h, req, timeout); | ||
inet_csk_reqsk_queue_added(sk, timeout); | ||
} | ||
|
||
EXPORT_SYMBOL_GPL(inet6_csk_reqsk_queue_hash_add); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters