8f39550ce
김태훈
superdaemon 추가
|
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
|
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include "main.h"
#include "projectinc.h"
#define PATH_SIZE 255
#define TASK_ARRAY_SIZE 20
task_t ary_task[TASK_ARRAY_SIZE];
int cnt_task;
void on_check_child( int sig)
{
pid_t pid;
int result;
int ndx;
while( 0 < ( pid = waitpid( -1, &result, WNOHANG)))
{ dp( "killed child pid=%d", pid);
for ( ndx= 0; ndx < cnt_task; ndx++)
{ dp( "checked child pid=%d %s", ary_task[ndx].pid, ary_task[ndx].full_filename);
if ( pid == ary_task[ndx].pid)
{
ary_task[ndx].count_down = ary_task[ndx].interval;
ary_task[ndx].pid = 0;
}
}
}
}
char *str_spc( char *_str, char *_rst)
{
char *pos;
*_rst = '\0';
pos = index(_str, ' ');
if ( !pos)
{
strcpy(_rst, _str);
}
else
{
strncpy(_rst, _str, pos-_str);
_rst[pos-_str] = '\0';
while ( ' ' == *pos)
pos++;
}
return( pos);
}
void exec_task( task_t *_task)
{
pid_t pid;
if ( ERR_NONE != _task->error)
{
return;
}
pid = fork();
if ( 0 == pid)
{ dp( "1 sec wait and exec %s", _task->full_filename);
sleep( 1);
execv(_task->full_filename, _task->params);
}
else if ( 0 < pid)
{ dp( "********** task= %s New Pid= %d", _task->full_filename, pid);
_task->pid = pid;
}
else
{ dp( "Reset Counter %d", _task->interval);
_task->count_down = _task->interval;
}
}
void check_task_list( void)
{
int ndx;
for ( ndx = 0; ndx < cnt_task; ndx++)
{
if ( ( !ary_task[ndx].pid)
&& ( ERR_NONE == ary_task[ndx].error))
{
if ( 0 < ary_task[ndx].count_down)
{ dp( "count down :%d", ary_task[ndx].count_down);
ary_task[ndx].count_down--;
}
else
{
exec_task( &ary_task[ndx]);
}
}
}
return;
}
void get_execinfo( char *_data, task_t *_task)
{
char buf[PACKET_SIZE];
char exe_path[PATH_SIZE+5];
char exe_name[PATH_SIZE+5];
int nparam;
int sz_str;
pid_t pid;
_data = str_spc(_data, buf);
if ( PATH_SIZE < strlen( buf))
{
printf( "%s : path is too long!!
", buf);
_task->error = ERR_PATH_TOO_LONG;
return;
}
strcpy( exe_path, buf);
sz_str = strlen( exe_path);
if ( '/' != exe_path[sz_str-1])
{
exe_path[sz_str ] = '/';
exe_path[sz_str+1] = '\0';
}
_data = str_spc(_data, buf);
if ( PATH_SIZE < strlen( exe_path)+strlen( buf))
{
printf( "%s/%s : full name is too long!!
", exe_path, buf);
_task->error = ERR_PATH_TOO_LONG;
return;
}
strcpy( exe_name, buf);
strcat( exe_path, exe_name);
_task->full_filename = malloc( strlen( exe_path)+1);
strcpy( _task->full_filename, exe_path);
if ( 0 != access(_task->full_filename, F_OK))
{
printf( "%s is not exists!!
",_task->full_filename);
_task->error = ERR_PATH_TOO_LONG;
return;
}
_task->params[0] = malloc( strlen( exe_name)+1);
strcpy(_task->params[0], exe_name);
nparam = 1;
while (_data)
{
_data = str_spc(_data, buf);
_task->params[nparam] = malloc( strlen( buf)+1);
strcpy(_task->params[nparam], buf);
nparam++;
if ( 19 == nparam)
{
printf( "%s has too many params!!
", exe_name);
_task->error = ERR_TOO_MANY_PARAMS;
return;
}
}
_task->params[nparam] = ( char *)0;
_task->error = ERR_NONE;
}
void read_task_list( void)
{
FILE *fp;
char *tag;
char *pos;
char buf[PACKET_SIZE];
char item[255];
cnt_task = 0;
fp = fopen( "./superdaemon.ini", "r");
if ( NULL == fp)
{
return;
}
else
{
while( NULL != fgets( buf, PACKET_SIZE, fp))
{
tag = buf;
remove_white_char( tag);
while ( ' ' == *tag)
{
tag++;
}
if ( ( ' ' > *tag) ||
( !strncmp( tag, "//", 2)) )
{
continue;
}
tag = str_spc( tag, item);
ary_task[cnt_task].interval = atoi( item);
if ( ( ' ' > *tag) ||
( !strncmp( tag, "//", 2)) )
{
continue;
}
pos = index( tag, ' ');
if (!pos)
{
continue;
}
get_execinfo( tag, &ary_task[cnt_task]);
ary_task[cnt_task].count_down = 0;
ary_task[cnt_task].pid = 0;
cnt_task++;
if ( TASK_ARRAY_SIZE == cnt_task)
{
printf( "***** Task list is over %d. *****
", TASK_ARRAY_SIZE);
break;
}
}
}
fclose( fp);
}
void reg_child_signal( void)
{
struct sigaction sig_child;
sig_child.sa_handler = on_check_child;
sigemptyset( &sig_child.sa_mask);
sig_child.sa_flags = 0;
sigaction( SIGCHLD, &sig_child, 0);
}
int main( int argc, char **argv)
{
#ifdef NDEBUG
pid_t pid_daemon;
pid_daemon = fork();
if ( 0 > pid_daemon)
{
printf( "ERR: fork() failed
");
exit( 1);
}
else if( 0 != pid_daemon)
{
exit( 0);
}
#endif
reg_child_signal();
read_task_list();
while( 1 )
{
check_task_list();
sleep( 1);
}
}
|