blob: df1471220ae5504d2dbf9d97274c553281d78b94 [file] [log] [blame]
David Pursell0eb8e1b2016-01-14 17:18:27 -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
29#include <cutils/sockets.h>
30
31// https://msdn.microsoft.com/en-us/library/windows/desktop/ms741549(v=vs.85).aspx
32// claims WSACleanup() should be called before program exit, but general
33// consensus seems to be that it hasn't actually been necessary for a long time,
34// likely since Windows 3.1. Additionally, trying to properly use WSACleanup()
35// can be extremely tricky and cause deadlock when using threads or atexit().
36//
37// Both adb (1) and Chrome (2) purposefully avoid WSACleanup() with no issues.
38// (1) https://android.googlesource.com/platform/system/core.git/+/master/adb/sysdeps_win32.cpp
39// (2) https://code.google.com/p/chromium/codesearch#chromium/src/net/base/winsock_init.cc
Elliott Hughes8e9aeb92017-11-10 10:22:07 -080040bool initialize_windows_sockets() {
David Pursell0eb8e1b2016-01-14 17:18:27 -080041 // There's no harm in calling WSAStartup() multiple times but no benefit
42 // either, we may as well skip it after the first.
43 static bool init_success = false;
44
45 if (!init_success) {
46 WSADATA wsaData;
47 init_success = (WSAStartup(MAKEWORD(2, 2), &wsaData) == 0);
48 }
49
50 return init_success;
51}
52
53int socket_close(cutils_socket_t sock) {
54 return closesocket(sock);
55}
David Pursell572bce22016-01-15 14:19:56 -080056
57int socket_set_receive_timeout(cutils_socket_t sock, int timeout_ms) {
David Pursellb34e4a02016-02-01 09:42:09 -080058 return setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO,
59 reinterpret_cast<char*>(&timeout_ms), sizeof(timeout_ms));
David Pursell8385fb22016-01-29 13:49:25 -080060}
61
62ssize_t socket_send_buffers(cutils_socket_t sock,
David Pursellb34e4a02016-02-01 09:42:09 -080063 const cutils_socket_buffer_t* buffers,
David Pursell8385fb22016-01-29 13:49:25 -080064 size_t num_buffers) {
David Pursellb34e4a02016-02-01 09:42:09 -080065 if (num_buffers > SOCKET_SEND_BUFFERS_MAX_BUFFERS) {
66 return -1;
67 }
David Pursell8385fb22016-01-29 13:49:25 -080068
David Pursellb34e4a02016-02-01 09:42:09 -080069 WSABUF wsa_buffers[SOCKET_SEND_BUFFERS_MAX_BUFFERS];
70 for (size_t i = 0; i < num_buffers; ++i) {
71 // It's safe to cast away const here; WSABUF declares non-const
72 // void* because it's used for both send and receive, but since
73 // we're only sending, the data won't be modified.
74 wsa_buffers[i].buf =
75 reinterpret_cast<char*>(const_cast<void*>(buffers[i].data));
76 wsa_buffers[i].len = buffers[i].length;
77 }
78
79 DWORD bytes_sent = 0;
80 if (WSASend(sock, wsa_buffers, num_buffers, &bytes_sent, 0, nullptr,
81 nullptr) != SOCKET_ERROR) {
David Pursell8385fb22016-01-29 13:49:25 -080082 return bytes_sent;
83 }
David Pursellb34e4a02016-02-01 09:42:09 -080084
David Pursell8385fb22016-01-29 13:49:25 -080085 return -1;
86}
Mark Salyzyn52bd37e2016-11-07 09:39:30 -080087
Dan Willemsen528f1442017-11-29 18:06:11 -080088int android_get_control_socket(const char*) {
Mark Salyzyn52bd37e2016-11-07 09:39:30 -080089 return -1;
90}