Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / whocmds.c
1 /*
2  * IRC - Internet Relay Chat, ircd/s_user.c (formerly ircd/s_msg.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 #include "config.h"
26
27 #include "whocmds.h"
28 #include "channel.h"
29 #include "client.h"
30 #include "hash.h"
31 #include "ircd.h"
32 #include "ircd_chattr.h"
33 #include "ircd_policy.h"
34 #include "ircd_reply.h"
35 #include "ircd_snprintf.h"
36 #include "ircd_string.h"
37 #include "list.h"
38 #include "match.h"
39 #include "numeric.h"
40 #include "numnicks.h"
41 #include "querycmds.h"
42 #include "random.h"
43 #include "s_bsd.h"
44 #include "s_conf.h"
45 #include "s_misc.h"
46 #include "s_user.h"
47 #include "send.h"
48 #include "struct.h"
49 #include "support.h"
50 #include "sys.h"
51 #include "userload.h"
52 #include "version.h"
53 #include "whowas.h"
54 #include "msg.h"
55
56 #include <arpa/inet.h>        /* inet_ntoa */
57 #include <fcntl.h>
58 #include <stdio.h>
59 #include <stdlib.h>
60 #include <string.h>
61 #include <sys/stat.h>
62 #include <unistd.h>
63
64 /*
65  * The function that actually prints out the WHO reply for a client found
66  */
67 void do_who(struct Client* sptr, struct Client* acptr, struct Channel* repchan,
68             int fields, char* qrt)
69 {
70   char *p1;
71   struct Channel *chptr = repchan;
72
73   static char buf1[512];
74   /* NOTE: with current fields list and sizes this _cannot_ overrun, 
75      and also the message finally sent shouldn't ever be truncated */
76
77   p1 = buf1;
78   buf1[1] = '\0';
79
80   /* If we don't have a channel and we need one... try to find it,
81      unless the listing is for a channel service, we already know
82      that there are no common channels, thus use PubChannel and not
83      SeeChannel */
84   if (!chptr && (!fields || (fields & (WHO_FIELD_CHA | WHO_FIELD_FLA))) &&
85       !IsChannelService(acptr))
86   {
87     struct Membership* chan;
88     for (chan = cli_user(acptr)->channel; chan && !chptr; chan = chan->next_channel)
89       if (PubChannel(chan->channel) &&
90           (acptr == sptr || !IsZombie(chan)))
91         chptr = chan->channel;
92   }
93
94   /* Place the fields one by one in the buffer and send it
95      note that fields == NULL means "default query" */
96
97   if (fields & WHO_FIELD_QTY)   /* Query type */
98   {
99     *(p1++) = ' ';
100     if (BadPtr(qrt))
101       *(p1++) = '0';
102     else
103       while ((*qrt) && (*(p1++) = *(qrt++)));
104   }
105
106   if (!fields || (fields & WHO_FIELD_CHA))
107   {
108     char *p2;
109     *(p1++) = ' ';
110     if ((p2 = (chptr ? chptr->chname : NULL)))
111       while ((*p2) && (*(p1++) = *(p2++)));
112     else
113       *(p1++) = '*';
114   }
115
116   if (!fields || (fields & WHO_FIELD_UID))
117   {
118     char *p2 = cli_user(acptr)->username;
119     *(p1++) = ' ';
120     while ((*p2) && (*(p1++) = *(p2++)));
121   }
122
123   if (fields & WHO_FIELD_NIP)
124   {
125     const char* p2 = ircd_ntoa((const char*) &(cli_ip(acptr)));
126     *(p1++) = ' ';
127     while ((*p2) && (*(p1++) = *(p2++)));
128   }
129
130   if (!fields || (fields & WHO_FIELD_HOS))
131   {
132     char *p2 = cli_user(acptr)->host;
133     *(p1++) = ' ';
134     while ((*p2) && (*(p1++) = *(p2++)));
135   }
136
137   if (!fields || (fields & WHO_FIELD_SER))
138   {
139     char *p2 = cli_name(cli_user(acptr)->server);
140     *(p1++) = ' ';
141     while ((*p2) && (*(p1++) = *(p2++)));
142   }
143
144   if (!fields || (fields & WHO_FIELD_NIC))
145   {
146     char *p2 = cli_name(acptr);
147     *(p1++) = ' ';
148     while ((*p2) && (*(p1++) = *(p2++)));
149   }
150
151   if (!fields || (fields & WHO_FIELD_FLA))
152   {
153     *(p1++) = ' ';
154     if (cli_user(acptr)->away)
155       *(p1++) = 'G';
156     else
157       *(p1++) = 'H';
158     if (IsAnOper(acptr) &&
159         (HasPriv(acptr, PRIV_DISPLAY) || HasPriv(sptr, PRIV_SEE_OPERS)))
160       *(p1++) = '*';
161     if (fields) {
162       /* If you specified flags then we assume you know how to parse
163        * multiple channel status flags, as this is currently the only
164        * way to know if someone has @'s *and* is +'d.
165        */
166       if (chptr && is_chan_op(acptr, chptr))
167         *(p1++) = '@';
168       if (chptr && has_voice(acptr, chptr))
169         *(p1++) = '+';
170       if (chptr && is_zombie(acptr, chptr))
171         *(p1++) = '!';
172     }
173     else {
174       if (chptr && is_chan_op(acptr, chptr))
175         *(p1++) = '@';
176       else if (chptr && has_voice(acptr, chptr))
177         *(p1++) = '+';
178       else if (chptr && is_zombie(acptr, chptr))
179         *(p1++) = '!';
180     }
181     if (IsDeaf(acptr))
182       *(p1++) = 'd';
183     if (IsAnOper(sptr))
184     {
185       if (IsInvisible(acptr))
186         *(p1++) = 'i';
187       if (SendWallops(acptr))
188         *(p1++) = 'w';
189       if (SendDebug(acptr))
190         *(p1++) = 'g';
191     }
192   }
193
194   if (!fields || (fields & WHO_FIELD_DIS))
195   {
196     *p1++ = ' ';
197     if (!fields)
198       *p1++ = ':';              /* Place colon here for default reply */
199 #ifdef HEAD_IN_SAND_WHO_HOPCOUNT
200     strcat(p1, sptr == acptr ? "0" : "3");
201     p1++;
202 #else
203     /* three digit hopcount maximum */
204     p1 += ircd_snprintf(0, p1, 3, "%d", cli_hopcount(acptr));
205 #endif
206   }
207
208   if (fields & WHO_FIELD_IDL)
209   {
210     *p1++ = ' ';
211     if (MyUser(acptr)) {
212             p1 += ircd_snprintf(0, p1, 11, "%d",
213                                 CurrentTime - cli_user(acptr)->last);
214     }    
215     else {
216             *p1++ = '0';
217     }
218   }
219
220   if (!fields || (fields & WHO_FIELD_REN))
221   {
222     char *p2 = cli_info(acptr);
223     *p1++ = ' ';
224     if (fields)
225       *p1++ = ':';              /* Place colon here for special reply */
226     while ((*p2) && (*(p1++) = *(p2++)));
227   }
228
229   /* The first char will always be an useless blank and we 
230      need to terminate buf1 */
231   *p1 = '\0';
232   p1 = buf1;
233   send_reply(sptr, fields ? RPL_WHOSPCRPL : RPL_WHOREPLY, ++p1);
234 }
235
236 int
237 count_users(char *mask)
238 {
239   struct Client *acptr;
240   int count = 0;
241   char namebuf[USERLEN + HOSTLEN + 2];
242   char ipbuf[USERLEN + 16 + 2];
243
244   for (acptr = GlobalClientList; acptr; acptr = cli_next(acptr)) {
245     if (!IsUser(acptr))
246       continue;
247
248     ircd_snprintf(0, namebuf, sizeof(namebuf), "%s@%s",
249                   cli_user(acptr)->username, cli_user(acptr)->host);
250     ircd_snprintf(0, ipbuf, sizeof(ipbuf), "%s@%s", cli_user(acptr)->username,
251                   ircd_ntoa((const char *) &(cli_ip(acptr))));
252
253     if (!match(mask, namebuf) || !match(mask, ipbuf))
254       count++;
255   }
256
257   return count;
258 }