Author: Isomer <isomer@coders.net>
[ircu2.10.12-pk.git] / ircd / m_pong.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_pong.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_string.h"
94 #include "msg.h"
95 #include "numeric.h"
96 #include "numnicks.h"
97 #include "s_user.h"
98 #include "send.h"
99
100 #include <assert.h>
101 #include <string.h>
102 #include <stdlib.h>
103
104 /*
105  * ms_pong - server message handler template
106  *
107  * parv[0] = sender prefix
108  * parv[1] = origin
109  * parv[2] = destination
110  */
111 int ms_pong(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
112 {
113   char*          origin;
114   char*          destination;
115   assert(0 != cptr);
116   assert(0 != sptr);
117   assert(IsServer(cptr));
118
119   if (parc < 2 || EmptyString(parv[1])) {
120 #if 0
121     /*
122      * ignore there is nothing the server sending it can do about it
123      */
124     sendto_one(sptr, err_str(ERR_NOORIGIN), me.name, parv[0]);
125 #endif
126     return 0;
127   }
128   origin      = parv[1];
129   destination = parv[2];
130   cptr->flags &= ~FLAGS_PINGSENT;
131   sptr->flags &= ~FLAGS_PINGSENT;
132
133   if (!EmptyString(destination) && 0 != ircd_strcmp(destination, me.name)) {
134     struct Client* acptr;
135     if ((acptr = FindClient(destination))) {
136       if (MyUser(acptr))
137         sendto_one(acptr, ":%s PONG %s %s", sptr->name, origin, destination);
138       else
139         sendto_one(acptr, "%s " TOK_PONG " %s %s", NumServ(sptr), origin, destination);
140     }
141   }
142   return 0;
143 }
144
145 /*
146  * mr_pong - registration message handler
147  *
148  * parv[0] = sender prefix
149  * parv[1] = pong response echo
150  * NOTE: cptr is always unregistered here
151  */
152 int mr_pong(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
153 {
154   assert(0 != cptr);
155   assert(cptr == sptr);
156   assert(!IsRegistered(sptr));
157
158   cptr->flags &= ~FLAGS_PINGSENT;
159   cptr->lasttime = CurrentTime;
160   /*
161    * Check to see if this is a PONG :cookie reply from an
162    * unregistered user.  If so, process it. -record
163    */
164   if (0 != sptr->cookie && COOKIE_VERIFIED != sptr->cookie) {
165     if (parc > 1 && sptr->cookie == atol(parv[parc - 1])) {
166       sptr->cookie = COOKIE_VERIFIED;
167       if (sptr->user && *sptr->user->host && sptr->name[0])
168         /*
169          * NICK and USER OK
170          */
171         return register_user(cptr, sptr, sptr->name, sptr->user->username);
172     }
173     else  
174       sendto_one(sptr, ":%s %d %s :To connect, type /QUOTE PONG %u",
175                  me.name, ERR_BADPING, (sptr->name) ? sptr->name : "*",
176                  sptr->cookie);
177   }
178   return 0;
179 }
180
181 /*
182  * m_pong - normal message handler
183  *
184  * parv[0] = sender prefix
185  * parv[1] = origin
186  * parv[2] = destination
187  */
188 int m_pong(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
189 {
190   assert(0 != cptr);
191   assert(cptr == sptr);
192   cptr->flags &= ~FLAGS_PINGSENT;
193   cptr->lasttime = CurrentTime;
194   return 0;
195 }
196
197
198 #if 0
199 /*
200  * m_pong
201  *
202  * parv[0] = sender prefix
203  * parv[1] = origin
204  * parv[2] = destination
205  */
206 int m_pong(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
207 {
208   struct Client *acptr;
209   char *origin, *destination;
210
211   if (MyUser(sptr))
212     return 0;
213
214   /* Check to see if this is a PONG :cookie reply from an
215    * unregistered user.  If so, process it. -record       */
216
217   if ((!IsRegistered(sptr)) && (sptr->cookie != 0) &&
218       (sptr->cookie != COOKIE_VERIFIED) && (parc > 1))
219   {
220     if (atol(parv[parc - 1]) == (long)sptr->cookie)
221     {
222       sptr->cookie = COOKIE_VERIFIED;
223       if (sptr->user && *sptr->user->host && sptr->name[0])        /* NICK and
224                                                                    USER OK */
225         return register_user(cptr, sptr, sptr->name, sptr->user->username);
226     }
227     else
228       sendto_one(sptr, ":%s %d %s :To connect, type /QUOTE PONG %u",
229           me.name, ERR_BADPING, sptr->name, sptr->cookie);
230
231     return 0;
232   }
233
234   if (parc < 2 || *parv[1] == '\0')
235   {
236     sendto_one(sptr, err_str(ERR_NOORIGIN), me.name, parv[0]);
237     return 0;
238   }
239
240   origin = parv[1];
241   destination = parv[2];
242   cptr->flags &= ~FLAGS_PINGSENT;
243   sptr->flags &= ~FLAGS_PINGSENT;
244
245   if (!EmptyString(destination) && 0 != ircd_strcmp(destination, me.name))
246   {
247     if ((acptr = FindClient(destination)))
248       sendto_one(acptr, ":%s PONG %s %s", parv[0], origin, destination);
249     else
250     {
251       sendto_one(sptr, err_str(ERR_NOSUCHSERVER),
252           me.name, parv[0], destination);
253       return 0;
254     }
255   }
256 #ifdef        DEBUGMODE
257   else
258     Debug((DEBUG_NOTICE, "PONG: %s %s",
259         origin, destination ? destination : "*"));
260 #endif
261   return 0;
262 }
263 #endif /* 0 */