2008-04-02 12:16:31 +02:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* hash.c: Maintains hashtables.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
namespace ircd {
|
|
|
|
|
2016-03-23 14:09:58 +01:00
|
|
|
rb_dictionary *client_connid_tree = NULL;
|
2016-03-23 14:32:22 +01:00
|
|
|
rb_radixtree *client_id_tree = NULL;
|
|
|
|
rb_radixtree *client_name_tree = NULL;
|
2016-01-09 11:25:41 +01:00
|
|
|
|
2016-03-23 14:32:22 +01:00
|
|
|
rb_radixtree *resv_tree = NULL;
|
|
|
|
rb_radixtree *hostname_tree = NULL;
|
2016-01-09 11:59:02 +01:00
|
|
|
|
2008-04-02 12:16:31 +02:00
|
|
|
/*
|
|
|
|
* look in whowas.c for the missing ...[WW_MAX]; entry
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* init_hash()
|
|
|
|
*
|
|
|
|
* clears the various hashtables
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
init_hash(void)
|
|
|
|
{
|
2016-03-06 21:17:19 +01:00
|
|
|
client_connid_tree = rb_dictionary_create("client connid", rb_uint32cmp);
|
|
|
|
client_id_tree = rb_radixtree_create("client id", NULL);
|
|
|
|
client_name_tree = rb_radixtree_create("client name", irccasecanon);
|
2016-01-09 11:59:02 +01:00
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
resv_tree = rb_radixtree_create("resv", irccasecanon);
|
2016-01-23 17:40:17 +01:00
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
hostname_tree = rb_radixtree_create("hostname", irccasecanon);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
2016-03-24 03:33:54 +01:00
|
|
|
uint32_t
|
2008-04-02 12:16:31 +02:00
|
|
|
fnv_hash_upper(const unsigned char *s, int bits)
|
|
|
|
{
|
2016-03-24 03:33:54 +01:00
|
|
|
uint32_t h = FNV1_32_INIT;
|
2008-04-02 12:16:31 +02:00
|
|
|
|
|
|
|
while (*s)
|
|
|
|
{
|
2016-08-16 11:12:01 +02:00
|
|
|
h ^= rfc1459::toupper(*s++);
|
2008-04-02 12:16:31 +02:00
|
|
|
h += (h<<1) + (h<<4) + (h<<7) + (h << 8) + (h << 24);
|
|
|
|
}
|
|
|
|
if (bits < 32)
|
|
|
|
h = ((h >> bits) ^ h) & ((1<<bits)-1);
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2016-03-24 03:33:54 +01:00
|
|
|
uint32_t
|
2008-04-02 12:16:31 +02:00
|
|
|
fnv_hash(const unsigned char *s, int bits)
|
|
|
|
{
|
2016-03-24 03:33:54 +01:00
|
|
|
uint32_t h = FNV1_32_INIT;
|
2008-04-02 12:16:31 +02:00
|
|
|
|
|
|
|
while (*s)
|
|
|
|
{
|
|
|
|
h ^= *s++;
|
|
|
|
h += (h<<1) + (h<<4) + (h<<7) + (h << 8) + (h << 24);
|
|
|
|
}
|
|
|
|
if (bits < 32)
|
|
|
|
h = ((h >> bits) ^ h) & ((1<<bits)-1);
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2016-03-24 03:33:54 +01:00
|
|
|
uint32_t
|
2008-04-02 12:16:31 +02:00
|
|
|
fnv_hash_len(const unsigned char *s, int bits, int len)
|
|
|
|
{
|
2016-03-24 03:33:54 +01:00
|
|
|
uint32_t h = FNV1_32_INIT;
|
2008-04-02 12:16:31 +02:00
|
|
|
const unsigned char *x = s + len;
|
|
|
|
while (*s && s < x)
|
|
|
|
{
|
|
|
|
h ^= *s++;
|
|
|
|
h += (h<<1) + (h<<4) + (h<<7) + (h << 8) + (h << 24);
|
|
|
|
}
|
|
|
|
if (bits < 32)
|
|
|
|
h = ((h >> bits) ^ h) & ((1<<bits)-1);
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2016-03-24 03:33:54 +01:00
|
|
|
uint32_t
|
2008-04-02 12:16:31 +02:00
|
|
|
fnv_hash_upper_len(const unsigned char *s, int bits, int len)
|
|
|
|
{
|
2016-03-24 03:33:54 +01:00
|
|
|
uint32_t h = FNV1_32_INIT;
|
2008-04-02 12:16:31 +02:00
|
|
|
const unsigned char *x = s + len;
|
|
|
|
while (*s && s < x)
|
|
|
|
{
|
2016-08-16 11:12:01 +02:00
|
|
|
h ^= rfc1459::toupper(*s++);
|
2008-04-02 12:16:31 +02:00
|
|
|
h += (h<<1) + (h<<4) + (h<<7) + (h << 8) + (h << 24);
|
|
|
|
}
|
|
|
|
if (bits < 32)
|
|
|
|
h = ((h >> bits) ^ h) & ((1<<bits)-1);
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add_to_id_hash()
|
|
|
|
*
|
|
|
|
* adds an entry to the id hash table
|
|
|
|
*/
|
|
|
|
void
|
2016-08-22 03:57:43 +02:00
|
|
|
add_to_id_hash(const char *name, client::client *client_p)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
|
|
|
if(EmptyString(name) || (client_p == NULL))
|
|
|
|
return;
|
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
rb_radixtree_add(client_id_tree, name, client_p);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* add_to_client_hash()
|
|
|
|
*
|
|
|
|
* adds an entry (client/server) to the client hash table
|
|
|
|
*/
|
|
|
|
void
|
2016-08-22 03:57:43 +02:00
|
|
|
add_to_client_hash(const char *name, client::client *client_p)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
|
|
|
s_assert(name != NULL);
|
|
|
|
s_assert(client_p != NULL);
|
|
|
|
if(EmptyString(name) || (client_p == NULL))
|
|
|
|
return;
|
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
rb_radixtree_add(client_name_tree, name, client_p);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* add_to_hostname_hash()
|
|
|
|
*
|
|
|
|
* adds a client entry to the hostname hash table
|
|
|
|
*/
|
|
|
|
void
|
2016-08-22 03:57:43 +02:00
|
|
|
add_to_hostname_hash(const char *hostname, client::client *client_p)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
2016-01-23 17:40:17 +01:00
|
|
|
rb_dlink_list *list;
|
2008-04-02 12:16:31 +02:00
|
|
|
|
|
|
|
s_assert(hostname != NULL);
|
|
|
|
s_assert(client_p != NULL);
|
|
|
|
if(EmptyString(hostname) || (client_p == NULL))
|
|
|
|
return;
|
|
|
|
|
2016-07-13 07:17:21 +02:00
|
|
|
list = (rb_dlink_list *)rb_radixtree_retrieve(hostname_tree, hostname);
|
2016-01-23 17:40:17 +01:00
|
|
|
if (list != NULL)
|
|
|
|
{
|
|
|
|
rb_dlinkAddAlloc(client_p, list);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-13 07:17:21 +02:00
|
|
|
list = (rb_dlink_list *)rb_malloc(sizeof(*list));
|
2016-03-06 21:17:19 +01:00
|
|
|
rb_radixtree_add(hostname_tree, hostname, list);
|
2016-01-23 17:40:17 +01:00
|
|
|
rb_dlinkAddAlloc(client_p, list);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* add_to_resv_hash()
|
|
|
|
*
|
|
|
|
* adds a resv channel entry to the resv hash table
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
add_to_resv_hash(const char *name, struct ConfItem *aconf)
|
|
|
|
{
|
|
|
|
s_assert(!EmptyString(name));
|
|
|
|
s_assert(aconf != NULL);
|
|
|
|
if(EmptyString(name) || aconf == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
rb_radixtree_add(resv_tree, name, aconf);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* del_from_id_hash()
|
|
|
|
*
|
|
|
|
* removes an id from the id hash table
|
|
|
|
*/
|
|
|
|
void
|
2016-08-22 03:57:43 +02:00
|
|
|
del_from_id_hash(const char *id, client::client *client_p)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
|
|
|
s_assert(id != NULL);
|
|
|
|
s_assert(client_p != NULL);
|
|
|
|
if(EmptyString(id) || client_p == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
rb_radixtree_delete(client_id_tree, id);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* del_from_client_hash()
|
|
|
|
*
|
|
|
|
* removes a client/server from the client hash table
|
|
|
|
*/
|
|
|
|
void
|
2016-08-22 03:57:43 +02:00
|
|
|
del_from_client_hash(const char *name, client::client *client_p)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
|
|
|
/* no s_asserts, this can happen when removing a client that
|
|
|
|
* is unregistered.
|
|
|
|
*/
|
|
|
|
if(EmptyString(name) || client_p == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
rb_radixtree_delete(client_name_tree, name);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* del_from_hostname_hash()
|
|
|
|
*
|
|
|
|
* removes a client entry from the hostname hash table
|
|
|
|
*/
|
|
|
|
void
|
2016-08-22 03:57:43 +02:00
|
|
|
del_from_hostname_hash(const char *hostname, client::client *client_p)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
2016-01-23 17:40:17 +01:00
|
|
|
rb_dlink_list *list;
|
2008-04-02 12:16:31 +02:00
|
|
|
|
|
|
|
if(hostname == NULL || client_p == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-07-13 07:17:21 +02:00
|
|
|
list = (rb_dlink_list *)rb_radixtree_retrieve(hostname_tree, hostname);
|
2016-01-23 17:40:17 +01:00
|
|
|
if (list == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
rb_dlinkFindDestroy(client_p, list);
|
2008-04-02 12:16:31 +02:00
|
|
|
|
2016-01-23 17:40:17 +01:00
|
|
|
if (rb_dlink_list_length(list) == 0)
|
|
|
|
{
|
2016-03-06 21:17:19 +01:00
|
|
|
rb_radixtree_delete(hostname_tree, hostname);
|
2016-01-23 17:40:17 +01:00
|
|
|
rb_free(list);
|
|
|
|
}
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* del_from_resv_hash()
|
|
|
|
*
|
|
|
|
* removes a resv entry from the resv hash table
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
del_from_resv_hash(const char *name, struct ConfItem *aconf)
|
|
|
|
{
|
|
|
|
s_assert(name != NULL);
|
|
|
|
s_assert(aconf != NULL);
|
|
|
|
if(EmptyString(name) || aconf == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
rb_radixtree_delete(resv_tree, name);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* find_id()
|
|
|
|
*
|
|
|
|
* finds a client entry from the id hash table
|
|
|
|
*/
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *
|
2008-04-02 12:16:31 +02:00
|
|
|
find_id(const char *name)
|
|
|
|
{
|
|
|
|
if(EmptyString(name))
|
|
|
|
return NULL;
|
|
|
|
|
2016-08-22 03:57:43 +02:00
|
|
|
return (client::client *)rb_radixtree_retrieve(client_id_tree, name);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* find_client()
|
|
|
|
*
|
|
|
|
* finds a client/server entry from the client hash table
|
|
|
|
*/
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *
|
2008-04-02 12:16:31 +02:00
|
|
|
find_client(const char *name)
|
|
|
|
{
|
|
|
|
s_assert(name != NULL);
|
|
|
|
if(EmptyString(name))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* hunting for an id, not a nick */
|
2016-08-16 11:12:01 +02:00
|
|
|
if(rfc1459::is_digit(*name))
|
2008-04-02 12:16:31 +02:00
|
|
|
return (find_id(name));
|
|
|
|
|
2016-08-22 03:57:43 +02:00
|
|
|
return (client::client *)rb_radixtree_retrieve(client_name_tree, name);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* find_named_client()
|
|
|
|
*
|
|
|
|
* finds a client/server entry from the client hash table
|
|
|
|
*/
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *
|
2008-04-02 12:16:31 +02:00
|
|
|
find_named_client(const char *name)
|
|
|
|
{
|
|
|
|
s_assert(name != NULL);
|
|
|
|
if(EmptyString(name))
|
|
|
|
return NULL;
|
|
|
|
|
2016-08-22 03:57:43 +02:00
|
|
|
return (client::client *)rb_radixtree_retrieve(client_name_tree, name);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* find_server()
|
|
|
|
*
|
|
|
|
* finds a server from the client hash table
|
|
|
|
*/
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *
|
|
|
|
find_server(client::client *source_p, const char *name)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *target_p;
|
2014-03-03 05:25:47 +01:00
|
|
|
|
2008-04-02 12:16:31 +02:00
|
|
|
if(EmptyString(name))
|
|
|
|
return NULL;
|
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if((source_p == NULL || !my(*source_p)) &&
|
2016-08-16 11:12:01 +02:00
|
|
|
rfc1459::is_digit(*name) && strlen(name) == 3)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
|
|
|
target_p = find_id(name);
|
|
|
|
return(target_p);
|
|
|
|
}
|
|
|
|
|
2016-08-22 03:57:43 +02:00
|
|
|
target_p = (client::client *)rb_radixtree_retrieve(client_name_tree, name);
|
2016-01-09 12:30:13 +01:00
|
|
|
if (target_p != NULL)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
2016-08-23 04:33:36 +02:00
|
|
|
if(is_server(*target_p) || is_me(*target_p))
|
2016-01-09 12:30:13 +01:00
|
|
|
return target_p;
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find_hostname()
|
|
|
|
*
|
|
|
|
* finds a hostname rb_dlink list from the hostname hash table.
|
|
|
|
* we return the full rb_dlink list, because you can have multiple
|
|
|
|
* entries with the same hostname
|
|
|
|
*/
|
|
|
|
rb_dlink_node *
|
|
|
|
find_hostname(const char *hostname)
|
|
|
|
{
|
2016-01-23 17:40:17 +01:00
|
|
|
rb_dlink_list *hlist;
|
2008-04-02 12:16:31 +02:00
|
|
|
|
|
|
|
if(EmptyString(hostname))
|
|
|
|
return NULL;
|
|
|
|
|
2016-07-13 07:17:21 +02:00
|
|
|
hlist = (rb_dlink_list *)rb_radixtree_retrieve(hostname_tree, hostname);
|
2016-01-23 17:40:17 +01:00
|
|
|
if (hlist == NULL)
|
|
|
|
return NULL;
|
2008-04-02 12:16:31 +02:00
|
|
|
|
2016-01-23 17:40:17 +01:00
|
|
|
return hlist->head;
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* hash_find_resv()
|
|
|
|
*
|
|
|
|
* hunts for a resv entry in the resv hash table
|
|
|
|
*/
|
|
|
|
struct ConfItem *
|
|
|
|
hash_find_resv(const char *name)
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
|
|
|
|
|
|
|
s_assert(name != NULL);
|
|
|
|
if(EmptyString(name))
|
|
|
|
return NULL;
|
|
|
|
|
2016-07-13 07:17:21 +02:00
|
|
|
aconf = (ConfItem *)rb_radixtree_retrieve(resv_tree, name);
|
2016-01-09 11:59:02 +01:00
|
|
|
if (aconf != NULL)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
2016-01-09 11:59:02 +01:00
|
|
|
aconf->port++;
|
|
|
|
return aconf;
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
clear_resv_hash(void)
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
2016-03-23 14:32:22 +01:00
|
|
|
rb_radixtree_iteration_state iter;
|
2008-04-02 12:16:31 +02:00
|
|
|
|
2016-07-13 07:17:21 +02:00
|
|
|
void *elem;
|
|
|
|
RB_RADIXTREE_FOREACH(elem, &iter, resv_tree)
|
2008-04-02 12:16:31 +02:00
|
|
|
{
|
2016-07-13 07:17:21 +02:00
|
|
|
aconf = (ConfItem *)elem;
|
2008-04-02 12:16:31 +02:00
|
|
|
/* skip temp resvs */
|
|
|
|
if(aconf->hold)
|
|
|
|
continue;
|
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
rb_radixtree_delete(resv_tree, aconf->host);
|
2016-01-09 11:59:02 +01:00
|
|
|
free_conf(aconf);
|
2008-04-02 12:16:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-13 17:54:23 +02:00
|
|
|
void
|
2016-08-22 03:57:43 +02:00
|
|
|
add_to_cli_connid_hash(client::client *client_p, uint32_t id)
|
2008-04-13 17:54:23 +02:00
|
|
|
{
|
2016-03-26 01:49:01 +01:00
|
|
|
rb_dictionary_add(client_connid_tree, RB_UINT_TO_POINTER(id), client_p);
|
2008-04-13 17:54:23 +02:00
|
|
|
}
|
|
|
|
|
2015-12-12 12:20:51 +01:00
|
|
|
void
|
2016-03-26 01:49:01 +01:00
|
|
|
del_from_cli_connid_hash(uint32_t id)
|
2015-12-12 12:20:51 +01:00
|
|
|
{
|
2016-03-26 01:49:01 +01:00
|
|
|
rb_dictionary_delete(client_connid_tree, RB_UINT_TO_POINTER(id));
|
2008-04-13 17:54:23 +02:00
|
|
|
}
|
|
|
|
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *
|
2016-01-09 11:25:41 +01:00
|
|
|
find_cli_connid_hash(uint32_t connid)
|
2008-04-13 17:54:23 +02:00
|
|
|
{
|
2016-08-22 03:57:43 +02:00
|
|
|
return (client::client *)rb_dictionary_retrieve(client_connid_tree, RB_UINT_TO_POINTER(connid));
|
2008-04-06 16:52:42 +02:00
|
|
|
}
|
2016-08-13 05:05:54 +02:00
|
|
|
|
|
|
|
} // namespace ircd
|