| 17 |
#include "user_list.h" |
#include "user_list.h" |
| 18 |
#include "user_stat.h" |
#include "user_stat.h" |
| 19 |
#include <errno.h> |
#include <errno.h> |
| 20 |
|
#include <fcntl.h> |
| 21 |
#include <stdlib.h> |
#include <stdlib.h> |
| 22 |
#include <string.h> |
#include <string.h> |
| 23 |
#include <time.h> |
#include <time.h> |
|
#include <sys/ipc.h> |
|
| 24 |
#include <sys/mman.h> |
#include <sys/mman.h> |
| 25 |
#include <sys/param.h> |
#include <sys/param.h> |
| 26 |
#include <sys/sem.h> |
#include <sys/sem.h> |
| 27 |
#include <sys/shm.h> |
#include <sys/stat.h> |
| 28 |
|
|
| 29 |
#if defined(_SEM_SEMUN_UNDEFINED) || defined(__CYGWIN__) |
#if defined(_SEM_SEMUN_UNDEFINED) || defined(__CYGWIN__) |
| 30 |
union semun |
union semun |
| 45 |
|
|
| 46 |
struct user_list_pool_t |
struct user_list_pool_t |
| 47 |
{ |
{ |
| 48 |
int shmid; |
size_t shm_size; |
| 49 |
int semid; |
int semid; |
| 50 |
USER_LIST user_list[2]; |
USER_LIST user_list[2]; |
| 51 |
int user_list_index_current; |
int user_list_index_current; |
| 58 |
}; |
}; |
| 59 |
typedef struct user_list_pool_t USER_LIST_POOL; |
typedef struct user_list_pool_t USER_LIST_POOL; |
| 60 |
|
|
| 61 |
|
static char user_list_shm_name[FILE_PATH_LEN]; |
| 62 |
static USER_LIST_POOL *p_user_list_pool = NULL; |
static USER_LIST_POOL *p_user_list_pool = NULL; |
| 63 |
static TRIE_NODE *p_trie_action_dict = NULL; |
static TRIE_NODE *p_trie_action_dict = NULL; |
| 64 |
|
|
| 86 |
|
|
| 87 |
const int user_action_map_size = sizeof(user_action_map) / sizeof(USER_ACTION_MAP); |
const int user_action_map_size = sizeof(user_action_map) / sizeof(USER_ACTION_MAP); |
| 88 |
|
|
| 89 |
static int user_list_try_rd_lock(int semid, int wait_sec); |
static int user_list_try_rd_lock(int wait_sec); |
| 90 |
static int user_list_try_rw_lock(int semid, int wait_sec); |
static int user_list_try_rw_lock(int wait_sec); |
| 91 |
static int user_list_rd_unlock(int semid); |
static int user_list_rd_unlock(void); |
| 92 |
static int user_list_rw_unlock(int semid); |
static int user_list_rw_unlock(void); |
| 93 |
static int user_list_rd_lock(int semid); |
static int user_list_rd_lock(void); |
| 94 |
static int user_list_rw_lock(int semid); |
static int user_list_rw_lock(void); |
| 95 |
|
|
| 96 |
static int user_list_load(MYSQL *db, USER_LIST *p_list); |
static int user_list_load(MYSQL *db, USER_LIST *p_list); |
| 97 |
static int user_online_list_load(MYSQL *db, USER_ONLINE_LIST *p_online_list); |
static int user_online_list_load(MYSQL *db, USER_ONLINE_LIST *p_online_list); |
| 389 |
|
|
| 390 |
int user_list_pool_init(const char *filename) |
int user_list_pool_init(const char *filename) |
| 391 |
{ |
{ |
| 392 |
int shmid; |
char filepath[FILE_PATH_LEN]; |
| 393 |
int semid; |
int fd; |
|
int proj_id; |
|
|
key_t key; |
|
| 394 |
size_t size; |
size_t size; |
| 395 |
void *p_shm; |
void *p_shm; |
| 396 |
|
int proj_id; |
| 397 |
|
key_t key; |
| 398 |
|
int semid; |
| 399 |
union semun arg; |
union semun arg; |
| 400 |
int i; |
int i; |
| 401 |
|
|
| 421 |
} |
} |
| 422 |
|
|
| 423 |
// Allocate shared memory |
// Allocate shared memory |
| 424 |
proj_id = (int)(time(NULL) % getpid()); |
size = sizeof(USER_LIST_POOL); |
| 425 |
key = ftok(filename, proj_id); |
|
| 426 |
if (key == -1) |
strncpy(filepath, filename, sizeof(filepath) - 1); |
| 427 |
|
filepath[sizeof(filepath) - 1] = '\0'; |
| 428 |
|
snprintf(user_list_shm_name, sizeof(user_list_shm_name), "/USER_LIST_SHM_%s", basename(filepath)); |
| 429 |
|
|
| 430 |
|
if (shm_unlink(user_list_shm_name) == -1 && errno != ENOENT) |
| 431 |
{ |
{ |
| 432 |
log_error("ftok(%s %d) error (%d)\n", filename, proj_id, errno); |
log_error("shm_unlink(%s) error (%d)\n", user_list_shm_name, errno); |
| 433 |
return -2; |
return -2; |
| 434 |
} |
} |
| 435 |
|
|
| 436 |
size = sizeof(USER_LIST_POOL); |
if ((fd = shm_open(user_list_shm_name, O_CREAT | O_EXCL | O_RDWR, 0600)) == -1) |
|
shmid = shmget(key, size, IPC_CREAT | IPC_EXCL | 0600); |
|
|
if (shmid == -1) |
|
| 437 |
{ |
{ |
| 438 |
log_error("shmget(size = %d) error (%d)\n", size, errno); |
log_error("shm_open(%s) error (%d)\n", user_list_shm_name, errno); |
| 439 |
return -3; |
return -2; |
| 440 |
} |
} |
| 441 |
p_shm = shmat(shmid, NULL, 0); |
if (ftruncate(fd, (off_t)size) == -1) |
|
if (p_shm == (void *)-1) |
|
| 442 |
{ |
{ |
| 443 |
log_error("shmat(shmid=%d) error (%d)\n", shmid, errno); |
log_error("ftruncate(size=%d) error (%d)\n", size, errno); |
| 444 |
return -3; |
close(fd); |
| 445 |
|
return -2; |
| 446 |
|
} |
| 447 |
|
|
| 448 |
|
p_shm = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0L); |
| 449 |
|
if (p_shm == MAP_FAILED) |
| 450 |
|
{ |
| 451 |
|
log_error("mmap() error (%d)\n", errno); |
| 452 |
|
close(fd); |
| 453 |
|
return -2; |
| 454 |
|
} |
| 455 |
|
|
| 456 |
|
if (close(fd) < 0) |
| 457 |
|
{ |
| 458 |
|
log_error("close(fd) error (%d)\n", errno); |
| 459 |
|
return -1; |
| 460 |
} |
} |
| 461 |
|
|
| 462 |
p_user_list_pool = p_shm; |
p_user_list_pool = p_shm; |
| 463 |
p_user_list_pool->shmid = shmid; |
p_user_list_pool->shm_size = size; |
| 464 |
|
|
| 465 |
// Allocate semaphore as user list pool lock |
// Allocate semaphore as user list pool lock |
| 466 |
|
proj_id = (int)(time(NULL) % getpid()); |
| 467 |
|
key = ftok(filename, proj_id); |
| 468 |
|
if (key == -1) |
| 469 |
|
{ |
| 470 |
|
log_error("ftok(%s %d) error (%d)\n", filename, proj_id, errno); |
| 471 |
|
return -2; |
| 472 |
|
} |
| 473 |
|
|
| 474 |
size = 2; // r_sem and w_sem |
size = 2; // r_sem and w_sem |
| 475 |
semid = semget(key, (int)size, IPC_CREAT | IPC_EXCL | 0600); |
semid = semget(key, (int)size, IPC_CREAT | IPC_EXCL | 0600); |
| 476 |
if (semid == -1) |
if (semid == -1) |
| 507 |
return 0; |
return 0; |
| 508 |
} |
} |
| 509 |
|
|
| 510 |
void user_list_pool_cleanup(void) |
int user_list_pool_cleanup(void) |
| 511 |
{ |
{ |
|
int shmid; |
|
|
|
|
| 512 |
if (p_user_list_pool == NULL) |
if (p_user_list_pool == NULL) |
| 513 |
{ |
{ |
| 514 |
return; |
return -1; |
| 515 |
} |
} |
| 516 |
|
|
|
shmid = p_user_list_pool->shmid; |
|
|
|
|
| 517 |
if (semctl(p_user_list_pool->semid, 0, IPC_RMID) == -1) |
if (semctl(p_user_list_pool->semid, 0, IPC_RMID) == -1) |
| 518 |
{ |
{ |
| 519 |
log_error("semctl(semid = %d, IPC_RMID) error (%d)\n", p_user_list_pool->semid, errno); |
log_error("semctl(semid = %d, IPC_RMID) error (%d)\n", p_user_list_pool->semid, errno); |
| 520 |
} |
} |
| 521 |
|
|
| 522 |
if (shmdt(p_user_list_pool) == -1) |
detach_user_list_pool_shm(); |
|
{ |
|
|
log_error("shmdt(shmid = %d) error (%d)\n", shmid, errno); |
|
|
} |
|
| 523 |
|
|
| 524 |
if (shmid != 0 && shmctl(shmid, IPC_RMID, NULL) == -1) |
if (shm_unlink(user_list_shm_name) == -1 && errno != ENOENT) |
| 525 |
{ |
{ |
| 526 |
log_error("shmctl(shmid = %d, IPC_RMID) error (%d)\n", shmid, errno); |
log_error("shm_unlink(%s) error (%d)\n", user_list_shm_name, errno); |
| 527 |
} |
} |
| 528 |
|
|
| 529 |
p_user_list_pool = NULL; |
user_list_shm_name[0] = '\0'; |
| 530 |
|
|
| 531 |
if (p_trie_action_dict != NULL) |
if (p_trie_action_dict != NULL) |
| 532 |
{ |
{ |
| 534 |
|
|
| 535 |
p_trie_action_dict = NULL; |
p_trie_action_dict = NULL; |
| 536 |
} |
} |
| 537 |
|
|
| 538 |
|
return 0; |
| 539 |
} |
} |
| 540 |
|
|
| 541 |
int set_user_list_pool_shm_readonly(void) |
int set_user_list_pool_shm_readonly(void) |
| 542 |
{ |
{ |
| 543 |
int shmid; |
if (p_user_list_pool != NULL && mprotect(p_user_list_pool, p_user_list_pool->shm_size, PROT_READ) < 0) |
|
void *p_shm; |
|
|
|
|
|
if (p_user_list_pool == NULL) |
|
|
{ |
|
|
log_error("p_user_list_pool not initialized\n"); |
|
|
return -1; |
|
|
} |
|
|
|
|
|
shmid = p_user_list_pool->shmid; |
|
|
|
|
|
// Remap shared memory in read-only mode |
|
|
#if defined(__CYGWIN__) |
|
|
if (shmdt(p_user_list_pool) == -1) |
|
| 544 |
{ |
{ |
| 545 |
log_error("shmdt(user_list_pool) error (%d)\n", errno); |
log_error("mprotect() error (%d)\n", errno); |
| 546 |
return -1; |
return -1; |
| 547 |
} |
} |
|
p_shm = shmat(shmid, p_user_list_pool, SHM_RDONLY); |
|
|
#else |
|
|
p_shm = shmat(shmid, p_user_list_pool, SHM_RDONLY | SHM_REMAP); |
|
|
#endif |
|
|
if (p_shm == (void *)-1) |
|
|
{ |
|
|
log_error("shmat(user_list_pool shmid = %d) error (%d)\n", shmid, errno); |
|
|
return -3; |
|
|
} |
|
|
|
|
|
p_user_list_pool = p_shm; |
|
| 548 |
|
|
| 549 |
return 0; |
return 0; |
| 550 |
} |
} |
| 551 |
|
|
| 552 |
int detach_user_list_pool_shm(void) |
int detach_user_list_pool_shm(void) |
| 553 |
{ |
{ |
| 554 |
if (p_user_list_pool != NULL && shmdt(p_user_list_pool) == -1) |
if (p_user_list_pool != NULL && munmap(p_user_list_pool, p_user_list_pool->shm_size) < 0) |
| 555 |
{ |
{ |
| 556 |
log_error("shmdt(user_list_pool) error (%d)\n", errno); |
log_error("munmap() error (%d)\n", errno); |
| 557 |
return -1; |
return -1; |
| 558 |
} |
} |
| 559 |
|
|
| 610 |
mysql_close(db); |
mysql_close(db); |
| 611 |
db = NULL; |
db = NULL; |
| 612 |
|
|
| 613 |
if (user_list_rw_lock(p_user_list_pool->semid) < 0) |
if (user_list_rw_lock() < 0) |
| 614 |
{ |
{ |
| 615 |
log_error("user_list_rw_lock() error\n"); |
log_error("user_list_rw_lock() error\n"); |
| 616 |
ret = -3; |
ret = -3; |
| 632 |
p_user_list_pool->user_list_index_new = tmp; |
p_user_list_pool->user_list_index_new = tmp; |
| 633 |
} |
} |
| 634 |
|
|
| 635 |
if (user_list_rw_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rw_unlock() < 0) |
| 636 |
{ |
{ |
| 637 |
log_error("user_list_rw_unlock() error\n"); |
log_error("user_list_rw_unlock() error\n"); |
| 638 |
ret = -3; |
ret = -3; |
| 645 |
return ret; |
return ret; |
| 646 |
} |
} |
| 647 |
|
|
| 648 |
int user_list_try_rd_lock(int semid, int wait_sec) |
int user_list_try_rd_lock(int wait_sec) |
| 649 |
{ |
{ |
| 650 |
struct sembuf sops[2]; |
struct sembuf sops[2]; |
| 651 |
#if !defined(__CYGWIN__) |
#ifndef __CYGWIN__ |
| 652 |
struct timespec timeout; |
struct timespec timeout; |
| 653 |
#endif |
#endif |
| 654 |
int ret; |
int ret; |
| 655 |
|
|
| 656 |
|
if (p_user_list_pool == NULL) |
| 657 |
|
{ |
| 658 |
|
log_error("p_user_list_pool not initialized\n"); |
| 659 |
|
return -1; |
| 660 |
|
} |
| 661 |
|
|
| 662 |
sops[0].sem_num = 1; // w_sem |
sops[0].sem_num = 1; // w_sem |
| 663 |
sops[0].sem_op = 0; // wait until unlocked |
sops[0].sem_op = 0; // wait until unlocked |
| 664 |
sops[0].sem_flg = 0; |
sops[0].sem_flg = 0; |
| 667 |
sops[1].sem_op = 1; // lock |
sops[1].sem_op = 1; // lock |
| 668 |
sops[1].sem_flg = SEM_UNDO; // undo on terminate |
sops[1].sem_flg = SEM_UNDO; // undo on terminate |
| 669 |
|
|
| 670 |
#if defined(__CYGWIN__) |
#ifdef __CYGWIN__ |
| 671 |
ret = semop(semid, sops, 2); |
ret = semop(p_user_list_pool->semid, sops, 2); |
| 672 |
#else |
#else |
| 673 |
timeout.tv_sec = wait_sec; |
timeout.tv_sec = wait_sec; |
| 674 |
timeout.tv_nsec = 0; |
timeout.tv_nsec = 0; |
| 675 |
|
|
| 676 |
ret = semtimedop(semid, sops, 2, &timeout); |
ret = semtimedop(p_user_list_pool->semid, sops, 2, &timeout); |
| 677 |
#endif |
#endif |
| 678 |
if (ret == -1 && errno != EAGAIN && errno != EINTR) |
if (ret == -1 && errno != EAGAIN && errno != EINTR) |
| 679 |
{ |
{ |
| 683 |
return ret; |
return ret; |
| 684 |
} |
} |
| 685 |
|
|
| 686 |
int user_list_try_rw_lock(int semid, int wait_sec) |
int user_list_try_rw_lock(int wait_sec) |
| 687 |
{ |
{ |
| 688 |
struct sembuf sops[3]; |
struct sembuf sops[3]; |
| 689 |
#if !defined(__CYGWIN__) |
#ifndef __CYGWIN__ |
| 690 |
struct timespec timeout; |
struct timespec timeout; |
| 691 |
#endif |
#endif |
| 692 |
int ret; |
int ret; |
| 693 |
|
|
| 694 |
|
if (p_user_list_pool == NULL) |
| 695 |
|
{ |
| 696 |
|
log_error("p_user_list_pool not initialized\n"); |
| 697 |
|
return -1; |
| 698 |
|
} |
| 699 |
|
|
| 700 |
sops[0].sem_num = 1; // w_sem |
sops[0].sem_num = 1; // w_sem |
| 701 |
sops[0].sem_op = 0; // wait until unlocked |
sops[0].sem_op = 0; // wait until unlocked |
| 702 |
sops[0].sem_flg = 0; |
sops[0].sem_flg = 0; |
| 709 |
sops[2].sem_op = 0; // wait until unlocked |
sops[2].sem_op = 0; // wait until unlocked |
| 710 |
sops[2].sem_flg = 0; |
sops[2].sem_flg = 0; |
| 711 |
|
|
| 712 |
#if defined(__CYGWIN__) |
#ifdef __CYGWIN__ |
| 713 |
ret = semop(semid, sops, 3); |
ret = semop(p_user_list_pool->semid, sops, 3); |
| 714 |
#else |
#else |
| 715 |
timeout.tv_sec = wait_sec; |
timeout.tv_sec = wait_sec; |
| 716 |
timeout.tv_nsec = 0; |
timeout.tv_nsec = 0; |
| 717 |
|
|
| 718 |
ret = semtimedop(semid, sops, 3, &timeout); |
ret = semtimedop(p_user_list_pool->semid, sops, 3, &timeout); |
| 719 |
#endif |
#endif |
| 720 |
if (ret == -1 && errno != EAGAIN && errno != EINTR) |
if (ret == -1 && errno != EAGAIN && errno != EINTR) |
| 721 |
{ |
{ |
| 725 |
return ret; |
return ret; |
| 726 |
} |
} |
| 727 |
|
|
| 728 |
int user_list_rd_unlock(int semid) |
int user_list_rd_unlock(void) |
| 729 |
{ |
{ |
| 730 |
struct sembuf sops[2]; |
struct sembuf sops[2]; |
| 731 |
int ret; |
int ret; |
| 732 |
|
|
| 733 |
|
if (p_user_list_pool == NULL) |
| 734 |
|
{ |
| 735 |
|
log_error("p_user_list_pool not initialized\n"); |
| 736 |
|
return -1; |
| 737 |
|
} |
| 738 |
|
|
| 739 |
sops[0].sem_num = 0; // r_sem |
sops[0].sem_num = 0; // r_sem |
| 740 |
sops[0].sem_op = -1; // unlock |
sops[0].sem_op = -1; // unlock |
| 741 |
sops[0].sem_flg = IPC_NOWAIT | SEM_UNDO; // no wait |
sops[0].sem_flg = IPC_NOWAIT | SEM_UNDO; // no wait |
| 742 |
|
|
| 743 |
ret = semop(semid, sops, 1); |
ret = semop(p_user_list_pool->semid, sops, 1); |
| 744 |
if (ret == -1 && errno != EAGAIN && errno != EINTR) |
if (ret == -1 && errno != EAGAIN && errno != EINTR) |
| 745 |
{ |
{ |
| 746 |
log_error("semop(unlock read) error %d\n", errno); |
log_error("semop(unlock read) error %d\n", errno); |
| 749 |
return ret; |
return ret; |
| 750 |
} |
} |
| 751 |
|
|
| 752 |
int user_list_rw_unlock(int semid) |
int user_list_rw_unlock(void) |
| 753 |
{ |
{ |
| 754 |
struct sembuf sops[1]; |
struct sembuf sops[1]; |
| 755 |
int ret; |
int ret; |
| 756 |
|
|
| 757 |
|
if (p_user_list_pool == NULL) |
| 758 |
|
{ |
| 759 |
|
log_error("p_user_list_pool not initialized\n"); |
| 760 |
|
return -1; |
| 761 |
|
} |
| 762 |
|
|
| 763 |
sops[0].sem_num = 1; // w_sem |
sops[0].sem_num = 1; // w_sem |
| 764 |
sops[0].sem_op = -1; // unlock |
sops[0].sem_op = -1; // unlock |
| 765 |
sops[0].sem_flg = IPC_NOWAIT | SEM_UNDO; // no wait |
sops[0].sem_flg = IPC_NOWAIT | SEM_UNDO; // no wait |
| 766 |
|
|
| 767 |
ret = semop(semid, sops, 1); |
ret = semop(p_user_list_pool->semid, sops, 1); |
| 768 |
if (ret == -1 && errno != EAGAIN && errno != EINTR) |
if (ret == -1 && errno != EAGAIN && errno != EINTR) |
| 769 |
{ |
{ |
| 770 |
log_error("semop(unlock write) error %d\n", errno); |
log_error("semop(unlock write) error %d\n", errno); |
| 773 |
return ret; |
return ret; |
| 774 |
} |
} |
| 775 |
|
|
| 776 |
int user_list_rd_lock(int semid) |
int user_list_rd_lock(void) |
| 777 |
{ |
{ |
| 778 |
int timer = 0; |
int timer = 0; |
| 779 |
int ret = -1; |
int ret = -1; |
| 780 |
|
|
| 781 |
|
if (p_user_list_pool == NULL) |
| 782 |
|
{ |
| 783 |
|
log_error("p_user_list_pool not initialized\n"); |
| 784 |
|
return -1; |
| 785 |
|
} |
| 786 |
|
|
| 787 |
while (!SYS_server_exit) |
while (!SYS_server_exit) |
| 788 |
{ |
{ |
| 789 |
ret = user_list_try_rd_lock(semid, USER_LIST_TRY_LOCK_WAIT_TIME); |
ret = user_list_try_rd_lock(USER_LIST_TRY_LOCK_WAIT_TIME); |
| 790 |
if (ret == 0) // success |
if (ret == 0) // success |
| 791 |
{ |
{ |
| 792 |
break; |
break; |
| 809 |
return ret; |
return ret; |
| 810 |
} |
} |
| 811 |
|
|
| 812 |
int user_list_rw_lock(int semid) |
int user_list_rw_lock(void) |
| 813 |
{ |
{ |
| 814 |
int timer = 0; |
int timer = 0; |
| 815 |
int ret = -1; |
int ret = -1; |
| 816 |
|
|
| 817 |
|
if (p_user_list_pool == NULL) |
| 818 |
|
{ |
| 819 |
|
log_error("p_user_list_pool not initialized\n"); |
| 820 |
|
return -1; |
| 821 |
|
} |
| 822 |
|
|
| 823 |
while (!SYS_server_exit) |
while (!SYS_server_exit) |
| 824 |
{ |
{ |
| 825 |
ret = user_list_try_rw_lock(semid, USER_LIST_TRY_LOCK_WAIT_TIME); |
ret = user_list_try_rw_lock(USER_LIST_TRY_LOCK_WAIT_TIME); |
| 826 |
if (ret == 0) // success |
if (ret == 0) // success |
| 827 |
{ |
{ |
| 828 |
break; |
break; |
| 859 |
*p_page_count = 0; |
*p_page_count = 0; |
| 860 |
|
|
| 861 |
// acquire lock of user list |
// acquire lock of user list |
| 862 |
if (user_list_rd_lock(p_user_list_pool->semid) < 0) |
if (user_list_rd_lock() < 0) |
| 863 |
{ |
{ |
| 864 |
log_error("user_list_rd_lock() error\n"); |
log_error("user_list_rd_lock() error\n"); |
| 865 |
return -2; |
return -2; |
| 892 |
|
|
| 893 |
cleanup: |
cleanup: |
| 894 |
// release lock of user list |
// release lock of user list |
| 895 |
if (user_list_rd_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rd_unlock() < 0) |
| 896 |
{ |
{ |
| 897 |
log_error("user_list_rd_unlock() error\n"); |
log_error("user_list_rd_unlock() error\n"); |
| 898 |
ret = -1; |
ret = -1; |
| 915 |
*p_page_count = 0; |
*p_page_count = 0; |
| 916 |
|
|
| 917 |
// acquire lock of user list |
// acquire lock of user list |
| 918 |
if (user_list_rd_lock(p_user_list_pool->semid) < 0) |
if (user_list_rd_lock() < 0) |
| 919 |
{ |
{ |
| 920 |
log_error("user_list_rd_lock() error\n"); |
log_error("user_list_rd_lock() error\n"); |
| 921 |
return -2; |
return -2; |
| 947 |
|
|
| 948 |
cleanup: |
cleanup: |
| 949 |
// release lock of user list |
// release lock of user list |
| 950 |
if (user_list_rd_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rd_unlock() < 0) |
| 951 |
{ |
{ |
| 952 |
log_error("user_list_rd_unlock() error\n"); |
log_error("user_list_rd_unlock() error\n"); |
| 953 |
ret = -1; |
ret = -1; |
| 965 |
} |
} |
| 966 |
|
|
| 967 |
// acquire lock of user list |
// acquire lock of user list |
| 968 |
if (user_list_rd_lock(p_user_list_pool->semid) < 0) |
if (user_list_rd_lock() < 0) |
| 969 |
{ |
{ |
| 970 |
log_error("user_list_rd_lock() error\n"); |
log_error("user_list_rd_lock() error\n"); |
| 971 |
return -2; |
return -2; |
| 974 |
*p_user_cnt = p_user_list_pool->user_list[p_user_list_pool->user_list_index_current].user_count; |
*p_user_cnt = p_user_list_pool->user_list[p_user_list_pool->user_list_index_current].user_count; |
| 975 |
|
|
| 976 |
// release lock of user list |
// release lock of user list |
| 977 |
if (user_list_rd_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rd_unlock() < 0) |
| 978 |
{ |
{ |
| 979 |
log_error("user_list_rd_unlock() error\n"); |
log_error("user_list_rd_unlock() error\n"); |
| 980 |
return -2; |
return -2; |
| 992 |
} |
} |
| 993 |
|
|
| 994 |
// acquire lock of user list |
// acquire lock of user list |
| 995 |
if (user_list_rd_lock(p_user_list_pool->semid) < 0) |
if (user_list_rd_lock() < 0) |
| 996 |
{ |
{ |
| 997 |
log_error("user_list_rd_lock() error\n"); |
log_error("user_list_rd_lock() error\n"); |
| 998 |
return -2; |
return -2; |
| 1002 |
*p_guest_cnt = p_user_list_pool->user_online_list[p_user_list_pool->user_online_list_index_current].guest_count; |
*p_guest_cnt = p_user_list_pool->user_online_list[p_user_list_pool->user_online_list_index_current].guest_count; |
| 1003 |
|
|
| 1004 |
// release lock of user list |
// release lock of user list |
| 1005 |
if (user_list_rd_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rd_unlock() < 0) |
| 1006 |
{ |
{ |
| 1007 |
log_error("user_list_rd_unlock() error\n"); |
log_error("user_list_rd_unlock() error\n"); |
| 1008 |
return -2; |
return -2; |
| 1035 |
} |
} |
| 1036 |
|
|
| 1037 |
// acquire lock of user list |
// acquire lock of user list |
| 1038 |
if (user_list_rd_lock(p_user_list_pool->semid) < 0) |
if (user_list_rd_lock() < 0) |
| 1039 |
{ |
{ |
| 1040 |
log_error("user_list_rd_lock() error\n"); |
log_error("user_list_rd_lock() error\n"); |
| 1041 |
return -2; |
return -2; |
| 1048 |
} |
} |
| 1049 |
|
|
| 1050 |
// release lock of user list |
// release lock of user list |
| 1051 |
if (user_list_rd_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rd_unlock() < 0) |
| 1052 |
{ |
{ |
| 1053 |
log_error("user_list_rd_unlock() error\n"); |
log_error("user_list_rd_unlock() error\n"); |
| 1054 |
ret = -1; |
ret = -1; |
| 1072 |
} |
} |
| 1073 |
|
|
| 1074 |
// acquire lock of user list |
// acquire lock of user list |
| 1075 |
if (user_list_rd_lock(p_user_list_pool->semid) < 0) |
if (user_list_rd_lock() < 0) |
| 1076 |
{ |
{ |
| 1077 |
log_error("user_list_rd_lock() error\n"); |
log_error("user_list_rd_lock() error\n"); |
| 1078 |
return -2; |
return -2; |
| 1114 |
} |
} |
| 1115 |
|
|
| 1116 |
// release lock of user list |
// release lock of user list |
| 1117 |
if (user_list_rd_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rd_unlock() < 0) |
| 1118 |
{ |
{ |
| 1119 |
log_error("user_list_rd_unlock() error\n"); |
log_error("user_list_rd_unlock() error\n"); |
| 1120 |
ret = -1; |
ret = -1; |
| 1144 |
prefix_len = strlen(username_prefix); |
prefix_len = strlen(username_prefix); |
| 1145 |
|
|
| 1146 |
// acquire lock of user list |
// acquire lock of user list |
| 1147 |
if (user_list_rd_lock(p_user_list_pool->semid) < 0) |
if (user_list_rd_lock() < 0) |
| 1148 |
{ |
{ |
| 1149 |
log_error("user_list_rd_lock() error\n"); |
log_error("user_list_rd_lock() error\n"); |
| 1150 |
return -2; |
return -2; |
| 1248 |
|
|
| 1249 |
cleanup: |
cleanup: |
| 1250 |
// release lock of user list |
// release lock of user list |
| 1251 |
if (user_list_rd_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rd_unlock() < 0) |
| 1252 |
{ |
{ |
| 1253 |
log_error("user_list_rd_unlock() error\n"); |
log_error("user_list_rd_unlock() error\n"); |
| 1254 |
ret = -1; |
ret = -1; |
| 1268 |
} |
} |
| 1269 |
|
|
| 1270 |
// acquire lock of user list |
// acquire lock of user list |
| 1271 |
if (user_list_rd_lock(p_user_list_pool->semid) < 0) |
if (user_list_rd_lock() < 0) |
| 1272 |
{ |
{ |
| 1273 |
log_error("user_list_rd_lock() error\n"); |
log_error("user_list_rd_lock() error\n"); |
| 1274 |
return -2; |
return -2; |
| 1281 |
} |
} |
| 1282 |
|
|
| 1283 |
// release lock of user list |
// release lock of user list |
| 1284 |
if (user_list_rd_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rd_unlock() < 0) |
| 1285 |
{ |
{ |
| 1286 |
log_error("user_list_rd_unlock() error\n"); |
log_error("user_list_rd_unlock() error\n"); |
| 1287 |
ret = -1; |
ret = -1; |
| 1310 |
*p_user_cnt = 0; |
*p_user_cnt = 0; |
| 1311 |
|
|
| 1312 |
// acquire lock of user list |
// acquire lock of user list |
| 1313 |
if (user_list_rd_lock(p_user_list_pool->semid) < 0) |
if (user_list_rd_lock() < 0) |
| 1314 |
{ |
{ |
| 1315 |
log_error("user_list_rd_lock() error\n"); |
log_error("user_list_rd_lock() error\n"); |
| 1316 |
return -2; |
return -2; |
| 1372 |
} |
} |
| 1373 |
|
|
| 1374 |
// release lock of user list |
// release lock of user list |
| 1375 |
if (user_list_rd_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rd_unlock() < 0) |
| 1376 |
{ |
{ |
| 1377 |
log_error("user_list_rd_unlock() error\n"); |
log_error("user_list_rd_unlock() error\n"); |
| 1378 |
ret = -1; |
ret = -1; |
| 1396 |
} |
} |
| 1397 |
|
|
| 1398 |
// acquire lock of user list |
// acquire lock of user list |
| 1399 |
if (user_list_rd_lock(p_user_list_pool->semid) < 0) |
if (user_list_rd_lock() < 0) |
| 1400 |
{ |
{ |
| 1401 |
log_error("user_list_rd_lock() error\n"); |
log_error("user_list_rd_lock() error\n"); |
| 1402 |
return -2; |
return -2; |
| 1430 |
*p_user_cnt = i; |
*p_user_cnt = i; |
| 1431 |
|
|
| 1432 |
// release lock of user list |
// release lock of user list |
| 1433 |
if (user_list_rd_unlock(p_user_list_pool->semid) < 0) |
if (user_list_rd_unlock() < 0) |
| 1434 |
{ |
{ |
| 1435 |
log_error("user_list_rd_unlock() error\n"); |
log_error("user_list_rd_unlock() error\n"); |
| 1436 |
ret = -1; |
ret = -1; |