Author: Isomer <isomer@coders.net>
[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_features.h"
95 #include "ircd_log.h"
96 #include "ircd_reply.h"
97 #include "ircd_string.h"
98 #include "jupe.h"
99 #include "match.h"
100 #include "msg.h"
101 #include "numeric.h"
102 #include "numnicks.h"
103 #include "s_bsd.h"
104 #include "s_conf.h"
105 #include "s_user.h"
106 #include "send.h"
107
108 #include <assert.h>
109 #include <stdlib.h>
110
111 /*
112  * ms_connect - server message handler
113  * - Added by Jto 11 Feb 1989
114  *
115  *    parv[0] = sender prefix
116  *    parv[1] = servername
117  *    parv[2] = port number
118  *    parv[3] = remote server
119  */
120 int ms_connect(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
121 {
122   unsigned short   port;
123   unsigned short   tmpport;
124   const char*      rule;
125   struct ConfItem* aconf;
126   struct Client*   acptr;
127   struct Jupe*     ajupe;
128
129   assert(0 != cptr);
130   assert(0 != sptr);
131
132   if (!IsPrivileged(sptr))
133     return send_reply(sptr, ERR_NOPRIVILEGES);
134
135   if (parc < 4) {
136     /*
137      * this is coming from a server which should have already
138      * checked it's args, if we don't have parc == 4, something
139      * isn't right.
140      */
141     protocol_violation(sptr, "Too few parameters to connect");
142     return need_more_params(sptr, "CONNECT");
143   }
144
145   if (hunt_server_cmd(sptr, CMD_CONNECT, cptr, 1, "%s %s :%C", 3, parc, parv)
146       != HUNTED_ISME)
147     return 0;
148
149   /*
150    * need to find the conf entry first so we can use the server name from
151    * the conf entry instead of parv[1] to find out if the server is already
152    * present below. --Bleep
153    */
154   if (0 == (aconf = conf_find_server(parv[1]))) {
155     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Host %s not listed "
156                   "in ircd.conf", sptr, parv[1]);
157     return 0;
158   }
159   /*
160    * use aconf->name to look up the server
161    */
162   if ((acptr = FindServer(aconf->name))) {
163     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Server %s already "
164                   "exists from %s", sptr, parv[1], cli_name(cli_from(acptr)));
165     return 0;
166   }
167   /*
168    * Evaluate connection rules...  If no rules found, allow the
169    * connect.   Otherwise stop with the first true rule (ie: rules
170    * are ored together.  Oper connects are effected only by D
171    * lines (CRULEALL) not d lines (CRULEAUTO).
172    */
173   if ((rule = conf_eval_crule(aconf->name, CRULE_ALL))) {
174     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Disallowed by rule: %s", sptr, rule);
175     return 0;
176   }
177   /*
178    * Check to see if the server is juped; if it is, disallow the connect
179    */
180   if ((ajupe = jupe_find(aconf->name)) && JupeIsActive(ajupe)) {
181     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Server %s is juped: %s",
182                   sptr, JupeServer(ajupe), JupeReason(ajupe));
183     return 0;
184   }
185
186   /*
187    * Allow opers to /connect foo.* 0 bah.* to connect foo and bah
188    * using the conf's configured port
189    */
190   port = atoi(parv[2]);
191   /*
192    * save the old port
193    */
194   tmpport = aconf->port;
195   if (port) { 
196     aconf->port = port;
197   }
198   else {
199     port = aconf->port;
200   }
201   /*
202    * Notify all operators about remote connect requests
203    */
204   sendcmdto_flag_butone(&me, CMD_WALLOPS, 0, FLAGS_WALLOP,
205                         ":Remote CONNECT %s %s from %s", parv[1],
206                         parv[2] ? parv[2] : "",
207                         get_client_name(sptr, HIDE_IP));
208   log_write(LS_NETWORK, L_INFO, 0, "CONNECT From %C : %s %s", sptr, parv[1],
209             parv[2] ? parv[2] : "");
210
211   if (connect_server(aconf, sptr, 0)) {
212     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :*** Connecting to %s.", sptr,
213                   aconf->name);
214   }
215   else {
216     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :*** Connection to %s failed",
217                   sptr, aconf->name);
218   }
219   aconf->port = tmpport;
220   return 0;
221 }
222
223 /*
224  * mo_connect - oper message handler
225  * - Added by Jto 11 Feb 1989
226  *
227  *    parv[0] = sender prefix
228  *    parv[1] = servername
229  *    parv[2] = port number
230  *    parv[3] = remote server
231  */
232 int mo_connect(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
233 {
234   unsigned short   port;
235   unsigned short   tmpport;
236   const char*      rule;
237   struct ConfItem* aconf;
238   struct Client*   acptr;
239   struct Jupe*     ajupe;
240
241   assert(0 != cptr);
242   assert(cptr == sptr);
243   assert(IsAnOper(sptr));
244
245   if (parc < 2)
246     return need_more_params(sptr, "CONNECT");
247
248   if (parc > 3) {
249     /*
250      * if parc > 3, we are trying to connect two remote
251      * servers to each other
252      */
253     if (IsLocOp(sptr)) {
254       /*
255        * Only allow LocOps to make local CONNECTS --SRB
256        */
257       return 0;
258     }
259     else {
260       struct Client* acptr2;
261       struct Client* acptr3;
262
263       if (!(acptr3 = find_match_server(parv[3]))) {
264         send_reply(sptr, ERR_NOSUCHSERVER, parv[3]);
265         return 0;
266       }
267
268       /*
269        * Look for closest matching server 
270        * needed for "/connect blah 4400 *"?
271        */
272       for (acptr2 = acptr3; acptr2 != &me; acptr2 = cli_serv(acptr2)->up) {
273         if (!match(parv[3], cli_name(acptr2)))
274           acptr3 = acptr2;
275       }
276       parv[3] = cli_name(acptr3);
277       if (hunt_server_cmd(sptr, CMD_CONNECT, cptr, 1, "%s %s :%C", 3, parc,
278                           parv) != HUNTED_ISME)
279         return 0;
280     }
281   }
282   /*
283    * need to find the conf entry first so we can use the server name from
284    * the conf entry instead of parv[1] to find out if the server is already
285    * present below. --Bleep
286    */
287   if (0 == (aconf = conf_find_server(parv[1]))) {
288     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Host %s not listed "
289                   "in ircd.conf", sptr, parv[1]);
290     return 0;
291   }
292   /*
293    * use aconf->name to look up the server, see above
294    */
295   if ((acptr = FindServer(aconf->name))) {
296     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Server %s already "
297                   "exists from %s", sptr, parv[1], cli_name(cli_from(acptr)));
298     return 0;
299   }
300   /*
301    * Evaluate connection rules...  If no rules found, allow the
302    * connect.   Otherwise stop with the first true rule (ie: rules
303    * are ored together.  Oper connects are effected only by D
304    * lines (CRULEALL) not d lines (CRULEAUTO).
305    */
306   if ((rule = conf_eval_crule(aconf->name, CRULE_ALL))) {
307     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Disallowed by rule: %s", sptr, rule);
308     return 0;
309   }
310   /*
311    * Check to see if the server is juped; if it is, disallow the connect
312    */
313   if ((ajupe = jupe_find(aconf->name)) && JupeIsActive(ajupe)) {
314     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Server %s is juped: %s",
315                   sptr, JupeServer(ajupe), JupeReason(ajupe));
316     return 0;
317   }
318   /*
319    *  Get port number from user, if given. If not specified,
320    *  use the default from configuration structure. If missing
321    *  from there, then use the precompiled default.
322    */
323   port = aconf->port;
324   if (parc > 2) {
325     assert(0 != parv[2]);
326     if (0 == (port = atoi(parv[2]))) {
327       sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: Invalid port number",
328                     sptr);
329       return 0;
330     }
331   }
332   if (0 == port && 0 == (port = feature_int(FEAT_SERVER_PORT))) {
333     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :Connect: missing port number",
334                   sptr);
335     return 0;
336   }
337
338   tmpport = aconf->port;
339   aconf->port = port;
340
341   if (connect_server(aconf, sptr, 0)) {
342     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :*** Connecting to %s.", sptr,
343                   aconf->name);
344   }
345   else {
346     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :*** Connection to %s failed",
347                   sptr, aconf->name);
348   }
349   aconf->port = tmpport;
350   return 0;
351 }