blob: 2d3c743c00702ea555cca5bd453a5a062a794614 [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)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080027#include <winsock2.h>
28typedef int socklen_t;
Elliott Hughes3906c852015-01-09 12:21:51 -080029#else
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080030#include <sys/socket.h>
31#endif
32
33#define ANDROID_SOCKET_ENV_PREFIX "ANDROID_SOCKET_"
34#define ANDROID_SOCKET_DIR "/dev/socket"
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40/*
41 * android_get_control_socket - simple helper function to get the file
42 * descriptor of our init-managed Unix domain socket. `name' is the name of the
43 * socket, as given in init.rc. Returns -1 on error.
44 *
45 * This is inline and not in libcutils proper because we want to use this in
46 * third-party daemons with minimal modification.
47 */
48static inline int android_get_control_socket(const char *name)
49{
Elliott Hughesedc49d72015-04-02 17:42:56 -070050 char key[64];
51 snprintf(key, sizeof(key), ANDROID_SOCKET_ENV_PREFIX "%s", name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080052
Elliott Hughesedc49d72015-04-02 17:42:56 -070053 const char* val = getenv(key);
54 if (!val) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080055 return -1;
Elliott Hughesedc49d72015-04-02 17:42:56 -070056 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080057
58 errno = 0;
Elliott Hughesedc49d72015-04-02 17:42:56 -070059 int fd = strtol(val, NULL, 10);
60 if (errno) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080061 return -1;
Elliott Hughesedc49d72015-04-02 17:42:56 -070062 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080063
64 return fd;
65}
66
67/*
68 * See also android.os.LocalSocketAddress.Namespace
69 */
70// Linux "abstract" (non-filesystem) namespace
71#define ANDROID_SOCKET_NAMESPACE_ABSTRACT 0
72// Android "reserved" (/dev/socket) namespace
73#define ANDROID_SOCKET_NAMESPACE_RESERVED 1
74// Normal filesystem namespace
75#define ANDROID_SOCKET_NAMESPACE_FILESYSTEM 2
76
77extern int socket_loopback_client(int port, int type);
78extern int socket_network_client(const char *host, int port, int type);
Ken Liermanaecc6a62013-06-20 09:27:13 -070079extern int socket_network_client_timeout(const char *host, int port, int type,
Elliott Hughes381cfa92015-07-23 17:12:58 -070080 int timeout, int* getaddrinfo_error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080081extern int socket_loopback_server(int port, int type);
82extern int socket_local_server(const char *name, int namespaceId, int type);
83extern int socket_local_server_bind(int s, const char *name, int namespaceId);
84extern int socket_local_client_connect(int fd,
85 const char *name, int namespaceId, int type);
86extern int socket_local_client(const char *name, int namespaceId, int type);
87extern int socket_inaddr_any_server(int port, int type);
jeffhao2b8f76c2011-05-05 14:25:36 -070088
89/*
90 * socket_peer_is_trusted - Takes a socket which is presumed to be a
91 * connected local socket (e.g. AF_LOCAL) and returns whether the peer
92 * (the userid that owns the process on the other end of that socket)
93 * is one of the two trusted userids, root or shell.
94 *
95 * Note: This only works as advertised on the Android OS and always
96 * just returns true when called on other operating systems.
97 */
98extern bool socket_peer_is_trusted(int fd);
99
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800100#ifdef __cplusplus
101}
102#endif
103
104#endif /* __CUTILS_SOCKETS_H */