Skip to content

Commit

Permalink
tools/vm/page-types.c: add memory cgroup dumping and filtering
Browse files Browse the repository at this point in the history
This adds two command line keys:

 -c|--cgroup path|@iNode	Walk only pages owned by this memory cgroup
 -C|--list-cgroup		Show memory cgroup inodes

[[email protected]: opt_cgroup should be uint64_t.  Fix conflicts with "tools/vm/page-types.c: support swap entry"]
Signed-off-by: Konstantin Khlebnikov <[email protected]>
Cc: Naoya Horiguchi <[email protected]>
Reviewed-by: Vladimir Davydov <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
koct9i authored and torvalds committed Mar 17, 2016
1 parent accf624 commit 075db15
Showing 1 changed file with 84 additions and 15 deletions.
99 changes: 84 additions & 15 deletions tools/vm/page-types.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@

#define KPF_BYTES 8
#define PROC_KPAGEFLAGS "/proc/kpageflags"
#define PROC_KPAGECGROUP "/proc/kpagecgroup"

/* [32-] kernel hacking assistances */
#define KPF_RESERVED 32
Expand Down Expand Up @@ -168,7 +169,9 @@ static int opt_raw; /* for kernel developers */
static int opt_list; /* list pages (in ranges) */
static int opt_no_summary; /* don't show summary */
static pid_t opt_pid; /* process to walk */
const char * opt_file;
const char * opt_file; /* file or directory path */
static uint64_t opt_cgroup; /* cgroup inode */
static int opt_list_cgroup;/* list page cgroup */

#define MAX_ADDR_RANGES 1024
static int nr_addr_ranges;
Expand All @@ -189,6 +192,7 @@ static int page_size;

static int pagemap_fd;
static int kpageflags_fd;
static int kpagecgroup_fd = -1;

static int opt_hwpoison;
static int opt_unpoison;
Expand Down Expand Up @@ -282,6 +286,16 @@ static unsigned long kpageflags_read(uint64_t *buf,
return do_u64_read(kpageflags_fd, PROC_KPAGEFLAGS, buf, index, pages);
}

static unsigned long kpagecgroup_read(uint64_t *buf,
unsigned long index,
unsigned long pages)
{
if (kpagecgroup_fd < 0)
return pages;

return do_u64_read(kpagecgroup_fd, PROC_KPAGEFLAGS, buf, index, pages);
}

static unsigned long pagemap_read(uint64_t *buf,
unsigned long index,
unsigned long pages)
Expand Down Expand Up @@ -354,14 +368,15 @@ static char *page_flag_longname(uint64_t flags)
*/

static void show_page_range(unsigned long voffset, unsigned long offset,
unsigned long size, uint64_t flags)
unsigned long size, uint64_t flags, uint64_t cgroup)
{
static uint64_t flags0;
static uint64_t cgroup0;
static unsigned long voff;
static unsigned long index;
static unsigned long count;

if (flags == flags0 && offset == index + count &&
if (flags == flags0 && cgroup == cgroup0 && offset == index + count &&
size && voffset == voff + count) {
count += size;
return;
Expand All @@ -372,28 +387,33 @@ static void show_page_range(unsigned long voffset, unsigned long offset,
printf("%lx\t", voff);
if (opt_file)
printf("%lu\t", voff);
if (opt_list_cgroup)
printf("@%llu\t", (unsigned long long)cgroup0);
printf("%lx\t%lx\t%s\n",
index, count, page_flag_name(flags0));
}

flags0 = flags;
cgroup0= cgroup;
index = offset;
voff = voffset;
count = size;
}

static void flush_page_range(void)
{
show_page_range(0, 0, 0, 0);
show_page_range(0, 0, 0, 0, 0);
}

static void show_page(unsigned long voffset,
unsigned long offset, uint64_t flags)
static void show_page(unsigned long voffset, unsigned long offset,
uint64_t flags, uint64_t cgroup)
{
if (opt_pid)
printf("%lx\t", voffset);
if (opt_file)
printf("%lu\t", voffset);
if (opt_list_cgroup)
printf("@%llu\t", (unsigned long long)cgroup);
printf("%lx\t%s\n", offset, page_flag_name(flags));
}

Expand Down Expand Up @@ -576,23 +596,26 @@ static size_t hash_slot(uint64_t flags)
exit(EXIT_FAILURE);
}

static void add_page(unsigned long voffset,
unsigned long offset, uint64_t flags, uint64_t pme)
static void add_page(unsigned long voffset, unsigned long offset,
uint64_t flags, uint64_t cgroup, uint64_t pme)
{
flags = kpageflags_flags(flags, pme);

if (!bit_mask_ok(flags))
return;

if (opt_cgroup && cgroup != (uint64_t)opt_cgroup)
return;

if (opt_hwpoison)
hwpoison_page(offset);
if (opt_unpoison)
unpoison_page(offset);

if (opt_list == 1)
show_page_range(voffset, offset, 1, flags);
show_page_range(voffset, offset, 1, flags, cgroup);
else if (opt_list == 2)
show_page(voffset, offset, flags);
show_page(voffset, offset, flags, cgroup);

nr_pages[hash_slot(flags)]++;
total_pages++;
Expand All @@ -605,18 +628,24 @@ static void walk_pfn(unsigned long voffset,
uint64_t pme)
{
uint64_t buf[KPAGEFLAGS_BATCH];
uint64_t cgi[KPAGEFLAGS_BATCH];
unsigned long batch;
unsigned long pages;
unsigned long i;

memset(cgi, 0, sizeof cgi);

while (count) {
batch = min_t(unsigned long, count, KPAGEFLAGS_BATCH);
pages = kpageflags_read(buf, index, batch);
if (pages == 0)
break;

if (kpagecgroup_read(cgi, index, pages) != pages)
fatal("kpagecgroup returned fewer pages than expected");

for (i = 0; i < pages; i++)
add_page(voffset + i, index + i, buf[i], pme);
add_page(voffset + i, index + i, buf[i], cgi[i], pme);

index += pages;
count -= pages;
Expand All @@ -630,10 +659,13 @@ static void walk_swap(unsigned long voffset, uint64_t pme)
if (!bit_mask_ok(flags))
return;

if (opt_cgroup)
return;

if (opt_list == 1)
show_page_range(voffset, pagemap_swap_offset(pme), 1, flags);
show_page_range(voffset, pagemap_swap_offset(pme), 1, flags, 0);
else if (opt_list == 2)
show_page(voffset, pagemap_swap_offset(pme), flags);
show_page(voffset, pagemap_swap_offset(pme), flags, 0);

nr_pages[hash_slot(flags)]++;
total_pages++;
Expand Down Expand Up @@ -741,10 +773,12 @@ static void usage(void)
" -d|--describe flags Describe flags\n"
" -a|--addr addr-spec Walk a range of pages\n"
" -b|--bits bits-spec Walk pages with specified bits\n"
" -c|--cgroup path|@inode Walk pages within memory cgroup\n"
" -p|--pid pid Walk process address space\n"
" -f|--file filename Walk file address space\n"
" -l|--list Show page details in ranges\n"
" -L|--list-each Show page details one by one\n"
" -C|--list-cgroup Show cgroup inode for pages\n"
" -N|--no-summary Don't show summary info\n"
" -X|--hwpoison hwpoison pages\n"
" -x|--unpoison unpoison pages\n"
Expand Down Expand Up @@ -879,6 +913,7 @@ static void walk_file(const char *name, const struct stat *st)
{
uint8_t vec[PAGEMAP_BATCH];
uint64_t buf[PAGEMAP_BATCH], flags;
uint64_t cgroup = 0;
unsigned long nr_pages, pfn, i;
off_t off, end = st->st_size;
int fd;
Expand Down Expand Up @@ -936,12 +971,15 @@ static void walk_file(const char *name, const struct stat *st)
continue;
if (!kpageflags_read(&flags, pfn, 1))
continue;
if (!kpagecgroup_read(&cgroup, pfn, 1))
fatal("kpagecgroup_read failed");
if (first && opt_list) {
first = 0;
flush_page_range();
show_file(name, st);
}
add_page(off / page_size + i, pfn, flags, buf[i]);
add_page(off / page_size + i, pfn,
flags, cgroup, buf[i]);
}
}

Expand Down Expand Up @@ -993,6 +1031,24 @@ static void parse_file(const char *name)
opt_file = name;
}

static void parse_cgroup(const char *path)
{
if (path[0] == '@') {
opt_cgroup = parse_number(path + 1);
return;
}

struct stat st;

if (stat(path, &st))
fatal("stat failed: %s: %m\n", path);

if (!S_ISDIR(st.st_mode))
fatal("cgroup supposed to be a directory: %s\n", path);

opt_cgroup = st.st_ino;
}

static void parse_addr_range(const char *optarg)
{
unsigned long offset;
Expand Down Expand Up @@ -1116,9 +1172,11 @@ static const struct option opts[] = {
{ "file" , 1, NULL, 'f' },
{ "addr" , 1, NULL, 'a' },
{ "bits" , 1, NULL, 'b' },
{ "cgroup" , 1, NULL, 'c' },
{ "describe" , 1, NULL, 'd' },
{ "list" , 0, NULL, 'l' },
{ "list-each" , 0, NULL, 'L' },
{ "list-cgroup", 0, NULL, 'C' },
{ "no-summary", 0, NULL, 'N' },
{ "hwpoison" , 0, NULL, 'X' },
{ "unpoison" , 0, NULL, 'x' },
Expand All @@ -1133,7 +1191,7 @@ int main(int argc, char *argv[])
page_size = getpagesize();

while ((c = getopt_long(argc, argv,
"rp:f:a:b:d:lLNXxh", opts, NULL)) != -1) {
"rp:f:a:b:d:c:ClLNXxh", opts, NULL)) != -1) {
switch (c) {
case 'r':
opt_raw = 1;
Expand All @@ -1150,6 +1208,12 @@ int main(int argc, char *argv[])
case 'b':
parse_bits_mask(optarg);
break;
case 'c':
parse_cgroup(optarg);
break;
case 'C':
opt_list_cgroup = 1;
break;
case 'd':
describe_flags(optarg);
exit(0);
Expand Down Expand Up @@ -1179,10 +1243,15 @@ int main(int argc, char *argv[])
}
}

if (opt_cgroup || opt_list_cgroup)
kpagecgroup_fd = checked_open(PROC_KPAGECGROUP, O_RDONLY);

if (opt_list && opt_pid)
printf("voffset\t");
if (opt_list && opt_file)
printf("foffset\t");
if (opt_list && opt_list_cgroup)
printf("cgroup\t");
if (opt_list == 1)
printf("offset\tlen\tflags\n");
if (opt_list == 2)
Expand Down

0 comments on commit 075db15

Please sign in to comment.