tried to reorder the program structure and build process
[NeonServV5.git] / src / tools.c
1 #include "tools.h"
2 #include "UserNode.h"
3 #include "ChanNode.h"
4 #include "lang.h"
5 #include "ClientSocket.h"
6
7 static const struct default_language_entry msgtab[] = {
8     {"TIME_MASK_2_ITEMS", "%s and %s"}, /* {ARGS: "2 days", "1 hour"} */
9     {"TIME_MASK_3_ITEMS", "%s, %s and %s"}, /* {ARGS: "2 days", "1 hour", "20 minutes"} */
10     {"TIME_YEAR", "year"},
11     {"TIME_YEARS", "years"},
12     {"TIME_MONTH", "month"},
13     {"TIME_MONTHS", "months"},
14     {"TIME_WEEK", "week"},
15     {"TIME_WEEKS", "weeks"},
16     {"TIME_DAY", "day"},
17     {"TIME_DAYS", "days"},
18     {"TIME_HOUR", "hour"},
19     {"TIME_HOURS", "hours"},
20     {"TIME_MINUTE", "minute"},
21     {"TIME_MINUTES", "minutes"},
22     {"TIME_SECOND", "second"},
23     {"TIME_SECONDS", "seconds"},
24     {NULL, NULL}
25 };
26
27 /* copied from IRCU 2.10.12 match.c */
28 /*
29  * Compare if a given string (name) matches the given
30  * mask (which can contain wild cards: '*' - match any
31  * number of chars, '?' - match any single character.
32  *
33  * return  0, if match
34  *         1, if no match
35  *
36  *  Originally by Douglas A Lewis (dalewis@acsu.buffalo.edu)
37  *  Rewritten by Timothy Vogelsang (netski), net@astrolink.org
38  */
39 int match(const char *mask, const char *name)
40 {
41   const char *m = mask, *n = name;
42   const char *m_tmp = mask, *n_tmp = name;
43   int star_p;
44
45   for (;;) switch (*m) {
46   case '\0':
47     if (!*n)
48       return 0;
49   backtrack:
50     if (m_tmp == mask)
51       return 1;
52     m = m_tmp;
53     n = ++n_tmp;
54     if (*n == '\0')
55       return 1;
56     break;
57   case '\\':
58     m++;
59     /* allow escaping to force capitalization */
60     if (*m++ != *n++)
61       goto backtrack;
62     break;
63   case '*': case '?':
64     for (star_p = 0; ; m++) {
65       if (*m == '*')
66         star_p = 1;
67       else if (*m == '?') {
68         if (!*n++)
69           goto backtrack;
70       } else break;
71     }
72     if (star_p) {
73       if (!*m)
74         return 0;
75       else if (*m == '\\') {
76         m_tmp = ++m;
77         if (!*m)
78           return 1;
79         for (n_tmp = n; *n && *n != *m; n++) ;
80       } else {
81         m_tmp = m;
82         for (n_tmp = n; *n && tolower(*n) != tolower(*m); n++) ;
83       }
84     }
85     /* and fall through */
86   default:
87     if (!*n)
88       return *m != '\0';
89     if (tolower(*m) != tolower(*n))
90       goto backtrack;
91     m++;
92     n++;
93     break;
94   }
95 }
96
97
98 //TABLES
99 struct Table *table_init(int width, int length, int flags) {
100     int row;
101     struct Table *table = malloc(sizeof(*table));
102     table->contents = malloc(length * sizeof(*table->contents));
103     for(row = 0; row < length; row++) {
104         table->contents[row] = calloc(width, sizeof(*table->contents[row]));
105     }
106     table->length = length;
107     table->width = width;
108     table->flags = flags;
109     table->col_flags = calloc(length, sizeof(int));
110     table->entrys = 0;
111     table->maxwidth = calloc(length, sizeof(int));
112     table->table_lines = NULL;
113     return table;
114 }
115
116 int table_add(struct Table *table, char **entry) {
117     int col;
118     if(table->entrys == table->length) return 0;
119     for(col = 0; col < table->width; col++) {
120         table->contents[table->entrys][col] = ((table->flags & TABLE_FLAG_USE_POINTER) || !entry[col] ? entry[col] : strdup(entry[col]));
121         if(table->contents[table->entrys][col])
122             table->col_flags[col] |= TABLE_FLAG_COL_CONTENTS;
123         if(entry[col] && strlen(entry[col]) > table->maxwidth[col])
124             table->maxwidth[col] = strlen(entry[col]);
125     }
126     table->entrys++;
127     return 1;
128 }
129
130 int table_change(struct Table *table, int row, char **entry) {
131     int col;
132     if(row >= table->length) return 0;
133     for(col = 0; col < table->width; col++) {
134         if(table->contents[row][col] && !(table->flags & TABLE_FLAG_USE_POINTER))
135             free(table->contents[row][col]);
136         table->contents[row][col] = ((table->flags & TABLE_FLAG_USE_POINTER) || !entry[col] ? entry[col] : strdup(entry[col]));
137         if(table->contents[row][col])
138             table->col_flags[col] |= TABLE_FLAG_COL_CONTENTS;
139         if(entry[col] && strlen(entry[col]) > table->maxwidth[col])
140             table->maxwidth[col] = strlen(entry[col]);
141     }
142     return 1;
143 }
144
145 int table_change_field(struct Table *table, int row, int col, char *entry) {
146     if(row >= table->length) return 0;
147     if(col >= table->width) return 0;
148     if(table->contents[row][col] && !(table->flags & TABLE_FLAG_USE_POINTER))
149         free(table->contents[row][col]);
150     table->contents[row][col] = (((table->flags & TABLE_FLAG_USE_POINTER) || !entry) ? entry : strdup(entry));
151     if(table->contents[row][col])
152         table->col_flags[col] |= TABLE_FLAG_COL_CONTENTS;
153     if(entry && strlen(entry) > table->maxwidth[col])
154         table->maxwidth[col] = strlen(entry);
155     return 1;
156 }
157
158 int table_set_bold(struct Table *table, int collum, int bold) {
159     if(bold)
160         table->col_flags[collum] |= TABLE_FLAG_COL_BOLD;
161     else
162         table->col_flags[collum] &= ~TABLE_FLAG_COL_BOLD;
163     return 1;
164 }
165
166 char **table_end(struct Table *table) {
167     int row, col, tablewidth = 0, pos,i;
168     if(!table->entrys) return NULL;
169     for(col = 0; col < table->width; col++) {
170         tablewidth += table->maxwidth[col]+1;
171         if(table->col_flags[col] & TABLE_FLAG_COL_BOLD)
172             tablewidth += 2;
173     }
174     table->table_lines = malloc(table->entrys * sizeof(table->table_lines));
175     for(row = 0; row < table->entrys; row++) {
176         table->table_lines[row] = malloc(tablewidth * sizeof(*table->table_lines[row]));
177         pos = 0;
178         for(col = 0; col < table->width; col++) {
179             if(!(table->col_flags[col] & TABLE_FLAG_COL_CONTENTS)) continue;
180             if(table->col_flags[col] & TABLE_FLAG_COL_BOLD)
181                 table->table_lines[row][pos++] = '\002';
182             for(i = 0; i < strlen(table->contents[row][col]); i++) {
183                 table->table_lines[row][pos++] = table->contents[row][col][i];
184             }
185             if(col < table->width-1) {
186                 for(;i < table->maxwidth[col]; i++) {
187                     table->table_lines[row][pos++] = ' ';
188                 }
189                 table->table_lines[row][pos++] = ' ';
190             } else
191                 table->table_lines[row][pos++] = '\0';
192             
193             if(table->col_flags[col] & TABLE_FLAG_COL_BOLD)
194                 table->table_lines[row][pos++] = '\002';
195         }
196     }
197     return table->table_lines;
198 }
199
200 void table_free(struct Table *table) {
201     int row, col;
202     for(row = 0; row < table->length; row++) {
203         if(!(table->flags & TABLE_FLAG_USE_POINTER) && table->entrys > row) {
204             for(col = 0; col < table->width; col++) {
205                 if(table->contents[row][col])
206                     free(table->contents[row][col]);
207             }
208         }
209         free(table->contents[row]);
210     }
211     free(table->contents);
212     free(table->col_flags);
213     free(table->maxwidth);
214     if(table->table_lines) {
215         for(row = 0; row < table->entrys; row++) {
216             free(table->table_lines[row]);
217         }
218         free(table->table_lines);
219     }
220     free(table);
221 }
222
223 char* timeToStr(struct UserNode *user, int seconds, int items, char *buf) {
224     char item[items][MAXLEN];
225     int tmp, citem = 0;
226     if(citem != items && seconds >= 31536000) { //60*60*24*365 = 31536000
227         
228         tmp = seconds / 31536000;
229         sprintf(item[citem++], "%d %s", tmp, get_language_string(user, tmp == 1 ? "TIME_YEAR" : "TIME_YEARS"));
230         seconds -= tmp * 31536000;
231     }
232     if(citem != items && seconds >= 86400) { //60*60*24 = 86400
233         tmp = seconds / 86400;
234         sprintf(item[citem++], "%d %s", tmp, get_language_string(user, tmp == 1 ? "TIME_DAY" : "TIME_DAYS"));
235         seconds -= tmp * 86400;
236     }
237     if(citem != items && seconds >= 3600) { //60*60 = 3600
238         tmp = seconds / 3600;
239         sprintf(item[citem++], "%d %s", tmp, get_language_string(user, tmp == 1 ? "TIME_HOUR" : "TIME_HOURS"));
240         seconds -= tmp * 3600;
241     }
242     if(citem != items && seconds >= 60) {
243         tmp = seconds / 60;
244         sprintf(item[citem++], "%d %s", tmp, get_language_string(user, tmp == 1 ? "TIME_MINUTE" : "TIME_MINUTES"));
245         seconds -= tmp * 60;
246     }
247     if(citem != items && seconds >= 1) {
248         sprintf(item[citem++], "%d %s", seconds, get_language_string(user, seconds == 1 ? "TIME_SECOND" : "TIME_SECONDS"));
249     }
250     if(citem == 2) {
251         build_language_string(user, buf, "TIME_MASK_2_ITEMS", item[0], item[1]);
252     } else if(citem == 3) {
253         build_language_string(user, buf, "TIME_MASK_3_ITEMS", item[0], item[1], item[2]);
254     } else {
255         int i, ii, p = 0;
256         for(i = 0; i < citem; i++) {
257             for(ii = 0; ii < strlen(item[i]); ii++) {
258                 buf[p++] = item[i][ii];
259             }
260             buf[p++] = ' ';
261         }
262         buf[(p ? p-1 : 0)] = '\0';
263     }
264     return buf;
265 }
266
267 int strToTime(struct UserNode *user, char *str) {
268     /*
269     * y = year = 365 days
270     * M = month = 30 days
271     * w = week = 7 days
272     * d = day
273     * h = hour
274     * m = minute
275     * (s) = second
276     */
277     int total_time = 0, cvalue;
278     char *p, tmpchar;
279     int unit_multiplikator;
280     while(*str) {
281         p = str;
282         while(*p && !isdigit(*p)) //skip leading chars
283             p++;
284         str = p;
285         while(*p && isdigit(*p)) //get the value
286             p++;
287         tmpchar = *p;
288         *p = '\0';
289         cvalue = isdigit(*str) ? atoi(str) : 0;
290         *p = tmpchar;
291         while(*p == ' ') //skip spaces
292             p++;
293         str = p;
294         while(*p && !isdigit(*p)) //get the unit
295             p++;
296         tmpchar = *p;
297         *p = '\0';
298         if(p - str > 1) { //unit has more than one char
299             if(!stricmp(str, "year") || !stricmp(str, "year") || !stricmp(str, get_language_string(user, "TIME_YEAR")) || !stricmp(str, get_language_string(user, "TIME_YEARS")))
300                 unit_multiplikator = 31536000; //60*60*24*365 = 31536000
301             else if(!stricmp(str, "month") || !stricmp(str, "months") || !stricmp(str, get_language_string(user, "TIME_MONTH")) || !stricmp(str, get_language_string(user, "TIME_MONTHS")))
302                 unit_multiplikator = 2592000; //60*60*24*30 = 2592000
303             else if(!stricmp(str, "week") || !stricmp(str, "weeks") || !stricmp(str, get_language_string(user, "TIME_WEEK")) || !stricmp(str, get_language_string(user, "TIME_WEEKS")))
304                 unit_multiplikator = 604800; //60*60*24*7 = 604800
305             else if(!stricmp(str, "day") || !stricmp(str, "days") || !stricmp(str, get_language_string(user, "TIME_DAY")) || !stricmp(str, get_language_string(user, "TIME_DAYS")))
306                 unit_multiplikator = 86400; //60*60*24 = 86400
307             else if(!stricmp(str, "hour") || !stricmp(str, "hours") || !stricmp(str, get_language_string(user, "TIME_HOUR")) || !stricmp(str, get_language_string(user, "TIME_HOURS")))
308                 unit_multiplikator = 3600; //60*60 = 3600
309             else if(!stricmp(str, "minute") || !stricmp(str, "minutes") || !stricmp(str, "min") || !stricmp(str, "mins") || !stricmp(str, get_language_string(user, "TIME_MINUTE")) || !stricmp(str, get_language_string(user, "TIME_MINUTES")))
310                 unit_multiplikator = 60;
311             else
312                 unit_multiplikator = 1;
313         } else {
314             switch(*str) {
315                 case 'y':
316                     unit_multiplikator = 31536000; //60*60*24*365 = 31536000
317                     break;
318                 case 'M':
319                     unit_multiplikator = 2592000; //60*60*24*30 = 2592000
320                     break;
321                 case 'w':
322                     unit_multiplikator = 604800; //60*60*24*7 = 604800
323                     break;
324                 case 'd':
325                     unit_multiplikator = 86400; //60*60*24 = 86400
326                     break;
327                 case 'h':
328                     unit_multiplikator = 3600; //60*60 = 3600
329                     break;
330                 case 'm':
331                     unit_multiplikator = 60;
332                     break;
333                 default:
334                     unit_multiplikator = 1;
335                     break;
336             }
337         }
338         total_time += (cvalue * unit_multiplikator);
339         *p = tmpchar;
340         str = p;
341     }
342     return total_time;
343 }
344
345 struct ModeBuffer* initModeBuffer(struct ClientSocket *client, struct ChanNode *chan) {
346     struct ModeBuffer *modeBuf = malloc(sizeof(*modeBuf));
347     if(!modeBuf) {
348         perror("malloc() failed");
349         return NULL;
350     }
351     modeBuf->client = client;
352     modeBuf->chan = chan;
353     modeBuf->addCount = 0;
354     modeBuf->delCount = 0;
355     return modeBuf;
356 }
357
358 void modeBufferSet(struct ModeBuffer *modeBuf, int add, char mode, char *param) {
359     if(add) {
360         modeBuf->addModes[modeBuf->addCount] = mode;
361         modeBuf->addModesParams[modeBuf->addCount] = (param ? strdup(param) : NULL);
362         modeBuf->addCount++;
363         modeBuf->addModes[modeBuf->addCount] = '\0';
364     } else {
365         modeBuf->delModes[modeBuf->delCount] = mode;
366         modeBuf->delModesParams[modeBuf->delCount] = (param ? strdup(param) : NULL);
367         modeBuf->delCount++;
368         modeBuf->delModes[modeBuf->delCount] = '\0';
369     }
370     if(modeBuf->addCount + modeBuf->delCount == MAXMODES)
371         flushModeBuffer(modeBuf);
372 }
373
374 void flushModeBuffer(struct ModeBuffer *modeBuf) {
375     char modeStr[MAXMODES+3];
376     int modePos = 0;
377     char paramStr[MAXLEN];
378     int paramPos = 0;
379     int i;
380     if(modeBuf->addCount) {
381         modeStr[modePos++] = '+';
382         for(i = 0; i < modeBuf->addCount; i++) {
383             modeStr[modePos++] = modeBuf->addModes[i];
384             if(modeBuf->addModesParams[i]) {
385                 paramPos += sprintf(paramStr + paramPos, " %s", modeBuf->addModesParams[i]);
386             }
387         }
388         modeBuf->addCount = 0;
389     }
390     if(modeBuf->delCount) {
391         modeStr[modePos++] = '-';
392         for(i = 0; i < modeBuf->delCount; i++) {
393             modeStr[modePos++] = modeBuf->delModes[i];
394             if(modeBuf->delModesParams[i]) {
395                 paramPos += sprintf(paramStr + paramPos, " %s", modeBuf->delModesParams[i]);
396             }
397         }
398         modeBuf->delCount = 0;
399     }
400     modeStr[modePos++] = '\0';
401     putsock(modeBuf->client, "MODE %s %s%s", modeBuf->chan->name, modeStr, paramStr);
402 }
403
404 void freeModeBuffer(struct ModeBuffer *modeBuf) {
405     if(modeBuf->addCount + modeBuf->delCount)
406         flushModeBuffer(modeBuf);
407     free(modeBuf);
408 }
409
410 int is_ircmask(const char *text) {
411     while (*text && (isalnum((char)*text) || strchr("-_[]|\\`^{}?*", *text)))
412         text++;
413     if (*text++ != '!')
414         return 0;
415     while (*text && *text != '@' && !isspace((char)*text))
416         text++;
417     if (*text++ != '@')
418         return 0;
419     while (*text && !isspace((char)*text))
420         text++;
421     return !*text;
422 }
423
424 char* generate_banmask(struct UserNode *user, char *buffer) {
425     char *userhost = user->host;
426     
427     if(isFakeHost(user->host)) {
428         sprintf(buffer, "*!*@%s", userhost);
429         return buffer;
430     }
431     
432     //check if the hostname has more than 4 connections (trusted host)
433     if(countUsersWithHost(userhost) > 4) {
434         sprintf(buffer, "*!%s@%s", user->ident, userhost);
435         return buffer;
436     } else {
437         sprintf(buffer, "*!*@%s", userhost);
438         return buffer;
439     }
440 }
441
442 char* make_banmask(char *input, char* buffer) {
443     char *nick = NULL, *ident = NULL, *host = NULL;
444     char tmp[HOSTLEN];
445     char *p;
446     if((p = strstr(input, "!"))) {
447         nick = input;
448         *p = '\0';
449         ident = p+1;
450         if((p = strstr(ident, "@"))) {
451             *p = '\0';
452             host = p+1;
453         }
454     } else if((p = strstr(input, "@"))) {
455         ident = input;
456         *p = '\0';
457         host = p+1;
458     } else if((p = strstr(input, "."))) {
459         host = input;
460     } else if(*input == '*' && input[1] != '\0' && !strstr(input+1, "*")) {
461         //AUTH MASK
462         p = getAuthFakehost(input+1);
463         if(p)
464             host = p;
465         else {
466             sprintf(tmp, "%s.*", input+1);
467             host = tmp;
468         }
469     } else {
470         struct UserNode *user = searchUserByNick(input);
471         if(user)
472             return generate_banmask(user, buffer);
473         else
474             nick = input;
475     }
476     if(nick && *nick == '\0') nick = NULL;
477     if(ident && *ident == '\0') ident = NULL;
478     if(host && *host == '\0') host = NULL;
479     sprintf(buffer, "%s!%s@%s", (nick ? nick : "*"), (ident ? ident : "*"), (host ? host : "*"));
480     return buffer;
481 }
482
483 int isFakeHost(char *host) {
484     char *p1, *p2 = host;
485     
486     //find the last dot to identify if the hostmask is a fake host
487     while((p1 = strstr(p2, "."))) {
488         p2 = p1 + 1;
489     }
490     //TLD database: http://www.iana.org/domains/root/db/
491     //the longest TLD i found was 6 chars long (ignoring the stange exotic ones :D)
492     //but we even ignore '.museum' and '.travel' so we can say that the TLD of our mask needs to be less than 4 chars to be a real domain
493     return (strlen(p2+1) > 4);
494 }
495
496 void init_tools() {
497     register_default_language_table(msgtab);
498 }