Ard Biesheuvel
c681edae33
net: ipv4: move tcp_fastopen server side code to SipHash library
...
Using a bare block cipher in non-crypto code is almost always a bad idea,
not only for security reasons (and we've seen some examples of this in
the kernel in the past), but also for performance reasons.
In the TCP fastopen case, we call into the bare AES block cipher one or
two times (depending on whether the connection is IPv4 or IPv6). On most
systems, this results in a call chain such as
crypto_cipher_encrypt_one(ctx, dst, src)
crypto_cipher_crt(tfm)->cit_encrypt_one(crypto_cipher_tfm(tfm), ...);
aesni_encrypt
kernel_fpu_begin();
aesni_enc(ctx, dst, src); // asm routine
kernel_fpu_end();
It is highly unlikely that the use of special AES instructions has a
benefit in this case, especially since we are doing the above twice
for IPv6 connections, instead of using a transform which can process
the entire input in one go.
We could switch to the cbcmac(aes) shash, which would at least get
rid of the duplicated overhead in *some* cases (i.e., today, only
arm64 has an accelerated implementation of cbcmac(aes), while x86 will
end up using the generic cbcmac template wrapping the AES-NI cipher,
which basically ends up doing exactly the above). However, in the given
context, it makes more sense to use a light-weight MAC algorithm that
is more suitable for the purpose at hand, such as SipHash.
Since the output size of SipHash already matches our chosen value for
TCP_FASTOPEN_COOKIE_SIZE, and given that it accepts arbitrary input
sizes, this greatly simplifies the code as well.
NOTE: Server farms backing a single server IP for load balancing purposes
and sharing a single fastopen key will be adversely affected by
this change unless all systems in the pool receive their kernel
upgrades at the same time.
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org >
Signed-off-by: Eric Dumazet <edumazet@google.com >
Signed-off-by: David S. Miller <davem@davemloft.net >
2019-06-17 13:56:26 -07:00
..
2019-05-30 11:26:37 -07:00
2018-11-14 10:56:33 -08:00
2019-02-06 09:36:36 -08:00
2018-03-31 01:33:09 +08:00
2018-11-09 17:33:32 +01:00
2019-05-07 19:43:05 +02:00
2019-05-30 11:29:52 -07:00
2019-05-24 17:27:12 +02:00
2019-06-08 15:20:40 -07:00
2018-03-21 13:58:08 +09:00
2019-05-30 11:26:37 -07:00
2018-10-16 11:13:50 +02:00
2019-05-30 11:26:32 -07:00
2019-05-11 10:54:43 -04:00
2019-05-30 11:29:22 -07:00
2019-05-30 11:29:22 -07:00
2019-05-30 11:26:37 -07:00
2019-05-31 11:13:10 +02:00
2019-05-15 18:21:43 -07:00
2019-05-30 11:29:52 -07:00
2018-11-22 11:38:36 -08:00
2019-06-13 13:23:19 -07:00
2019-05-30 11:29:19 -07:00
2019-05-30 11:29:19 -07:00
2019-04-27 17:03:44 -04:00
2019-05-30 11:26:37 -07:00
2019-05-30 11:29:22 -07:00
2019-06-07 11:00:14 -07:00
2019-05-30 11:29:22 -07:00
2019-05-26 13:04:12 -07:00
2019-05-24 17:27:13 +02:00
2019-05-30 11:29:22 -07:00
2019-05-30 11:26:32 -07:00
2019-05-21 11:28:40 +02:00
2019-05-14 19:52:52 -07:00
2019-05-30 11:29:53 -07:00
2019-05-02 17:17:52 +02:00
2019-05-30 11:26:41 -07:00
2019-05-15 18:21:43 -07:00
2019-05-30 11:26:37 -07:00
2019-05-30 11:26:37 -07:00
2019-05-24 17:27:12 +02:00
2017-11-02 11:10:55 +01:00
2019-05-06 11:55:39 +02:00
2019-05-24 17:39:02 +02:00
2019-05-30 11:29:55 -07:00
2019-05-30 11:26:35 -07:00
2019-05-09 00:41:00 -05:00
2019-05-24 17:27:11 +02:00
2019-05-24 17:27:11 +02:00
2019-05-24 17:27:11 +02:00
2019-05-24 17:27:11 +02:00
2019-05-24 17:27:11 +02:00
2017-02-16 10:08:41 +05:30
2019-01-31 14:20:54 +01:00
2019-05-21 11:28:46 +02:00
2018-06-17 08:27:01 +09:00
2019-05-30 11:26:32 -07:00
2019-02-13 08:07:31 +01:00
2012-03-16 10:38:24 -04:00
2019-05-30 11:26:35 -07:00
2019-05-24 17:37:52 +02:00
2019-05-24 17:37:52 +02:00
2017-11-02 11:10:55 +01:00
2017-11-07 10:32:44 +01:00
2019-03-05 21:07:21 -08:00
2018-07-04 10:32:48 +01:00
2019-05-14 09:47:48 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-14 19:52:50 -07:00
2019-05-23 10:25:26 -06:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:26:41 -07:00
2018-10-31 08:54:12 -07:00
2019-05-14 19:52:49 -07:00
2019-04-05 16:02:30 -10:00
2018-06-21 12:52:11 +02:00
2019-05-23 10:25:26 -06:00
2019-04-30 16:12:02 -06:00
2019-05-04 07:24:08 -06:00
2019-05-23 10:25:26 -06:00
2019-02-07 12:57:17 -07:00
2019-05-24 17:36:45 +02:00
2017-11-02 11:10:55 +01:00
2019-04-27 09:07:04 -07:00
2019-06-07 11:00:14 -07:00
2019-05-29 15:17:35 +02:00
2019-06-07 11:00:14 -07:00
2019-04-30 16:11:59 -06:00
2019-04-09 17:05:46 -07:00
2018-10-02 22:20:50 -04:00
2019-03-07 18:31:59 -08:00
2019-05-07 08:39:02 -06:00
2018-06-05 18:06:24 +01:00
2019-03-07 12:20:11 -08:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2019-06-01 15:51:31 -07:00
2019-05-28 09:30:02 -07:00
2019-05-15 13:21:37 -07:00
2019-04-25 08:19:15 -07:00
2019-02-06 10:35:02 -08:00
2017-11-02 11:10:55 +01:00
2018-10-25 11:14:36 -07:00
2017-11-02 11:10:55 +01:00
2019-03-05 21:07:20 -08:00
2019-02-07 00:13:27 +01:00
2019-05-14 19:52:48 -07:00
2019-05-09 15:25:13 -04:00
2018-01-08 17:30:45 +01:00
2019-02-19 13:20:35 +01:00
2019-05-30 11:25:18 -07:00
2019-05-30 11:26:35 -07:00
2019-05-18 15:52:26 -07:00
2017-11-02 11:10:55 +01:00
2018-04-11 10:28:38 -07:00
2013-12-29 15:25:48 +01:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2019-04-25 22:00:16 +02:00
2019-04-25 22:00:17 +02:00
2019-05-24 17:27:11 +02:00
2019-04-25 21:33:37 +02:00
2019-04-25 21:33:37 +02:00
2019-04-13 11:17:36 -05:00
2019-05-30 11:26:39 -07:00
2013-09-13 15:09:52 +02:00
2019-05-14 07:57:29 -07:00
2019-05-10 12:20:36 +02:00
2019-05-10 05:29:27 -07:00
2019-05-14 19:52:50 -07:00
2019-05-24 17:27:11 +02:00
2019-05-30 11:26:32 -07:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:29:53 -07:00
2019-05-20 15:02:08 -07:00
2019-05-24 17:27:11 +02:00
2019-05-07 21:28:04 -07:00
2017-11-28 15:24:02 +01:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:26:37 -07:00
2016-04-15 11:20:32 -07:00
2017-05-05 15:54:45 +08:00
2018-12-11 11:40:13 +09:00
2019-04-25 15:38:52 -04:00
2019-05-09 14:50:09 -07:00
2019-05-24 17:37:52 +02:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:29:21 -07:00
2019-05-30 11:29:21 -07:00
2019-05-24 17:37:54 +02:00
2019-01-04 09:02:17 +01:00
2019-05-30 11:26:41 -07:00
2019-05-30 11:26:41 -07:00
2019-05-30 11:26:41 -07:00
2019-05-03 15:30:23 +01:00
2019-05-06 15:04:40 +02:00
2019-05-21 11:28:40 +02:00
2018-03-16 19:58:27 +01:00
2019-05-15 17:35:54 +01:00
2017-11-02 11:10:55 +01:00
2019-05-24 17:37:53 +02:00
2019-05-01 12:29:28 -04:00
2017-11-15 11:56:19 -08:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:26:35 -07:00
2019-04-16 10:01:24 +02:00
2019-04-13 19:08:22 -06:00
2019-05-30 11:26:32 -07:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:29:19 -07:00
2019-02-28 03:28:53 -05:00
2018-01-12 17:33:38 -08:00
2018-01-01 12:40:27 -07:00
2019-05-30 11:26:32 -07:00
2019-05-25 16:33:36 -07:00
2019-05-30 11:26:32 -07:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2018-03-08 10:34:44 +09:00
2019-05-08 21:23:11 -07:00
2017-08-07 17:22:14 +02:00
2019-05-30 11:26:32 -07:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:26:32 -07:00
2019-02-28 08:24:23 -07:00
2019-05-31 16:41:29 -07:00
2017-11-02 11:10:55 +01:00
2013-02-23 17:50:12 -08:00
2018-05-14 16:44:41 +02:00
2019-05-30 11:26:35 -07:00
2017-11-02 11:10:55 +01:00
2019-05-24 17:36:45 +02:00
2019-05-24 17:27:11 +02:00
2019-05-24 17:27:11 +02:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2019-05-07 21:12:44 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-12 18:16:31 -04:00
2019-05-30 11:26:41 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:35 -07:00
2019-05-30 11:26:32 -07:00
2019-05-24 17:27:12 +02:00
2019-05-13 15:08:16 -07:00
2019-05-13 15:08:16 -07:00
2019-05-15 16:05:47 -07:00
2017-11-02 11:10:55 +01:00
2019-06-01 15:51:32 -07:00
2019-04-22 09:48:12 -06:00
2018-12-20 09:51:31 -07:00
2019-05-14 09:47:47 -07:00
2018-08-02 10:24:51 +02:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:29:53 -07:00
2019-05-30 11:26:35 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:35 -07:00
2019-05-30 11:26:35 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:37 -07:00
2019-05-21 11:28:39 +02:00
2018-11-23 11:51:21 +01:00
2019-05-14 09:47:44 -07:00
2019-05-14 09:47:48 -07:00
2019-05-24 17:36:45 +02:00
2019-05-24 17:36:45 +02:00
2019-04-15 17:19:53 -07:00
2019-04-10 18:58:56 -04:00
2018-03-08 12:30:37 +01:00
2019-04-16 13:08:16 +02:00
2019-05-21 11:28:39 +02:00
2019-05-21 11:28:39 +02:00
2019-05-21 11:28:39 +02:00
2019-05-21 11:28:39 +02:00
2019-05-30 11:27:46 -07:00
2019-05-30 11:26:32 -07:00
2019-01-31 08:25:09 -07:00
2019-05-30 11:29:55 -07:00
2019-06-14 14:16:17 +02:00
2019-05-30 11:26:41 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-23 09:48:07 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:37 -07:00
2019-05-30 11:26:32 -07:00
2019-06-07 11:00:14 -07:00
2019-01-22 10:23:17 +01:00
2019-04-29 10:44:03 +02:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-06-02 18:08:36 -07:00
2017-10-19 16:54:49 -07:00
2019-04-11 17:15:48 +02:00
2019-05-30 11:26:41 -07:00
2019-01-22 13:37:25 +01:00
2019-03-22 14:36:02 +01:00
2019-05-30 11:26:35 -07:00
2019-04-12 12:52:38 -05:00
2017-11-02 11:10:55 +01:00
2019-05-01 07:47:37 -07:00
2019-04-26 17:11:46 +02:00
2019-04-11 15:42:54 +02:00
2019-05-30 11:26:32 -07:00
2014-09-23 23:13:13 -07:00
2019-05-14 19:52:52 -07:00
2018-06-22 13:43:27 +09:00
2019-05-30 11:26:32 -07:00
2019-05-01 10:41:38 +01:00
2019-05-01 10:49:17 +01:00
2019-05-24 17:36:45 +02:00
2019-05-24 17:37:52 +02:00
2019-05-30 11:26:35 -07:00
2019-06-14 19:31:47 -07:00
2019-05-30 11:26:32 -07:00
2019-03-28 10:58:28 +01:00
2017-11-02 11:10:55 +01:00
2019-05-14 19:52:49 -07:00
2017-11-02 11:10:55 +01:00
2019-05-07 18:48:09 -07:00
2019-05-24 17:27:11 +02:00
2019-05-30 11:26:32 -07:00
2019-05-24 17:27:11 +02:00
2019-05-24 17:36:45 +02:00
2019-05-24 17:36:45 +02:00
2012-07-21 10:34:00 -07:00
2019-04-25 22:06:10 +02:00
2019-05-30 11:26:35 -07:00
2018-12-06 13:57:03 +01:00
2019-05-30 11:29:19 -07:00
2019-05-30 11:29:19 -07:00
2019-05-14 19:52:48 -07:00
2019-05-15 23:39:38 +02:00
2019-05-14 19:52:49 -07:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:29:22 -07:00
2019-05-21 11:28:46 +02:00
2018-01-11 14:39:07 -06:00
2019-05-24 17:39:02 +02:00
2019-05-06 10:19:19 -06:00
2019-03-07 18:31:59 -08:00
2019-04-18 16:18:27 -04:00
2019-06-01 15:51:31 -07:00
2019-05-14 19:52:49 -07:00
2019-05-16 15:55:48 -07:00
2019-05-21 11:28:45 +02:00
2019-05-06 13:50:15 -07:00
2019-05-30 11:26:32 -07:00
2019-05-24 17:37:53 +02:00
2019-05-07 20:17:51 -07:00
2018-12-21 22:31:26 -06:00
2019-04-23 10:40:32 -07:00
2017-11-02 11:10:55 +01:00
2019-05-13 09:23:18 -04:00
2019-04-18 17:42:54 -07:00
2019-05-30 11:26:32 -07:00
2019-06-01 15:51:31 -07:00
2019-05-14 09:47:50 -07:00
2019-05-14 09:47:49 -07:00
2018-05-14 13:14:23 -06:00
2019-05-30 11:26:32 -07:00
2019-05-21 11:28:45 +02:00
2018-12-28 12:11:51 -08:00
2017-11-17 20:21:44 -08:00
2019-05-30 11:26:41 -07:00
2019-05-14 09:47:46 -07:00
2019-05-14 19:52:48 -07:00
2019-05-14 19:52:48 -07:00
2018-04-05 21:36:27 -07:00
2019-05-14 09:47:49 -07:00
2019-05-14 19:52:48 -07:00
2019-03-10 13:16:37 -07:00
2019-05-14 10:55:54 -07:00
2019-05-07 21:50:24 +09:00
2019-04-04 21:04:13 -04:00
2017-11-02 11:10:55 +01:00
2019-05-24 17:27:10 +02:00
2018-03-24 11:25:35 -05:00
2019-05-19 10:58:45 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:35 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-31 09:45:26 -07:00
2019-05-31 18:02:48 +02:00
2018-10-19 17:01:43 -07:00
2019-04-26 16:11:54 -04:00
2019-04-25 14:18:14 -04:00
2019-04-25 14:18:15 -04:00
2019-05-30 11:26:41 -07:00
2019-04-04 18:41:21 +02:00
2018-11-03 10:09:37 -07:00
2019-04-12 20:09:34 -04:00
2019-04-25 16:51:42 +02:00
2019-05-14 17:19:47 +02:00
2019-04-25 19:43:12 +02:00
2019-02-08 15:02:49 -08:00
2019-05-19 10:35:20 -07:00
2019-05-01 14:26:36 -05:00
2019-05-24 17:27:11 +02:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:35 -07:00
2018-12-28 12:11:48 -08:00
2018-07-08 11:13:25 +09:00
2019-05-16 10:29:00 -07:00
2019-05-03 10:49:17 -04:00
2017-10-07 12:10:32 +08:00
2019-05-30 11:26:39 -07:00
2019-05-14 09:47:51 -07:00
2018-10-21 10:46:39 -04:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:29:19 -07:00
2019-04-23 16:38:09 -05:00
2019-04-25 16:33:07 -05:00
2019-04-15 13:24:02 +01:00
2019-04-15 13:24:02 +01:00
2019-05-27 10:55:08 +02:00
2019-05-21 10:50:45 +02:00
2018-09-26 15:11:29 -06:00
2019-03-13 12:25:31 -07:00
2019-05-17 10:33:30 -07:00
2019-02-07 18:11:58 -08:00
2019-05-30 11:26:37 -07:00
2019-06-07 11:00:14 -07:00
2019-05-29 21:48:53 -07:00
2019-05-07 14:31:03 +02:00
2019-04-26 11:09:55 -07:00
2019-05-30 11:29:52 -07:00
2019-03-08 10:09:53 -08:00
2019-05-21 11:28:45 +02:00
2016-06-28 00:42:10 +02:00
2019-05-13 10:51:31 +02:00
2019-04-10 12:13:31 +05:30
2019-02-01 11:53:35 +01:00
2019-05-30 11:26:35 -07:00
2019-05-30 11:26:35 -07:00
2019-05-24 17:36:45 +02:00
2019-05-14 19:52:48 -07:00
2019-05-24 17:36:45 +02:00
2019-05-30 11:29:54 -07:00
2019-05-30 11:26:32 -07:00
2012-10-13 10:46:48 +01:00
2019-05-24 17:36:45 +02:00
2019-05-24 17:36:45 +02:00
2017-11-02 11:10:55 +01:00
2018-12-07 12:35:46 +00:00
2017-11-02 11:10:55 +01:00
2019-05-14 19:52:51 -07:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2019-04-18 16:44:05 +02:00
2019-05-30 11:26:41 -07:00
2019-05-14 19:52:48 -07:00
2019-05-14 19:52:48 -07:00
2019-05-24 17:36:45 +02:00
2019-06-13 22:34:55 -07:00
2019-05-30 11:26:32 -07:00
2019-05-14 19:52:48 -07:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:26:32 -07:00
2019-05-17 10:08:59 -07:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:26:35 -07:00
2019-05-30 11:26:35 -07:00
2019-06-03 13:26:20 -07:00
2019-05-14 19:52:51 -07:00
2019-05-30 11:29:21 -07:00
2018-03-27 10:39:47 +02:00
2019-04-02 17:57:35 +02:00
2017-11-02 11:10:55 +01:00
2019-05-29 13:27:08 -07:00
2019-03-13 09:46:10 -04:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2018-06-03 17:37:11 -07:00
2018-04-24 19:50:10 -07:00
2019-05-08 22:14:36 +02:00
2018-07-25 11:22:19 +02:00
2019-05-21 11:28:46 +02:00
2019-05-21 11:28:46 +02:00
2019-04-10 10:56:06 +02:00
2019-03-22 11:01:02 -06:00
2019-05-07 12:47:47 -03:00
2019-05-14 19:52:48 -07:00
2018-09-10 17:37:06 +01:00
2019-05-30 11:29:52 -07:00
2019-05-24 17:39:00 +02:00
2019-05-30 11:26:32 -07:00
2018-12-11 16:28:41 -08:00
2017-11-02 11:10:55 +01:00
2019-05-07 20:17:51 -07:00
2019-04-30 16:11:57 -06:00
2019-04-19 15:09:10 +02:00
2018-03-22 21:30:56 -05:00
2017-11-02 11:10:55 +01:00
2018-04-11 10:28:36 -07:00
2017-12-04 10:52:54 -08:00
2019-05-30 11:26:41 -07:00
2018-11-27 19:44:21 +01:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:35 -07:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:35 -07:00
2012-10-13 10:46:48 +01:00
2019-04-30 12:37:56 +02:00
2019-05-31 12:37:46 -07:00
2017-11-02 11:10:55 +01:00
2019-04-19 09:46:04 -07:00
2018-03-08 13:49:26 +00:00
2019-05-30 11:26:32 -07:00
2019-06-07 11:00:14 -07:00
2018-12-20 23:47:09 +01:00
2019-05-16 15:51:55 -07:00
2019-05-30 11:29:19 -07:00
2019-04-24 12:17:08 +02:00
2019-05-30 11:26:35 -07:00
2019-03-15 15:29:47 -07:00
2019-05-24 17:36:45 +02:00
2017-11-02 11:10:55 +01:00
2017-01-12 09:33:39 +01:00
2017-01-12 09:33:39 +01:00
2019-04-08 11:59:47 +01:00
2019-03-26 14:39:24 -07:00
2019-02-09 08:45:59 -08:00
2019-05-30 11:26:37 -07:00
2018-06-14 12:21:18 +09:00
2019-04-29 12:37:57 +02:00
2018-06-05 16:57:31 -07:00
2019-02-07 16:38:35 +01:00
2019-06-16 13:53:41 -07:00
2019-05-30 11:26:32 -07:00
2017-11-02 11:10:55 +01:00
2018-05-15 21:47:09 +03:00
2019-04-08 16:44:21 -06:00
2018-04-28 15:01:14 -07:00
2019-05-27 10:51:45 +02:00
2019-04-17 17:20:01 -05:00
2018-02-05 21:34:50 +01:00
2017-08-18 14:07:26 -03:00
2019-05-30 11:29:22 -07:00
2017-11-02 11:10:55 +01:00
2011-03-15 00:43:46 +01:00
2018-02-06 18:32:47 -08:00
2019-05-21 11:28:46 +02:00
2017-11-02 11:10:55 +01:00
2013-12-07 01:03:14 +01:00
2019-06-17 13:56:26 -07:00
2019-05-30 11:26:32 -07:00
2019-05-16 16:16:18 -07:00
2018-05-25 12:27:53 +01:00
2017-11-02 11:10:55 +01:00
2019-04-18 11:18:53 +03:00
2019-05-06 19:40:31 -07:00
2019-05-30 11:29:19 -07:00
2019-05-30 11:29:19 -07:00
2018-06-24 14:39:46 +02:00
2019-05-30 11:26:37 -07:00
2018-04-17 17:18:04 +02:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2019-05-24 17:39:02 +02:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2015-02-03 12:48:43 -05:00
2019-05-30 11:29:21 -07:00
2019-04-26 19:04:19 -07:00
2018-09-14 11:19:30 -04:00
2018-12-10 10:17:45 +01:00
2019-05-30 11:26:32 -07:00
2019-05-30 11:26:32 -07:00
2019-04-25 13:51:22 -04:00
2019-05-30 11:26:35 -07:00
2019-05-08 10:03:52 -07:00
2005-04-16 15:20:36 -07:00
2019-05-14 09:47:45 -07:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:26:41 -07:00
2019-03-28 01:55:18 +09:00
2019-05-24 17:27:11 +02:00
2019-05-30 11:26:41 -07:00
2019-05-24 17:27:13 +02:00
2019-05-24 17:27:13 +02:00
2015-12-04 10:38:59 -02:00
2017-11-02 11:10:55 +01:00
2019-05-12 13:11:36 -04:00
2017-12-08 16:37:50 +01:00
2019-05-24 17:39:00 +02:00
2019-05-18 15:52:26 -07:00
2019-05-14 09:47:45 -07:00
2019-05-30 11:26:35 -07:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2019-05-30 11:26:37 -07:00
2019-05-15 17:35:54 +01:00
2019-04-09 15:14:49 -06:00
2019-05-30 11:26:41 -07:00
2019-03-06 14:52:48 -08:00
2018-12-07 22:26:37 -07:00
2019-02-20 17:08:54 -05:00
2019-05-24 17:36:47 +02:00
2014-08-08 15:57:26 -07:00
2017-08-15 09:02:08 -07:00