Blob


1 /*
2 * ngIRCd -- The Next Generation IRC Daemon
3 * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 *
5 * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
6 * der GNU General Public License (GPL), wie von der Free Software Foundation
7 * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2
8 * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version.
9 * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
10 * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
11 *
12 * $Id: irc-login.c,v 1.11 2002/03/26 23:58:34 alex Exp $
13 *
14 * irc-login.c: Anmeldung und Abmeldung im IRC
15 */
18 #include "portab.h"
20 #include "imp.h"
21 #include <assert.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
26 #include "ngircd.h"
27 #include "conf.h"
28 #include "irc.h"
29 #include "irc-write.h"
30 #include "log.h"
31 #include "messages.h"
33 #include "exp.h"
34 #include "irc-login.h"
37 LOCAL BOOLEAN Hello_User( CLIENT *Client );
38 LOCAL VOID Kill_Nick( CHAR *Nick, CHAR *Reason );
41 GLOBAL BOOLEAN IRC_PASS( CLIENT *Client, REQUEST *Req )
42 {
43 assert( Client != NULL );
44 assert( Req != NULL );
46 /* Fehler liefern, wenn kein lokaler Client */
47 if( Client_Conn( Client ) <= NONE ) return IRC_WriteStrClient( Client, ERR_UNKNOWNCOMMAND_MSG, Client_ID( Client ), Req->command );
49 if(( Client_Type( Client ) == CLIENT_UNKNOWN ) && ( Req->argc == 1))
50 {
51 /* noch nicht registrierte unbekannte Verbindung */
52 Log( LOG_DEBUG, "Connection %d: got PASS command ...", Client_Conn( Client ));
54 /* Passwort speichern */
55 Client_SetPassword( Client, Req->argv[0] );
57 Client_SetType( Client, CLIENT_GOTPASS );
58 return CONNECTED;
59 }
60 else if((( Client_Type( Client ) == CLIENT_UNKNOWN ) || ( Client_Type( Client ) == CLIENT_UNKNOWNSERVER )) && (( Req->argc == 3 ) || ( Req->argc == 4 )))
61 {
62 /* noch nicht registrierte Server-Verbindung */
63 Log( LOG_DEBUG, "Connection %d: got PASS command (new server link) ...", Client_Conn( Client ));
65 /* Passwort speichern */
66 Client_SetPassword( Client, Req->argv[0] );
68 Client_SetType( Client, CLIENT_GOTPASSSERVER );
69 return CONNECTED;
70 }
71 else if(( Client_Type( Client ) == CLIENT_UNKNOWN ) || ( Client_Type( Client ) == CLIENT_UNKNOWNSERVER ))
72 {
73 /* Falsche Anzahl Parameter? */
74 return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
75 }
76 else return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
77 } /* IRC_PASS */
80 GLOBAL BOOLEAN IRC_NICK( CLIENT *Client, REQUEST *Req )
81 {
82 CLIENT *intr_c, *target, *c;
83 CHAR *modes;
85 assert( Client != NULL );
86 assert( Req != NULL );
88 /* Zumindest BitchX sendet NICK-USER in der falschen Reihenfolge. */
89 #ifndef STRICT_RFC
90 if( Client_Type( Client ) == CLIENT_UNKNOWN || Client_Type( Client ) == CLIENT_GOTPASS || Client_Type( Client ) == CLIENT_GOTNICK || Client_Type( Client ) == CLIENT_GOTUSER || Client_Type( Client ) == CLIENT_USER || ( Client_Type( Client ) == CLIENT_SERVER && Req->argc == 1 ))
91 #else
92 if( Client_Type( Client ) == CLIENT_UNKNOWN || Client_Type( Client ) == CLIENT_GOTPASS || Client_Type( Client ) == CLIENT_GOTNICK || Client_Type( Client ) == CLIENT_USER || ( Client_Type( Client ) == CLIENT_SERVER && Req->argc == 1 ))
93 #endif
94 {
95 /* User-Registrierung bzw. Nick-Aenderung */
97 /* Falsche Anzahl Parameter? */
98 if( Req->argc != 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
100 /* "Ziel-Client" ermitteln */
101 if( Client_Type( Client ) == CLIENT_SERVER )
103 target = Client_Search( Req->prefix );
104 if( ! target ) return IRC_WriteStrClient( Client, ERR_NOSUCHNICK_MSG, Client_ID( Client ), Req->argv[0] );
106 else
108 /* Ist der Client "restricted"? */
109 if( Client_HasMode( Client, 'r' )) return IRC_WriteStrClient( Client, ERR_RESTRICTED_MSG, Client_ID( Client ));
110 target = Client;
113 #ifndef STRICT_RFC
114 /* Wenn der Client zu seinem eigenen Nick wechseln will, so machen
115 * wir nichts. So macht es das Original und mind. Snak hat probleme,
116 * wenn wir es nicht so machen. Ob es so okay ist? Hm ... */
117 if( strcmp( Client_ID( target ), Req->argv[0] ) == 0 ) return CONNECTED;
118 #endif
120 /* pruefen, ob Nick bereits vergeben. Speziallfall: der Client
121 * will nur die Gross- und Kleinschreibung aendern. Das darf
122 * er natuerlich machen :-) */
123 if( strcasecmp( Client_ID( target ), Req->argv[0] ) != 0 )
125 if( ! Client_CheckNick( target, Req->argv[0] )) return CONNECTED;
128 if(( Client_Type( target ) != CLIENT_USER ) && ( Client_Type( target ) != CLIENT_SERVER ))
130 /* Neuer Client */
131 Log( LOG_DEBUG, "Connection %d: got valid NICK command ...", Client_Conn( Client ));
133 /* Client-Nick registrieren */
134 Client_SetID( target, Req->argv[0] );
136 /* schon ein USER da? Dann registrieren! */
137 if( Client_Type( Client ) == CLIENT_GOTUSER ) return Hello_User( Client );
138 else Client_SetType( Client, CLIENT_GOTNICK );
140 else
142 /* Nick-Aenderung */
143 if( Client_Conn( target ) > NONE ) Log( LOG_INFO, "User \"%s\" changed nick (connection %d): \"%s\" -> \"%s\".", Client_Mask( target ), Client_ID( target ), Req->argv[0], Client_Conn( target ));
144 else Log( LOG_DEBUG, "User \"%s\" changed nick: \"%s\" -> \"%s\".", Client_Mask( target ), Client_ID( target ), Req->argv[0] );
146 /* alle betroffenen User und Server ueber Nick-Aenderung informieren */
147 if( Client_Type( Client ) == CLIENT_USER ) IRC_WriteStrClientPrefix( Client, Client, "NICK :%s", Req->argv[0] );
148 IRC_WriteStrServersPrefix( Client, target, "NICK :%s", Req->argv[0] );
149 IRC_WriteStrRelatedPrefix( target, target, FALSE, "NICK :%s", Req->argv[0] );
151 /* neuen Client-Nick speichern */
152 Client_SetID( target, Req->argv[0] );
155 return CONNECTED;
157 else if( Client_Type( Client ) == CLIENT_SERVER )
159 /* Server fuehrt neuen Client ein */
161 /* Falsche Anzahl Parameter? */
162 if( Req->argc != 7 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
164 /* Nick ueberpruefen */
165 c = Client_Search( Req->argv[0] );
166 if( c )
168 /* Der neue Nick ist auf diesem Server bereits registriert:
169 * sowohl der neue, als auch der alte Client muessen nun
170 * disconnectiert werden. */
171 Log( LOG_ERR, "Server %s introduces already registered nick \"%s\"!", Client_ID( Client ), Req->argv[0] );
172 Kill_Nick( Req->argv[0], "Nick collision" );
173 return CONNECTED;
176 /* Server, zu dem der Client connectiert ist, suchen */
177 intr_c = Client_GetFromToken( Client, atoi( Req->argv[4] ));
178 if( ! intr_c )
180 Log( LOG_ERR, "Server %s introduces nick \"%s\" on unknown server!?", Client_ID( Client ), Req->argv[0] );
181 Kill_Nick( Req->argv[0], "Unknown server" );
182 return CONNECTED;
185 /* Neue Client-Struktur anlegen */
186 c = Client_NewRemoteUser( intr_c, Req->argv[0], atoi( Req->argv[1] ), Req->argv[2], Req->argv[3], atoi( Req->argv[4] ), Req->argv[5] + 1, Req->argv[6], TRUE );
187 if( ! c )
189 /* Eine neue Client-Struktur konnte nicht angelegt werden.
190 * Der Client muss disconnectiert werden, damit der Netz-
191 * status konsistent bleibt. */
192 Log( LOG_ALERT, "Can't create client structure! (on connection %d)", Client_Conn( Client ));
193 Kill_Nick( Req->argv[0], "Server error" );
194 return CONNECTED;
197 modes = Client_Modes( c );
198 if( *modes ) Log( LOG_DEBUG, "User \"%s\" (+%s) registered (via %s, on %s, %d hop%s).", Client_Mask( c ), modes, Client_ID( Client ), Client_ID( intr_c ), Client_Hops( c ), Client_Hops( c ) > 1 ? "s": "" );
199 else Log( LOG_DEBUG, "User \"%s\" registered (via %s, on %s, %d hop%s).", Client_Mask( c ), Client_ID( Client ), Client_ID( intr_c ), Client_Hops( c ), Client_Hops( c ) > 1 ? "s": "" );
201 /* Andere Server, ausser dem Introducer, informieren */
202 IRC_WriteStrServersPrefix( Client, Client, "NICK %s %d %s %s %d %s :%s", Req->argv[0], atoi( Req->argv[1] ) + 1, Req->argv[2], Req->argv[3], Client_MyToken( intr_c ), Req->argv[5], Req->argv[6] );
204 return CONNECTED;
206 else return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
207 } /* IRC_NICK */
210 GLOBAL BOOLEAN IRC_USER( CLIENT *Client, REQUEST *Req )
212 assert( Client != NULL );
213 assert( Req != NULL );
215 #ifndef STRICT_RFC
216 if( Client_Type( Client ) == CLIENT_GOTNICK || Client_Type( Client ) == CLIENT_GOTPASS || Client_Type( Client ) == CLIENT_UNKNOWN )
217 #else
218 if( Client_Type( Client ) == CLIENT_GOTNICK || Client_Type( Client ) == CLIENT_GOTPASS )
219 #endif
221 /* Falsche Anzahl Parameter? */
222 if( Req->argc != 4 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
224 Client_SetUser( Client, Req->argv[0], FALSE );
225 Client_SetInfo( Client, Req->argv[3] );
227 Log( LOG_DEBUG, "Connection %d: got valid USER command ...", Client_Conn( Client ));
228 if( Client_Type( Client ) == CLIENT_GOTNICK ) return Hello_User( Client );
229 else Client_SetType( Client, CLIENT_GOTUSER );
230 return CONNECTED;
232 else if( Client_Type( Client ) == CLIENT_USER || Client_Type( Client ) == CLIENT_SERVER || Client_Type( Client ) == CLIENT_SERVICE )
234 return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
236 else return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
237 } /* IRC_USER */
240 GLOBAL BOOLEAN IRC_QUIT( CLIENT *Client, REQUEST *Req )
242 CLIENT *target;
244 assert( Client != NULL );
245 assert( Req != NULL );
247 if(( Client_Type( Client ) == CLIENT_USER ) || ( Client_Type( Client ) == CLIENT_SERVICE ))
249 /* User / Service */
251 /* Falsche Anzahl Parameter? */
252 if( Req->argc > 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
254 if( Req->argc == 0 ) Conn_Close( Client_Conn( Client ), "Got QUIT command.", NULL, TRUE );
255 else Conn_Close( Client_Conn( Client ), "Got QUIT command.", Req->argv[0], TRUE );
257 return DISCONNECTED;
259 else if ( Client_Type( Client ) == CLIENT_SERVER )
261 /* Server */
263 /* Falsche Anzahl Parameter? */
264 if( Req->argc > 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
266 target = Client_Search( Req->prefix );
267 if( ! target )
269 /* Den Client kennen wir nicht (mehr), also nichts zu tun. */
270 Log( LOG_WARNING, "Got QUIT from %s for unknown client!?", Client_ID( Client ));
271 return CONNECTED;
274 if( Req->argc == 0 ) Client_Destroy( target, "Got QUIT command.", NULL, TRUE );
275 else Client_Destroy( target, "Got QUIT command.", Req->argv[0], TRUE );
277 return CONNECTED;
279 else return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
280 } /* IRC_QUIT */
283 GLOBAL BOOLEAN IRC_PING( CLIENT *Client, REQUEST *Req )
285 CLIENT *target, *from;
287 assert( Client != NULL );
288 assert( Req != NULL );
290 if(( Client_Type( Client ) != CLIENT_USER ) && ( Client_Type( Client ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
292 /* Falsche Anzahl Parameter? */
293 if( Req->argc < 1 ) return IRC_WriteStrClient( Client, ERR_NOORIGIN_MSG, Client_ID( Client ));
294 #ifdef STRICT_RFC
295 if( Req->argc > 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
296 #endif
298 if( Req->argc > 1 )
300 /* es wurde ein Ziel-Client angegeben */
301 target = Client_Search( Req->argv[1] );
302 if( ! target ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[1] );
303 if( target != Client_ThisServer( ))
305 /* ok, forwarden */
306 if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_Search( Req->prefix );
307 else from = Client;
308 if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->prefix );
309 return IRC_WriteStrClientPrefix( target, from, "PING %s :%s", Client_ID( from ), Req->argv[1] );
313 Log( LOG_DEBUG, "Connection %d: got PING, sending PONG ...", Client_Conn( Client ));
314 return IRC_WriteStrClient( Client, "PONG %s :%s", Client_ID( Client_ThisServer( )), Client_ID( Client ));
315 } /* IRC_PING */
318 GLOBAL BOOLEAN IRC_PONG( CLIENT *Client, REQUEST *Req )
320 CLIENT *target, *from;
322 assert( Client != NULL );
323 assert( Req != NULL );
325 if(( Client_Type( Client ) != CLIENT_USER ) && ( Client_Type( Client ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
327 /* Falsche Anzahl Parameter? */
328 if( Req->argc < 1 ) return IRC_WriteStrClient( Client, ERR_NOORIGIN_MSG, Client_ID( Client ));
329 if( Req->argc > 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
331 /* forwarden? */
332 if( Req->argc == 2 )
334 target = Client_Search( Req->argv[1] );
335 if( ! target ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[1] );
336 if( target != Client_ThisServer( ))
338 /* ok, forwarden */
339 if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_Search( Req->prefix );
340 else from = Client;
341 if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->prefix );
342 return IRC_WriteStrClientPrefix( target, from, "PONG %s :%s", Client_ID( from ), Req->argv[1] );
346 /* Der Connection-Timestamp wurde schon beim Lesen aus dem Socket
347 * aktualisiert, daher muss das hier nicht mehr gemacht werden. */
349 if( Client_Conn( Client ) > NONE ) Log( LOG_DEBUG, "Connection %d: received PONG. Lag: %ld seconds.", Client_Conn( Client ), time( NULL ) - Conn_LastPing( Client_Conn( Client )));
350 else Log( LOG_DEBUG, "Connection %d: received PONG.", Client_Conn( Client ));
352 return CONNECTED;
353 } /* IRC_PONG */
356 LOCAL BOOLEAN Hello_User( CLIENT *Client )
358 assert( Client != NULL );
360 /* Passwort ueberpruefen */
361 if( strcmp( Client_Password( Client ), Conf_ServerPwd ) != 0 )
363 /* Falsches Passwort */
364 Log( LOG_ERR, "User \"%s\" rejected (connection %d): Bad password!", Client_Mask( Client ), Client_Conn( Client ));
365 Conn_Close( Client_Conn( Client ), NULL, "Bad password", TRUE );
366 return DISCONNECTED;
369 Log( LOG_NOTICE, "User \"%s\" registered (connection %d).", Client_Mask( Client ), Client_Conn( Client ));
371 /* Andere Server informieren */
372 IRC_WriteStrServers( NULL, "NICK %s 1 %s %s 1 +%s :%s", Client_ID( Client ), Client_User( Client ), Client_Hostname( Client ), Client_Modes( Client ), Client_Info( Client ));
374 if( ! IRC_WriteStrClient( Client, RPL_WELCOME_MSG, Client_ID( Client ), Client_Mask( Client ))) return FALSE;
375 if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )))) return FALSE;
376 if( ! IRC_WriteStrClient( Client, RPL_CREATED_MSG, Client_ID( Client ), NGIRCd_StartStr )) return FALSE;
377 if( ! IRC_WriteStrClient( Client, RPL_MYINFO_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )))) return FALSE;
379 Client_SetType( Client, CLIENT_USER );
381 if( ! IRC_Send_LUSERS( Client )) return DISCONNECTED;
382 if( ! IRC_Show_MOTD( Client )) return DISCONNECTED;
384 return CONNECTED;
385 } /* Hello_User */
388 LOCAL VOID Kill_Nick( CHAR *Nick, CHAR *Reason )
390 CLIENT *c;
392 assert( Nick != NULL );
393 assert( Reason != NULL );
395 Log( LOG_ERR, "User(s) with nick \"%s\" will be disconnected: %s", Nick, Reason );
397 /* andere Server benachrichtigen */
398 IRC_WriteStrServers( NULL, "KILL %s :%s", Nick, Reason );
400 /* Ggf. einen eigenen Client toeten */
401 c = Client_Search( Nick );
402 if( c && ( Client_Conn( c ) != NONE )) Conn_Close( Client_Conn( c ), NULL, Reason, TRUE );
403 } /* Kill_Nick */
406 /* -eof- */