repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 2f7d0c08395b3239e446841e713e0e84385200ea:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 2f7d0c08395b3239e446841e713e0e84385200ea
Author: Alexander Barton 
Date:   Mon Jan 16 00:26:12 2012 +0100

    Limit channel invite and ban lists to 50 entries

     - New function Lists_Count().
     - New limit #define MAX_HNDL_CHANNEL_LISTS = 50.
     - New numeric #define ERR_LISTFULL_MSG(478).
     - Adjust numeric RPL_ISUPPORT2_MSG(005) accordingly ("MAXLIST")

diff --git a/src/ngircd/defines.h b/src/ngircd/defines.h
index e75866811c3421358c79da33f3af4f15506e80b3..
index ..e7a14ef88959069a67f7ecb8f53c7c03c5b2071f 100644
--- a/src/ngircd/defines.h
+++ b/src/ngircd/defines.h
@@ -181,6 +181,9 @@
 /** Max. number of LIST replies. */
 #define MAX_RPL_LIST 100

+/** Max. number of elemets allowed in channel invite and ban lists. */
+#define MAX_HNDL_CHANNEL_LISTS 50
+
 /** Max. number of channel modes with arguments per MODE command. */
 #define MAX_HNDL_MODES_ARG 5

diff --git a/src/ngircd/irc-info.c b/src/ngircd/irc-info.c
index fd4cbee4948c23870dd3a3c04da2c6e8b632b3da..
index ..24f25afe4eead0694372f448ac2d751ae5d147fb 100644
--- a/src/ngircd/irc-info.c
+++ b/src/ngircd/irc-info.c
@@ -1583,7 +1583,8 @@ IRC_Send_ISUPPORT(CLIENT * Client)
 	return IRC_WriteStrClient(Client, RPL_ISUPPORT2_MSG, Client_ID(Client),
 				  CHANNEL_NAME_LEN - 1, Conf_MaxNickLength - 1,
 				  COMMAND_LEN - 23, CLIENT_AWAY_LEN - 1,
-				  COMMAND_LEN - 113, MAX_HNDL_MODES_ARG);
+				  COMMAND_LEN - 113, MAX_HNDL_MODES_ARG,
+				  MAX_HNDL_CHANNEL_LISTS);
 } /* IRC_Send_ISUPPORT */


diff --git a/src/ngircd/irc-mode.c b/src/ngircd/irc-mode.c
index bb78bcb6656c8f1a5c2c3fe219d93d9d3db0e986..
index ..c85faa04d626f42569fe83c2a7e852bdeb768062 100644
--- a/src/ngircd/irc-mode.c
+++ b/src/ngircd/irc-mode.c
@@ -863,6 +863,12 @@ Add_Ban_Invite(char what, CLIENT *Prefix, CLIENT *Client, CHANNEL *Channel,

 	if (Lists_CheckDupeMask(list, mask))
 		return CONNECTED;
+	if (Client_Type(Client) == CLIENT_USER &&
+	    Lists_Count(list) >= MAX_HNDL_CHANNEL_LISTS)
+		return IRC_WriteStrClient(Client, ERR_LISTFULL_MSG,
+					  Client_ID(Client),
+					  Channel_Name(Channel), mask,
+					  MAX_HNDL_CHANNEL_LISTS);

 	if (what == 'I') {
 		if (!Channel_AddInvite(Channel, mask, false))
diff --git a/src/ngircd/lists.c b/src/ngircd/lists.c
index fd86f3017efabea10175054619177b982f2a4670..
index ..c082f1c4c0b767713608355004cb6b41ae3fa14a 100644
--- a/src/ngircd/lists.c
+++ b/src/ngircd/lists.c
@@ -385,4 +385,26 @@ Lists_Expire(struct list_head *h, const char *ListName)
 	}
 }

+/**
+ * Return the number of entries of a list.
+ *
+ * @param h List head.
+ * @return Number of items.
+ */
+GLOBAL unsigned long
+Lists_Count(struct list_head *h)
+{
+	struct list_elem *e;
+	unsigned long count = 0;
+
+	assert(h != NULL);
+
+	e = h->first;
+	while (e) {
+		count++;
+		e = e->next;
+	}
+	return count;
+}
+
 /* -eof- */
diff --git a/src/ngircd/lists.h b/src/ngircd/lists.h
index d0b4d819e070aa10397d20387c0240c3c2b580cf..
index ..cb2e2c1a188a5dd81ec2aa7f8cd50b51aeba6f82 100644
--- a/src/ngircd/lists.h
+++ b/src/ngircd/lists.h
@@ -36,6 +36,7 @@ GLOBAL struct list_elem *Lists_CheckDupeMask PARAMS((const struct list_head *hea
 GLOBAL bool Lists_Add PARAMS((struct list_head *h, const char *Mask,
 			      time_t ValidUntil, const char *Reason));
 GLOBAL void Lists_Del PARAMS((struct list_head *head, const char *Mask));
+GLOBAL unsigned long Lists_Count PARAMS((struct list_head *h));

 GLOBAL void Lists_Free PARAMS((struct list_head *head));

diff --git a/src/ngircd/messages.h b/src/ngircd/messages.h
index 761e36df1dbcb07ddffcf0a91c61fdddd5ec64af..
index ..c5d833671c3f882973d1a9ce186ef1adec8145fa 100644
--- a/src/ngircd/messages.h
+++ b/src/ngircd/messages.h
@@ -22,7 +22,7 @@
 #define RPL_CREATED_MSG			"003 %s :This server has been started %s"
 #define RPL_MYINFO_MSG			"004 %s %s ngircd-%s %s %s"
 #define RPL_ISUPPORT1_MSG		"005 %s RFC2812 IRCD=ngIRCd CASEMAPPING=ascii PREFIX=(ov)@+ CHANTYPES=#&+ CHANMODES=bI,k,l,imnOPRstz CHANLIMIT=#&+:%d :are supported on this server"
-#define RPL_ISUPPORT2_MSG		"005 %s CHANNELLEN=%d NICKLEN=%d TOPICLEN=%d AWAYLEN=%d KICKLEN=%d MODES=%d PENALTY :are supported on this server"
+#define RPL_ISUPPORT2_MSG		"005 %s CHANNELLEN=%d NICKLEN=%d TOPICLEN=%d AWAYLEN=%d KICKLEN=%d MODES=%d MAXLIST=bI:%d PENALTY :are supported on this server"

 #define RPL_TRACELINK_MSG		"200 %s Link %s-%s %s %s V%s %ld %d %d"
 #define RPL_TRACEOPERATOR_MSG		"204 %s Oper 2 :%s"
@@ -127,6 +127,7 @@
 #define ERR_BANNEDFROMCHAN_MSG		"474 %s %s :Cannot join channel (+b)"
 #define ERR_BADCHANNELKEY_MSG		"475 %s %s :Cannot join channel (+k)"
 #define ERR_NOCHANMODES_MSG		"477 %s %s :Channel doesn't support modes"
+#define ERR_LISTFULL_MSG		"478 %s %s %s: Channel list is full (%d)"
 #define ERR_NOPRIVILEGES_MSG		"481 %s :Permission denied"
 #define ERR_CHANOPRIVSNEEDED_MSG	"482 %s %s :You are not channel operator"
 #define ERR_CANTKILLSERVER_MSG		"483 %s :You can't kill a server!"

-----END OF PAGE-----