blob: c86538b76a85369234aa542aa4d09088a2f79ee9 [file] [log] [blame]
Robert Greenwaltc4621772012-01-31 12:46:45 -08001/*
2 * Copyright (C) 2012 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
Dan Albertaa1be2b2015-01-06 09:36:17 -080017#include <ctype.h>
18#include <errno.h>
Lorenzo Colitti70afde62013-03-04 17:58:40 +090019#include <fcntl.h>
Lorenzo Colittiba25df92014-06-18 00:22:17 +090020#include <netdb.h>
Dan Albertaa1be2b2015-01-06 09:36:17 -080021#include <net/if.h>
Lorenzo Colittiba25df92014-06-18 00:22:17 +090022#include <netinet/in.h>
23#include <stdlib.h>
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070024#include <string.h>
Rom Lemarchand838ef642013-01-24 15:14:41 -080025#include <sys/wait.h>
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070026
Jeff Sharkeybec6d042012-09-06 15:45:56 -070027#define LOG_TAG "Netd"
28
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070029#include <cutils/log.h>
Rom Lemarchand838ef642013-01-24 15:14:41 -080030#include <logwrap/logwrap.h>
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070031
Robert Greenwaltc4621772012-01-31 12:46:45 -080032#include "NetdConstants.h"
33
34const char * const OEM_SCRIPT_PATH = "/system/bin/oem-iptables-init.sh";
35const char * const IPTABLES_PATH = "/system/bin/iptables";
JP Abgrall0031cea2012-04-17 16:38:23 -070036const char * const IP6TABLES_PATH = "/system/bin/ip6tables";
Robert Greenwaltc4621772012-01-31 12:46:45 -080037const char * const TC_PATH = "/system/bin/tc";
38const char * const IP_PATH = "/system/bin/ip";
39const char * const ADD = "add";
40const char * const DEL = "del";
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070041
Rom Lemarchand838ef642013-01-24 15:14:41 -080042static void logExecError(const char* argv[], int res, int status) {
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070043 const char** argp = argv;
44 std::string args = "";
45 while (*argp) {
46 args += *argp;
47 args += ' ';
48 argp++;
49 }
Rom Lemarchand838ef642013-01-24 15:14:41 -080050 ALOGE("exec() res=%d, status=%d for %s", res, status, args.c_str());
51}
52
53static int execIptablesCommand(int argc, const char *argv[], bool silent) {
54 int res;
55 int status;
56
57 res = android_fork_execvp(argc, (char **)argv, &status, false,
58 !silent);
59 if (res || !WIFEXITED(status) || WEXITSTATUS(status)) {
60 if (!silent) {
61 logExecError(argv, res, status);
62 }
63 if (res)
64 return res;
65 if (!WIFEXITED(status))
66 return ECHILD;
67 }
68 return WEXITSTATUS(status);
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070069}
70
71static int execIptables(IptablesTarget target, bool silent, va_list args) {
72 /* Read arguments from incoming va_list; we expect the list to be NULL terminated. */
73 std::list<const char*> argsList;
74 argsList.push_back(NULL);
75 const char* arg;
Amith Yamasani390e4ea2015-04-25 19:08:57 -070076
77 // Wait to avoid failure due to another process holding the lock
78 argsList.push_back("-w");
79
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070080 do {
81 arg = va_arg(args, const char *);
82 argsList.push_back(arg);
83 } while (arg);
84
85 int i = 0;
86 const char* argv[argsList.size()];
87 std::list<const char*>::iterator it;
88 for (it = argsList.begin(); it != argsList.end(); it++, i++) {
89 argv[i] = *it;
90 }
91
92 int res = 0;
93 if (target == V4 || target == V4V6) {
94 argv[0] = IPTABLES_PATH;
Rom Lemarchand838ef642013-01-24 15:14:41 -080095 res |= execIptablesCommand(argsList.size(), argv, silent);
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070096 }
97 if (target == V6 || target == V4V6) {
98 argv[0] = IP6TABLES_PATH;
Rom Lemarchand838ef642013-01-24 15:14:41 -080099 res |= execIptablesCommand(argsList.size(), argv, silent);
Jeff Sharkey8e188ed2012-07-12 18:32:03 -0700100 }
101 return res;
102}
103
104int execIptables(IptablesTarget target, ...) {
105 va_list args;
106 va_start(args, target);
107 int res = execIptables(target, false, args);
108 va_end(args);
109 return res;
110}
111
112int execIptablesSilently(IptablesTarget target, ...) {
113 va_list args;
114 va_start(args, target);
115 int res = execIptables(target, true, args);
116 va_end(args);
117 return res;
118}
Lorenzo Colitti70afde62013-03-04 17:58:40 +0900119
JP Abgrall69261cb2014-06-19 18:35:24 -0700120/*
121 * Check an interface name for plausibility. This should e.g. help against
122 * directory traversal.
123 */
124bool isIfaceName(const char *name) {
125 size_t i;
126 size_t name_len = strlen(name);
127 if ((name_len == 0) || (name_len > IFNAMSIZ)) {
128 return false;
129 }
130
131 /* First character must be alphanumeric */
132 if (!isalnum(name[0])) {
133 return false;
134 }
135
136 for (i = 1; i < name_len; i++) {
137 if (!isalnum(name[i]) && (name[i] != '_') && (name[i] != '-') && (name[i] != ':')) {
138 return false;
139 }
140 }
141
142 return true;
143}
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900144
145int parsePrefix(const char *prefix, uint8_t *family, void *address, int size, uint8_t *prefixlen) {
146 if (!prefix || !family || !address || !prefixlen) {
147 return -EFAULT;
148 }
149
150 // Find the '/' separating address from prefix length.
151 const char *slash = strchr(prefix, '/');
152 const char *prefixlenString = slash + 1;
153 if (!slash || !*prefixlenString)
154 return -EINVAL;
155
156 // Convert the prefix length to a uint8_t.
157 char *endptr;
158 unsigned templen;
159 templen = strtoul(prefixlenString, &endptr, 10);
160 if (*endptr || templen > 255) {
161 return -EINVAL;
162 }
163 *prefixlen = templen;
164
165 // Copy the address part of the prefix to a local buffer. We have to copy
166 // because inet_pton and getaddrinfo operate on null-terminated address
167 // strings, but prefix is const and has '/' after the address.
168 std::string addressString(prefix, slash - prefix);
169
170 // Parse the address.
171 addrinfo *res;
172 addrinfo hints = {
173 .ai_flags = AI_NUMERICHOST,
174 };
175 int ret = getaddrinfo(addressString.c_str(), NULL, &hints, &res);
176 if (ret || !res) {
177 return -EINVAL; // getaddrinfo return values are not errno values.
178 }
179
180 // Convert the address string to raw address bytes.
181 void *rawAddress;
182 int rawLength;
183 switch (res[0].ai_family) {
184 case AF_INET: {
185 if (*prefixlen > 32) {
186 return -EINVAL;
187 }
188 sockaddr_in *sin = (sockaddr_in *) res[0].ai_addr;
189 rawAddress = &sin->sin_addr;
190 rawLength = 4;
191 break;
192 }
193 case AF_INET6: {
194 if (*prefixlen > 128) {
195 return -EINVAL;
196 }
197 sockaddr_in6 *sin6 = (sockaddr_in6 *) res[0].ai_addr;
198 rawAddress = &sin6->sin6_addr;
199 rawLength = 16;
200 break;
201 }
202 default: {
203 freeaddrinfo(res);
204 return -EAFNOSUPPORT;
205 }
206 }
207
208 if (rawLength > size) {
209 freeaddrinfo(res);
210 return -ENOSPC;
211 }
212
213 *family = res[0].ai_family;
214 memcpy(address, rawAddress, rawLength);
215 freeaddrinfo(res);
216
217 return rawLength;
218}