]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/channel.c
Constify some of Channel_Kick()s arguments.
[ngircd-alex.git] / src / ngircd / channel.c
index c50398940a3c2c827267cc4abf8c42dc2d000631..c923404bff904382db95359a444ec6501129ec85 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
+ * Copyright (c)2001-2005 by Alexander Barton (alex@barton.de)
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: channel.c,v 1.40 2002/12/26 16:25:43 alex Exp $";
+static char UNUSED id[] = "$Id: channel.c,v 1.65 2008/02/05 16:31:35 fw Exp $";
 
 #include "imp.h"
 #include <assert.h>
 #include <stdlib.h>
 #include <string.h>
+#include <errno.h>
+#include <strings.h>
 
-#include "conn.h"
+#include "defines.h"
+#include "conn-func.h"
 #include "client.h"
 
 #include "exp.h"
@@ -47,34 +50,50 @@ static char UNUSED id[] = "$Id: channel.c,v 1.40 2002/12/26 16:25:43 alex Exp $"
 #define REMOVE_KICK 2
 
 
-LOCAL CHANNEL *My_Channels;
-LOCAL CL2CHAN *My_Cl2Chan;
+static CHANNEL *My_Channels;
+static CL2CHAN *My_Cl2Chan;
 
 
-LOCAL CL2CHAN *Get_Cl2Chan PARAMS(( CHANNEL *Chan, CLIENT *Client ));
-LOCAL CL2CHAN *Add_Client PARAMS(( CHANNEL *Chan, CLIENT *Client ));
-LOCAL BOOLEAN Remove_Client PARAMS(( INT Type, CHANNEL *Chan, CLIENT *Client, CLIENT *Origin, CHAR *Reason, BOOLEAN InformServer ));
-LOCAL CL2CHAN *Get_First_Cl2Chan PARAMS(( CLIENT *Client, CHANNEL *Chan ));
-LOCAL CL2CHAN *Get_Next_Cl2Chan PARAMS(( CL2CHAN *Start, CLIENT *Client, CHANNEL *Chan ));
-LOCAL BOOLEAN Delete_Channel PARAMS(( CHANNEL *Chan ));
+static CL2CHAN *Get_Cl2Chan PARAMS(( CHANNEL *Chan, CLIENT *Client ));
+static CL2CHAN *Add_Client PARAMS(( CHANNEL *Chan, CLIENT *Client ));
+static bool Remove_Client PARAMS(( int Type, CHANNEL *Chan, CLIENT *Client, CLIENT *Origin, const char *Reason, bool InformServer ));
+static CL2CHAN *Get_First_Cl2Chan PARAMS(( CLIENT *Client, CHANNEL *Chan ));
+static CL2CHAN *Get_Next_Cl2Chan PARAMS(( CL2CHAN *Start, CLIENT *Client, CHANNEL *Chan ));
+static bool Delete_Channel PARAMS(( CHANNEL *Chan ));
 
 
-GLOBAL VOID
-Channel_Init( VOID )
+GLOBAL void
+Channel_Init( void )
 {
        My_Channels = NULL;
        My_Cl2Chan = NULL;
 } /* Channel_Init */
 
 
-GLOBAL VOID
-Channel_InitPredefined( VOID )
+GLOBAL struct list_head *
+Channel_GetListBans(CHANNEL *c)
+{
+       assert(c != NULL);
+       return &c->list_bans;
+}
+
+
+GLOBAL struct list_head *
+Channel_GetListInvites(CHANNEL *c)
+{
+       assert(c != NULL);
+       return &c->list_invites;
+}
+
+
+GLOBAL void
+Channel_InitPredefined( void )
 {
        /* Vordefinierte persistente Channels erzeugen */
 
        CHANNEL *chan;
-       CHAR *c;
-       INT i;
+       char *c;
+       unsigned int i;
        
        for( i = 0; i < Conf_Channel_Count; i++ )
        {
@@ -85,6 +104,7 @@ Channel_InitPredefined( VOID )
                if( ! Channel_IsValidName( Conf_Channel[i].name ))
                {
                        Log( LOG_ERR, "Can't create pre-defined channel: invalid name: \"%s\"!", Conf_Channel[i].name );
+                       array_free(&Conf_Channel[i].topic);
                        continue;
                }
 
@@ -93,35 +113,48 @@ Channel_InitPredefined( VOID )
                if( chan )
                {
                        Log( LOG_INFO, "Can't create pre-defined channel \"%s\": name already in use.", Conf_Channel[i].name );
+                       array_free(&Conf_Channel[i].topic);
                        continue;
                }
-               
-               /* Channel anlegen */
-               chan = Channel_Create( Conf_Channel[i].name );
-               if( chan )
-               {
-                       Channel_ModeAdd( chan, 'P' );
-                       Channel_SetTopic( chan, Conf_Channel[i].topic );
+
+               /* Create channel */
+               chan = Channel_Create(Conf_Channel[i].name);
+               if (chan) {
+                       Channel_ModeAdd(chan, 'P');
+
+                       if (array_start(&Conf_Channel[i].topic) != NULL)
+                               Channel_SetTopic(chan, NULL,
+                                        array_start(&Conf_Channel[i].topic));
+                       array_free(&Conf_Channel[i].topic);
+
                        c = Conf_Channel[i].modes;
-                       while( *c ) Channel_ModeAdd( chan, *c++ );
-                       Log( LOG_INFO, "Created pre-defined channel \"%s\".", Conf_Channel[i].name );
+                       while (*c)
+                               Channel_ModeAdd(chan, *c++);
+
+                       Channel_SetKey(chan, Conf_Channel[i].key);
+                       Channel_SetMaxUsers(chan, Conf_Channel[i].maxusers);
+
+                       Log(LOG_INFO, "Created pre-defined channel \"%s\".",
+                                                       Conf_Channel[i].name );
                }
-               else Log( LOG_ERR, "Can't create pre-defined channel \"%s\"!", Conf_Channel[i].name );
+               else Log(LOG_ERR, "Can't create pre-defined channel \"%s\"!",
+                                                       Conf_Channel[i].name );
        }
 } /* Channel_InitPredefined */
 
 
-GLOBAL VOID
-Channel_Exit( VOID )
+GLOBAL void
+Channel_Exit( void )
 {
        CHANNEL *c, *c_next;
        CL2CHAN *cl2chan, *cl2chan_next;
-       
+
        /* Channel-Strukturen freigeben */
        c = My_Channels;
        while( c )
        {
                c_next = c->next;
+               array_free(&c->topic);
                free( c );
                c = c_next;
        }
@@ -137,66 +170,74 @@ Channel_Exit( VOID )
 } /* Channel_Exit */
 
 
-GLOBAL BOOLEAN
-Channel_Join( CLIENT *Client, CHAR *Name )
+GLOBAL bool
+Channel_Join( CLIENT *Client, char *Name )
 {
        CHANNEL *chan;
        
        assert( Client != NULL );
        assert( Name != NULL );
 
-       /* Valider Channel-Name? */
-       if( ! Channel_IsValidName( Name ))
-       {
+       if( ! Channel_IsValidName( Name )) {
                IRC_WriteStrClient( Client, ERR_NOSUCHCHANNEL_MSG, Client_ID( Client ), Name );
-               return FALSE;
+               return false;
        }
 
-       /* Channel suchen */
        chan = Channel_Search( Name );
-       if( chan )
-       {
+       if( chan ) {
                /* Ist der Client bereits Mitglied? */
-               if( Get_Cl2Chan( chan, Client )) return FALSE;
+               if( Get_Cl2Chan( chan, Client )) return false;
        }
        else
        {
                /* Gibt es noch nicht? Dann neu anlegen: */
                chan = Channel_Create( Name );
-               if( ! chan ) return FALSE;
+               if (!chan) return false;
        }
 
        /* User dem Channel hinzufuegen */
-       if( ! Add_Client( chan, Client )) return FALSE;
-       else return TRUE;
+       if( ! Add_Client( chan, Client )) return false;
+       else return true;
 } /* Channel_Join */
 
 
-GLOBAL BOOLEAN
-Channel_Part( CLIENT *Client, CLIENT *Origin, CHAR *Name, CHAR *Reason )
+/**
+ * Remove client from channel.
+ * This function lets a client lead a channel. First, the function checks
+ * if the channel exists and the client is a member of it and sends out
+ * appropriate error messages if not. The real work is done by the function
+ * Remove_Client().
+ */
+GLOBAL bool
+Channel_Part(CLIENT * Client, CLIENT * Origin, const char *Name, const char *Reason)
 {
        CHANNEL *chan;
 
-       assert( Client != NULL );
-       assert( Name != NULL );
-       assert( Reason != NULL );
+       assert(Client != NULL);
+       assert(Name != NULL);
+       assert(Reason != NULL);
 
-       /* Channel suchen */
-       chan = Channel_Search( Name );
-       if(( ! chan ) || ( ! Get_Cl2Chan( chan, Client )))
-       {
-               IRC_WriteStrClient( Client, ERR_NOSUCHCHANNEL_MSG, Client_ID( Client ), Name );
-               return FALSE;
+       chan = Channel_Search(Name);
+       if (!chan) {
+               IRC_WriteStrClient(Client, ERR_NOSUCHCHANNEL_MSG,
+                                  Client_ID(Client), Name);
+               return false;
+       }
+       if (!Get_Cl2Chan(chan, Client)) {
+               IRC_WriteStrClient(Client, ERR_NOTONCHANNEL_MSG,
+                                  Client_ID(Client), Name);
+               return false;
        }
 
-       /* User aus Channel entfernen */
-       if( ! Remove_Client( REMOVE_PART, chan, Client, Origin, Reason, TRUE )) return FALSE;
-       else return TRUE;
+       if (!Remove_Client(REMOVE_PART, chan, Client, Origin, Reason, true))
+               return false;
+       else
+               return true;
 } /* Channel_Part */
 
 
-GLOBAL VOID
-Channel_Kick( CLIENT *Client, CLIENT *Origin, CHAR *Name, CHAR *Reason )
+GLOBAL void
+Channel_Kick( CLIENT *Client, CLIENT *Origin, const char *Name, const char *Reason )
 {
        CHANNEL *chan;
 
@@ -205,7 +246,6 @@ Channel_Kick( CLIENT *Client, CLIENT *Origin, CHAR *Name, CHAR *Reason )
        assert( Name != NULL );
        assert( Reason != NULL );
 
-       /* Channel suchen */
        chan = Channel_Search( Name );
        if( ! chan )
        {
@@ -213,56 +253,56 @@ Channel_Kick( CLIENT *Client, CLIENT *Origin, CHAR *Name, CHAR *Reason )
                return;
        }
 
-       /* Ist der User Mitglied in dem Channel? */
        if( ! Channel_IsMemberOf( chan, Origin ))
        {
                IRC_WriteStrClient( Origin, ERR_NOTONCHANNEL_MSG, Client_ID( Origin ), Name );
                return;
        }
 
-       /* Ist der User Channel-Operator? */
+       /* Is User Channel-Operator? */
        if( ! strchr( Channel_UserModes( chan, Origin ), 'o' ))
        {
                IRC_WriteStrClient( Origin, ERR_CHANOPRIVSNEEDED_MSG, Client_ID( Origin ), Name);
                return;
        }
 
-       /* Ist der Ziel-User Mitglied im Channel? */
+       /* Ist the kickED User member of channel? */
        if( ! Channel_IsMemberOf( chan, Client ))
        {
                IRC_WriteStrClient( Origin, ERR_USERNOTINCHANNEL_MSG, Client_ID( Origin ), Client_ID( Client ), Name );
                return;
        }
 
-       Remove_Client( REMOVE_KICK, chan, Client, Origin, Reason, TRUE );
+       Remove_Client( REMOVE_KICK, chan, Client, Origin, Reason, true);
 } /* Channel_Kick */
 
 
-GLOBAL VOID
-Channel_Quit( CLIENT *Client, CHAR *Reason )
+GLOBAL void
+Channel_Quit( CLIENT *Client, char *Reason )
 {
        CHANNEL *c, *next_c;
 
        assert( Client != NULL );
        assert( Reason != NULL );
 
+       IRC_WriteStrRelatedPrefix( Client, Client, false, "QUIT :%s", Reason );
+
        c = My_Channels;
        while( c )
        {
                next_c = c->next;
-               Remove_Client( REMOVE_QUIT, c, Client, Client, Reason, FALSE );
+               Remove_Client( REMOVE_QUIT, c, Client, Client, Reason, false );
                c = next_c;
        }
 } /* Channel_Quit */
 
 
-GLOBAL LONG
-Channel_Count( VOID )
+GLOBAL unsigned long
+Channel_Count( void )
 {
        CHANNEL *c;
-       LONG count;
+       unsigned long count = 0;
        
-       count = 0;
        c = My_Channels;
        while( c )
        {
@@ -273,15 +313,14 @@ Channel_Count( VOID )
 } /* Channel_Count */
 
 
-GLOBAL LONG
+GLOBAL unsigned long
 Channel_MemberCount( CHANNEL *Chan )
 {
        CL2CHAN *cl2chan;
-       LONG count;
+       unsigned long count = 0;
 
        assert( Chan != NULL );
 
-       count = 0;
        cl2chan = My_Cl2Chan;
        while( cl2chan )
        {
@@ -292,17 +331,16 @@ Channel_MemberCount( CHANNEL *Chan )
 } /* Channel_MemberCount */
 
 
-GLOBAL INT
+GLOBAL int
 Channel_CountForUser( CLIENT *Client )
 {
        /* Count number of channels a user is member of. */
 
        CL2CHAN *cl2chan;
-       INT count;
+       int count = 0;
        
        assert( Client != NULL );
        
-       count = 0;
        cl2chan = My_Cl2Chan;
        while( cl2chan )
        {
@@ -314,35 +352,16 @@ Channel_CountForUser( CLIENT *Client )
 } /* Channel_CountForUser */
 
 
-GLOBAL INT
-Channel_PCount( VOID )
-{
-       /* Count the number of persistent (mode 'P') channels */
 
-       CHANNEL *chan;
-       INT count;
-
-       count = 0;
-       chan = My_Channels;
-       while( chan )
-       {
-               if( strchr( chan->modes, 'P' )) count++;
-               chan = chan->next;
-       }
-
-       return count;
-} /* Channel_PCount */
-
-
-GLOBAL CHAR *
-Channel_Name( CHANNEL *Chan )
+GLOBAL const char *
+Channel_Name( const CHANNEL *Chan )
 {
        assert( Chan != NULL );
        return Chan->name;
 } /* Channel_Name */
 
 
-GLOBAL CHAR *
+GLOBAL char *
 Channel_Modes( CHANNEL *Chan )
 {
        assert( Chan != NULL );
@@ -350,7 +369,7 @@ Channel_Modes( CHANNEL *Chan )
 } /* Channel_Modes */
 
 
-GLOBAL CHAR *
+GLOBAL char *
 Channel_Key( CHANNEL *Chan )
 {
        assert( Chan != NULL );
@@ -358,7 +377,7 @@ Channel_Key( CHANNEL *Chan )
 } /* Channel_Key */
 
 
-GLOBAL LONG
+GLOBAL unsigned long
 Channel_MaxUsers( CHANNEL *Chan )
 {
        assert( Chan != NULL );
@@ -367,7 +386,7 @@ Channel_MaxUsers( CHANNEL *Chan )
 
 
 GLOBAL CHANNEL *
-Channel_First( VOID )
+Channel_First( void )
 {
        return My_Channels;
 } /* Channel_First */
@@ -382,7 +401,7 @@ Channel_Next( CHANNEL *Chan )
 
 
 GLOBAL CHANNEL *
-Channel_Search( CHAR *Name )
+Channel_Search( const char *Name )
 {
        /* Channel-Struktur suchen */
        
@@ -456,113 +475,105 @@ Channel_GetChannel( CL2CHAN *Cl2Chan )
 } /* Channel_GetChannel */
 
 
-GLOBAL BOOLEAN
-Channel_IsValidName( CHAR *Name )
+GLOBAL bool
+Channel_IsValidName( const char *Name )
 {
-       /* Pruefen, ob Name als Channelname gueltig */
-
-       CHAR *ptr, badchars[10];
-       
        assert( Name != NULL );
 
-       if(( Name[0] != '#' ) || ( strlen( Name ) >= CHANNEL_NAME_LEN )) return FALSE;
+       if (strchr("+#", Name[0]) == NULL)
+               return false;
+       if (strlen(Name) >= CHANNEL_NAME_LEN)
+               return false;
 
-       ptr = Name;
-       strcpy( badchars, " ,:\007" );
-       while( *ptr )
-       {
-               if( strchr( badchars, *ptr )) return FALSE;
-               ptr++;
-       }
-       
-       return TRUE;
+       return Name[strcspn(Name, " ,:\007")] == 0;
 } /* Channel_IsValidName */
 
 
-GLOBAL BOOLEAN
-Channel_ModeAdd( CHANNEL *Chan, CHAR Mode )
+GLOBAL bool
+Channel_ModeAdd( CHANNEL *Chan, char Mode )
 {
-       /* Mode soll gesetzt werden. TRUE wird geliefert, wenn der
-        * Mode neu gesetzt wurde, FALSE, wenn der Channel den Mode
-        * bereits hatte. */
+       /* set Mode.
+        * If the channel already had this mode, return false.
+        * If the channel mode was newly set return true.
+        */
 
-       CHAR x[2];
+       char x[2];
 
        assert( Chan != NULL );
 
        x[0] = Mode; x[1] = '\0';
        if( ! strchr( Chan->modes, x[0] ))
        {
-               /* Client hat den Mode noch nicht -> setzen */
-               strcat( Chan->modes, x );
-               return TRUE;
+               /* Channel does not have this mode yet, set it */
+               strlcat( Chan->modes, x, sizeof( Chan->modes ));
+               return true;
        }
-       else return FALSE;
+       else return false;
 } /* Channel_ModeAdd */
 
 
-GLOBAL BOOLEAN
-Channel_ModeDel( CHANNEL *Chan, CHAR Mode )
+GLOBAL bool
+Channel_ModeDel( CHANNEL *Chan, char Mode )
 {
-       /* Mode soll geloescht werden. TRUE wird geliefert, wenn der
-        * Mode entfernt wurde, FALSE, wenn der Channel den Mode
-        * ueberhaupt nicht hatte. */
-
-       CHAR x[2], *p;
+       /* Delete mode.
+        * if the mode was removed return true.
+        * if the channel did not have the mode, return false.
+       */
+       char *p;
 
        assert( Chan != NULL );
 
-       x[0] = Mode; x[1] = '\0';
-
-       p = strchr( Chan->modes, x[0] );
-       if( ! p ) return FALSE;
+       p = strchr( Chan->modes, Mode );
+       if( ! p ) return false;
 
-       /* Client hat den Mode -> loeschen */
+       /* Channel has mode -> delete */
        while( *p )
        {
                *p = *(p + 1);
                p++;
        }
-       return TRUE;
+       return true;
 } /* Channel_ModeDel */
 
 
-GLOBAL BOOLEAN
-Channel_UserModeAdd( CHANNEL *Chan, CLIENT *Client, CHAR Mode )
+GLOBAL bool
+Channel_UserModeAdd( CHANNEL *Chan, CLIENT *Client, char Mode )
 {
-       /* Channel-User-Mode soll gesetzt werden. TRUE wird geliefert,
-        * wenn der Mode neu gesetzt wurde, FALSE, wenn der User den
-        * Channel-Mode bereits hatte. */
+       /* Set Channel-User-Mode.
+        * if mode was newly set, return true.
+        * if the User already had this channel-mode, return false.
+        */
 
        CL2CHAN *cl2chan;
-       CHAR x[2];
+       char x[2];
 
        assert( Chan != NULL );
        assert( Client != NULL );
 
        cl2chan = Get_Cl2Chan( Chan, Client );
        assert( cl2chan != NULL );
-       
+
        x[0] = Mode; x[1] = '\0';
        if( ! strchr( cl2chan->modes, x[0] ))
        {
-               /* Client hat den Mode noch nicht -> setzen */
-               strcat( cl2chan->modes, x );
-               return TRUE;
+               /* mode not set, -> set it */
+               strlcat( cl2chan->modes, x, sizeof( cl2chan->modes ));
+               return true;
        }
-       else return FALSE;
+       else return false;
 } /* Channel_UserModeAdd */
 
 
-GLOBAL BOOLEAN
-Channel_UserModeDel( CHANNEL *Chan, CLIENT *Client, CHAR Mode )
+GLOBAL bool
+Channel_UserModeDel( CHANNEL *Chan, CLIENT *Client, char Mode )
 {
-       /* Channel-User-Mode soll geloescht werden. TRUE wird geliefert,
-        * wenn der Mode entfernt wurde, FALSE, wenn der User den Channel-Mode
-        * ueberhaupt nicht hatte. */
+       /* Delete Channel-User-Mode.
+        * If Mode was removed, return true.
+        * If User did not have the Channel-Mode, return false.
+        */
 
        CL2CHAN *cl2chan;
-       CHAR x[2], *p;
+       char *p;
 
        assert( Chan != NULL );
        assert( Client != NULL );
@@ -570,26 +581,24 @@ Channel_UserModeDel( CHANNEL *Chan, CLIENT *Client, CHAR Mode )
        cl2chan = Get_Cl2Chan( Chan, Client );
        assert( cl2chan != NULL );
 
-       x[0] = Mode; x[1] = '\0';
-
-       p = strchr( cl2chan->modes, x[0] );
-       if( ! p ) return FALSE;
+       p = strchr( cl2chan->modes, Mode );
+       if( ! p ) return false;
 
-       /* Client hat den Mode -> loeschen */
+       /* Client has Mode -> delete */
        while( *p )
        {
                *p = *(p + 1);
                p++;
        }
-       return TRUE;
+       return true;
 } /* Channel_UserModeDel */
 
 
-GLOBAL CHAR *
+GLOBAL char *
 Channel_UserModes( CHANNEL *Chan, CLIENT *Client )
 {
-       /* Channel-Modes eines Users liefern */
-       
+       /* return Users' Channel-Modes */
+
        CL2CHAN *cl2chan;
 
        assert( Chan != NULL );
@@ -602,39 +611,77 @@ Channel_UserModes( CHANNEL *Chan, CLIENT *Client )
 } /* Channel_UserModes */
 
 
-GLOBAL BOOLEAN
+GLOBAL bool
 Channel_IsMemberOf( CHANNEL *Chan, CLIENT *Client )
 {
-       /* Pruefen, ob Client Mitglied in Channel ist */
+       /* Test if Client is on Channel Chan */
 
        assert( Chan != NULL );
        assert( Client != NULL );
-
-       if( Get_Cl2Chan( Chan, Client )) return TRUE;
-       else return FALSE;
+       return Get_Cl2Chan(Chan, Client) != NULL;
 } /* Channel_IsMemberOf */
 
 
-GLOBAL CHAR *
+GLOBAL char *
 Channel_Topic( CHANNEL *Chan )
 {
+       char *ret;
        assert( Chan != NULL );
-       return Chan->topic;
+       ret = array_start(&Chan->topic);
+       return ret ? ret : "";
 } /* Channel_Topic */
 
+       
+#ifndef STRICT_RFC
 
-GLOBAL VOID
-Channel_SetTopic( CHANNEL *Chan, CHAR *Topic )
+GLOBAL unsigned int
+Channel_TopicTime(CHANNEL *Chan)
 {
+       assert(Chan != NULL);
+       return (unsigned int) Chan->topic_time;
+} /* Channel_TopicTime */
+
+
+GLOBAL char *
+Channel_TopicWho(CHANNEL *Chan)
+{
+       assert(Chan != NULL);
+       return Chan->topic_who;
+} /* Channel_TopicWho */
+
+#endif
+
+
+GLOBAL void
+Channel_SetTopic(CHANNEL *Chan, CLIENT *Client, char *Topic)
+{
+       size_t len;
        assert( Chan != NULL );
        assert( Topic != NULL );
-       
-       strlcpy( Chan->topic, Topic, sizeof( Chan->topic ));
+
+       len = strlen(Topic);
+       if (len < array_bytes(&Chan->topic))
+               array_free(&Chan->topic);
+
+       if (len >= COMMAND_LEN || !array_copyb(&Chan->topic, Topic, len+1))
+               Log(LOG_WARNING, "could not set new Topic \"%s\" on %s: %s",
+                                       Topic, Chan->name, strerror(errno));
+#ifndef STRICT_RFC
+       Chan->topic_time = time(NULL);
+       if (Client != NULL && Client_Type(Client) != CLIENT_SERVER)
+               strlcpy(Chan->topic_who, Client_ID(Client),
+                       sizeof Chan->topic_who);
+       else
+               strlcpy(Chan->topic_who, DEFAULT_TOPIC_ID,
+                       sizeof Chan->topic_who);
+#else
+       (void) Client;
+#endif
 } /* Channel_SetTopic */
 
 
-GLOBAL VOID
-Channel_SetModes( CHANNEL *Chan, CHAR *Modes )
+GLOBAL void
+Channel_SetModes( CHANNEL *Chan, char *Modes )
 {
        assert( Chan != NULL );
        assert( Modes != NULL );
@@ -643,89 +690,114 @@ Channel_SetModes( CHANNEL *Chan, CHAR *Modes )
 } /* Channel_SetModes */
 
 
-GLOBAL VOID
-Channel_SetKey( CHANNEL *Chan, CHAR *Key )
+GLOBAL void
+Channel_SetKey( CHANNEL *Chan, char *Key )
 {
        assert( Chan != NULL );
        assert( Key != NULL );
 
        strlcpy( Chan->key, Key, sizeof( Chan->key ));
-       Log( LOG_DEBUG, "Channel %s: Key is now \"%s\".", Chan->name, Chan->key );
+       LogDebug("Channel %s: Key is now \"%s\".", Chan->name, Chan->key );
 } /* Channel_SetKey */
 
 
-GLOBAL VOID
-Channel_SetMaxUsers( CHANNEL *Chan, LONG Count )
+GLOBAL void
+Channel_SetMaxUsers(CHANNEL *Chan, unsigned long Count)
 {
        assert( Chan != NULL );
 
        Chan->maxusers = Count;
-       Log( LOG_DEBUG, "Channel %s: Member limit is now %ld.", Chan->name, Chan->maxusers );
+       LogDebug("Channel %s: Member limit is now %lu.", Chan->name, Chan->maxusers );
 } /* Channel_SetMaxUsers */
 
 
-GLOBAL BOOLEAN
-Channel_Write( CHANNEL *Chan, CLIENT *From, CLIENT *Client, CHAR *Text )
+static bool
+Can_Send_To_Channel(CHANNEL *Chan, CLIENT *From)
 {
-       BOOLEAN is_member, has_voice, is_op, ok;
+       bool is_member, has_voice, is_op;
 
-       /* Okay, Ziel ist ein Channel */
-       is_member = has_voice = is_op = FALSE;
-       if( Channel_IsMemberOf( Chan, From ))
-       {
-               is_member = TRUE;
-               if( strchr( Channel_UserModes( Chan, From ), 'v' )) has_voice = TRUE;
-               if( strchr( Channel_UserModes( Chan, From ), 'o' )) is_op = TRUE;
+       is_member = has_voice = is_op = false;
+
+       if (Channel_IsMemberOf(Chan, From)) {
+               is_member = true;
+               if (strchr(Channel_UserModes(Chan, From), 'v'))
+                       has_voice = true;
+               if (strchr(Channel_UserModes(Chan, From), 'o'))
+                       is_op = true;
        }
 
-       /* pruefen, ob Client in Channel schreiben darf */
-       ok = TRUE;
-       if( strchr( Channel_Modes( Chan ), 'n' ) && ( ! is_member )) ok = FALSE;
-       if( strchr( Channel_Modes( Chan ), 'm' ) && ( ! is_op ) && ( ! has_voice )) ok = FALSE;
+       /*
+        * Is the client allowed to write to channel?
+        *
+        * If channel mode n set: non-members cannot send to channel.
+        * If channel mode m set: need voice.
+        */
+       if (strchr(Channel_Modes(Chan), 'n') && !is_member)
+               return false;
 
-       if( ! ok ) return IRC_WriteStrClient( From, ERR_CANNOTSENDTOCHAN_MSG, Client_ID( From ), Channel_Name( Chan ));
+       if (is_op || has_voice)
+               return true;
 
-       /* Text senden */
-       if( Client_Conn( From ) > NONE ) Conn_UpdateIdle( Client_Conn( From ));
-       return IRC_WriteStrChannelPrefix( Client, Chan, From, TRUE, "PRIVMSG %s :%s", Channel_Name( Chan ), Text );
-} /* Channel_Write */
+       if (strchr(Channel_Modes(Chan), 'm'))
+               return false;
 
+       return !Lists_Check(&Chan->list_bans, From);
+}
 
-GLOBAL CHANNEL *
-Channel_Create( CHAR *Name )
+
+GLOBAL bool
+Channel_Write(CHANNEL *Chan, CLIENT *From, CLIENT *Client, const char *Text)
+{
+       if (!Can_Send_To_Channel(Chan, From))
+               return IRC_WriteStrClient(From, ERR_CANNOTSENDTOCHAN_MSG, Client_ID(From), Channel_Name(Chan));
+
+       if (Client_Conn(From) > NONE)
+               Conn_UpdateIdle(Client_Conn(From));
+
+       return IRC_WriteStrChannelPrefix(Client, Chan, From, true,
+                       "PRIVMSG %s :%s", Channel_Name(Chan), Text);
+}
+
+
+GLOBAL bool
+Channel_Notice(CHANNEL *Chan, CLIENT *From, CLIENT *Client, const char *Text)
 {
-       /* Neue Channel-Struktur anlegen */
+       if (!Can_Send_To_Channel(Chan, From))
+               return true; /* no error, see RFC 2812 */
+
+       if (Client_Conn(From) > NONE)
+               Conn_UpdateIdle(Client_Conn(From));
 
+       return IRC_WriteStrChannelPrefix(Client, Chan, From, true,
+                       "NOTICE %s :%s", Channel_Name(Chan), Text);
+}
+
+
+GLOBAL CHANNEL *
+Channel_Create( char *Name )
+{
+       /* Create new CHANNEL structure and add it to linked list */
        CHANNEL *c;
 
        assert( Name != NULL );
-       
-       c = malloc( sizeof( CHANNEL ));
+
+       c = (CHANNEL *)malloc( sizeof( CHANNEL ));
        if( ! c )
        {
                Log( LOG_EMERG, "Can't allocate memory! [New_Chan]" );
                return NULL;
        }
-       c->next = NULL;
+       memset( c, 0, sizeof( CHANNEL ));
        strlcpy( c->name, Name, sizeof( c->name ));
-       c->name[CHANNEL_NAME_LEN - 1] = '\0';
-       strcpy( c->modes, "" );
-       strcpy( c->topic, "" );
        c->hash = Hash( c->name );
-       strcpy( c->key, "" );
-       c->maxusers = 0;
-
-       /* Verketten */
        c->next = My_Channels;
        My_Channels = c;
-       
-       Log( LOG_DEBUG, "Created new channel structure for \"%s\".", Name );
-       
+       LogDebug("Created new channel structure for \"%s\".", Name);
        return c;
 } /* Channel_Create */
 
 
-LOCAL CL2CHAN *
+static CL2CHAN *
 Get_Cl2Chan( CHANNEL *Chan, CLIENT *Client )
 {
        CL2CHAN *cl2chan;
@@ -743,7 +815,7 @@ Get_Cl2Chan( CHANNEL *Chan, CLIENT *Client )
 } /* Get_Cl2Chan */
 
 
-LOCAL CL2CHAN *
+static CL2CHAN *
 Add_Client( CHANNEL *Chan, CLIENT *Client )
 {
        CL2CHAN *cl2chan;
@@ -752,7 +824,7 @@ Add_Client( CHANNEL *Chan, CLIENT *Client )
        assert( Client != NULL );
 
        /* neue CL2CHAN-Struktur anlegen */
-       cl2chan = malloc( sizeof( CL2CHAN ));
+       cl2chan = (CL2CHAN *)malloc( sizeof( CL2CHAN ));
        if( ! cl2chan )
        {
                Log( LOG_EMERG, "Can't allocate memory! [Add_Client]" );
@@ -772,8 +844,8 @@ Add_Client( CHANNEL *Chan, CLIENT *Client )
 } /* Add_Client */
 
 
-LOCAL BOOLEAN
-Remove_Client( INT Type, CHANNEL *Chan, CLIENT *Client, CLIENT *Origin, CHAR *Reason, BOOLEAN InformServer )
+static bool
+Remove_Client( int Type, CHANNEL *Chan, CLIENT *Client, CLIENT *Origin, const char *Reason, bool InformServer )
 {
        CL2CHAN *cl2chan, *last_cl2chan;
        CHANNEL *c;
@@ -791,7 +863,7 @@ Remove_Client( INT Type, CHANNEL *Chan, CLIENT *Client, CLIENT *Origin, CHAR *Re
                last_cl2chan = cl2chan;
                cl2chan = cl2chan->next;
        }
-       if( ! cl2chan ) return FALSE;
+       if( ! cl2chan ) return false;
 
        c = cl2chan->channel;
        assert( c != NULL );
@@ -804,26 +876,42 @@ Remove_Client( INT Type, CHANNEL *Chan, CLIENT *Client, CLIENT *Origin, CHAR *Re
        switch( Type )
        {
                case REMOVE_QUIT:
-                       /* QUIT: andere Server wurden bereits informiert, vgl. Client_Destroy();
-                        * hier also "nur" noch alle User in betroffenen Channeln infomieren */
-                       assert( InformServer == FALSE );
-                       IRC_WriteStrChannelPrefix( Origin, c, Origin, FALSE, "QUIT :%s", Reason );
-                       Log( LOG_DEBUG, "User \"%s\" left channel \"%s\" (%s).", Client_Mask( Client ), c->name, Reason );
+                       /* QUIT: other servers have already been notified, see Client_Destroy();
+                        * so only inform other clients in same channel. */
+                       assert( InformServer == false );
+                       LogDebug("User \"%s\" left channel \"%s\" (%s).",
+                                       Client_Mask( Client ), c->name, Reason );
                        break;
                case REMOVE_KICK:
-                       /* User wurde geKICKed: ggf. andere Server sowie alle betroffenen User
-                        * im entsprechenden Channel informieren */
-                       if( InformServer ) IRC_WriteStrServersPrefix( Client_NextHop( Origin ), Origin, "KICK %s %s :%s", c->name, Client_ID( Client ), Reason );
-                       IRC_WriteStrChannelPrefix( Client, c, Origin, FALSE, "KICK %s %s :%s", c->name, Client_ID( Client ), Reason );
-                       if(( Client_Conn( Client ) > NONE ) && ( Client_Type( Client ) == CLIENT_USER )) IRC_WriteStrClientPrefix( Client, Origin, "KICK %s %s :%s", c->name, Client_ID( Client ), Reason );
-                       Log( LOG_DEBUG, "User \"%s\" has been kicked of \"%s\" by \"%s\": %s.", Client_Mask( Client ), c->name, Client_ID( Origin ), Reason );
+                       /* User was KICKed: inform other servers and all users in channel */
+                       if( InformServer )
+                               IRC_WriteStrServersPrefix( Client_NextHop( Origin ),
+                                       Origin, "KICK %s %s :%s", c->name, Client_ID( Client ), Reason);
+                       IRC_WriteStrChannelPrefix(Client, c, Origin, false, "KICK %s %s :%s",
+                                                       c->name, Client_ID( Client ), Reason );
+                       if ((Client_Conn(Client) > NONE) &&
+                                       (Client_Type(Client) == CLIENT_USER))
+                       {
+                               IRC_WriteStrClientPrefix(Client, Origin, "KICK %s %s :%s",
+                                                               c->name, Client_ID( Client ), Reason);
+                       }
+                       LogDebug("User \"%s\" has been kicked off \"%s\" by \"%s\": %s.",
+                               Client_Mask( Client ), c->name, Client_ID(Origin), Reason);
                        break;
-               default:
-                       /* PART */
-                       if( InformServer ) IRC_WriteStrServersPrefix( Origin, Client, "PART %s :%s", c->name, Reason );
-                       IRC_WriteStrChannelPrefix( Origin, c, Client, FALSE, "PART %s :%s", c->name, Reason );
-                       if(( Client_Conn( Origin ) > NONE ) && ( Client_Type( Origin ) == CLIENT_USER )) IRC_WriteStrClientPrefix( Origin, Client, "PART %s :%s", c->name, Reason );
-                       Log( LOG_DEBUG, "User \"%s\" left channel \"%s\" (%s).", Client_Mask( Client ), c->name, Reason );
+               default: /* PART */
+                       if (InformServer)
+                               IRC_WriteStrServersPrefix(Origin, Client, "PART %s :%s", c->name, Reason);
+
+                       IRC_WriteStrChannelPrefix(Origin, c, Client, false, "PART %s :%s",
+                                                                       c->name, Reason);
+
+                       if ((Client_Conn(Origin) > NONE) &&
+                                       (Client_Type(Origin) == CLIENT_USER))
+                       {
+                               IRC_WriteStrClientPrefix( Origin, Client, "PART %s :%s", c->name, Reason);
+                               LogDebug("User \"%s\" left channel \"%s\" (%s).",
+                                       Client_Mask(Client), c->name, Reason);
+                       }
        }
 
        /* Wenn Channel nun leer und nicht pre-defined: loeschen */
@@ -831,19 +919,81 @@ Remove_Client( INT Type, CHANNEL *Chan, CLIENT *Client, CLIENT *Origin, CHAR *Re
        {
                if( ! Get_First_Cl2Chan( NULL, Chan )) Delete_Channel( Chan );
        }
-               
-       return TRUE;
+
+       return true;
 } /* Remove_Client */
 
 
-LOCAL CL2CHAN *
+GLOBAL bool
+Channel_AddBan(CHANNEL *c, const char *mask )
+{
+       struct list_head *h = Channel_GetListBans(c);
+       return Lists_Add(h, mask, false);
+}
+
+
+GLOBAL bool
+Channel_AddInvite(CHANNEL *c, const char *mask, bool onlyonce)
+{
+       struct list_head *h = Channel_GetListInvites(c);
+       return Lists_Add(h, mask, onlyonce);
+}
+
+
+static bool
+ShowInvitesBans(struct list_head *head, CLIENT *Client, CHANNEL *Channel, bool invite)
+{
+       struct list_elem *e;
+       char *msg = invite ? RPL_INVITELIST_MSG : RPL_BANLIST_MSG;
+       char *msg_end;
+
+       assert( Client != NULL );
+       assert( Channel != NULL );
+
+       e = Lists_GetFirst(head);
+       while (e) {
+               if( ! IRC_WriteStrClient( Client, msg, Client_ID( Client ),
+                               Channel_Name( Channel ), Lists_GetMask(e) )) return DISCONNECTED;
+               e = Lists_GetNext(e);
+       }
+
+       msg_end = invite ? RPL_ENDOFINVITELIST_MSG : RPL_ENDOFBANLIST_MSG;
+       return IRC_WriteStrClient( Client, msg_end, Client_ID( Client ), Channel_Name( Channel ));
+}
+
+
+GLOBAL bool
+Channel_ShowBans( CLIENT *Client, CHANNEL *Channel )
+{
+       struct list_head *h;
+
+       assert( Channel != NULL );
+
+       h = Channel_GetListBans(Channel);
+       return ShowInvitesBans(h, Client, Channel, false);
+}
+
+
+GLOBAL bool
+Channel_ShowInvites( CLIENT *Client, CHANNEL *Channel )
+{
+       struct list_head *h;
+
+       assert( Channel != NULL );
+
+       h = Channel_GetListInvites(Channel);
+       return ShowInvitesBans(h, Client, Channel, true);
+}
+
+
+static CL2CHAN *
 Get_First_Cl2Chan( CLIENT *Client, CHANNEL *Chan )
 {
        return Get_Next_Cl2Chan( My_Cl2Chan, Client, Chan );
 } /* Get_First_Cl2Chan */
 
 
-LOCAL CL2CHAN *
+static CL2CHAN *
 Get_Next_Cl2Chan( CL2CHAN *Start, CLIENT *Client, CHANNEL *Channel )
 {
        CL2CHAN *cl2chan;
@@ -861,11 +1011,11 @@ Get_Next_Cl2Chan( CL2CHAN *Start, CLIENT *Client, CHANNEL *Channel )
 } /* Get_Next_Cl2Chan */
 
 
-LOCAL BOOLEAN
+static bool
 Delete_Channel( CHANNEL *Chan )
 {
        /* Channel-Struktur loeschen */
-       
+
        CHANNEL *chan, *last_chan;
 
        last_chan = NULL;
@@ -876,19 +1026,20 @@ Delete_Channel( CHANNEL *Chan )
                last_chan = chan;
                chan = chan->next;
        }
-       if( ! chan ) return FALSE;
+       if( ! chan ) return false;
 
        Log( LOG_DEBUG, "Freed channel structure for \"%s\".", Chan->name );
 
        /* Invite- und Ban-Lists aufraeumen */
-       Lists_DeleteChannel( chan );
+       Lists_Free( &chan->list_bans );
+       Lists_Free( &chan->list_invites );
 
        /* Neu verketten und freigeben */
        if( last_chan ) last_chan->next = chan->next;
        else My_Channels = chan->next;
        free( chan );
-               
-       return TRUE;
+
+       return true;
 } /* Delete_Channel */