Blob


1 /*
2 * ngIRCd -- The Next Generation IRC Daemon
3 * Copyright (c)2001,2002 by 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 * Login and logout
12 */
15 #include "portab.h"
17 static char UNUSED id[] = "$Id: irc-login.c,v 1.44 2005/06/04 12:32:09 fw Exp $";
19 #include "imp.h"
20 #include <assert.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <strings.h>
26 #include "ngircd.h"
27 #include "resolve.h"
28 #include "conn-func.h"
29 #include "conf.h"
30 #include "client.h"
31 #include "channel.h"
32 #include "log.h"
33 #include "messages.h"
34 #include "parse.h"
35 #include "irc.h"
36 #include "irc-info.h"
37 #include "irc-write.h"
38 #include "cvs-version.h"
40 #include "exp.h"
41 #include "irc-login.h"
44 LOCAL bool Hello_User PARAMS(( CLIENT *Client ));
45 LOCAL void Kill_Nick PARAMS(( char *Nick, char *Reason ));
48 GLOBAL bool
49 IRC_PASS( CLIENT *Client, REQUEST *Req )
50 {
51 assert( Client != NULL );
52 assert( Req != NULL );
54 /* Fehler liefern, wenn kein lokaler Client */
55 if( Client_Conn( Client ) <= NONE ) return IRC_WriteStrClient( Client, ERR_UNKNOWNCOMMAND_MSG, Client_ID( Client ), Req->command );
57 if(( Client_Type( Client ) == CLIENT_UNKNOWN ) && ( Req->argc == 1))
58 {
59 /* noch nicht registrierte unbekannte Verbindung */
60 Log( LOG_DEBUG, "Connection %d: got PASS command ...", Client_Conn( Client ));
62 /* Passwort speichern */
63 Client_SetPassword( Client, Req->argv[0] );
65 Client_SetType( Client, CLIENT_GOTPASS );
66 return CONNECTED;
67 }
68 else if((( Client_Type( Client ) == CLIENT_UNKNOWN ) || ( Client_Type( Client ) == CLIENT_UNKNOWNSERVER )) && (( Req->argc == 3 ) || ( Req->argc == 4 )))
69 {
70 char c2, c4, *type, *impl, *serverver, *flags, *ptr, *ircflags;
71 int protohigh, protolow;
73 /* noch nicht registrierte Server-Verbindung */
74 Log( LOG_DEBUG, "Connection %d: got PASS command (new server link) ...", Client_Conn( Client ));
76 /* Passwort speichern */
77 Client_SetPassword( Client, Req->argv[0] );
79 /* Protokollversion ermitteln */
80 if( strlen( Req->argv[1] ) >= 4 )
81 {
82 c2 = Req->argv[1][2];
83 c4 = Req->argv[1][4];
85 Req->argv[1][4] = '\0';
86 protolow = atoi( &Req->argv[1][2] );
87 Req->argv[1][2] = '\0';
88 protohigh = atoi( Req->argv[1] );
90 Req->argv[1][2] = c2;
91 Req->argv[1][4] = c4;
92 }
93 else protohigh = protolow = 0;
95 /* Protokoll-Typ */
96 if( strlen( Req->argv[1] ) > 4 ) type = &Req->argv[1][4];
97 else type = NULL;
99 /* IRC-Flags (nach RFC 2813) */
100 if( Req->argc >= 4 ) ircflags = Req->argv[3];
101 else ircflags = "";
103 /* Implementation, Version und ngIRCd-Flags */
104 impl = Req->argv[2];
105 ptr = strchr( impl, '|' );
106 if( ptr ) *ptr = '\0';
108 if( type && ( strcmp( type, PROTOIRCPLUS ) == 0 ))
110 /* auf der anderen Seite laeuft ein Server, der
111 * ebenfalls das IRC+-Protokoll versteht */
112 serverver = ptr + 1;
113 flags = strchr( serverver, ':' );
114 if( flags )
116 *flags = '\0';
117 flags++;
119 else flags = "";
120 Log( LOG_INFO, "Peer announces itself as %s-%s using protocol %d.%d/IRC+ (flags: \"%s\").", impl, serverver, protohigh, protolow, flags );
122 else
124 /* auf der anderen Seite laeuft ein Server, der
125 * nur das Originalprotokoll unterstuetzt */
126 serverver = "";
127 if( strchr( ircflags, 'Z' )) flags = "Z";
128 else flags = "";
129 Log( LOG_INFO, "Peer announces itself as \"%s\" using protocol %d.%d (flags: \"%s\").", impl, protohigh, protolow, flags );
132 Client_SetType( Client, CLIENT_GOTPASSSERVER );
133 Client_SetFlags( Client, flags );
135 return CONNECTED;
137 else if(( Client_Type( Client ) == CLIENT_UNKNOWN ) || ( Client_Type( Client ) == CLIENT_UNKNOWNSERVER ))
139 /* Falsche Anzahl Parameter? */
140 return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
142 else return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
143 } /* IRC_PASS */
146 /**
147 * IRC "NICK" command.
148 * This function implements the IRC command "NICK" which is used to register
149 * with the server, to change already registered nicknames and to introduce
150 * new users which are connected to other servers.
151 */
152 GLOBAL bool
153 IRC_NICK( CLIENT *Client, REQUEST *Req )
155 CLIENT *intr_c, *target, *c;
156 char *modes;
158 assert( Client != NULL );
159 assert( Req != NULL );
161 #ifndef STRICT_RFC
162 /* Some IRC clients, for example BitchX, send the NICK and USER
163 * commands in the wrong order ... */
164 if( Client_Type( Client ) == CLIENT_UNKNOWN
165 || Client_Type( Client ) == CLIENT_GOTPASS
166 || Client_Type( Client ) == CLIENT_GOTNICK
167 || Client_Type( Client ) == CLIENT_GOTUSER
168 || Client_Type( Client ) == CLIENT_USER
169 || ( Client_Type( Client ) == CLIENT_SERVER && Req->argc == 1 ))
170 #else
171 if( Client_Type( Client ) == CLIENT_UNKNOWN
172 || Client_Type( Client ) == CLIENT_GOTPASS
173 || Client_Type( Client ) == CLIENT_GOTNICK
174 || Client_Type( Client ) == CLIENT_USER
175 || ( Client_Type( Client ) == CLIENT_SERVER && Req->argc == 1 ))
176 #endif
178 /* User registration or change of nickname */
180 /* Wrong number of arguments? */
181 if( Req->argc != 1 )
182 return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG,
183 Client_ID( Client ),
184 Req->command );
186 /* Search "target" client */
187 if( Client_Type( Client ) == CLIENT_SERVER )
189 target = Client_Search( Req->prefix );
190 if( ! target )
191 return IRC_WriteStrClient( Client,
192 ERR_NOSUCHNICK_MSG,
193 Client_ID( Client ),
194 Req->argv[0] );
196 else
198 /* Is this a restricted client? */
199 if( Client_HasMode( Client, 'r' ))
200 return IRC_WriteStrClient( Client,
201 ERR_RESTRICTED_MSG,
202 Client_ID( Client ));
204 target = Client;
207 #ifndef STRICT_RFC
208 /* If the clients tries to change to its own nickname we won't
209 * do anything. This is how the original ircd behaves and some
210 * clients (for example Snak) expect it to be like this.
211 * But I doubt that this is "really the right thing" ... */
212 if( strcmp( Client_ID( target ), Req->argv[0] ) == 0 )
213 return CONNECTED;
214 #endif
216 /* Check that the new nickname is available. Special case:
217 * the client only changes from/to upper to lower case. */
218 if( strcasecmp( Client_ID( target ), Req->argv[0] ) != 0 )
220 if( ! Client_CheckNick( target, Req->argv[0] ))
221 return CONNECTED;
224 if(( Client_Type( target ) != CLIENT_USER )
225 && ( Client_Type( target ) != CLIENT_SERVER ))
227 /* New client */
228 Log( LOG_DEBUG, "Connection %d: got valid NICK command ...",
229 Client_Conn( Client ));
231 /* Register new nickname of this client */
232 Client_SetID( target, Req->argv[0] );
234 /* If we received a valid USER command already then
235 * register the new client! */
236 if( Client_Type( Client ) == CLIENT_GOTUSER )
237 return Hello_User( Client );
238 else
239 Client_SetType( Client, CLIENT_GOTNICK );
241 else
243 /* Nickname change */
244 if( Client_Conn( target ) > NONE )
246 /* Local client */
247 Log( LOG_INFO,
248 "User \"%s\" changed nick (connection %d): \"%s\" -> \"%s\".",
249 Client_Mask( target ), Client_Conn( target ),
250 Client_ID( target ), Req->argv[0] );
252 else
254 /* Remote client */
255 Log( LOG_DEBUG,
256 "User \"%s\" changed nick: \"%s\" -> \"%s\".",
257 Client_Mask( target ), Client_ID( target ),
258 Req->argv[0] );
261 /* Inform all users and servers (which have to know)
262 * of this nickname change */
263 if( Client_Type( Client ) == CLIENT_USER )
264 IRC_WriteStrClientPrefix( Client, Client,
265 "NICK :%s",
266 Req->argv[0] );
267 IRC_WriteStrServersPrefix( Client, target,
268 "NICK :%s", Req->argv[0] );
269 IRC_WriteStrRelatedPrefix( target, target, false,
270 "NICK :%s", Req->argv[0] );
272 /* Register old nickname for WHOWAS queries */
273 Client_RegisterWhowas( target );
275 /* Save new nickname */
276 Client_SetID( target, Req->argv[0] );
278 IRC_SetPenalty( target, 2 );
281 return CONNECTED;
283 else if( Client_Type( Client ) == CLIENT_SERVER )
285 /* Server introduces new client */
287 /* Falsche Anzahl Parameter? */
288 if( Req->argc != 7 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
290 /* Nick ueberpruefen */
291 c = Client_Search( Req->argv[0] );
292 if( c )
294 /* Der neue Nick ist auf diesem Server bereits registriert:
295 * sowohl der neue, als auch der alte Client muessen nun
296 * disconnectiert werden. */
297 Log( LOG_ERR, "Server %s introduces already registered nick \"%s\"!", Client_ID( Client ), Req->argv[0] );
298 Kill_Nick( Req->argv[0], "Nick collision" );
299 return CONNECTED;
302 /* Server, zu dem der Client connectiert ist, suchen */
303 intr_c = Client_GetFromToken( Client, atoi( Req->argv[4] ));
304 if( ! intr_c )
306 Log( LOG_ERR, "Server %s introduces nick \"%s\" on unknown server!?", Client_ID( Client ), Req->argv[0] );
307 Kill_Nick( Req->argv[0], "Unknown server" );
308 return CONNECTED;
311 /* Neue Client-Struktur anlegen */
312 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);
313 if( ! c )
315 /* Eine neue Client-Struktur konnte nicht angelegt werden.
316 * Der Client muss disconnectiert werden, damit der Netz-
317 * status konsistent bleibt. */
318 Log( LOG_ALERT, "Can't create client structure! (on connection %d)", Client_Conn( Client ));
319 Kill_Nick( Req->argv[0], "Server error" );
320 return CONNECTED;
323 modes = Client_Modes( c );
324 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": "" );
325 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": "" );
327 /* Andere Server, ausser dem Introducer, informieren */
328 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] );
330 return CONNECTED;
332 else return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
333 } /* IRC_NICK */
336 GLOBAL bool
337 IRC_USER( CLIENT *Client, REQUEST *Req )
339 #ifdef IDENTAUTH
340 char *ptr;
341 #endif
343 assert( Client != NULL );
344 assert( Req != NULL );
346 #ifndef STRICT_RFC
347 if( Client_Type( Client ) == CLIENT_GOTNICK || Client_Type( Client ) == CLIENT_GOTPASS || Client_Type( Client ) == CLIENT_UNKNOWN )
348 #else
349 if( Client_Type( Client ) == CLIENT_GOTNICK || Client_Type( Client ) == CLIENT_GOTPASS )
350 #endif
352 /* Wrong number of parameters? */
353 if( Req->argc != 4 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
355 /* User name */
356 #ifdef IDENTAUTH
357 ptr = Client_User( Client );
358 if( ! ptr || ! *ptr || *ptr == '~' ) Client_SetUser( Client, Req->argv[0], false );
359 #else
360 Client_SetUser( Client, Req->argv[0], false );
361 #endif
363 /* "Real name" or user info text: Don't set it to the empty string, the original ircd
364 * can't deal with such "real names" (e. g. "USER user * * :") ... */
365 if( *Req->argv[3] ) Client_SetInfo( Client, Req->argv[3] );
366 else Client_SetInfo( Client, "-" );
368 Log( LOG_DEBUG, "Connection %d: got valid USER command ...", Client_Conn( Client ));
369 if( Client_Type( Client ) == CLIENT_GOTNICK ) return Hello_User( Client );
370 else Client_SetType( Client, CLIENT_GOTUSER );
371 return CONNECTED;
373 else if( Client_Type( Client ) == CLIENT_USER || Client_Type( Client ) == CLIENT_SERVER || Client_Type( Client ) == CLIENT_SERVICE )
375 return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
377 else return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
378 } /* IRC_USER */
381 GLOBAL bool
382 IRC_QUIT( CLIENT *Client, REQUEST *Req )
384 CLIENT *target;
385 char quitmsg[LINE_LEN];
387 assert( Client != NULL );
388 assert( Req != NULL );
390 /* Wrong number of arguments? */
391 if( Req->argc > 1 )
392 return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
394 if (Req->argc == 1)
395 strlcpy(quitmsg, Req->argv[0], sizeof quitmsg);
397 if ( Client_Type( Client ) == CLIENT_SERVER )
399 /* Server */
400 target = Client_Search( Req->prefix );
401 if( ! target )
403 /* Den Client kennen wir nicht (mehr), also nichts zu tun. */
404 Log( LOG_WARNING, "Got QUIT from %s for unknown client!?", Client_ID( Client ));
405 return CONNECTED;
408 Client_Destroy( target, "Got QUIT command.", Req->argc == 1 ? quitmsg : NULL, true);
410 return CONNECTED;
412 else
414 if (Req->argc == 1 && quitmsg[0] != '\"') {
415 /* " " to avoid confusion */
416 strlcpy(quitmsg, "\"", sizeof quitmsg);
417 strlcat(quitmsg, Req->argv[0], sizeof quitmsg-1);
418 strlcat(quitmsg, "\"", sizeof quitmsg );
421 /* User, Service, oder noch nicht registriert */
422 Conn_Close( Client_Conn( Client ), "Got QUIT command.", Req->argc == 1 ? quitmsg : NULL, true);
424 return DISCONNECTED;
426 } /* IRC_QUIT */
429 GLOBAL bool
430 IRC_PING( CLIENT *Client, REQUEST *Req )
432 CLIENT *target, *from;
434 assert( Client != NULL );
435 assert( Req != NULL );
437 /* Falsche Anzahl Parameter? */
438 if( Req->argc < 1 ) return IRC_WriteStrClient( Client, ERR_NOORIGIN_MSG, Client_ID( Client ));
439 #ifdef STRICT_RFC
440 if( Req->argc > 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
441 #endif
443 if( Req->argc > 1 )
445 /* es wurde ein Ziel-Client angegeben */
446 target = Client_Search( Req->argv[1] );
447 if(( ! target ) || ( Client_Type( target ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[1] );
448 if( target != Client_ThisServer( ))
450 /* ok, forwarden */
451 if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_Search( Req->prefix );
452 else from = Client;
453 if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->prefix );
454 return IRC_WriteStrClientPrefix( target, from, "PING %s :%s", Client_ID( from ), Req->argv[1] );
458 Log( LOG_DEBUG, "Connection %d: got PING, sending PONG ...", Client_Conn( Client ));
459 return IRC_WriteStrClient( Client, "PONG %s :%s", Client_ID( Client_ThisServer( )), Client_ID( Client ));
460 } /* IRC_PING */
463 GLOBAL bool
464 IRC_PONG( CLIENT *Client, REQUEST *Req )
466 CLIENT *target, *from;
468 assert( Client != NULL );
469 assert( Req != NULL );
471 /* Falsche Anzahl Parameter? */
472 if( Req->argc < 1 ) return IRC_WriteStrClient( Client, ERR_NOORIGIN_MSG, Client_ID( Client ));
473 if( Req->argc > 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
475 /* forwarden? */
476 if( Req->argc == 2 )
478 target = Client_Search( Req->argv[1] );
479 if(( ! target ) || ( Client_Type( target ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[1] );
480 if( target != Client_ThisServer( ))
482 /* ok, forwarden */
483 if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_Search( Req->prefix );
484 else from = Client;
485 if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->prefix );
486 return IRC_WriteStrClientPrefix( target, from, "PONG %s :%s", Client_ID( from ), Req->argv[1] );
490 /* Der Connection-Timestamp wurde schon beim Lesen aus dem Socket
491 * aktualisiert, daher muss das hier nicht mehr gemacht werden. */
493 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 )));
494 else Log( LOG_DEBUG, "Connection %d: received PONG.", Client_Conn( Client ));
496 return CONNECTED;
497 } /* IRC_PONG */
500 LOCAL bool
501 Hello_User( CLIENT *Client )
503 #ifdef CVSDATE
504 char ver[12], vertxt[30];
505 #endif
507 assert( Client != NULL );
509 /* Check password ... */
510 if( strcmp( Client_Password( Client ), Conf_ServerPwd ) != 0 )
512 /* Bad password! */
513 Log( LOG_ERR, "User \"%s\" rejected (connection %d): Bad password!", Client_Mask( Client ), Client_Conn( Client ));
514 Conn_Close( Client_Conn( Client ), NULL, "Bad password", true);
515 return DISCONNECTED;
518 Log( LOG_NOTICE, "User \"%s\" registered (connection %d).", Client_Mask( Client ), Client_Conn( Client ));
520 /* Inform other servers */
521 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 ));
523 /* Welcome :-) */
524 if( ! IRC_WriteStrClient( Client, RPL_WELCOME_MSG, Client_ID( Client ), Client_Mask( Client ))) return false;
526 /* Version and system type */
527 #ifdef CVSDATE
528 strlcpy( ver, CVSDATE, sizeof( ver ));
529 strncpy( ver + 4, ver + 5, 2 );
530 strncpy( ver + 6, ver + 8, 3 );
531 snprintf( vertxt, sizeof( vertxt ), "%s(%s)", PACKAGE_VERSION, ver );
532 if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), vertxt, TARGET_CPU, TARGET_VENDOR, TARGET_OS )) return false;
533 #else
534 if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), PACKAGE_VERSION, TARGET_CPU, TARGET_VENDOR, TARGET_OS )) return false;
535 #endif
537 if( ! IRC_WriteStrClient( Client, RPL_CREATED_MSG, Client_ID( Client ), NGIRCd_StartStr )) return false;
538 #ifdef CVSDATE
539 if( ! IRC_WriteStrClient( Client, RPL_MYINFO_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), vertxt, USERMODES, CHANMODES )) return false;
540 #else
541 if( ! IRC_WriteStrClient( Client, RPL_MYINFO_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), PACKAGE_VERSION, USERMODES, CHANMODES )) return false;
542 #endif
544 /* Features */
545 if( ! IRC_WriteStrClient( Client, RPL_ISUPPORT_MSG, Client_ID( Client ), CLIENT_NICK_LEN - 1, CHANNEL_TOPIC_LEN - 1, CLIENT_AWAY_LEN - 1, Conf_MaxJoins )) return DISCONNECTED;
547 Client_SetType( Client, CLIENT_USER );
549 if( ! IRC_Send_LUSERS( Client )) return DISCONNECTED;
550 if( ! IRC_Show_MOTD( Client )) return DISCONNECTED;
552 /* Suspend the client for a second ... */
553 IRC_SetPenalty( Client, 1 );
555 return CONNECTED;
556 } /* Hello_User */
559 LOCAL void
560 Kill_Nick( char *Nick, char *Reason )
562 REQUEST r;
564 assert( Nick != NULL );
565 assert( Reason != NULL );
567 r.prefix = (char *)Client_ThisServer( );
568 r.argv[0] = Nick;
569 r.argv[1] = Reason;
570 r.argc = 2;
572 Log( LOG_ERR, "User(s) with nick \"%s\" will be disconnected: %s", Nick, Reason );
573 IRC_KILL( Client_ThisServer( ), &r );
574 } /* Kill_Nick */
577 /* -eof- */