-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing files from previous commit.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5188 c046a42c-6fe2-441c-8c8c-71466251a162
- Loading branch information
aliguori
committed
Sep 10, 2008
1 parent
baf35cb
commit bcdf9b4
Showing
2 changed files
with
160 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
/* | ||
* signalfd/eventfd compatibility | ||
* | ||
* Copyright IBM, Corp. 2008 | ||
* | ||
* Authors: | ||
* Anthony Liguori <aliguori@us.ibm.com> | ||
* | ||
* This work is licensed under the terms of the GNU GPL, version 2. See | ||
* the COPYING file in the top-level directory. | ||
* | ||
*/ | ||
|
||
#include "qemu-common.h" | ||
#include "compatfd.h" | ||
|
||
#include <sys/syscall.h> | ||
#include <pthread.h> | ||
|
||
struct sigfd_compat_info | ||
{ | ||
sigset_t mask; | ||
int fd; | ||
}; | ||
|
||
static void *sigwait_compat(void *opaque) | ||
{ | ||
struct sigfd_compat_info *info = opaque; | ||
int err; | ||
sigset_t all; | ||
|
||
sigfillset(&all); | ||
sigprocmask(SIG_BLOCK, &all, NULL); | ||
|
||
do { | ||
siginfo_t siginfo; | ||
|
||
err = sigwaitinfo(&info->mask, &siginfo); | ||
if (err == -1 && errno == EINTR) { | ||
err = 0; | ||
continue; | ||
} | ||
|
||
if (err > 0) { | ||
char buffer[128]; | ||
size_t offset = 0; | ||
|
||
memcpy(buffer, &err, sizeof(err)); | ||
while (offset < sizeof(buffer)) { | ||
ssize_t len; | ||
|
||
len = write(info->fd, buffer + offset, | ||
sizeof(buffer) - offset); | ||
if (len == -1 && errno == EINTR) | ||
continue; | ||
|
||
if (len <= 0) { | ||
err = -1; | ||
break; | ||
} | ||
|
||
offset += len; | ||
} | ||
} | ||
} while (err >= 0); | ||
|
||
return NULL; | ||
} | ||
|
||
static int qemu_signalfd_compat(const sigset_t *mask) | ||
{ | ||
pthread_attr_t attr; | ||
pthread_t tid; | ||
struct sigfd_compat_info *info; | ||
int fds[2]; | ||
|
||
info = malloc(sizeof(*info)); | ||
if (info == NULL) { | ||
errno = ENOMEM; | ||
return -1; | ||
} | ||
|
||
if (pipe(fds) == -1) { | ||
free(info); | ||
return -1; | ||
} | ||
|
||
memcpy(&info->mask, mask, sizeof(*mask)); | ||
info->fd = fds[1]; | ||
|
||
pthread_attr_init(&attr); | ||
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); | ||
|
||
pthread_create(&tid, &attr, sigwait_compat, info); | ||
|
||
pthread_attr_destroy(&attr); | ||
|
||
return fds[0]; | ||
} | ||
|
||
int qemu_signalfd(const sigset_t *mask) | ||
{ | ||
#if defined(SYS_signalfd) | ||
int ret; | ||
|
||
ret = syscall(SYS_signalfd, -1, mask, _NSIG / 8); | ||
if (!(ret == -1 && errno == ENOSYS)) | ||
return ret; | ||
#endif | ||
|
||
return qemu_signalfd_compat(mask); | ||
} | ||
|
||
int qemu_eventfd(int *fds) | ||
{ | ||
#if defined(SYS_eventfd) | ||
int ret; | ||
|
||
ret = syscall(SYS_eventfd, 0); | ||
if (ret >= 0) { | ||
fds[0] = fds[1] = ret; | ||
return 0; | ||
} else if (!(ret == -1 && errno == ENOSYS)) | ||
return ret; | ||
#endif | ||
|
||
return pipe(fds); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* signalfd/eventfd compatibility | ||
* | ||
* Copyright IBM, Corp. 2008 | ||
* | ||
* Authors: | ||
* Anthony Liguori <aliguori@us.ibm.com> | ||
* | ||
* This work is licensed under the terms of the GNU GPL, version 2. See | ||
* the COPYING file in the top-level directory. | ||
* | ||
*/ | ||
|
||
#ifndef QEMU_COMPATFD_H | ||
#define QEMU_COMPATFD_H | ||
|
||
#include <signal.h> | ||
|
||
#if defined(__linux__) && !defined(SYS_signalfd) | ||
struct signalfd_siginfo { | ||
uint32_t ssi_signo; | ||
uint8_t pad[124]; | ||
}; | ||
#else | ||
#include <linux/signalfd.h> | ||
#endif | ||
|
||
int qemu_signalfd(const sigset_t *mask); | ||
|
||
int qemu_eventfd(int *fds); | ||
|
||
#endif |