]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc-server.c
Move "ClientHost" and "ClientUserNick" to end of [Global] section
[ngircd-alex.git] / src / ngircd / irc-server.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2007 Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  */
11
12 #include "portab.h"
13
14 /**
15  * @file
16  * IRC commands for server links
17  */
18
19 #include "imp.h"
20 #include <assert.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <strings.h>
25
26 #include "defines.h"
27 #include "conn.h"
28 #include "conn-func.h"
29 #include "conn-zip.h"
30 #include "conf.h"
31 #include "channel.h"
32 #include "irc-write.h"
33 #include "lists.h"
34 #include "log.h"
35 #include "messages.h"
36 #include "parse.h"
37 #include "numeric.h"
38 #include "ngircd.h"
39 #include "irc-info.h"
40 #include "op.h"
41
42 #include "exp.h"
43 #include "irc-server.h"
44
45
46 /**
47  * Handler for the IRC command "SERVER".
48  * See RFC 2813 section 4.1.2.
49  */
50 GLOBAL bool
51 IRC_SERVER( CLIENT *Client, REQUEST *Req )
52 {
53         char str[LINE_LEN];
54         CLIENT *from, *c;
55         int i;
56         CONN_ID con;
57         
58         assert( Client != NULL );
59         assert( Req != NULL );
60
61         /* Return an error if this is not a local client */
62         if (Client_Conn(Client) <= NONE)
63                 return IRC_WriteStrClient(Client, ERR_UNKNOWNCOMMAND_MSG,
64                                           Client_ID(Client), Req->command);
65
66         if (Client_Type(Client) == CLIENT_GOTPASS ||
67             Client_Type(Client) == CLIENT_GOTPASS_2813) {
68                 /* We got a PASS command from the peer, and now a SERVER
69                  * command: the peer tries to register itself as a server. */
70                 LogDebug("Connection %d: got SERVER command (new server link) ...",
71                         Client_Conn(Client));
72
73                 if(( Req->argc != 2 ) && ( Req->argc != 3 )) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
74
75                 /* Ist this server configured on out side? */
76                 for( i = 0; i < MAX_SERVERS; i++ ) if( strcasecmp( Req->argv[0], Conf_Server[i].name ) == 0 ) break;
77                 if( i >= MAX_SERVERS )
78                 {
79                         Log( LOG_ERR, "Connection %d: Server \"%s\" not configured here!", Client_Conn( Client ), Req->argv[0] );
80                         Conn_Close( Client_Conn( Client ), NULL, "Server not configured here", true);
81                         return DISCONNECTED;
82                 }
83                 if( strcmp( Client_Password( Client ), Conf_Server[i].pwd_in ) != 0 )
84                 {
85                         /* wrong password */
86                         Log( LOG_ERR, "Connection %d: Got bad password from server \"%s\"!", Client_Conn( Client ), Req->argv[0] );
87                         Conn_Close( Client_Conn( Client ), NULL, "Bad password", true);
88                         return DISCONNECTED;
89                 }
90                 
91                 /* Is there a registered server with this ID? */
92                 if( ! Client_CheckID( Client, Req->argv[0] )) return DISCONNECTED;
93
94                 Client_SetID( Client, Req->argv[0] );
95                 Client_SetHops( Client, 1 );
96                 Client_SetInfo( Client, Req->argv[Req->argc - 1] );
97
98                 /* Is this server registering on our side, or are we connecting to
99                  * a remote server? */
100                 con = Client_Conn(Client);
101                 if (Client_Token(Client) != TOKEN_OUTBOUND) {
102                         /* Incoming connection, send user/pass */
103                         if (!IRC_WriteStrClient(Client, "PASS %s %s",
104                                                 Conf_Server[i].pwd_out,
105                                                 NGIRCd_ProtoID)
106                             || !IRC_WriteStrClient(Client, "SERVER %s 1 :%s",
107                                                    Conf_ServerName,
108                                                    Conf_ServerInfo)) {
109                                     Conn_Close(con, "Unexpected server behavior!",
110                                                NULL, false);
111                                     return DISCONNECTED;
112                         }
113                         Client_SetIntroducer(Client, Client);
114                         Client_SetToken(Client, 1);
115                 } else {
116                         /* outgoing connect, we already sent a SERVER and PASS
117                          * command to the peer */
118                         Client_SetToken(Client, atoi(Req->argv[1]));
119                 }
120
121                 /* Mark this connection as belonging to an configured server */
122                 Conf_SetServer(i, con);
123
124                 /* Check protocol level */
125                 if (Client_Type(Client) == CLIENT_GOTPASS) {
126                         /* We got a "simple" PASS command, so the peer is
127                          * using the protocol as defined in RFC 1459. */
128                         if (! (Conn_Options(con) & CONN_RFC1459))
129                                 Log(LOG_INFO,
130                                     "Switching connection %d (\"%s\") to RFC 1459 compatibility mode.",
131                                     con, Client_ID(Client));
132                         Conn_SetOption(con, CONN_RFC1459);
133                 }
134
135                 Client_SetType(Client, CLIENT_UNKNOWNSERVER);
136
137 #ifdef ZLIB
138                 if (strchr(Client_Flags(Client), 'Z') && !Zip_InitConn(con)) {
139                         Conn_Close( con, "Can't inizialize compression (zlib)!", NULL, false );
140                         return DISCONNECTED;
141                 }
142 #endif
143
144 #ifdef IRCPLUS
145                 if (strchr(Client_Flags(Client), 'H')) {
146                         LogDebug("Peer supports IRC+ extended server handshake ...");
147                         if (!IRC_Send_ISUPPORT(Client))
148                                 return DISCONNECTED;
149                         return IRC_WriteStrClient(Client, RPL_ENDOFMOTD_MSG,
150                                                   Client_ID(Client));
151                 } else {
152 #endif
153                         if (Conf_MaxNickLength != CLIENT_NICK_LEN_DEFAULT)
154                                 Log(LOG_CRIT,
155                                     "Attention: this server uses a non-standard nick length, but the peer doesn't support the IRC+ extended server handshake!");
156 #ifdef IRCPLUS
157                 }
158 #endif
159
160                 return IRC_Num_ENDOFMOTD(Client, Req);
161         }
162         else if( Client_Type( Client ) == CLIENT_SERVER )
163         {
164                 /* New server is being introduced to the network */
165
166                 if( Req->argc != 4 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
167
168                 /* check for existing server with same ID */
169                 if( ! Client_CheckID( Client, Req->argv[0] )) return DISCONNECTED;
170
171                 from = Client_Search( Req->prefix );
172                 if( ! from )
173                 {
174                         /* Uh, Server, that introduced the new server is unknown?! */
175                         Log( LOG_ALERT, "Unknown ID in prefix of SERVER: \"%s\"! (on connection %d)", Req->prefix, Client_Conn( Client ));
176                         Conn_Close( Client_Conn( Client ), NULL, "Unknown ID in prefix of SERVER", true);
177                         return DISCONNECTED;
178                 }
179
180                 c = Client_NewRemoteServer(Client, Req->argv[0], from, atoi(Req->argv[1]), atoi(Req->argv[2]), Req->argv[3], true);
181                 if (!c) {
182                         Log( LOG_ALERT, "Can't create client structure for server! (on connection %d)", Client_Conn( Client ));
183                         Conn_Close( Client_Conn( Client ), NULL, "Can't allocate client structure for remote server", true);
184                         return DISCONNECTED;
185                 }
186
187                 if(( Client_Hops( c ) > 1 ) && ( Req->prefix[0] )) snprintf( str, sizeof( str ), "connected to %s, ", Client_ID( from ));
188                 else strcpy( str, "" );
189                 Log( LOG_NOTICE|LOG_snotice, "Server \"%s\" registered (via %s, %s%d hop%s).", Client_ID( c ), Client_ID( Client ), str, Client_Hops( c ), Client_Hops( c ) > 1 ? "s": "" );
190
191                 /* notify other servers */
192                 IRC_WriteStrServersPrefix( Client, from, "SERVER %s %d %d :%s", Client_ID( c ), Client_Hops( c ) + 1, Client_MyToken( c ), Client_Info( c ));
193
194                 return CONNECTED;
195         } else
196                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
197                                           Client_ID(Client), Req->command);
198 } /* IRC_SERVER */
199
200
201 GLOBAL bool
202 IRC_NJOIN( CLIENT *Client, REQUEST *Req )
203 {
204         char nick_in[COMMAND_LEN], nick_out[COMMAND_LEN], *channame, *ptr, modes[8];
205         bool is_op, is_voiced;
206         CHANNEL *chan;
207         CLIENT *c;
208         
209         assert( Client != NULL );
210         assert( Req != NULL );
211
212         if( Req->argc != 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
213
214         strlcpy( nick_in, Req->argv[1], sizeof( nick_in ));
215         strcpy( nick_out, "" );
216
217         channame = Req->argv[0];
218         ptr = strtok( nick_in, "," );
219         while( ptr )
220         {
221                 is_op = is_voiced = false;
222                 
223                 /* cut off prefixes */
224                 while(( *ptr == '@' ) || ( *ptr == '+' ))
225                 {
226                         if( *ptr == '@' ) is_op = true;
227                         if( *ptr == '+' ) is_voiced = true;
228                         ptr++;
229                 }
230
231                 c = Client_Search( ptr );
232                 if( c )
233                 {
234                         Channel_Join( c, channame );
235                         chan = Channel_Search( channame );
236                         assert( chan != NULL );
237                         
238                         if( is_op ) Channel_UserModeAdd( chan, c, 'o' );
239                         if( is_voiced ) Channel_UserModeAdd( chan, c, 'v' );
240
241                         /* announce to channel... */
242                         IRC_WriteStrChannelPrefix( Client, chan, c, false, "JOIN :%s", channame );
243
244                         /* set Channel-User-Modes */
245                         strlcpy( modes, Channel_UserModes( chan, c ), sizeof( modes ));
246                         if( modes[0] )
247                         {
248                                 /* send modes to channel */
249                                 IRC_WriteStrChannelPrefix( Client, chan, Client, false, "MODE %s +%s %s", channame, modes, Client_ID( c ));
250                         }
251
252                         if( nick_out[0] != '\0' ) strlcat( nick_out, ",", sizeof( nick_out ));
253                         if( is_op ) strlcat( nick_out, "@", sizeof( nick_out ));
254                         if( is_voiced ) strlcat( nick_out, "+", sizeof( nick_out ));
255                         strlcat( nick_out, ptr, sizeof( nick_out ));
256                 }
257                 else Log( LOG_ERR, "Got NJOIN for unknown nick \"%s\" for channel \"%s\"!", ptr, channame );
258                 
259                 /* search for next Nick */
260                 ptr = strtok( NULL, "," );
261         }
262
263         /* forward to other servers */
264         if( nick_out[0] != '\0' ) IRC_WriteStrServersPrefix( Client, Client_ThisServer( ), "NJOIN %s :%s", Req->argv[0], nick_out );
265
266         return CONNECTED;
267 } /* IRC_NJOIN */
268
269
270 /**
271  * Handler for the IRC command "SQUIT".
272  * See RFC 2813 section 4.1.2 and RFC 2812 section 3.1.8.
273  */
274 GLOBAL bool
275 IRC_SQUIT(CLIENT * Client, REQUEST * Req)
276 {
277         char msg[COMMAND_LEN], logmsg[COMMAND_LEN];
278         CLIENT *from, *target;
279         CONN_ID con;
280
281         assert(Client != NULL);
282         assert(Req != NULL);
283
284         if (Client_Type(Client) != CLIENT_SERVER
285             && !Client_HasMode(Client, 'o'))
286                 return Op_NoPrivileges(Client, Req);
287
288         /* Bad number of arguments? */
289         if (Req->argc != 2)
290                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
291                                           Client_ID(Client), Req->command);
292
293         if (Client_Type(Client) == CLIENT_SERVER && Req->prefix) {
294                 from = Client_Search(Req->prefix);
295                 if (Client_Type(from) != CLIENT_SERVER
296                     && !Op_Check(Client, Req))
297                         return Op_NoPrivileges(Client, Req);
298         } else
299                 from = Client;
300         if (!from)
301                 return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
302                                           Client_ID(Client), Req->prefix);
303
304         Log(LOG_DEBUG, "Got SQUIT from %s for \"%s\": \"%s\" ...",
305             Client_ID(from), Req->argv[0], Req->argv[1]);
306
307         target = Client_Search(Req->argv[0]);
308         if (Client_Type(Client) != CLIENT_SERVER &&
309             target == Client_ThisServer())
310                 return Op_NoPrivileges(Client, Req);
311         if (!target) {
312                 /* The server is (already) unknown */
313                 Log(LOG_WARNING,
314                     "Got SQUIT from %s for unknown server \"%s\"!?",
315                     Client_ID(Client), Req->argv[0]);
316                 return CONNECTED;
317         }
318
319         con = Client_Conn(target);
320
321         if (Req->argv[1][0])
322                 if (Client_NextHop(from) != Client || con > NONE)
323                         snprintf(msg, sizeof(msg), "%s (SQUIT from %s)",
324                                  Req->argv[1], Client_ID(from));
325                 else
326                         strlcpy(msg, Req->argv[1], sizeof(msg));
327         else
328                 snprintf(msg, sizeof(msg), "Got SQUIT from %s",
329                          Client_ID(from));
330
331         if (con > NONE) {
332                 /* We are directly connected to the target server, so we
333                  * have to tear down the connection and to inform all the
334                  * other remaining servers in the network */
335                 IRC_SendWallops(Client_ThisServer(), Client_ThisServer(),
336                                 "Received SQUIT %s from %s: %s",
337                                 Req->argv[0], Client_ID(from),
338                                 Req->argv[1][0] ? Req->argv[1] : "-");
339                 Conn_Close(con, NULL, msg, true);
340                 if (con == Client_Conn(Client))
341                         return DISCONNECTED;
342         } else {
343                 /* This server is not directly connected, so the SQUIT must
344                  * be forwarded ... */
345                 if (Client_Type(from) != CLIENT_SERVER) {
346                         /* The origin is not an IRC server, so don't evaluate
347                          * this SQUIT but simply forward it */
348                         IRC_WriteStrClientPrefix(Client_NextHop(target),
349                             from, "SQUIT %s :%s", Req->argv[0], Req->argv[1]);
350                 } else {
351                         /* SQUIT has been generated by another server, so
352                          * remove the target server from the network! */
353                         logmsg[0] = '\0';
354                         if (!strchr(msg, '('))
355                                 snprintf(logmsg, sizeof(logmsg),
356                                          "%s (SQUIT from %s)", Req->argv[1],
357                                          Client_ID(from));
358                         Client_Destroy(target, logmsg[0] ? logmsg : msg,
359                                        msg, false);
360                 }
361         }
362         return CONNECTED;
363 } /* IRC_SQUIT */
364
365 /* -eof- */