summaryrefslogtreecommitdiffstats
path: root/net/socket/tcp_client_socket.cc
blob: dbd21056f392d98299caee9511e8e3cde152755c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/socket/tcp_client_socket.h"

#include "base/file_util.h"
#include "base/files/file_path.h"

namespace net {

namespace {

#if defined(OS_LINUX)

// Checks to see if the system supports TCP FastOpen. Notably, it requires
// kernel support. Additionally, this checks system configuration to ensure that
// it's enabled.
bool SystemSupportsTCPFastOpen() {
  static const base::FilePath::CharType kTCPFastOpenProcFilePath[] =
      "/proc/sys/net/ipv4/tcp_fastopen";
  std::string system_enabled_tcp_fastopen;
  if (!file_util::ReadFileToString(
          base::FilePath(kTCPFastOpenProcFilePath),
          &system_enabled_tcp_fastopen)) {
    return false;
  }

  // As per http://lxr.linux.no/linux+v3.7.7/include/net/tcp.h#L225
  // TFO_CLIENT_ENABLE is the LSB
  if (system_enabled_tcp_fastopen.empty() ||
      (system_enabled_tcp_fastopen[0] & 0x1) == 0) {
    return false;
  }

  return true;
}

#else

bool SystemSupportsTCPFastOpen() {
  return false;
}

#endif

}

static bool g_tcp_fastopen_enabled = false;

void SetTCPFastOpenEnabled(bool value) {
  g_tcp_fastopen_enabled = value && SystemSupportsTCPFastOpen();
}

bool IsTCPFastOpenEnabled() {
  return g_tcp_fastopen_enabled;
}

}  // namespace net