]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Limit channel invite and ban lists to 50 entries
authorAlexander Barton <alex@barton.de>
Sun, 15 Jan 2012 23:26:12 +0000 (00:26 +0100)
committerAlexander Barton <alex@barton.de>
Sun, 15 Jan 2012 23:29:36 +0000 (00:29 +0100)
 - 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")

src/ngircd/defines.h
src/ngircd/irc-info.c
src/ngircd/irc-mode.c
src/ngircd/lists.c
src/ngircd/lists.h
src/ngircd/messages.h

index e75866811c3421358c79da33f3af4f15506e80b3..e7a14ef88959069a67f7ecb8f53c7c03c5b2071f 100644 (file)
 /** 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
 
index fd4cbee4948c23870dd3a3c04da2c6e8b632b3da..24f25afe4eead0694372f448ac2d751ae5d147fb 100644 (file)
@@ -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 */
 
 
index bb78bcb6656c8f1a5c2c3fe219d93d9d3db0e986..c85faa04d626f42569fe83c2a7e852bdeb768062 100644 (file)
@@ -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))
index fd86f3017efabea10175054619177b982f2a4670..c082f1c4c0b767713608355004cb6b41ae3fa14a 100644 (file)
@@ -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- */
index d0b4d819e070aa10397d20387c0240c3c2b580cf..cb2e2c1a188a5dd81ec2aa7f8cd50b51aeba6f82 100644 (file)
@@ -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));
 
index 761e36df1dbcb07ddffcf0a91c61fdddd5ec64af..c5d833671c3f882973d1a9ce186ef1adec8145fa 100644 (file)
@@ -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"
 #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!"