123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /*
- Only tested in x86_64.
- Adapted from: https://github.com/dwks/pagemap/blob/8a25747bc79d6080c8b94eac80807a4dceeda57a/pagemap2.c
- - https://stackoverflow.com/questions/17021214/how-to-decode-proc-pid-pagemap-entries-in-linux/45126141#45126141
- - https://stackoverflow.com/questions/5748492/is-there-any-api-for-determining-the-physical-address-from-virtual-address-in-li
- - https://stackoverflow.com/questions/6284810/proc-pid-pagemaps-and-proc-pid-maps-linux/45500208#45500208
- Dump the page map of a given process PID.
- Data sources: /proc/PIC/{map,pagemap}
- This program works in two steps:
- - parse the human readable lines lines from `/proc/<pid>/maps`. This files contains lines of form:
- 7ffff7b6d000-7ffff7bdd000 r-xp 00000000 fe:00 658 /lib/libuClibc-1.0.22.so
- which gives us:
- - `7f8af99f8000-7f8af99ff000`: a virtual address range that belong to the process, possibly containing multiple pages.
- - `/lib/libuClibc-1.0.22.so` the name of the library that owns that memory.
- - loop over each page of each address range, and ask `/proc/<pid>/pagemap` for more information about that page, including the physical address.
- */
- #define _XOPEN_SOURCE 700
- #include <errno.h>
- #include <fcntl.h>
- #include <stdint.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include "common.h" /* pagemap_get_entry */
- int main(int argc, char **argv)
- {
- char buffer[BUFSIZ];
- char maps_file[BUFSIZ];
- char pagemap_file[BUFSIZ];
- int maps_fd;
- int offset = 0;
- int pagemap_fd;
- pid_t pid;
- if (argc < 2) {
- printf("Usage: %s pid\n", argv[0]);
- return EXIT_FAILURE;
- }
- pid = strtoull(argv[1], NULL, 0);
- snprintf(maps_file, sizeof(maps_file), "/proc/%ju/maps", (uintmax_t)pid);
- snprintf(pagemap_file, sizeof(pagemap_file), "/proc/%ju/pagemap", (uintmax_t)pid);
- maps_fd = open(maps_file, O_RDONLY);
- if (maps_fd < 0) {
- perror("open maps");
- return EXIT_FAILURE;
- }
- pagemap_fd = open(pagemap_file, O_RDONLY);
- if (pagemap_fd < 0) {
- perror("open pagemap");
- return EXIT_FAILURE;
- }
- printf("addr pfn soft-dirty file/shared swapped present library\n");
- for (;;) {
- ssize_t length = read(maps_fd, buffer + offset, sizeof buffer - offset);
- if (length <= 0) break;
- length += offset;
- for (size_t i = offset; i < (size_t)length; i++) {
- uintptr_t low = 0, high = 0;
- if (buffer[i] == '\n' && i) {
- const char *lib_name;
- size_t y;
- /* Parse a line from maps. Each line contains a range that contains many pages. */
- {
- size_t x = i - 1;
- while (x && buffer[x] != '\n') x--;
- if (buffer[x] == '\n') x++;
- while (buffer[x] != '-' && x < sizeof buffer) {
- char c = buffer[x++];
- low *= 16;
- if (c >= '0' && c <= '9') {
- low += c - '0';
- } else if (c >= 'a' && c <= 'f') {
- low += c - 'a' + 10;
- } else {
- break;
- }
- }
- while (buffer[x] != '-' && x < sizeof buffer) x++;
- if (buffer[x] == '-') x++;
- while (buffer[x] != ' ' && x < sizeof buffer) {
- char c = buffer[x++];
- high *= 16;
- if (c >= '0' && c <= '9') {
- high += c - '0';
- } else if (c >= 'a' && c <= 'f') {
- high += c - 'a' + 10;
- } else {
- break;
- }
- }
- lib_name = 0;
- for (int field = 0; field < 4; field++) {
- x++;
- while(buffer[x] != ' ' && x < sizeof buffer) x++;
- }
- while (buffer[x] == ' ' && x < sizeof buffer) x++;
- y = x;
- while (buffer[y] != '\n' && y < sizeof buffer) y++;
- buffer[y] = 0;
- lib_name = buffer + x;
- }
- /* Get info about all pages in this page range with pagemap. */
- {
- PagemapEntry entry;
- for (uintptr_t addr = low; addr < high; addr += sysconf(_SC_PAGE_SIZE)) {
- /* TODO always fails for the last page (vsyscall), why? pread returns 0. */
- if (!pagemap_get_entry(&entry, pagemap_fd, addr)) {
- printf("%jx %jx %u %u %u %u %s\n",
- (uintmax_t)addr,
- (uintmax_t)entry.pfn,
- entry.soft_dirty,
- entry.file_page,
- entry.swapped,
- entry.present,
- lib_name
- );
- }
- }
- }
- buffer[y] = '\n';
- }
- }
- }
- close(maps_fd);
- close(pagemap_fd);
- return EXIT_SUCCESS;
- }
|