2 * Exercise /dev/mem mmap cases that have been troublesome in the past
4 * (c) Copyright 2007 Hewlett-Packard Development Company, L.P.
5 * Bjorn Helgaas <bjorn.helgaas@hp.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
14 #include <sys/types.h>
25 int map_mem(char *path
, off_t offset
, size_t length
, int touch
)
31 fd
= open(path
, O_RDWR
);
37 addr
= mmap(NULL
, length
, PROT_READ
|PROT_WRITE
, MAP_SHARED
, fd
, offset
);
38 if (addr
== MAP_FAILED
)
43 while (c
< (int *) (offset
+ length
))
47 rc
= munmap(addr
, length
);
57 int scan_sysfs(char *path
, char *file
, off_t offset
, size_t length
, int touch
)
59 struct dirent
**namelist
;
61 int i
, n
, r
, rc
, result
= 0;
64 n
= scandir(path
, &namelist
, 0, alphasort
);
70 for (i
= 0; i
< n
; i
++) {
71 name
= namelist
[i
]->d_name
;
73 if (fnmatch(".", name
, 0) == 0)
75 if (fnmatch("..", name
, 0) == 0)
78 path2
= malloc(strlen(path
) + strlen(name
) + 3);
83 if (fnmatch(file
, name
, 0) == 0) {
84 rc
= map_mem(path2
, offset
, length
, touch
);
86 fprintf(stderr
, "PASS: %s 0x%lx-0x%lx is %s\n", path2
, offset
, offset
+ length
, touch
? "readable" : "mappable");
88 fprintf(stderr
, "PASS: %s 0x%lx-0x%lx not mappable\n", path2
, offset
, offset
+ length
);
90 fprintf(stderr
, "FAIL: %s 0x%lx-0x%lx not accessible\n", path2
, offset
, offset
+ length
);
94 r
= lstat(path2
, &buf
);
95 if (r
== 0 && S_ISDIR(buf
.st_mode
)) {
96 rc
= scan_sysfs(path2
, file
, offset
, length
, touch
);
114 int read_rom(char *path
)
119 fd
= open(path
, O_RDWR
);
125 rc
= write(fd
, "1", 2);
132 rc
= read(fd
, buf
, sizeof(buf
));
141 int scan_rom(char *path
, char *file
)
143 struct dirent
**namelist
;
145 int i
, n
, r
, rc
, result
= 0;
148 n
= scandir(path
, &namelist
, 0, alphasort
);
154 for (i
= 0; i
< n
; i
++) {
155 name
= namelist
[i
]->d_name
;
157 if (fnmatch(".", name
, 0) == 0)
159 if (fnmatch("..", name
, 0) == 0)
162 path2
= malloc(strlen(path
) + strlen(name
) + 3);
167 if (fnmatch(file
, name
, 0) == 0) {
168 rc
= read_rom(path2
);
171 * It's OK if the ROM is unreadable. Maybe there
172 * is no ROM, or some other error ocurred. The
173 * important thing is that no MCA happened.
176 fprintf(stderr
, "PASS: %s read %ld bytes\n", path2
, rc
);
178 fprintf(stderr
, "PASS: %s not readable\n", path2
);
182 r
= lstat(path2
, &buf
);
183 if (r
== 0 && S_ISDIR(buf
.st_mode
)) {
184 rc
= scan_rom(path2
, file
);
204 if (map_mem("/dev/mem", 0, 0xA0000, 1) == 0)
205 fprintf(stderr
, "PASS: /dev/mem 0x0-0xa0000 is readable\n");
207 fprintf(stderr
, "FAIL: /dev/mem 0x0-0xa0000 not accessible\n");
210 * It's not safe to blindly read the VGA frame buffer. If you know
211 * how to poke the card the right way, it should respond, but it's
212 * not safe in general. Many machines, e.g., Intel chipsets, cover
213 * up a non-responding card by just returning -1, but others will
214 * report the failure as a machine check.
216 if (map_mem("/dev/mem", 0xA0000, 0x20000, 0) == 0)
217 fprintf(stderr
, "PASS: /dev/mem 0xa0000-0xc0000 is mappable\n");
219 fprintf(stderr
, "FAIL: /dev/mem 0xa0000-0xc0000 not accessible\n");
221 if (map_mem("/dev/mem", 0xC0000, 0x40000, 1) == 0)
222 fprintf(stderr
, "PASS: /dev/mem 0xc0000-0x100000 is readable\n");
224 fprintf(stderr
, "FAIL: /dev/mem 0xc0000-0x100000 not accessible\n");
227 * Often you can map all the individual pieces above (0-0xA0000,
228 * 0xA0000-0xC0000, and 0xC0000-0x100000), but can't map the whole
229 * thing at once. This is because the individual pieces use different
230 * attributes, and there's no single attribute supported over the
233 rc
= map_mem("/dev/mem", 0, 1024*1024, 0);
235 fprintf(stderr
, "PASS: /dev/mem 0x0-0x100000 is mappable\n");
237 fprintf(stderr
, "PASS: /dev/mem 0x0-0x100000 not mappable\n");
239 fprintf(stderr
, "FAIL: /dev/mem 0x0-0x100000 not accessible\n");
241 scan_sysfs("/sys/class/pci_bus", "legacy_mem", 0, 0xA0000, 1);
242 scan_sysfs("/sys/class/pci_bus", "legacy_mem", 0xA0000, 0x20000, 0);
243 scan_sysfs("/sys/class/pci_bus", "legacy_mem", 0xC0000, 0x40000, 1);
244 scan_sysfs("/sys/class/pci_bus", "legacy_mem", 0, 1024*1024, 0);
246 scan_rom("/sys/devices", "rom");