OSDN Git Service

am 561ad8c1: resolved conflicts for merge of c9692899 to lmp-mr1-dev-plus-aosp
[android-x86/system-netd.git] / server / NetdConstants.cpp
1 /*
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
17 #include <ctype.h>
18 #include <errno.h>
19 #include <fcntl.h>
20 #include <netdb.h>
21 #include <net/if.h>
22 #include <netinet/in.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <sys/wait.h>
26
27 #define LOG_TAG "Netd"
28
29 #include <cutils/log.h>
30 #include <logwrap/logwrap.h>
31
32 #include "NetdConstants.h"
33
34 const char * const OEM_SCRIPT_PATH = "/system/bin/oem-iptables-init.sh";
35 const char * const IPTABLES_PATH = "/system/bin/iptables";
36 const char * const IP6TABLES_PATH = "/system/bin/ip6tables";
37 const char * const TC_PATH = "/system/bin/tc";
38 const char * const IP_PATH = "/system/bin/ip";
39 const char * const ADD = "add";
40 const char * const DEL = "del";
41
42 static void logExecError(const char* argv[], int res, int status) {
43     const char** argp = argv;
44     std::string args = "";
45     while (*argp) {
46         args += *argp;
47         args += ' ';
48         argp++;
49     }
50     ALOGE("exec() res=%d, status=%d for %s", res, status, args.c_str());
51 }
52
53 static 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);
69 }
70
71 static 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;
76     do {
77         arg = va_arg(args, const char *);
78         argsList.push_back(arg);
79     } while (arg);
80
81     int i = 0;
82     const char* argv[argsList.size()];
83     std::list<const char*>::iterator it;
84     for (it = argsList.begin(); it != argsList.end(); it++, i++) {
85         argv[i] = *it;
86     }
87
88     int res = 0;
89     if (target == V4 || target == V4V6) {
90         argv[0] = IPTABLES_PATH;
91         res |= execIptablesCommand(argsList.size(), argv, silent);
92     }
93     if (target == V6 || target == V4V6) {
94         argv[0] = IP6TABLES_PATH;
95         res |= execIptablesCommand(argsList.size(), argv, silent);
96     }
97     return res;
98 }
99
100 int execIptables(IptablesTarget target, ...) {
101     va_list args;
102     va_start(args, target);
103     int res = execIptables(target, false, args);
104     va_end(args);
105     return res;
106 }
107
108 int execIptablesSilently(IptablesTarget target, ...) {
109     va_list args;
110     va_start(args, target);
111     int res = execIptables(target, true, args);
112     va_end(args);
113     return res;
114 }
115
116 /*
117  * Check an interface name for plausibility. This should e.g. help against
118  * directory traversal.
119  */
120 bool isIfaceName(const char *name) {
121     size_t i;
122     size_t name_len = strlen(name);
123     if ((name_len == 0) || (name_len > IFNAMSIZ)) {
124         return false;
125     }
126
127     /* First character must be alphanumeric */
128     if (!isalnum(name[0])) {
129         return false;
130     }
131
132     for (i = 1; i < name_len; i++) {
133         if (!isalnum(name[i]) && (name[i] != '_') && (name[i] != '-') && (name[i] != ':')) {
134             return false;
135         }
136     }
137
138     return true;
139 }
140
141 int parsePrefix(const char *prefix, uint8_t *family, void *address, int size, uint8_t *prefixlen) {
142     if (!prefix || !family || !address || !prefixlen) {
143         return -EFAULT;
144     }
145
146     // Find the '/' separating address from prefix length.
147     const char *slash = strchr(prefix, '/');
148     const char *prefixlenString = slash + 1;
149     if (!slash || !*prefixlenString)
150         return -EINVAL;
151
152     // Convert the prefix length to a uint8_t.
153     char *endptr;
154     unsigned templen;
155     templen = strtoul(prefixlenString, &endptr, 10);
156     if (*endptr || templen > 255) {
157         return -EINVAL;
158     }
159     *prefixlen = templen;
160
161     // Copy the address part of the prefix to a local buffer. We have to copy
162     // because inet_pton and getaddrinfo operate on null-terminated address
163     // strings, but prefix is const and has '/' after the address.
164     std::string addressString(prefix, slash - prefix);
165
166     // Parse the address.
167     addrinfo *res;
168     addrinfo hints = {
169         .ai_flags = AI_NUMERICHOST,
170     };
171     int ret = getaddrinfo(addressString.c_str(), NULL, &hints, &res);
172     if (ret || !res) {
173         return -EINVAL;  // getaddrinfo return values are not errno values.
174     }
175
176     // Convert the address string to raw address bytes.
177     void *rawAddress;
178     int rawLength;
179     switch (res[0].ai_family) {
180         case AF_INET: {
181             if (*prefixlen > 32) {
182                 return -EINVAL;
183             }
184             sockaddr_in *sin = (sockaddr_in *) res[0].ai_addr;
185             rawAddress = &sin->sin_addr;
186             rawLength = 4;
187             break;
188         }
189         case AF_INET6: {
190             if (*prefixlen > 128) {
191                 return -EINVAL;
192             }
193             sockaddr_in6 *sin6 = (sockaddr_in6 *) res[0].ai_addr;
194             rawAddress = &sin6->sin6_addr;
195             rawLength = 16;
196             break;
197         }
198         default: {
199             freeaddrinfo(res);
200             return -EAFNOSUPPORT;
201         }
202     }
203
204     if (rawLength > size) {
205         freeaddrinfo(res);
206         return -ENOSPC;
207     }
208
209     *family = res[0].ai_family;
210     memcpy(address, rawAddress, rawLength);
211     freeaddrinfo(res);
212
213     return rawLength;
214 }