Fixing bugs
This commit is contained in:
parent
9fa9300fa2
commit
3c5a494ddd
2 changed files with 590 additions and 309 deletions
|
@ -31,9 +31,6 @@
|
||||||
|
|
||||||
extern rb_dlink_list delay_exit;
|
extern rb_dlink_list delay_exit;
|
||||||
|
|
||||||
struct ConfItem *find_dline(struct sockaddr *addr);
|
|
||||||
struct ConfItem *find_dline_exact(struct sockaddr *addr, unsigned int bitlen);
|
|
||||||
|
|
||||||
void init_reject(void);
|
void init_reject(void);
|
||||||
int check_reject(struct Client *);
|
int check_reject(struct Client *);
|
||||||
void add_reject(struct Client *, const char *mask1, const char *mask2);
|
void add_reject(struct Client *, const char *mask1, const char *mask2);
|
||||||
|
@ -45,4 +42,3 @@ int add_unknown_ip(struct Client *client_p);
|
||||||
void del_unknown_ip(struct Client *client_p);
|
void del_unknown_ip(struct Client *client_p);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
583
src/reject.c
583
src/reject.c
|
@ -17,171 +17,213 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
||||||
* USA
|
* USA
|
||||||
*
|
*
|
||||||
* $Id: reject.c 3456 2007-05-18 19:14:18Z jilles $
|
* $Id: reject.c 25119 2008-03-13 16:57:05Z androsyn $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "stdinc.h"
|
#include "stdinc.h"
|
||||||
#include "config.h"
|
|
||||||
#include "patricia.h"
|
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "s_conf.h"
|
#include "s_conf.h"
|
||||||
#include "event.h"
|
|
||||||
#include "rb_tools.h"
|
|
||||||
#include "reject.h"
|
#include "reject.h"
|
||||||
#include "s_stats.h"
|
#include "s_stats.h"
|
||||||
#include "msg.h"
|
#include "ircd.h"
|
||||||
#include "hash.h"
|
#include "send.h"
|
||||||
|
#include "numeric.h"
|
||||||
|
#include "parse.h"
|
||||||
|
#include "hostmask.h"
|
||||||
|
|
||||||
static patricia_tree_t *reject_tree;
|
static rb_patricia_tree_t *global_tree;
|
||||||
rb_dlink_list delay_exit;
|
static rb_patricia_tree_t *reject_tree;
|
||||||
|
static rb_patricia_tree_t *dline_tree;
|
||||||
|
static rb_patricia_tree_t *eline_tree;
|
||||||
|
static rb_dlink_list delay_exit;
|
||||||
static rb_dlink_list reject_list;
|
static rb_dlink_list reject_list;
|
||||||
|
static rb_dlink_list throttle_list;
|
||||||
|
static rb_patricia_tree_t *throttle_tree;
|
||||||
|
static void throttle_expires(void *unused);
|
||||||
|
|
||||||
static patricia_tree_t *unknown_tree;
|
|
||||||
|
|
||||||
struct reject_data
|
typedef struct _reject_data
|
||||||
{
|
{
|
||||||
rb_dlink_node rnode;
|
rb_dlink_node rnode;
|
||||||
time_t time;
|
time_t time;
|
||||||
unsigned int count;
|
unsigned int count;
|
||||||
uint32_t mask_hashv;
|
} reject_t;
|
||||||
};
|
|
||||||
|
|
||||||
static patricia_tree_t *unknown_tree;
|
typedef struct _delay_data
|
||||||
|
{
|
||||||
|
rb_dlink_node node;
|
||||||
|
rb_fde_t *F;
|
||||||
|
} delay_t;
|
||||||
|
|
||||||
|
typedef struct _throttle
|
||||||
|
{
|
||||||
|
rb_dlink_node node;
|
||||||
|
time_t last;
|
||||||
|
int count;
|
||||||
|
} throttle_t;
|
||||||
|
|
||||||
|
typedef struct _global_data
|
||||||
|
{
|
||||||
|
int count;
|
||||||
|
} global_t;
|
||||||
|
|
||||||
|
|
||||||
|
static rb_patricia_node_t *
|
||||||
|
add_ipline(struct ConfItem *aconf, rb_patricia_tree_t *tree, struct sockaddr *addr, int cidr)
|
||||||
|
{
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
pnode = make_and_lookup_ip(tree, addr, cidr);
|
||||||
|
if(pnode == NULL)
|
||||||
|
return NULL;
|
||||||
|
aconf->pnode = pnode;
|
||||||
|
pnode->data = aconf;
|
||||||
|
return (pnode);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
add_dline(struct ConfItem *aconf)
|
||||||
|
{
|
||||||
|
struct rb_sockaddr_storage st;
|
||||||
|
int bitlen;
|
||||||
|
if(parse_netmask(aconf->host, (struct sockaddr *)&st, &bitlen) == HM_HOST)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
if(add_ipline(aconf, dline_tree, (struct sockaddr *)&st, bitlen) != NULL)
|
||||||
|
return 1;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
add_eline(struct ConfItem *aconf)
|
||||||
|
{
|
||||||
|
struct rb_sockaddr_storage st;
|
||||||
|
int bitlen;
|
||||||
|
if(parse_netmask(aconf->host, (struct sockaddr *)&st, &bitlen) == HM_HOST)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
if(add_ipline(aconf, eline_tree, (struct sockaddr *)&st, bitlen) != NULL)
|
||||||
|
return 1;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned long
|
||||||
|
delay_exit_length(void)
|
||||||
|
{
|
||||||
|
return rb_dlink_list_length(&delay_exit);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
reject_exit(void *unused)
|
reject_exit(void *unused)
|
||||||
{
|
{
|
||||||
struct Client *client_p;
|
|
||||||
rb_dlink_node *ptr, *ptr_next;
|
rb_dlink_node *ptr, *ptr_next;
|
||||||
|
delay_t *ddata;
|
||||||
|
static const char *errbuf = "ERROR :Closing Link: (*** Banned (cache))\r\n";
|
||||||
|
|
||||||
RB_DLINK_FOREACH_SAFE(ptr, ptr_next, delay_exit.head)
|
RB_DLINK_FOREACH_SAFE(ptr, ptr_next, delay_exit.head)
|
||||||
{
|
{
|
||||||
client_p = ptr->data;
|
ddata = ptr->data;
|
||||||
if(IsDead(client_p))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
/* this MUST be here, to prevent the possibility
|
rb_write(ddata->F, errbuf, strlen(errbuf));
|
||||||
* sendto_one() generates a write error, and then a client
|
rb_close(ddata->F);
|
||||||
* ends up on the dead_list and the abort_list --fl
|
rb_free(ddata);
|
||||||
*
|
|
||||||
* new disconnect notice stolen from ircu --nenolod
|
|
||||||
* no, this only happens when someone's IP has some
|
|
||||||
* ban on it and rejects them rather longer than the
|
|
||||||
* ircu message suggests --jilles
|
|
||||||
*/
|
|
||||||
if(!IsIOError(client_p))
|
|
||||||
{
|
|
||||||
if(IsExUnknown(client_p))
|
|
||||||
sendto_one(client_p, "ERROR :Closing Link: %s (*** Too many unknown connections)", client_p->host);
|
|
||||||
else
|
|
||||||
sendto_one(client_p, "ERROR :Closing Link: %s (*** Banned (cache))", client_p->host);
|
|
||||||
}
|
|
||||||
close_connection(client_p);
|
|
||||||
SetDead(client_p);
|
|
||||||
rb_dlinkAddAlloc(client_p, &dead_list);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
delay_exit.head = delay_exit.tail = NULL;
|
delay_exit.head = delay_exit.tail = NULL;
|
||||||
delay_exit.length = 0;
|
delay_exit.length = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
reject_expires(void *unused)
|
reject_expires(void *unused)
|
||||||
{
|
{
|
||||||
rb_dlink_node *ptr, *next;
|
rb_dlink_node *ptr, *next;
|
||||||
patricia_node_t *pnode;
|
rb_patricia_node_t *pnode;
|
||||||
struct reject_data *rdata;
|
reject_t *rdata;
|
||||||
|
|
||||||
RB_DLINK_FOREACH_SAFE(ptr, next, reject_list.head)
|
RB_DLINK_FOREACH_SAFE(ptr, next, reject_list.head)
|
||||||
{
|
{
|
||||||
pnode = ptr->data;
|
pnode = ptr->data;
|
||||||
rdata = pnode->data;
|
rdata = pnode->data;
|
||||||
|
|
||||||
if(rdata->time + ConfigFileEntry.reject_duration > CurrentTime)
|
if(rdata->time + ConfigFileEntry.reject_duration > rb_current_time())
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
rb_dlinkDelete(ptr, &reject_list);
|
rb_dlinkDelete(ptr, &reject_list);
|
||||||
MyFree(rdata);
|
rb_free(rdata);
|
||||||
patricia_remove(reject_tree, pnode);
|
rb_patricia_remove(reject_tree, pnode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
init_reject(void)
|
init_reject(void)
|
||||||
{
|
{
|
||||||
reject_tree = New_Patricia(PATRICIA_BITS);
|
reject_tree = rb_new_patricia(PATRICIA_BITS);
|
||||||
unknown_tree = New_Patricia(PATRICIA_BITS);
|
dline_tree = rb_new_patricia(PATRICIA_BITS);
|
||||||
eventAdd("reject_exit", reject_exit, NULL, DELAYED_EXIT_TIME);
|
eline_tree = rb_new_patricia(PATRICIA_BITS);
|
||||||
eventAdd("reject_expires", reject_expires, NULL, 60);
|
throttle_tree = rb_new_patricia(PATRICIA_BITS);
|
||||||
|
global_tree = rb_new_patricia(PATRICIA_BITS);
|
||||||
|
rb_event_add("reject_exit", reject_exit, NULL, DELAYED_EXIT_TIME);
|
||||||
|
rb_event_add("reject_expires", reject_expires, NULL, 60);
|
||||||
|
rb_event_add("throttle_expires", throttle_expires, NULL, 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
add_reject(struct Client *client_p, const char *mask1, const char *mask2)
|
add_reject(struct Client *client_p)
|
||||||
{
|
{
|
||||||
patricia_node_t *pnode;
|
rb_patricia_node_t *pnode;
|
||||||
struct reject_data *rdata;
|
reject_t *rdata;
|
||||||
uint32_t hashv;
|
|
||||||
|
|
||||||
/* Reject is disabled */
|
/* Reject is disabled */
|
||||||
if(ConfigFileEntry.reject_after_count == 0 || ConfigFileEntry.reject_ban_time == 0)
|
if(ConfigFileEntry.reject_after_count == 0 || ConfigFileEntry.reject_duration == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
hashv = 0;
|
if((pnode = rb_match_ip(reject_tree, (struct sockaddr *)&client_p->localClient->ip)) != NULL)
|
||||||
if (mask1 != NULL)
|
|
||||||
hashv ^= fnv_hash_upper(mask1, 32);
|
|
||||||
if (mask2 != NULL)
|
|
||||||
hashv ^= fnv_hash_upper(mask2, 32);
|
|
||||||
|
|
||||||
if((pnode = match_ip(reject_tree, (struct sockaddr *)&client_p->localClient->ip)) != NULL)
|
|
||||||
{
|
{
|
||||||
rdata = pnode->data;
|
rdata = pnode->data;
|
||||||
rdata->time = CurrentTime;
|
rdata->time = rb_current_time();
|
||||||
rdata->count++;
|
rdata->count++;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int bitlen = 32;
|
int bitlen = 32;
|
||||||
#ifdef IPV6
|
#ifdef RB_IPV6
|
||||||
if(client_p->localClient->ip.ss_family == AF_INET6)
|
if(GET_SS_FAMILY(&client_p->localClient->ip) == AF_INET6)
|
||||||
bitlen = 128;
|
bitlen = 128;
|
||||||
#endif
|
#endif
|
||||||
pnode = make_and_lookup_ip(reject_tree, (struct sockaddr *)&client_p->localClient->ip, bitlen);
|
pnode = make_and_lookup_ip(reject_tree, (struct sockaddr *)&client_p->localClient->ip, bitlen);
|
||||||
pnode->data = rdata = MyMalloc(sizeof(struct reject_data));
|
pnode->data = rdata = rb_malloc(sizeof(reject_t));
|
||||||
rb_dlinkAddTail(pnode, &rdata->rnode, &reject_list);
|
rb_dlinkAddTail(pnode, &rdata->rnode, &reject_list);
|
||||||
rdata->time = CurrentTime;
|
rdata->time = rb_current_time();
|
||||||
rdata->count = 1;
|
rdata->count = 1;
|
||||||
}
|
}
|
||||||
rdata->mask_hashv = hashv;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
check_reject(struct Client *client_p)
|
check_reject(rb_fde_t *F, struct sockaddr *addr)
|
||||||
{
|
{
|
||||||
patricia_node_t *pnode;
|
rb_patricia_node_t *pnode;
|
||||||
struct reject_data *rdata;
|
reject_t *rdata;
|
||||||
|
delay_t *ddata;
|
||||||
/* Reject is disabled */
|
/* Reject is disabled */
|
||||||
if(ConfigFileEntry.reject_after_count == 0 || ConfigFileEntry.reject_ban_time == 0 ||
|
if(ConfigFileEntry.reject_after_count == 0 || ConfigFileEntry.reject_duration == 0)
|
||||||
ConfigFileEntry.reject_duration == 0)
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
pnode = match_ip(reject_tree, (struct sockaddr *)&client_p->localClient->ip);
|
pnode = rb_match_ip(reject_tree, addr);
|
||||||
if(pnode != NULL)
|
if(pnode != NULL)
|
||||||
{
|
{
|
||||||
rdata = pnode->data;
|
rdata = pnode->data;
|
||||||
|
|
||||||
rdata->time = CurrentTime;
|
rdata->time = rb_current_time();
|
||||||
if(rdata->count > ConfigFileEntry.reject_after_count)
|
if(rdata->count > (unsigned long)ConfigFileEntry.reject_after_count)
|
||||||
{
|
{
|
||||||
ServerStats->is_rej++;
|
ddata = rb_malloc(sizeof(delay_t));
|
||||||
SetReject(client_p);
|
ServerStats.is_rej++;
|
||||||
rb_setselect(client_p->localClient->F->fd, FDLIST_NONE, COMM_SELECT_WRITE | COMM_SELECT_READ, NULL, NULL, 0);
|
rb_setselect(F, RB_SELECT_WRITE | RB_SELECT_READ, NULL, NULL);
|
||||||
SetClosing(client_p);
|
ddata->F = F;
|
||||||
rb_dlinkMoveNode(&client_p->localClient->tnode, &unknown_list, &delay_exit);
|
rb_dlinkAdd(ddata, &ddata->node, &delay_exit);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -193,113 +235,356 @@ void
|
||||||
flush_reject(void)
|
flush_reject(void)
|
||||||
{
|
{
|
||||||
rb_dlink_node *ptr, *next;
|
rb_dlink_node *ptr, *next;
|
||||||
patricia_node_t *pnode;
|
rb_patricia_node_t *pnode;
|
||||||
struct reject_data *rdata;
|
reject_t *rdata;
|
||||||
|
|
||||||
RB_DLINK_FOREACH_SAFE(ptr, next, reject_list.head)
|
RB_DLINK_FOREACH_SAFE(ptr, next, reject_list.head)
|
||||||
{
|
{
|
||||||
pnode = ptr->data;
|
pnode = ptr->data;
|
||||||
rdata = pnode->data;
|
rdata = pnode->data;
|
||||||
rb_dlinkDelete(ptr, &reject_list);
|
rb_dlinkDelete(ptr, &reject_list);
|
||||||
MyFree(rdata);
|
rb_free(rdata);
|
||||||
patricia_remove(reject_tree, pnode);
|
rb_patricia_remove(reject_tree, pnode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
remove_reject_ip(const char *ip)
|
remove_reject(const char *ip)
|
||||||
{
|
{
|
||||||
patricia_node_t *pnode;
|
rb_patricia_node_t *pnode;
|
||||||
|
|
||||||
/* Reject is disabled */
|
/* Reject is disabled */
|
||||||
if(ConfigFileEntry.reject_after_count == 0 || ConfigFileEntry.reject_ban_time == 0 ||
|
if(ConfigFileEntry.reject_after_count == 0 || ConfigFileEntry.reject_duration == 0)
|
||||||
ConfigFileEntry.reject_duration == 0)
|
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if((pnode = match_string(reject_tree, ip)) != NULL)
|
if((pnode = rb_match_string(reject_tree, ip)) != NULL)
|
||||||
{
|
{
|
||||||
struct reject_data *rdata = pnode->data;
|
reject_t *rdata = pnode->data;
|
||||||
rb_dlinkDelete(&rdata->rnode, &reject_list);
|
rb_dlinkDelete(&rdata->rnode, &reject_list);
|
||||||
MyFree(rdata);
|
rb_free(rdata);
|
||||||
patricia_remove(reject_tree, pnode);
|
rb_patricia_remove(reject_tree, pnode);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static void
|
||||||
remove_reject_mask(const char *mask1, const char *mask2)
|
delete_ipline(struct ConfItem *aconf, rb_patricia_tree_t *t)
|
||||||
{
|
{
|
||||||
rb_dlink_node *ptr, *next;
|
rb_patricia_remove(t, aconf->pnode);
|
||||||
patricia_node_t *pnode;
|
if(!aconf->clients)
|
||||||
struct reject_data *rdata;
|
|
||||||
uint32_t hashv;
|
|
||||||
int n = 0;
|
|
||||||
|
|
||||||
hashv = 0;
|
|
||||||
if (mask1 != NULL)
|
|
||||||
hashv ^= fnv_hash_upper(mask1, 32);
|
|
||||||
if (mask2 != NULL)
|
|
||||||
hashv ^= fnv_hash_upper(mask2, 32);
|
|
||||||
RB_DLINK_FOREACH_SAFE(ptr, next, reject_list.head)
|
|
||||||
{
|
{
|
||||||
pnode = ptr->data;
|
free_conf(aconf);
|
||||||
rdata = pnode->data;
|
|
||||||
if (rdata->mask_hashv == hashv)
|
|
||||||
{
|
|
||||||
rb_dlinkDelete(ptr, &reject_list);
|
|
||||||
MyFree(rdata);
|
|
||||||
patricia_remove(reject_tree, pnode);
|
|
||||||
n++;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return n;
|
}
|
||||||
|
|
||||||
|
static struct ConfItem *
|
||||||
|
find_ipline(rb_patricia_tree_t *t, struct sockaddr *addr)
|
||||||
|
{
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
pnode = rb_match_ip(t, addr);
|
||||||
|
if(pnode != NULL)
|
||||||
|
return (struct ConfItem *) pnode->data;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct ConfItem *
|
||||||
|
find_ipline_exact(rb_patricia_tree_t *t, struct sockaddr *addr, unsigned int bitlen)
|
||||||
|
{
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
pnode = rb_match_ip_exact(t, addr, bitlen);
|
||||||
|
if(pnode != NULL)
|
||||||
|
return (struct ConfItem *) pnode->data;
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int
|
struct ConfItem *
|
||||||
add_unknown_ip(struct Client *client_p)
|
find_dline(struct sockaddr *addr)
|
||||||
{
|
{
|
||||||
patricia_node_t *pnode;
|
struct ConfItem *aconf;
|
||||||
|
aconf = find_ipline(eline_tree, addr);
|
||||||
if((pnode = match_ip(unknown_tree, (struct sockaddr *)&client_p->localClient->ip)) == NULL)
|
if(aconf != NULL)
|
||||||
{
|
{
|
||||||
int bitlen = 32;
|
return aconf;
|
||||||
#ifdef IPV6
|
|
||||||
if(client_p->localClient->ip.ss_family == AF_INET6)
|
|
||||||
bitlen = 128;
|
|
||||||
#endif
|
|
||||||
pnode = make_and_lookup_ip(unknown_tree, (struct sockaddr *)&client_p->localClient->ip, bitlen);
|
|
||||||
pnode->data = (void *)0;
|
|
||||||
}
|
}
|
||||||
|
return (find_ipline(dline_tree, addr));
|
||||||
|
}
|
||||||
|
|
||||||
if((unsigned long)pnode->data >= ConfigFileEntry.max_unknown_ip)
|
struct ConfItem *
|
||||||
{
|
find_dline_exact(struct sockaddr *addr, unsigned int bitlen)
|
||||||
SetExUnknown(client_p);
|
{
|
||||||
SetReject(client_p);
|
return find_ipline_exact(dline_tree, addr, bitlen);
|
||||||
rb_setselect(client_p->localClient->F->fd, FDLIST_NONE, COMM_SELECT_WRITE | COMM_SELECT_READ, NULL, NULL, 0);
|
|
||||||
SetClosing(client_p);
|
|
||||||
rb_dlinkMoveNode(&client_p->localClient->tnode, &unknown_list, &delay_exit);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
pnode->data = (void *)((unsigned long)pnode->data + 1);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
del_unknown_ip(struct Client *client_p)
|
remove_dline(struct ConfItem *aconf)
|
||||||
{
|
{
|
||||||
patricia_node_t *pnode;
|
delete_ipline(aconf, dline_tree);
|
||||||
|
}
|
||||||
|
|
||||||
if((pnode = match_ip(unknown_tree, (struct sockaddr *)&client_p->localClient->ip)) != NULL)
|
void
|
||||||
|
report_dlines(struct Client *source_p)
|
||||||
|
{
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
struct ConfItem *aconf;
|
||||||
|
const char *host, *pass, *user, *oper_reason;
|
||||||
|
RB_PATRICIA_WALK(dline_tree->head, pnode)
|
||||||
{
|
{
|
||||||
pnode->data = (void *)((unsigned long)pnode->data - 1);
|
aconf = pnode->data;
|
||||||
if((unsigned long)pnode->data <= 0)
|
if(aconf->flags & CONF_FLAGS_TEMPORARY)
|
||||||
|
RB_PATRICIA_WALK_BREAK;
|
||||||
|
get_printable_kline(source_p, aconf, &host, &pass, &user, &oper_reason);
|
||||||
|
sendto_one_numeric(source_p, RPL_STATSDLINE,
|
||||||
|
form_str (RPL_STATSDLINE),
|
||||||
|
'D', host, pass,
|
||||||
|
oper_reason ? "|" : "",
|
||||||
|
oper_reason ? oper_reason : "");
|
||||||
|
}
|
||||||
|
RB_PATRICIA_WALK_END;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
report_tdlines(struct Client *source_p)
|
||||||
|
{
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
struct ConfItem *aconf;
|
||||||
|
const char *host, *pass, *user, *oper_reason;
|
||||||
|
RB_PATRICIA_WALK(dline_tree->head, pnode)
|
||||||
|
{
|
||||||
|
aconf = pnode->data;
|
||||||
|
if(!(aconf->flags & CONF_FLAGS_TEMPORARY))
|
||||||
|
RB_PATRICIA_WALK_BREAK;
|
||||||
|
get_printable_kline(source_p, aconf, &host, &pass, &user, &oper_reason);
|
||||||
|
sendto_one_numeric(source_p, RPL_STATSDLINE,
|
||||||
|
form_str (RPL_STATSDLINE),
|
||||||
|
'd', host, pass,
|
||||||
|
oper_reason ? "|" : "",
|
||||||
|
oper_reason ? oper_reason : "");
|
||||||
|
}
|
||||||
|
RB_PATRICIA_WALK_END;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
report_elines(struct Client *source_p)
|
||||||
|
{
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
struct ConfItem *aconf;
|
||||||
|
int port;
|
||||||
|
const char *name, *host, *pass, *user, *classname;
|
||||||
|
RB_PATRICIA_WALK(eline_tree->head, pnode)
|
||||||
|
{
|
||||||
|
aconf = pnode->data;
|
||||||
|
get_printable_conf(aconf, &name, &host, &pass, &user, &port, &classname);
|
||||||
|
sendto_one_numeric(source_p, RPL_STATSDLINE,
|
||||||
|
form_str (RPL_STATSDLINE),
|
||||||
|
'e', host, pass,
|
||||||
|
"", "");
|
||||||
|
}
|
||||||
|
RB_PATRICIA_WALK_END;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
throttle_add(struct sockaddr *addr)
|
||||||
|
{
|
||||||
|
throttle_t *t;
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
|
||||||
|
if((pnode = rb_match_ip(throttle_tree, addr)) != NULL)
|
||||||
|
{
|
||||||
|
t = pnode->data;
|
||||||
|
|
||||||
|
if(t->count > ConfigFileEntry.throttle_count)
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
/* Stop penalizing them after they've been throttled */
|
||||||
|
t->last = rb_current_time();
|
||||||
|
t->count++;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
int bitlen = 32;
|
||||||
|
#ifdef RB_IPV6
|
||||||
|
if(GET_SS_FAMILY(addr) == AF_INET6)
|
||||||
|
bitlen = 128;
|
||||||
|
#endif
|
||||||
|
t = rb_malloc(sizeof(throttle_t));
|
||||||
|
t->last = rb_current_time();
|
||||||
|
t->count = 1;
|
||||||
|
pnode = make_and_lookup_ip(throttle_tree, addr, bitlen);
|
||||||
|
pnode->data = t;
|
||||||
|
rb_dlinkAdd(pnode, &t->node, &throttle_list);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
throttle_expires(void *unused)
|
||||||
|
{
|
||||||
|
rb_dlink_node *ptr, *next;
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
throttle_t *t;
|
||||||
|
|
||||||
|
RB_DLINK_FOREACH_SAFE(ptr, next, throttle_list.head)
|
||||||
|
{
|
||||||
|
pnode = ptr->data;
|
||||||
|
t = pnode->data;
|
||||||
|
|
||||||
|
if(t->last + ConfigFileEntry.throttle_duration > rb_current_time())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
rb_dlinkDelete(ptr, &throttle_list);
|
||||||
|
rb_free(t);
|
||||||
|
rb_patricia_remove(throttle_tree, pnode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
get_global_count(struct sockaddr *addr)
|
||||||
|
{
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
global_t *glb;
|
||||||
|
|
||||||
|
if((pnode = rb_match_ip(global_tree, addr)))
|
||||||
|
{
|
||||||
|
glb = pnode->data;
|
||||||
|
return glb->count;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
inc_global_ip(struct sockaddr *addr, int bitlen)
|
||||||
|
{
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
global_t *glb;
|
||||||
|
|
||||||
|
|
||||||
|
if((pnode = rb_match_ip(global_tree, addr)))
|
||||||
|
{
|
||||||
|
glb = pnode->data;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
pnode = make_and_lookup_ip(global_tree, addr, bitlen);
|
||||||
|
glb = rb_malloc(sizeof(global_t));
|
||||||
|
pnode->data = glb;
|
||||||
|
}
|
||||||
|
glb->count++;
|
||||||
|
return glb->count;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
dec_global_ip(struct sockaddr *addr)
|
||||||
|
{
|
||||||
|
rb_patricia_node_t *pnode;
|
||||||
|
global_t *glb;
|
||||||
|
|
||||||
|
if((pnode = rb_match_ip(global_tree, addr)))
|
||||||
|
{
|
||||||
|
glb = pnode->data;
|
||||||
|
glb->count--;
|
||||||
|
if(glb->count == 0)
|
||||||
{
|
{
|
||||||
patricia_remove(unknown_tree, pnode);
|
rb_free(glb);
|
||||||
|
rb_patricia_remove(global_tree, pnode);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* this can happen due to m_webirc.c's manipulations, for example */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
inc_global_cidr_count(struct Client *client_p)
|
||||||
|
{
|
||||||
|
struct rb_sockaddr_storage ip;
|
||||||
|
struct sockaddr *addr;
|
||||||
|
int bitlen;
|
||||||
|
|
||||||
|
if(!MyClient(client_p))
|
||||||
|
{
|
||||||
|
if(EmptyString(client_p->sockhost) || !strcmp(client_p->sockhost, "0"))
|
||||||
|
return -1;
|
||||||
|
if(!rb_inet_pton_sock(client_p->sockhost, (struct sockaddr *)&ip))
|
||||||
|
return -1;
|
||||||
|
addr = (struct sockaddr *)&ip;
|
||||||
|
} else
|
||||||
|
addr = (struct sockaddr *)&client_p->localClient->ip;
|
||||||
|
#ifdef RB_IPV6
|
||||||
|
if(GET_SS_FAMILY(addr) == AF_INET6)
|
||||||
|
{
|
||||||
|
bitlen = ConfigFileEntry.global_cidr_ipv6_bitlen;
|
||||||
|
} else
|
||||||
|
#endif
|
||||||
|
bitlen = ConfigFileEntry.global_cidr_ipv4_bitlen;
|
||||||
|
|
||||||
|
return inc_global_ip(addr, bitlen);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
dec_global_cidr_count(struct Client *client_p)
|
||||||
|
{
|
||||||
|
struct rb_sockaddr_storage ip;
|
||||||
|
struct sockaddr *addr;
|
||||||
|
if(!MyClient(client_p))
|
||||||
|
{
|
||||||
|
if(EmptyString(client_p->sockhost) || !strcmp(client_p->sockhost, "0"))
|
||||||
|
return;
|
||||||
|
if(!rb_inet_pton_sock(client_p->sockhost, (struct sockaddr *)&ip))
|
||||||
|
return;
|
||||||
|
addr = (struct sockaddr *)&ip;
|
||||||
|
} else
|
||||||
|
addr = (struct sockaddr *)&client_p->localClient->ip;
|
||||||
|
|
||||||
|
dec_global_ip(addr);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
check_global_cidr_count(struct Client *client_p)
|
||||||
|
{
|
||||||
|
struct rb_sockaddr_storage ip;
|
||||||
|
struct sockaddr *addr;
|
||||||
|
int count, max;
|
||||||
|
if(!MyClient(client_p))
|
||||||
|
{
|
||||||
|
if(EmptyString(client_p->sockhost) || !strcmp(client_p->sockhost, "0"))
|
||||||
|
return -1;
|
||||||
|
if(!rb_inet_pton_sock(client_p->sockhost, (struct sockaddr *)&ip))
|
||||||
|
return -1;
|
||||||
|
addr = (struct sockaddr *)&ip;
|
||||||
|
} else
|
||||||
|
addr = (struct sockaddr *)&client_p->localClient->ip;
|
||||||
|
count = get_global_count(addr);
|
||||||
|
#ifdef RB_IPV6
|
||||||
|
if(GET_SS_FAMILY(addr) == AF_INET6)
|
||||||
|
max = ConfigFileEntry.global_cidr_ipv6_count;
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
max = ConfigFileEntry.global_cidr_ipv4_count;
|
||||||
|
if(count >= max)
|
||||||
|
return 1;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
clear_cidr_tree(void *data)
|
||||||
|
{
|
||||||
|
rb_free(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
rehash_global_cidr_tree(void)
|
||||||
|
{
|
||||||
|
struct Client *client_p;
|
||||||
|
rb_dlink_node *ptr;
|
||||||
|
rb_clear_patricia(global_tree, clear_cidr_tree);
|
||||||
|
RB_DLINK_FOREACH(ptr, global_client_list.head)
|
||||||
|
{
|
||||||
|
client_p = ptr->data;
|
||||||
|
if(IsMe(client_p) && IsServer(client_p))
|
||||||
|
continue;
|
||||||
|
inc_global_cidr_count(client_p);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue