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
|
/*
* $Id$
*
* Copyright (C) 2001-2003 FhG Fokus
*
* 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:
* --------
* 2003-03-11 changed to the new locking scheme: locking.h (andrei)
*
*
* in this file, we implement the ability to send a kill signal to
* a child after some time; its a quick ugly hack, for example kill
* is sent without any knowledge whether the kid is still alive
*
* also, it was never compiled without FAST_LOCK -- nothing will
* work if you turn it off
*
* there is also an ugly s/HACK
*
* and last but not least -- we don't know the child pid (we use popen)
* so we cannot close anyway
*
*
*/
#include <errno.h>
#include <sys/types.h>
#include <signal.h>
#include "../../mem/shm_mem.h"
#include "../../dprint.h"
#include "../../timer.h"
#include "../../locking.h"
#include "kill.h"
static gen_lock_t *kill_lock=NULL;
static struct timer_list kill_list;
#define lock() lock_get(kill_lock)
#define unlock() lock_release(kill_lock)
/* copy and paste from TM -- might consider putting in better
in some utils part of core
*/
static void timer_routine(unsigned int ticks , void * attr)
{
struct timer_link *tl, *tmp_tl, *end, *ret;
int killr;
/* check if it worth entering the lock */
if (kill_list.first_tl.next_tl==&kill_list.last_tl
|| kill_list.first_tl.next_tl->time_out > ticks )
return;
lock();
end = &kill_list.last_tl;
tl = kill_list.first_tl.next_tl;
while( tl!=end && tl->time_out <= ticks ) {
tl=tl->next_tl;
}
/* nothing to delete found */
if (tl->prev_tl==&kill_list.first_tl) {
unlock();
return;
}
/* the detached list begins with current beginning */
ret = kill_list.first_tl.next_tl;
/* and we mark the end of the split list */
tl->prev_tl->next_tl = 0;
/* the shortened list starts from where we suspended */
kill_list.first_tl.next_tl = tl;
tl->prev_tl = & kill_list.first_tl;
unlock();
/* process the list now */
while (ret) {
tmp_tl=ret->next_tl;
ret->next_tl=ret->prev_tl=0;
if (ret->time_out>0) {
killr=kill(ret->pid, SIGTERM );
LM_DBG("child process (%d) kill status: %d\n", ret->pid, killr );
}
shm_free(ret);
ret=tmp_tl;
}
}
int schedule_to_kill( int pid )
{
struct timer_link *tl;
tl=shm_malloc( sizeof(struct timer_link) );
if (tl==0) {
LM_ERR("no shmem\n");
return -1;
}
memset(tl, 0, sizeof(struct timer_link) );
lock();
tl->pid=pid;
tl->time_out=get_ticks()+time_to_kill;
tl->prev_tl=kill_list.last_tl.prev_tl;
tl->next_tl=&kill_list.last_tl;
kill_list.last_tl.prev_tl=tl;
tl->prev_tl->next_tl=tl;
unlock();
return 1;
}
int initialize_kill(void)
{
/* if disabled ... */
if (time_to_kill==0) return 1;
if ((register_timer( timer_routine,
0 /* param */, 1 /* period */)<0)) {
LM_ERR("no exec timer registered\n");
return -1;
}
kill_list.first_tl.next_tl=&kill_list.last_tl;
kill_list.last_tl.prev_tl=&kill_list.first_tl;
kill_list.first_tl.prev_tl=
kill_list.last_tl.next_tl = 0;
kill_list.last_tl.time_out=-1;
kill_lock=lock_alloc();
if (kill_lock==0) {
LM_ERR("no shm mem for mutex\n");
return -1;
}
lock_init(kill_lock);
LM_DBG("kill initialized\n");
return 1;
}
void destroy_kill(void)
{
/* if disabled ... */
if (time_to_kill==0)
return;
if (kill_lock) {
lock_destroy(kill_lock);
lock_dealloc(kill_lock);
}
return;
}
|