blob: 72f13a9928e4e7a8c0f25298ce4a953ff6684456 [file] [log] [blame]
Arnaldo Carvalho de Melo505cbfc2005-08-12 09:19:38 -03001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Authors: Lotsa people, from code originally in tcp
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#ifndef _INET6_HASHTABLES_H
15#define _INET6_HASHTABLES_H
16
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030017
18#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
19#include <linux/in6.h>
20#include <linux/ipv6.h>
Arnaldo Carvalho de Melo505cbfc2005-08-12 09:19:38 -030021#include <linux/types.h>
David S. Millerb3da2cf2007-03-23 11:40:27 -070022#include <linux/jhash.h>
23
24#include <net/inet_sock.h>
Arnaldo Carvalho de Melo505cbfc2005-08-12 09:19:38 -030025
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030026#include <net/ipv6.h>
27
Arnaldo Carvalho de Melo505cbfc2005-08-12 09:19:38 -030028struct inet_hashinfo;
29
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030030/* I have no idea if this is a good hash for v6 or not. -DaveM */
Pavel Emelyanov33de0142008-06-16 17:13:48 -070031static inline unsigned int inet6_ehashfn(struct net *net,
32 const struct in6_addr *laddr, const u16 lport,
Al Virod2ecd9c2006-11-08 00:20:00 -080033 const struct in6_addr *faddr, const __be16 fport)
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030034{
David S. Millerb3da2cf2007-03-23 11:40:27 -070035 u32 ports = (lport ^ (__force u16)fport);
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030036
David S. Millerb3da2cf2007-03-23 11:40:27 -070037 return jhash_3words((__force u32)laddr->s6_addr32[3],
38 (__force u32)faddr->s6_addr32[3],
39 ports, inet_ehash_secret);
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030040}
41
Eric Dumazet81c3d542005-10-03 14:13:38 -070042static inline int inet6_sk_ehashfn(const struct sock *sk)
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030043{
44 const struct inet_sock *inet = inet_sk(sk);
45 const struct ipv6_pinfo *np = inet6_sk(sk);
46 const struct in6_addr *laddr = &np->rcv_saddr;
47 const struct in6_addr *faddr = &np->daddr;
48 const __u16 lport = inet->num;
Al Virod2ecd9c2006-11-08 00:20:00 -080049 const __be16 fport = inet->dport;
Pavel Emelyanov33de0142008-06-16 17:13:48 -070050 struct net *net = sock_net(sk);
51
52 return inet6_ehashfn(net, laddr, lport, faddr, fport);
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030053}
54
Arnaldo Carvalho de Meloab1e0a12008-02-03 04:06:04 -080055extern void __inet6_hash(struct sock *sk);
Arnaldo Carvalho de Melo90b19d32005-12-13 23:15:01 -080056
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030057/*
58 * Sockets in TCP_CLOSE state are _always_ taken out of the hash, so
59 * we need not check it for TCP lookups anymore, thanks Alexey. -DaveM
60 *
61 * The sockhash lock must be held as a reader here.
62 */
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -080063extern struct sock *__inet6_lookup_established(struct net *net,
64 struct inet_hashinfo *hashinfo,
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030065 const struct in6_addr *saddr,
Al Virod2ecd9c2006-11-08 00:20:00 -080066 const __be16 sport,
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030067 const struct in6_addr *daddr,
68 const u16 hnum,
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070069 const int dif);
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030070
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -080071extern struct sock *inet6_lookup_listener(struct net *net,
72 struct inet_hashinfo *hashinfo,
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030073 const struct in6_addr *daddr,
74 const unsigned short hnum,
75 const int dif);
76
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -080077static inline struct sock *__inet6_lookup(struct net *net,
78 struct inet_hashinfo *hashinfo,
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030079 const struct in6_addr *saddr,
Al Virod2ecd9c2006-11-08 00:20:00 -080080 const __be16 sport,
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030081 const struct in6_addr *daddr,
82 const u16 hnum,
83 const int dif)
84{
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -080085 struct sock *sk = __inet6_lookup_established(net, hashinfo, saddr,
86 sport, daddr, hnum, dif);
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030087 if (sk)
88 return sk;
89
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -080090 return inet6_lookup_listener(net, hashinfo, daddr, hnum, dif);
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030091}
92
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -080093extern struct sock *inet6_lookup(struct net *net, struct inet_hashinfo *hashinfo,
Al Virod2ecd9c2006-11-08 00:20:00 -080094 const struct in6_addr *saddr, const __be16 sport,
95 const struct in6_addr *daddr, const __be16 dport,
Arnaldo Carvalho de Melo505cbfc2005-08-12 09:19:38 -030096 const int dif);
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030097#endif /* defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE) */
Arnaldo Carvalho de Melo505cbfc2005-08-12 09:19:38 -030098#endif /* _INET6_HASHTABLES_H */