blob: 8edf26bf1bc9909f9cbf15d8346f81ff5739158d [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau8d5d77e2009-10-18 07:25:52 +02002 * include/types/fd.h
Willy Tarreauf817e9f2014-01-10 16:58:45 +01003 * File descriptors states - check src/fd.c for explanations.
Willy Tarreau8d5d77e2009-10-18 07:25:52 +02004 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +01005 * Copyright (C) 2000-2014 Willy Tarreau - w@1wt.eu
Willy Tarreau8d5d77e2009-10-18 07:25:52 +02006 *
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>
Christopher Fauletd4604ad2017-05-29 10:40:41 +020026#include <common/hathreads.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020027#include <types/port_range.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028
Willy Tarreau7be79a42012-11-11 15:02:54 +010029/* Direction for each FD event update */
Willy Tarreau54469402006-07-29 16:59:06 +020030enum {
31 DIR_RD=0,
32 DIR_WR=1,
Willy Tarreau54469402006-07-29 16:59:06 +020033};
Willy Tarreaubaaee002006-06-26 02:48:02 +020034
Willy Tarreau7be79a42012-11-11 15:02:54 +010035/* Polling status flags returned in fdtab[].ev :
Willy Tarreaud6f087e2008-01-18 17:20:13 +010036 * FD_POLL_IN remains set as long as some data is pending for read.
37 * FD_POLL_OUT remains set as long as the fd accepts to write data.
38 * FD_POLL_ERR and FD_POLL_ERR remain set forever (until processed).
39 */
Willy Tarreau3d32d3a2007-04-15 11:31:05 +020040#define FD_POLL_IN 0x01
41#define FD_POLL_PRI 0x02
42#define FD_POLL_OUT 0x04
43#define FD_POLL_ERR 0x08
44#define FD_POLL_HUP 0x10
Willy Tarreau3d32d3a2007-04-15 11:31:05 +020045
Willy Tarreaud6f087e2008-01-18 17:20:13 +010046#define FD_POLL_DATA (FD_POLL_IN | FD_POLL_OUT)
47#define FD_POLL_STICKY (FD_POLL_ERR | FD_POLL_HUP)
Willy Tarreau3d32d3a2007-04-15 11:31:05 +020048
Willy Tarreau7be79a42012-11-11 15:02:54 +010049#define FD_EV_ACTIVE 1U
Willy Tarreauf817e9f2014-01-10 16:58:45 +010050#define FD_EV_READY 2U
Willy Tarreau7be79a42012-11-11 15:02:54 +010051#define FD_EV_POLLED 4U
Willy Tarreauf817e9f2014-01-10 16:58:45 +010052
53#define FD_EV_STATUS (FD_EV_ACTIVE | FD_EV_POLLED | FD_EV_READY)
Willy Tarreau7be79a42012-11-11 15:02:54 +010054#define FD_EV_STATUS_R (FD_EV_STATUS)
Willy Tarreauf817e9f2014-01-10 16:58:45 +010055#define FD_EV_STATUS_W (FD_EV_STATUS << 4)
Willy Tarreau7be79a42012-11-11 15:02:54 +010056
57#define FD_EV_POLLED_R (FD_EV_POLLED)
Willy Tarreauf817e9f2014-01-10 16:58:45 +010058#define FD_EV_POLLED_W (FD_EV_POLLED << 4)
Willy Tarreau7be79a42012-11-11 15:02:54 +010059#define FD_EV_POLLED_RW (FD_EV_POLLED_R | FD_EV_POLLED_W)
60
61#define FD_EV_ACTIVE_R (FD_EV_ACTIVE)
Willy Tarreauf817e9f2014-01-10 16:58:45 +010062#define FD_EV_ACTIVE_W (FD_EV_ACTIVE << 4)
Willy Tarreau7be79a42012-11-11 15:02:54 +010063#define FD_EV_ACTIVE_RW (FD_EV_ACTIVE_R | FD_EV_ACTIVE_W)
64
Willy Tarreauf817e9f2014-01-10 16:58:45 +010065#define FD_EV_READY_R (FD_EV_READY)
66#define FD_EV_READY_W (FD_EV_READY << 4)
67#define FD_EV_READY_RW (FD_EV_READY_R | FD_EV_READY_W)
68
69enum fd_states {
70 FD_ST_DISABLED = 0,
71 FD_ST_MUSTPOLL,
72 FD_ST_STOPPED,
73 FD_ST_ACTIVE,
74 FD_ST_ABORT,
75 FD_ST_POLLED,
76 FD_ST_PAUSED,
77 FD_ST_READY
78};
Willy Tarreau7be79a42012-11-11 15:02:54 +010079
Willy Tarreau733b1322016-11-17 14:22:52 +010080
81/* This is the value used to mark a file descriptor as dead. This value is
82 * negative, this is important so that tests on fd < 0 properly match. It
83 * also has the nice property of being highly negative but not overflowing
84 * nor changing sign on 32-bit machines when multipled by sizeof(fdtab).
85 * This ensures that any unexpected dereference of such an uninitialized
86 * file descriptor will lead to so large a dereference that it will crash
87 * the process at the exact location of the bug with a clean stack trace
88 * instead of causing silent manipulation of other FDs. And it's readable
89 * when found in a dump.
90 */
91#define DEAD_FD_MAGIC 0xFDDEADFD
92
Olivier Houchard4815c8c2018-01-24 18:17:56 +010093struct fdlist_entry {
94 volatile int next;
95 volatile int prev;
96} __attribute__ ((aligned(8)));
97
98struct fdlist {
99 volatile int first;
100 volatile int last;
101} __attribute__ ((aligned(8)));
102
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103/* info about one given fd */
104struct fdtab {
Willy Tarreau58090522017-11-26 10:41:47 +0100105 __decl_hathreads(HA_SPINLOCK_T lock);
106 unsigned long thread_mask; /* mask of thread IDs authorized to process the task */
Willy Tarreauc9c83782018-01-17 18:44:46 +0100107 unsigned long polled_mask; /* mask of thread IDs currently polling this fd */
Willy Tarreauebc78d72018-01-20 23:53:50 +0100108 unsigned long update_mask; /* mask of thread IDs having an update for fd */
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100109 struct fdlist_entry fdcache_entry; /* Entry in the fdcache */
Willy Tarreau7a798e52016-04-14 11:13:20 +0200110 void (*iocb)(int fd); /* I/O handler */
Willy Tarreau80184712012-07-06 14:54:49 +0200111 void *owner; /* the connection or listener associated with this fd, NULL if closed */
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100112 unsigned char state; /* FD state for read and write directions (2*3 bits) */
Willy Tarreau3d32d3a2007-04-15 11:31:05 +0200113 unsigned char ev; /* event seen in return of poll() : FD_POLL_* */
Willy Tarreauad38ace2013-12-15 14:19:38 +0100114 unsigned char linger_risk:1; /* 1 if we must kill lingering before closing */
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200115 unsigned char cloned:1; /* 1 if a cloned socket, requires EPOLL_CTL_DEL on close */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200116};
117
118/* less often used information */
119struct fdinfo {
Willy Tarreauc6f4ce82009-06-10 11:09:37 +0200120 struct port_range *port_range; /* optional port range to bind to */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200121 int local_port; /* optional local port */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122};
123
Willy Tarreau4f60f162007-04-08 16:39:58 +0200124/*
125 * Poller descriptors.
126 * - <name> is initialized by the poller's register() function, and should not
127 * be allocated, just linked to.
128 * - <pref> is initialized by the poller's register() function. It is set to 0
129 * by default, meaning the poller is disabled. init() should set it to 0 in
130 * case of failure. term() must set it to 0. A generic unoptimized select()
131 * poller should set it to 100.
132 * - <private> is initialized by the poller's init() function, and cleaned by
133 * the term() function.
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100134 * - clo() should be used to do indicate the poller that fd will be closed.
Willy Tarreaud825eef2007-05-12 22:35:00 +0200135 * - poll() calls the poller, expiring at <exp>
Willy Tarreau5a767692017-03-13 11:38:28 +0100136 * - flags indicate what the poller supports (HAP_POLL_F_*)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200137 */
Willy Tarreau5a767692017-03-13 11:38:28 +0100138
139#define HAP_POLL_F_RDHUP 0x00000001 /* the poller notifies of HUP with reads */
140
Willy Tarreau4f60f162007-04-08 16:39:58 +0200141struct poller {
142 void *private; /* any private data for the poller */
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100143 void REGPRM1 (*clo)(const int fd); /* mark <fd> as closed */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200144 void REGPRM2 (*poll)(struct poller *p, int exp); /* the poller itself */
Willy Tarreau5b702422007-04-16 01:33:26 +0200145 int REGPRM1 (*init)(struct poller *p); /* poller initialization */
146 void REGPRM1 (*term)(struct poller *p); /* termination of this poller */
147 int REGPRM1 (*test)(struct poller *p); /* pre-init check of the poller */
148 int REGPRM1 (*fork)(struct poller *p); /* post-fork re-opening */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200149 const char *name; /* poller name */
Willy Tarreau5a767692017-03-13 11:38:28 +0100150 unsigned int flags; /* HAP_POLL_F_* */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200151 int pref; /* try pollers with higher preference first */
152};
153
154extern struct poller cur_poller; /* the current poller */
155extern int nbpollers;
156#define MAX_POLLERS 10
157extern struct poller pollers[MAX_POLLERS]; /* all registered pollers */
158
Willy Tarreaubaaee002006-06-26 02:48:02 +0200159extern struct fdtab *fdtab; /* array of all the file descriptors */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200160extern struct fdinfo *fdinfo; /* less-often used infos for file descriptors */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200161extern int totalconn; /* total # of terminated sessions */
162extern int actconn; /* # of active sessions */
163
164#endif /* _TYPES_FD_H */
165
166/*
167 * Local variables:
168 * c-indent-level: 8
169 * c-basic-offset: 8
170 * End:
171 */