blob: 56a8c5c28bfab771422d12669e9839a1bc1c6448 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau8d5d77e2009-10-18 07:25:52 +02002 * include/types/fd.h
3 * File descriptors states.
4 *
5 * Copyright (C) 2000-2009 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
22#ifndef _TYPES_FD_H
23#define _TYPES_FD_H
24
Willy Tarreau2dd0d472006-06-29 17:53:05 +020025#include <common/config.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020026#include <types/port_range.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027
Willy Tarreau7be79a42012-11-11 15:02:54 +010028/* Direction for each FD event update */
Willy Tarreau54469402006-07-29 16:59:06 +020029enum {
30 DIR_RD=0,
31 DIR_WR=1,
Willy Tarreau54469402006-07-29 16:59:06 +020032};
Willy Tarreaubaaee002006-06-26 02:48:02 +020033
Willy Tarreau7be79a42012-11-11 15:02:54 +010034/* Polling status flags returned in fdtab[].ev :
Willy Tarreaud6f087e2008-01-18 17:20:13 +010035 * FD_POLL_IN remains set as long as some data is pending for read.
36 * FD_POLL_OUT remains set as long as the fd accepts to write data.
37 * FD_POLL_ERR and FD_POLL_ERR remain set forever (until processed).
38 */
Willy Tarreau3d32d3a2007-04-15 11:31:05 +020039#define FD_POLL_IN 0x01
40#define FD_POLL_PRI 0x02
41#define FD_POLL_OUT 0x04
42#define FD_POLL_ERR 0x08
43#define FD_POLL_HUP 0x10
Willy Tarreau3d32d3a2007-04-15 11:31:05 +020044
Willy Tarreaud6f087e2008-01-18 17:20:13 +010045#define FD_POLL_DATA (FD_POLL_IN | FD_POLL_OUT)
46#define FD_POLL_STICKY (FD_POLL_ERR | FD_POLL_HUP)
Willy Tarreau3d32d3a2007-04-15 11:31:05 +020047
Willy Tarreau7be79a42012-11-11 15:02:54 +010048/* Event state for an FD in each direction, as found in the 4 lower bits of
49 * fdtab[].spec_e, and in the 4 next bits.
50 */
51#define FD_EV_ACTIVE 1U
52#define FD_EV_POLLED 4U
53#define FD_EV_STATUS (FD_EV_ACTIVE | FD_EV_POLLED)
54#define FD_EV_STATUS_R (FD_EV_STATUS)
55#define FD_EV_STATUS_W (FD_EV_STATUS << 1)
56
57#define FD_EV_POLLED_R (FD_EV_POLLED)
58#define FD_EV_POLLED_W (FD_EV_POLLED << 1)
59#define FD_EV_POLLED_RW (FD_EV_POLLED_R | FD_EV_POLLED_W)
60
61#define FD_EV_ACTIVE_R (FD_EV_ACTIVE)
62#define FD_EV_ACTIVE_W (FD_EV_ACTIVE << 1)
63#define FD_EV_ACTIVE_RW (FD_EV_ACTIVE_R | FD_EV_ACTIVE_W)
64
65#define FD_EV_CURR_MASK 0x0FU
66#define FD_EV_PREV_MASK 0xF0U
67
Willy Tarreaubaaee002006-06-26 02:48:02 +020068/* info about one given fd */
69struct fdtab {
Willy Tarreau4e6049e2012-07-06 10:53:51 +020070 int (*iocb)(int fd); /* I/O handler, returns FD_WAIT_* */
Willy Tarreau80184712012-07-06 14:54:49 +020071 void *owner; /* the connection or listener associated with this fd, NULL if closed */
Willy Tarreau45dab732012-09-02 22:19:18 +020072 unsigned int spec_p; /* speculative polling: position in spec list+1. 0=not in list. */
73 unsigned char spec_e; /* speculative polling: read and write events status. 4 bits */
Willy Tarreau3d32d3a2007-04-15 11:31:05 +020074 unsigned char ev; /* event seen in return of poll() : FD_POLL_* */
Willy Tarreau037d2c12012-11-06 02:34:46 +010075 unsigned char new:1; /* 1 if this fd has just been created */
76 unsigned char updated:1; /* 1 if this fd is already in the update list */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +020077};
78
79/* less often used information */
80struct fdinfo {
Willy Tarreauc6f4ce82009-06-10 11:09:37 +020081 struct port_range *port_range; /* optional port range to bind to */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +020082 int local_port; /* optional local port */
Willy Tarreaubaaee002006-06-26 02:48:02 +020083};
84
Willy Tarreau4f60f162007-04-08 16:39:58 +020085/*
86 * Poller descriptors.
87 * - <name> is initialized by the poller's register() function, and should not
88 * be allocated, just linked to.
89 * - <pref> is initialized by the poller's register() function. It is set to 0
90 * by default, meaning the poller is disabled. init() should set it to 0 in
91 * case of failure. term() must set it to 0. A generic unoptimized select()
92 * poller should set it to 100.
93 * - <private> is initialized by the poller's init() function, and cleaned by
94 * the term() function.
Willy Tarreau70c6fd82012-11-11 21:02:34 +010095 * - clo() should be used to do indicate the poller that fd will be closed.
Willy Tarreaud825eef2007-05-12 22:35:00 +020096 * - poll() calls the poller, expiring at <exp>
Willy Tarreau4f60f162007-04-08 16:39:58 +020097 */
98struct poller {
99 void *private; /* any private data for the poller */
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100100 void REGPRM1 (*clo)(const int fd); /* mark <fd> as closed */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200101 void REGPRM2 (*poll)(struct poller *p, int exp); /* the poller itself */
Willy Tarreau5b702422007-04-16 01:33:26 +0200102 int REGPRM1 (*init)(struct poller *p); /* poller initialization */
103 void REGPRM1 (*term)(struct poller *p); /* termination of this poller */
104 int REGPRM1 (*test)(struct poller *p); /* pre-init check of the poller */
105 int REGPRM1 (*fork)(struct poller *p); /* post-fork re-opening */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200106 const char *name; /* poller name */
107 int pref; /* try pollers with higher preference first */
108};
109
110extern struct poller cur_poller; /* the current poller */
111extern int nbpollers;
112#define MAX_POLLERS 10
113extern struct poller pollers[MAX_POLLERS]; /* all registered pollers */
114
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115extern struct fdtab *fdtab; /* array of all the file descriptors */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200116extern struct fdinfo *fdinfo; /* less-often used infos for file descriptors */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117extern int maxfd; /* # of the highest fd + 1 */
118extern int totalconn; /* total # of terminated sessions */
119extern int actconn; /* # of active sessions */
120
121#endif /* _TYPES_FD_H */
122
123/*
124 * Local variables:
125 * c-indent-level: 8
126 * c-basic-offset: 8
127 * End:
128 */