Automated merge with http://85.237.34.214:8000/
This commit is contained in:
commit
2b2e97af7f
|
@ -1,13 +1,13 @@
|
|||
/* $Id: cache.h 6 2005-09-10 01:02:21Z nenolod $ */
|
||||
/* $Id: cache.h 24250 2007-08-22 19:15:08Z androsyn $ */
|
||||
#ifndef INCLUDED_CACHE_H
|
||||
#define INCLUDED_CACHE_H
|
||||
|
||||
#include "client.h"
|
||||
|
||||
#define HELP_MAX 100
|
||||
|
||||
#define CACHELINELEN 81
|
||||
#define CACHEFILELEN 30
|
||||
/* two servernames, a gecos, three spaces, ":1", '\0' */
|
||||
#define LINKSLINELEN (HOSTLEN + HOSTLEN + REALLEN + 6)
|
||||
|
||||
#define HELP_USER 0x001
|
||||
#define HELP_OPER 0x002
|
||||
|
@ -32,19 +32,20 @@ extern struct cachefile *oper_motd;
|
|||
extern struct cacheline *emptyline;
|
||||
|
||||
extern char user_motd_changed[MAX_DATE_STRING];
|
||||
extern rb_dlink_list links_cache_list;
|
||||
|
||||
extern void init_cache(void);
|
||||
extern struct cachefile *cache_file(const char *, const char *, int);
|
||||
extern void free_cachefile(struct cachefile *);
|
||||
void init_cache(void);
|
||||
struct cachefile *cache_file(const char *, const char *, int);
|
||||
void cache_links(void *unused);
|
||||
void free_cachefile(struct cachefile *);
|
||||
|
||||
extern void load_help(void);
|
||||
void load_help(void);
|
||||
|
||||
extern void send_user_motd(struct Client *);
|
||||
extern void send_oper_motd(struct Client *);
|
||||
void send_user_motd(struct Client *);
|
||||
void cache_user_motd(void);
|
||||
|
||||
struct Dictionary;
|
||||
extern struct Dictionary *help_dict_oper;
|
||||
extern struct Dictionary *help_dict_user;
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#ifndef INCLUDED_monitor_h
|
||||
#define INCLUDED_monitor_h
|
||||
|
||||
struct BlockHeap;
|
||||
struct rb_bh;
|
||||
|
||||
struct monitor
|
||||
{
|
||||
|
|
|
@ -394,13 +394,13 @@ rb_bh_free(rb_bh * bh, void *ptr)
|
|||
|
||||
if(unlikely(bh == NULL))
|
||||
{
|
||||
rb_lib_log("balloc.c:rb_bhFree() bh == NULL");
|
||||
rb_lib_log("balloc.c:rb_bh_free() bh == NULL");
|
||||
return (1);
|
||||
}
|
||||
|
||||
if(unlikely(ptr == NULL))
|
||||
{
|
||||
rb_lib_log("balloc.rb_bhFree() ptr == NULL");
|
||||
rb_lib_log("balloc.rb_bh_free() ptr == NULL");
|
||||
return (1);
|
||||
}
|
||||
|
||||
|
|
132
src/cache.c
132
src/cache.c
|
@ -29,7 +29,7 @@
|
|||
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: cache.c 3436 2007-05-02 19:56:40Z jilles $
|
||||
* $Id: cache.c 25119 2008-03-13 16:57:05Z androsyn $
|
||||
*/
|
||||
|
||||
#include "stdinc.h"
|
||||
|
@ -43,11 +43,10 @@
|
|||
#include "irc_dictionary.h"
|
||||
#include "numeric.h"
|
||||
|
||||
static BlockHeap *cachefile_heap = NULL;
|
||||
static BlockHeap *cacheline_heap = NULL;
|
||||
|
||||
struct cachefile *user_motd = NULL;
|
||||
struct cachefile *oper_motd = NULL;
|
||||
struct cacheline *emptyline = NULL;
|
||||
rb_dlink_list links_cache_list;
|
||||
char user_motd_changed[MAX_DATE_STRING];
|
||||
|
||||
struct Dictionary *help_dict_oper = NULL;
|
||||
|
@ -62,13 +61,15 @@ struct Dictionary *help_dict_user = NULL;
|
|||
void
|
||||
init_cache(void)
|
||||
{
|
||||
cachefile_heap = BlockHeapCreate(sizeof(struct cachefile), CACHEFILE_HEAP_SIZE);
|
||||
cacheline_heap = BlockHeapCreate(sizeof(struct cacheline), CACHELINE_HEAP_SIZE);
|
||||
|
||||
/* allocate the emptyline */
|
||||
emptyline = rb_malloc(sizeof(struct cacheline));
|
||||
emptyline->data[0] = ' ';
|
||||
emptyline->data[1] = '\0';
|
||||
user_motd_changed[0] = '\0';
|
||||
|
||||
user_motd = cache_file(MPATH, "ircd.motd", 0);
|
||||
oper_motd = cache_file(OPATH, "opers.motd", 0);
|
||||
memset(&links_cache_list, 0, sizeof(links_cache_list));
|
||||
|
||||
help_dict_oper = irc_dictionary_create(strcasecmp);
|
||||
help_dict_user = irc_dictionary_create(strcasecmp);
|
||||
|
@ -92,47 +93,69 @@ cache_file(const char *filename, const char *shortname, int flags)
|
|||
if((in = fopen(filename, "r")) == NULL)
|
||||
return NULL;
|
||||
|
||||
if(strcmp(shortname, "ircd.motd") == 0)
|
||||
{
|
||||
struct stat sb;
|
||||
struct tm *local_tm;
|
||||
|
||||
if(fstat(fileno(in), &sb) < 0)
|
||||
return NULL;
|
||||
cacheptr = rb_malloc(sizeof(struct cachefile));
|
||||
|
||||
local_tm = localtime(&sb.st_mtime);
|
||||
|
||||
if(local_tm != NULL)
|
||||
rb_snprintf(user_motd_changed, sizeof(user_motd_changed),
|
||||
"%d/%d/%d %d:%d",
|
||||
local_tm->tm_mday, local_tm->tm_mon + 1,
|
||||
1900 + local_tm->tm_year, local_tm->tm_hour,
|
||||
local_tm->tm_min);
|
||||
}
|
||||
|
||||
cacheptr = BlockHeapAlloc(cachefile_heap);
|
||||
|
||||
strlcpy(cacheptr->name, shortname, sizeof(cacheptr->name));
|
||||
rb_strlcpy(cacheptr->name, shortname, sizeof(cacheptr->name));
|
||||
cacheptr->flags = flags;
|
||||
|
||||
/* cache the file... */
|
||||
while(fgets(line, sizeof(line), in) != NULL)
|
||||
{
|
||||
if((p = strchr(line, '\n')) != NULL)
|
||||
if((p = strpbrk(line, "\r\n")) != NULL)
|
||||
*p = '\0';
|
||||
|
||||
lineptr = BlockHeapAlloc(cacheline_heap);
|
||||
if(EmptyString(line))
|
||||
strlcpy(lineptr->data, " ", sizeof(lineptr->data));
|
||||
if(!EmptyString(line))
|
||||
{
|
||||
lineptr = rb_malloc(sizeof(struct cacheline));
|
||||
rb_strlcpy(lineptr->data, line, sizeof(lineptr->data));
|
||||
rb_dlinkAddTail(lineptr, &lineptr->linenode, &cacheptr->contents);
|
||||
}
|
||||
else
|
||||
strlcpy(lineptr->data, line, sizeof(lineptr->data));
|
||||
rb_dlinkAddTail(lineptr, &lineptr->linenode, &cacheptr->contents);
|
||||
rb_dlinkAddTailAlloc(emptyline, &cacheptr->contents);
|
||||
}
|
||||
|
||||
fclose(in);
|
||||
return cacheptr;
|
||||
}
|
||||
|
||||
void
|
||||
cache_links(void *unused)
|
||||
{
|
||||
struct Client *target_p;
|
||||
rb_dlink_node *ptr;
|
||||
rb_dlink_node *next_ptr;
|
||||
char *links_line;
|
||||
|
||||
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, links_cache_list.head)
|
||||
{
|
||||
rb_free(ptr->data);
|
||||
rb_free_rb_dlink_node(ptr);
|
||||
}
|
||||
|
||||
links_cache_list.head = links_cache_list.tail = NULL;
|
||||
links_cache_list.length = 0;
|
||||
|
||||
RB_DLINK_FOREACH(ptr, global_serv_list.head)
|
||||
{
|
||||
target_p = ptr->data;
|
||||
|
||||
/* skip ourselves (done in /links) and hidden servers */
|
||||
if(IsMe(target_p) ||
|
||||
(IsHidden(target_p) && !ConfigServerHide.disable_hidden))
|
||||
continue;
|
||||
|
||||
/* if the below is ever modified, change LINKSLINELEN */
|
||||
links_line = rb_malloc(LINKSLINELEN);
|
||||
rb_snprintf(links_line, LINKSLINELEN, "%s %s :1 %s",
|
||||
target_p->name, me.name,
|
||||
target_p->info[0] ? target_p->info :
|
||||
"(Unknown Location)");
|
||||
|
||||
rb_dlinkAddTailAlloc(links_line, &links_cache_list);
|
||||
}
|
||||
}
|
||||
|
||||
/* free_cachefile()
|
||||
*
|
||||
* inputs - cachefile to free
|
||||
|
@ -150,10 +173,11 @@ free_cachefile(struct cachefile *cacheptr)
|
|||
|
||||
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, cacheptr->contents.head)
|
||||
{
|
||||
BlockHeapFree(cacheline_heap, ptr->data);
|
||||
if(ptr->data != emptyline)
|
||||
rb_free(ptr->data);
|
||||
}
|
||||
|
||||
BlockHeapFree(cachefile_heap, cacheptr);
|
||||
rb_free(cacheptr);
|
||||
}
|
||||
|
||||
/* load_help()
|
||||
|
@ -225,7 +249,6 @@ send_user_motd(struct Client *source_p)
|
|||
rb_dlink_node *ptr;
|
||||
const char *myname = get_id(&me, source_p);
|
||||
const char *nick = get_id(source_p, source_p);
|
||||
|
||||
if(user_motd == NULL || rb_dlink_list_length(&user_motd->contents) == 0)
|
||||
{
|
||||
sendto_one(source_p, form_str(ERR_NOMOTD), myname, nick);
|
||||
|
@ -243,32 +266,25 @@ send_user_motd(struct Client *source_p)
|
|||
sendto_one(source_p, form_str(RPL_ENDOFMOTD), myname, nick);
|
||||
}
|
||||
|
||||
/* send_oper_motd()
|
||||
*
|
||||
* inputs - client to send motd to
|
||||
* outputs - client is sent oper motd if exists
|
||||
* side effects -
|
||||
*/
|
||||
void
|
||||
send_oper_motd(struct Client *source_p)
|
||||
cache_user_motd(void)
|
||||
{
|
||||
struct cacheline *lineptr;
|
||||
rb_dlink_node *ptr;
|
||||
struct stat sb;
|
||||
struct tm *local_tm;
|
||||
|
||||
if(oper_motd == NULL || rb_dlink_list_length(&oper_motd->contents) == 0)
|
||||
return;
|
||||
|
||||
sendto_one(source_p, form_str(RPL_OMOTDSTART),
|
||||
me.name, source_p->name);
|
||||
|
||||
RB_DLINK_FOREACH(ptr, oper_motd->contents.head)
|
||||
if(stat(MPATH, &sb) == 0)
|
||||
{
|
||||
lineptr = ptr->data;
|
||||
sendto_one(source_p, form_str(RPL_OMOTD),
|
||||
me.name, source_p->name, lineptr->data);
|
||||
local_tm = localtime(&sb.st_mtime);
|
||||
|
||||
if(local_tm != NULL)
|
||||
{
|
||||
rb_snprintf(user_motd_changed, sizeof(user_motd_changed),
|
||||
"%d/%d/%d %d:%d",
|
||||
local_tm->tm_mday, local_tm->tm_mon + 1,
|
||||
1900 + local_tm->tm_year, local_tm->tm_hour,
|
||||
local_tm->tm_min);
|
||||
}
|
||||
}
|
||||
|
||||
sendto_one(source_p, form_str(RPL_ENDOFOMOTD),
|
||||
me.name, source_p->name);
|
||||
free_cachefile(user_motd);
|
||||
user_motd = cache_file(MPATH, "ircd.motd", 0);
|
||||
}
|
||||
|
||||
|
|
|
@ -45,10 +45,10 @@
|
|||
extern rb_dlink_list global_channel_list;
|
||||
|
||||
extern struct config_channel_entry ConfigChannel;
|
||||
extern BlockHeap *channel_heap;
|
||||
extern BlockHeap *ban_heap;
|
||||
extern BlockHeap *topic_heap;
|
||||
extern BlockHeap *member_heap;
|
||||
extern rb_bh *channel_heap;
|
||||
extern rb_bh *ban_heap;
|
||||
extern rb_bh *topic_heap;
|
||||
extern rb_bh *member_heap;
|
||||
|
||||
static int channel_capabs[] = { CAP_EX, CAP_IE,
|
||||
CAP_SERVICE,
|
||||
|
@ -73,10 +73,10 @@ static int h_can_join;
|
|||
void
|
||||
init_channels(void)
|
||||
{
|
||||
channel_heap = BlockHeapCreate(sizeof(struct Channel), CHANNEL_HEAP_SIZE);
|
||||
ban_heap = BlockHeapCreate(sizeof(struct Ban), BAN_HEAP_SIZE);
|
||||
topic_heap = BlockHeapCreate(TOPICLEN + 1 + USERHOST_REPLYLEN, TOPIC_HEAP_SIZE);
|
||||
member_heap = BlockHeapCreate(sizeof(struct membership), MEMBER_HEAP_SIZE);
|
||||
channel_heap = rb_bh_create(sizeof(struct Channel), CHANNEL_HEAP_SIZE);
|
||||
ban_heap = rb_bh_create(sizeof(struct Ban), BAN_HEAP_SIZE);
|
||||
topic_heap = rb_bh_create(TOPICLEN + 1 + USERHOST_REPLYLEN, TOPIC_HEAP_SIZE);
|
||||
member_heap = rb_bh_create(sizeof(struct membership), MEMBER_HEAP_SIZE);
|
||||
|
||||
h_can_join = register_hook("can_join");
|
||||
}
|
||||
|
@ -88,7 +88,7 @@ struct Channel *
|
|||
allocate_channel(const char *chname)
|
||||
{
|
||||
struct Channel *chptr;
|
||||
chptr = BlockHeapAlloc(channel_heap);
|
||||
chptr = rb_bh_alloc(channel_heap);
|
||||
chptr->chname = rb_strdup(chname);
|
||||
return (chptr);
|
||||
}
|
||||
|
@ -97,14 +97,14 @@ void
|
|||
free_channel(struct Channel *chptr)
|
||||
{
|
||||
rb_free(chptr->chname);
|
||||
BlockHeapFree(channel_heap, chptr);
|
||||
rb_bh_free(channel_heap, chptr);
|
||||
}
|
||||
|
||||
struct Ban *
|
||||
allocate_ban(const char *banstr, const char *who)
|
||||
{
|
||||
struct Ban *bptr;
|
||||
bptr = BlockHeapAlloc(ban_heap);
|
||||
bptr = rb_bh_alloc(ban_heap);
|
||||
bptr->banstr = rb_strdup(banstr);
|
||||
bptr->who = rb_strdup(who);
|
||||
|
||||
|
@ -116,7 +116,7 @@ free_ban(struct Ban *bptr)
|
|||
{
|
||||
rb_free(bptr->banstr);
|
||||
rb_free(bptr->who);
|
||||
BlockHeapFree(ban_heap, bptr);
|
||||
rb_bh_free(ban_heap, bptr);
|
||||
}
|
||||
|
||||
|
||||
|
@ -205,7 +205,7 @@ add_user_to_channel(struct Channel *chptr, struct Client *client_p, int flags)
|
|||
if(client_p->user == NULL)
|
||||
return;
|
||||
|
||||
msptr = BlockHeapAlloc(member_heap);
|
||||
msptr = rb_bh_alloc(member_heap);
|
||||
|
||||
msptr->chptr = chptr;
|
||||
msptr->client_p = client_p;
|
||||
|
@ -247,7 +247,7 @@ remove_user_from_channel(struct membership *msptr)
|
|||
if(!(chptr->mode.mode & MODE_PERMANENT) && rb_dlink_list_length(&chptr->members) <= 0)
|
||||
destroy_channel(chptr);
|
||||
|
||||
BlockHeapFree(member_heap, msptr);
|
||||
rb_bh_free(member_heap, msptr);
|
||||
|
||||
return;
|
||||
}
|
||||
|
@ -284,7 +284,7 @@ remove_user_from_channels(struct Client *client_p)
|
|||
if(!(chptr->mode.mode & MODE_PERMANENT) && rb_dlink_list_length(&chptr->members) <= 0)
|
||||
destroy_channel(chptr);
|
||||
|
||||
BlockHeapFree(member_heap, msptr);
|
||||
rb_bh_free(member_heap, msptr);
|
||||
}
|
||||
|
||||
client_p->user->channel.head = client_p->user->channel.tail = NULL;
|
||||
|
@ -1020,7 +1020,7 @@ allocate_topic(struct Channel *chptr)
|
|||
if(chptr == NULL)
|
||||
return;
|
||||
|
||||
ptr = BlockHeapAlloc(topic_heap);
|
||||
ptr = rb_bh_alloc(topic_heap);
|
||||
|
||||
/* Basically we allocate one large block for the topic and
|
||||
* the topic info. We then split it up into two and shove it
|
||||
|
@ -1050,7 +1050,7 @@ free_topic(struct Channel *chptr)
|
|||
* MUST change this as well
|
||||
*/
|
||||
ptr = chptr->topic;
|
||||
BlockHeapFree(topic_heap, ptr);
|
||||
rb_bh_free(topic_heap, ptr);
|
||||
chptr->topic = NULL;
|
||||
chptr->topic_info = NULL;
|
||||
}
|
||||
|
|
38
src/client.c
38
src/client.c
|
@ -73,9 +73,9 @@ static int qs_server(struct Client *, struct Client *, struct Client *, const ch
|
|||
|
||||
static EVH check_pings;
|
||||
|
||||
extern BlockHeap *client_heap;
|
||||
extern BlockHeap *lclient_heap;
|
||||
extern BlockHeap *pclient_heap;
|
||||
extern rb_bh *client_heap;
|
||||
extern rb_bh *lclient_heap;
|
||||
extern rb_bh *pclient_heap;
|
||||
|
||||
extern char current_uid[IDLEN];
|
||||
|
||||
|
@ -117,9 +117,9 @@ init_client(void)
|
|||
* start off the check ping event .. -- adrian
|
||||
* Every 30 seconds is plenty -- db
|
||||
*/
|
||||
client_heap = BlockHeapCreate(sizeof(struct Client), CLIENT_HEAP_SIZE);
|
||||
lclient_heap = BlockHeapCreate(sizeof(struct LocalUser), LCLIENT_HEAP_SIZE);
|
||||
pclient_heap = BlockHeapCreate(sizeof(struct PreClient), PCLIENT_HEAP_SIZE);
|
||||
client_heap = rb_bh_create(sizeof(struct Client), CLIENT_HEAP_SIZE);
|
||||
lclient_heap = rb_bh_create(sizeof(struct LocalUser), LCLIENT_HEAP_SIZE);
|
||||
pclient_heap = rb_bh_create(sizeof(struct PreClient), PCLIENT_HEAP_SIZE);
|
||||
rb_event_addish("check_pings", check_pings, NULL, 30);
|
||||
rb_event_addish("free_exited_clients", &free_exited_clients, NULL, 4);
|
||||
rb_event_addish("exit_aborted_clients", exit_aborted_clients, NULL, 1);
|
||||
|
@ -144,13 +144,13 @@ make_client(struct Client *from)
|
|||
struct Client *client_p = NULL;
|
||||
struct LocalUser *localClient;
|
||||
|
||||
client_p = BlockHeapAlloc(client_heap);
|
||||
client_p = rb_bh_alloc(client_heap);
|
||||
|
||||
if(from == NULL)
|
||||
{
|
||||
client_p->from = client_p; /* 'from' of local client is self! */
|
||||
|
||||
localClient = (struct LocalUser *) BlockHeapAlloc(lclient_heap);
|
||||
localClient = (struct LocalUser *) rb_bh_alloc(lclient_heap);
|
||||
SetMyConnect(client_p);
|
||||
client_p->localClient = localClient;
|
||||
|
||||
|
@ -159,7 +159,7 @@ make_client(struct Client *from)
|
|||
client_p->localClient->F = NULL;
|
||||
client_p->localClient->ctrlfd = -1;
|
||||
|
||||
client_p->preClient = (struct PreClient *) BlockHeapAlloc(pclient_heap);
|
||||
client_p->preClient = (struct PreClient *) rb_bh_alloc(pclient_heap);
|
||||
|
||||
/* as good a place as any... */
|
||||
rb_dlinkAdd(client_p, &client_p->localClient->tnode, &unknown_list);
|
||||
|
@ -191,7 +191,7 @@ free_pre_client(struct Client *client_p)
|
|||
if (blptr != NULL)
|
||||
unref_blacklist(blptr);
|
||||
abort_blacklist_queries(client_p);
|
||||
BlockHeapFree(pclient_heap, client_p->preClient);
|
||||
rb_bh_free(pclient_heap, client_p->preClient);
|
||||
client_p->preClient = NULL;
|
||||
}
|
||||
|
||||
|
@ -231,7 +231,7 @@ free_local_client(struct Client *client_p)
|
|||
rb_free(client_p->localClient->opername);
|
||||
rb_free(client_p->localClient->mangledhost);
|
||||
|
||||
BlockHeapFree(lclient_heap, client_p->localClient);
|
||||
rb_bh_free(lclient_heap, client_p->localClient);
|
||||
client_p->localClient = NULL;
|
||||
}
|
||||
|
||||
|
@ -242,7 +242,7 @@ free_client(struct Client *client_p)
|
|||
s_assert(&me != client_p);
|
||||
free_local_client(client_p);
|
||||
free_pre_client(client_p);
|
||||
BlockHeapFree(client_heap, client_p);
|
||||
rb_bh_free(client_heap, client_p);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -1709,7 +1709,7 @@ void
|
|||
count_local_client_memory(size_t * count, size_t * local_client_memory_used)
|
||||
{
|
||||
size_t lusage;
|
||||
BlockHeapUsage(lclient_heap, count, NULL, &lusage);
|
||||
rb_bh_usage(lclient_heap, count, NULL, &lusage);
|
||||
*local_client_memory_used = lusage + (*count * (sizeof(MemBlock) + sizeof(struct Client)));
|
||||
}
|
||||
|
||||
|
@ -1720,8 +1720,8 @@ void
|
|||
count_remote_client_memory(size_t * count, size_t * remote_client_memory_used)
|
||||
{
|
||||
size_t lcount, rcount;
|
||||
BlockHeapUsage(lclient_heap, &lcount, NULL, NULL);
|
||||
BlockHeapUsage(client_heap, &rcount, NULL, NULL);
|
||||
rb_bh_usage(lclient_heap, &lcount, NULL, NULL);
|
||||
rb_bh_usage(client_heap, &rcount, NULL, NULL);
|
||||
*count = rcount - lcount;
|
||||
*remote_client_memory_used = *count * (sizeof(MemBlock) + sizeof(struct Client));
|
||||
}
|
||||
|
@ -1841,11 +1841,11 @@ show_ip_conf(struct ConfItem *aconf, struct Client *source_p)
|
|||
* side effects - Creates a block heap for struct Users
|
||||
*
|
||||
*/
|
||||
static BlockHeap *user_heap;
|
||||
static rb_bh *user_heap;
|
||||
void
|
||||
initUser(void)
|
||||
{
|
||||
user_heap = BlockHeapCreate(sizeof(struct User), USER_HEAP_SIZE);
|
||||
user_heap = rb_bh_create(sizeof(struct User), USER_HEAP_SIZE);
|
||||
if(!user_heap)
|
||||
outofmemory();
|
||||
}
|
||||
|
@ -1866,7 +1866,7 @@ make_user(struct Client *client_p)
|
|||
user = client_p->user;
|
||||
if(!user)
|
||||
{
|
||||
user = (struct User *) BlockHeapAlloc(user_heap);
|
||||
user = (struct User *) rb_bh_alloc(user_heap);
|
||||
user->refcnt = 1;
|
||||
client_p->user = user;
|
||||
}
|
||||
|
@ -1932,7 +1932,7 @@ free_user(struct User *user, struct Client *client_p)
|
|||
s_assert(!user->channel.head);
|
||||
}
|
||||
|
||||
BlockHeapFree(user_heap, user);
|
||||
rb_bh_free(user_heap, user);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include "setup.h"
|
||||
#include "irc_dictionary.h"
|
||||
|
||||
static BlockHeap *elem_heap = NULL;
|
||||
static rb_bh *elem_heap = NULL;
|
||||
|
||||
struct Dictionary
|
||||
{
|
||||
|
@ -62,7 +62,7 @@ struct Dictionary *irc_dictionary_create(DCF compare_cb)
|
|||
dtree->compare_cb = compare_cb;
|
||||
|
||||
if (!elem_heap)
|
||||
elem_heap = BlockHeapCreate(sizeof(struct DictionaryElement), 1024);
|
||||
elem_heap = rb_bh_create(sizeof(struct DictionaryElement), 1024);
|
||||
|
||||
return dtree;
|
||||
}
|
||||
|
@ -93,7 +93,7 @@ struct Dictionary *irc_dictionary_create_named(const char *name,
|
|||
dtree->id = rb_strdup(name);
|
||||
|
||||
if (!elem_heap)
|
||||
elem_heap = BlockHeapCreate(sizeof(struct DictionaryElement), 1024);
|
||||
elem_heap = rb_bh_create(sizeof(struct DictionaryElement), 1024);
|
||||
|
||||
return dtree;
|
||||
}
|
||||
|
@ -364,7 +364,7 @@ irc_dictionary_link(struct Dictionary *dict,
|
|||
dict->root->data = delem->data;
|
||||
dict->count--;
|
||||
|
||||
BlockHeapFree(elem_heap, delem);
|
||||
rb_bh_free(elem_heap, delem);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -473,7 +473,7 @@ void irc_dictionary_destroy(struct Dictionary *dtree,
|
|||
if (destroy_cb != NULL)
|
||||
(*destroy_cb)(n, privdata);
|
||||
|
||||
BlockHeapFree(elem_heap, n);
|
||||
rb_bh_free(elem_heap, n);
|
||||
}
|
||||
|
||||
rb_free(dtree);
|
||||
|
@ -713,14 +713,14 @@ struct DictionaryElement *irc_dictionary_add(struct Dictionary *dict, char *key,
|
|||
s_assert(data != NULL);
|
||||
s_assert(irc_dictionary_find(dict, key) == NULL);
|
||||
|
||||
delem = BlockHeapAlloc(elem_heap);
|
||||
delem = rb_bh_alloc(elem_heap);
|
||||
delem->key = key;
|
||||
delem->data = data;
|
||||
|
||||
/* TBD: is this needed? --nenolod */
|
||||
if (delem->key == NULL)
|
||||
{
|
||||
BlockHeapFree(elem_heap, delem);
|
||||
rb_bh_free(elem_heap, delem);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -759,7 +759,7 @@ void *irc_dictionary_delete(struct Dictionary *dtree, const char *key)
|
|||
data = delem->data;
|
||||
|
||||
irc_dictionary_unlink_root(dtree);
|
||||
BlockHeapFree(elem_heap, delem);
|
||||
rb_bh_free(elem_heap, delem);
|
||||
|
||||
return data;
|
||||
}
|
||||
|
|
|
@ -128,25 +128,25 @@ int opers_see_all_users = 0;
|
|||
int testing_conf = 0;
|
||||
|
||||
struct config_channel_entry ConfigChannel;
|
||||
BlockHeap *channel_heap;
|
||||
BlockHeap *ban_heap;
|
||||
BlockHeap *topic_heap;
|
||||
BlockHeap *member_heap;
|
||||
rb_bh *channel_heap;
|
||||
rb_bh *ban_heap;
|
||||
rb_bh *topic_heap;
|
||||
rb_bh *member_heap;
|
||||
|
||||
BlockHeap *client_heap = NULL;
|
||||
BlockHeap *lclient_heap = NULL;
|
||||
BlockHeap *pclient_heap = NULL;
|
||||
rb_bh *client_heap = NULL;
|
||||
rb_bh *lclient_heap = NULL;
|
||||
rb_bh *pclient_heap = NULL;
|
||||
|
||||
char current_uid[IDLEN];
|
||||
|
||||
/* patricia */
|
||||
BlockHeap *prefix_heap;
|
||||
BlockHeap *node_heap;
|
||||
BlockHeap *patricia_heap;
|
||||
rb_bh *prefix_heap;
|
||||
rb_bh *node_heap;
|
||||
rb_bh *patricia_heap;
|
||||
|
||||
BlockHeap *linebuf_heap;
|
||||
rb_bh *linebuf_heap;
|
||||
|
||||
BlockHeap *dnode_heap;
|
||||
rb_bh *dnode_heap;
|
||||
|
||||
#ifdef NOTYET
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ ReportType;
|
|||
#define sendheader(c, r) sendto_one_notice(c, HeaderMessages[(r)])
|
||||
|
||||
static rb_dlink_list auth_poll_list;
|
||||
static BlockHeap *auth_heap;
|
||||
static rb_bh *auth_heap;
|
||||
static EVH timeout_auth_queries_event;
|
||||
|
||||
static PF read_auth_reply;
|
||||
|
@ -103,7 +103,7 @@ init_auth(void)
|
|||
/* This hook takes a struct Client for its argument */
|
||||
memset(&auth_poll_list, 0, sizeof(auth_poll_list));
|
||||
eventAddIsh("timeout_auth_queries_event", timeout_auth_queries_event, NULL, 1);
|
||||
auth_heap = BlockHeapCreate(sizeof(struct AuthRequest), LCLIENT_HEAP_SIZE);
|
||||
auth_heap = rb_bh_create(sizeof(struct AuthRequest), LCLIENT_HEAP_SIZE);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -112,7 +112,7 @@ init_auth(void)
|
|||
static struct AuthRequest *
|
||||
make_auth_request(struct Client *client)
|
||||
{
|
||||
struct AuthRequest *request = BlockHeapAlloc(auth_heap);
|
||||
struct AuthRequest *request = rb_bh_alloc(auth_heap);
|
||||
client->localClient->auth_request = request;
|
||||
request->fd = -1;
|
||||
request->client = client;
|
||||
|
@ -126,7 +126,7 @@ make_auth_request(struct Client *client)
|
|||
static void
|
||||
free_auth_request(struct AuthRequest *request)
|
||||
{
|
||||
BlockHeapFree(auth_heap, request);
|
||||
rb_bh_free(auth_heap, request);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -59,7 +59,7 @@ extern char linebuf[];
|
|||
#define INADDR_NONE ((unsigned int) 0xffffffff)
|
||||
#endif
|
||||
|
||||
static BlockHeap *confitem_heap = NULL;
|
||||
static rb_bh *confitem_heap = NULL;
|
||||
|
||||
rb_dlink_list temp_klines[LAST_TEMP_TYPE];
|
||||
rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
|
||||
|
@ -83,7 +83,7 @@ static int attach_iline(struct Client *, struct ConfItem *);
|
|||
void
|
||||
init_s_conf(void)
|
||||
{
|
||||
confitem_heap = BlockHeapCreate(sizeof(struct ConfItem), CONFITEM_HEAP_SIZE);
|
||||
confitem_heap = rb_bh_create(sizeof(struct ConfItem), CONFITEM_HEAP_SIZE);
|
||||
|
||||
eventAddIsh("expire_temp_klines", expire_temp_kd, &temp_klines[TEMP_MIN], 60);
|
||||
eventAddIsh("expire_temp_dlines", expire_temp_kd, &temp_dlines[TEMP_MIN], 60);
|
||||
|
@ -114,7 +114,7 @@ make_conf()
|
|||
{
|
||||
struct ConfItem *aconf;
|
||||
|
||||
aconf = BlockHeapAlloc(confitem_heap);
|
||||
aconf = rb_bh_alloc(confitem_heap);
|
||||
aconf->status = CONF_ILLEGAL;
|
||||
return (aconf);
|
||||
}
|
||||
|
@ -146,7 +146,7 @@ free_conf(struct ConfItem *aconf)
|
|||
rb_free(aconf->user);
|
||||
rb_free(aconf->host);
|
||||
|
||||
BlockHeapFree(confitem_heap, aconf);
|
||||
rb_bh_free(confitem_heap, aconf);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -58,7 +58,7 @@ rb_dlink_list tgchange_list;
|
|||
|
||||
rb_patricia_tree_t *tgchange_tree;
|
||||
|
||||
static BlockHeap *nd_heap = NULL;
|
||||
static rb_bh *nd_heap = NULL;
|
||||
|
||||
static void expire_temp_rxlines(void *unused);
|
||||
static void expire_nd_entries(void *unused);
|
||||
|
@ -67,7 +67,7 @@ void
|
|||
init_s_newconf(void)
|
||||
{
|
||||
tgchange_tree = New_Patricia(PATRICIA_BITS);
|
||||
nd_heap = BlockHeapCreate(sizeof(struct nd_entry), ND_HEAP_SIZE);
|
||||
nd_heap = rb_bh_create(sizeof(struct nd_entry), ND_HEAP_SIZE);
|
||||
eventAddIsh("expire_nd_entries", expire_nd_entries, NULL, 30);
|
||||
eventAddIsh("expire_temp_rxlines", expire_temp_rxlines, NULL, 60);
|
||||
}
|
||||
|
@ -751,7 +751,7 @@ add_nd_entry(const char *name)
|
|||
if(irc_dictionary_find(nd_dict, name) != NULL)
|
||||
return;
|
||||
|
||||
nd = BlockHeapAlloc(nd_heap);
|
||||
nd = rb_bh_alloc(nd_heap);
|
||||
|
||||
strlcpy(nd->name, name, sizeof(nd->name));
|
||||
nd->expire = rb_current_time() + ConfigFileEntry.nick_delay;
|
||||
|
@ -768,7 +768,7 @@ free_nd_entry(struct nd_entry *nd)
|
|||
irc_dictionary_delete(nd_dict, nd->name);
|
||||
|
||||
rb_dlinkDelete(&nd->lnode, &nd_list);
|
||||
BlockHeapFree(nd_heap, nd);
|
||||
rb_bh_free(nd_heap, nd);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue