forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpt.c
296 lines (240 loc) · 7.04 KB
/
pt.c
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
/*
* Copyright (C) 2007 Voice Sistem SRL
*
* This file is part of opensips, a free SIP server.
*
* opensips 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
*
* opensips 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:
* --------
* 2007-06-07 - created to contain process handling functions (bogdan)
*/
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include "mem/shm_mem.h"
#include "net/net_tcp.h"
#include "net/net_udp.h"
#include "socket_info.h"
#include "sr_module.h"
#include "dprint.h"
#include "pt.h"
#include "bin_interface.h"
#include "ipc.h"
/* array with children pids, 0= main proc,
* alloc'ed in shared mem if possible */
struct process_table *pt=0;
/* variable keeping the number of created processes READONLY!! */
unsigned int counted_processes = 0;
/* counts the number of processes known by OpenSIPS at startup.
* Note that the number of processes might change during init, if one of the
* module decides that it will no longer use a process (ex; rtpproxy timeout
* process)
*/
int count_child_processes(void)
{
unsigned int proc_no;
proc_no = 0;
/* UDP based listeners */
proc_no += udp_count_processes();
/* TCP based listeners */
proc_no += tcp_count_processes();
/* attendent */
proc_no++;
/* timer processes */
proc_no += 3 /* timer keeper + timer trigger + dedicated */;
/* count the processes requested by modules */
proc_no += count_module_procs();
#ifdef UNIT_TESTS
#include "mem/test/test_hp_malloc.h"
if (testing_framework)
proc_no += TEST_MALLOC_PROCS - 1;
#endif
return proc_no;
}
int init_multi_proc_support(void)
{
unsigned short proc_no;
unsigned int i;
proc_no = count_child_processes();
/* allocate the PID table */
pt = shm_malloc(sizeof(struct process_table)*proc_no);
if (pt==0){
LM_ERR("out of memory\n");
return -1;
}
memset(pt, 0, sizeof(struct process_table)*proc_no);
for( i=0 ; i<proc_no ; i++ ) {
pt[i].unix_sock = -1;
pt[i].idx = -1;
pt[i].pid = -1;
pt[i].ipc_pipe[0] = pt[i].ipc_pipe[1] = -1;
}
/* set the pid for the starter process */
set_proc_attrs("starter");
counted_processes = proc_no;
/* create the IPC pipes */
if (create_ipc_pipes( proc_no )<0) {
LM_ERR("failed to create IPC pipes, aborting\n");
return -1;
}
/* register the stats for the global load */
if ( register_stat2( "load", "load", (stat_var**)pt_get_rt_load,
STAT_IS_FUNC, NULL, 0) != 0) {
LM_ERR("failed to add RT global load stat\n");
return -1;
}
if ( register_stat2( "load", "load1m", (stat_var**)pt_get_1m_load,
STAT_IS_FUNC, NULL, 0) != 0) {
LM_ERR("failed to add RT global load stat\n");
return -1;
}
if ( register_stat2( "load", "load10m", (stat_var**)pt_get_10m_load,
STAT_IS_FUNC, NULL, 0) != 0) {
LM_ERR("failed to add RT global load stat\n");
return -1;
}
/* register the stats for the extended global load */
if ( register_stat2( "load", "load-all", (stat_var**)pt_get_rt_loadall,
STAT_IS_FUNC, NULL, 0) != 0) {
LM_ERR("failed to add RT global load stat\n");
return -1;
}
if ( register_stat2( "load", "load1m-all", (stat_var**)pt_get_1m_loadall,
STAT_IS_FUNC, NULL, 0) != 0) {
LM_ERR("failed to add RT global load stat\n");
return -1;
}
if ( register_stat2( "load", "load10m-all", (stat_var**)pt_get_10m_loadall,
STAT_IS_FUNC, NULL, 0) != 0) {
LM_ERR("failed to add RT global load stat\n");
return -1;
}
return 0;
}
void set_proc_attrs( char *fmt, ...)
{
va_list ap;
/* description */
va_start(ap, fmt);
vsnprintf( pt[process_no].desc, MAX_PT_DESC, fmt, ap);
va_end(ap);
/* pid */
pt[process_no].pid=getpid();
}
static int register_process_stats(int process_no)
{
if (register_process_load_stats(process_no) != 0) {
LM_ERR("failed to create load stats\n");
return -1;
}
return 0;
}
/* This function is to be called only by the main process!
* */
pid_t internal_fork(char *proc_desc, unsigned int flags)
{
#define CHILD_COUNTER_STOP 656565656
static int process_counter = 1;
pid_t pid;
unsigned int seed;
if (process_counter==CHILD_COUNTER_STOP) {
LM_CRIT("buggy call from non-main process!!!");
return -1;
}
seed = rand();
LM_DBG("forking new process \"%s\"\n",proc_desc);
/* set TCP communication */
if (tcp_pre_connect_proc_to_tcp_main(process_counter)<0){
LM_ERR("failed to connect future proc %d to TCP main\n",
process_no);
return -1;
}
/* check the IPC pipe */
if ( (flags & OSS_FORK_NO_IPC) ) {
/* close the listening end */
close(pt[process_counter].ipc_pipe[0]);
/* advertise no IPC to the rest of the procs */
pt[process_counter].ipc_pipe[0] = -1;
pt[process_counter].ipc_pipe[1] = -1;
/* NOTE: the IPC fds will remain open in the other processes,
* but they will not be known */
}
if (register_process_stats(process_counter)<0) {
LM_ERR("failed to create stats for future proc %d\n", process_no);
return -1;
}
pt[process_counter].pid = 0;
if ( (pid=fork())<0 ){
LM_CRIT("cannot fork \"%s\" process (%d: %s)\n",proc_desc,
errno, strerror(errno));
return -1;
}
if (pid==0){
/* child process */
is_main = 0; /* a child is not main process */
/* set uid and pid */
process_no = process_counter;
pt[process_no].pid = getpid();
pt[process_no].flags = flags;
process_counter = CHILD_COUNTER_STOP;
/* each children need a unique seed */
seed_child(seed);
init_log_level();
/* set attributes */
set_proc_attrs(proc_desc);
tcp_connect_proc_to_tcp_main( process_no, 1);
return 0;
}else{
/* parent process */
/* Do not set PID for child in the main process. Let the child do
* that as this will act as a marker to tell us that the init
* sequance of the child proc was completed.
* pt[process_counter].pid = pid; */
tcp_connect_proc_to_tcp_main( process_counter, 0);
process_counter++;
return pid;
}
}
/* returns the number of child processes
* filter all processes that have set the flags set
*
* used for proper status return code
*/
int count_init_children(int flags)
{
int ret=0,i;
struct sr_module *m;
/* listening children */
ret += udp_count_processes();
ret += tcp_count_processes();
/* attendent */
ret++;
/* dedicated timer */
ret++;
/* count number of module procs going to be initialised */
for (m=modules;m;m=m->next) {
if (m->exports->procs==NULL)
continue;
for (i=0;m->exports->procs[i].name;i++) {
if (!m->exports->procs[i].no || !m->exports->procs[i].function)
continue;
if (!flags || (m->exports->procs[i].flags & flags))
ret+=m->exports->procs[i].no;
}
}
LM_DBG("%d children are going to be inited\n",ret);
return ret;
}