]> git.itanic.dy.fi Git - scan-pagemap/blob - parse.c
parser: Remove dead code
[scan-pagemap] / parse.c
1 #include <sys/types.h>
2 #include <dirent.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
6 #include <errno.h>
7
8 #include "parse.h"
9 #include "pagemap.h"
10
11 static struct maps_list *alloc_maplist(void)
12 {
13         struct maps_list *map;
14
15         map = malloc(sizeof *map);
16         if (map == NULL)
17                 goto err;
18
19         memset(map, 0, sizeof(*map));
20         INIT_LIST_HEAD(&map->list);
21 err:
22         return map;
23 }
24
25 static struct maps *alloc_map(void)
26 {
27         struct maps *map;
28
29         map = malloc(sizeof *map);
30         if (map == NULL)
31                 goto err;
32
33         memset(map, 0, sizeof(*map));
34         INIT_LIST_HEAD(&map->list);
35 err:
36         return map;
37 }
38
39 static struct maps *parse_maps(FILE *file, int pid)
40 {
41         struct maps *the_map = NULL;
42         char line[1024];
43         int ret;
44
45         while(fgets(line, sizeof(line), file)) {
46                 struct maps *map = alloc_map();
47                 unsigned long start, end;
48                 char name[1024];
49
50                 if (map == NULL)
51                         return 0;
52
53                 if (the_map == NULL)
54                         the_map = map;
55
56                 ret = sscanf(line, "%lx-%lx %*s %*s %*s %*s %s",
57                              &start, &end, name);
58
59                 printf("%x, start %lx, end %lx, str: %s\n",
60                         ret, start, end, ret >= 3 ? name : "");
61
62                 if (ret < 2) {
63                         printf("Error reading input: %s\n", line);
64                         break;
65                 }
66
67                 map->start = start;
68                 map->end = end;
69                 map->size = end - start;
70                 map->pid = pid;
71
72                 if (ret >= 3)
73                         strncpy(map->name, name, sizeof(map->name));
74
75                 list_add_tail(&map->list, &the_map->list);
76         }
77
78         return the_map;
79 }
80
81 static void clear_pageframe(struct pageframe *pf)
82 {
83         memset(pf, 0, sizeof(*pf));
84 }
85
86 static struct pageframe *alloc_pageframe(void)
87 {
88         struct pageframe *pageframe;
89
90         pageframe = malloc(sizeof *pageframe);
91         if (pageframe == NULL)
92                 goto err;
93
94         clear_pageframe(pageframe);
95 err:
96         return pageframe;
97 }
98
99 #define BITRANGE(first, last) (((2ll << (last - first)) - 1) << first)
100
101 static void pageframe_to_struct(unsigned long long p, struct pageframe *pf)
102 {
103         pf->page_present = !!(BITRANGE(63, 63) & p);
104         pf->page_swapped = !!(BITRANGE(62, 62) & p);
105         pf->page_shift   =   (BITRANGE(55, 60) & p) >> 55;
106         pf->pfn          =   (BITRANGE(0, 54) & p);
107         pf->swap_type    =   (BITRANGE(0, 4) & p);
108         pf->swap_offset  =   (BITRANGE(5, 54) & p) >> 5;
109 #if 0
110         printf("pfn: %lx shift: %d present: %d swapped %d\n",
111                 pf->pfn, pf->page_shift, pf->page_present, pf->page_swapped);
112 #endif
113 }
114
115 static int compare_pageframe(struct bintree *at, struct bintree *bt)
116 {
117         struct pageframe *a, *b;
118         a = tree_to_pageframe(at);
119         b = tree_to_pageframe(bt);
120
121         return a->pfn - b->pfn;
122 }
123
124 struct bintree_ops pageframe_ops = {
125         .compare = compare_pageframe,
126 };
127
128 /* Read data from the /proc/pid/pagemap file */
129 static int parse_pageframe(FILE *file, struct pageframe *pf_tree,
130                         struct maps *maps, int add_to_tree)
131 {
132         struct maps *map;
133         struct maps_list *tmp;
134         struct pageframe *match, *pageframe = NULL;
135         long start, len, i;
136         unsigned long long pf;
137         int ret, error;
138
139         /* Go through the list of allocated memory areas */
140         list_for_each_entry(map, &maps->list, list) {
141                 start = map->start >> (PAGE_SHIFT - 3);
142                 len = map->size >> (PAGE_SHIFT - 3);
143
144                 printf("start: %lx len %lx: name: %s\n",
145                         start, len, map->name);
146
147                 ret = fseek(file, start, SEEK_SET);
148                 if (ret) {
149                         error = errno;
150                         fprintf(stderr, "Error seeking to %lx: %s\n", start,
151                                 strerror(error));
152                         continue;
153                 }
154
155                 for (i = 0; i < len; i++) {
156                         ret = fread(&pf, 1, sizeof(pf), file);
157                         if (ret != sizeof(pf)) {
158                                 error = errno;
159                                 fprintf(stderr, 
160                                         "Error reading %ld bytes, got %d: %s\n",
161                                         sizeof(pf), ret, strerror(errno));
162                                 continue;
163                         }
164                         if (!pageframe)
165                                 pageframe = alloc_pageframe();
166
167                         pageframe_to_struct(pf, pageframe);
168
169                         if (add_to_tree) {
170                                 match = tree_to_pageframe(
171                                         bintree_add(&pf_tree->tree,
172                                                 &pageframe->tree,
173                                                 &pageframe_ops));
174                         } else {
175                                 match = tree_to_pageframe(
176                                         bintree_find(&pf_tree->tree,
177                                                 &pageframe->tree,
178                                                 &pageframe_ops));
179                         }
180
181                         if (match == NULL)
182                                 continue;
183
184                         if (match == pageframe)
185                                 pageframe = NULL;
186
187                         match->refcount++;
188                         /*
189                          * Add a link from the physical page to this
190                          * process's page map
191                          */
192                         if (!match->ml) {
193                                 match->ml = alloc_maplist();
194                                 match->ml->map = map;
195                         } else {
196                                 tmp = alloc_maplist();
197                                 tmp->map = map;
198                                 list_add(&match->ml->list, &tmp->list);
199                         }
200                 }
201         }
202
203         return 0;
204 }
205
206 void read_pageframe(int pid, struct pageframe *pageframe, int add_to_tree)
207 {
208         struct maps *maps;
209         FILE *file;
210         int error;
211         char path[512];
212
213         snprintf(path, sizeof(path), "/proc/%d/maps", pid);
214         file = fopen(path, "rb");
215
216         if (!file)
217                 goto err_out;
218
219         maps = parse_maps(file, pid);
220
221         snprintf(path, sizeof(path), "/proc/%d/pagemap", pid);
222         file = fopen(path, "rb");
223
224         if (!file)
225                 goto err_out;
226
227         parse_pageframe(file, pageframe, maps, add_to_tree);
228
229         return;
230 err_out:
231         error = errno;
232         fprintf(stderr, "Failed to open file %s: %s\n", path, strerror(error));
233
234         return;
235 }
236
237 static int get_next_pid(void)
238 {
239         static DIR *dir = NULL;
240         struct dirent *dirent;
241         int error;
242
243         if (!dir) {
244                 dir = opendir("/proc");
245                 if (!dir) {
246                         error = errno;
247                         printf("Failed to open /proc directory: %s\n",
248                                 strerror(error));
249                         return -1;
250                 }
251         }
252
253 restart:
254         dirent = readdir(dir);
255         if (!dirent) {
256                 if (errno == 0) {
257                         closedir(dir);
258                         dir = NULL;
259                         return 0;
260                 }
261                 error = errno;
262                 printf("Failed to read directory: %s\n", strerror(error));
263                 return -1;
264         }
265
266         printf("%s\n", dirent->d_name);
267         if (dirent->d_name[0] < '0' || dirent->d_name[0] > '9')
268                 goto restart;
269
270         return atoi(dirent->d_name);
271 }
272
273 void scan_all_pids(struct pageframe *pf, int interesting_pid)
274 {
275         int pid;
276
277         read_pageframe(interesting_pid, pf, 1);
278
279         while(1) {
280                 pid = get_next_pid();
281                 if (pid <= 0)
282                         break;
283                 read_pageframe(pid, pf, 0);
284         }
285 }