fortify-headers/include/poll.h

59 lines
1.5 KiB
C
Raw Normal View History

2015-05-13 11:15:36 +00:00
/*
* Copyright (C) 2015 Dimitris Papastamos <sin@2f30.org>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef _FORTIFY_POLL_H
#define _FORTIFY_POLL_H
#include_next <poll.h>
#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0
#include "fortify-headers.h"
2015-03-13 23:09:15 +00:00
#ifdef __cplusplus
extern "C" {
#endif
#undef poll
2015-03-11 09:26:11 +00:00
_FORTIFY_FN(poll) int poll(struct pollfd *__f, nfds_t __n, int __s)
{
__typeof__(sizeof 0) __b = __builtin_object_size(__f, 0);
if (__n > __b / sizeof(struct pollfd))
__builtin_trap();
return __orig_poll(__f, __n, __s);
}
2015-03-03 14:28:25 +00:00
#ifdef _GNU_SOURCE
#undef ppoll
_FORTIFY_FN(ppoll) int ppoll(struct pollfd *__f, nfds_t __n, const struct timespec *__s,
const sigset_t *__m)
2015-03-03 14:28:25 +00:00
{
__typeof__(sizeof 0) __b = __builtin_object_size(__f, 0);
2015-03-03 14:28:25 +00:00
if (__n > __b / sizeof(struct pollfd))
2015-03-03 14:28:25 +00:00
__builtin_trap();
return __orig_ppoll(__f, __n, __s, __m);
2015-03-03 14:28:25 +00:00
}
#endif
2015-03-13 23:09:15 +00:00
#ifdef __cplusplus
}
2015-03-11 09:26:11 +00:00
#endif
#endif
#endif