diff options
Diffstat (limited to 'tools/testing/selftests/powerpc/harness.c')
| -rw-r--r-- | tools/testing/selftests/powerpc/harness.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tools/testing/selftests/powerpc/harness.c b/tools/testing/selftests/powerpc/harness.c index 8ebc58a09311..f7997affd143 100644 --- a/tools/testing/selftests/powerpc/harness.c +++ b/tools/testing/selftests/powerpc/harness.c | |||
| @@ -11,6 +11,10 @@ | |||
| 11 | #include <sys/types.h> | 11 | #include <sys/types.h> |
| 12 | #include <sys/wait.h> | 12 | #include <sys/wait.h> |
| 13 | #include <unistd.h> | 13 | #include <unistd.h> |
| 14 | #include <elf.h> | ||
| 15 | #include <fcntl.h> | ||
| 16 | #include <link.h> | ||
| 17 | #include <sys/stat.h> | ||
| 14 | 18 | ||
| 15 | #include "subunit.h" | 19 | #include "subunit.h" |
| 16 | #include "utils.h" | 20 | #include "utils.h" |
| @@ -112,3 +116,46 @@ int test_harness(int (test_function)(void), char *name) | |||
| 112 | 116 | ||
| 113 | return rc; | 117 | return rc; |
| 114 | } | 118 | } |
| 119 | |||
| 120 | static char auxv[4096]; | ||
| 121 | |||
| 122 | void *get_auxv_entry(int type) | ||
| 123 | { | ||
| 124 | ElfW(auxv_t) *p; | ||
| 125 | void *result; | ||
| 126 | ssize_t num; | ||
| 127 | int fd; | ||
| 128 | |||
| 129 | fd = open("/proc/self/auxv", O_RDONLY); | ||
| 130 | if (fd == -1) { | ||
| 131 | perror("open"); | ||
| 132 | return NULL; | ||
| 133 | } | ||
| 134 | |||
| 135 | result = NULL; | ||
| 136 | |||
| 137 | num = read(fd, auxv, sizeof(auxv)); | ||
| 138 | if (num < 0) { | ||
| 139 | perror("read"); | ||
| 140 | goto out; | ||
| 141 | } | ||
| 142 | |||
| 143 | if (num > sizeof(auxv)) { | ||
| 144 | printf("Overflowed auxv buffer\n"); | ||
| 145 | goto out; | ||
| 146 | } | ||
| 147 | |||
| 148 | p = (ElfW(auxv_t) *)auxv; | ||
| 149 | |||
| 150 | while (p->a_type != AT_NULL) { | ||
| 151 | if (p->a_type == type) { | ||
| 152 | result = (void *)p->a_un.a_val; | ||
| 153 | break; | ||
| 154 | } | ||
| 155 | |||
| 156 | p++; | ||
| 157 | } | ||
| 158 | out: | ||
| 159 | close(fd); | ||
| 160 | return result; | ||
| 161 | } | ||
