1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
/*
* $Id$
*
* imc module - instant messaging conferencing implementation
*
* Copyright (C) 2006 Voice Sistem S.R.L.
*
* This file is part of Kamailio, a free SIP server.
*
* Kamailio 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
*
* Kamailio 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* History:
* ---------
* 2006-10-06 first version (anca)
*/
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include "../../mem/mem.h"
#include "../../mem/shm_mem.h"
#include "../../dprint.h"
#include "../../hashes.h"
#include "imc_mng.h"
/* imc hash table */
extern imc_hentry_p _imc_htable;
extern int imc_hash_size;
extern char imc_cmd_start_char;
#define imc_get_hentry(_hid, _size) ((_hid)&(_size-1))
/**
* hash thable init
*/
int imc_htable_init(void)
{
int i;
if(imc_hash_size<=0)
{
LM_ERR("invalid hash table size\n");
return -1;
}
_imc_htable = (imc_hentry_p)shm_malloc(imc_hash_size*sizeof(imc_hentry_t));
if(_imc_htable == NULL)
{
LM_ERR("no more shm memory\n");
return -1;
}
memset(_imc_htable, 0, imc_hash_size*sizeof(imc_hentry_t));
for(i=0; i<imc_hash_size; i++)
{
if (lock_init(&_imc_htable[i].lock)==0)
{
LM_CRIT("failed to initialize lock [%d]\n", i);
goto error;
}
}
return 0;
error:
if(_imc_htable!=NULL)
{
shm_free(_imc_htable);
_imc_htable = NULL;
}
return -1;
}
/**
* destroy hash table
*/
int imc_htable_destroy(void)
{
int i;
imc_room_p irp = NULL, irp_temp=NULL;
if(_imc_htable==NULL)
return -1;
for(i=0; i<imc_hash_size; i++)
{
lock_destroy(&_imc_htable[i].lock);
if(_imc_htable[i].rooms==NULL)
continue;
irp = _imc_htable[i].rooms;
while(irp){
irp_temp = irp->next;
imc_del_room(&irp->name, &irp->domain);
irp = irp_temp;
}
}
shm_free(_imc_htable);
_imc_htable = NULL;
return 0;
}
/**
* add room
*/
imc_room_p imc_add_room(str* name, str* domain, int flags)
{
imc_room_p irp = NULL;
int size;
int hidx;
if(name == NULL || name->s==NULL || name->len<=0
|| domain == NULL || domain->s==NULL || domain->len<=0)
{
LM_ERR("invalid parameters\n");
return NULL;
}
/* struct size + "sip:" + name len + "@" + domain len + '\0' */
size = sizeof(imc_room_t) + (name->len+domain->len+6)*sizeof(char);
irp = (imc_room_p)shm_malloc(size);
if(irp==NULL)
{
LM_ERR("no more shm memory left\n");
return NULL;
}
memset(irp, 0, size);
irp->uri.len = 4 /*sip:*/ + name->len + 1 /*@*/ + domain->len;
irp->uri.s = (char*)(((char*)irp)+sizeof(imc_room_t));
memcpy(irp->uri.s, "sip:", 4);
memcpy(irp->uri.s+4, name->s, name->len);
irp->uri.s[4+name->len] = '@';
memcpy(irp->uri.s+5+name->len, domain->s, domain->len);
irp->uri.s[irp->uri.len] = '\0';
irp->name.len = name->len;
irp->name.s = irp->uri.s+4;
irp->domain.len = domain->len;
irp->domain.s = irp->uri.s+5+name->len;
irp->flags = flags;
irp->hashid = core_case_hash(&irp->name, &irp->domain, 0);
hidx = imc_get_hentry(irp->hashid, imc_hash_size);
lock_get(&_imc_htable[hidx].lock);
if(_imc_htable[hidx].rooms!=NULL)
{
irp->next = _imc_htable[hidx].rooms;
_imc_htable[hidx].rooms->prev = irp;
_imc_htable[hidx].rooms = irp;
} else {
_imc_htable[hidx].rooms = irp;
}
return irp;
}
/**
* release room
*/
int imc_release_room(imc_room_p room)
{
unsigned int hidx;
if(room==NULL)
{
LM_ERR("invalid parameters\n");
return -1;
}
hidx = imc_get_hentry(room->hashid, imc_hash_size);
lock_release(&_imc_htable[hidx].lock);
return 0;
}
/**
* search room
*/
imc_room_p imc_get_room(str* name, str* domain)
{
imc_room_p irp = NULL;
unsigned int hashid;
int hidx;
if(name == NULL || name->s==NULL || name->len<=0
|| domain == NULL || domain->s==NULL || domain->len<=0)
{
LM_ERR("invalid parameters\n");
return NULL;
}
hashid = core_case_hash(name, domain, 0);
hidx = imc_get_hentry(hashid, imc_hash_size);
lock_get(&_imc_htable[hidx].lock);
irp = _imc_htable[hidx].rooms;
while(irp)
{
if(irp->hashid==hashid && irp->name.len==name->len
&& irp->domain.len==domain->len
&& !strncasecmp(irp->name.s, name->s, name->len)
&& !strncasecmp(irp->domain.s, domain->s, domain->len))
{
return irp;
}
irp = irp->next;
}
/* no room */
lock_release(&_imc_htable[hidx].lock);
return NULL;
}
/**
* delete room
*/
int imc_del_room(str* name, str* domain)
{
imc_room_p irp = NULL;
imc_member_p imp=NULL, imp_temp=NULL;
unsigned int hashid;
int hidx;
if(name == NULL || name->s==NULL || name->len<=0
|| domain == NULL || domain->s==NULL || domain->len<=0)
{
LM_ERR("invalid parameters\n");
return -1;
}
hashid = core_case_hash(name, domain, 0);
hidx = imc_get_hentry(hashid, imc_hash_size);
lock_get(&_imc_htable[hidx].lock);
irp = _imc_htable[hidx].rooms;
while(irp)
{
if(irp->hashid==hashid && irp->name.len==name->len
&& irp->domain.len==domain->len
&& !strncasecmp(irp->name.s, name->s, name->len)
&& !strncasecmp(irp->domain.s, domain->s, domain->len))
{
if(irp->prev==NULL)
_imc_htable[hidx].rooms = irp->next;
else
irp->prev->next = irp->next;
if(irp->next!=NULL)
irp->next->prev = irp->prev;
/* delete members */
imp = irp->members;
while(imp){
imp_temp = imp->next;
shm_free(imp);
imp = imp_temp;
}
shm_free(irp);
goto done;
}
irp = irp->next;
}
done:
lock_release(&_imc_htable[hidx].lock);
return 0;
}
/**
* add member
*/
imc_member_p imc_add_member(imc_room_p room, str* user, str* domain, int flags)
{
imc_member_p imp = NULL;
int size;
if(room==NULL || user == NULL || user->s==NULL || user->len<=0
|| domain == NULL || domain->s==NULL || domain->len<=0)
{
LM_ERR("invalid parameters\n");
return NULL;
}
/* struct size + "sip:" + user name len + "@" + domain len + '\0' */
size = sizeof(imc_member_t) + (user->len+domain->len+6)*sizeof(char);
imp = (imc_member_p)shm_malloc(size);
if(imp== NULL)
{
LM_ERR("out of shm memory\n");
return NULL;
}
memset(imp, 0, size);
imp->uri.len = 4 /*sip:*/ + user->len + 1 /*@*/ + domain->len;
imp->uri.s = (char*)(((char*)imp)+sizeof(imc_member_t));
memcpy(imp->uri.s, "sip:", 4);
memcpy(imp->uri.s+4, user->s, user->len);
imp->uri.s[4+user->len] = '@';
memcpy(imp->uri.s+5+user->len, domain->s, domain->len);
imp->uri.s[imp->uri.len] = '\0';
LM_DBG("[uri]= %.*s\n", imp->uri.len, imp->uri.s);
imp->user.len = user->len;
imp->user.s = imp->uri.s+4;
LM_DBG("[user]= %.*s\n", imp->user.len, imp->user.s);
imp->domain.len = domain->len;
imp->domain.s = imp->uri.s+5+user->len;
imp->flags = flags;
imp->hashid = core_case_hash(&imp->user, &imp->domain, 0);
room->nr_of_members++;
if(room->members==NULL)
room->members = imp;
else {
imp->next = room->members->next;
if((room->members)->next!=NULL)
((room->members)->next)->prev = imp;
imp->prev = room->members;
room->members->next=imp;
}
return imp;
}
/**
* search memeber
*/
imc_member_p imc_get_member(imc_room_p room, str* user, str* domain)
{
imc_member_p imp = NULL;
unsigned int hashid;
if(room==NULL || user == NULL || user->s==NULL || user->len<=0
|| domain == NULL || domain->s==NULL || domain->len<=0)
{
LM_ERR("invalid parameters\n");
return NULL;
}
hashid = core_case_hash(user, domain, 0);
imp = room->members;
while(imp)
{
if(imp->hashid==hashid && imp->user.len==user->len
&& imp->domain.len==domain->len
&& !strncasecmp(imp->user.s, user->s, user->len)
&& !strncasecmp(imp->domain.s, domain->s, domain->len))
{
LM_DBG("found member\n");
return imp;
}
imp = imp->next;
}
return NULL;
}
/**
* delete member
*/
int imc_del_member(imc_room_p room, str* user, str* domain)
{
imc_member_p imp = NULL;
unsigned int hashid;
if(room==NULL || user == NULL || user->s==NULL || user->len<=0
|| domain == NULL || domain->s==NULL || domain->len<=0)
{
LM_ERR("invalid parameters\n");
return -1;
}
hashid = core_case_hash(user, domain, 0);
imp = room->members;
while(imp)
{
if(imp->hashid==hashid && imp->user.len==user->len
&& imp->domain.len==domain->len
&& !strncasecmp(imp->user.s, user->s, user->len)
&& !strncasecmp(imp->domain.s, domain->s, domain->len))
{
if(imp->prev==NULL)
room->members = imp->next;
else
imp->prev->next = imp->next;
if(imp->next!=NULL)
imp->next->prev = imp->prev;
shm_free(imp);
room->nr_of_members--;
return 0;
}
imp = imp->next;
}
return 0;
}
|