]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/message.cpp
Review and optimize
[user/henk/code/inspircd.git] / src / message.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 #include "inspircd_config.h"
20 #include "inspircd.h"
21 #include "inspircd_io.h"
22 #include <unistd.h>
23 #include <fcntl.h>
24 #include <sys/errno.h>
25 #include <sys/utsname.h>
26 #include <time.h>
27 #include <string>
28 #ifdef GCC3
29 #include <ext/hash_map>
30 #else
31 #include <hash_map>
32 #endif
33 #include <map>
34 #include <sstream>
35 #include <vector>
36 #include <deque>
37 #include "users.h"
38 #include "ctables.h"
39 #include "globals.h"
40 #include "modules.h"
41 #include "dynamic.h"
42 #include "wildcard.h"
43 #include "commands.h"
44 #include "message.h"
45 #include "inspstring.h"
46 #include "dns.h"
47 #include "helperfuncs.h"
48
49 extern int MODCOUNT;
50 extern std::vector<Module*> modules;
51 extern std::vector<ircd_module*> factory;
52 extern time_t TIME;
53 extern ServerConfig* Config;
54
55 /* return 0 or 1 depending if users u and u2 share one or more common channels
56  * (used by QUIT, NICK etc which arent channel specific notices) */
57
58 int common_channels(userrec *u, userrec *u2)
59 {
60         if ((!u) || (!u2))
61         {
62                 log(DEFAULT,"*** BUG *** common_channels was given an invalid parameter");
63                 return 0;
64         }
65         for (unsigned int i = 0; i < u->chans.size(); i++)
66         {
67                 for (unsigned int z = 0; z != u2->chans.size(); z++)
68                 {
69                         if ((u->chans[i].channel != NULL) && (u2->chans[z].channel != NULL))
70                         {
71                                 if ((!strcasecmp(u->chans[i].channel->name,u2->chans[z].channel->name)) && (u->chans[i].channel) && (u2->chans[z].channel) && (u->registered == 7) && (u2->registered == 7))
72                                 {
73                                         if ((c_count(u)) && (c_count(u2)))
74                                         {
75                                                 return 1;
76                                         }
77                                 }
78                         }
79                 }
80         }
81         return 0;
82 }
83
84 void tidystring(char* str)
85 {
86         // strips out double spaces before a : parameter
87
88         char temp[MAXBUF];
89         bool go_again = true;
90
91         if (!str)
92                 return;
93
94         // pointer voodoo++ --w00t
95         while ((*str) && (*str == ' '))
96                 str++;
97
98         while (go_again)
99         {
100                 bool noparse = false;
101                 int t = 0, a = 0;
102                 go_again = false;
103                 const int lenofstr = strlen(str);
104
105                 /*
106                  * by caching strlen() of str, we theoretically avoid 3 expensive calls each time this loop
107                  * rolls around.. should speed things up a nanosecond or two. ;)
108                  */
109
110                 while (a < lenofstr)
111                 {
112                         if ((a < lenofstr - 1) && (noparse == false))
113                         {
114                                 if ((str[a] == ' ') && (str[a+1] == ' '))
115                                 {
116                                         log(DEBUG,"Tidied extra space out of string: %s",str);
117                                         go_again = true;
118                                         a++;
119                                 }
120                         }
121
122                         if (a < lenofstr - 1)
123                         {
124                                 if ((str[a] == ' ') && (str[a+1] == ':'))
125                                 {
126                                         noparse = true;
127                                 }
128                         }
129
130                         temp[t++] = str[a++];
131                 }
132
133                 temp[t] = '\0';
134                 strlcpy(str,temp,MAXBUF);
135         }
136 }
137
138 /* chop a string down to 512 characters and preserve linefeed (irc max
139  * line length) */
140
141 void chop(char* str)
142 {
143         if (!str)
144         {
145                 log(DEBUG,"ERROR! Null string passed to chop()!");
146                 return;
147         }
148         string temp = str;
149         FOREACH_MOD OnServerRaw(temp,false,NULL);
150         const char* str2 = temp.c_str();
151         snprintf(str,MAXBUF,"%s",str2);
152         if (strlen(str) >= 511)
153         {
154                 str[510] = '\r';
155                 str[511] = '\n';
156                 str[512] = '\0';
157                 log(DEBUG,"Excess line chopped.");
158         }
159 }
160
161
162 void Blocking(int s)
163 {
164         int flags;
165         log(DEBUG,"Blocking: %d",s);
166         flags = fcntl(s, F_GETFL, 0);
167         fcntl(s, F_SETFL, flags ^ O_NONBLOCK);
168 }
169
170 void NonBlocking(int s)
171 {
172         int flags;
173         log(DEBUG,"NonBlocking: %d",s);
174         flags = fcntl(s, F_GETFL, 0);
175         fcntl(s, F_SETFL, flags | O_NONBLOCK);
176 }
177
178 int CleanAndResolve (char *resolvedHost, const char *unresolvedHost)
179 {
180         DNS d(Config->DNSServer);
181         int fd = d.ReverseLookup(unresolvedHost);
182         if (fd < 0)
183                 return 0;
184         time_t T = time(NULL)+1;
185         while ((!d.HasResult()) && (time(NULL)<T));
186         std::string ipaddr = d.GetResult();
187         strlcpy(resolvedHost,ipaddr.c_str(),MAXBUF);
188         return (ipaddr != "");
189 }
190
191 int c_count(userrec* u)
192 {
193         int z = 0;
194         for (unsigned int i =0; i < u->chans.size(); i++)
195                 if (u->chans[i].channel != NULL)
196                         z++;
197         return z;
198
199 }
200
201 bool hasumode(userrec* user, char mode)
202 {
203         if (user)
204         {
205                 return (strchr(user->modes,mode)>0);
206         }
207         else return false;
208 }
209
210
211 void ChangeName(userrec* user, const char* gecos)
212 {
213         if (user->fd > -1)
214         {
215                 int MOD_RESULT = 0;
216                 FOREACH_RESULT(OnChangeLocalUserGECOS(user,gecos));
217                 if (MOD_RESULT)
218                         return;
219                 FOREACH_MOD OnChangeName(user,gecos);
220         }
221         strlcpy(user->fullname,gecos,MAXBUF);
222 }
223
224 void ChangeDisplayedHost(userrec* user, const char* host)
225 {
226         if (user->fd > -1)
227         {
228                 int MOD_RESULT = 0;
229                 FOREACH_RESULT(OnChangeLocalUserHost(user,host));
230                 if (MOD_RESULT)
231                         return;
232                 FOREACH_MOD OnChangeHost(user,host);
233         }
234         strlcpy(user->dhost,host,160);
235 }
236
237 /* verify that a user's ident and nickname is valid */
238
239 int isident(const char* n)
240 {
241         if (!n)
242
243         {
244                 return 0;
245         }
246         if (!strcmp(n,""))
247         {
248                 return 0;
249         }
250         for (unsigned int i = 0; i < strlen(n); i++)
251         {
252                 if ((n[i] < 33) || (n[i] > 125))
253                 {
254                         return 0;
255                 }
256                 /* can't occur ANYWHERE in an Ident! */
257                 if (strchr("<>,/?:;@'~#=+()*&%$£ \"!",n[i]))
258                 {
259                         return 0;
260                 }
261         }
262         return 1;
263 }
264
265
266 int isnick(const char* n)
267 {
268         if (!n)
269         {
270                 return 0;
271         }
272         if (!strcmp(n,""))
273         {
274                 return 0;
275         }
276         if (strlen(n) > NICKMAX)
277         {
278                 return 0;
279         }
280         for (unsigned int i = 0; i != strlen(n); i++)
281         {
282                 if ((n[i] < 33) || (n[i] > 125))
283                 {
284                         return 0;
285                 }
286                 /* can't occur ANYWHERE in a nickname! */
287                 if (strchr("<>,./?:;@'~#=+()*&%$£ \"!",n[i]))
288                 {
289                         return 0;
290                 }
291                 /* can't occur as the first char of a nickname... */
292                 if ((strchr("0123456789",n[i])) && (!i))
293                 {
294                         return 0;
295                 }
296         }
297         return 1;
298 }
299
300 /* returns the status character for a given user on a channel, e.g. @ for op,
301  * % for halfop etc. If the user has several modes set, the highest mode
302  * the user has must be returned. */
303
304 char* cmode(userrec *user, chanrec *chan)
305 {
306         if ((!user) || (!chan))
307         {
308                 log(DEFAULT,"*** BUG *** cmode was given an invalid parameter");
309                 return "";
310         }
311
312         for (unsigned int i = 0; i < user->chans.size(); i++)
313         {
314                 if (user->chans[i].channel)
315                 {
316                         if ((!strcasecmp(user->chans[i].channel->name,chan->name)) && (chan != NULL))
317                         {
318                                 if ((user->chans[i].uc_modes & UCMODE_OP) > 0)
319                                 {
320                                         return "@";
321                                 }
322                                 if ((user->chans[i].uc_modes & UCMODE_HOP) > 0)
323                                 {
324                                         return "%";
325                                 }
326                                 if ((user->chans[i].uc_modes & UCMODE_VOICE) > 0)
327                                 {
328                                         return "+";
329                                 }
330                                 return "";
331                         }
332                 }
333         }
334         return "";
335 }
336
337 /* returns the status value for a given user on a channel, e.g. STATUS_OP for
338  * op, STATUS_VOICE for voice etc. If the user has several modes set, the
339  * highest mode the user has must be returned. */
340
341 int cstatus(userrec *user, chanrec *chan)
342 {
343         if ((!chan) || (!user))
344         {
345                 log(DEFAULT,"*** BUG *** cstatus was given an invalid parameter");
346                 return 0;
347         }
348
349         if (is_uline(user->server))
350                 return STATUS_OP;
351
352         for (unsigned int i = 0; i < user->chans.size(); i++)
353         {
354                 if (user->chans[i].channel)
355                 {
356                         if ((!strcasecmp(user->chans[i].channel->name,chan->name)) && (chan != NULL))
357                         {
358                                 if ((user->chans[i].uc_modes & UCMODE_OP) > 0)
359                                 {
360                                         return STATUS_OP;
361                                 }
362                                 if ((user->chans[i].uc_modes & UCMODE_HOP) > 0)
363                                 {
364                                         return STATUS_HOP;
365                                 }
366                                 if ((user->chans[i].uc_modes & UCMODE_VOICE) > 0)
367                                 {
368                                         return STATUS_VOICE;
369                                 }
370                                 return STATUS_NORMAL;
371                         }
372                 }
373         }
374         return STATUS_NORMAL;
375 }
376
377 /* returns 1 if user u has channel c in their record, 0 if not */
378
379 int has_channel(userrec *u, chanrec *c)
380 {
381         if ((!u) || (!c))
382         {
383                 log(DEFAULT,"*** BUG *** has_channel was given an invalid parameter");
384                 return 0;
385         }
386         for (unsigned int i =0; i < u->chans.size(); i++)
387         {
388                 if (u->chans[i].channel)
389                 {
390                         if (!strcasecmp(u->chans[i].channel->name,c->name))
391                         {
392                                 return 1;
393                         }
394                 }
395         }
396         return 0;
397 }
398
399
400 void TidyBan(char *ban)
401 {
402         if (!ban) {
403                 log(DEFAULT,"*** BUG *** TidyBan was given an invalid parameter");
404                 return;
405         }
406         
407         char temp[MAXBUF],NICK[MAXBUF],IDENT[MAXBUF],HOST[MAXBUF];
408
409         strlcpy(temp,ban,MAXBUF);
410
411         char* pos_of_pling = strchr(temp,'!');
412         char* pos_of_at = strchr(temp,'@');
413
414         pos_of_pling[0] = '\0';
415         pos_of_at[0] = '\0';
416         pos_of_pling++;
417         pos_of_at++;
418
419         strlcpy(NICK,temp,NICKMAX);
420         strlcpy(IDENT,pos_of_pling,IDENTMAX+1);
421         strlcpy(HOST,pos_of_at,160);
422
423         snprintf(ban,MAXBUF,"%s!%s@%s",NICK,IDENT,HOST);
424 }
425
426 char lst[MAXBUF];
427
428 std::string chlist(userrec *user,userrec* source)
429 {
430         std::string cmp = "";
431         std::string lst = "";
432         log(DEBUG,"chlist: %s",user->nick);
433         if (!user)
434         {
435                 return lst;
436         }
437         for (unsigned int i = 0; i < user->chans.size(); i++)
438         {
439                 if (user->chans[i].channel != NULL)
440                 {
441                         if (user->chans[i].channel->name)
442                         {
443                                 cmp = std::string(user->chans[i].channel->name) + " ";
444                                 if (!strstr(lst.c_str(),cmp.c_str()))
445                                 {
446                                         // if the channel is NOT private/secret, OR the source user is on the channel
447                                         if (((!(user->chans[i].channel->binarymodes & CM_PRIVATE)) && (!(user->chans[i].channel->binarymodes & CM_SECRET))) || (has_channel(source,user->chans[i].channel)))
448                                         {
449                                                 lst = lst + std::string(cmode(user,user->chans[i].channel)) + std::string(user->chans[i].channel->name) + " ";
450                                         }
451                                 }
452                         }
453                 }
454         }
455         return lst;
456 }
457