Last change
on this file since 175 was 149, checked in by katerina, 17 years ago |
Make sh_hash.c thread-safe, remove plenty of tiny allocations, improve sh_mem_dump, modify port check to run as thread, and fix unsetting of sh_thread_pause_flag (was too early).
|
File size:
2.2 KB
|
Rev | Line | |
---|
[1] | 1 | #include "config_xor.h"
|
---|
| 2 |
|
---|
| 3 | #include <stdio.h>
|
---|
| 4 | #include <time.h>
|
---|
| 5 |
|
---|
| 6 | #if defined (SH_WITH_CLIENT) || defined (SH_STANDALONE)
|
---|
| 7 |
|
---|
| 8 | #include "sh_modules.h"
|
---|
[140] | 9 | #include "sh_pthread.h"
|
---|
[1] | 10 |
|
---|
| 11 | #include "sh_utmp.h"
|
---|
| 12 | #include "sh_mounts.h"
|
---|
| 13 | #include "sh_userfiles.h"
|
---|
| 14 | #include "sh_kern.h"
|
---|
| 15 | #include "sh_suidchk.h"
|
---|
[68] | 16 | #include "sh_processcheck.h"
|
---|
| 17 | #include "sh_portcheck.h"
|
---|
[1] | 18 |
|
---|
| 19 | sh_mtype modList[] = {
|
---|
| 20 | #ifdef SH_USE_UTMP
|
---|
| 21 | {
|
---|
| 22 | N_("UTMP"),
|
---|
[142] | 23 | -1,
|
---|
[1] | 24 | sh_utmp_init,
|
---|
| 25 | sh_utmp_timer,
|
---|
| 26 | sh_utmp_check,
|
---|
| 27 | sh_utmp_end,
|
---|
[149] | 28 | sh_utmp_reconf,
|
---|
[1] | 29 |
|
---|
| 30 | N_("[Utmp]"),
|
---|
| 31 | sh_utmp_table,
|
---|
[140] | 32 | PTHREAD_MUTEX_INITIALIZER,
|
---|
[1] | 33 | },
|
---|
| 34 | #endif
|
---|
| 35 |
|
---|
| 36 | #ifdef SH_USE_MOUNTS
|
---|
| 37 | {
|
---|
| 38 | N_("MOUNTS"),
|
---|
[142] | 39 | -1,
|
---|
[1] | 40 | sh_mounts_init,
|
---|
| 41 | sh_mounts_timer,
|
---|
| 42 | sh_mounts_check,
|
---|
| 43 | sh_mounts_cleanup,
|
---|
| 44 | sh_mounts_reconf,
|
---|
| 45 |
|
---|
| 46 | N_("[Mounts]"),
|
---|
| 47 | sh_mounts_table,
|
---|
[140] | 48 | PTHREAD_MUTEX_INITIALIZER,
|
---|
[1] | 49 | },
|
---|
| 50 | #endif
|
---|
| 51 |
|
---|
| 52 | #ifdef SH_USE_USERFILES
|
---|
| 53 | {
|
---|
| 54 | N_("USERFILES"),
|
---|
[142] | 55 | -1,
|
---|
[1] | 56 | sh_userfiles_init,
|
---|
| 57 | sh_userfiles_timer,
|
---|
| 58 | sh_userfiles_check,
|
---|
| 59 | sh_userfiles_cleanup,
|
---|
| 60 | sh_userfiles_reconf,
|
---|
| 61 |
|
---|
| 62 | N_("[UserFiles]"),
|
---|
| 63 | sh_userfiles_table,
|
---|
[140] | 64 | PTHREAD_MUTEX_INITIALIZER,
|
---|
[1] | 65 | },
|
---|
| 66 | #endif
|
---|
| 67 |
|
---|
| 68 | #ifdef SH_USE_KERN
|
---|
| 69 | {
|
---|
| 70 | N_("KERNEL"),
|
---|
[142] | 71 | -1,
|
---|
[1] | 72 | sh_kern_init,
|
---|
| 73 | sh_kern_timer,
|
---|
| 74 | sh_kern_check,
|
---|
| 75 | sh_kern_end,
|
---|
| 76 | sh_kern_null,
|
---|
| 77 |
|
---|
| 78 | N_("[Kernel]"),
|
---|
| 79 | sh_kern_table,
|
---|
[140] | 80 | PTHREAD_MUTEX_INITIALIZER,
|
---|
[1] | 81 | },
|
---|
| 82 | #endif
|
---|
[68] | 83 |
|
---|
[1] | 84 | #ifdef SH_USE_SUIDCHK
|
---|
| 85 | {
|
---|
| 86 | N_("SUIDCHECK"),
|
---|
[142] | 87 | -1,
|
---|
[1] | 88 | sh_suidchk_init,
|
---|
| 89 | sh_suidchk_timer,
|
---|
| 90 | sh_suidchk_check,
|
---|
| 91 | sh_suidchk_end,
|
---|
[149] | 92 | sh_suidchk_reconf,
|
---|
[1] | 93 |
|
---|
| 94 | N_("[SuidCheck]"),
|
---|
| 95 | sh_suidchk_table,
|
---|
[140] | 96 | PTHREAD_MUTEX_INITIALIZER,
|
---|
[1] | 97 | },
|
---|
| 98 | #endif
|
---|
[68] | 99 |
|
---|
| 100 | #ifdef SH_USE_PROCESSCHECK
|
---|
[1] | 101 | {
|
---|
[68] | 102 | N_("PROCESSCHECK"),
|
---|
[142] | 103 | -1,
|
---|
[68] | 104 | sh_prochk_init,
|
---|
| 105 | sh_prochk_timer,
|
---|
| 106 | sh_prochk_check,
|
---|
| 107 | sh_prochk_cleanup,
|
---|
| 108 | sh_prochk_reconf,
|
---|
| 109 |
|
---|
| 110 | N_("[ProcessCheck]"),
|
---|
| 111 | sh_prochk_table,
|
---|
[140] | 112 | PTHREAD_MUTEX_INITIALIZER,
|
---|
[68] | 113 | },
|
---|
| 114 | #endif
|
---|
| 115 |
|
---|
| 116 | #ifdef SH_USE_PORTCHECK
|
---|
| 117 | {
|
---|
| 118 | N_("PORTCHECK"),
|
---|
[142] | 119 | -1,
|
---|
[68] | 120 | sh_portchk_init,
|
---|
| 121 | sh_portchk_timer,
|
---|
| 122 | sh_portchk_check,
|
---|
| 123 | sh_portchk_cleanup,
|
---|
| 124 | sh_portchk_reconf,
|
---|
| 125 |
|
---|
| 126 | N_("[PortCheck]"),
|
---|
| 127 | sh_portchk_table,
|
---|
[140] | 128 | PTHREAD_MUTEX_INITIALIZER,
|
---|
[68] | 129 | },
|
---|
| 130 | #endif
|
---|
| 131 |
|
---|
| 132 | {
|
---|
[1] | 133 | NULL,
|
---|
[142] | 134 | -1,
|
---|
[1] | 135 |
|
---|
| 136 | NULL,
|
---|
| 137 | NULL,
|
---|
| 138 | NULL,
|
---|
| 139 | NULL,
|
---|
| 140 | NULL,
|
---|
| 141 |
|
---|
| 142 | NULL,
|
---|
| 143 | NULL,
|
---|
[140] | 144 | PTHREAD_MUTEX_INITIALIZER,
|
---|
[1] | 145 | },
|
---|
| 146 | };
|
---|
| 147 |
|
---|
| 148 | #endif
|
---|
| 149 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.