d66775bd6eceb9829b837816aaa16d3cfc4dee80
[ircu2.10.12-pk.git] / ircd / m_who.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_who.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * See file AUTHORS in IRC package for additional names of
7  * the programmers.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 1, or (at your option)
12  * any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  */
25
26 /*
27  * m_functions execute protocol messages on this server:
28  *
29  *    cptr    is always NON-NULL, pointing to a *LOCAL* client
30  *            structure (with an open socket connected!). This
31  *            identifies the physical socket where the message
32  *            originated (or which caused the m_function to be
33  *            executed--some m_functions may call others...).
34  *
35  *    sptr    is the source of the message, defined by the
36  *            prefix part of the message if present. If not
37  *            or prefix not found, then sptr==cptr.
38  *
39  *            (!IsServer(cptr)) => (cptr == sptr), because
40  *            prefixes are taken *only* from servers...
41  *
42  *            (IsServer(cptr))
43  *                    (sptr == cptr) => the message didn't
44  *                    have the prefix.
45  *
46  *                    (sptr != cptr && IsServer(sptr) means
47  *                    the prefix specified servername. (?)
48  *
49  *                    (sptr != cptr && !IsServer(sptr) means
50  *                    that message originated from a remote
51  *                    user (not local).
52  *
53  *            combining
54  *
55  *            (!IsServer(sptr)) means that, sptr can safely
56  *            taken as defining the target structure of the
57  *            message in this server.
58  *
59  *    *Always* true (if 'parse' and others are working correct):
60  *
61  *    1)      sptr->from == cptr  (note: cptr->from == cptr)
62  *
63  *    2)      MyConnect(sptr) <=> sptr == cptr (e.g. sptr
64  *            *cannot* be a local connection, unless it's
65  *            actually cptr!). [MyConnect(x) should probably
66  *            be defined as (x == x->from) --msa ]
67  *
68  *    parc    number of variable parameter strings (if zero,
69  *            parv is allowed to be NULL)
70  *
71  *    parv    a NULL terminated list of parameter pointers,
72  *
73  *                    parv[0], sender (prefix string), if not present
74  *                            this points to an empty string.
75  *                    parv[1]...parv[parc-1]
76  *                            pointers to additional parameters
77  *                    parv[parc] == NULL, *always*
78  *
79  *            note:   it is guaranteed that parv[0]..parv[parc-1] are all
80  *                    non-NULL pointers.
81  */
82 #include "config.h"
83
84 #include "channel.h"
85 #include "client.h"
86 #include "hash.h"
87 #include "ircd.h"
88 #include "ircd_chattr.h"
89 #include "ircd_features.h"
90 #include "ircd_log.h"
91 #include "ircd_reply.h"
92 #include "ircd_string.h"
93 #include "match.h"
94 #include "numeric.h"
95 #include "numnicks.h"
96 #include "send.h"
97 #include "support.h"
98 #include "whocmds.h"
99
100 #include <assert.h>
101 #include <string.h>
102
103
104 /*
105  * A little spin-marking utility to tell us wich clients we have already
106  * processed and wich not
107  */
108 static int who_marker = 0;
109 static void move_marker(void)
110 {
111   if (!++who_marker)
112   {
113     struct Client *cptr = GlobalClientList;
114     while (cptr)
115     {
116       cli_marker(cptr) = 0;
117       cptr = cli_next(cptr);
118     }
119     who_marker++;
120   }
121 }
122
123 #define CheckMark(x, y) ((x == y) ? 0 : (x = y))
124 #define Process(cptr) CheckMark(cli_marker(cptr), who_marker)
125
126 /*
127  * m_who - generic message handler
128  *
129  *  parv[0] = sender prefix
130  *  parv[1] = nickname mask list
131  *  parv[2] = additional selection flag, only 'o' for now.
132  *            and %flags to specify what fields to output
133  *            plus a ,querytype if the t flag is specified
134  *            so the final thing will be like o%tnchu,777
135  *  parv[3] = _optional_ parameter that overrides parv[1]
136  *            This can be used as "/quote who foo % :The Black Hacker
137  *            to find me, parv[3] _can_ contain spaces !.
138  */
139 int m_who(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
140 {
141   char *mask;           /* The mask we are looking for              */
142   char ch;                      /* Scratch char register                    */
143   struct Channel *chptr;                /* Channel to show                          */
144   struct Client *acptr;         /* Client to show                           */
145
146   int bitsel;                   /* Mask of selectors to apply               */
147   int matchsel;                 /* Wich fields the match should apply on    */
148   int counter;                  /* Query size counter,
149                                    initially used to count fields           */
150   int commas;                   /* Does our mask contain any comma ?
151                                    If so is a list..                        */
152   int fields;                   /* Mask of fields to show                   */
153   int isthere = 0;              /* When this set the user is member of chptr */
154   char *nick;                   /* Single element extracted from
155                                    the mask list                            */
156   char *p;                      /* Scratch char pointer                     */
157   char *qrt;                    /* Pointer to the query type                */
158   static char mymask[512];      /* To save the mask before corrupting it    */
159
160   /* Let's find where is our mask, and if actually contains something */
161   mask = ((parc > 1) ? parv[1] : 0);
162   if (parc > 3 && parv[3])
163     mask = parv[3];
164   if (mask && ((mask[0] == '\0') ||
165       (mask[1] == '\0' && ((mask[0] == '0') || (mask[0] == '*')))))
166     mask = 0;
167
168   /* Evaluate the flags now, we consider the second parameter 
169      as "matchFlags%fieldsToInclude,querytype"           */
170   bitsel = fields = counter = matchsel = 0;
171   qrt = 0;
172   if (parc > 2 && parv[2] && *parv[2])
173   {
174     p = parv[2];
175     while (((ch = *(p++))) && (ch != '%') && (ch != ','))
176       switch (ch)
177       {
178         case 'o':
179         case 'O':
180           bitsel |= WHOSELECT_OPER;
181           continue;
182         case 'x':
183         case 'X':
184           bitsel |= WHOSELECT_EXTRA;
185           if (HasPriv(sptr, PRIV_WHOX))
186             log_write(LS_WHO, L_INFO, LOG_NOSNOTICE, "%#C WHO %s %s", sptr,
187                       (BadPtr(parv[3]) ? parv[1] : parv[3]), parv[2]);
188           continue;
189         case 'n':
190         case 'N':
191           matchsel |= WHO_FIELD_NIC;
192           continue;
193         case 'u':
194         case 'U':
195           matchsel |= WHO_FIELD_UID;
196           continue;
197         case 'h':
198         case 'H':
199           matchsel |= WHO_FIELD_HOS;
200           continue;
201         case 'i':
202         case 'I':
203           matchsel |= WHO_FIELD_NIP;
204           continue;
205         case 's':
206         case 'S':
207           matchsel |= WHO_FIELD_SER;
208           continue;
209         case 'r':
210         case 'R':
211           matchsel |= WHO_FIELD_REN;
212           continue;
213       }
214     if (ch == '%')
215       while ((ch = *p++) && (ch != ','))
216       {
217         counter++;
218         switch (ch)
219         {
220           case 'c':
221           case 'C':
222             fields |= WHO_FIELD_CHA;
223             break;
224           case 'd':
225           case 'D':
226             fields |= WHO_FIELD_DIS;
227             break;
228           case 'f':
229           case 'F':
230             fields |= WHO_FIELD_FLA;
231             break;
232           case 'h':
233           case 'H':
234             fields |= WHO_FIELD_HOS;
235             break;
236           case 'i':
237           case 'I':
238             fields |= WHO_FIELD_NIP;
239             break;
240           case 'l':
241           case 'L':
242             fields |= WHO_FIELD_IDL;
243           case 'n':
244           case 'N':
245             fields |= WHO_FIELD_NIC;
246             break;
247           case 'r':
248           case 'R':
249             fields |= WHO_FIELD_REN;
250             break;
251           case 's':
252           case 'S':
253             fields |= WHO_FIELD_SER;
254             break;
255           case 't':
256           case 'T':
257             fields |= WHO_FIELD_QTY;
258             break;
259           case 'u':
260           case 'U':
261             fields |= WHO_FIELD_UID;
262             break;
263           default:
264             break;
265         }
266       };
267     if (ch)
268       qrt = p;
269   }
270
271   if (!matchsel)
272     matchsel = WHO_FIELD_DEF;
273   if (!fields)
274     counter = 7;
275
276   if (feature_bool(FEAT_HIS_WHO_SERVERNAME) && !IsAnOper(sptr))
277     matchsel &= ~WHO_FIELD_SER;
278
279   if (qrt && (fields & WHO_FIELD_QTY))
280   {
281     p = qrt;
282     if (!((*p > '9') || (*p < '0')))
283       p++;
284     if (!((*p > '9') || (*p < '0')))
285       p++;
286     if (!((*p > '9') || (*p < '0')))
287       p++;
288     *p = '\0';
289   }
290   else
291     qrt = 0;
292
293   /* I'd love to add also a check on the number of matches fields per time */
294   counter = (2048 / (counter + 4));
295   if (mask && (strlen(mask) > 510))
296     mask[510] = '\0';
297   move_marker();
298   commas = (mask && strchr(mask, ','));
299
300   /* First treat mask as a list of plain nicks/channels */
301   if (mask)
302   {
303     strcpy(mymask, mask);
304     for (p = 0, nick = ircd_strtok(&p, mymask, ","); nick;
305         nick = ircd_strtok(&p, 0, ","))
306     {
307       if (IsChannelName(nick) && (chptr = FindChannel(nick)))
308       {
309         isthere = (find_channel_member(sptr, chptr) != 0);
310         if (isthere || SEE_CHANNEL(sptr, chptr, bitsel))
311         {
312           struct Membership* member;
313           for (member = chptr->members; member; member = member->next_member)
314           {
315             acptr = member->user;
316             if ((bitsel & WHOSELECT_OPER) &&
317                 !(IsAnOper(acptr) && (HasPriv(acptr, PRIV_DISPLAY) ||
318                                       HasPriv(sptr, PRIV_SEE_OPERS))))
319               continue;
320             if ((acptr != sptr) && (member->status & CHFL_ZOMBIE))
321               continue;
322             if (!(isthere || (SEE_USER(sptr, acptr, bitsel))))
323               continue;
324             if (!Process(acptr))        /* This can't be moved before other checks */
325               continue;
326             if (!(isthere || (SHOW_MORE(sptr, counter))))
327               break;
328             do_who(sptr, acptr, chptr, fields, qrt);
329           }
330         }
331       }
332       else
333       {
334         if ((acptr = FindUser(nick)) &&
335             ((!(bitsel & WHOSELECT_OPER)) ||
336              (IsAnOper(acptr) && (HasPriv(acptr, PRIV_DISPLAY) ||
337                                   HasPriv(sptr, PRIV_SEE_OPERS)))) &&
338             Process(acptr) && SHOW_MORE(sptr, counter))
339         {
340           do_who(sptr, acptr, 0, fields, qrt);
341         }
342       }
343     }
344   }
345
346   /* If we didn't have any comma in the mask treat it as a
347      real mask and try to match all relevant fields */
348   if (!(commas || (counter < 1)))
349   {
350     int minlen, cset;
351     static struct in_mask imask;
352     if (mask)
353     {
354       matchcomp(mymask, &minlen, &cset, mask);
355       if (matchcompIP(&imask, mask))
356         matchsel &= ~WHO_FIELD_NIP;
357       if ((minlen > NICKLEN) || !(cset & NTL_IRCNK))
358         matchsel &= ~WHO_FIELD_NIC;
359       if ((matchsel & WHO_FIELD_SER) &&
360           ((minlen > HOSTLEN) || (!(cset & NTL_IRCHN))
361           || (!markMatchexServer(mymask, minlen))))
362         matchsel &= ~WHO_FIELD_SER;
363       if ((minlen > USERLEN) || !(cset & NTL_IRCUI))
364         matchsel &= ~WHO_FIELD_UID;
365       if ((minlen > HOSTLEN) || !(cset & NTL_IRCHN))
366         matchsel &= ~WHO_FIELD_HOS;
367     }
368
369     /* First of all loop through the clients in common channels */
370     if ((!(counter < 1)) && matchsel) {
371       struct Membership* member;
372       struct Membership* chan;
373       for (chan = cli_user(sptr)->channel; chan; chan = chan->next_channel) {
374         chptr = chan->channel;
375         for (member = chptr->members; member; member = member->next_member)
376         {
377           acptr = member->user;
378           if (!(IsUser(acptr) && Process(acptr)))
379             continue;           /* Now Process() is at the beginning, if we fail
380                                    we'll never have to show this acptr in this query */
381           if ((bitsel & WHOSELECT_OPER) &&
382               !(IsAnOper(acptr) && (HasPriv(acptr, PRIV_DISPLAY) ||
383                                     HasPriv(sptr, PRIV_SEE_OPERS))))
384             continue;
385           if ((mask) &&
386               ((!(matchsel & WHO_FIELD_NIC))
387               || matchexec(cli_name(acptr), mymask, minlen))
388               && ((!(matchsel & WHO_FIELD_UID))
389               || matchexec(cli_user(acptr)->username, mymask, minlen))
390               && ((!(matchsel & WHO_FIELD_SER))
391               || (!(HasFlag(cli_user(acptr)->server, FLAG_MAP))))
392               && ((!(matchsel & WHO_FIELD_HOS))
393               || matchexec(cli_user(acptr)->host, mymask, minlen))
394               && ((!(matchsel & WHO_FIELD_HOS))
395               || !HasHiddenHost(acptr)
396               || !IsAnOper(sptr)
397               || matchexec(cli_user(acptr)->realhost, mymask, minlen))
398               && ((!(matchsel & WHO_FIELD_REN))
399               || matchexec(cli_info(acptr), mymask, minlen))
400               && ((!(matchsel & WHO_FIELD_NIP))
401               || (HasHiddenHost(acptr) && !IsAnOper(sptr))
402               || ((((cli_ip(acptr).s_addr & imask.mask.s_addr) !=
403               imask.bits.s_addr)) || (imask.fall
404               && matchexec(ircd_ntoa((const char*) &(cli_ip(acptr))), mymask, minlen)))))
405             continue;
406           if (!SHOW_MORE(sptr, counter))
407             break;
408           do_who(sptr, acptr, chptr, fields, qrt);
409         }
410       }
411     }
412     /* Loop through all clients :-\, if we still have something to match to 
413        and we can show more clients */
414     if ((!(counter < 1)) && matchsel)
415       for (acptr = cli_prev(&me); acptr; acptr = cli_prev(acptr))
416       {
417         if (!(IsUser(acptr) && Process(acptr)))
418           continue;
419         if ((bitsel & WHOSELECT_OPER) &&
420             !(IsAnOper(acptr) && (HasPriv(acptr, PRIV_DISPLAY) ||
421                                   HasPriv(sptr, PRIV_SEE_OPERS))))
422           continue;
423         if (!(SEE_USER(sptr, acptr, bitsel)))
424           continue;
425         if ((mask) &&
426             ((!(matchsel & WHO_FIELD_NIC))
427             || matchexec(cli_name(acptr), mymask, minlen))
428             && ((!(matchsel & WHO_FIELD_UID))
429             || matchexec(cli_user(acptr)->username, mymask, minlen))
430             && ((!(matchsel & WHO_FIELD_SER))
431                 || (!(HasFlag(cli_user(acptr)->server, FLAG_MAP))))
432             && ((!(matchsel & WHO_FIELD_HOS))
433             || matchexec(cli_user(acptr)->host, mymask, minlen))
434             && ((!(matchsel & WHO_FIELD_HOS))
435             || !HasHiddenHost(acptr)
436             || !IsAnOper(sptr)
437             || matchexec(cli_user(acptr)->realhost, mymask, minlen))
438             && ((!(matchsel & WHO_FIELD_REN))
439             || matchexec(cli_info(acptr), mymask, minlen))
440             && ((!(matchsel & WHO_FIELD_NIP))
441             || (HasHiddenHost(acptr) && !IsAnOper(sptr))
442             || ((((cli_ip(acptr).s_addr & imask.mask.s_addr) != imask.bits.s_addr))
443             || (imask.fall
444             && matchexec(ircd_ntoa((const char*) &(cli_ip(acptr))), mymask, minlen)))))
445           continue;
446         if (!SHOW_MORE(sptr, counter))
447           break;
448         do_who(sptr, acptr, 0, fields, qrt);
449       }
450   }
451
452   /* Make a clean mask suitable to be sent in the "end of" */
453   if (mask && (p = strchr(mask, ' ')))
454     *p = '\0';
455   send_reply(sptr, RPL_ENDOFWHO, BadPtr(mask) ? "*" : mask);
456
457   /* Notify the user if we decided that his query was too long */
458   if (counter < 0)
459     send_reply(sptr, ERR_QUERYTOOLONG, "WHO");
460
461   return 0;
462 }