• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2016 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 #define LOG_TAG "dumpstate"
18 
19 #include "DumpstateInternal.h"
20 
21 #include <errno.h>
22 #include <grp.h>
23 #include <poll.h>
24 #include <pwd.h>
25 #include <stdint.h>
26 #include <stdio.h>
27 #include <string.h>
28 #include <sys/capability.h>
29 #include <sys/prctl.h>
30 #include <sys/stat.h>
31 #include <sys/types.h>
32 #include <unistd.h>
33 
34 #include <cstdint>
35 #include <string>
36 #include <vector>
37 
38 #include <android-base/file.h>
39 #include <android-base/macros.h>
40 #include <log/log.h>
41 
Nanotime()42 uint64_t Nanotime() {
43     timespec ts;
44     clock_gettime(CLOCK_MONOTONIC, &ts);
45     return static_cast<uint64_t>(ts.tv_sec * NANOS_PER_SEC + ts.tv_nsec);
46 }
47 
48 // Switches to non-root user and group.
DropRootUser()49 bool DropRootUser() {
50     struct group* grp = getgrnam("shell");
51     gid_t shell_gid = grp != nullptr ? grp->gr_gid : 0;
52     struct passwd* pwd = getpwnam("shell");
53     uid_t shell_uid = pwd != nullptr ? pwd->pw_uid : 0;
54 
55     if (!shell_gid || !shell_uid) {
56         MYLOGE("Unable to get AID_SHELL: %s\n", strerror(errno));
57         return false;
58     }
59 
60     if (getgid() == shell_gid && getuid() == shell_uid) {
61         MYLOGD("drop_root_user(): already running as Shell\n");
62         return true;
63     }
64     /* ensure we will keep capabilities when we drop root */
65     if (prctl(PR_SET_KEEPCAPS, 1) < 0) {
66         MYLOGE("prctl(PR_SET_KEEPCAPS) failed: %s\n", strerror(errno));
67         return false;
68     }
69 
70     static const std::vector<std::string> group_names{
71         "log", "sdcard_r", "sdcard_rw", "mount", "inet", "net_bw_stats",
72             "readproc", "bluetooth", "wakelock", "nfc"};
73     std::vector<gid_t> groups(group_names.size(), 0);
74     for (size_t i = 0; i < group_names.size(); ++i) {
75         grp = getgrnam(group_names[i].c_str());
76         groups[i] = grp != nullptr ? grp->gr_gid : 0;
77         if (groups[i] == 0) {
78             MYLOGE("Unable to get required gid '%s': %s\n", group_names[i].c_str(),
79                    strerror(errno));
80             return false;
81         }
82     }
83 
84     if (setgroups(groups.size(), groups.data()) != 0) {
85         MYLOGE("Unable to setgroups, aborting: %s\n", strerror(errno));
86         return false;
87     }
88     if (setgid(shell_gid) != 0) {
89         MYLOGE("Unable to setgid, aborting: %s\n", strerror(errno));
90         return false;
91     }
92     if (setuid(shell_uid) != 0) {
93         MYLOGE("Unable to setuid, aborting: %s\n", strerror(errno));
94         return false;
95     }
96 
97     struct __user_cap_header_struct capheader;
98     struct __user_cap_data_struct capdata[2];
99     memset(&capheader, 0, sizeof(capheader));
100     memset(&capdata, 0, sizeof(capdata));
101     capheader.version = _LINUX_CAPABILITY_VERSION_3;
102     capheader.pid = 0;
103 
104     if (capget(&capheader, &capdata[0]) != 0) {
105         MYLOGE("capget failed: %s\n", strerror(errno));
106         return false;
107     }
108 
109     const uint32_t cap_syslog_mask = CAP_TO_MASK(CAP_SYSLOG);
110     const uint32_t cap_syslog_index = CAP_TO_INDEX(CAP_SYSLOG);
111     bool has_cap_syslog = (capdata[cap_syslog_index].effective & cap_syslog_mask) != 0;
112 
113     memset(&capdata, 0, sizeof(capdata));
114     if (has_cap_syslog) {
115         // Only attempt to keep CAP_SYSLOG if it was present to begin with.
116         capdata[cap_syslog_index].permitted |= cap_syslog_mask;
117         capdata[cap_syslog_index].effective |= cap_syslog_mask;
118     }
119 
120     const uint32_t cap_block_suspend_mask = CAP_TO_MASK(CAP_BLOCK_SUSPEND);
121     const uint32_t cap_block_suspend_index = CAP_TO_INDEX(CAP_BLOCK_SUSPEND);
122     capdata[cap_block_suspend_index].permitted |= cap_block_suspend_mask;
123     capdata[cap_block_suspend_index].effective |= cap_block_suspend_mask;
124 
125     if (capset(&capheader, &capdata[0]) != 0) {
126         MYLOGE("capset({%#x, %#x}) failed: %s\n", capdata[0].effective,
127                capdata[1].effective, strerror(errno));
128         return false;
129     }
130 
131     return true;
132 }
133 
DumpFileFromFdToFd(const std::string & title,const std::string & path_string,int fd,int out_fd,bool dry_run)134 int DumpFileFromFdToFd(const std::string& title, const std::string& path_string, int fd, int out_fd,
135                        bool dry_run) {
136     const char* path = path_string.c_str();
137     if (!title.empty()) {
138         dprintf(out_fd, "------ %s (%s", title.c_str(), path);
139 
140         struct stat st;
141         // Only show the modification time of non-device files.
142         size_t path_len = strlen(path);
143         if ((path_len < 6 || memcmp(path, "/proc/", 6)) &&
144             (path_len < 5 || memcmp(path, "/sys/", 5)) &&
145             (path_len < 3 || memcmp(path, "/d/", 3)) && !fstat(fd, &st)) {
146             char stamp[80];
147             time_t mtime = st.st_mtime;
148             strftime(stamp, sizeof(stamp), "%Y-%m-%d %H:%M:%S", localtime(&mtime));
149             dprintf(out_fd, ": %s", stamp);
150         }
151         dprintf(out_fd, ") ------\n");
152         fsync(out_fd);
153     }
154     if (dry_run) {
155         if (out_fd != STDOUT_FILENO) {
156             // There is no title, but we should still print a dry-run message
157             dprintf(out_fd, "%s: skipped on dry run\n", path);
158         } else if (!title.empty()) {
159             dprintf(out_fd, "\t(skipped on dry run)\n");
160         }
161         fsync(out_fd);
162         return 0;
163     }
164     bool newline = false;
165     while (true) {
166         uint64_t start_time = Nanotime();
167         pollfd fds[] = { { .fd = fd, .events = POLLIN } };
168         int ret = TEMP_FAILURE_RETRY(poll(fds, arraysize(fds), 30 * 1000));
169         if (ret == -1) {
170             dprintf(out_fd, "*** %s: poll failed: %s\n", path, strerror(errno));
171             newline = true;
172             break;
173         } else if (ret == 0) {
174             uint64_t elapsed = Nanotime() - start_time;
175             dprintf(out_fd, "*** %s: Timed out after %.3fs\n", path, (float)elapsed / NANOS_PER_SEC);
176             newline = true;
177             break;
178         } else {
179             char buffer[65536];
180             ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer)));
181             if (bytes_read > 0) {
182                 android::base::WriteFully(out_fd, buffer, bytes_read);
183                 newline = (buffer[bytes_read - 1] == '\n');
184             } else {
185                 if (bytes_read == -1) {
186                     dprintf(out_fd, "*** %s: Failed to read from fd: %s", path, strerror(errno));
187                     newline = true;
188                 }
189                 break;
190             }
191         }
192     }
193 
194     if (!newline) dprintf(out_fd, "\n");
195     if (!title.empty()) dprintf(out_fd, "\n");
196     return 0;
197 }
198