Initial import
[ratbox-ambernet.git] / modules / m_connect.c
blob4458fa165d4e275c6e4208b5bf723b0329034f52
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_connect.c: Connects to a remote IRC server.
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
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 2 of the License, or
12 * (at your option) any later version.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
24 * $Id: m_connect.c 21275 2005-11-21 19:45:08Z leeh $
27 #include "stdinc.h"
28 #include "client.h"
29 #include "ircd.h"
30 #include "irc_string.h"
31 #include "numeric.h"
32 #include "commio.h"
33 #include "s_conf.h"
34 #include "s_newconf.h"
35 #include "s_log.h"
36 #include "s_serv.h"
37 #include "send.h"
38 #include "msg.h"
39 #include "parse.h"
40 #include "hash.h"
41 #include "modules.h"
43 static int mo_connect(struct Client *, struct Client *, int, const char **);
44 static int ms_connect(struct Client *, struct Client *, int, const char **);
46 struct Message connect_msgtab = {
47 "CONNECT", 0, 0, 0, MFLG_SLOW,
48 {mg_unreg, mg_not_oper, {ms_connect, 4}, {ms_connect, 4}, mg_ignore, {mo_connect, 2}}
51 mapi_clist_av1 connect_clist[] = { &connect_msgtab, NULL };
52 DECLARE_MODULE_AV1(connect, NULL, NULL, connect_clist, NULL, NULL, "$Revision: 21275 $");
55 * mo_connect - CONNECT command handler
57 * Added by Jto 11 Feb 1989
59 * m_connect
60 * parv[0] = sender prefix
61 * parv[1] = servername
62 * parv[2] = port number
63 * parv[3] = remote server
65 static int
66 mo_connect(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
68 int port;
69 int tmpport;
70 struct server_conf *server_p;
71 struct Client *target_p;
73 /* always privileged with handlers */
75 if(MyConnect(source_p) && !IsOperRemote(source_p) && parc > 3)
77 sendto_one(source_p, form_str(ERR_NOPRIVS),
78 me.name, source_p->name, "remote");
79 return 0;
82 if(hunt_server(client_p, source_p, ":%s CONNECT %s %s :%s", 3, parc, parv) != HUNTED_ISME)
83 return 0;
85 if((target_p = find_server(source_p, parv[1])))
87 sendto_one(source_p, ":%s NOTICE %s :Connect: Server %s already exists from %s.",
88 me.name, parv[0], parv[1], target_p->from->name);
89 return 0;
93 * try to find the name, then host, if both fail notify ops and bail
95 if((server_p = find_server_conf(parv[1])) == NULL)
97 sendto_one(source_p,
98 "NOTICE %s :Connect: Host %s not listed in ircd.conf",
99 parv[0], parv[1]);
100 return 0;
104 * Get port number from user, if given. If not specified,
105 * use the default form configuration structure. If missing
106 * from there, then use the precompiled default.
108 tmpport = port = server_p->port;
109 if(parc > 2 && !EmptyString(parv[2]))
111 if((port = atoi(parv[2])) <= 0)
113 sendto_one(source_p, "NOTICE %s :Connect: Illegal port number", parv[0]);
114 return 0;
117 else if(port <= 0 && (port = PORTNUM) <= 0)
119 sendto_one(source_p, ":%s NOTICE %s :Connect: missing port number",
120 me.name, parv[0]);
121 return 0;
124 * Notify all operators about remote connect requests
127 ilog(L_SERVER, "CONNECT From %s : %s %s", parv[0], parv[1], parc > 2 ? parv[2] : "");
129 server_p->port = port;
131 * at this point we should be calling connect_server with a valid
132 * C:line and a valid port in the C:line
134 if(serv_connect(server_p, source_p))
135 sendto_one(source_p, ":%s NOTICE %s :*** Connecting to %s.%d",
136 me.name, parv[0], server_p->name, server_p->port);
137 else
138 sendto_one(source_p, ":%s NOTICE %s :*** Couldn't connect to %s.%d",
139 me.name, parv[0], server_p->name, server_p->port);
143 * client is either connecting with all the data it needs or has been
144 * destroyed
146 server_p->port = tmpport;
147 return 0;
151 * ms_connect - CONNECT command handler
153 * Added by Jto 11 Feb 1989
155 * m_connect
156 * parv[0] = sender prefix
157 * parv[1] = servername
158 * parv[2] = port number
159 * parv[3] = remote server
161 static int
162 ms_connect(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
164 int port;
165 int tmpport;
166 struct server_conf *server_p;
167 struct Client *target_p;
169 if(hunt_server(client_p, source_p, ":%s CONNECT %s %s :%s", 3, parc, parv) != HUNTED_ISME)
170 return 0;
172 if((target_p = find_server(NULL, parv[1])))
174 sendto_one_notice(source_p, ":Connect: Server %s already exists from %s.",
175 parv[1], target_p->from->name);
176 return 0;
180 * try to find the name, then host, if both fail notify ops and bail
182 if((server_p = find_server_conf(parv[1])) == NULL)
184 sendto_one_notice(source_p, ":Connect: Host %s not listed in ircd.conf",
185 parv[1]);
186 return 0;
190 * Get port number from user, if given. If not specified,
191 * use the default form configuration structure. If missing
192 * from there, then use the precompiled default.
194 tmpport = server_p->port;
196 port = atoi(parv[2]);
198 /* if someone sends port 0, and we have a config port.. use it */
199 if(port == 0 && server_p->port)
200 port = server_p->port;
201 else if(port <= 0)
203 sendto_one_notice(source_p, ":Connect: Illegal port number");
204 return 0;
208 * Notify all operators about remote connect requests
210 sendto_wallops_flags(UMODE_WALLOP, &me,
211 "Remote CONNECT %s %d from %s",
212 parv[1], port, source_p->name);
213 sendto_server(NULL, NULL, CAP_TS6, NOCAPS,
214 ":%s WALLOPS :Remote CONNECT %s %d from %s",
215 me.id, parv[1], port, source_p->name);
216 sendto_server(NULL, NULL, NOCAPS, CAP_TS6,
217 ":%s WALLOPS :Remote CONNECT %s %d from %s",
218 me.name, parv[1], port, source_p->name);
220 ilog(L_SERVER, "CONNECT From %s : %s %d", source_p->name, parv[1], port);
222 server_p->port = port;
224 * at this point we should be calling connect_server with a valid
225 * C:line and a valid port in the C:line
227 if(serv_connect(server_p, source_p))
228 sendto_one_notice(source_p, ":*** Connecting to %s.%d",
229 server_p->name, server_p->port);
230 else
231 sendto_one_notice(source_p, ":*** Couldn't connect to %s.%d",
232 server_p->name, server_p->port);
234 * client is either connecting with all the data it needs or has been
235 * destroyed
237 server_p->port = tmpport;
238 return 0;