Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_connect.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_connect.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 "crule.h"
92 #include "hash.h"
93 #include "ircd.h"
94 #include "ircd_log.h"
95 #include "ircd_reply.h"
96 #include "ircd_string.h"
97 #include "jupe.h"
98 #include "match.h"
99 #include "msg.h"
100 #include "numeric.h"
101 #include "numnicks.h"
102 #include "s_bsd.h"
103 #include "s_conf.h"
104 #include "s_user.h"
105 #include "send.h"
106
107 #include <assert.h>
108 #include <stdlib.h>
109
110 /*
111  * ms_connect - server message handler
112  * - Added by Jto 11 Feb 1989
113  *
114  *    parv[0] = sender prefix
115  *    parv[1] = servername
116  *    parv[2] = port number
117  *    parv[3] = remote server
118  */
119 int ms_connect(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
120 {
121   unsigned short   port;
122   unsigned short   tmpport;
123   const char*      crule_name;
124   struct ConfItem* aconf;
125   struct Client*   acptr;
126   struct Jupe*     ajupe;
127
128   assert(0 != cptr);
129   assert(0 != sptr);
130
131   if (!IsPrivileged(sptr))
132     return send_reply(sptr, ERR_NOPRIVILEGES);
133
134   if (parc < 4) {
135     /*
136      * this is coming from a server which should have already
137      * checked it's args, if we don't have parc == 4, something
138      * isn't right.
139      */
140     return need_more_params(sptr, "CONNECT");
141   }
142
143   if (hunt_server_cmd(sptr, CMD_CONNECT, cptr, 1, "%s %s :%C", 3, parc, parv)
144       != HUNTED_ISME)
145     return 0;
146
147   /*
148    * need to find the conf entry first so we can use the server name from
149    * the conf entry instead of parv[1] to find out if the server is already
150    * present below. --Bleep
151    */
152   if (0 == (aconf = conf_find_server(parv[1]))) {
153     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Host %s not listed "
154                   "in ircd.conf", sptr, parv[1]);
155     return 0;
156   }
157   /*
158    * use aconf->name to look up the server
159    */
160   if ((acptr = FindServer(aconf->name))) {
161     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Server %s already "
162                   "exists from %s", sptr, parv[1], acptr->from->name);
163     return 0;
164   }
165   /*
166    * Evaluate connection rules...  If no rules found, allow the
167    * connect.   Otherwise stop with the first true rule (ie: rules
168    * are ored together.  Oper connects are effected only by D
169    * lines (CRULEALL) not d lines (CRULEAUTO).
170    */
171   if ((crule_name = conf_eval_crule(aconf))) {
172     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Disallowed by rule: %s",
173                   sptr, crule_name);
174     return 0;
175   }
176   /*
177    * Check to see if the server is juped; if it is, disallow the connect
178    */
179   if ((ajupe = jupe_find(aconf->name)) && JupeIsActive(ajupe)) {
180     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Server %s is juped: %s",
181                   sptr, JupeServer(ajupe), JupeReason(ajupe));
182     return 0;
183   }
184   /*
185    * Get port number from params, port must be non-zero if it comes from a
186    * server.
187    */
188   if ((port = atoi(parv[2])) == 0) {
189     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Invalid port number",
190                   sptr);
191     return 0;
192   }
193   /*
194    * save the old port
195    */
196   tmpport = aconf->port;
197   aconf->port = port;
198   /*
199    * Notify all operators about remote connect requests
200    */
201   sendcmdto_flag_butone(&me, CMD_WALLOPS, 0, FLAGS_WALLOP,
202                         ":Remote CONNECT %s %s from %s", parv[1],
203                         parv[2] ? parv[2] : "",
204                         get_client_name(sptr, HIDE_IP));
205   ircd_log(L_INFO, "CONNECT From %s : %s %d", parv[0], parv[1],
206            parv[2] ? parv[2] : "");
207
208   if (connect_server(aconf, sptr, 0)) {
209     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :*** Connecting to %s.", sptr,
210                   aconf->name);
211   }
212   else {
213     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :*** Connection to %s failed",
214                   sptr, aconf->name);
215   }
216   aconf->port = tmpport;
217   return 0;
218 }
219
220 /*
221  * mo_connect - oper message handler
222  * - Added by Jto 11 Feb 1989
223  *
224  *    parv[0] = sender prefix
225  *    parv[1] = servername
226  *    parv[2] = port number
227  *    parv[3] = remote server
228  */
229 int mo_connect(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
230 {
231   unsigned short   port;
232   unsigned short   tmpport;
233   const char*      crule_name;
234   struct ConfItem* aconf;
235   struct Client*   acptr;
236   struct Jupe*     ajupe;
237
238   assert(0 != cptr);
239   assert(cptr == sptr);
240   assert(IsAnOper(sptr));
241
242   if (parc < 2)
243     return need_more_params(sptr, "CONNECT");
244
245   if (parc > 3) {
246     /*
247      * if parc > 3, we are trying to connect two remote
248      * servers to each other
249      */
250     if (IsLocOp(sptr)) {
251       /*
252        * Only allow LocOps to make local CONNECTS --SRB
253        */
254       return 0;
255     }
256     else {
257       struct Client* acptr2;
258       struct Client* acptr3;
259
260       if (!(acptr3 = find_match_server(parv[3]))) {
261         send_reply(sptr, ERR_NOSUCHSERVER, parv[3]);
262         return 0;
263       }
264
265       /*
266        * Look for closest matching server 
267        * needed for "/connect blah 4400 *"?
268        */
269       for (acptr2 = acptr3; acptr2 != &me; acptr2 = acptr2->serv->up) {
270         if (!match(parv[3], acptr2->name))
271           acptr3 = acptr2;
272       }
273       parv[3] = acptr3->name;
274       if (hunt_server_cmd(sptr, CMD_CONNECT, cptr, 1, "%s %s :%C", 3, parc,
275                           parv) != HUNTED_ISME)
276         return 0;
277     }
278   }
279   /*
280    * need to find the conf entry first so we can use the server name from
281    * the conf entry instead of parv[1] to find out if the server is already
282    * present below. --Bleep
283    */
284   if (0 == (aconf = conf_find_server(parv[1]))) {
285     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Host %s not listed "
286                   "in ircd.conf", sptr, parv[1]);
287     return 0;
288   }
289   /*
290    * use aconf->name to look up the server, see above
291    */
292   if ((acptr = FindServer(aconf->name))) {
293     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Server %s already "
294                   "exists from %s", sptr, parv[1], acptr->from->name);
295     return 0;
296   }
297   /*
298    * Evaluate connection rules...  If no rules found, allow the
299    * connect.   Otherwise stop with the first true rule (ie: rules
300    * are ored together.  Oper connects are effected only by D
301    * lines (CRULEALL) not d lines (CRULEAUTO).
302    */
303   if ((crule_name = conf_eval_crule(aconf))) {
304     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Disallowed by rule: %s",
305                   sptr, crule_name);
306     return 0;
307   }
308   /*
309    * Check to see if the server is juped; if it is, disallow the connect
310    */
311   if ((ajupe = jupe_find(aconf->name)) && JupeIsActive(ajupe)) {
312     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Server %s is juped: %s",
313                   sptr, JupeServer(ajupe), JupeReason(ajupe));
314     return 0;
315   }
316   /*
317    *  Get port number from user, if given. If not specified,
318    *  use the default from configuration structure. If missing
319    *  from there, then use the precompiled default.
320    */
321   port = aconf->port;
322   if (parc > 2) {
323     assert(0 != parv[2]);
324     if (0 == (port = atoi(parv[2]))) {
325       sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Invalid port number",
326                     sptr);
327       return 0;
328     }
329   }
330   if (0 == port && 0 == (port = SERVER_PORT)) {
331     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: missing port number",
332                   sptr);
333     return 0;
334   }
335
336   tmpport = aconf->port;
337   aconf->port = port;
338
339   if (connect_server(aconf, sptr, 0)) {
340     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :*** Connecting to %s.", sptr,
341                   aconf->name);
342   }
343   else {
344     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :*** Connection to %s failed",
345                   sptr, aconf->name);
346   }
347   aconf->port = tmpport;
348   return 0;
349 }
350
351   
352 #if 0
353 /*
354  * XXX - remove when regression testing complete
355  *
356  *  m_connect                           - Added by Jto 11 Feb 1989
357  *
358  *    parv[0] = sender prefix
359  *    parv[1] = servername
360  *    parv[2] = port number
361  *    parv[3] = remote server
362  */
363 int m_connect(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
364 {
365   unsigned short   port;
366   unsigned short   tmpport;
367   struct ConfItem* aconf;
368   struct ConfItem* cconf;
369   struct Client*   acptr;
370   struct Jupe*     ajupe;
371
372   if (!IsPrivileged(sptr)) {
373     sendto_one(sptr, err_str(ERR_NOPRIVILEGES), me.name, parv[0]); /* XXX DEAD */
374     return -1;
375   }
376
377   if (IsLocOp(sptr) && parc > 3)        /* Only allow LocOps to make */
378     return 0;                   /* local CONNECTS --SRB      */
379
380   if (parc > 3 && MyUser(sptr)) {
381     struct Client* acptr2;
382     struct Client* acptr3;
383     if (!(acptr3 = find_match_server(parv[3]))) {
384       sendto_one(sptr, err_str(ERR_NOSUCHSERVER), me.name, parv[0], parv[3]); /* XXX DEAD */
385       return 0;
386     }
387
388     /* Look for closest matching server */
389     for (acptr2 = acptr3; acptr2 != &me; acptr2 = acptr2->serv->up)
390       if (!match(parv[3], acptr2->name))
391         acptr3 = acptr2;
392
393     parv[3] = acptr3->name;
394   }
395
396   if (hunt_server(1, cptr, sptr, /* XXX DEAD */
397                   "%s%s " TOK_CONNECT " %s %s :%s", 3, parc, parv) != HUNTED_ISME)
398     return 0;
399
400   if (parc < 2 || *parv[1] == '\0') {
401     return need_more_params(sptr, "CONNECT");
402 #if 0
403     return -1;
404 #endif
405   }
406
407   if ((acptr = FindServer(parv[1]))) {
408     if (MyUser(sptr))
409       sendto_one(sptr, ":%s NOTICE %s :Connect: Server %s %s %s.", /* XXX DEAD */
410           me.name, parv[0], parv[1], "already exists from", acptr->from->name);
411     else
412       sendto_one(sptr, "%s NOTICE %s%s :Connect: Server %s %s %s.", /* XXX DEAD */
413           NumServ(&me), NumNick(sptr), parv[1], "already exists from",
414           acptr->from->name);
415     return 0;
416   }
417
418   for (aconf = GlobalConfList; aconf; aconf = aconf->next) {
419     if (CONF_SERVER == aconf->status && 0 == match(parv[1], aconf->name))
420       break;
421   }
422 #if 0
423   /*
424    * Checked first servernames, then try hostnames.
425    */
426   if (!aconf) {
427     for (aconf = GlobalConfList; aconf; aconf = aconf->next) {
428       if (CONF_SERVER == aconf->status && 0 == match(parv[1], aconf->host))
429         break;
430     }
431   }
432 #endif
433   if (!aconf) {
434     if (MyUser(sptr))
435       sendto_one(sptr, ":%s NOTICE %s :Connect: Host %s not listed in ircd.conf", /* XXX DEAD */
436                  me.name, parv[0], parv[1]);
437     else
438       sendto_one(sptr, "%s NOTICE %s%s :Connect: Host %s not listed in ircd.conf", /* XXX DEAD */
439                  NumServ(&me), NumNick(sptr), parv[1]);
440     return 0;
441   }
442   /*
443    *  Get port number from user, if given. If not specified,
444    *  use the default from configuration structure. If missing
445    *  from there, then use the precompiled default.
446    */
447   tmpport = port = aconf->port;
448   if (parc > 2 && !BadPtr(parv[2])) {
449     if ((port = atoi(parv[2])) == 0) {
450       if (MyUser(sptr))
451         sendto_one(sptr, ":%s NOTICE %s :Connect: Invalid port number", me.name, parv[0]); /* XXX DEAD */
452       else
453         sendto_one(sptr, "%s NOTICE %s%s :Connect: Invalid port number", /* XXX DEAD */
454                    NumServ(&me), NumNick(sptr));
455       return 0;
456     }
457   }
458   else if (port == 0 && (port = PORTNUM) == 0) {
459     if (MyUser(sptr))
460       sendto_one(sptr, ":%s NOTICE %s :Connect: missing port number", /* XXX DEAD */
461                  me.name, parv[0]);
462     else
463       sendto_one(sptr, "%s NOTICE %s%s :Connect: missing port number", /* XXX DEAD */
464                  NumServ(&me), NumNick(sptr));
465     return 0;
466   }
467
468   /*
469    * Evaluate connection rules...  If no rules found, allow the
470    * connect.   Otherwise stop with the first true rule (ie: rules
471    * are ored together.  Oper connects are effected only by D
472    * lines (CRULEALL) not d lines (CRULEAUTO).
473    */
474   for (cconf = GlobalConfList; cconf; cconf = cconf->next) {
475     if ((CONF_CRULEALL == cconf->status) &&
476         (0 == match(cconf->host, aconf->name))) {
477       if (crule_eval(cconf->passwd)) {
478         if (MyUser(sptr))
479           sendto_one(sptr, ":%s NOTICE %s :Connect: Disallowed by rule: %s", /* XXX DEAD */
480                      me.name, parv[0], cconf->name);
481         else
482           sendto_one(sptr, "%s NOTICE %s%s :Connect: Disallowed by rule: %s", /* XXX DEAD */
483                      NumServ(&me), NumNick(sptr), cconf->name);
484         return 0;
485       }
486     }
487   }
488   /*
489    * Check to see if the server is juped; if it is, disallow the connect
490    */
491   if ((ajupe = jupe_find(aconf->name)) && JupeIsActive(ajupe)) {
492     sendto_one(sptr, "%s NOTICE %s%s :Connect: Server %s is juped: %s", /* XXX DEAD */
493                NumServ(&me), NumNick(sptr), JupeServer(ajupe),
494                JupeReason(ajupe));
495     return 0;
496   }
497
498   /*
499    * Notify all operators about remote connect requests
500    */
501   if (!IsAnOper(cptr)) {
502     sendto_ops_butone(0, &me, ":%s WALLOPS :Remote CONNECT %s %s from %s", /* XXX DEAD */
503                       me.name, parv[1], parv[2] ? parv[2] : "",
504                       get_client_name(sptr, HIDE_IP));
505     ircd_log(L_INFO, "CONNECT From %s : %s %d",
506              parv[0], parv[1], parv[2] ? parv[2] : "");
507   }
508   aconf->port = port;
509   if (connect_server(aconf, sptr, 0)) {
510     if (MyUser(sptr))
511       sendto_one(sptr, ":%s NOTICE %s :*** Connecting to %s.", /* XXX DEAD */
512                  me.name, parv[0], aconf->name);
513     else
514       sendto_one(sptr, "%s NOTICE %s%s :*** Connecting to %s.", /* XXX DEAD */
515                  NumServ(&me), NumNick(sptr), aconf->name);
516   }
517   else {
518     if (MyUser(sptr))
519       sendto_one(sptr, ":%s NOTICE %s :*** Connection to %s failed", /* XXX DEAD */
520                  me.name, parv[0], aconf->name);
521     else
522       sendto_one(sptr, "%s NOTICE %s%s :*** Connection to %s failed", /* XXX DEAD */
523                  NumServ(&me), NumNick(sptr), aconf->name);
524   }
525   aconf->port = tmpport;
526   return 0;
527 }
528 #endif /* 0 */
529