blob: cd38bad77be05897d3b5a3650dd1164f0611b136 [file] [log] [blame]
Mark Salyzyn12717162014-04-29 15:49:14 -07001/*
Ashish Sharma8626cce2011-07-07 18:16:01 -07002** Copyright 2011, 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
JP Abgrall29656d32011-09-22 14:25:10 -070017// #define LOG_NDEBUG 0
18
Ashish Sharma8626cce2011-07-07 18:16:01 -070019#define LOG_TAG "qtaguid"
20
Ashish Sharma9b5c7742011-08-03 00:31:19 -070021#include <errno.h>
Ashish Sharma8626cce2011-07-07 18:16:01 -070022#include <fcntl.h>
Mark Salyzyn0425b642014-03-07 15:08:20 -080023#include <inttypes.h>
24#include <pthread.h>
Ashish Sharma8626cce2011-07-07 18:16:01 -070025#include <stdio.h>
26#include <string.h>
27#include <unistd.h>
Mark Salyzyn0425b642014-03-07 15:08:20 -080028
Chenbo Feng5b118312017-10-25 11:23:50 -070029#include <log/log.h>
Chenbo Fengbaede732017-10-25 12:31:43 -070030#include <qtaguid/qtaguid.h>
Ashish Sharma8626cce2011-07-07 18:16:01 -070031
JP Abgrall243123f2011-09-09 15:02:08 -070032static const char* CTRL_PROCPATH = "/proc/net/xt_qtaguid/ctrl";
33static const int CTRL_MAX_INPUT_LEN = 128;
Ashish Sharma8626cce2011-07-07 18:16:01 -070034
JP Abgrall243123f2011-09-09 15:02:08 -070035/*
36 * One per proccess.
37 * Once the device is open, this process will have its socket tags tracked.
38 * And on exit or untimely death, all socket tags will be removed.
39 * A process can only open /dev/xt_qtaguid once.
40 * It should not close it unless it is really done with all the socket tags.
41 * Failure to open it will be visible when socket tagging will be attempted.
42 */
43static int resTrackFd = -1;
44pthread_once_t resTrackInitDone = PTHREAD_ONCE_INIT;
45
46/* Only call once per process. */
Chenbo Fengbaede732017-10-25 12:31:43 -070047void legacy_resTrack(void) {
Elliott Hughesb4de99c2016-02-19 18:13:51 -080048 resTrackFd = TEMP_FAILURE_RETRY(open("/dev/xt_qtaguid", O_RDONLY | O_CLOEXEC));
JP Abgrall243123f2011-09-09 15:02:08 -070049}
50
51/*
52 * Returns:
53 * 0 on success.
54 * -errno on failure.
55 */
Chenbo Feng5b118312017-10-25 11:23:50 -070056static int write_ctrl(const char* cmd) {
JP Abgrall243123f2011-09-09 15:02:08 -070057 int fd, res, savedErrno;
58
Steve Block69f4cd72011-10-20 11:54:09 +010059 ALOGV("write_ctrl(%s)", cmd);
JP Abgrall243123f2011-09-09 15:02:08 -070060
Elliott Hughesb4de99c2016-02-19 18:13:51 -080061 fd = TEMP_FAILURE_RETRY(open(CTRL_PROCPATH, O_WRONLY | O_CLOEXEC));
Ashish Sharma9b5c7742011-08-03 00:31:19 -070062 if (fd < 0) {
63 return -errno;
64 }
Ashish Sharma8626cce2011-07-07 18:16:01 -070065
JP Abgrall243123f2011-09-09 15:02:08 -070066 res = TEMP_FAILURE_RETRY(write(fd, cmd, strlen(cmd)));
67 if (res < 0) {
68 savedErrno = errno;
69 } else {
70 savedErrno = 0;
71 }
72 if (res < 0) {
Joe Onoratob03b6ac2016-03-18 13:40:18 -070073 // ALOGV is enough because all the callers also log failures
74 ALOGV("Failed write_ctrl(%s) res=%d errno=%d", cmd, res, savedErrno);
JP Abgrall243123f2011-09-09 15:02:08 -070075 }
76 close(fd);
77 return -savedErrno;
78}
79
Chenbo Fengbaede732017-10-25 12:31:43 -070080int legacy_tagSocket(int sockfd, int tag, uid_t uid) {
JP Abgrall243123f2011-09-09 15:02:08 -070081 char lineBuf[CTRL_MAX_INPUT_LEN];
82 int res;
Jeff Sharkeye34b9172012-05-02 16:01:31 -070083 uint64_t kTag = ((uint64_t)tag << 32);
JP Abgrall243123f2011-09-09 15:02:08 -070084
Chenbo Fengbaede732017-10-25 12:31:43 -070085 pthread_once(&resTrackInitDone, legacy_resTrack);
JP Abgrall243123f2011-09-09 15:02:08 -070086
Mark Salyzyn0425b642014-03-07 15:08:20 -080087 snprintf(lineBuf, sizeof(lineBuf), "t %d %" PRIu64 " %d", sockfd, kTag, uid);
JP Abgrall243123f2011-09-09 15:02:08 -070088
Mark Salyzyn0425b642014-03-07 15:08:20 -080089 ALOGV("Tagging socket %d with tag %" PRIx64 "{%u,0} for uid %d", sockfd, kTag, tag, uid);
JP Abgrall243123f2011-09-09 15:02:08 -070090
91 res = write_ctrl(lineBuf);
92 if (res < 0) {
Chenbo Feng5b118312017-10-25 11:23:50 -070093 ALOGI("Tagging socket %d with tag %" PRIx64 "(%d) for uid %d failed errno=%d", sockfd, kTag,
94 tag, uid, res);
Ashish Sharma9b5c7742011-08-03 00:31:19 -070095 }
96
Ashish Sharma9b5c7742011-08-03 00:31:19 -070097 return res;
98}
99
Chenbo Fengbaede732017-10-25 12:31:43 -0700100int legacy_untagSocket(int sockfd) {
JP Abgrall243123f2011-09-09 15:02:08 -0700101 char lineBuf[CTRL_MAX_INPUT_LEN];
102 int res;
Ashish Sharma9b5c7742011-08-03 00:31:19 -0700103
Steve Block69f4cd72011-10-20 11:54:09 +0100104 ALOGV("Untagging socket %d", sockfd);
JP Abgrall243123f2011-09-09 15:02:08 -0700105
106 snprintf(lineBuf, sizeof(lineBuf), "u %d", sockfd);
107 res = write_ctrl(lineBuf);
108 if (res < 0) {
Steve Blockfe71a612012-01-04 19:19:03 +0000109 ALOGI("Untagging socket %d failed errno=%d", sockfd, res);
JP Abgrall243123f2011-09-09 15:02:08 -0700110 }
111
112 return res;
113}
114
Chenbo Fengbaede732017-10-25 12:31:43 -0700115int legacy_setCounterSet(int counterSetNum, uid_t uid) {
JP Abgrall243123f2011-09-09 15:02:08 -0700116 char lineBuf[CTRL_MAX_INPUT_LEN];
117 int res;
118
Steve Block69f4cd72011-10-20 11:54:09 +0100119 ALOGV("Setting counters to set %d for uid %d", counterSetNum, uid);
JP Abgrall243123f2011-09-09 15:02:08 -0700120
121 snprintf(lineBuf, sizeof(lineBuf), "s %d %d", counterSetNum, uid);
122 res = write_ctrl(lineBuf);
123 return res;
124}
125
Chenbo Fengbaede732017-10-25 12:31:43 -0700126int legacy_deleteTagData(int tag, uid_t uid) {
JP Abgrall243123f2011-09-09 15:02:08 -0700127 char lineBuf[CTRL_MAX_INPUT_LEN];
Mark Salyzyn12717162014-04-29 15:49:14 -0700128 int cnt = 0, res = 0;
JP Abgrall243123f2011-09-09 15:02:08 -0700129 uint64_t kTag = (uint64_t)tag << 32;
130
Mark Salyzyn0425b642014-03-07 15:08:20 -0800131 ALOGV("Deleting tag data with tag %" PRIx64 "{%d,0} for uid %d", kTag, tag, uid);
JP Abgrall243123f2011-09-09 15:02:08 -0700132
Chenbo Fengbaede732017-10-25 12:31:43 -0700133 pthread_once(&resTrackInitDone, legacy_resTrack);
JP Abgrall243123f2011-09-09 15:02:08 -0700134
Mark Salyzyn0425b642014-03-07 15:08:20 -0800135 snprintf(lineBuf, sizeof(lineBuf), "d %" PRIu64 " %d", kTag, uid);
JP Abgrall243123f2011-09-09 15:02:08 -0700136 res = write_ctrl(lineBuf);
137 if (res < 0) {
Mark Salyzyn0425b642014-03-07 15:08:20 -0800138 ALOGI("Deleting tag data with tag %" PRIx64 "/%d for uid %d failed with cnt=%d errno=%d",
Chenbo Feng5b118312017-10-25 11:23:50 -0700139 kTag, tag, uid, cnt, errno);
JP Abgrall243123f2011-09-09 15:02:08 -0700140 }
141
142 return res;
143}