d5fee344db2da01457476f1960c076ee5e2e5284
[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   /*
160    * Check to see if this is a PONG :cookie reply from an
161    * unregistered user.  If so, process it. -record
162    */
163   if (0 != sptr->cookie && COOKIE_VERIFIED != sptr->cookie) {
164     if (parc > 1 && sptr->cookie == atol(parv[parc - 1])) {
165       sptr->cookie = COOKIE_VERIFIED;
166       if (sptr->user && *sptr->user->host && sptr->name[0])
167         /*
168          * NICK and USER OK
169          */
170         return register_user(cptr, sptr, sptr->name, sptr->user->username);
171     }
172     else  
173       sendto_one(sptr, ":%s %d %s :To connect, type /QUOTE PONG %u",
174                  me.name, ERR_BADPING, (sptr->name) ? sptr->name : "*",
175                  sptr->cookie);
176   }
177   return 0;
178 }
179
180 /*
181  * m_pong - normal message handler
182  *
183  * parv[0] = sender prefix
184  * parv[1] = origin
185  * parv[2] = destination
186  */
187 int m_pong(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
188 {
189   assert(0 != cptr);
190   assert(cptr == sptr);
191   cptr->flags &= ~FLAGS_PINGSENT;
192   return 0;
193 }
194
195
196 #if 0
197 /*
198  * m_pong
199  *
200  * parv[0] = sender prefix
201  * parv[1] = origin
202  * parv[2] = destination
203  */
204 int m_pong(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
205 {
206   struct Client *acptr;
207   char *origin, *destination;
208
209   if (MyUser(sptr))
210     return 0;
211
212   /* Check to see if this is a PONG :cookie reply from an
213    * unregistered user.  If so, process it. -record       */
214
215   if ((!IsRegistered(sptr)) && (sptr->cookie != 0) &&
216       (sptr->cookie != COOKIE_VERIFIED) && (parc > 1))
217   {
218     if (atol(parv[parc - 1]) == (long)sptr->cookie)
219     {
220       sptr->cookie = COOKIE_VERIFIED;
221       if (sptr->user && *sptr->user->host && sptr->name[0])        /* NICK and
222                                                                    USER OK */
223         return register_user(cptr, sptr, sptr->name, sptr->user->username);
224     }
225     else
226       sendto_one(sptr, ":%s %d %s :To connect, type /QUOTE PONG %u",
227           me.name, ERR_BADPING, sptr->name, sptr->cookie);
228
229     return 0;
230   }
231
232   if (parc < 2 || *parv[1] == '\0')
233   {
234     sendto_one(sptr, err_str(ERR_NOORIGIN), me.name, parv[0]);
235     return 0;
236   }
237
238   origin = parv[1];
239   destination = parv[2];
240   cptr->flags &= ~FLAGS_PINGSENT;
241   sptr->flags &= ~FLAGS_PINGSENT;
242
243   if (!EmptyString(destination) && 0 != ircd_strcmp(destination, me.name))
244   {
245     if ((acptr = FindClient(destination)))
246       sendto_one(acptr, ":%s PONG %s %s", parv[0], origin, destination);
247     else
248     {
249       sendto_one(sptr, err_str(ERR_NOSUCHSERVER),
250           me.name, parv[0], destination);
251       return 0;
252     }
253   }
254 #ifdef        DEBUGMODE
255   else
256     Debug((DEBUG_NOTICE, "PONG: %s %s",
257         origin, destination ? destination : "*"));
258 #endif
259   return 0;
260 }
261 #endif /* 0 */