OSDN Git Service

DO NOT MERGE Benchmarks for network metrics reporting
[android-x86/system-netd.git] / client / FwmarkClient.cpp
1 /*
2  * Copyright (C) 2014 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 "FwmarkClient.h"
18
19 #include "FwmarkCommand.h"
20
21 #include <errno.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <sys/socket.h>
25 #include <sys/un.h>
26 #include <unistd.h>
27
28 namespace {
29
30 const sockaddr_un FWMARK_SERVER_PATH = {AF_UNIX, "/dev/socket/fwmarkd"};
31
32 }  // namespace
33
34 bool FwmarkClient::shouldSetFwmark(int family) {
35     return (family == AF_INET || family == AF_INET6) && !getenv(ANDROID_NO_USE_FWMARK_CLIENT);
36 }
37
38 bool FwmarkClient::shouldReportConnectComplete(int family) {
39     return shouldSetFwmark(family) && !getenv(ANDROID_FWMARK_METRICS_ONLY);
40 }
41
42 FwmarkClient::FwmarkClient() : mChannel(-1) {
43 }
44
45 FwmarkClient::~FwmarkClient() {
46     if (mChannel >= 0) {
47         close(mChannel);
48     }
49 }
50
51 int FwmarkClient::send(FwmarkCommand* data, int fd) {
52     mChannel = socket(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0);
53     if (mChannel == -1) {
54         return -errno;
55     }
56
57     if (TEMP_FAILURE_RETRY(connect(mChannel, reinterpret_cast<const sockaddr*>(&FWMARK_SERVER_PATH),
58                                    sizeof(FWMARK_SERVER_PATH))) == -1) {
59         // If we are unable to connect to the fwmark server, assume there's no error. This protects
60         // against future changes if the fwmark server goes away.
61         return 0;
62     }
63
64     iovec iov;
65     iov.iov_base = data;
66     iov.iov_len = sizeof(*data);
67
68     msghdr message;
69     memset(&message, 0, sizeof(message));
70     message.msg_iov = &iov;
71     message.msg_iovlen = 1;
72
73     union {
74         cmsghdr cmh;
75         char cmsg[CMSG_SPACE(sizeof(fd))];
76     } cmsgu;
77
78     if (data->cmdId != FwmarkCommand::QUERY_USER_ACCESS) {
79         memset(cmsgu.cmsg, 0, sizeof(cmsgu.cmsg));
80         message.msg_control = cmsgu.cmsg;
81         message.msg_controllen = sizeof(cmsgu.cmsg);
82
83         cmsghdr* const cmsgh = CMSG_FIRSTHDR(&message);
84         cmsgh->cmsg_len = CMSG_LEN(sizeof(fd));
85         cmsgh->cmsg_level = SOL_SOCKET;
86         cmsgh->cmsg_type = SCM_RIGHTS;
87         memcpy(CMSG_DATA(cmsgh), &fd, sizeof(fd));
88     }
89
90     if (TEMP_FAILURE_RETRY(sendmsg(mChannel, &message, 0)) == -1) {
91         return -errno;
92     }
93
94     int error = 0;
95
96     if (TEMP_FAILURE_RETRY(recv(mChannel, &error, sizeof(error), 0)) == -1) {
97         return -errno;
98     }
99
100     return error;
101 }