Author: Alex Badea <vampire@p16.pub.ro> (by way of Kev <klmitch@mit.edu>)
[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_log.h"
90 #include "ircd_policy.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 #ifdef HEAD_IN_SAND_WHO_SERVERNAME
208           if (IsAnOper(sptr))
209 #endif
210             matchsel |= WHO_FIELD_SER;
211           continue;
212         case 'r':
213         case 'R':
214           matchsel |= WHO_FIELD_REN;
215           continue;
216       }
217     if (ch == '%')
218       while ((ch = *p++) && (ch != ','))
219       {
220         counter++;
221         switch (ch)
222         {
223           case 'c':
224           case 'C':
225             fields |= WHO_FIELD_CHA;
226             break;
227           case 'd':
228           case 'D':
229             fields |= WHO_FIELD_DIS;
230             break;
231           case 'f':
232           case 'F':
233             fields |= WHO_FIELD_FLA;
234             break;
235           case 'h':
236           case 'H':
237             fields |= WHO_FIELD_HOS;
238             break;
239           case 'i':
240           case 'I':
241             fields |= WHO_FIELD_NIP;
242             break;
243           case 'l':
244           case 'L':
245             fields |= WHO_FIELD_IDL;
246           case 'n':
247           case 'N':
248             fields |= WHO_FIELD_NIC;
249             break;
250           case 'r':
251           case 'R':
252             fields |= WHO_FIELD_REN;
253             break;
254           case 's':
255           case 'S':
256 #ifdef HEAD_IN_SAND_WHO_SERVERNAME
257             if (IsAnOper(sptr))
258 #endif
259               fields |= WHO_FIELD_SER;
260             break;
261           case 't':
262           case 'T':
263             fields |= WHO_FIELD_QTY;
264             break;
265           case 'u':
266           case 'U':
267             fields |= WHO_FIELD_UID;
268             break;
269           default:
270             break;
271         }
272       };
273     if (ch)
274       qrt = p;
275   }
276
277   if (!matchsel)
278     matchsel = WHO_FIELD_DEF;
279   if (!fields)
280     counter = 7;
281
282   if (qrt && (fields & WHO_FIELD_QTY))
283   {
284     p = qrt;
285     if (!((*p > '9') || (*p < '0')))
286       p++;
287     if (!((*p > '9') || (*p < '0')))
288       p++;
289     if (!((*p > '9') || (*p < '0')))
290       p++;
291     *p = '\0';
292   }
293   else
294     qrt = 0;
295
296   /* I'd love to add also a check on the number of matches fields per time */
297   counter = (2048 / (counter + 4));
298   if (mask && (strlen(mask) > 510))
299     mask[510] = '\0';
300   move_marker();
301   commas = (mask && strchr(mask, ','));
302
303   /* First treat mask as a list of plain nicks/channels */
304   if (mask)
305   {
306     strcpy(mymask, mask);
307     for (p = 0, nick = ircd_strtok(&p, mymask, ","); nick;
308         nick = ircd_strtok(&p, 0, ","))
309     {
310       if (IsChannelName(nick) && (chptr = FindChannel(nick)))
311       {
312         isthere = (find_channel_member(sptr, chptr) != 0);
313         if (isthere || SEE_CHANNEL(sptr, chptr, bitsel))
314         {
315           struct Membership* member;
316           for (member = chptr->members; member; member = member->next_member)
317           {
318             acptr = member->user;
319             if ((bitsel & WHOSELECT_OPER) &&
320                 !(IsAnOper(acptr) && (HasPriv(acptr, PRIV_DISPLAY) ||
321                                       HasPriv(sptr, PRIV_SEE_OPERS))))
322               continue;
323             if ((acptr != sptr) && (member->status & CHFL_ZOMBIE))
324               continue;
325             if (!(isthere || (SEE_USER(sptr, acptr, bitsel))))
326               continue;
327             if (!Process(acptr))        /* This can't be moved before other checks */
328               continue;
329             if (!(isthere || (SHOW_MORE(sptr, counter))))
330               break;
331             do_who(sptr, acptr, chptr, fields, qrt);
332           }
333         }
334       }
335       else
336       {
337         if ((acptr = FindUser(nick)) &&
338             ((!(bitsel & WHOSELECT_OPER)) ||
339              (IsAnOper(acptr) && (HasPriv(acptr, PRIV_DISPLAY) ||
340                                   HasPriv(sptr, PRIV_SEE_OPERS)))) &&
341             Process(acptr) && SHOW_MORE(sptr, counter))
342         {
343           do_who(sptr, acptr, 0, fields, qrt);
344         }
345       }
346     }
347   }
348
349   /* If we didn't have any comma in the mask treat it as a
350      real mask and try to match all relevant fields */
351   if (!(commas || (counter < 1)))
352   {
353     int minlen, cset;
354     static struct in_mask imask;
355     if (mask)
356     {
357       matchcomp(mymask, &minlen, &cset, mask);
358       if (matchcompIP(&imask, mask))
359         matchsel &= ~WHO_FIELD_NIP;
360       if ((minlen > NICKLEN) || !(cset & NTL_IRCNK))
361         matchsel &= ~WHO_FIELD_NIC;
362       if ((matchsel & WHO_FIELD_SER) &&
363           ((minlen > HOSTLEN) || (!(cset & NTL_IRCHN))
364           || (!markMatchexServer(mymask, minlen))))
365         matchsel &= ~WHO_FIELD_SER;
366       if ((minlen > USERLEN) || !(cset & NTL_IRCUI))
367         matchsel &= ~WHO_FIELD_UID;
368       if ((minlen > HOSTLEN) || !(cset & NTL_IRCHN))
369         matchsel &= ~WHO_FIELD_HOS;
370     }
371
372     /* First of all loop through the clients in common channels */
373     if ((!(counter < 1)) && matchsel) {
374       struct Membership* member;
375       struct Membership* chan;
376       for (chan = cli_user(sptr)->channel; chan; chan = chan->next_channel) {
377         chptr = chan->channel;
378         for (member = chptr->members; member; member = member->next_member)
379         {
380           acptr = member->user;
381           if (!(IsUser(acptr) && Process(acptr)))
382             continue;           /* Now Process() is at the beginning, if we fail
383                                    we'll never have to show this acptr in this query */
384           if ((bitsel & WHOSELECT_OPER) &&
385               !(IsAnOper(acptr) && (HasPriv(acptr, PRIV_DISPLAY) ||
386                                     HasPriv(sptr, PRIV_SEE_OPERS))))
387             continue;
388           if ((mask) &&
389               ((!(matchsel & WHO_FIELD_NIC))
390               || matchexec(cli_name(acptr), mymask, minlen))
391               && ((!(matchsel & WHO_FIELD_UID))
392               || matchexec(cli_user(acptr)->username, mymask, minlen))
393               && ((!(matchsel & WHO_FIELD_SER))
394               || (!(cli_flags(cli_user(acptr)->server) & FLAGS_MAP)))
395               && ((!(matchsel & WHO_FIELD_HOS))
396               || matchexec(cli_user(acptr)->host, mymask, minlen))
397               && ((!(matchsel & WHO_FIELD_HOS))
398               || !HasHiddenHost(acptr)
399               || !IsAnOper(sptr)
400               || matchexec(cli_user(acptr)->realhost, mymask, minlen))
401               && ((!(matchsel & WHO_FIELD_REN))
402               || matchexec(cli_info(acptr), mymask, minlen))
403               && ((!(matchsel & WHO_FIELD_NIP))
404               || (HasHiddenHost(acptr) && !IsAnOper(sptr))
405               || ((((cli_ip(acptr).s_addr & imask.mask.s_addr) !=
406               imask.bits.s_addr)) || (imask.fall
407               && matchexec(ircd_ntoa((const char*) &(cli_ip(acptr))), mymask, minlen)))))
408             continue;
409           if (!SHOW_MORE(sptr, counter))
410             break;
411           do_who(sptr, acptr, chptr, fields, qrt);
412         }
413       }
414     }
415     /* Loop through all clients :-\, if we still have something to match to 
416        and we can show more clients */
417     if ((!(counter < 1)) && matchsel)
418       for (acptr = cli_prev(&me); acptr; acptr = cli_prev(acptr))
419       {
420         if (!(IsUser(acptr) && Process(acptr)))
421           continue;
422         if ((bitsel & WHOSELECT_OPER) &&
423             !(IsAnOper(acptr) && (HasPriv(acptr, PRIV_DISPLAY) ||
424                                   HasPriv(sptr, PRIV_SEE_OPERS))))
425           continue;
426         if (!(SEE_USER(sptr, acptr, bitsel)))
427           continue;
428         if ((mask) &&
429             ((!(matchsel & WHO_FIELD_NIC))
430             || matchexec(cli_name(acptr), mymask, minlen))
431             && ((!(matchsel & WHO_FIELD_UID))
432             || matchexec(cli_user(acptr)->username, mymask, minlen))
433             && ((!(matchsel & WHO_FIELD_SER))
434             || (!(cli_flags(cli_user(acptr)->server) & FLAGS_MAP)))
435             && ((!(matchsel & WHO_FIELD_HOS))
436             || matchexec(cli_user(acptr)->host, mymask, minlen))
437             && ((!(matchsel & WHO_FIELD_HOS))
438             || !HasHiddenHost(acptr)
439             || !IsAnOper(sptr)
440             || matchexec(cli_user(acptr)->realhost, mymask, minlen))
441             && ((!(matchsel & WHO_FIELD_REN))
442             || matchexec(cli_info(acptr), mymask, minlen))
443             && ((!(matchsel & WHO_FIELD_NIP))
444             || (HasHiddenHost(acptr) && !IsAnOper(sptr))
445             || ((((cli_ip(acptr).s_addr & imask.mask.s_addr) != imask.bits.s_addr))
446             || (imask.fall
447             && matchexec(ircd_ntoa((const char*) &(cli_ip(acptr))), mymask, minlen)))))
448           continue;
449         if (!SHOW_MORE(sptr, counter))
450           break;
451         do_who(sptr, acptr, 0, fields, qrt);
452       }
453   }
454
455   /* Make a clean mask suitable to be sent in the "end of" */
456   if (mask && (p = strchr(mask, ' ')))
457     *p = '\0';
458   send_reply(sptr, RPL_ENDOFWHO, BadPtr(mask) ? "*" : mask);
459
460   /* Notify the user if we decided that his query was too long */
461   if (counter < 0)
462     send_reply(sptr, ERR_QUERYTOOLONG, "WHO");
463
464   return 0;
465 }