blob: e25c555daf20ca66a3b881bd96d69af6a39cb50f [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef __CUTILS_SOCKETS_H
18#define __CUTILS_SOCKETS_H
19
20#include <errno.h>
Elliott Hughesedc49d72015-04-02 17:42:56 -070021#include <stdio.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080022#include <stdlib.h>
23#include <string.h>
jeffhao2b8f76c2011-05-05 14:25:36 -070024#include <stdbool.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080025
Elliott Hughesadbf4422015-07-29 17:45:24 -070026#if defined(_WIN32)
David Pursell0eb8e1b2016-01-14 17:18:27 -080027
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028#include <winsock2.h>
David Pursell0eb8e1b2016-01-14 17:18:27 -080029#include <ws2tcpip.h>
30
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080031typedef int socklen_t;
David Pursell0eb8e1b2016-01-14 17:18:27 -080032typedef SOCKET cutils_socket_t;
33
Elliott Hughes3906c852015-01-09 12:21:51 -080034#else
David Pursell0eb8e1b2016-01-14 17:18:27 -080035
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080036#include <sys/socket.h>
David Pursell0eb8e1b2016-01-14 17:18:27 -080037
38typedef int cutils_socket_t;
39#define INVALID_SOCKET (-1)
40
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080041#endif
42
43#define ANDROID_SOCKET_ENV_PREFIX "ANDROID_SOCKET_"
44#define ANDROID_SOCKET_DIR "/dev/socket"
45
46#ifdef __cplusplus
47extern "C" {
48#endif
49
50/*
51 * android_get_control_socket - simple helper function to get the file
52 * descriptor of our init-managed Unix domain socket. `name' is the name of the
53 * socket, as given in init.rc. Returns -1 on error.
54 *
55 * This is inline and not in libcutils proper because we want to use this in
56 * third-party daemons with minimal modification.
57 */
David Pursell0eb8e1b2016-01-14 17:18:27 -080058static inline int android_get_control_socket(const char* name)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059{
Elliott Hughesedc49d72015-04-02 17:42:56 -070060 char key[64];
61 snprintf(key, sizeof(key), ANDROID_SOCKET_ENV_PREFIX "%s", name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080062
Elliott Hughesedc49d72015-04-02 17:42:56 -070063 const char* val = getenv(key);
64 if (!val) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080065 return -1;
Elliott Hughesedc49d72015-04-02 17:42:56 -070066 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080067
68 errno = 0;
Elliott Hughesedc49d72015-04-02 17:42:56 -070069 int fd = strtol(val, NULL, 10);
70 if (errno) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080071 return -1;
Elliott Hughesedc49d72015-04-02 17:42:56 -070072 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080073
74 return fd;
75}
76
77/*
78 * See also android.os.LocalSocketAddress.Namespace
79 */
80// Linux "abstract" (non-filesystem) namespace
81#define ANDROID_SOCKET_NAMESPACE_ABSTRACT 0
82// Android "reserved" (/dev/socket) namespace
83#define ANDROID_SOCKET_NAMESPACE_RESERVED 1
84// Normal filesystem namespace
85#define ANDROID_SOCKET_NAMESPACE_FILESYSTEM 2
86
David Pursell0eb8e1b2016-01-14 17:18:27 -080087/*
88 * Functions to create sockets for some common usages.
89 *
90 * All these functions are implemented for Unix, but only a few are implemented
91 * for Windows. Those which are can be identified by the cutils_socket_t
92 * return type. The idea is to be able to use this return value with the
93 * standard Unix socket functions on any platform.
94 *
95 * On Unix the returned cutils_socket_t is a standard int file descriptor and
96 * can always be used as normal with all file descriptor functions.
97 *
98 * On Windows utils_socket_t is an unsigned int pointer, and is only valid
99 * with functions that specifically take a socket, e.g. send(), sendto(),
100 * recv(), and recvfrom(). General file descriptor functions such as read(),
101 * write(), and close() will not work with utils_socket_t and will require
102 * special handling.
103 *
104 * These functions return INVALID_SOCKET (-1) on failure for all platforms.
105 */
106int socket_loopback_client(int port, int type);
107cutils_socket_t socket_network_client(const char* host, int port, int type);
108int socket_network_client_timeout(const char* host, int port, int type,
109 int timeout, int* getaddrinfo_error);
110int socket_loopback_server(int port, int type);
111int socket_local_server(const char* name, int namespaceId, int type);
112int socket_local_server_bind(int s, const char* name, int namespaceId);
113int socket_local_client_connect(int fd, const char *name, int namespaceId,
114 int type);
115int socket_local_client(const char* name, int namespaceId, int type);
116cutils_socket_t socket_inaddr_any_server(int port, int type);
117
118/*
119 * Closes a cutils_socket_t. Windows doesn't allow calling close() on a socket
120 * so this is a cross-platform way to close a cutils_socket_t.
121 *
122 * Returns 0 on success.
123 */
124int socket_close(cutils_socket_t sock);
jeffhao2b8f76c2011-05-05 14:25:36 -0700125
126/*
David Pursell572bce22016-01-15 14:19:56 -0800127 * Sets socket receive timeout using SO_RCVTIMEO. Setting |timeout_ms| to 0
128 * disables receive timeouts.
129 *
130 * Return 0 on success.
131 */
132int socket_set_receive_timeout(cutils_socket_t sock, int timeout_ms);
133
134/*
jeffhao2b8f76c2011-05-05 14:25:36 -0700135 * socket_peer_is_trusted - Takes a socket which is presumed to be a
136 * connected local socket (e.g. AF_LOCAL) and returns whether the peer
137 * (the userid that owns the process on the other end of that socket)
138 * is one of the two trusted userids, root or shell.
139 *
140 * Note: This only works as advertised on the Android OS and always
141 * just returns true when called on other operating systems.
142 */
143extern bool socket_peer_is_trusted(int fd);
144
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800145#ifdef __cplusplus
146}
147#endif
148
David Pursell0eb8e1b2016-01-14 17:18:27 -0800149#endif /* __CUTILS_SOCKETS_H */