1 // Copyright 2014 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/unix_domain_client_socket_posix.h"
7 #include <sys/socket.h>
10 #include "base/logging.h"
11 #include "base/posix/eintr_wrapper.h"
12 #include "net/base/ip_endpoint.h"
13 #include "net/base/net_errors.h"
14 #include "net/base/net_util.h"
15 #include "net/socket/socket_libevent.h"
19 UnixDomainClientSocket::UnixDomainClientSocket(const std::string
& socket_path
,
20 bool use_abstract_namespace
)
21 : socket_path_(socket_path
),
22 use_abstract_namespace_(use_abstract_namespace
) {
25 UnixDomainClientSocket::UnixDomainClientSocket(
26 scoped_ptr
<SocketLibevent
> socket
)
27 : use_abstract_namespace_(false),
28 socket_(socket
.Pass()) {
31 UnixDomainClientSocket::~UnixDomainClientSocket() {
36 bool UnixDomainClientSocket::FillAddress(const std::string
& socket_path
,
37 bool use_abstract_namespace
,
38 SockaddrStorage
* address
) {
39 struct sockaddr_un
* socket_addr
=
40 reinterpret_cast<struct sockaddr_un
*>(address
->addr
);
41 size_t path_max
= address
->addr_len
- offsetof(struct sockaddr_un
, sun_path
);
42 // Non abstract namespace pathname should be null-terminated. Abstract
43 // namespace pathname must start with '\0'. So, the size is always greater
44 // than socket_path size by 1.
45 size_t path_size
= socket_path
.size() + 1;
46 if (path_size
> path_max
)
49 memset(socket_addr
, 0, address
->addr_len
);
50 socket_addr
->sun_family
= AF_UNIX
;
51 address
->addr_len
= path_size
+ offsetof(struct sockaddr_un
, sun_path
);
52 if (!use_abstract_namespace
) {
53 memcpy(socket_addr
->sun_path
, socket_path
.c_str(), socket_path
.size());
57 #if defined(OS_ANDROID) || defined(OS_LINUX)
58 // Convert the path given into abstract socket name. It must start with
59 // the '\0' character, so we are adding it. |addr_len| must specify the
60 // length of the structure exactly, as potentially the socket name may
61 // have '\0' characters embedded (although we don't support this).
62 // Note that addr.sun_path is already zero initialized.
63 memcpy(socket_addr
->sun_path
+ 1, socket_path
.c_str(), socket_path
.size());
70 int UnixDomainClientSocket::Connect(const CompletionCallback
& callback
) {
73 if (socket_path_
.empty())
74 return ERR_ADDRESS_INVALID
;
76 SockaddrStorage address
;
77 if (!FillAddress(socket_path_
, use_abstract_namespace_
, &address
))
78 return ERR_ADDRESS_INVALID
;
80 socket_
.reset(new SocketLibevent
);
81 int rv
= socket_
->Open(AF_UNIX
);
82 DCHECK_NE(ERR_IO_PENDING
, rv
);
86 return socket_
->Connect(address
, callback
);
89 void UnixDomainClientSocket::Disconnect() {
93 bool UnixDomainClientSocket::IsConnected() const {
94 return socket_
&& socket_
->IsConnected();
97 bool UnixDomainClientSocket::IsConnectedAndIdle() const {
98 return socket_
&& socket_
->IsConnectedAndIdle();
101 int UnixDomainClientSocket::GetPeerAddress(IPEndPoint
* address
) const {
102 // Unix domain sockets have no valid associated addr/port;
103 // return either not connected or address invalid.
107 return ERR_SOCKET_NOT_CONNECTED
;
109 return ERR_ADDRESS_INVALID
;
112 int UnixDomainClientSocket::GetLocalAddress(IPEndPoint
* address
) const {
113 // Unix domain sockets have no valid associated addr/port;
114 // return either not connected or address invalid.
118 return ERR_SOCKET_NOT_CONNECTED
;
120 return ERR_ADDRESS_INVALID
;
123 const BoundNetLog
& UnixDomainClientSocket::NetLog() const {
127 void UnixDomainClientSocket::SetSubresourceSpeculation() {
130 void UnixDomainClientSocket::SetOmniboxSpeculation() {
133 bool UnixDomainClientSocket::WasEverUsed() const {
134 return true; // We don't care.
137 bool UnixDomainClientSocket::UsingTCPFastOpen() const {
141 bool UnixDomainClientSocket::WasNpnNegotiated() const {
145 NextProto
UnixDomainClientSocket::GetNegotiatedProtocol() const {
146 return kProtoUnknown
;
149 bool UnixDomainClientSocket::GetSSLInfo(SSLInfo
* ssl_info
) {
153 int UnixDomainClientSocket::Read(IOBuffer
* buf
, int buf_len
,
154 const CompletionCallback
& callback
) {
156 return socket_
->Read(buf
, buf_len
, callback
);
159 int UnixDomainClientSocket::Write(IOBuffer
* buf
, int buf_len
,
160 const CompletionCallback
& callback
) {
162 return socket_
->Write(buf
, buf_len
, callback
);
165 int UnixDomainClientSocket::SetReceiveBufferSize(int32 size
) {
167 return ERR_NOT_IMPLEMENTED
;
170 int UnixDomainClientSocket::SetSendBufferSize(int32 size
) {
172 return ERR_NOT_IMPLEMENTED
;
175 SocketDescriptor
UnixDomainClientSocket::ReleaseConnectedSocket() {
177 DCHECK(socket_
->IsConnected());
179 SocketDescriptor socket_fd
= socket_
->ReleaseConnectedSocket();