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