Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_list.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_list.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_alloc.h"
89 #include "ircd_chattr.h"
90 #include "ircd_features.h"
91 #include "ircd_log.h"
92 #include "ircd_reply.h"
93 #include "ircd_string.h"
94 #include "msg.h"
95 #include "numeric.h"
96 #include "numnicks.h"
97 #include "s_bsd.h"
98 #include "send.h"
99
100 #include <assert.h>
101 #include <stdlib.h>
102 #include <string.h>
103
104 #define LPARAM_ERROR    -1
105 #define LPARAM_SUCCESS   0
106 #define LPARAM_CHANNEL   1
107
108 static struct ListingArgs la_init = {
109   2147483647,                 /* max_time */
110   0,                          /* min_time */
111   4294967295U,                /* max_users */
112   0,                          /* min_users */
113   0,                          /* topic_limits */
114   2147483647,                 /* max_topic_time */
115   0,                          /* min_topic_time */
116   0                           /* chptr */
117 };
118
119 static struct ListingArgs la_default = {
120   2147483647,                 /* max_time */
121   0,                          /* min_time */
122   4294967295U,                /* max_users */
123   0,                          /* min_users */
124   0,                          /* topic_limits */
125   2147483647,                 /* max_topic_time */
126   0,                          /* min_topic_time */
127   0                           /* chptr */
128 };
129
130 static int
131 show_usage(struct Client *sptr)
132 {
133   if (!sptr) { /* configuration file error... */
134     log_write(LS_CONFIG, L_ERROR, 0, "Invalid default list parameter");
135     return LPARAM_ERROR;
136   }
137
138   send_reply(sptr, RPL_LISTUSAGE,
139              "Usage: \002/QUOTE LIST\002 \037parameters\037");
140   send_reply(sptr, RPL_LISTUSAGE,
141              "Where \037parameters\037 is a space or comma seperated "
142              "list of one or more of:");
143   send_reply(sptr, RPL_LISTUSAGE,
144              " \002<\002\037max_users\037    ; Show all channels with less "
145              "than \037max_users\037.");
146   send_reply(sptr, RPL_LISTUSAGE,
147              " \002>\002\037min_users\037    ; Show all channels with more "
148              "than \037min_users\037.");
149   send_reply(sptr, RPL_LISTUSAGE,
150              " \002C<\002\037max_minutes\037 ; Channels that exist less "
151              "than \037max_minutes\037.");
152   send_reply(sptr, RPL_LISTUSAGE,
153              " \002C>\002\037min_minutes\037 ; Channels that exist more "
154              "than \037min_minutes\037.");
155   send_reply(sptr, RPL_LISTUSAGE,
156              " \002T<\002\037max_minutes\037 ; Channels with a topic last "
157              "set less than \037max_minutes\037 ago.");
158   send_reply(sptr, RPL_LISTUSAGE,
159              " \002T>\002\037min_minutes\037 ; Channels with a topic last "
160              "set more than \037min_minutes\037 ago.");
161   send_reply(sptr, RPL_LISTUSAGE,
162              "Example: LIST <3,>1,C<10,T>0  ; 2 users, younger than 10 "
163              "min., topic set.");
164
165   return LPARAM_ERROR; /* return error condition */
166 }
167
168 static int
169 param_parse(struct Client *sptr, const char *param, struct ListingArgs *args,
170             int permit_chan)
171 {
172   int is_time = 0;
173   char dir;
174   unsigned int val;
175
176   assert(0 != args);
177
178   if (!param) /* NULL param == default--no list param */
179     return LPARAM_SUCCESS;
180
181   while (1) {
182     switch (*param) {
183     case 'T':
184     case 't':
185       is_time++;
186       args->topic_limits = 1;
187       /*FALLTHROUGH*/
188
189     case 'C':
190     case 'c':
191       is_time++;
192       param++;
193       if (*param != '<' && *param != '>')
194         return show_usage(sptr);
195       /*FALLTHROUGH*/
196
197     case '<':
198     case '>':
199       dir = *(param++);
200
201       if (!IsDigit(*param)) /* must start with a digit */
202         return show_usage(sptr);
203
204       val = strtol(param, (char **)&param, 10); /* convert it... */
205
206       if (*param != ',' && *param != ' ' && *param != '\0') /* check syntax */
207         return show_usage(sptr);
208
209       if (is_time && val < 80000000) /* Toggle UTC/offset */
210         val = TStime() - val * 60;
211       
212       switch (is_time) {
213       case 0: /* number of users on channel */
214         if (dir == '<')
215           args->max_users = val;
216         else
217           args->min_users = val;
218         break;
219
220       case 1: /* channel topic */
221         if (dir == '<')
222           args->min_topic_time = val;
223         else
224           args->max_topic_time = val;
225         break;
226
227       case 2: /* channel creation time */
228         if (dir == '<')
229           args->min_time = val;
230         else
231           args->max_time = val;
232         break;
233       }
234       break;
235
236     default: /* channel name? */
237       if (!permit_chan || !IsChannelName(param))
238         return show_usage(sptr);
239
240       return LPARAM_CHANNEL;
241       break;
242     }
243
244     if (!*param) /* hit end of string? */
245       break;
246
247     param++;
248   }
249
250   return LPARAM_SUCCESS;
251 }
252
253 void
254 list_set_default(void)
255 {
256   la_default = la_init; /* start off with a clean slate... */
257
258   if (param_parse(0, feature_str(FEAT_DEFAULT_LIST_PARAM), &la_default, 0) !=
259       LPARAM_SUCCESS)
260     la_default = la_init; /* recover from error by switching to default */
261 }
262
263 /*
264  * m_list - generic message handler
265  *
266  * parv[0] = sender prefix
267  * parv[1] = channel list or user/time limit
268  * parv[2...] = more user/time limits
269  */
270 int m_list(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
271 {
272   struct Channel *chptr;
273   char *name, *p = 0;
274   int show_channels = 0, param;
275   struct ListingArgs args;
276
277   if (cli_listing(sptr))            /* Already listing ? */
278   {
279     cli_listing(sptr)->chptr->mode.mode &= ~MODE_LISTED;
280     MyFree(cli_listing(sptr));
281     cli_listing(sptr) = 0;
282     send_reply(sptr, RPL_LISTEND);
283     update_write(sptr);
284     if (parc < 2)
285       return 0;                 /* Let LIST abort a listing. */
286   }
287
288   if (parc < 2)                 /* No arguments given to /LIST ? */
289     args = la_default;
290   else {
291     args = la_init; /* initialize argument to blank slate */
292
293     for (param = 1; parv[param]; param++) { /* process each parameter */
294       switch (param_parse(sptr, parv[param], &args, parc == 2)) {
295       case LPARAM_ERROR: /* error encountered, usage already sent, return */
296         return 0;
297         break;
298
299       case LPARAM_CHANNEL: /* show channel instead */
300         show_channels++;
301         break;
302
303       case LPARAM_SUCCESS: /* parse succeeded */
304         break;
305       }
306     }
307   }
308
309   send_reply(sptr, RPL_LISTSTART);
310
311   if (!show_channels)
312   {
313     if (args.max_users > args.min_users + 1 && args.max_time > args.min_time &&
314         args.max_topic_time > args.min_topic_time)      /* Sanity check */
315     {
316       cli_listing(sptr) = (struct ListingArgs*) MyMalloc(sizeof(struct ListingArgs));
317       assert(0 != cli_listing(sptr));
318       memcpy(cli_listing(sptr), &args, sizeof(struct ListingArgs));
319       if ((cli_listing(sptr)->chptr = GlobalChannelList)) {
320         int m = GlobalChannelList->mode.mode & MODE_LISTED;
321         list_next_channels(sptr, 64);
322         GlobalChannelList->mode.mode |= m;
323         return 0;
324       }
325       MyFree(cli_listing(sptr));
326       cli_listing(sptr) = 0;
327     }
328     send_reply(sptr, RPL_LISTEND);
329     return 0;
330   }
331
332   for (; (name = ircd_strtok(&p, parv[1], ",")); parv[1] = 0)
333   {
334     chptr = FindChannel(name);
335     if (chptr && ShowChannel(sptr, chptr) && cli_user(sptr))
336       send_reply(sptr, RPL_LIST, chptr->chname,
337                  chptr->users - number_of_zombies(chptr), chptr->topic);
338   }
339
340   send_reply(sptr, RPL_LISTEND);
341   return 0;
342 }