blob: e791f2c8bb5e29d2480533f998be9da64a63bed3 [file] [log] [blame]
David Pursell815c7be2015-12-09 17:09:54 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
David Pursell572bce22016-01-15 14:19:56 -080029// This file provides a class interface for cross-platform socket functionality. The main fastboot
David Pursell815c7be2015-12-09 17:09:54 -080030// engine should not be using this interface directly, but instead should use a higher-level
David Pursell572bce22016-01-15 14:19:56 -080031// interface that enforces the fastboot protocol.
David Pursell815c7be2015-12-09 17:09:54 -080032
Elliott Hughes6ebec932018-04-10 14:22:13 -070033#pragma once
David Pursell815c7be2015-12-09 17:09:54 -080034
David Pursellb34e4a02016-02-01 09:42:09 -080035#include <functional>
David Pursell815c7be2015-12-09 17:09:54 -080036#include <memory>
37#include <string>
David Pursellb34e4a02016-02-01 09:42:09 -080038#include <utility>
39#include <vector>
David Pursell815c7be2015-12-09 17:09:54 -080040
David Pursell572bce22016-01-15 14:19:56 -080041#include <android-base/macros.h>
42#include <cutils/sockets.h>
David Pursellb34e4a02016-02-01 09:42:09 -080043#include <gtest/gtest_prod.h>
David Pursell572bce22016-01-15 14:19:56 -080044
45// Socket interface to be implemented for each platform.
46class Socket {
David Pursell815c7be2015-12-09 17:09:54 -080047 public:
David Pursell572bce22016-01-15 14:19:56 -080048 enum class Protocol { kTcp, kUdp };
49
David Pursellc3a46692016-01-29 08:10:50 -080050 // Returns the socket error message. This must be called immediately after a socket failure
51 // before any other system calls are made.
52 static std::string GetErrorMessage();
53
David Pursell815c7be2015-12-09 17:09:54 -080054 // Creates a new client connection. Clients are connected to a specific hostname/port and can
55 // only send to that destination.
56 // On failure, |error| is filled (if non-null) and nullptr is returned.
David Pursell572bce22016-01-15 14:19:56 -080057 static std::unique_ptr<Socket> NewClient(Protocol protocol, const std::string& hostname,
58 int port, std::string* error);
David Pursell815c7be2015-12-09 17:09:54 -080059
60 // Creates a new server bound to local |port|. This is only meant for testing, during normal
61 // fastboot operation the device acts as the server.
David Pursell572bce22016-01-15 14:19:56 -080062 // A UDP server saves sender addresses in Receive(), and uses the most recent address during
David Pursell815c7be2015-12-09 17:09:54 -080063 // calls to Send().
David Pursell572bce22016-01-15 14:19:56 -080064 static std::unique_ptr<Socket> NewServer(Protocol protocol, int port);
David Pursell815c7be2015-12-09 17:09:54 -080065
David Pursell572bce22016-01-15 14:19:56 -080066 // Destructor closes the socket if it's open.
67 virtual ~Socket();
David Pursell815c7be2015-12-09 17:09:54 -080068
David Pursell572bce22016-01-15 14:19:56 -080069 // Sends |length| bytes of |data|. For TCP sockets this will continue trying to send until all
David Pursellb34e4a02016-02-01 09:42:09 -080070 // bytes are transmitted. Returns true on success.
71 virtual bool Send(const void* data, size_t length) = 0;
72
73 // Sends |buffers| using multi-buffer write, which can be significantly faster than making
74 // multiple calls. For UDP sockets |buffers| are all combined into a single datagram; for
75 // TCP sockets this will continue sending until all buffers are fully transmitted. Returns true
76 // on success.
77 //
78 // Note: This is non-functional for UDP server Sockets because it's not currently needed and
79 // would require an additional sendto() variation of multi-buffer write.
80 virtual bool Send(std::vector<cutils_socket_buffer_t> buffers) = 0;
David Pursell815c7be2015-12-09 17:09:54 -080081
82 // Waits up to |timeout_ms| to receive up to |length| bytes of data. |timout_ms| of 0 will
David Pursellc742a7f2016-02-04 15:21:58 -080083 // block forever. Returns the number of bytes received or -1 on error/timeout; see
84 // ReceiveTimedOut() to distinguish between the two.
David Pursell815c7be2015-12-09 17:09:54 -080085 virtual ssize_t Receive(void* data, size_t length, int timeout_ms) = 0;
86
David Pursell572bce22016-01-15 14:19:56 -080087 // Calls Receive() until exactly |length| bytes have been received or an error occurs.
88 virtual ssize_t ReceiveAll(void* data, size_t length, int timeout_ms);
89
David Pursellc742a7f2016-02-04 15:21:58 -080090 // Returns true if the last Receive() call timed out normally and can be retried; fatal errors
91 // or successful reads will return false.
92 bool ReceiveTimedOut() { return receive_timed_out_; }
93
David Pursell815c7be2015-12-09 17:09:54 -080094 // Closes the socket. Returns 0 on success, -1 on error.
David Pursell572bce22016-01-15 14:19:56 -080095 virtual int Close();
96
97 // Accepts an incoming TCP connection. No effect for UDP sockets. Returns a new Socket
98 // connected to the client on success, nullptr on failure.
99 virtual std::unique_ptr<Socket> Accept() { return nullptr; }
David Pursell815c7be2015-12-09 17:09:54 -0800100
David Pursellc3a46692016-01-29 08:10:50 -0800101 // Returns the local port the Socket is bound to or -1 on error.
102 int GetLocalPort();
103
David Pursell815c7be2015-12-09 17:09:54 -0800104 protected:
105 // Protected constructor to force factory function use.
Chih-Hung Hsieh034c4752016-07-12 13:50:44 -0700106 explicit Socket(cutils_socket_t sock);
David Pursell815c7be2015-12-09 17:09:54 -0800107
David Pursellc742a7f2016-02-04 15:21:58 -0800108 // Blocks up to |timeout_ms| until a read is possible on |sock_|, and sets |receive_timed_out_|
109 // as appropriate to help distinguish between normal timeouts and fatal errors. Returns true if
110 // a subsequent recv() on |sock_| will complete without blocking or if |timeout_ms| <= 0.
111 bool WaitForRecv(int timeout_ms);
David Pursell572bce22016-01-15 14:19:56 -0800112
113 cutils_socket_t sock_ = INVALID_SOCKET;
David Pursellc742a7f2016-02-04 15:21:58 -0800114 bool receive_timed_out_ = false;
David Pursell572bce22016-01-15 14:19:56 -0800115
David Pursellb34e4a02016-02-01 09:42:09 -0800116 // Non-class functions we want to override during tests to verify functionality. Implementation
117 // should call this rather than using socket_send_buffers() directly.
118 std::function<ssize_t(cutils_socket_t, cutils_socket_buffer_t*, size_t)>
119 socket_send_buffers_function_ = &socket_send_buffers;
120
David Pursell572bce22016-01-15 14:19:56 -0800121 private:
David Pursellb34e4a02016-02-01 09:42:09 -0800122 FRIEND_TEST(SocketTest, TestTcpSendBuffers);
123 FRIEND_TEST(SocketTest, TestUdpSendBuffers);
124
David Pursell572bce22016-01-15 14:19:56 -0800125 DISALLOW_COPY_AND_ASSIGN(Socket);
David Pursell815c7be2015-12-09 17:09:54 -0800126};