summaryrefslogtreecommitdiff
path: root/Year_2/OS/hw/hw8.c
blob: 0e2ecc41af32089c65bd1ddf82a40efc142c29cc (plain)
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
/*
    Homework n.8

    Modificare l'homework precedente (n.7) sostituendo il canale di comuniciazione
    offerto dalla coda di messaggi tra padre e figlio con un segmento di memoria
    condiviso e una coppia di semafori (esattamente due) opportunamente utilizzati
    per il coordinamento.

*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <sys/shm.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>

#define DIM_MSG 1024

int
WAIT(int des, int n)
{
    struct sembuf op[1] = { { n, -1, 0 } };
    return semop(des, op, 1);
}

int
SIGNAL(int des, int n)
{
    struct sembuf op[1] = { { n, 1, 0 } };
    return semop(des, op, 1);
}

void
execute(int id_shm, int id_sem)
{
    pid_t pid;
    char* msg;
    char command[DIM_MSG];
    int n;
    char* p;
    int pipefd[2];

    if ((msg = (char*)shmat(id_shm, NULL, 0)) == (char*)-1) {
        perror("shmat");
        exit(1);
    }

    while (1) {
        WAIT(id_sem, 0);

        /* The variable `command` will be the substring of the passed string
         * until the first space, ignoring all parameters */
        n = 0;
        p = msg;
        while (*p != '\0') {
            if (*p == ' ')
                break;
            n++;
            p++;
        }

        strncpy(command, msg, n);
        command[n] = '\0';

        if (strcmp(command, "exit") == 0)
            break;

        if (pipe(pipefd) == -1) {
            perror("pipe");
            exit(1);
        }

        pid = fork();
        if (pid == -1) {
            perror("fork");
            exit(1);
        }

        if (pid == 0) {
            dup2(pipefd[1], 1);
            dup2(pipefd[1], 2);
            close(pipefd[0]);
            execlp(command, "", NULL);
            fprintf(stderr, "Error executing '%s'\n", command);
            exit(1);
        } else {
            wait(NULL);

            close(pipefd[1]);
            n = read(pipefd[0], msg, 1024);
            msg[n] = '\0';
            SIGNAL(id_sem, 1);
            close(pipefd[0]);
        }
    }
}

int
main()
{
    int id_shm, id_sem;
    int pid;
    int n;
    char* msg;

    if ((id_shm = shmget(IPC_PRIVATE, DIM_MSG, IPC_CREAT | 0644)) == -1) {
        perror("shmget");
        exit(1);
    }

    if ((id_sem = semget(IPC_PRIVATE, 2, IPC_CREAT | 0644)) == -1) {
        perror("semget");
        exit(1);
    }

    /* Set values to 0 */
    semctl(id_sem, 0, SETVAL, 0);
    semctl(id_sem, 1, SETVAL, 0);

    pid = fork();
    if (pid == -1) {
        perror("fork");
        exit(1);
    }

    if ((msg = (char*)shmat(id_shm, NULL, 0)) == (char*)-1) {
        perror("shmat");
        exit(1);
    }

    if (pid != 0) {
        while (1) {
            printf("Insert a command: ");
            fgets(msg, DIM_MSG, stdin);
            n = strlen(msg);
            msg[n - 1] = '\0';

            /* Ignore empty string */
            if (strcmp(msg, "") == 0)
                continue;

            SIGNAL(id_sem, 0);

            if (strcmp(msg, "exit") == 0) {
                break;
            }

            WAIT(id_sem, 1);
            printf("%s\n", msg);
            sleep(1);
        }
    } else {
        execute(id_shm, id_sem);
    }

    shmctl(id_shm, IPC_RMID, NULL);
    semctl(id_sem, 0, IPC_RMID, 0);

    return 0;
}