2006-06-15 19:48:13 +00:00
|
|
|
/*
|
2012-08-09 10:11:58 +00:00
|
|
|
* include/proto/fd.h
|
|
|
|
* File descriptors states.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000-2012 Willy Tarreau - w@1wt.eu
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
|
|
* exclusively.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2006-06-15 19:48:13 +00:00
|
|
|
|
2006-06-26 00:48:02 +00:00
|
|
|
#ifndef _PROTO_FD_H
|
|
|
|
#define _PROTO_FD_H
|
|
|
|
|
2007-04-09 17:29:56 +00:00
|
|
|
#include <stdio.h>
|
2006-06-26 00:48:02 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2006-06-29 16:54:54 +00:00
|
|
|
#include <common/config.h>
|
2006-06-26 00:48:02 +00:00
|
|
|
#include <types/fd.h>
|
|
|
|
|
2012-11-11 14:02:54 +00:00
|
|
|
/* public variables */
|
|
|
|
extern int fd_nbspec; // number of speculative events in the list
|
|
|
|
extern int fd_nbupdt; // number of updates in the list
|
|
|
|
extern unsigned int *fd_spec; // speculative I/O list
|
|
|
|
extern unsigned int *fd_updt; // FD updates list
|
|
|
|
|
2006-06-26 00:48:02 +00:00
|
|
|
/* Deletes an FD from the fdsets, and recomputes the maxfd limit.
|
|
|
|
* The file descriptor is also closed.
|
|
|
|
*/
|
|
|
|
void fd_delete(int fd);
|
2006-06-15 19:48:13 +00:00
|
|
|
|
2007-04-08 14:39:58 +00:00
|
|
|
/* disable the specified poller */
|
|
|
|
void disable_poller(const char *poller_name);
|
2006-06-15 19:48:13 +00:00
|
|
|
|
2006-10-15 12:52:29 +00:00
|
|
|
/*
|
2007-04-08 14:39:58 +00:00
|
|
|
* Initialize the pollers till the best one is found.
|
|
|
|
* If none works, returns 0, otherwise 1.
|
2007-04-15 22:25:25 +00:00
|
|
|
* The pollers register themselves just before main() is called.
|
2006-10-15 12:52:29 +00:00
|
|
|
*/
|
2007-04-08 14:39:58 +00:00
|
|
|
int init_pollers();
|
2006-10-15 12:52:29 +00:00
|
|
|
|
[MEDIUM] Fix memory freeing at exit
New functions implemented:
- deinit_pollers: called at the end of deinit())
- prune_acl: called via list_for_each_entry_safe
Add missing pool_destroy2 calls:
- p->hdr_idx_pool
- pool2_tree64
Implement all task stopping:
- health-check: needs new "struct task" in the struct server
- queue processing: queue_mgt
- appsess_refresh: appsession_refresh
before (idle system):
==6079== LEAK SUMMARY:
==6079== definitely lost: 1,112 bytes in 75 blocks.
==6079== indirectly lost: 53,356 bytes in 2,090 blocks.
==6079== possibly lost: 52 bytes in 1 blocks.
==6079== still reachable: 150,996 bytes in 504 blocks.
==6079== suppressed: 0 bytes in 0 blocks.
after (idle system):
==6945== LEAK SUMMARY:
==6945== definitely lost: 7,644 bytes in 137 blocks.
==6945== indirectly lost: 9,913 bytes in 587 blocks.
==6945== possibly lost: 0 bytes in 0 blocks.
==6945== still reachable: 0 bytes in 0 blocks.
==6945== suppressed: 0 bytes in 0 blocks.
before (running system for ~2m):
==9343== LEAK SUMMARY:
==9343== definitely lost: 1,112 bytes in 75 blocks.
==9343== indirectly lost: 54,199 bytes in 2,122 blocks.
==9343== possibly lost: 52 bytes in 1 blocks.
==9343== still reachable: 151,128 bytes in 509 blocks.
==9343== suppressed: 0 bytes in 0 blocks.
after (running system for ~2m):
==11616== LEAK SUMMARY:
==11616== definitely lost: 7,644 bytes in 137 blocks.
==11616== indirectly lost: 9,981 bytes in 591 blocks.
==11616== possibly lost: 0 bytes in 0 blocks.
==11616== still reachable: 4 bytes in 1 blocks.
==11616== suppressed: 0 bytes in 0 blocks.
Still not perfect but significant improvement.
2008-05-29 21:53:44 +00:00
|
|
|
/*
|
|
|
|
* Deinitialize the pollers.
|
|
|
|
*/
|
|
|
|
void deinit_pollers();
|
|
|
|
|
2007-04-09 17:29:56 +00:00
|
|
|
/*
|
|
|
|
* Some pollers may lose their connection after a fork(). It may be necessary
|
|
|
|
* to create initialize part of them again. Returns 0 in case of failure,
|
|
|
|
* otherwise 1. The fork() function may be NULL if unused. In case of error,
|
|
|
|
* the the current poller is destroyed and the caller is responsible for trying
|
|
|
|
* another one by calling init_pollers() again.
|
|
|
|
*/
|
|
|
|
int fork_poller();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lists the known pollers on <out>.
|
|
|
|
* Should be performed only before initialization.
|
|
|
|
*/
|
|
|
|
int list_pollers(FILE *out);
|
|
|
|
|
2007-04-08 14:39:58 +00:00
|
|
|
/*
|
|
|
|
* Runs the polling loop
|
|
|
|
*/
|
|
|
|
void run_poller();
|
|
|
|
|
2012-11-11 15:43:45 +00:00
|
|
|
/* Scan and process the speculative events. This should be called right after
|
|
|
|
* the poller.
|
|
|
|
*/
|
|
|
|
void fd_process_spec_events();
|
|
|
|
|
2012-11-11 14:02:54 +00:00
|
|
|
/* Mark fd <fd> as updated and allocate an entry in the update list for this if
|
|
|
|
* it was not already there. This can be done at any time.
|
|
|
|
*/
|
|
|
|
static inline void updt_fd(const int fd)
|
|
|
|
{
|
|
|
|
if (fdtab[fd].updated)
|
|
|
|
/* already scheduled for update */
|
|
|
|
return;
|
|
|
|
fdtab[fd].updated = 1;
|
2012-12-13 22:34:18 +00:00
|
|
|
fd_updt[fd_nbupdt++] = fd;
|
2012-11-11 14:02:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* allocate an entry for a speculative event. This can be done at any time. */
|
|
|
|
static inline void alloc_spec_entry(const int fd)
|
|
|
|
{
|
|
|
|
if (fdtab[fd].spec_p)
|
|
|
|
/* FD already in speculative I/O list */
|
|
|
|
return;
|
2012-12-13 22:34:18 +00:00
|
|
|
fd_nbspec++;
|
2012-11-11 14:02:54 +00:00
|
|
|
fdtab[fd].spec_p = fd_nbspec;
|
2012-12-13 22:34:18 +00:00
|
|
|
fd_spec[fd_nbspec-1] = fd;
|
2012-11-11 14:02:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Removes entry used by fd <fd> from the spec list and replaces it with the
|
|
|
|
* last one. The fdtab.spec is adjusted to match the back reference if needed.
|
|
|
|
* If the fd has no entry assigned, return immediately.
|
|
|
|
*/
|
|
|
|
static inline void release_spec_entry(int fd)
|
|
|
|
{
|
|
|
|
unsigned int pos;
|
|
|
|
|
|
|
|
pos = fdtab[fd].spec_p;
|
|
|
|
if (!pos)
|
|
|
|
return;
|
|
|
|
fdtab[fd].spec_p = 0;
|
|
|
|
fd_nbspec--;
|
2012-12-13 22:34:18 +00:00
|
|
|
if (likely(pos <= fd_nbspec)) {
|
2012-11-11 14:02:54 +00:00
|
|
|
/* was not the last entry */
|
|
|
|
fd = fd_spec[fd_nbspec];
|
|
|
|
fd_spec[pos - 1] = fd;
|
|
|
|
fdtab[fd].spec_p = pos;
|
|
|
|
}
|
|
|
|
}
|
2006-10-15 12:52:29 +00:00
|
|
|
|
2012-11-11 15:05:19 +00:00
|
|
|
/*
|
|
|
|
* Returns non-zero if <fd> is already monitored for events in direction <dir>.
|
|
|
|
*/
|
|
|
|
static inline int fd_ev_is_set(const int fd, int dir)
|
|
|
|
{
|
|
|
|
return ((unsigned)fdtab[fd].spec_e >> dir) & FD_EV_STATUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable processing of events on fd <fd> for direction <dir>. Note: this
|
|
|
|
* function was optimized to be used with a constant for <dir>.
|
|
|
|
*/
|
|
|
|
static inline void fd_ev_clr(const int fd, int dir)
|
|
|
|
{
|
|
|
|
unsigned int i = ((unsigned int)fdtab[fd].spec_e) & (FD_EV_STATUS << dir);
|
|
|
|
if (i == 0)
|
|
|
|
return; /* already disabled */
|
|
|
|
fdtab[fd].spec_e ^= i;
|
|
|
|
updt_fd(fd); /* need an update entry to change the state */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable polling for events on fd <fd> for direction <dir>. Note: this
|
|
|
|
* function was optimized to be used with a constant for <dir>.
|
|
|
|
*/
|
|
|
|
static inline void fd_ev_wai(const int fd, int dir)
|
|
|
|
{
|
|
|
|
unsigned int i = ((unsigned int)fdtab[fd].spec_e) & (FD_EV_STATUS << dir);
|
|
|
|
if (i == (FD_EV_POLLED << dir))
|
|
|
|
return; /* already in desired state */
|
|
|
|
fdtab[fd].spec_e ^= i ^ (FD_EV_POLLED << dir);
|
|
|
|
updt_fd(fd); /* need an update entry to change the state */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable processing of events on fd <fd> for direction <dir>. Note: this
|
|
|
|
* function was optimized to be used with a constant for <dir>.
|
|
|
|
*/
|
|
|
|
static inline void fd_ev_set(int fd, int dir)
|
|
|
|
{
|
|
|
|
unsigned int i = ((unsigned int)fdtab[fd].spec_e) & (FD_EV_STATUS << dir);
|
|
|
|
|
|
|
|
/* note that we don't care about disabling the polled state when
|
|
|
|
* enabling the active state, since it brings no benefit but costs
|
|
|
|
* some syscalls.
|
|
|
|
*/
|
|
|
|
if (i & (FD_EV_ACTIVE << dir))
|
|
|
|
return; /* already in desired state */
|
|
|
|
fdtab[fd].spec_e |= (FD_EV_ACTIVE << dir);
|
|
|
|
updt_fd(fd); /* need an update entry to change the state */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable processing of events on fd <fd> for both directions. */
|
|
|
|
static inline void fd_ev_rem(const int fd)
|
|
|
|
{
|
|
|
|
unsigned int i = ((unsigned int)fdtab[fd].spec_e) & FD_EV_CURR_MASK;
|
|
|
|
if (i == 0)
|
|
|
|
return; /* already disabled */
|
|
|
|
fdtab[fd].spec_e ^= i;
|
|
|
|
updt_fd(fd); /* need an update entry to change the state */
|
|
|
|
}
|
|
|
|
|
2012-08-09 10:11:58 +00:00
|
|
|
/* event manipulation primitives for use by I/O callbacks */
|
|
|
|
static inline void fd_want_recv(int fd)
|
|
|
|
{
|
2012-11-11 15:05:19 +00:00
|
|
|
return fd_ev_set(fd, DIR_RD);
|
2012-08-09 10:11:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void fd_stop_recv(int fd)
|
|
|
|
{
|
2012-11-11 15:05:19 +00:00
|
|
|
return fd_ev_clr(fd, DIR_RD);
|
2012-08-09 10:11:58 +00:00
|
|
|
}
|
|
|
|
|
2012-08-09 10:14:03 +00:00
|
|
|
static inline void fd_poll_recv(int fd)
|
|
|
|
{
|
2012-11-11 15:05:19 +00:00
|
|
|
return fd_ev_wai(fd, DIR_RD);
|
2012-08-09 10:14:03 +00:00
|
|
|
}
|
|
|
|
|
2012-08-09 10:11:58 +00:00
|
|
|
static inline void fd_want_send(int fd)
|
|
|
|
{
|
2012-11-11 15:05:19 +00:00
|
|
|
return fd_ev_set(fd, DIR_WR);
|
2012-08-09 10:11:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void fd_stop_send(int fd)
|
|
|
|
{
|
2012-11-11 15:05:19 +00:00
|
|
|
return fd_ev_clr(fd, DIR_WR);
|
2012-08-09 10:11:58 +00:00
|
|
|
}
|
|
|
|
|
2012-08-09 10:14:03 +00:00
|
|
|
static inline void fd_poll_send(int fd)
|
|
|
|
{
|
2012-11-11 15:05:19 +00:00
|
|
|
return fd_ev_wai(fd, DIR_WR);
|
2012-08-09 10:14:03 +00:00
|
|
|
}
|
|
|
|
|
2012-08-09 10:11:58 +00:00
|
|
|
static inline void fd_stop_both(int fd)
|
|
|
|
{
|
2012-11-11 15:05:19 +00:00
|
|
|
return fd_ev_rem(fd);
|
2012-08-09 10:11:58 +00:00
|
|
|
}
|
2006-10-15 12:52:29 +00:00
|
|
|
|
2008-01-18 16:20:13 +00:00
|
|
|
/* Prepares <fd> for being polled */
|
2006-06-26 00:48:02 +00:00
|
|
|
static inline void fd_insert(int fd)
|
|
|
|
{
|
2008-01-18 16:20:13 +00:00
|
|
|
fdtab[fd].ev = 0;
|
2012-11-06 01:34:46 +00:00
|
|
|
fdtab[fd].new = 1;
|
2006-06-26 00:48:02 +00:00
|
|
|
if (fd + 1 > maxfd)
|
|
|
|
maxfd = fd + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _PROTO_FD_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* c-indent-level: 8
|
|
|
|
* c-basic-offset: 8
|
|
|
|
* End:
|
|
|
|
*/
|