e30acb67a23c3399eccdf61ab6372edbed64e4d8
[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 #include "config.h"
83
84 #if 0
85 /*
86  * No need to include handlers.h here the signatures must match
87  * and we don't need to force a rebuild of all the handlers everytime
88  * we add a new one to the list. --Bleep
89  */
90 #include "handlers.h"
91 #endif /* 0 */
92 #include "client.h"
93 #include "hash.h"
94 #include "ircd.h"
95 #include "ircd_reply.h"
96 #include "ircd_string.h"
97 #include "msg.h"
98 #include "numeric.h"
99 #include "numnicks.h"
100 #include "opercmds.h"
101 #include "s_user.h"
102 #include "send.h"
103
104 #include <assert.h>
105
106
107 /*
108  * Old P10:
109  * Sending [:defiant.atomicrevs.net RPING Z Gte- 953863987 524184 :<No client start time>] to 
110  * alphatest.atomicrevs.net
111  * Full P10:
112  * Parsing: j RI Z jAA 953865133 0 :<No client start time>
113  */
114
115 /*
116  * ms_rping - server message handler
117  * -- by Run
118  *
119  *    parv[0] = sender (sptr->name thus)
120  * if sender is a person: (traveling towards start server)
121  *    parv[1] = pinged server[mask]
122  *    parv[2] = start server (current target)
123  *    parv[3] = optional remark
124  * if sender is a server: (traveling towards pinged server)
125  *    parv[1] = pinged server (current target)
126  *    parv[2] = original sender (person)
127  *    parv[3] = start time in s
128  *    parv[4] = start time in us
129  *    parv[5] = the optional remark
130  */
131 int ms_rping(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
132 {
133   struct Client* destination = 0;
134   assert(0 != cptr);
135   assert(0 != sptr);
136   assert(IsServer(cptr));
137
138   /*
139    * shouldn't happen
140    */
141   if (!IsPrivileged(sptr))
142     return 0;
143
144   if (IsServer(sptr)) {
145     if (parc < 6) {
146       /*
147        * PROTOCOL ERROR
148        */
149       return need_more_params(sptr, "RPING");
150     }
151     if ((destination = FindNServer(parv[1]))) {
152       /*
153        * if it's not for me, pass it on
154        */
155       if (IsMe(destination))
156         sendcmdto_one(&me, CMD_RPONG, sptr, "%s %s %s %s :%s", cli_name(sptr),
157                       parv[2], parv[3], parv[4], parv[5]);
158       else
159         sendcmdto_one(sptr, CMD_RPING, destination, "%C %s %s %s :%s",
160                       destination, parv[2], parv[3], parv[4], parv[5]);
161     }
162   }
163   else {
164     if (parc < 3) {
165       return need_more_params(sptr, "RPING");
166     }
167     /*
168      * Haven't made it to the start server yet, if I'm not the start server
169      * pass it on.
170      */
171     if (hunt_server_cmd(sptr, CMD_RPING, cptr, 1, "%s %C :%s", 2, parc, parv)
172         != 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) || IsMe(destination));
179       sendcmdto_one(&me, CMD_RPING, destination, "%C %C %s :%s", destination,
180                     sptr, militime(0, 0), parv[3]);
181     }
182     else
183       send_reply(sptr, ERR_NOSUCHSERVER, 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] = cli_name(acptr);
222       if (3 == parc) {
223         /*
224          * const_cast<char*>(start_time);
225          */
226         parv[parc++] = (char*) start_time;
227       }
228       hunt_server_cmd(sptr, CMD_RPING, cptr, 1, "%s %C :%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) || IsMe(acptr));
237     sendcmdto_one(&me, CMD_RPING, acptr, "%C %C %s :%s", acptr, sptr,
238                   militime(0, 0), start_time);
239   }
240   else
241     send_reply(sptr, ERR_NOSUCHSERVER, 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) != /* XXX DEAD */
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]); /* XXX DEAD */
298       return 0;
299     }
300     sendto_one(acptr, ":%s RPING %s %s %s :%s", /* XXX DEAD */
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) /* XXX DEAD */
306         != HUNTED_ISME)
307       return 0;
308     sendto_one(cptr, ":%s RPONG %s %s %s %s :%s", me.name, parv[0], /* XXX DEAD */
309         parv[2], parv[3], parv[4], parv[5]);
310   }
311   return 0;
312 }
313 #endif /* 0 */
314