added gnutls backend and moved backend code into new files
[ircu2.10.12-pk.git] / ircd / m_ping.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_ping.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  * Stupid ircd Tricks
28  * Excerpt from conversation on #coder-com:
29  *  > the number horks it
30  *  <Gte-> yea
31  *  > thinks it's a numeric?
32  *  > no
33  *  <Gte-> hm
34  *  > why would the number hork it
35  *  <Gte-> why is it even looking up servers in a client ping :)
36  *  > it's a server ping
37  *  <Gte-> true
38  *  > oh
39  *  > I know why :)
40  *  >   origin = parv[1];
41  *  >   destination = parv[2];
42  *  >   acptr = FindClient(origin);
43  *  >   if (acptr && acptr != sptr)
44  *  >     origin = cptr->name;
45  *  > heh, that's a bug :)
46  *  <Gte-> yea, client/server handling in the same function sucks :P
47  *  > blindly pass a bogus origin around, and where do you send the reply to?
48  *  <Gte-> I tried /quote ping 12345 uworld.blah.net locally, and uworld
49  *  +recieved -> ":Gte- PING N :Uworld.blah.net"
50  *  <Gte-> oh no, sorry, I did ping N :)
51  *  > right, it's broken
52  *  <Gte-> good thing it doesn't have a fit replying to it
53  *  > hmm
54  *  *** plano.tx.us.undernet.org: PONG received from plano.tx.us.undernet.org
55  *  > you can send a number for the first ping .. but if you ping a remote server
56  *  +it goes to the remote end where it's received as a unsolicited pong by the
57  *  +server closest to the target
58  *  > hahaha
59  *  <Gte-> cool
60  *  <Gte-> Parsing: :Gte PING 12345 :widnes.uk.eu.blah.net
61  *  <Gte-> Sending [:widnes.uk.eu.blah.net PONG widnes.uk.eu.blah.net
62  *  +:12345] to alphatest.blah.net
63  *  <Gte-> Parsing: :alphatest.blah.net 402 widnes.uk.eu.blah.net
64  *  +12345 :No such server
65  *  > oh even better, the pongee sends no such server :)
66  *  > bwhahahah
67  *  <Gte-> for a second, I thought you could trigger a loop, which would be
68  *  +hideously nasty, but it doesn't look like
69  *  > it goes a ------ > b ------- > c ------- > d then c <------- d then c -----
70  *  +> d :)
71  *  <Gte-> weeee
72  *  <Gte-> [04:15] -> Server: ping Gte- Dallas-R.Tx.US.Undernet.org
73  *  <Gte-> *** PONG from Dallas-R.Tx.US.Undernet.org: Gte-
74  *  <Gte-> there we go
75  *  <Gte-> I can get a ping reply from a server I'm not on :)
76  */
77 /*
78  * m_functions execute protocol messages on this server:
79  *
80  *    cptr    is always NON-NULL, pointing to a *LOCAL* client
81  *            structure (with an open socket connected!). This
82  *            identifies the physical socket where the message
83  *            originated (or which caused the m_function to be
84  *            executed--some m_functions may call others...).
85  *
86  *    sptr    is the source of the message, defined by the
87  *            prefix part of the message if present. If not
88  *            or prefix not found, then sptr==cptr.
89  *
90  *            (!IsServer(cptr)) => (cptr == sptr), because
91  *            prefixes are taken *only* from servers...
92  *
93  *            (IsServer(cptr))
94  *                    (sptr == cptr) => the message didn't
95  *                    have the prefix.
96  *
97  *                    (sptr != cptr && IsServer(sptr) means
98  *                    the prefix specified servername. (?)
99  *
100  *                    (sptr != cptr && !IsServer(sptr) means
101  *                    that message originated from a remote
102  *                    user (not local).
103  *
104  *            combining
105  *
106  *            (!IsServer(sptr)) means that, sptr can safely
107  *            taken as defining the target structure of the
108  *            message in this server.
109  *
110  *    *Always* true (if 'parse' and others are working correct):
111  *
112  *    1)      sptr->from == cptr  (note: cptr->from == cptr)
113  *
114  *    2)      MyConnect(sptr) <=> sptr == cptr (e.g. sptr
115  *            *cannot* be a local connection, unless it's
116  *            actually cptr!). [MyConnect(x) should probably
117  *            be defined as (x == x->from) --msa ]
118  *
119  *    parc    number of variable parameter strings (if zero,
120  *            parv is allowed to be NULL)
121  *
122  *    parv    a NULL terminated list of parameter pointers,
123  *
124  *                    parv[0], sender (prefix string), if not present
125  *                            this points to an empty string.
126  *                    parv[1]...parv[parc-1]
127  *                            pointers to additional parameters
128  *                    parv[parc] == NULL, *always*
129  *
130  *            note:   it is guaranteed that parv[0]..parv[parc-1] are all
131  *                    non-NULL pointers.
132  */
133 #include "config.h"
134
135 #include "client.h"
136 #include "hash.h"
137 #include "ircd_log.h"
138 #include "ircd_reply.h"
139 #include "ircd_string.h"
140 #include "ircd.h"
141 #include "msg.h"
142 #include "numeric.h"
143 #include "numnicks.h"
144 #include "opercmds.h"
145 #include "s_debug.h"
146 #include "send.h"
147
148 /* #include <assert.h> -- Now using assert in ircd_log.h */
149 #include <stdlib.h>
150 #include <string.h>
151
152 /*
153  * m_ping - generic message handler
154  *
155  * parv[0] = sender prefix
156  * parv[1] = origin
157  * parv[2] = destination
158  */
159 int m_ping(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
160 {
161   assert(0 != cptr);
162   assert(cptr == sptr);
163
164   if (parc < 2 || EmptyString(parv[1]))
165     return send_reply(sptr, ERR_NOORIGIN);
166
167   sendcmdto_one(&me, CMD_PONG, sptr, "%C :%s", &me, parv[1]);
168   return 0;
169 }
170
171 /*
172  * mo_ping - oper message handler
173  *
174  * parv[0] = sender prefix
175  * parv[1] = origin
176  * parv[2] = destination
177  */
178 int mo_ping(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
179 {
180   struct Client* acptr;
181   char *destination;
182   assert(0 != cptr);
183   assert(cptr == sptr);
184
185   if (parc < 2 || EmptyString(parv[1]))
186     return send_reply(sptr, ERR_NOORIGIN);
187
188   destination = parv[2];        /* Will get NULL or pointer (parc >= 2!!) */
189
190   if (!EmptyString(destination) && 0 != ircd_strcmp(destination, cli_name(&me))) {
191     if ((acptr = FindServer(destination)))
192       sendcmdto_one(sptr, CMD_PING, acptr, "%C :%s", sptr, destination);
193     else
194       send_reply(sptr, ERR_NOSUCHSERVER, destination);
195   }
196   else {
197     /*
198      * NOTE: clients rely on this to return the origin string.
199      * it's pointless to send more than 64 bytes back tho'
200      */
201     char* origin = parv[1];
202     
203     /* Is this supposed to be here? */
204     acptr = FindClient(origin);
205     if (acptr && acptr != sptr)
206       origin = cli_name(cptr);
207     
208     if (strlen(origin) > 64)
209       origin[64] = '\0';
210     sendcmdto_one(&me, CMD_PONG, sptr, "%C :%s", &me, origin);
211   }
212   return 0;
213 }
214
215 /*
216  * Extension notes
217  *
218  * <Vek> bleep:  here's the change you make to PING:
219  * <Vek> F TOK_PING F G 7777777777.7777777
220  * <Vek> then optional parameter for further enhancement
221  * <Vek> G TOK_PONG G F 7777777777.7777777 0.1734637
222  */
223
224 /*
225  * ms_ping - server message handler
226  */
227 int ms_ping(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
228 {
229   struct Client* acptr;
230   char*          origin;
231   char*          destination;
232
233   assert(0 != cptr);
234   assert(0 != sptr);
235   assert(IsServer(cptr));
236
237   if (parc < 2 || EmptyString(parv[1])) {
238     /*
239      * don't bother sending the error back
240      */
241     return 0;
242   }
243   origin      = parv[1];
244   destination = parv[2];        /* Will get NULL or pointer (parc >= 2!!) */
245
246   if (parc > 3)
247   {
248     /* AsLL ping, send reply back */
249     int diff = atoi(militime_float(parv[3]));
250     sendcmdto_one(&me, CMD_PONG, sptr, "%C %s %s %i %s", &me, origin,
251                   parv[3], diff, militime_float(NULL));
252     return 0;
253   }
254   if (!EmptyString(destination) && 0 != ircd_strcmp(destination, cli_name(&me))) {
255     if ((acptr = FindServer(destination))) {
256       /*
257        * Servers can just forward the origin
258        */
259       sendcmdto_one(sptr, CMD_PING, acptr, "%s :%s", origin, destination);
260     }
261     else {
262       /*
263        * this can happen if server split before the ping got here
264        */
265       send_reply(sptr, ERR_NOSUCHSERVER, destination);
266     }
267   }
268   else {
269     /*
270      * send pong back
271      * NOTE:  sptr is never local so if pong handles numerics everywhere we
272      * could send a numeric here.
273      */
274     sendcmdto_one(&me, CMD_PONG, sptr, "%C :%s", &me, origin);
275   }
276   return 0;
277 }