]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc-login.c
- API fuer Hash() definiert.
[ngircd-alex.git] / src / ngircd / irc-login.c
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.8 2002/03/12 14:37:52 alex Exp $
13  *
14  * irc-login.c: Anmeldung und Abmeldung im IRC
15  */
16
17
18 #include "portab.h"
19
20 #include "imp.h"
21 #include <assert.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25
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"
32
33 #include "exp.h"
34 #include "irc-login.h"
35
36
37 LOCAL BOOLEAN Hello_User( CLIENT *Client );
38 LOCAL VOID Kill_Nick( CHAR *Nick, CHAR *Reason );
39
40
41 GLOBAL BOOLEAN IRC_PASS( CLIENT *Client, REQUEST *Req )
42 {
43         assert( Client != NULL );
44         assert( Req != NULL );
45
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 );
48         
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 ));
53
54                 /* Passwort speichern */
55                 Client_SetPassword( Client, Req->argv[0] );
56
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 ));
64
65                 /* Passwort speichern */
66                 Client_SetPassword( Client, Req->argv[0] );
67
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 */
78
79
80 GLOBAL BOOLEAN IRC_NICK( CLIENT *Client, REQUEST *Req )
81 {
82         CLIENT *intr_c, *target, *c;
83         CHAR *modes;
84
85         assert( Client != NULL );
86         assert( Req != NULL );
87
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 */
96
97                 /* Falsche Anzahl Parameter? */
98                 if( Req->argc != 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
99
100                 /* "Ziel-Client" ermitteln */
101                 if( Client_Type( Client ) == CLIENT_SERVER )
102                 {
103                         target = Client_GetFromID( Req->prefix );
104                         if( ! target ) return IRC_WriteStrClient( Client, ERR_NOSUCHNICK_MSG, Client_ID( Client ), Req->argv[0] );
105                 }
106                 else
107                 {
108                         /* Ist der Client "restricted"? */
109                         if( Client_HasMode( Client, 'r' )) return IRC_WriteStrClient( Client, ERR_RESTRICTED_MSG, Client_ID( Client ));
110                         target = Client;
111                 }
112
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
119                 
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 )
124                 {
125                         if( ! Client_CheckNick( target, Req->argv[0] )) return CONNECTED;
126                 }
127
128                 if(( Client_Type( target ) != CLIENT_USER ) && ( Client_Type( target ) != CLIENT_SERVER ))
129                 {
130                         /* Neuer Client */
131                         Log( LOG_DEBUG, "Connection %d: got valid NICK command ...", Client_Conn( Client ));
132
133                         /* Client-Nick registrieren */
134                         Client_SetID( target, Req->argv[0] );
135
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 );
139                 }
140                 else
141                 {
142                         /* Nick-Aenderung */
143                         Log( LOG_INFO, "User \"%s\" changed nick: \"%s\" -> \"%s\".", Client_Mask( target ), Client_ID( target ), Req->argv[0] );
144
145                         /* alle betroffenen User und Server ueber Nick-Aenderung informieren */
146                         if( Client_Type( Client ) == CLIENT_USER ) IRC_WriteStrClientPrefix( Client, Client, "NICK :%s", Req->argv[0] );
147                         IRC_WriteStrServersPrefix( Client, target, "NICK :%s", Req->argv[0] );
148                         IRC_WriteStrRelatedPrefix( target, target, FALSE, "NICK :%s", Req->argv[0] );
149                         
150                         /* neuen Client-Nick speichern */
151                         Client_SetID( target, Req->argv[0] );
152                 }
153
154                 return CONNECTED;
155         }
156         else if( Client_Type( Client ) == CLIENT_SERVER )
157         {
158                 /* Server fuehrt neuen Client ein */
159
160                 /* Falsche Anzahl Parameter? */
161                 if( Req->argc != 7 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
162
163                 /* Nick ueberpruefen */
164                 c = Client_GetFromID( Req->argv[0] );
165                 if( c )
166                 {
167                         /* Der neue Nick ist auf diesem Server bereits registriert:
168                          * sowohl der neue, als auch der alte Client muessen nun
169                          * disconnectiert werden. */
170                         Log( LOG_ERR, "Server %s introduces already registered nick \"%s\"!", Client_ID( Client ), Req->argv[0] );
171                         Kill_Nick( Req->argv[0], "Nick collision" );
172                         return CONNECTED;
173                 }
174
175                 /* Server, zu dem der Client connectiert ist, suchen */
176                 intr_c = Client_GetFromToken( Client, atoi( Req->argv[4] ));
177                 if( ! intr_c )
178                 {
179                         Log( LOG_ERR, "Server %s introduces nick \"%s\" on unknown server!?", Client_ID( Client ), Req->argv[0] );
180                         Kill_Nick( Req->argv[0], "Unknown server" );
181                         return CONNECTED;
182                 }
183
184                 /* Neue Client-Struktur anlegen */
185                 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 );
186                 if( ! c )
187                 {
188                         /* Eine neue Client-Struktur konnte nicht angelegt werden.
189                          * Der Client muss disconnectiert werden, damit der Netz-
190                          * status konsistent bleibt. */
191                         Log( LOG_ALERT, "Can't create client structure! (on connection %d)", Client_Conn( Client ));
192                         Kill_Nick( Req->argv[0], "Server error" );
193                         return CONNECTED;
194                 }
195
196                 modes = Client_Modes( c );
197                 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": "" );
198                 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": "" );
199
200                 /* Andere Server, ausser dem Introducer, informieren */
201                 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] );
202
203                 return CONNECTED;
204         }
205         else return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
206 } /* IRC_NICK */
207
208
209 GLOBAL BOOLEAN IRC_USER( CLIENT *Client, REQUEST *Req )
210 {
211         assert( Client != NULL );
212         assert( Req != NULL );
213
214 #ifndef STRICT_RFC
215         if( Client_Type( Client ) == CLIENT_GOTNICK || Client_Type( Client ) == CLIENT_GOTPASS || Client_Type( Client ) == CLIENT_UNKNOWN )
216 #else
217         if( Client_Type( Client ) == CLIENT_GOTNICK || Client_Type( Client ) == CLIENT_GOTPASS )
218 #endif
219         {
220                 /* Falsche Anzahl Parameter? */
221                 if( Req->argc != 4 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
222
223                 Client_SetUser( Client, Req->argv[0], FALSE );
224                 Client_SetInfo( Client, Req->argv[3] );
225
226                 Log( LOG_DEBUG, "Connection %d: got valid USER command ...", Client_Conn( Client ));
227                 if( Client_Type( Client ) == CLIENT_GOTNICK ) return Hello_User( Client );
228                 else Client_SetType( Client, CLIENT_GOTUSER );
229                 return CONNECTED;
230         }
231         else if( Client_Type( Client ) == CLIENT_USER || Client_Type( Client ) == CLIENT_SERVER || Client_Type( Client ) == CLIENT_SERVICE )
232         {
233                 return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
234         }
235         else return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
236 } /* IRC_USER */
237
238
239 GLOBAL BOOLEAN IRC_QUIT( CLIENT *Client, REQUEST *Req )
240 {
241         CLIENT *target;
242         
243         assert( Client != NULL );
244         assert( Req != NULL );
245
246         if(( Client_Type( Client ) == CLIENT_USER ) || ( Client_Type( Client ) == CLIENT_SERVICE ))
247         {
248                 /* User / Service */
249                 
250                 /* Falsche Anzahl Parameter? */
251                 if( Req->argc > 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
252
253                 if( Req->argc == 0 ) Conn_Close( Client_Conn( Client ), "Got QUIT command.", NULL, TRUE );
254                 else Conn_Close( Client_Conn( Client ), "Got QUIT command.", Req->argv[0], TRUE );
255                 
256                 return DISCONNECTED;
257         }
258         else if ( Client_Type( Client ) == CLIENT_SERVER )
259         {
260                 /* Server */
261
262                 /* Falsche Anzahl Parameter? */
263                 if( Req->argc > 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
264
265                 target = Client_Search( Req->prefix );
266                 if( ! target )
267                 {
268                         /* Den Client kennen wir nicht (mehr), also nichts zu tun. */
269                         Log( LOG_WARNING, "Got QUIT from %s for unknown client!?", Client_ID( Client ));
270                         return CONNECTED;
271                 }
272
273                 if( Req->argc == 0 ) Client_Destroy( target, "Got QUIT command.", NULL, TRUE );
274                 else Client_Destroy( target, "Got QUIT command.", Req->argv[0], TRUE );
275
276                 return CONNECTED;
277         }
278         else return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
279 } /* IRC_QUIT */
280
281
282 GLOBAL BOOLEAN IRC_PING( CLIENT *Client, REQUEST *Req )
283 {
284         CLIENT *target, *from;
285
286         assert( Client != NULL );
287         assert( Req != NULL );
288
289         if(( Client_Type( Client ) != CLIENT_USER ) && ( Client_Type( Client ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
290
291         /* Falsche Anzahl Parameter? */
292         if( Req->argc < 1 ) return IRC_WriteStrClient( Client, ERR_NOORIGIN_MSG, Client_ID( Client ));
293 #ifdef STRICT_RFC
294         if( Req->argc > 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
295 #endif
296
297         if( Req->argc > 1 )
298         {
299                 /* es wurde ein Ziel-Client angegeben */
300                 target = Client_GetFromID( Req->argv[1] );
301                 if( ! target ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[1] );
302                 if( target != Client_ThisServer( ))
303                 {
304                         /* ok, forwarden */
305                         if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_GetFromID( Req->prefix );
306                         else from = Client;
307                         if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->prefix );
308                         return IRC_WriteStrClientPrefix( target, from, "PING %s :%s", Client_ID( from ), Req->argv[1] );
309                 }
310         }
311
312         Log( LOG_DEBUG, "Connection %d: got PING, sending PONG ...", Client_Conn( Client ));
313         return IRC_WriteStrClient( Client, "PONG %s :%s", Client_ID( Client_ThisServer( )), Client_ID( Client ));
314 } /* IRC_PING */
315
316
317 GLOBAL BOOLEAN IRC_PONG( CLIENT *Client, REQUEST *Req )
318 {
319         CLIENT *target, *from;
320
321         assert( Client != NULL );
322         assert( Req != NULL );
323
324         if(( Client_Type( Client ) != CLIENT_USER ) && ( Client_Type( Client ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
325
326         /* Falsche Anzahl Parameter? */
327         if( Req->argc < 1 ) return IRC_WriteStrClient( Client, ERR_NOORIGIN_MSG, Client_ID( Client ));
328         if( Req->argc > 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
329
330         /* forwarden? */
331         if( Req->argc == 2 )
332         {
333                 target = Client_GetFromID( Req->argv[1] );
334                 if( ! target ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[1] );
335                 if( target != Client_ThisServer( ))
336                 {
337                         /* ok, forwarden */
338                         if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_GetFromID( Req->prefix );
339                         else from = Client;
340                         if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->prefix );
341                         return IRC_WriteStrClientPrefix( target, from, "PONG %s :%s", Client_ID( from ), Req->argv[1] );
342                 }
343         }
344
345         /* Der Connection-Timestamp wurde schon beim Lesen aus dem Socket
346                 * aktualisiert, daher muss das hier nicht mehr gemacht werden. */
347
348         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 )));
349         else Log( LOG_DEBUG, "Connection %d: received PONG.", Client_Conn( Client ));
350
351         return CONNECTED;
352 } /* IRC_PONG */
353
354
355 LOCAL BOOLEAN Hello_User( CLIENT *Client )
356 {
357         assert( Client != NULL );
358
359         /* Passwort ueberpruefen */
360         if( strcmp( Client_Password( Client ), Conf_ServerPwd ) != 0 )
361         {
362                 /* Falsches Passwort */
363                 Log( LOG_ERR, "User \"%s\" rejected (connection %d): Bad password!", Client_Mask( Client ), Client_Conn( Client ));
364                 Conn_Close( Client_Conn( Client ), NULL, "Bad password", TRUE );
365                 return DISCONNECTED;
366         }
367
368         Log( LOG_NOTICE, "User \"%s\" registered (connection %d).", Client_Mask( Client ), Client_Conn( Client ));
369
370         /* Andere Server informieren */
371         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 ));
372
373         if( ! IRC_WriteStrClient( Client, RPL_WELCOME_MSG, Client_ID( Client ), Client_Mask( Client ))) return FALSE;
374         if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )))) return FALSE;
375         if( ! IRC_WriteStrClient( Client, RPL_CREATED_MSG, Client_ID( Client ), NGIRCd_StartStr )) return FALSE;
376         if( ! IRC_WriteStrClient( Client, RPL_MYINFO_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )))) return FALSE;
377
378         Client_SetType( Client, CLIENT_USER );
379
380         if( ! IRC_Send_LUSERS( Client )) return DISCONNECTED;
381         if( ! IRC_Show_MOTD( Client )) return DISCONNECTED;
382
383         return CONNECTED;
384 } /* Hello_User */
385
386
387 LOCAL VOID Kill_Nick( CHAR *Nick, CHAR *Reason )
388 {
389         CLIENT *c;
390
391         assert( Nick != NULL );
392         assert( Reason != NULL );
393
394         Log( LOG_ERR, "User(s) with nick \"%s\" will be disconnected: %s", Nick, Reason );
395
396         /* andere Server benachrichtigen */
397         IRC_WriteStrServers( NULL, "KILL %s :%s", Nick, Reason );
398
399         /* Ggf. einen eigenen Client toeten */
400         c = Client_GetFromID( Nick );
401         if( c && ( Client_Conn( c ) != NONE )) Conn_Close( Client_Conn( c ), NULL, Reason, TRUE );
402 } /* Kill_Nick */
403
404
405 /* -eof- */