Linux Audio

Check our new training course

Loading...
v5.4
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Copyright (C) 2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
  4 */
  5
  6#include <linux/kernel.h>
  7#include <linux/init.h>
  8#include <linux/cryptohash.h>
  9#include <linux/module.h>
 10#include <linux/cache.h>
 11#include <linux/random.h>
 12#include <linux/hrtimer.h>
 13#include <linux/ktime.h>
 14#include <linux/string.h>
 15#include <linux/net.h>
 16#include <linux/siphash.h>
 17#include <net/secure_seq.h>
 18
 19#if IS_ENABLED(CONFIG_IPV6) || IS_ENABLED(CONFIG_INET)
 20#include <linux/in6.h>
 21#include <net/tcp.h>
 
 22
 23static siphash_key_t net_secret __read_mostly;
 24static siphash_key_t ts_secret __read_mostly;
 25
 26static __always_inline void net_secret_init(void)
 27{
 28	net_get_random_once(&net_secret, sizeof(net_secret));
 29}
 30
 31static __always_inline void ts_secret_init(void)
 32{
 33	net_get_random_once(&ts_secret, sizeof(ts_secret));
 34}
 35#endif
 36
 37#ifdef CONFIG_INET
 38static u32 seq_scale(u32 seq)
 39{
 40	/*
 41	 *	As close as possible to RFC 793, which
 42	 *	suggests using a 250 kHz clock.
 43	 *	Further reading shows this assumes 2 Mb/s networks.
 44	 *	For 10 Mb/s Ethernet, a 1 MHz clock is appropriate.
 45	 *	For 10 Gb/s Ethernet, a 1 GHz clock should be ok, but
 46	 *	we also need to limit the resolution so that the u32 seq
 47	 *	overlaps less than one time per MSL (2 minutes).
 48	 *	Choosing a clock of 64 ns period is OK. (period of 274 s)
 49	 */
 50	return seq + (ktime_get_real_ns() >> 6);
 51}
 52#endif
 53
 54#if IS_ENABLED(CONFIG_IPV6)
 55u32 secure_tcpv6_ts_off(const struct net *net,
 56			const __be32 *saddr, const __be32 *daddr)
 57{
 58	const struct {
 59		struct in6_addr saddr;
 60		struct in6_addr daddr;
 61	} __aligned(SIPHASH_ALIGNMENT) combined = {
 62		.saddr = *(struct in6_addr *)saddr,
 63		.daddr = *(struct in6_addr *)daddr,
 64	};
 65
 66	if (net->ipv4.sysctl_tcp_timestamps != 1)
 67		return 0;
 68
 69	ts_secret_init();
 70	return siphash(&combined, offsetofend(typeof(combined), daddr),
 71		       &ts_secret);
 72}
 73EXPORT_SYMBOL(secure_tcpv6_ts_off);
 74
 75u32 secure_tcpv6_seq(const __be32 *saddr, const __be32 *daddr,
 76		     __be16 sport, __be16 dport)
 77{
 78	const struct {
 79		struct in6_addr saddr;
 80		struct in6_addr daddr;
 81		__be16 sport;
 82		__be16 dport;
 83	} __aligned(SIPHASH_ALIGNMENT) combined = {
 84		.saddr = *(struct in6_addr *)saddr,
 85		.daddr = *(struct in6_addr *)daddr,
 86		.sport = sport,
 87		.dport = dport
 88	};
 89	u32 hash;
 90
 91	net_secret_init();
 92	hash = siphash(&combined, offsetofend(typeof(combined), dport),
 93		       &net_secret);
 94	return seq_scale(hash);
 95}
 96EXPORT_SYMBOL(secure_tcpv6_seq);
 97
 98u32 secure_ipv6_port_ephemeral(const __be32 *saddr, const __be32 *daddr,
 99			       __be16 dport)
100{
101	const struct {
102		struct in6_addr saddr;
103		struct in6_addr daddr;
104		__be16 dport;
105	} __aligned(SIPHASH_ALIGNMENT) combined = {
106		.saddr = *(struct in6_addr *)saddr,
107		.daddr = *(struct in6_addr *)daddr,
108		.dport = dport
109	};
110	net_secret_init();
111	return siphash(&combined, offsetofend(typeof(combined), dport),
112		       &net_secret);
 
 
 
 
 
 
 
 
113}
114EXPORT_SYMBOL(secure_ipv6_port_ephemeral);
115#endif
116
117#ifdef CONFIG_INET
118u32 secure_tcp_ts_off(const struct net *net, __be32 saddr, __be32 daddr)
119{
120	if (net->ipv4.sysctl_tcp_timestamps != 1)
121		return 0;
122
123	ts_secret_init();
124	return siphash_2u32((__force u32)saddr, (__force u32)daddr,
125			    &ts_secret);
126}
127
128/* secure_tcp_seq_and_tsoff(a, b, 0, d) == secure_ipv4_port_ephemeral(a, b, d),
129 * but fortunately, `sport' cannot be 0 in any circumstances. If this changes,
130 * it would be easy enough to have the former function use siphash_4u32, passing
131 * the arguments as separate u32.
132 */
133u32 secure_tcp_seq(__be32 saddr, __be32 daddr,
134		   __be16 sport, __be16 dport)
135{
136	u32 hash;
137
138	net_secret_init();
139	hash = siphash_3u32((__force u32)saddr, (__force u32)daddr,
140			    (__force u32)sport << 16 | (__force u32)dport,
141			    &net_secret);
142	return seq_scale(hash);
 
 
 
 
 
143}
144EXPORT_SYMBOL_GPL(secure_tcp_seq);
145
146u32 secure_ipv4_port_ephemeral(__be32 saddr, __be32 daddr, __be16 dport)
147{
 
 
148	net_secret_init();
149	return siphash_3u32((__force u32)saddr, (__force u32)daddr,
150			    (__force u16)dport, &net_secret);
 
 
 
 
 
 
151}
152EXPORT_SYMBOL_GPL(secure_ipv4_port_ephemeral);
153#endif
154
155#if IS_ENABLED(CONFIG_IP_DCCP)
156u64 secure_dccp_sequence_number(__be32 saddr, __be32 daddr,
157				__be16 sport, __be16 dport)
158{
 
159	u64 seq;
 
160	net_secret_init();
161	seq = siphash_3u32((__force u32)saddr, (__force u32)daddr,
162			   (__force u32)sport << 16 | (__force u32)dport,
163			   &net_secret);
 
 
 
 
 
164	seq += ktime_get_real_ns();
165	seq &= (1ull << 48) - 1;
 
166	return seq;
167}
168EXPORT_SYMBOL(secure_dccp_sequence_number);
169
170#if IS_ENABLED(CONFIG_IPV6)
171u64 secure_dccpv6_sequence_number(__be32 *saddr, __be32 *daddr,
172				  __be16 sport, __be16 dport)
173{
174	const struct {
175		struct in6_addr saddr;
176		struct in6_addr daddr;
177		__be16 sport;
178		__be16 dport;
179	} __aligned(SIPHASH_ALIGNMENT) combined = {
180		.saddr = *(struct in6_addr *)saddr,
181		.daddr = *(struct in6_addr *)daddr,
182		.sport = sport,
183		.dport = dport
184	};
185	u64 seq;
 
 
186	net_secret_init();
187	seq = siphash(&combined, offsetofend(typeof(combined), dport),
188		      &net_secret);
 
 
 
 
 
 
 
 
 
189	seq += ktime_get_real_ns();
190	seq &= (1ull << 48) - 1;
 
191	return seq;
192}
193EXPORT_SYMBOL(secure_dccpv6_sequence_number);
194#endif
195#endif
v4.10.11
 
 
 
 
 
  1#include <linux/kernel.h>
  2#include <linux/init.h>
  3#include <linux/cryptohash.h>
  4#include <linux/module.h>
  5#include <linux/cache.h>
  6#include <linux/random.h>
  7#include <linux/hrtimer.h>
  8#include <linux/ktime.h>
  9#include <linux/string.h>
 10#include <linux/net.h>
 11
 12#include <net/secure_seq.h>
 13
 14#if IS_ENABLED(CONFIG_IPV6) || IS_ENABLED(CONFIG_INET)
 
 15#include <net/tcp.h>
 16#define NET_SECRET_SIZE (MD5_MESSAGE_BYTES / 4)
 17
 18static u32 net_secret[NET_SECRET_SIZE] ____cacheline_aligned;
 
 19
 20static __always_inline void net_secret_init(void)
 21{
 22	net_get_random_once(net_secret, sizeof(net_secret));
 
 
 
 
 
 23}
 24#endif
 25
 26#ifdef CONFIG_INET
 27static u32 seq_scale(u32 seq)
 28{
 29	/*
 30	 *	As close as possible to RFC 793, which
 31	 *	suggests using a 250 kHz clock.
 32	 *	Further reading shows this assumes 2 Mb/s networks.
 33	 *	For 10 Mb/s Ethernet, a 1 MHz clock is appropriate.
 34	 *	For 10 Gb/s Ethernet, a 1 GHz clock should be ok, but
 35	 *	we also need to limit the resolution so that the u32 seq
 36	 *	overlaps less than one time per MSL (2 minutes).
 37	 *	Choosing a clock of 64 ns period is OK. (period of 274 s)
 38	 */
 39	return seq + (ktime_get_real_ns() >> 6);
 40}
 41#endif
 42
 43#if IS_ENABLED(CONFIG_IPV6)
 44u32 secure_tcpv6_sequence_number(const __be32 *saddr, const __be32 *daddr,
 45				 __be16 sport, __be16 dport, u32 *tsoff)
 46{
 47	u32 secret[MD5_MESSAGE_BYTES / 4];
 48	u32 hash[MD5_DIGEST_WORDS];
 49	u32 i;
 50
 51	net_secret_init();
 52	memcpy(hash, saddr, 16);
 53	for (i = 0; i < 4; i++)
 54		secret[i] = net_secret[i] + (__force u32)daddr[i];
 55	secret[4] = net_secret[4] +
 56		(((__force u16)sport << 16) + (__force u16)dport);
 57	for (i = 5; i < MD5_MESSAGE_BYTES / 4; i++)
 58		secret[i] = net_secret[i];
 59
 60	md5_transform(hash, secret);
 61
 62	*tsoff = sysctl_tcp_timestamps == 1 ? hash[1] : 0;
 63	return seq_scale(hash[0]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 64}
 65EXPORT_SYMBOL(secure_tcpv6_sequence_number);
 66
 67u32 secure_ipv6_port_ephemeral(const __be32 *saddr, const __be32 *daddr,
 68			       __be16 dport)
 69{
 70	u32 secret[MD5_MESSAGE_BYTES / 4];
 71	u32 hash[MD5_DIGEST_WORDS];
 72	u32 i;
 73
 
 
 
 
 
 74	net_secret_init();
 75	memcpy(hash, saddr, 16);
 76	for (i = 0; i < 4; i++)
 77		secret[i] = net_secret[i] + (__force u32) daddr[i];
 78	secret[4] = net_secret[4] + (__force u32)dport;
 79	for (i = 5; i < MD5_MESSAGE_BYTES / 4; i++)
 80		secret[i] = net_secret[i];
 81
 82	md5_transform(hash, secret);
 83
 84	return hash[0];
 85}
 86EXPORT_SYMBOL(secure_ipv6_port_ephemeral);
 87#endif
 88
 89#ifdef CONFIG_INET
 
 
 
 
 
 
 
 
 
 90
 91u32 secure_tcp_sequence_number(__be32 saddr, __be32 daddr,
 92			       __be16 sport, __be16 dport, u32 *tsoff)
 
 
 
 
 
 93{
 94	u32 hash[MD5_DIGEST_WORDS];
 95
 96	net_secret_init();
 97	hash[0] = (__force u32)saddr;
 98	hash[1] = (__force u32)daddr;
 99	hash[2] = ((__force u16)sport << 16) + (__force u16)dport;
100	hash[3] = net_secret[15];
101
102	md5_transform(hash, net_secret);
103
104	*tsoff = sysctl_tcp_timestamps == 1 ? hash[1] : 0;
105	return seq_scale(hash[0]);
106}
 
107
108u32 secure_ipv4_port_ephemeral(__be32 saddr, __be32 daddr, __be16 dport)
109{
110	u32 hash[MD5_DIGEST_WORDS];
111
112	net_secret_init();
113	hash[0] = (__force u32)saddr;
114	hash[1] = (__force u32)daddr;
115	hash[2] = (__force u32)dport ^ net_secret[14];
116	hash[3] = net_secret[15];
117
118	md5_transform(hash, net_secret);
119
120	return hash[0];
121}
122EXPORT_SYMBOL_GPL(secure_ipv4_port_ephemeral);
123#endif
124
125#if IS_ENABLED(CONFIG_IP_DCCP)
126u64 secure_dccp_sequence_number(__be32 saddr, __be32 daddr,
127				__be16 sport, __be16 dport)
128{
129	u32 hash[MD5_DIGEST_WORDS];
130	u64 seq;
131
132	net_secret_init();
133	hash[0] = (__force u32)saddr;
134	hash[1] = (__force u32)daddr;
135	hash[2] = ((__force u16)sport << 16) + (__force u16)dport;
136	hash[3] = net_secret[15];
137
138	md5_transform(hash, net_secret);
139
140	seq = hash[0] | (((u64)hash[1]) << 32);
141	seq += ktime_get_real_ns();
142	seq &= (1ull << 48) - 1;
143
144	return seq;
145}
146EXPORT_SYMBOL(secure_dccp_sequence_number);
147
148#if IS_ENABLED(CONFIG_IPV6)
149u64 secure_dccpv6_sequence_number(__be32 *saddr, __be32 *daddr,
150				  __be16 sport, __be16 dport)
151{
152	u32 secret[MD5_MESSAGE_BYTES / 4];
153	u32 hash[MD5_DIGEST_WORDS];
 
 
 
 
 
 
 
 
 
154	u64 seq;
155	u32 i;
156
157	net_secret_init();
158	memcpy(hash, saddr, 16);
159	for (i = 0; i < 4; i++)
160		secret[i] = net_secret[i] + (__force u32)daddr[i];
161	secret[4] = net_secret[4] +
162		(((__force u16)sport << 16) + (__force u16)dport);
163	for (i = 5; i < MD5_MESSAGE_BYTES / 4; i++)
164		secret[i] = net_secret[i];
165
166	md5_transform(hash, secret);
167
168	seq = hash[0] | (((u64)hash[1]) << 32);
169	seq += ktime_get_real_ns();
170	seq &= (1ull << 48) - 1;
171
172	return seq;
173}
174EXPORT_SYMBOL(secure_dccpv6_sequence_number);
175#endif
176#endif