Author: Bleep <tomh@inxpress.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 = FindNServer(parv[1]);
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         sendto_one(cptr, "%s " TOK_RPONG " %s %s %s %s :%s", NumServ(&me),
155                    parv[0], parv[2], parv[3], parv[4], parv[5]);
156       else
157         sendto_one(destination, "%s " TOK_RPING " %s %s %s %s :%s",
158                    parv[0], parv[1], parv[2], parv[3], parv[4], parv[5]); 
159     }
160   }
161   else {
162     if (parc < 3) {
163       /*
164        * PROTOCOL ERROR
165        */
166       return need_more_params(sptr, "RPING");
167     }
168     /*
169      * Haven't made it to the start server yet, if I'm not the start server
170      * pass it on.
171      */
172     if (hunt_server(1, cptr, sptr, "%s%s " TOK_RPING " %s %s :%s", 2, parc, parv) != HUNTED_ISME)
173       return 0;
174     /*
175      * otherwise ping the destination from here
176      */
177     if ((destination = find_match_server(parv[1]))) {
178       assert(IsServer(destination));
179       sendto_one(destination, "%s " TOK_RPING " %s %s%s %s :%s",
180                  NumServ(&me), NumServ(destination), NumNick(sptr), militime(0, 0), parv[3]);
181     }
182     else
183       sendto_one(sptr, err_str(ERR_NOSUCHSERVER), me.name, parv[0], parv[1]);
184   }
185   return 0;
186 }
187
188 /*
189  * mo_rping - oper message handler
190  * -- by Run
191  *
192  *
193  * Receive:
194  *          RPING blah.*
195  *          RPING blah.* :<start time>
196  *          RPING blah.* server.* :<start time>
197  *
198  *    parv[0] = sender (sptr->name thus)
199  *    parv[1] = pinged server name or mask (required)
200  *    parv[2] = start server name or mask (optional, defaults to me)
201  *    parv[3] = client start time (optional) 
202  * 
203  * Send: NumNick(sptr) RPING blah.* server.net :<start time> (hunt_server)
204  *       NumServ(&me) RPING NumServ(blah.bar.net) NumNick(sptr) :<start time> (here)
205  */
206 int mo_rping(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
207 {
208   struct Client* acptr = 0;
209   const char*    start_time = "<No client start time>";
210
211   assert(0 != cptr);
212   assert(0 != sptr);
213   assert(cptr == sptr);
214   assert(IsAnOper(sptr));
215
216   if (parc < 2)
217     return need_more_params(sptr, "RPING");
218
219   if (parc > 2) {
220     if ((acptr = find_match_server(parv[2])) && !IsMe(acptr)) {
221       parv[2] = acptr->name;
222       if (3 == parc) {
223         /*
224          * const_cast<char*>(start_time);
225          */
226         parv[parc++] = (char*) start_time;
227       }
228       hunt_server(1, cptr, sptr, "%s%s " TOK_RPING " %s %s :%s", 2, parc, parv);
229       return 0;
230     }
231     else
232       start_time = parv[2];
233   }
234
235   if ((acptr = find_match_server(parv[1]))) {
236     assert(IsServer(acptr));
237     sendto_one(acptr, "%s " TOK_RPING " %s %s%s %s :%s",
238                NumServ(&me), NumServ(acptr), NumNick(sptr), militime(0, 0), start_time);
239   }
240   else
241     sendto_one(sptr, err_str(ERR_NOSUCHSERVER), me.name, parv[0], parv[1]);
242
243   return 0;
244 }
245
246 #if 0
247 /*
248  * m_rping  -- by Run
249  *
250  *    parv[0] = sender (sptr->name thus)
251  * if sender is a person: (traveling towards start server)
252  *    parv[1] = pinged server[mask]
253  *    parv[2] = start server (current target)
254  *    parv[3] = optional remark
255  * if sender is a server: (traveling towards pinged server)
256  *    parv[1] = pinged server (current target)
257  *    parv[2] = original sender (person)
258  *    parv[3] = start time in s
259  *    parv[4] = start time in us
260  *    parv[5] = the optional remark
261  */
262 int m_rping(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
263 {
264   struct Client *acptr;
265
266   if (!IsPrivileged(sptr))
267     return 0;
268
269   if (parc < (IsAnOper(sptr) ? (MyConnect(sptr) ? 2 : 3) : 6))
270   {
271     return need_more_params(sptr, "RPING");
272     return 0;
273   }
274   if (MyUser(sptr))
275   {
276     if (parc == 2)
277       parv[parc++] = me.name;
278     else if (!(acptr = find_match_server(parv[2])))
279     {
280       parv[3] = parv[2];
281       parv[2] = me.name;
282       parc++;
283     }
284     else
285       parv[2] = acptr->name;
286     if (parc == 3)
287       parv[parc++] = "<No client start time>";
288   }
289
290   if (IsAnOper(sptr))
291   {
292     if (hunt_server(1, cptr, sptr, "%s%s " TOK_RPING " %s %s :%s", 2, parc, parv) !=
293         HUNTED_ISME)
294       return 0;
295     if (!(acptr = find_match_server(parv[1])) || !IsServer(acptr))
296     {
297       sendto_one(sptr, err_str(ERR_NOSUCHSERVER), me.name, parv[0], parv[1]);
298       return 0;
299     }
300     sendto_one(acptr, ":%s RPING %s %s %s :%s",
301          me.name, NumServ(acptr), sptr->name, militime(0, 0), parv[3]);
302   }
303   else
304   {
305     if (hunt_server(1, cptr, sptr, "%s%s " TOK_RPING " %s %s %s %s :%s", 1, parc, parv)
306         != HUNTED_ISME)
307       return 0;
308     sendto_one(cptr, ":%s RPONG %s %s %s %s :%s", me.name, parv[0],
309         parv[2], parv[3], parv[4], parv[5]);
310   }
311   return 0;
312 }
313 #endif /* 0 */
314