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