Author: Isomer <perry@coders.net>
[ircu2.10.12-pk.git] / ircd / m_rping.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_rping.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 #if 0
83 /*
84  * No need to include handlers.h here the signatures must match
85  * and we don't need to force a rebuild of all the handlers everytime
86  * we add a new one to the list. --Bleep
87  */
88 #include "handlers.h"
89 #endif /* 0 */
90 #include "client.h"
91 #include "hash.h"
92 #include "ircd.h"
93 #include "ircd_reply.h"
94 #include "ircd_string.h"
95 #include "msg.h"
96 #include "numeric.h"
97 #include "numnicks.h"
98 #include "opercmds.h"
99 #include "s_user.h"
100 #include "send.h"
101
102 #include <assert.h>
103
104
105 /*
106  * Old P10:
107  * Sending [:defiant.atomicrevs.net RPING Z Gte- 953863987 524184 :<No client start time>] to 
108  * alphatest.atomicrevs.net
109  * Full P10:
110  * Parsing: j RI Z jAA 953865133 0 :<No client start time>
111  */
112
113 /*
114  * ms_rping - server message handler
115  * -- by Run
116  *
117  *    parv[0] = sender (sptr->name thus)
118  * if sender is a person: (traveling towards start server)
119  *    parv[1] = pinged server[mask]
120  *    parv[2] = start server (current target)
121  *    parv[3] = optional remark
122  * if sender is a server: (traveling towards pinged server)
123  *    parv[1] = pinged server (current target)
124  *    parv[2] = original sender (person)
125  *    parv[3] = start time in s
126  *    parv[4] = start time in us
127  *    parv[5] = the optional remark
128  */
129 int ms_rping(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
130 {
131   struct Client* destination = 0;
132   assert(0 != cptr);
133   assert(0 != sptr);
134   assert(IsServer(cptr));
135
136   /*
137    * shouldn't happen
138    */
139   if (!IsPrivileged(sptr))
140     return 0;
141
142   if (IsServer(sptr)) {
143     if (parc < 6) {
144       /*
145        * PROTOCOL ERROR
146        */
147       return need_more_params(sptr, "RPING");
148     }
149     if ((destination = FindNServer(parv[1]))) {
150       /*
151        * if it's not for me, pass it on
152        */
153       if (IsMe(destination))
154         sendcmdto_one(&me, CMD_RPONG, sptr, "%s %s %s %s :%s", sptr->name,
155                       parv[2], parv[3], parv[4], parv[5]);
156       else
157         sendcmdto_one(sptr, CMD_RPING, destination, "%C %s %s %s :%s",
158                       destination, parv[2], parv[3], parv[4], parv[5]);
159     }
160   }
161   else {
162     if (parc < 3) {
163       return need_more_params(sptr, "RPING");
164     }
165     /*
166      * Haven't made it to the start server yet, if I'm not the start server
167      * pass it on.
168      */
169     if (hunt_server_cmd(sptr, CMD_RPING, cptr, 1, "%s %C :%s", 2, parc, parv)
170         != HUNTED_ISME)
171       return 0;
172     /*
173      * otherwise ping the destination from here
174      */
175     if ((destination = find_match_server(parv[1]))) {
176       assert(IsServer(destination) || IsMe(destination));
177       sendcmdto_one(&me, CMD_RPING, destination, "%C %C %s :%s", destination,
178                     sptr, militime(0, 0), parv[3]);
179     }
180     else
181       send_reply(sptr, ERR_NOSUCHSERVER, parv[1]);
182   }
183   return 0;
184 }
185
186 /*
187  * mo_rping - oper message handler
188  * -- by Run
189  *
190  *
191  * Receive:
192  *          RPING blah.*
193  *          RPING blah.* :<start time>
194  *          RPING blah.* server.* :<start time>
195  *
196  *    parv[0] = sender (sptr->name thus)
197  *    parv[1] = pinged server name or mask (required)
198  *    parv[2] = start server name or mask (optional, defaults to me)
199  *    parv[3] = client start time (optional) 
200  * 
201  * Send: NumNick(sptr) RPING blah.* server.net :<start time> (hunt_server)
202  *       NumServ(&me) RPING NumServ(blah.bar.net) NumNick(sptr) :<start time> (here)
203  */
204 int mo_rping(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
205 {
206   struct Client* acptr = 0;
207   const char*    start_time = "<No client start time>";
208
209   assert(0 != cptr);
210   assert(0 != sptr);
211   assert(cptr == sptr);
212   assert(IsAnOper(sptr));
213
214   if (parc < 2)
215     return need_more_params(sptr, "RPING");
216
217   if (parc > 2) {
218     if ((acptr = find_match_server(parv[2])) && !IsMe(acptr)) {
219       parv[2] = acptr->name;
220       if (3 == parc) {
221         /*
222          * const_cast<char*>(start_time);
223          */
224         parv[parc++] = (char*) start_time;
225       }
226       hunt_server_cmd(sptr, CMD_RPING, cptr, 1, "%s %C :%s", 2, parc, parv);
227       return 0;
228     }
229     else
230       start_time = parv[2];
231   }
232
233   if ((acptr = find_match_server(parv[1]))) {
234     assert(IsServer(acptr) || IsMe(acptr));
235     sendcmdto_one(&me, CMD_RPING, acptr, "%C %C %s :%s", acptr, sptr,
236                   militime(0, 0), start_time);
237   }
238   else
239     send_reply(sptr, ERR_NOSUCHSERVER, parv[1]);
240
241   return 0;
242 }
243
244 #if 0
245 /*
246  * m_rping  -- by Run
247  *
248  *    parv[0] = sender (sptr->name thus)
249  * if sender is a person: (traveling towards start server)
250  *    parv[1] = pinged server[mask]
251  *    parv[2] = start server (current target)
252  *    parv[3] = optional remark
253  * if sender is a server: (traveling towards pinged server)
254  *    parv[1] = pinged server (current target)
255  *    parv[2] = original sender (person)
256  *    parv[3] = start time in s
257  *    parv[4] = start time in us
258  *    parv[5] = the optional remark
259  */
260 int m_rping(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
261 {
262   struct Client *acptr;
263
264   if (!IsPrivileged(sptr))
265     return 0;
266
267   if (parc < (IsAnOper(sptr) ? (MyConnect(sptr) ? 2 : 3) : 6))
268   {
269     return need_more_params(sptr, "RPING");
270     return 0;
271   }
272   if (MyUser(sptr))
273   {
274     if (parc == 2)
275       parv[parc++] = me.name;
276     else if (!(acptr = find_match_server(parv[2])))
277     {
278       parv[3] = parv[2];
279       parv[2] = me.name;
280       parc++;
281     }
282     else
283       parv[2] = acptr->name;
284     if (parc == 3)
285       parv[parc++] = "<No client start time>";
286   }
287
288   if (IsAnOper(sptr))
289   {
290     if (hunt_server(1, cptr, sptr, "%s%s " TOK_RPING " %s %s :%s", 2, parc, parv) != /* XXX DEAD */
291         HUNTED_ISME)
292       return 0;
293     if (!(acptr = find_match_server(parv[1])) || !IsServer(acptr))
294     {
295       sendto_one(sptr, err_str(ERR_NOSUCHSERVER), me.name, parv[0], parv[1]); /* XXX DEAD */
296       return 0;
297     }
298     sendto_one(acptr, ":%s RPING %s %s %s :%s", /* XXX DEAD */
299          me.name, NumServ(acptr), sptr->name, militime(0, 0), parv[3]);
300   }
301   else
302   {
303     if (hunt_server(1, cptr, sptr, "%s%s " TOK_RPING " %s %s %s %s :%s", 1, parc, parv) /* XXX DEAD */
304         != HUNTED_ISME)
305       return 0;
306     sendto_one(cptr, ":%s RPONG %s %s %s %s :%s", me.name, parv[0], /* XXX DEAD */
307         parv[2], parv[3], parv[4], parv[5]);
308   }
309   return 0;
310 }
311 #endif /* 0 */
312