blob: 36b65fabb29e35771de7338ea7d329dc3783356e [file] [log] [blame]
Sandeep Patil9b9e9772017-04-14 19:05:50 -07001/*
2 * Copyright (C) 2017 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
Lorenzo Colitti2dd1bc32017-04-17 13:51:47 +090017#include <regex>
18#include <string>
19
Sandeep Patil9b9e9772017-04-14 19:05:50 -070020#include <libgen.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <unistd.h>
25
Lorenzo Colitti2dd1bc32017-04-17 13:51:47 +090026#include <android-base/strings.h>
27
28#define LOG_TAG "NetUtilsWrapper"
29#include <cutils/log.h>
30
31#include "NetUtilsWrapper.h"
32
Sandeep Patil9b9e9772017-04-14 19:05:50 -070033#define SYSTEM_DIRNAME "/system/bin/"
34
Lorenzo Colitti2dd1bc32017-04-17 13:51:47 +090035#define OEM_IFACE "[^ ]*oem[0-9]+"
36#define RMNET_IFACE "(r_)?rmnet_(data)?[0-9]+"
37#define VENDOR_IFACE "(" OEM_IFACE "|" RMNET_IFACE ")"
38#define VENDOR_CHAIN "(oem_.*|nm_.*|qcom_.*)"
39
Sandeep Patil9b9e9772017-04-14 19:05:50 -070040// List of net utils wrapped by this program
41// The list MUST be in descending order of string length
42const char *netcmds[] = {
43 "ip6tables",
44 "iptables",
45 "ndc",
46 "tc",
47 "ip",
48 NULL,
49};
50
Lorenzo Colitti2dd1bc32017-04-17 13:51:47 +090051// List of regular expressions of expected commands.
52const char *EXPECTED_REGEXPS[] = {
53#define CMD "^" SYSTEM_DIRNAME
54 // Create, delete, and manage OEM networks.
55 CMD "ndc network (create|destroy) oem[0-9]+( |$)",
56 CMD "ndc network interface (add|remove) oem[0-9]+ " VENDOR_IFACE,
57 CMD "ndc network route (add|remove) oem[0-9]+ ",
58 CMD "ndc ipfwd (enable|disable) ",
59 CMD "ndc ipfwd (add|remove) .*" VENDOR_IFACE,
60
61 // Manage vendor iptables rules.
62 CMD "ip(6)?tables -w.* (-A|-D|-F|-I|-N|-X) " VENDOR_CHAIN,
63 CMD "ip(6)?tables -w.* (-i|-o) " VENDOR_IFACE,
64
65 // Manage IPsec state.
66 CMD "ip xfrm .*",
67
68 // Manage vendor interfaces.
69 CMD "tc .* dev " VENDOR_IFACE,
70 CMD "ip( -4| -6)? (addr|address) (add|del|delete|flush).* dev " VENDOR_IFACE,
71
72 // Other activities observed on current devices. In future releases, these should be supported
73 // in a way that is less likely to interfere with general Android networking behaviour.
74 CMD "tc qdisc del dev root",
75 CMD "ip( -4| -6)? rule .* goto 13000 prio 11999",
76 CMD "ip( -4| -6)? rule .* prio 25000",
77 CMD "ip(6)?tables -w .* -j " VENDOR_CHAIN,
78 CMD "iptables -w -t mangle -[AD] PREROUTING -m socket --nowildcard --restore-skmark -j ACCEPT",
79 CMD "ndc network interface (add|remove) oem[0-9]+$", // Invalid command: no interface removed.
80#undef CMD
81};
82
83bool checkExpectedCommand(int argc, char **argv) {
84 std::vector<const char*> allArgs(argc);
85 for (int i = 0; i < argc; i++) {
86 allArgs[i] = argv[i];
87 }
88 std::string fullCmd = android::base::Join(allArgs, ' ');
89 for (size_t i = 0; i < ARRAY_SIZE(EXPECTED_REGEXPS); i++) {
90 const std::regex expectedRegexp(EXPECTED_REGEXPS[i], std::regex_constants::extended);
91 if (std::regex_search(fullCmd, expectedRegexp)) {
92 return true;
93 }
94 }
95 ALOGI("Unexpected command: %s", fullCmd.c_str());
96 return false;
97}
98
99
Sandeep Patil9b9e9772017-04-14 19:05:50 -0700100// This is the only gateway for vendor programs to reach net utils.
Lorenzo Colitti2dd1bc32017-04-17 13:51:47 +0900101int doMain(int argc, char **argv) {
Sandeep Patil9b9e9772017-04-14 19:05:50 -0700102 char *progname = argv[0];
103 char *basename = NULL;
104
105 basename = strrchr(progname, '/');
106 basename = basename ? basename + 1 : progname;
107
108 for (int i = 0; netcmds[i]; ++i) {
109 size_t len = strlen(netcmds[i]);
110 if (!strncmp(basename, netcmds[i], len)) {
111 // truncate to match netcmds[i]
112 basename[len] = '\0';
113
114 // hardcode the path to /system so it cannot be overwritten
115 char *cmd;
116 if (asprintf(&cmd, "%s%s", SYSTEM_DIRNAME, basename) == -1) {
117 perror("asprintf");
118 exit(EXIT_FAILURE);
119 }
120 argv[0] = cmd;
Lorenzo Colitti2dd1bc32017-04-17 13:51:47 +0900121 checkExpectedCommand(argc, argv);
Sandeep Patil9b9e9772017-04-14 19:05:50 -0700122 execv(cmd, argv);
123 }
124 }
125
126 // must never reach here
127 fprintf(stderr, "(%s:%d) is not a supported net util\n", progname, errno);
128 exit(EXIT_FAILURE);
129}