-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprate.c
435 lines (403 loc) · 10 KB
/
prate.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
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <time.h>
typedef int BOOL;
#define FALSE 0
#define TRUE 1
#define NUM_MAX_LENGTH 50
#define MSG(a...) fprintf(stderr, a)
#define MAX_FORK_CNT 5
#define ERR_INV_PERCENT 1
#define ERR_INV_PROCNUM 2
#define ERR_INV_FORMAT 3
char filename[9] = "20092318\0";
extern int opterr, optind;
extern char *optarg;
extern int optopt;
BOOL FORKED = FALSE;
BOOL desc = FALSE;
int succCnt = 0, forkedCnt = 0, procCnt = -1;
int forkIndex = -1;
FILE *fp = NULL;
// 세마포어
union semun
{
int val;
struct semid_ds *buf;
unsigned short int *array;
};
static int semid;//semaphore id
union semun sem_union;
void err_print(int errcode);
void print_succ_result();
void hdl_parent(int signal);
void hdl_child (int signal);
BOOL isCorrectInt (char *pstr);
void prate_gen(int percent);
BOOL pmanipulator (int percent);
int main(int argc, char **argv, char **env) {
int param_opt, first_op, num, errcode = 0;
int percent=-1;
BOOL correct_stmt = TRUE;
opterr = 0;
if (argc < 4)
correct_stmt = FALSE;
while( -1 != (param_opt = getopt (argc, argv, "p:d"))
&& correct_stmt)
{
switch (param_opt)
{
case 'p':
first_op = optind-1;
if (optind != 3) {
errcode = ERR_INV_PERCENT;
correct_stmt = FALSE;
}
else if (isCorrectInt (argv[ first_op ]))
{
num = atoi (argv[first_op]);
if (!(num > 0 && num < 100)) {
errcode = ERR_INV_PERCENT;
correct_stmt = FALSE;
}
}
else
{
errcode = ERR_INV_PERCENT;
correct_stmt = FALSE;
}
if (strlen (argv[ first_op-1 ]) != 2 ) {
errcode = ERR_INV_PERCENT;
correct_stmt = FALSE;
}
if (correct_stmt)
percent = atoi (argv[ first_op ]);
break;
case 'd':
if (optind != 4) {
errcode = ERR_INV_PERCENT;
correct_stmt = FALSE;
}
first_op = optind;
if (strlen (argv[ first_op-1 ]) != 2 ) {
errcode = ERR_INV_PERCENT;
correct_stmt = FALSE;
}
desc = TRUE;
break;
default :
errcode = ERR_INV_FORMAT;
correct_stmt = FALSE;
}
}
if (correct_stmt == TRUE) {
if ( !isCorrectInt(argv[optind]) ) {
errcode = ERR_INV_FORMAT;
correct_stmt = FALSE;
}
else if ( argv[optind+1] ){
errcode = 0;
correct_stmt = FALSE;
}
else {
procCnt = atoi(argv[ optind] );
}
}
if (!correct_stmt) {
err_print(errcode);
}
else {
//MSG("correct stmt\n");
//MSG("percent:%d procCnt:%d\n", percent, procCnt);
prate_gen (percent);
}
return 0;
}
BOOL isCorrectInt (char *pstr) {
BOOL res = TRUE;
int val = atoi (pstr); // 소수점 위 파싱
// 음수 체크
if (val < 0) res = FALSE;
int len = 0;
char str1[ NUM_MAX_LENGTH ];
char *str2 = malloc(NUM_MAX_LENGTH);
strcpy(str1, pstr);
int sosu, i;
char *ptr = NULL;
/* 소수점 밑 확인 */
ptr = strtok_r(str1, ".", &str2);
if (strlen( str2 ) == 0 ) {
sosu = atoi (str1);
if (sosu != -1)
res = TRUE;
}
else {
// 소수점 밑에 특수문자 포함시 오류
for (i=0 ; i < strlen(str2) ; i++) {
switch (str2[i]) {
case '0':
break;
default :
res = FALSE;
}
}
}
if (res == TRUE) {
for ( ; val > 0 ; val /= 10 ) len++;
// 소숫점 위 확인
if (ptr == NULL){
if (len != strlen(str1))
res = FALSE;
}
else if (len != strlen (ptr))
res = FALSE;
}
return res;
}
void prate_gen (int percent) {
int i, j;
BOOL child = FALSE, res = FALSE, failed = FALSE;
int readCnt = 0;
char buf[ MAX_FORK_CNT ] = {0, };
pid_t pid_c[ MAX_FORK_CNT ];
pid_t pid_returned;
// open과 close를 위한 semaphore 구조체 정의
struct sembuf mysem_open = {0, -1, SEM_UNDO}; //세마포어 얻기
struct sembuf mysem_close = {0, 1, SEM_UNDO}; //세마포어 돌려주기
int sem_num = 1; //부모 프로세스는 생성자
//세마포어 설정
while ((semid = semget((key_t)1234, sem_num, 0666|IPC_CREAT) ) == -1 );
struct sigaction act_new, act_old, act_child_new, act_child_old;
// 부모프로세스 시그널핸들러
act_new.sa_handler = &hdl_parent;
sigemptyset (&act_new.sa_mask);
sigaddset (&act_new.sa_mask, SIGINT);
sigaddset (&act_new.sa_mask, SIGTERM);
/*
act_old.sa_handler = &hdl_parent;
sigemptyset (&act_old.sa_mask);
if (sigaction (SIGINT, &act_old, NULL) == -1) {
failed = TRUE;
}
else if(sigaction (SIGTERM, &act_old, NULL) == -1) {
failed = TRUE;
}*/
if (signal (SIGINT, &hdl_parent) == SIG_ERR) {
failed = TRUE;
}
if (signal (SIGTERM, &hdl_parent) == SIG_ERR) {
failed = TRUE;
}
// 자식프로세스 시그널핸들러 설정
act_child_new.sa_handler = &hdl_child;
sigemptyset (&act_child_new.sa_mask);
sigaddset (&act_child_new.sa_mask, SIGINT);
sigaddset (&act_child_new.sa_mask, SIGTERM);
act_child_old.sa_handler = &hdl_child;
sigemptyset (&act_child_old.sa_mask);
for (i = 0; i < procCnt && !failed; )
{
for (j = 0; j < MAX_FORK_CNT && i < procCnt; j++, i++) {
pid_c[ j ] = fork();
forkedCnt++;
//child
if (pid_c[ j ] == 0) {
if (sigaction (SIGINT, &act_child_old, NULL) == -1) {
failed = TRUE;
}
else if(sigaction (SIGTERM, &act_child_old, NULL) == -1) {
failed = TRUE;
}
child = TRUE;
break;
} else if (pid_c[ j ] == -1) {
failed = TRUE;
}
}
if (child) {
//자식프로세스 시그널 블록
if ((sigprocmask (SIG_BLOCK, &act_child_new.sa_mask, NULL)) == -1) {
exit(EXIT_FAILURE);
}
sem_num = 0; //자식 프로세스는 소비자
res = pmanipulator(percent);
usleep (rand() % 200000); //자식프로세스가 무작위 순으로 반환
//세마포어 설정
while ((semid = semget((key_t)1234, sem_num, IPC_CREAT )) == -1 );
//세마포어 초기화
sem_union.val = 1;
if (-1 == semctl (semid, 0, SETVAL, sem_union)) {
exit(EXIT_FAILURE);
}
//세마포어 검사
if (semop(semid, &mysem_open, 1) == -1) {
exit(EXIT_FAILURE);
}
/** 임계영역 **/
//자식 프로세스들의 성공여부를 기록하는 파일을 연다.
if ((fp = fopen(filename, "a+")) == NULL) {
exit(EXIT_FAILURE);
}
fprintf (fp, "%d", res);
fclose (fp);
/** 임계영역 끝 **/
//세마포어 자원을 되돌려준다.
semop (semid, &mysem_close, 1);
//블록 끝
if ((sigprocmask (SIG_UNBLOCK, &act_child_new.sa_mask, NULL)) == -1) {
exit(EXIT_FAILURE);
}
exit(EXIT_SUCCESS);
}
else {
// 부모 프로세스
//자식프로세스의 시작을 대기
usleep(100000);
//자식 프로세스로부터 기록된 반환을 대기하고 출력
// MAX_FORK_CNT만큼의 자식을 생성하고, 그 자식들의 결과를 받아 출력
// 자식 한개 단위로 신호를 블록
//수행결과 기록파일 열기
while ((fp = fopen(filename, "r"))== NULL);
FORKED = TRUE;
for (forkIndex = 0; forkIndex < MAX_FORK_CNT ; ) {
int stat;
//시그널처리를 블록화
if ((sigprocmask (SIG_BLOCK, &act_new.sa_mask, NULL)) == -1) {
failed = TRUE;
break;
}
// 자식 프로세스가 종료되기를 기다리고 pid를 받아온다.
pid_returned = wait(&stat);
if (pid_returned == -1) {
break;
}
else if (WEXITSTATUS(stat) == EXIT_FAILURE) {
//자식 프로세스가 비정상적으로 종료되었을 경우 오류
failed = TRUE;
break;
}
else {
readCnt = fscanf (fp, "%c", &buf[forkIndex]);
}
//읽은 정보 기록
if (readCnt == -1) {
failed = TRUE;
break;
}
else if (desc) {
MSG("PID %d returned %s.\n"
, pid_returned
, buf[ forkIndex ]=='1'?"success":"failure"
);
}
if (buf[ forkIndex ] == '1')
succCnt++;
// MAX_FORK_CNT childs ended
forkIndex++;
#ifdef SLEEP_PARENT
usleep(500000);
#endif
//시그널처리를 un블록화
if ((sigprocmask (SIG_UNBLOCK, &act_new.sa_mask, NULL)) == -1) {
failed = TRUE;
break;
}
}
fclose (fp);
FORKED = FALSE;
}
}
//세마포어 키 반납
if (-1 == semctl (semid, 0, IPC_RMID, sem_union)) {
failed = TRUE;
}
// 부모 프로세스
if (failed) {
MSG("명령어 수행 실패\n");
exit(EXIT_FAILURE);
}
print_succ_result();
//수행결과를 기록하던 파일을 삭제
unlink(filename);
}
void print_succ_result() {
float succ = (float)succCnt / (float)forkedCnt;
succ *= 100;
MSG("Created %d processes.\n", forkedCnt);
MSG("Success: %d %%\n", (int)succ);
MSG("Failure: %d %%\n", 100 - (int)succ);
fflush(stdout);
}
void hdl_parent (int signal) {
int pid_child, stat, readCnt;
char buf[2] = {0, };
//MSG("sig:%d pid:%d \n", signal, getpid());
if (!FORKED) {
//MSG("fork()를 수행하기 전입니다.\n");
if (succCnt > 0) {
print_succ_result();
}
exit(EXIT_SUCCESS);
}
kill (0-getpid(), signal);
for (; forkIndex < MAX_FORK_CNT; forkIndex++) {
//pid_child = waitpid(-1, &stat, WNOHANG);
pid_child = wait(&stat);
if (WEXITSTATUS(stat) == EXIT_FAILURE) {
MSG("명령어 수행 실패\n");
exit(EXIT_FAILURE);
}
else {//if (WIFSIGNALED(stat)) { //자식프로세스가 신호에의해 종료되었을 경우
readCnt = fscanf (fp, "%c", &buf[0]);
}
if (readCnt == -1) {
MSG("명령어 수행 실패\n");
exit(EXIT_FAILURE);
}
else if (desc) {
MSG("PID %d returned %s.\n"
, pid_child
, buf[0] == '1'?"success":"failure"
);
}
if (buf[ 0 ] == '1')
succCnt++;
#ifdef SLEEP_PARENT
usleep(500000);
#endif
}
fclose (fp);
if (-1 == semctl (semid, 0, IPC_RMID, sem_union)) {
MSG("명령어 수행 실패\n");
exit(EXIT_FAILURE);
}
print_succ_result();
unlink(filename);
exit(EXIT_SUCCESS);
}
void hdl_child (int signal) {
//MSG("child process\n");
}
void err_print(int errcode) {
switch (errcode) {
case FALSE:
MSG("적절한 인수 사용이 아닙니다.\n");
break;
case ERR_INV_PERCENT:
MSG("-p 옵션 사용이 잘못되었습니다.\n");
break;
case ERR_INV_PROCNUM:
MSG("자식프로세스 수는 정수만 가능합니다.\n");
break;
case ERR_INV_FORMAT:
MSG("명령어의 인자 형식이 잘못되었습니다.\n");
break;
}
}