]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conn.h
7dcc8d9d590619c143276d93b003c0c565d3a4e4
[ngircd-alex.git] / src / ngircd / conn.h
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2011 Alexander Barton (alex@barton.de) and Contributors.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  */
11
12 #ifndef __conn_h__
13 #define __conn_h__
14
15 /**
16  * @file
17  * Connection management (header)
18  */
19
20 #include <time.h>                       /* for time_t, see below */
21
22 /*
23  * connection state flags. this is a bitmask -- all values must
24  * be unique and a power of two.
25  *
26  * If you introduce new ones in between, make sure to adjust all
27  * remaining ones.
28  */
29 #define CONN_ISCLOSING          1       /* Conn_Close() already called */
30 #define CONN_ISCONNECTING       2       /* connect() in progress */
31 #define CONN_RFC1459            4       /* RFC 1459 compatibility mode */
32 #ifdef ZLIB
33 #define CONN_ZIP                8       /* zlib compressed link */
34 #endif
35
36 #include "conf-ssl.h"
37
38 #ifdef SSL_SUPPORT
39 #define CONN_SSL_CONNECT        16      /* wait for ssl connect to finish */
40 #define CONN_SSL                32      /* this connection is SSL encrypted */
41 #define CONN_SSL_WANT_WRITE     64      /* SSL/TLS library needs to write protocol data */
42 #define CONN_SSL_WANT_READ      128     /* SSL/TLS library needs to read protocol data */
43 #define CONN_SSL_FLAGS_ALL      (CONN_SSL_CONNECT|CONN_SSL|CONN_SSL_WANT_WRITE|CONN_SSL_WANT_READ)
44 #endif
45 typedef long CONN_ID;
46
47 #include "client.h"
48 #include "proc.h"
49
50 #ifdef CONN_MODULE
51
52 #include "defines.h"
53 #include "array.h"
54 #include "tool.h"
55 #include "ng_ipaddr.h"
56
57 #ifdef ZLIB
58 #include <zlib.h>
59 typedef struct _ZipData
60 {
61         z_stream in;                    /* "Handle" for input stream */
62         z_stream out;                   /* "Handle" for output stream */
63         array rbuf;                     /* Read buffer (compressed) */
64         array wbuf;                     /* Write buffer (uncompressed) */
65         long bytes_in, bytes_out;       /* Counter for statistics (uncompressed!) */
66 } ZIPDATA;
67 #endif /* ZLIB */
68
69 typedef struct _Connection
70 {
71         int sock;                       /* Socket handle */
72         ng_ipaddr_t addr;               /* Client address */
73         PROC_STAT proc_stat;            /* Status of resolver process */
74         char host[HOST_LEN];            /* Hostname */
75         char *pwd;                      /* password received of the client */
76         array rbuf;                     /* Read buffer */
77         array wbuf;                     /* Write buffer */
78         time_t signon;                  /* Signon ("connect") time */
79         time_t lastdata;                /* Last activity */
80         time_t lastping;                /* Last PING */
81         time_t lastprivmsg;             /* Last PRIVMSG */
82         time_t delaytime;               /* Ignore link ("penalty") */
83         long bytes_in, bytes_out;       /* Received and sent bytes */
84         long msg_in, msg_out;           /* Received and sent IRC messages */
85         int flag;                       /* Flag (see "irc-write" module) */
86         UINT16 options;                 /* Link options / connection state */
87         UINT16 bps;                     /* bytes processed within last second */
88         CLIENT *client;                 /* pointer to client structure */
89 #ifdef ZLIB
90         ZIPDATA zip;                    /* Compression information */
91 #endif  /* ZLIB */
92 #ifdef SSL_SUPPORT
93         struct ConnSSL_State ssl_state; /* SSL/GNUTLS state information */
94 #endif
95 #ifndef STRICT_RFC
96         long auth_ping;                 /** PING response expected on login */
97 #endif
98 } CONNECTION;
99
100 GLOBAL CONNECTION *My_Connections;
101 GLOBAL CONN_ID Pool_Size;
102 GLOBAL long WCounter;
103
104 #endif /* CONN_MODULE */
105
106
107 GLOBAL void Conn_Init PARAMS((void ));
108 GLOBAL void Conn_Exit PARAMS(( void ));
109
110 GLOBAL void Conn_CloseAllSockets PARAMS((int ExceptOf));
111
112 GLOBAL unsigned int Conn_InitListeners PARAMS(( void ));
113 GLOBAL void Conn_ExitListeners PARAMS(( void ));
114
115 GLOBAL void Conn_Handler PARAMS(( void ));
116
117 GLOBAL bool Conn_WriteStr PARAMS(( CONN_ID Idx, const char *Format, ... ));
118
119 GLOBAL char* Conn_Password PARAMS(( CONN_ID Idx ));
120 GLOBAL void Conn_SetPassword PARAMS(( CONN_ID Idx, const char *Pwd ));
121
122 GLOBAL void Conn_Close PARAMS(( CONN_ID Idx, const char *LogMsg, const char *FwdMsg, bool InformClient ));
123
124 GLOBAL void Conn_SyncServerStruct PARAMS(( void ));
125
126 GLOBAL CONN_ID Conn_GetFromProc PARAMS((int fd));
127 GLOBAL CLIENT* Conn_GetClient PARAMS((CONN_ID i));
128 GLOBAL PROC_STAT* Conn_GetProcStat PARAMS((CONN_ID i));
129 #ifdef SSL_SUPPORT
130 GLOBAL bool Conn_GetCipherInfo PARAMS((CONN_ID Idx, char *buf, size_t len));
131 GLOBAL bool Conn_UsesSSL PARAMS((CONN_ID Idx));
132 #else
133 static inline bool
134 Conn_UsesSSL(UNUSED CONN_ID Idx)
135 { return false; }
136 #endif
137
138 GLOBAL const char *Conn_GetIPAInfo PARAMS((CONN_ID Idx));
139
140 GLOBAL long Conn_Count PARAMS((void));
141 GLOBAL long Conn_CountMax PARAMS((void));
142 GLOBAL long Conn_CountAccepted PARAMS((void));
143
144 #ifndef STRICT_RFC
145 GLOBAL long Conn_GetAuthPing PARAMS((CONN_ID Idx));
146 GLOBAL void Conn_SetAuthPing PARAMS((CONN_ID Idx, long ID));
147 #endif
148
149 #ifdef DEBUG
150 GLOBAL void Conn_DebugDump PARAMS((void));
151 #endif
152
153 #endif
154
155 /* -eof- */