2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* class.c: Controls connection classes.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2005 ircd-ratbox development team
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
2016-03-20 01:14:26 +01:00
|
|
|
#include "defaults.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
#include "class.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "ircd.h"
|
|
|
|
#include "numeric.h"
|
|
|
|
#include "s_conf.h"
|
|
|
|
#include "s_newconf.h"
|
|
|
|
#include "send.h"
|
2008-04-20 07:47:38 +02:00
|
|
|
#include "match.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
#define BAD_PING -2
|
|
|
|
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_list class_list;
|
2007-01-25 07:40:21 +01:00
|
|
|
struct Class *default_class;
|
|
|
|
|
2008-04-02 20:50:20 +02:00
|
|
|
struct Class *
|
|
|
|
make_class(void)
|
|
|
|
{
|
|
|
|
struct Class *tmp;
|
|
|
|
|
|
|
|
tmp = rb_malloc(sizeof(struct Class));
|
|
|
|
|
|
|
|
ConFreq(tmp) = DEFAULT_CONNECTFREQUENCY;
|
|
|
|
PingFreq(tmp) = DEFAULT_PINGFREQUENCY;
|
|
|
|
MaxUsers(tmp) = 1;
|
|
|
|
MaxSendq(tmp) = DEFAULT_SENDQ;
|
|
|
|
|
|
|
|
tmp->ip_limits = rb_new_patricia(PATRICIA_BITS);
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
free_class(struct Class *tmp)
|
|
|
|
{
|
|
|
|
if(tmp->ip_limits)
|
|
|
|
rb_destroy_patricia(tmp->ip_limits, NULL);
|
|
|
|
|
|
|
|
rb_free(tmp->class_name);
|
|
|
|
rb_free(tmp);
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get_conf_ping
|
|
|
|
*
|
|
|
|
* inputs - pointer to struct ConfItem
|
|
|
|
* output - ping frequency
|
|
|
|
* side effects - NONE
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
get_conf_ping(struct ConfItem *aconf)
|
|
|
|
{
|
|
|
|
if((aconf) && ClassPtr(aconf))
|
|
|
|
return (ConfPingFreq(aconf));
|
|
|
|
|
|
|
|
return (BAD_PING);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get_client_class
|
|
|
|
*
|
|
|
|
* inputs - pointer to client struct
|
|
|
|
* output - pointer to name of class
|
|
|
|
* side effects - NONE
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
get_client_class(struct Client *target_p)
|
|
|
|
{
|
|
|
|
const char *retc = "unknown";
|
|
|
|
|
|
|
|
if(target_p == NULL || IsMe(target_p))
|
|
|
|
return retc;
|
|
|
|
|
|
|
|
if(IsServer(target_p))
|
|
|
|
{
|
|
|
|
struct server_conf *server_p = target_p->localClient->att_sconf;
|
|
|
|
return server_p->class_name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
|
|
|
aconf = target_p->localClient->att_conf;
|
|
|
|
|
|
|
|
if((aconf == NULL) || (aconf->className == NULL))
|
|
|
|
retc = "default";
|
|
|
|
else
|
|
|
|
retc = aconf->className;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (retc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get_client_ping
|
|
|
|
*
|
|
|
|
* inputs - pointer to client struct
|
|
|
|
* output - ping frequency
|
|
|
|
* side effects - NONE
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
get_client_ping(struct Client *target_p)
|
|
|
|
{
|
|
|
|
int ping = 0;
|
|
|
|
|
|
|
|
if(IsServer(target_p))
|
|
|
|
{
|
|
|
|
struct server_conf *server_p = target_p->localClient->att_sconf;
|
2016-06-21 02:45:31 +02:00
|
|
|
ping = PingFreq(server_p->_class);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
|
|
|
|
|
|
|
aconf = target_p->localClient->att_conf;
|
|
|
|
|
|
|
|
if(aconf != NULL)
|
|
|
|
ping = get_conf_ping(aconf);
|
|
|
|
else
|
|
|
|
ping = DEFAULT_PINGFREQUENCY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ping <= 0)
|
|
|
|
ping = DEFAULT_PINGFREQUENCY;
|
|
|
|
|
|
|
|
return ping;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get_con_freq
|
|
|
|
*
|
|
|
|
* inputs - pointer to class struct
|
|
|
|
* output - connection frequency
|
|
|
|
* side effects - NONE
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
get_con_freq(struct Class *clptr)
|
|
|
|
{
|
|
|
|
if(clptr)
|
|
|
|
return (ConFreq(clptr));
|
|
|
|
return (DEFAULT_CONNECTFREQUENCY);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add_class()
|
|
|
|
*
|
|
|
|
* input - class to add
|
|
|
|
* output -
|
|
|
|
* side effects - class is added to class_list if new, else old class
|
|
|
|
* is updated with new values.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
add_class(struct Class *classptr)
|
|
|
|
{
|
|
|
|
struct Class *tmpptr;
|
|
|
|
|
|
|
|
tmpptr = find_class(classptr->class_name);
|
|
|
|
|
|
|
|
if(tmpptr == default_class)
|
|
|
|
{
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkAddAlloc(classptr, &class_list);
|
2007-01-25 07:40:21 +01:00
|
|
|
CurrUsers(classptr) = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MaxUsers(tmpptr) = MaxUsers(classptr);
|
|
|
|
MaxLocal(tmpptr) = MaxLocal(classptr);
|
|
|
|
MaxGlobal(tmpptr) = MaxGlobal(classptr);
|
|
|
|
MaxIdent(tmpptr) = MaxIdent(classptr);
|
|
|
|
PingFreq(tmpptr) = PingFreq(classptr);
|
|
|
|
MaxSendq(tmpptr) = MaxSendq(classptr);
|
|
|
|
ConFreq(tmpptr) = ConFreq(classptr);
|
2008-11-30 13:31:59 +01:00
|
|
|
CidrIpv4Bitlen(tmpptr) = CidrIpv4Bitlen(classptr);
|
|
|
|
CidrIpv6Bitlen(tmpptr) = CidrIpv6Bitlen(classptr);
|
2007-01-25 07:40:21 +01:00
|
|
|
CidrAmount(tmpptr) = CidrAmount(classptr);
|
|
|
|
|
|
|
|
free_class(classptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find_class
|
|
|
|
*
|
|
|
|
* inputs - string name of class
|
|
|
|
* output - corresponding class pointer
|
|
|
|
* side effects - NONE
|
|
|
|
*/
|
|
|
|
struct Class *
|
|
|
|
find_class(const char *classname)
|
|
|
|
{
|
|
|
|
struct Class *cltmp;
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(classname == NULL)
|
|
|
|
return default_class;
|
|
|
|
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, class_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
cltmp = ptr->data;
|
|
|
|
|
|
|
|
if(!strcmp(ClassName(cltmp), classname))
|
|
|
|
return cltmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
return default_class;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check_class
|
|
|
|
*
|
|
|
|
* inputs - NONE
|
|
|
|
* output - NONE
|
2014-03-03 05:25:47 +01:00
|
|
|
* side effects -
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
check_class()
|
|
|
|
{
|
|
|
|
struct Class *cltmp;
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_dlink_node *next_ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-02 00:47:17 +02:00
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, class_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
cltmp = ptr->data;
|
|
|
|
|
|
|
|
if(MaxUsers(cltmp) < 0)
|
|
|
|
{
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkDestroy(ptr, &class_list);
|
2007-01-25 07:40:21 +01:00
|
|
|
if(CurrUsers(cltmp) <= 0)
|
|
|
|
free_class(cltmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* initclass
|
|
|
|
*
|
|
|
|
* inputs - NONE
|
|
|
|
* output - NONE
|
2014-03-03 05:25:47 +01:00
|
|
|
* side effects -
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
initclass()
|
|
|
|
{
|
|
|
|
default_class = make_class();
|
2008-04-02 01:26:34 +02:00
|
|
|
ClassName(default_class) = rb_strdup("default");
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* report_classes
|
|
|
|
*
|
|
|
|
* inputs - pointer to client to report to
|
|
|
|
* output - NONE
|
|
|
|
* side effects - class report is done to this client
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
report_classes(struct Client *source_p)
|
|
|
|
{
|
|
|
|
struct Class *cltmp;
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, class_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
cltmp = ptr->data;
|
|
|
|
|
2014-03-03 05:25:47 +01:00
|
|
|
sendto_one_numeric(source_p, RPL_STATSYLINE,
|
2007-01-25 07:40:21 +01:00
|
|
|
form_str(RPL_STATSYLINE),
|
2014-03-03 05:25:47 +01:00
|
|
|
ClassName(cltmp), PingFreq(cltmp),
|
|
|
|
ConFreq(cltmp), MaxUsers(cltmp),
|
|
|
|
MaxSendq(cltmp),
|
2007-01-25 07:40:21 +01:00
|
|
|
MaxLocal(cltmp), MaxIdent(cltmp),
|
|
|
|
MaxGlobal(cltmp), MaxIdent(cltmp),
|
|
|
|
CurrUsers(cltmp));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* also output the default class */
|
|
|
|
sendto_one_numeric(source_p, RPL_STATSYLINE, form_str(RPL_STATSYLINE),
|
2014-03-03 05:25:47 +01:00
|
|
|
ClassName(default_class), PingFreq(default_class),
|
|
|
|
ConFreq(default_class), MaxUsers(default_class),
|
|
|
|
MaxSendq(default_class),
|
2007-01-25 07:40:21 +01:00
|
|
|
MaxLocal(default_class), MaxIdent(default_class),
|
|
|
|
MaxGlobal(default_class), MaxIdent(default_class),
|
|
|
|
CurrUsers(default_class));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get_sendq
|
|
|
|
*
|
|
|
|
* inputs - pointer to client
|
|
|
|
* output - sendq for this client as found from its class
|
|
|
|
* side effects - NONE
|
|
|
|
*/
|
|
|
|
long
|
|
|
|
get_sendq(struct Client *client_p)
|
|
|
|
{
|
|
|
|
if(client_p == NULL || IsMe(client_p))
|
|
|
|
return DEFAULT_SENDQ;
|
|
|
|
|
|
|
|
if(IsServer(client_p))
|
|
|
|
{
|
|
|
|
struct server_conf *server_p;
|
|
|
|
server_p = client_p->localClient->att_sconf;
|
2016-06-21 02:45:31 +02:00
|
|
|
return MaxSendq(server_p->_class);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf = client_p->localClient->att_conf;
|
|
|
|
|
|
|
|
if(aconf != NULL && aconf->status & CONF_CLIENT)
|
|
|
|
return ConfMaxSendq(aconf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return DEFAULT_SENDQ;
|
|
|
|
}
|