1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
|
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <netdb.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <array>
#include <cstdlib>
#include <string>
#include <vector>
#define LOG_TAG "TetherController"
#include <android-base/strings.h>
#include <android-base/stringprintf.h>
#include <cutils/properties.h>
#include <log/log.h>
#include <netdutils/StatusOr.h>
#include "Controllers.h"
#include "Fwmark.h"
#include "NetdConstants.h"
#include "Permission.h"
#include "InterfaceController.h"
#include "NetworkController.h"
#include "ResponseCode.h"
#include "TetherController.h"
using android::base::Join;
using android::base::StringAppendF;
using android::base::StringPrintf;
using android::netdutils::statusFromErrno;
using android::netdutils::StatusOr;
namespace {
const char BP_TOOLS_MODE[] = "bp-tools";
const char IPV4_FORWARDING_PROC_FILE[] = "/proc/sys/net/ipv4/ip_forward";
const char IPV6_FORWARDING_PROC_FILE[] = "/proc/sys/net/ipv6/conf/all/forwarding";
const char SEPARATOR[] = "|";
constexpr const char kTcpBeLiberal[] = "/proc/sys/net/netfilter/nf_conntrack_tcp_be_liberal";
// Chosen to match AID_DNS_TETHER, as made "friendly" by fs_config_generator.py.
constexpr const char kDnsmasqUsername[] = "dns_tether";
bool writeToFile(const char* filename, const char* value) {
int fd = open(filename, O_WRONLY | O_CLOEXEC);
if (fd < 0) {
ALOGE("Failed to open %s: %s", filename, strerror(errno));
return false;
}
const ssize_t len = strlen(value);
if (write(fd, value, len) != len) {
ALOGE("Failed to write %s to %s: %s", value, filename, strerror(errno));
close(fd);
return false;
}
close(fd);
return true;
}
// TODO: Consider altering TCP and UDP timeouts as well.
void configureForTethering(bool enabled) {
writeToFile(kTcpBeLiberal, enabled ? "1" : "0");
}
bool configureForIPv6Router(const char *interface) {
return (InterfaceController::setEnableIPv6(interface, 0) == 0)
&& (InterfaceController::setAcceptIPv6Ra(interface, 0) == 0)
&& (InterfaceController::setAcceptIPv6Dad(interface, 0) == 0)
&& (InterfaceController::setIPv6DadTransmits(interface, "0") == 0)
&& (InterfaceController::setEnableIPv6(interface, 1) == 0);
}
void configureForIPv6Client(const char *interface) {
InterfaceController::setAcceptIPv6Ra(interface, 1);
InterfaceController::setAcceptIPv6Dad(interface, 1);
InterfaceController::setIPv6DadTransmits(interface, "1");
InterfaceController::setEnableIPv6(interface, 0);
}
bool inBpToolsMode() {
// In BP tools mode, do not disable IP forwarding
char bootmode[PROPERTY_VALUE_MAX] = {0};
property_get("ro.bootmode", bootmode, "unknown");
return !strcmp(BP_TOOLS_MODE, bootmode);
}
} // namespace
namespace android {
namespace net {
auto TetherController::iptablesRestoreFunction = execIptablesRestoreWithOutput;
const int MAX_IPT_OUTPUT_LINE_LEN = 256;
const std::string GET_TETHER_STATS_COMMAND = StringPrintf(
"*filter\n"
"-nvx -L %s\n"
"COMMIT\n", android::net::TetherController::LOCAL_TETHER_COUNTERS_CHAIN);
int TetherController::DnsmasqState::sendCmd(int daemonFd, const std::string& cmd) {
if (cmd.empty()) return 0;
gLog.log("Sending update msg to dnsmasq [%s]", cmd.c_str());
// Send the trailing \0 as well.
if (write(daemonFd, cmd.c_str(), cmd.size() + 1) < 0) {
gLog.error("Failed to send update command to dnsmasq (%s)", strerror(errno));
errno = EREMOTEIO;
return -1;
}
return 0;
}
void TetherController::DnsmasqState::clear() {
update_ifaces_cmd.clear();
update_dns_cmd.clear();
}
int TetherController::DnsmasqState::sendAllState(int daemonFd) const {
return sendCmd(daemonFd, update_ifaces_cmd) | sendCmd(daemonFd, update_dns_cmd);
}
TetherController::TetherController() {
if (inBpToolsMode()) {
enableForwarding(BP_TOOLS_MODE);
} else {
setIpFwdEnabled();
}
}
bool TetherController::setIpFwdEnabled() {
bool success = true;
bool disable = mForwardingRequests.empty();
const char* value = disable ? "0" : "1";
ALOGD("Setting IP forward enable = %s", value);
success &= writeToFile(IPV4_FORWARDING_PROC_FILE, value);
success &= writeToFile(IPV6_FORWARDING_PROC_FILE, value);
if (disable) {
// Turning off the forwarding sysconf in the kernel has the side effect
// of turning on ICMP redirect, which is a security hazard.
// Turn ICMP redirect back off immediately.
int rv = InterfaceController::disableIcmpRedirects();
success &= (rv == 0);
}
return success;
}
bool TetherController::enableForwarding(const char* requester) {
// Don't return an error if this requester already requested forwarding. Only return errors for
// things that the caller caller needs to care about, such as "couldn't write to the file to
// enable forwarding".
mForwardingRequests.insert(requester);
return setIpFwdEnabled();
}
bool TetherController::disableForwarding(const char* requester) {
mForwardingRequests.erase(requester);
return setIpFwdEnabled();
}
size_t TetherController::forwardingRequestCount() {
return mForwardingRequests.size();
}
int TetherController::startTethering(int num_addrs, char **dhcp_ranges) {
if (mDaemonPid != 0) {
ALOGE("Tethering already started");
errno = EBUSY;
return -1;
}
ALOGD("Starting tethering services");
pid_t pid;
int pipefd[2];
if (pipe(pipefd) < 0) {
ALOGE("pipe failed (%s)", strerror(errno));
return -1;
}
/*
* TODO: Create a monitoring thread to handle and restart
* the daemon if it exits prematurely
*/
if ((pid = fork()) < 0) {
ALOGE("fork failed (%s)", strerror(errno));
close(pipefd[0]);
close(pipefd[1]);
return -1;
}
if (!pid) {
close(pipefd[1]);
if (pipefd[0] != STDIN_FILENO) {
if (dup2(pipefd[0], STDIN_FILENO) != STDIN_FILENO) {
ALOGE("dup2 failed (%s)", strerror(errno));
return -1;
}
close(pipefd[0]);
}
Fwmark fwmark;
fwmark.netId = NetworkController::LOCAL_NET_ID;
fwmark.explicitlySelected = true;
fwmark.protectedFromVpn = true;
fwmark.permission = PERMISSION_SYSTEM;
char markStr[UINT32_HEX_STRLEN];
snprintf(markStr, sizeof(markStr), "0x%x", fwmark.intValue);
std::vector<const std::string> argVector = {
"/system/bin/dnsmasq",
"--keep-in-foreground",
"--no-resolv",
"--no-poll",
"--dhcp-authoritative",
// TODO: pipe through metered status from ConnService
"--dhcp-option-force=43,ANDROID_METERED",
"--pid-file",
"--listen-mark", markStr,
"--user", kDnsmasqUsername,
};
// DHCP server will be disabled if num_addrs == 0 and no --dhcp-range is passed.
for (int addrIndex = 0; addrIndex < num_addrs; addrIndex += 2) {
argVector.push_back(StringPrintf("--dhcp-range=%s,%s,1h", dhcp_ranges[addrIndex],
dhcp_ranges[addrIndex + 1]));
}
auto args = (char**)std::calloc(argVector.size() + 1, sizeof(char*));
for (unsigned i = 0; i < argVector.size(); i++) {
args[i] = (char*)argVector[i].c_str();
}
if (execv(args[0], args)) {
ALOGE("execv failed (%s)", strerror(errno));
}
ALOGE("Should never get here!");
_exit(-1);
} else {
close(pipefd[0]);
mDaemonPid = pid;
mDaemonFd = pipefd[1];
configureForTethering(true);
applyDnsInterfaces();
ALOGD("Tethering services running");
}
return 0;
}
int TetherController::stopTethering() {
configureForTethering(false);
if (mDaemonPid == 0) {
ALOGE("Tethering already stopped");
return 0;
}
ALOGD("Stopping tethering services");
kill(mDaemonPid, SIGTERM);
waitpid(mDaemonPid, nullptr, 0);
mDaemonPid = 0;
close(mDaemonFd);
mDaemonFd = -1;
mDnsmasqState.clear();
ALOGD("Tethering services stopped");
return 0;
}
bool TetherController::isTetheringStarted() {
return (mDaemonPid == 0 ? false : true);
}
// dnsmasq can't parse commands larger than this due to the fixed-size buffer
// in check_android_listeners(). The receiving buffer is 1024 bytes long, but
// dnsmasq reads up to 1023 bytes.
#define MAX_CMD_SIZE 1023
int TetherController::setDnsForwarders(unsigned netId, char **servers, int numServers) {
int i;
Fwmark fwmark;
fwmark.netId = netId;
fwmark.explicitlySelected = true;
fwmark.protectedFromVpn = true;
fwmark.permission = PERMISSION_SYSTEM;
std::string daemonCmd = StringPrintf("update_dns%s0x%x", SEPARATOR, fwmark.intValue);
mDnsForwarders.clear();
for (i = 0; i < numServers; i++) {
ALOGD("setDnsForwarders(0x%x %d = '%s')", fwmark.intValue, i, servers[i]);
addrinfo *res, hints = { .ai_flags = AI_NUMERICHOST };
int ret = getaddrinfo(servers[i], nullptr, &hints, &res);
freeaddrinfo(res);
if (ret) {
ALOGE("Failed to parse DNS server '%s'", servers[i]);
mDnsForwarders.clear();
errno = EINVAL;
return -1;
}
if (daemonCmd.size() + 1 + strlen(servers[i]) >= MAX_CMD_SIZE) {
ALOGE("Too many DNS servers listed");
break;
}
daemonCmd += SEPARATOR;
daemonCmd += servers[i];
mDnsForwarders.push_back(servers[i]);
}
mDnsNetId = netId;
mDnsmasqState.update_dns_cmd = std::move(daemonCmd);
if (mDaemonFd != -1) {
if (mDnsmasqState.sendAllState(mDaemonFd) != 0) {
mDnsForwarders.clear();
errno = EREMOTEIO;
return -1;
}
}
return 0;
}
unsigned TetherController::getDnsNetId() {
return mDnsNetId;
}
const std::list<std::string> &TetherController::getDnsForwarders() const {
return mDnsForwarders;
}
bool TetherController::applyDnsInterfaces() {
std::string daemonCmd = "update_ifaces";
bool haveInterfaces = false;
for (const auto& ifname : mInterfaces) {
if (daemonCmd.size() + 1 + ifname.size() >= MAX_CMD_SIZE) {
ALOGE("Too many DNS servers listed");
break;
}
daemonCmd += SEPARATOR;
daemonCmd += ifname;
haveInterfaces = true;
}
if (!haveInterfaces) {
mDnsmasqState.update_ifaces_cmd.clear();
} else {
mDnsmasqState.update_ifaces_cmd = std::move(daemonCmd);
if (mDaemonFd != -1) return (mDnsmasqState.sendAllState(mDaemonFd) == 0);
}
return true;
}
int TetherController::tetherInterface(const char *interface) {
ALOGD("tetherInterface(%s)", interface);
if (!isIfaceName(interface)) {
errno = ENOENT;
return -1;
}
if (!configureForIPv6Router(interface)) {
configureForIPv6Client(interface);
return -1;
}
mInterfaces.push_back(interface);
if (!applyDnsInterfaces()) {
mInterfaces.pop_back();
configureForIPv6Client(interface);
return -1;
} else {
return 0;
}
}
int TetherController::untetherInterface(const char *interface) {
ALOGD("untetherInterface(%s)", interface);
for (auto it = mInterfaces.cbegin(); it != mInterfaces.cend(); ++it) {
if (!strcmp(interface, it->c_str())) {
mInterfaces.erase(it);
configureForIPv6Client(interface);
return applyDnsInterfaces() ? 0 : -1;
}
}
errno = ENOENT;
return -1;
}
const std::list<std::string> &TetherController::getTetheredInterfaceList() const {
return mInterfaces;
}
int TetherController::setupIptablesHooks() {
int res;
res = setDefaults();
if (res < 0) {
return res;
}
// Used to limit downstream mss to the upstream pmtu so we don't end up fragmenting every large
// packet tethered devices send. This is IPv4-only, because in IPv6 we send the MTU in the RA.
// This is no longer optional and tethering will fail to start if it fails.
std::string mssRewriteCommand = StringPrintf(
"*mangle\n"
"-A %s -p tcp --tcp-flags SYN SYN -j TCPMSS --clamp-mss-to-pmtu\n"
"COMMIT\n", LOCAL_MANGLE_FORWARD);
// This is for tethering counters. This chain is reached via --goto, and then RETURNS.
std::string defaultCommands = StringPrintf(
"*filter\n"
":%s -\n"
"COMMIT\n", LOCAL_TETHER_COUNTERS_CHAIN);
res = iptablesRestoreFunction(V4, mssRewriteCommand, nullptr);
if (res < 0) {
return res;
}
res = iptablesRestoreFunction(V4V6, defaultCommands, nullptr);
if (res < 0) {
return res;
}
mFwdIfaces.clear();
return 0;
}
int TetherController::setDefaults() {
std::string v4Cmd = StringPrintf(
"*filter\n"
":%s -\n"
"-A %s -j DROP\n"
"COMMIT\n"
"*nat\n"
":%s -\n"
"COMMIT\n", LOCAL_FORWARD, LOCAL_FORWARD, LOCAL_NAT_POSTROUTING);
std::string v6Cmd = StringPrintf(
"*filter\n"
":%s -\n"
"COMMIT\n"
"*raw\n"
":%s -\n"
"COMMIT\n", LOCAL_FORWARD, LOCAL_RAW_PREROUTING);
int res = iptablesRestoreFunction(V4, v4Cmd, nullptr);
if (res < 0) {
return res;
}
res = iptablesRestoreFunction(V6, v6Cmd, nullptr);
if (res < 0) {
return res;
}
return 0;
}
int TetherController::enableNat(const char* intIface, const char* extIface) {
ALOGV("enableNat(intIface=<%s>, extIface=<%s>)",intIface, extIface);
if (!isIfaceName(intIface) || !isIfaceName(extIface)) {
errno = ENODEV;
return -1;
}
/* Bug: b/9565268. "enableNat wlan0 wlan0". For now we fail until java-land is fixed */
if (!strcmp(intIface, extIface)) {
ALOGE("Duplicate interface specified: %s %s", intIface, extIface);
errno = EINVAL;
return -1;
}
if (isForwardingPairEnabled(intIface, extIface)) {
return 0;
}
// add this if we are the first enabled nat for this upstream
if (!isAnyForwardingEnabledOnUpstream(extIface)) {
std::vector<std::string> v4Cmds = {
"*nat",
StringPrintf("-A %s -o %s -j MASQUERADE", LOCAL_NAT_POSTROUTING, extIface),
"COMMIT\n"
};
if (iptablesRestoreFunction(V4, Join(v4Cmds, '\n'), nullptr) ||
setupIPv6CountersChain()) {
ALOGE("Error setting postroute rule: iface=%s", extIface);
if (!isAnyForwardingPairEnabled()) {
// unwind what's been done, but don't care about success - what more could we do?
setDefaults();
}
return -1;
}
}
if (setForwardRules(true, intIface, extIface) != 0) {
ALOGE("Error setting forward rules");
if (!isAnyForwardingPairEnabled()) {
setDefaults();
}
errno = ENODEV;
return -1;
}
return 0;
}
int TetherController::setupIPv6CountersChain() {
// Only add this if we are the first enabled nat
if (isAnyForwardingPairEnabled()) {
return 0;
}
/*
* IPv6 tethering doesn't need the state-based conntrack rules, so
* it unconditionally jumps to the tether counters chain all the time.
*/
std::vector<std::string> v6Cmds = {
"*filter",
StringPrintf("-A %s -g %s", LOCAL_FORWARD, LOCAL_TETHER_COUNTERS_CHAIN),
"COMMIT\n"
};
return iptablesRestoreFunction(V6, Join(v6Cmds, '\n'), nullptr);
}
// Gets a pointer to the ForwardingDownstream for an interface pair in the map, or nullptr
TetherController::ForwardingDownstream* TetherController::findForwardingDownstream(
const std::string& intIface, const std::string& extIface) {
auto extIfaceMatches = mFwdIfaces.equal_range(extIface);
for (auto it = extIfaceMatches.first; it != extIfaceMatches.second; ++it) {
if (it->second.iface == intIface) {
return &(it->second);
}
}
return nullptr;
}
void TetherController::addForwardingPair(const std::string& intIface, const std::string& extIface) {
ForwardingDownstream* existingEntry = findForwardingDownstream(intIface, extIface);
if (existingEntry != nullptr) {
existingEntry->active = true;
return;
}
mFwdIfaces.insert(std::pair<std::string, ForwardingDownstream>(extIface, {
.iface = intIface,
.active = true
}));
}
void TetherController::markForwardingPairDisabled(
const std::string& intIface, const std::string& extIface) {
ForwardingDownstream* existingEntry = findForwardingDownstream(intIface, extIface);
if (existingEntry == nullptr) {
return;
}
existingEntry->active = false;
}
bool TetherController::isForwardingPairEnabled(
const std::string& intIface, const std::string& extIface) {
ForwardingDownstream* existingEntry = findForwardingDownstream(intIface, extIface);
return existingEntry != nullptr && existingEntry->active;
}
bool TetherController::isAnyForwardingEnabledOnUpstream(const std::string& extIface) {
auto extIfaceMatches = mFwdIfaces.equal_range(extIface);
for (auto it = extIfaceMatches.first; it != extIfaceMatches.second; ++it) {
if (it->second.active) {
return true;
}
}
return false;
}
bool TetherController::isAnyForwardingPairEnabled() {
for (auto& it : mFwdIfaces) {
if (it.second.active) {
return true;
}
}
return false;
}
bool TetherController::tetherCountingRuleExists(
const std::string& iface1, const std::string& iface2) {
// A counting rule exists if NAT was ever enabled for this interface pair, so if the pair
// is in the map regardless of its active status. Rules are added both ways so we check with
// the 2 combinations.
return findForwardingDownstream(iface1, iface2) != nullptr
|| findForwardingDownstream(iface2, iface1) != nullptr;
}
/* static */
std::string TetherController::makeTetherCountingRule(const char *if1, const char *if2) {
return StringPrintf("-A %s -i %s -o %s -j RETURN", LOCAL_TETHER_COUNTERS_CHAIN, if1, if2);
}
int TetherController::setForwardRules(bool add, const char *intIface, const char *extIface) {
const char *op = add ? "-A" : "-D";
std::string rpfilterCmd = StringPrintf(
"*raw\n"
"%s %s -i %s -m rpfilter --invert ! -s fe80::/64 -j DROP\n"
"COMMIT\n", op, LOCAL_RAW_PREROUTING, intIface);
if (iptablesRestoreFunction(V6, rpfilterCmd, nullptr) == -1 && add) {
return -1;
}
std::vector<std::string> v4 = {
"*raw",
StringPrintf("%s %s -p tcp --dport 21 -i %s -j CT --helper ftp", op,
LOCAL_RAW_PREROUTING, intIface),
StringPrintf("%s %s -p tcp --dport 1723 -i %s -j CT --helper pptp", op,
LOCAL_RAW_PREROUTING, intIface),
"COMMIT",
"*filter",
StringPrintf("%s %s -i %s -o %s -m state --state ESTABLISHED,RELATED -g %s", op,
LOCAL_FORWARD, extIface, intIface, LOCAL_TETHER_COUNTERS_CHAIN),
StringPrintf("%s %s -i %s -o %s -m state --state INVALID -j DROP", op, LOCAL_FORWARD,
intIface, extIface),
StringPrintf("%s %s -i %s -o %s -g %s", op, LOCAL_FORWARD, intIface, extIface,
LOCAL_TETHER_COUNTERS_CHAIN),
};
std::vector<std::string> v6 = {
"*filter",
};
// We only ever add tethering quota rules so that they stick.
if (add && !tetherCountingRuleExists(intIface, extIface)) {
v4.push_back(makeTetherCountingRule(intIface, extIface));
v4.push_back(makeTetherCountingRule(extIface, intIface));
v6.push_back(makeTetherCountingRule(intIface, extIface));
v6.push_back(makeTetherCountingRule(extIface, intIface));
}
// Always make sure the drop rule is at the end.
// TODO: instead of doing this, consider just rebuilding LOCAL_FORWARD completely from scratch
// every time, starting with ":tetherctrl_FORWARD -\n". This would likely be a bit simpler.
if (add) {
v4.push_back(StringPrintf("-D %s -j DROP", LOCAL_FORWARD));
v4.push_back(StringPrintf("-A %s -j DROP", LOCAL_FORWARD));
}
v4.push_back("COMMIT\n");
v6.push_back("COMMIT\n");
// We only add IPv6 rules here, never remove them.
if (iptablesRestoreFunction(V4, Join(v4, '\n'), nullptr) == -1 ||
(add && iptablesRestoreFunction(V6, Join(v6, '\n'), nullptr) == -1)) {
// unwind what's been done, but don't care about success - what more could we do?
if (add) {
setForwardRules(false, intIface, extIface);
}
return -1;
}
if (add) {
addForwardingPair(intIface, extIface);
} else {
markForwardingPairDisabled(intIface, extIface);
}
return 0;
}
int TetherController::disableNat(const char* intIface, const char* extIface) {
if (!isIfaceName(intIface) || !isIfaceName(extIface)) {
errno = ENODEV;
return -1;
}
setForwardRules(false, intIface, extIface);
if (!isAnyForwardingPairEnabled()) {
setDefaults();
}
return 0;
}
void TetherController::addStats(TetherStatsList& statsList, const TetherStats& stats) {
for (TetherStats& existing : statsList) {
if (existing.addStatsIfMatch(stats)) {
return;
}
}
// No match. Insert a new interface pair.
statsList.push_back(stats);
}
/*
* Parse the ptks and bytes out of:
* Chain tetherctrl_counters (4 references)
* pkts bytes target prot opt in out source destination
* 26 2373 RETURN all -- wlan0 rmnet0 0.0.0.0/0 0.0.0.0/0
* 27 2002 RETURN all -- rmnet0 wlan0 0.0.0.0/0 0.0.0.0/0
* 1040 107471 RETURN all -- bt-pan rmnet0 0.0.0.0/0 0.0.0.0/0
* 1450 1708806 RETURN all -- rmnet0 bt-pan 0.0.0.0/0 0.0.0.0/0
* or:
* Chain tetherctrl_counters (0 references)
* pkts bytes target prot opt in out source destination
* 0 0 RETURN all wlan0 rmnet_data0 ::/0 ::/0
* 0 0 RETURN all rmnet_data0 wlan0 ::/0 ::/0
*
*/
int TetherController::addForwardChainStats(TetherStatsList& statsList,
const std::string& statsOutput,
std::string &extraProcessingInfo) {
int res;
std::string statsLine;
char iface0[MAX_IPT_OUTPUT_LINE_LEN];
char iface1[MAX_IPT_OUTPUT_LINE_LEN];
char rest[MAX_IPT_OUTPUT_LINE_LEN];
TetherStats stats;
const TetherStats empty;
const char *buffPtr;
int64_t packets, bytes;
std::stringstream stream(statsOutput);
// Skip headers.
for (int i = 0; i < 2; i++) {
std::getline(stream, statsLine, '\n');
extraProcessingInfo += statsLine + "\n";
if (statsLine.empty()) {
ALOGE("Empty header while parsing tethering stats");
return -EREMOTEIO;
}
}
while (std::getline(stream, statsLine, '\n')) {
buffPtr = statsLine.c_str();
/* Clean up, so a failed parse can still print info */
iface0[0] = iface1[0] = rest[0] = packets = bytes = 0;
if (strstr(buffPtr, "0.0.0.0")) {
// IPv4 has -- indicating what to do with fragments...
// 26 2373 RETURN all -- wlan0 rmnet0 0.0.0.0/0 0.0.0.0/0
res = sscanf(buffPtr, "%" SCNd64" %" SCNd64" RETURN all -- %s %s 0.%s",
&packets, &bytes, iface0, iface1, rest);
} else {
// ... but IPv6 does not.
// 26 2373 RETURN all wlan0 rmnet0 ::/0 ::/0
res = sscanf(buffPtr, "%" SCNd64" %" SCNd64" RETURN all %s %s ::/%s",
&packets, &bytes, iface0, iface1, rest);
}
ALOGV("parse res=%d iface0=<%s> iface1=<%s> pkts=%" PRId64" bytes=%" PRId64" rest=<%s> orig line=<%s>", res,
iface0, iface1, packets, bytes, rest, buffPtr);
extraProcessingInfo += buffPtr;
extraProcessingInfo += "\n";
if (res != 5) {
return -EREMOTEIO;
}
/*
* The following assumes that the 1st rule has in:extIface out:intIface,
* which is what TetherController sets up.
* The 1st matches rx, and sets up the pair for the tx side.
*/
if (!stats.intIface[0]) {
ALOGV("0Filter RX iface_in=%s iface_out=%s rx_bytes=%" PRId64" rx_packets=%" PRId64" ", iface0, iface1, bytes, packets);
stats.intIface = iface0;
stats.extIface = iface1;
stats.txPackets = packets;
stats.txBytes = bytes;
} else if (stats.intIface == iface1 && stats.extIface == iface0) {
ALOGV("0Filter TX iface_in=%s iface_out=%s rx_bytes=%" PRId64" rx_packets=%" PRId64" ", iface0, iface1, bytes, packets);
stats.rxPackets = packets;
stats.rxBytes = bytes;
}
if (stats.rxBytes != -1 && stats.txBytes != -1) {
ALOGV("rx_bytes=%" PRId64" tx_bytes=%" PRId64, stats.rxBytes, stats.txBytes);
addStats(statsList, stats);
stats = empty;
}
}
/* It is always an error to find only one side of the stats. */
if (((stats.rxBytes == -1) != (stats.txBytes == -1))) {
return -EREMOTEIO;
}
return 0;
}
StatusOr<TetherController::TetherStatsList> TetherController::getTetherStats() {
TetherStatsList statsList;
std::string parsedIptablesOutput;
for (const IptablesTarget target : {V4, V6}) {
std::string statsString;
if (int ret = iptablesRestoreFunction(target, GET_TETHER_STATS_COMMAND, &statsString)) {
return statusFromErrno(-ret, StringPrintf("failed to fetch tether stats (%d): %d",
target, ret));
}
if (int ret = addForwardChainStats(statsList, statsString, parsedIptablesOutput)) {
return statusFromErrno(-ret, StringPrintf("failed to parse %s tether stats:\n%s",
target == V4 ? "IPv4": "IPv6",
parsedIptablesOutput.c_str()));
}
}
return statsList;
}
} // namespace net
} // namespace android
|