blob: a0b03a14e970bdbbbaede0e7244423681bbae116 [file] [log] [blame]
Rom Lemarchand266dde22013-07-08 15:22:10 -07001/*
2 * Copyright (C) 2013 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#include <errno.h>
Mark Salyzync51e8d32014-03-14 11:15:07 -070018#include <fcntl.h>
19#include <getopt.h>
20#include <inttypes.h>
Rom Lemarchand266dde22013-07-08 15:22:10 -070021#include <stdbool.h>
Mark Salyzync51e8d32014-03-14 11:15:07 -070022#include <stdint.h>
Rom Lemarchand266dde22013-07-08 15:22:10 -070023#include <stdlib.h>
Mark Salyzync51e8d32014-03-14 11:15:07 -070024#include <string.h>
Rom Lemarchand266dde22013-07-08 15:22:10 -070025#include <sys/types.h>
26#include <unistd.h>
Rom Lemarchand266dde22013-07-08 15:22:10 -070027
28#include <pagemap/pagemap.h>
29
30#define MAX_FILENAME 64
31
32#define GROWTH_FACTOR 10
33
34#define NO_PATTERN 0x100
35
Rom Lemarchand2bed1552013-07-08 21:50:24 -070036#define PR_SORTED 1
37#define PR_VERBOSE 2
Rom Lemarchandb9cf0182013-07-09 12:07:02 -070038#define PR_ALL 4
Rom Lemarchand266dde22013-07-08 15:22:10 -070039
Rom Lemarchandc259c662013-07-09 10:51:03 -070040struct vaddr {
41 unsigned long addr;
42 size_t num_pages;
Rom Lemarchandb9cf0182013-07-09 12:07:02 -070043 pid_t pid;
Rom Lemarchandc259c662013-07-09 10:51:03 -070044};
45
Rom Lemarchand266dde22013-07-08 15:22:10 -070046struct ksm_page {
Rom Lemarchande88d5342013-07-25 15:47:16 -070047 uint64_t count;
Rom Lemarchand266dde22013-07-08 15:22:10 -070048 uint32_t hash;
Rom Lemarchandc259c662013-07-09 10:51:03 -070049 struct vaddr *vaddr;
Rom Lemarchand266dde22013-07-08 15:22:10 -070050 size_t vaddr_len, vaddr_size;
Rom Lemarchandc259c662013-07-09 10:51:03 -070051 size_t vaddr_count;
Rom Lemarchand266dde22013-07-08 15:22:10 -070052 uint16_t pattern;
53};
54
Rom Lemarchandb9cf0182013-07-09 12:07:02 -070055struct ksm_pages {
56 struct ksm_page *pages;
57 size_t len, size;
58};
59
60static void usage(char *myname);
61static int getprocname(pid_t pid, char *buf, int len);
62static int read_pages(struct ksm_pages *kp, pm_map_t **maps, size_t num_maps, uint8_t pr_flags);
63static void print_pages(struct ksm_pages *kp, uint8_t pr_flags);
64static void free_pages(struct ksm_pages *kp, uint8_t pr_flags);
65static bool is_pattern(uint8_t *data, size_t len);
66static int cmp_pages(const void *a, const void *b);
67extern uint32_t hashword(const uint32_t *, size_t, int32_t);
68
Rom Lemarchand266dde22013-07-08 15:22:10 -070069int main(int argc, char *argv[]) {
70 pm_kernel_t *ker;
71 pm_process_t *proc;
Rom Lemarchandb9cf0182013-07-09 12:07:02 -070072 pid_t *pids;
73 size_t num_procs;
74 size_t i;
Rom Lemarchand266dde22013-07-08 15:22:10 -070075 pm_map_t **maps;
76 size_t num_maps;
77 char cmdline[256]; // this must be within the range of int
78 int error;
79 int rc = EXIT_SUCCESS;
Rom Lemarchand2bed1552013-07-08 21:50:24 -070080 uint8_t pr_flags = 0;
Rom Lemarchandb9cf0182013-07-09 12:07:02 -070081 struct ksm_pages kp;
82
83 memset(&kp, 0, sizeof(kp));
Rom Lemarchand266dde22013-07-08 15:22:10 -070084
85 opterr = 0;
86 do {
Rom Lemarchandb9cf0182013-07-09 12:07:02 -070087 int c = getopt(argc, argv, "hvsa");
Rom Lemarchand266dde22013-07-08 15:22:10 -070088 if (c == -1)
89 break;
90
91 switch (c) {
Rom Lemarchandb9cf0182013-07-09 12:07:02 -070092 case 'a':
93 pr_flags |= PR_ALL;
94 break;
Rom Lemarchand2bed1552013-07-08 21:50:24 -070095 case 's':
96 pr_flags |= PR_SORTED;
97 break;
Rom Lemarchand266dde22013-07-08 15:22:10 -070098 case 'v':
Rom Lemarchand2bed1552013-07-08 21:50:24 -070099 pr_flags |= PR_VERBOSE;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700100 break;
101 case 'h':
102 usage(argv[0]);
103 exit(EXIT_SUCCESS);
104 case '?':
105 fprintf(stderr, "unknown option: %c\n", optopt);
106 usage(argv[0]);
107 exit(EXIT_FAILURE);
108 }
109 } while (1);
110
Rom Lemarchand266dde22013-07-08 15:22:10 -0700111 error = pm_kernel_create(&ker);
112 if (error) {
113 fprintf(stderr, "Error creating kernel interface -- "
114 "does this kernel have pagemap?\n");
115 exit(EXIT_FAILURE);
116 }
117
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700118 if (pr_flags & PR_ALL) {
119 error = pm_kernel_pids(ker, &pids, &num_procs);
120 if (error) {
121 fprintf(stderr, "Error listing processes.\n");
122 exit(EXIT_FAILURE);
123 }
124 } else {
125 if (optind != argc - 1) {
126 usage(argv[0]);
127 exit(EXIT_FAILURE);
128 }
129
130 pids = malloc(sizeof(*pids));
131 if (pids == NULL) {
132 fprintf(stderr, "Error allocating pid memory\n");
133 exit(EXIT_FAILURE);
134 }
135
136 *pids = strtoul(argv[optind], NULL, 10);
137 if (*pids == 0) {
138 fprintf(stderr, "Invalid PID\n");
139 rc = EXIT_FAILURE;
140 goto exit;
141 }
142 num_procs = 1;
143 if (getprocname(*pids, cmdline, sizeof(cmdline)) < 0) {
144 cmdline[0] = '\0';
145 }
146 printf("%s (%u):\n", cmdline, *pids);
Rom Lemarchand266dde22013-07-08 15:22:10 -0700147 }
148
Rom Lemarchand266dde22013-07-08 15:22:10 -0700149 printf("Warning: this tool only compares the KSM CRCs of pages, there is a chance of "
150 "collisions\n");
Rom Lemarchand266dde22013-07-08 15:22:10 -0700151
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700152 for (i = 0; i < num_procs; i++) {
153 error = pm_process_create(ker, pids[i], &proc);
154 if (error) {
155 fprintf(stderr, "warning: could not create process interface for %d\n", pids[i]);
156 rc = EXIT_FAILURE;
157 goto exit;
158 }
159
160 error = pm_process_maps(proc, &maps, &num_maps);
161 if (error) {
162 pm_process_destroy(proc);
163 fprintf(stderr, "warning: could not read process map for %d\n", pids[i]);
164 rc = EXIT_FAILURE;
165 goto exit;
166 }
167
168 if (read_pages(&kp, maps, num_maps, pr_flags) < 0) {
169 free(maps);
170 pm_process_destroy(proc);
171 rc = EXIT_FAILURE;
172 goto exit;
173 }
174
175 free(maps);
176 pm_process_destroy(proc);
177 }
178
179 if (pr_flags & PR_SORTED) {
180 qsort(kp.pages, kp.len, sizeof(*kp.pages), cmp_pages);
181 }
182 print_pages(&kp, pr_flags);
183
184exit:
185 free_pages(&kp, pr_flags);
186 free(pids);
Rom Lemarchand266dde22013-07-08 15:22:10 -0700187 return rc;
188}
189
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700190static int read_pages(struct ksm_pages *kp, pm_map_t **maps, size_t num_maps, uint8_t pr_flags) {
Rom Lemarchand266dde22013-07-08 15:22:10 -0700191 size_t i, j, k;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700192 uint64_t *pagemap;
193 size_t map_len;
194 uint64_t flags;
195 pm_kernel_t *ker;
196 int error;
197 unsigned long vaddr;
198 int fd;
199 off_t off;
200 char filename[MAX_FILENAME];
201 uint32_t *data;
202 uint32_t hash;
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700203 int rc = 0;
204 struct ksm_page *cur_page;
205 pid_t pid;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700206
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700207 if (num_maps == 0)
208 return 0;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700209
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700210 pid = pm_process_pid(maps[0]->proc);
Rom Lemarchand266dde22013-07-08 15:22:10 -0700211 ker = maps[0]->proc->ker;
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700212 error = snprintf(filename, MAX_FILENAME, "/proc/%d/mem", pid);
Rom Lemarchand266dde22013-07-08 15:22:10 -0700213 if (error < 0 || error >= MAX_FILENAME) {
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700214 return -1;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700215 }
216
217 data = malloc(pm_kernel_pagesize(ker));
218 if (data == NULL) {
219 fprintf(stderr, "warning: not enough memory to malloc data buffer\n");
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700220 return -1;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700221 }
222
223 fd = open(filename, O_RDONLY);
224 if (fd < 0) {
225 fprintf(stderr, "warning: could not open %s\n", filename);
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700226 rc = -1;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700227 goto err_open;
228 }
229
Rom Lemarchand266dde22013-07-08 15:22:10 -0700230 for (i = 0; i < num_maps; i++) {
231 error = pm_map_pagemap(maps[i], &pagemap, &map_len);
232 if (error) {
233 fprintf(stderr, "warning: could not read the pagemap of %d\n",
234 pm_process_pid(maps[i]->proc));
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700235 continue;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700236 }
237 for (j = 0; j < map_len; j++) {
Daniel Rosenberg844b2e12014-09-02 19:17:25 -0700238 error = pm_kernel_flags(ker, PM_PAGEMAP_PFN(pagemap[j]), &flags);
Rom Lemarchand266dde22013-07-08 15:22:10 -0700239 if (error) {
Mark Salyzync51e8d32014-03-14 11:15:07 -0700240 fprintf(stderr, "warning: could not read flags for pfn at address 0x%016" PRIx64 "\n",
Rom Lemarchand266dde22013-07-08 15:22:10 -0700241 pagemap[i]);
242 continue;
243 }
Elliott Hughes9eed6242016-08-23 17:47:49 -0700244 if (!(flags & KPF_KSM)) {
Rom Lemarchand266dde22013-07-08 15:22:10 -0700245 continue;
246 }
247 vaddr = pm_map_start(maps[i]) + j * pm_kernel_pagesize(ker);
248 off = lseek(fd, vaddr, SEEK_SET);
249 if (off == (off_t)-1) {
250 fprintf(stderr, "warning: could not lseek to 0x%08lx\n", vaddr);
251 continue;
252 }
Dan Albert87978502016-02-02 15:35:33 -0800253 ssize_t len = read(fd, data, pm_kernel_pagesize(ker));
Rom Lemarchand266dde22013-07-08 15:22:10 -0700254 if (len != pm_kernel_pagesize(ker)) {
255 fprintf(stderr, "warning: could not read page at 0x%08lx\n", vaddr);
256 continue;
257 }
258
259 hash = hashword(data, pm_kernel_pagesize(ker) / sizeof(*data), 17);
260
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700261 for (k = 0; k < kp->len; k++) {
262 if (kp->pages[k].hash == hash) break;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700263 }
264
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700265 if (k == kp->len) {
266 if (kp->len == kp->size) {
267 struct ksm_page *tmp = realloc(kp->pages,
268 (kp->size + GROWTH_FACTOR) * sizeof(*kp->pages));
Rom Lemarchand266dde22013-07-08 15:22:10 -0700269 if (tmp == NULL) {
270 fprintf(stderr, "warning: not enough memory to realloc pages struct\n");
271 free(pagemap);
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700272 rc = -1;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700273 goto err_realloc;
274 }
275 memset(&tmp[k], 0, sizeof(tmp[k]) * GROWTH_FACTOR);
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700276 kp->pages = tmp;
277 kp->size += GROWTH_FACTOR;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700278 }
Daniel Rosenberg844b2e12014-09-02 19:17:25 -0700279 rc = pm_kernel_count(ker, PM_PAGEMAP_PFN(pagemap[j]), &kp->pages[kp->len].count);
Rom Lemarchande88d5342013-07-25 15:47:16 -0700280 if (rc) {
281 fprintf(stderr, "error reading page count\n");
282 free(pagemap);
283 goto err_count;
284 }
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700285 kp->pages[kp->len].hash = hash;
286 kp->pages[kp->len].pattern =
287 is_pattern((uint8_t *)data, pm_kernel_pagesize(ker)) ?
Rom Lemarchand266dde22013-07-08 15:22:10 -0700288 (data[0] & 0xFF) : NO_PATTERN;
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700289 kp->len++;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700290 }
291
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700292 cur_page = &kp->pages[k];
293
Rom Lemarchand2bed1552013-07-08 21:50:24 -0700294 if (pr_flags & PR_VERBOSE) {
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700295 if (cur_page->vaddr_len > 0 &&
296 cur_page->vaddr[cur_page->vaddr_len - 1].pid == pid &&
297 cur_page->vaddr[cur_page->vaddr_len - 1].addr ==
298 vaddr - (cur_page->vaddr[cur_page->vaddr_len - 1].num_pages *
Rom Lemarchandc259c662013-07-09 10:51:03 -0700299 pm_kernel_pagesize(ker))) {
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700300 cur_page->vaddr[cur_page->vaddr_len - 1].num_pages++;
Rom Lemarchandc259c662013-07-09 10:51:03 -0700301 } else {
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700302 if (cur_page->vaddr_len == cur_page->vaddr_size) {
303 struct vaddr *tmp = realloc(cur_page->vaddr,
304 (cur_page->vaddr_size + GROWTH_FACTOR) * sizeof(*(cur_page->vaddr)));
Rom Lemarchandc259c662013-07-09 10:51:03 -0700305 if (tmp == NULL) {
306 fprintf(stderr, "warning: not enough memory to realloc vaddr array\n");
307 free(pagemap);
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700308 rc = -1;
Rom Lemarchandc259c662013-07-09 10:51:03 -0700309 goto err_realloc;
310 }
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700311 memset(&tmp[cur_page->vaddr_len], 0, sizeof(tmp[cur_page->vaddr_len]) * GROWTH_FACTOR);
312 cur_page->vaddr = tmp;
313 cur_page->vaddr_size += GROWTH_FACTOR;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700314 }
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700315 cur_page->vaddr[cur_page->vaddr_len].addr = vaddr;
316 cur_page->vaddr[cur_page->vaddr_len].num_pages = 1;
317 cur_page->vaddr[cur_page->vaddr_len].pid = pid;
318 cur_page->vaddr_len++;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700319 }
Rom Lemarchand266dde22013-07-08 15:22:10 -0700320 }
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700321 cur_page->vaddr_count++;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700322 }
323 free(pagemap);
324 }
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700325 goto no_err;
Rom Lemarchand266dde22013-07-08 15:22:10 -0700326
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700327err_realloc:
Rom Lemarchande88d5342013-07-25 15:47:16 -0700328err_count:
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700329 if (pr_flags & PR_VERBOSE) {
330 for (i = 0; i < kp->len; i++) {
331 free(kp->pages[i].vaddr);
Rom Lemarchand266dde22013-07-08 15:22:10 -0700332 }
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700333 }
334 free(kp->pages);
335
336no_err:
337 close(fd);
338err_open:
339 free(data);
340 return rc;
341}
342
343static void print_pages(struct ksm_pages *kp, uint8_t pr_flags) {
344 size_t i, j, k;
345 char suffix[13];
346 int index;
347
348 for (i = 0; i < kp->len; i++) {
349 if (kp->pages[i].pattern != NO_PATTERN) {
350 printf("0x%02x byte pattern: ", kp->pages[i].pattern);
351 } else {
352 printf("KSM CRC 0x%08x:", kp->pages[i].hash);
353 }
Mark Salyzync51e8d32014-03-14 11:15:07 -0700354 printf(" %4zu page", kp->pages[i].vaddr_count);
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700355 if (kp->pages[i].vaddr_count > 1) {
Rom Lemarchand266dde22013-07-08 15:22:10 -0700356 printf("s");
357 }
Rom Lemarchande88d5342013-07-25 15:47:16 -0700358 if (!(pr_flags & PR_ALL)) {
Mark Salyzync51e8d32014-03-14 11:15:07 -0700359 printf(" (%" PRIu64 " reference", kp->pages[i].count);
Rom Lemarchande88d5342013-07-25 15:47:16 -0700360 if (kp->pages[i].count > 1) {
361 printf("s");
362 }
363 printf(")");
364 }
Rom Lemarchand266dde22013-07-08 15:22:10 -0700365 printf("\n");
366
Rom Lemarchand2bed1552013-07-08 21:50:24 -0700367 if (pr_flags & PR_VERBOSE) {
Rom Lemarchand266dde22013-07-08 15:22:10 -0700368 j = 0;
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700369 while (j < kp->pages[i].vaddr_len) {
Rom Lemarchand266dde22013-07-08 15:22:10 -0700370 printf(" ");
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700371 for (k = 0; k < 8 && j < kp->pages[i].vaddr_len; k++, j++) {
372 printf(" 0x%08lx", kp->pages[i].vaddr[j].addr);
373
Mark Salyzync51e8d32014-03-14 11:15:07 -0700374 index = snprintf(suffix, sizeof(suffix), ":%zu",
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700375 kp->pages[i].vaddr[j].num_pages);
376 if (pr_flags & PR_ALL) {
377 index += snprintf(suffix + index, sizeof(suffix) - index, "[%d]",
378 kp->pages[i].vaddr[j].pid);
Rom Lemarchandc259c662013-07-09 10:51:03 -0700379 }
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700380 printf("%-12s", suffix);
Rom Lemarchand266dde22013-07-08 15:22:10 -0700381 }
382 printf("\n");
383 }
384 }
385 }
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700386}
Rom Lemarchand266dde22013-07-08 15:22:10 -0700387
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700388static void free_pages(struct ksm_pages *kp, uint8_t pr_flags) {
389 size_t i;
390
Rom Lemarchand2bed1552013-07-08 21:50:24 -0700391 if (pr_flags & PR_VERBOSE) {
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700392 for (i = 0; i < kp->len; i++) {
393 free(kp->pages[i].vaddr);
Rom Lemarchand266dde22013-07-08 15:22:10 -0700394 }
395 }
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700396 free(kp->pages);
Rom Lemarchand266dde22013-07-08 15:22:10 -0700397}
398
399static void usage(char *myname) {
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700400 fprintf(stderr, "Usage: %s [-s | -v | -a | -h ] <pid>\n"
Rom Lemarchand2bed1552013-07-08 21:50:24 -0700401 " -s Sort pages by usage count.\n"
Rom Lemarchand266dde22013-07-08 15:22:10 -0700402 " -v Verbose: print virtual addresses.\n"
Rom Lemarchandb9cf0182013-07-09 12:07:02 -0700403 " -a Display all the KSM pages in the system. Ignore the pid argument.\n"
Rom Lemarchand266dde22013-07-08 15:22:10 -0700404 " -h Display this help screen.\n",
405 myname);
406}
407
Rom Lemarchand2bed1552013-07-08 21:50:24 -0700408static int cmp_pages(const void *a, const void *b) {
409 const struct ksm_page *pg_a = a;
410 const struct ksm_page *pg_b = b;
Rom Lemarchande88d5342013-07-25 15:47:16 -0700411 int cmp = pg_b->vaddr_count - pg_a->vaddr_count;
Rom Lemarchand2bed1552013-07-08 21:50:24 -0700412
Rom Lemarchande88d5342013-07-25 15:47:16 -0700413 return cmp ? cmp : pg_b->count - pg_a->count;
Rom Lemarchand2bed1552013-07-08 21:50:24 -0700414}
415
Rom Lemarchand266dde22013-07-08 15:22:10 -0700416static bool is_pattern(uint8_t *data, size_t len) {
417 size_t i;
418 uint8_t first_byte = data[0];
419
420 for (i = 1; i < len; i++) {
421 if (first_byte != data[i]) return false;
422 }
423
424 return true;
425}
426
427/*
428 * Get the process name for a given PID. Inserts the process name into buffer
429 * buf of length len. The size of the buffer must be greater than zero to get
430 * any useful output.
431 *
432 * Note that fgets(3) only declares length as an int, so our buffer size is
433 * also declared as an int.
434 *
435 * Returns 0 on success, a positive value on partial success, and -1 on
436 * failure. Other interesting values:
437 * 1 on failure to create string to examine proc cmdline entry
438 * 2 on failure to open proc cmdline entry
439 * 3 on failure to read proc cmdline entry
440 */
441static int getprocname(pid_t pid, char *buf, int len) {
442 char *filename;
443 FILE *f;
444 int rc = 0;
445 static const char* unknown_cmdline = "<unknown>";
446
447 if (len <= 0) {
448 return -1;
449 }
450
Mark Salyzync51e8d32014-03-14 11:15:07 -0700451 if (asprintf(&filename, "/proc/%d/cmdline", (int)pid) < 0) {
Rom Lemarchand266dde22013-07-08 15:22:10 -0700452 rc = 1;
453 goto exit;
454 }
455
456 f = fopen(filename, "r");
457 if (f == NULL) {
458 rc = 2;
459 goto releasefilename;
460 }
461
462 if (fgets(buf, len, f) == NULL) {
463 rc = 3;
464 goto closefile;
465 }
466
467closefile:
468 (void) fclose(f);
469releasefilename:
470 free(filename);
471exit:
472 if (rc != 0) {
473 /*
474 * The process went away before we could read its process name. Try
475 * to give the user "<unknown>" here, but otherwise they get to look
476 * at a blank.
477 */
478 if (strlcpy(buf, unknown_cmdline, (size_t)len) >= (size_t)len) {
479 rc = 4;
480 }
481 }
482
483 return rc;
484}