/* * Copyright (C) 2016 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 #include #include #include #include #include #include #include "ProcessMappings.h" namespace android { struct ReadMapCallback { ReadMapCallback(allocator::vector& mappings) : mappings_(mappings) {} void operator()(uint64_t start, uint64_t end, uint16_t flags, uint64_t, const char* name) const { mappings_.emplace_back(start, end, flags & PROT_READ, flags & PROT_WRITE, flags & PROT_EXEC, name); } allocator::vector& mappings_; }; bool ProcessMappings(pid_t pid, allocator::vector& mappings) { char map_buffer[1024]; snprintf(map_buffer, sizeof(map_buffer), "/proc/%d/maps", pid); android::base::unique_fd fd(open(map_buffer, O_RDONLY)); if (fd == -1) { return false; } allocator::string content(mappings.get_allocator()); ssize_t n; while ((n = TEMP_FAILURE_RETRY(read(fd, map_buffer, sizeof(map_buffer)))) > 0) { content.append(map_buffer, n); } ReadMapCallback callback(mappings); return android::procinfo::ReadMapFileContent(&content[0], callback); } } // namespace android