mirror of
https://github.com/FAUSheppy/colorredstderr-mirror
synced 2025-12-09 08:28:33 +01:00
Hook perror(3).
This commit is contained in:
@@ -230,6 +230,10 @@ HOOK_FILE1(int, putchar_unlocked, stdout,
|
||||
HOOK_FILE1(int, puts_unlocked, stdout,
|
||||
const char *, s)
|
||||
|
||||
/* perror(3) */
|
||||
HOOK_VOID1(void, perror, STDERR_FILENO,
|
||||
const char *, s)
|
||||
|
||||
|
||||
/* Hook functions which duplicate file descriptors to track them. */
|
||||
|
||||
|
||||
@@ -30,6 +30,8 @@
|
||||
DLSYM_FUNCTION(real_ ## name, #name);
|
||||
#define _HOOK_PRE_FD(type, name, fd) \
|
||||
_HOOK_PRE(type, name) \
|
||||
_HOOK_PRE_FD_ALONE(type, name, fd)
|
||||
#define _HOOK_PRE_FD_ALONE(type, name, fd) \
|
||||
handle = check_handle_fd(fd); \
|
||||
if (handle) { \
|
||||
handle_fd_pre(fd, handle); \
|
||||
@@ -42,12 +44,14 @@
|
||||
}
|
||||
/* Save and restore the errno to make sure we return the errno of the original
|
||||
* function call. */
|
||||
#define _HOOK_POST_FD(fd) \
|
||||
#define _HOOK_POST_FD_ALONE(fd) \
|
||||
if (handle) { \
|
||||
int saved_errno = errno; \
|
||||
handle_fd_post(fd, handle); \
|
||||
errno = saved_errno; \
|
||||
} \
|
||||
}
|
||||
#define _HOOK_POST_FD(fd) \
|
||||
_HOOK_POST_FD_ALONE(fd) \
|
||||
return result;
|
||||
#define _HOOK_POST_FILE(file) \
|
||||
if (handle) { \
|
||||
@@ -58,6 +62,16 @@
|
||||
return result;
|
||||
|
||||
|
||||
#define HOOK_VOID1(type, name, fd, type1, arg1) \
|
||||
static type (*real_ ## name)(type1); \
|
||||
type name(type1 arg1) { \
|
||||
int handle; \
|
||||
DLSYM_FUNCTION(real_ ## name, #name); \
|
||||
_HOOK_PRE_FD_ALONE(type, name, fd) \
|
||||
real_ ## name(arg1); \
|
||||
_HOOK_POST_FD_ALONE(fd) \
|
||||
}
|
||||
|
||||
#define HOOK_FD3(type, name, fd, type1, arg1, type2, arg2, type3, arg3) \
|
||||
static type (*real_ ## name)(type1, type2, type3); \
|
||||
type name(type1 arg1, type2 arg2, type3 arg3) { \
|
||||
|
||||
@@ -28,6 +28,9 @@ int main(int argc, char **argv) {
|
||||
printf("write to stdout\n");
|
||||
fflush(stdout);
|
||||
|
||||
errno = 0;
|
||||
perror("error!");
|
||||
|
||||
write(STDERR_FILENO, "write to stderr 2", 17);
|
||||
write(STDOUT_FILENO, "write to stdout 2", 17);
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
>stderr>write to stderr: 1
|
||||
<stderr<write to stdout
|
||||
>stderr>write to stderr 2<stderr<write to stdout 2>stderr>
|
||||
>stderr>error!: Success
|
||||
<stderr<>stderr>write to stderr 2<stderr<write to stdout 2>stderr>
|
||||
<stderr<
|
||||
|
||||
Reference in New Issue
Block a user