1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/socket/tcp_socket.h"
7 #include "base/file_util.h"
8 #include "base/files/file_path.h"
9 #include "base/memory/ref_counted.h"
10 #include "base/threading/worker_pool.h"
16 bool g_tcp_fastopen_enabled
= false;
18 #if defined(OS_LINUX) || defined(OS_ANDROID)
20 typedef base::RefCountedData
<bool> SharedBoolean
;
22 // Checks to see if the system supports TCP FastOpen. Notably, it requires
23 // kernel support. Additionally, this checks system configuration to ensure that
25 void SystemSupportsTCPFastOpen(scoped_refptr
<SharedBoolean
> supported
) {
26 supported
->data
= false;
27 static const base::FilePath::CharType kTCPFastOpenProcFilePath
[] =
28 "/proc/sys/net/ipv4/tcp_fastopen";
29 std::string system_enabled_tcp_fastopen
;
30 if (!base::ReadFileToString(base::FilePath(kTCPFastOpenProcFilePath
),
31 &system_enabled_tcp_fastopen
)) {
35 // As per http://lxr.linux.no/linux+v3.7.7/include/net/tcp.h#L225
36 // TFO_CLIENT_ENABLE is the LSB
37 if (system_enabled_tcp_fastopen
.empty() ||
38 (system_enabled_tcp_fastopen
[0] & 0x1) == 0) {
42 supported
->data
= true;
45 void EnableCallback(scoped_refptr
<SharedBoolean
> supported
) {
46 g_tcp_fastopen_enabled
= supported
->data
;
49 // This is asynchronous because it needs to do file IO, and it isn't allowed to
50 // do that on the IO thread.
51 void EnableFastOpenIfSupported() {
52 scoped_refptr
<SharedBoolean
> supported
= new SharedBoolean
;
53 base::WorkerPool::PostTaskAndReply(
55 base::Bind(SystemSupportsTCPFastOpen
, supported
),
56 base::Bind(EnableCallback
, supported
),
62 void EnableFastOpenIfSupported() {
63 g_tcp_fastopen_enabled
= false;
70 void SetTCPFastOpenEnabled(bool value
) {
72 EnableFastOpenIfSupported();
74 g_tcp_fastopen_enabled
= false;
78 bool IsTCPFastOpenEnabled() {
79 return g_tcp_fastopen_enabled
;