mirror of https://github.com/xemu-project/xemu.git
qemu/osdep: Remove the need for qemu_init_auxval
Instead of getting backup auxv data from the env pointer given to main, read it from /proc/self/auxv. We can do this at any time, so we're not tied to any ordering wrt a call to qemu_init_auxval from main. Tested-by: Tom Musta <tommusta@gmail.com> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
40d964b563
commit
2b45c3f500
|
@ -251,18 +251,6 @@ unsigned long qemu_getauxval(unsigned long type);
|
||||||
static inline unsigned long qemu_getauxval(unsigned long type) { return 0; }
|
static inline unsigned long qemu_getauxval(unsigned long type) { return 0; }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
|
||||||
* qemu_init_auxval:
|
|
||||||
* @envp: the third argument to main
|
|
||||||
*
|
|
||||||
* If supported and required, locate the auxiliary vector at program startup.
|
|
||||||
*/
|
|
||||||
#if defined(CONFIG_GETAUXVAL) || !defined(__linux__)
|
|
||||||
static inline void qemu_init_auxval(char **envp) { }
|
|
||||||
#else
|
|
||||||
void qemu_init_auxval(char **envp);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void qemu_set_tty_echo(int fd, bool echo);
|
void qemu_set_tty_echo(int fd, bool echo);
|
||||||
|
|
||||||
void os_mem_prealloc(int fd, char *area, size_t sz);
|
void os_mem_prealloc(int fd, char *area, size_t sz);
|
||||||
|
|
|
@ -3829,7 +3829,6 @@ int main(int argc, char **argv, char **envp)
|
||||||
|
|
||||||
module_call_init(MODULE_INIT_QOM);
|
module_call_init(MODULE_INIT_QOM);
|
||||||
|
|
||||||
qemu_init_auxval(envp);
|
|
||||||
qemu_cache_utils_init();
|
qemu_cache_utils_init();
|
||||||
|
|
||||||
if ((envlist = envlist_create()) == NULL) {
|
if ((envlist = envlist_create()) == NULL) {
|
||||||
|
|
|
@ -48,24 +48,51 @@ typedef struct {
|
||||||
|
|
||||||
static const ElfW_auxv_t *auxv;
|
static const ElfW_auxv_t *auxv;
|
||||||
|
|
||||||
void qemu_init_auxval(char **envp)
|
static const ElfW_auxv_t *qemu_init_auxval(void)
|
||||||
{
|
{
|
||||||
/* The auxiliary vector is located just beyond the initial environment. */
|
ElfW_auxv_t *a;
|
||||||
while (*envp++ != NULL) {
|
ssize_t size = 512, r, ofs;
|
||||||
continue;
|
int fd;
|
||||||
|
|
||||||
|
/* Allocate some initial storage. Make sure the first entry is set
|
||||||
|
to end-of-list, so that we've got a valid list in case of error. */
|
||||||
|
auxv = a = g_malloc(size);
|
||||||
|
a[0].a_type = 0;
|
||||||
|
a[0].a_val = 0;
|
||||||
|
|
||||||
|
fd = open("/proc/self/auxv", O_RDONLY);
|
||||||
|
if (fd < 0) {
|
||||||
|
return a;
|
||||||
}
|
}
|
||||||
auxv = (const ElfW_auxv_t *)envp;
|
|
||||||
|
/* Read the first SIZE bytes. Hopefully, this covers everything. */
|
||||||
|
r = read(fd, a, size);
|
||||||
|
|
||||||
|
if (r == size) {
|
||||||
|
/* Continue to expand until we do get a partial read. */
|
||||||
|
do {
|
||||||
|
ofs = size;
|
||||||
|
size *= 2;
|
||||||
|
auxv = a = g_realloc(a, size);
|
||||||
|
r = read(fd, (char *)a + ofs, ofs);
|
||||||
|
} while (r == ofs);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(fd);
|
||||||
|
return a;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned long qemu_getauxval(unsigned long type)
|
unsigned long qemu_getauxval(unsigned long type)
|
||||||
{
|
{
|
||||||
/* If we were able to find the auxiliary vector, use it. */
|
const ElfW_auxv_t *a = auxv;
|
||||||
if (auxv) {
|
|
||||||
const ElfW_auxv_t *a;
|
if (unlikely(a == NULL)) {
|
||||||
for (a = auxv; a->a_type != 0; a++) {
|
a = qemu_init_auxval();
|
||||||
if (a->a_type == type) {
|
}
|
||||||
return a->a_val;
|
|
||||||
}
|
for (; a->a_type != 0; a++) {
|
||||||
|
if (a->a_type == type) {
|
||||||
|
return a->a_val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue