mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.poll: Guard against negative or too large FDs
This commit is contained in:
parent
31c8b1aca3
commit
ceadb9c57c
1 changed files with 14 additions and 0 deletions
|
@ -66,6 +66,13 @@ int Ladd(lua_State *L) {
|
|||
int wantread = lua_toboolean(L, 3);
|
||||
int wantwrite = lua_toboolean(L, 4);
|
||||
|
||||
if(fd < 0) {
|
||||
lua_pushnil(L);
|
||||
lua_pushstring(L, strerror(EBADF));
|
||||
lua_pushinteger(L, EBADF);
|
||||
return 3;
|
||||
}
|
||||
|
||||
#ifdef USE_EPOLL
|
||||
struct epoll_event event;
|
||||
event.data.fd = fd;
|
||||
|
@ -88,6 +95,13 @@ int Ladd(lua_State *L) {
|
|||
|
||||
#else
|
||||
|
||||
if(fd > FD_SETSIZE) {
|
||||
lua_pushnil(L);
|
||||
lua_pushstring(L, strerror(EBADF));
|
||||
lua_pushinteger(L, EBADF);
|
||||
return 3;
|
||||
}
|
||||
|
||||
if(FD_ISSET(fd, &state->all)) {
|
||||
lua_pushnil(L);
|
||||
lua_pushstring(L, strerror(EEXIST));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue