23b929a86074e763da608277ac0290a248a468aa
[ircu2.10.12-pk.git] / include / s_conf.h
1 /*
2  * s_conf.h
3  *
4  * $Id$ 
5  */
6 #ifndef INCLUDED_s_conf_h
7 #define INCLUDED_s_conf_h
8 #ifndef INCLUDED_time_h
9 #include <time.h>              /* struct tm */
10 #define INCLUDED_time_h
11 #endif
12 #ifndef INCLUDED_sys_types_h
13 #include <sys/types.h>
14 #define INCLUDED_sys_types_h
15 #endif
16 #ifndef INCLUDED_netinet_in_h
17 #include <netinet/in.h>        /* struct in_addr */
18 #define INCLUDED_netinet_in_h
19 #endif
20
21 struct Client;
22 struct SLink;
23 struct TRecord;
24
25
26 /*
27  * General defines
28  */
29
30 /*-----------------------------------------------------------------------------
31  * Macros
32  */
33
34 #define CONF_ILLEGAL            0x80000000
35 #define CONF_MATCH              0x40000000
36 #define CONF_CLIENT             0x0002
37 #define CONF_SERVER             0x0004
38 #define CONF_LOCOP              0x0010
39 #define CONF_OPERATOR           0x0020
40 #define CONF_LEAF               0x1000
41 #define CONF_HUB                0x4000
42 #define CONF_UWORLD             0x8000
43
44 #define CONF_OPS                (CONF_OPERATOR | CONF_LOCOP)
45 #define CONF_CLIENT_MASK        (CONF_CLIENT | CONF_OPS | CONF_SERVER)
46
47 #define IsIllegal(x)    ((x)->status & CONF_ILLEGAL)
48
49 /*
50  * Structures
51  */
52
53 struct ConfItem {
54   struct ConfItem*         next;
55   unsigned int             status;      /* If CONF_ILLEGAL, delete when no clients */
56   unsigned int             clients;     /* Number of *LOCAL* clients using this */
57   struct ConnectionClass*  conn_class;  /* Class of connection */
58   struct in_addr           ipnum;       /* ip number of host field */
59   char*                    host;
60   char*                    passwd;
61   char*                    name;
62   time_t                   hold;        /* Hold until this time (calendar time) */
63   int                      dns_pending; /* a dns request is pending */
64   unsigned short           port;
65   char                     bits;        /* Number of bits for ipkills */
66 };
67
68 struct ServerConf {
69   struct ServerConf* next;
70   char*              hostname;
71   char*              passwd;
72   char*              alias;
73   struct in_addr     address;
74   int                port;
75   int                dns_pending;
76   int                connected;
77   time_t             hold;
78   struct ConnectionClass*  conn_class;
79 };
80
81 struct DenyConf {
82   struct DenyConf*    next;
83   char*               hostmask;
84   char*               message;
85   char*               usermask;
86   unsigned int        address;
87   unsigned int        flags;
88   char                bits;        /* Number of bits for ipkills */
89 };
90
91 #define DENY_FLAGS_FILE     0x0001 /* Comment is a filename */
92 #define DENY_FLAGS_IP       0x0002 /* K-line by IP address */
93 #define DENY_FLAGS_REALNAME 0x0004 /* K-line by real name */
94
95 /*
96  * A line: A:<line 1>:<line 2>:<line 3>
97  */
98 struct LocalConf {
99   char*          name;
100   char*          description;
101   struct in_addr vhost_address;
102   unsigned int   numeric;
103   char*          location1;
104   char*          location2;
105   char*          contact;
106 };
107
108 struct MotdItem {
109   char line[82];
110   struct MotdItem *next;
111 };
112
113 struct MotdConf {
114   struct MotdConf* next;
115   char* hostmask;
116   char* path;
117 };
118
119 enum {
120   CRULE_AUTO = 1,
121   CRULE_ALL  = 2,
122   CRULE_MASK = 3
123 };
124
125 struct CRuleNode;
126
127 struct CRuleConf {
128   struct CRuleConf* next;
129   char*             hostmask;
130   char*             rule;
131   int               type;
132   struct CRuleNode* node;
133 };
134
135 struct TRecord {
136   struct TRecord *next;
137   char *hostmask;
138   struct MotdItem *tmotd;
139   struct tm tmotd_tm;
140 };
141
142 enum AuthorizationCheckResult {
143   ACR_OK,
144   ACR_NO_AUTHORIZATION,
145   ACR_TOO_MANY_IN_CLASS,
146   ACR_TOO_MANY_FROM_IP,
147   ACR_ALREADY_AUTHORIZED,
148   ACR_BAD_SOCKET
149 };
150
151 /*
152  * GLOBALS
153  */
154 extern struct ConfItem* GlobalConfList;
155 extern int              GlobalConfCount;
156 extern struct tm        motd_tm;
157 extern struct MotdItem* motd;
158 extern struct MotdItem* rmotd;
159 extern struct TRecord*  tdata;
160
161 /*
162  * Proto types
163  */
164
165 extern int init_conf(void);
166
167 extern const struct LocalConf* conf_get_local(void);
168 extern const struct MotdConf*  conf_get_motd_list(void);
169 extern const struct CRuleConf* conf_get_crule_list(void);
170 extern const struct DenyConf*  conf_get_deny_list(void);
171
172 extern const char* conf_eval_crule(const char* name, int mask);
173
174 extern struct ConfItem* attach_confs_byhost(struct Client* cptr, const char* host, int statmask);
175 extern struct ConfItem* find_conf_byhost(struct SLink* lp, const char* host, int statmask);
176 extern struct ConfItem* find_conf_byname(struct SLink* lp, const char *name, int statmask);
177 extern struct ConfItem* conf_find_server(const char* name);
178
179 extern void det_confs_butmask(struct Client *cptr, int mask);
180 extern enum AuthorizationCheckResult attach_conf(struct Client *cptr, struct ConfItem *aconf);
181 extern struct ConfItem* find_conf_exact(const char* name, const char* user,
182                                         const char* host, int statmask);
183 extern enum AuthorizationCheckResult conf_check_client(struct Client *cptr);
184 extern int  conf_check_server(struct Client *cptr);
185 extern struct ConfItem* find_conf_name(const char* name, int statmask);
186 extern int rehash(struct Client *cptr, int sig);
187 extern void read_tlines(void);
188 extern int find_kill(struct Client *cptr);
189 extern int find_restrict(struct Client *cptr);
190 extern struct MotdItem* read_motd(const char* motdfile);
191
192 #endif /* INCLUDED_s_conf_h */