Author: Kev <klmitch@mit.edu>
[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 #include "client.h"
85 #include "hash.h"
86 #include "ircd.h"
87 #include "ircd_reply.h"
88 #include "ircd_string.h"
89 #include "msg.h"
90 #include "numeric.h"
91 #include "numnicks.h"
92 #include "opercmds.h"
93 #include "s_user.h"
94 #include "send.h"
95
96 #include <assert.h>
97
98
99 /*
100  * Old P10:
101  * Sending [:defiant.atomicrevs.net RPING Z Gte- 953863987 524184 :<No client start time>] to 
102  * alphatest.atomicrevs.net
103  * Full P10:
104  * Parsing: j RI Z jAA 953865133 0 :<No client start time>
105  */
106
107 /*
108  * ms_rping - server message handler
109  * -- by Run
110  *
111  *    parv[0] = sender (sptr->name thus)
112  * if sender is a person: (traveling towards start server)
113  *    parv[1] = pinged server[mask]
114  *    parv[2] = start server (current target)
115  *    parv[3] = optional remark
116  * if sender is a server: (traveling towards pinged server)
117  *    parv[1] = pinged server (current target)
118  *    parv[2] = original sender (person)
119  *    parv[3] = start time in s
120  *    parv[4] = start time in us
121  *    parv[5] = the optional remark
122  */
123 int ms_rping(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
124 {
125   struct Client* destination = 0;
126   assert(0 != cptr);
127   assert(0 != sptr);
128   assert(IsServer(cptr));
129
130   /*
131    * shouldn't happen
132    */
133   if (!IsPrivileged(sptr))
134     return 0;
135
136   if (IsServer(sptr)) {
137     if (parc < 6) {
138       /*
139        * PROTOCOL ERROR
140        */
141       return need_more_params(sptr, "RPING");
142     }
143     if ((destination = FindNServer(parv[1]))) {
144       /*
145        * if it's not for me, pass it on
146        */
147       if (IsMe(destination))
148         sendcmdto_one(&me, CMD_RPONG, sptr, "%s %s %s %s :%s", cli_name(sptr),
149                       parv[2], parv[3], parv[4], parv[5]);
150       else
151         sendcmdto_one(sptr, CMD_RPING, destination, "%C %s %s %s :%s",
152                       destination, parv[2], parv[3], parv[4], parv[5]);
153     }
154   }
155   else {
156     if (parc < 3) {
157       return need_more_params(sptr, "RPING");
158     }
159     /*
160      * Haven't made it to the start server yet, if I'm not the start server
161      * pass it on.
162      */
163     if (hunt_server_cmd(sptr, CMD_RPING, cptr, 1, "%s %C :%s", 2, parc, parv)
164         != HUNTED_ISME)
165       return 0;
166     /*
167      * otherwise ping the destination from here
168      */
169     if ((destination = find_match_server(parv[1]))) {
170       assert(IsServer(destination) || IsMe(destination));
171       sendcmdto_one(&me, CMD_RPING, destination, "%C %C %s :%s", destination,
172                     sptr, militime(0, 0), parv[3]);
173     }
174     else
175       send_reply(sptr, ERR_NOSUCHSERVER, parv[1]);
176   }
177   return 0;
178 }
179
180 /*
181  * mo_rping - oper message handler
182  * -- by Run
183  *
184  *
185  * Receive:
186  *          RPING blah.*
187  *          RPING blah.* :<start time>
188  *          RPING blah.* server.* :<start time>
189  *
190  *    parv[0] = sender (sptr->name thus)
191  *    parv[1] = pinged server name or mask (required)
192  *    parv[2] = start server name or mask (optional, defaults to me)
193  *    parv[3] = client start time (optional) 
194  * 
195  * Send: NumNick(sptr) RPING blah.* server.net :<start time> (hunt_server)
196  *       NumServ(&me) RPING NumServ(blah.bar.net) NumNick(sptr) :<start time> (here)
197  */
198 int mo_rping(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
199 {
200   struct Client* acptr = 0;
201   const char*    start_time = "<No client start time>";
202
203   assert(0 != cptr);
204   assert(0 != sptr);
205   assert(cptr == sptr);
206   assert(IsAnOper(sptr));
207
208   if (parc < 2)
209     return need_more_params(sptr, "RPING");
210
211   if (parc > 2) {
212     if ((acptr = find_match_server(parv[2])) && !IsMe(acptr)) {
213       parv[2] = cli_name(acptr);
214       if (3 == parc) {
215         /*
216          * const_cast<char*>(start_time);
217          */
218         parv[parc++] = (char*) start_time;
219       }
220       hunt_server_cmd(sptr, CMD_RPING, cptr, 1, "%s %C :%s", 2, parc, parv);
221       return 0;
222     }
223     else
224       start_time = parv[2];
225   }
226
227   if ((acptr = find_match_server(parv[1]))) {
228     assert(IsServer(acptr) || IsMe(acptr));
229     sendcmdto_one(&me, CMD_RPING, acptr, "%C %C %s :%s", acptr, sptr,
230                   militime(0, 0), start_time);
231   }
232   else
233     send_reply(sptr, ERR_NOSUCHSERVER, parv[1]);
234
235   return 0;
236 }