-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.c
201 lines (192 loc) · 5.53 KB
/
server.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
#include "common.h"
#include <pthread.h>
static const bool USE_THREADS = true;
struct connection
{
int handle;
char *type;
};
void *runCommand(struct connection *c)
{
int newConnection = c->handle;
const char *cmd = c->type;
char *lineptr = NULL;
size_t n = 0;
size_t sz = 0;
FILE *fp = popen(cmd, "r");
while ((sz = getline(&lineptr, &n, fp) != EOF))
{
while (sz > 0)
{
message_t message = {0};
if (sz < sizeof(message.data))
{
strcpy(&message.data, lineptr);
message.size = sz;
sz = 0;
send(newConnection, &message, sizeof(message), MSG_MORE);
}
else
{
strcpy(&message.data, lineptr);
lineptr += sizeof(message.data);
sz -= sizeof(message.data);
message.size = sizeof(message.data);
send(newConnection, &message, sizeof(message), 0);
}
}
}
close(newConnection);
pclose(fp);
if (USE_THREADS) {
free(c);
}
free(lineptr);
return NULL;
}
int main()
{
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
int option = 1;
setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
if (sockfd == -1)
{
fprintf(stderr, "Unable to allocate socket\n");
return 1;
}
struct sockaddr_in addressPort = {.sin_family = AF_INET, .sin_port = htons(P1_PORT), .sin_addr.s_addr = INADDR_ANY};
if (bind(sockfd, (const struct sockaddr *)&addressPort, sizeof(addressPort)) == -1)
{
fprintf(stderr, "%s\n", strerror(errno));
return 1;
}
if (listen(sockfd, 100) == -1)
{
fprintf(stderr, "listen: %s\n", strerror(errno));
return 1;
}
size_t sz = 0;
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN*2);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
while (true)
{
int tmp = sizeof(addressPort);
int newConnection = accept(sockfd, (struct sockaddr *)&addressPort, &tmp);
if (newConnection < 0)
{
fprintf(stderr, "accept: %s\n", strerror(errno));
continue;
}
else
{
fprintf(stderr, "accepting a new connection\n");
}
command_t command = {0};
recv(newConnection, &command, sizeof(command), 0);
switch (command.type)
{
case DATE_CMD:
{
pthread_t thread;
struct connection *buf = malloc(sizeof(*buf));
buf->handle = newConnection;
buf->type = "exec date";
pthread_create(&thread, &attr, runCommand, buf);
pthread_detach(thread);
}
break;
case UPTIME_CMD:
{
if (USE_THREADS)
{
pthread_t thread;
struct connection *buf = malloc(sizeof(*buf));
buf->handle = newConnection;
buf->type = "exec uptime";
pthread_create(&thread, &attr, runCommand, buf);
pthread_detach(thread);
}
else
{
runCommand(&(struct connection){newConnection, "exec uptime"});
}
}
break;
case MEMUSE_CMD:
{
if (USE_THREADS)
{
pthread_t thread;
struct connection *buf = malloc(sizeof(*buf));
buf->handle = newConnection;
buf->type = "exec free";
pthread_create(&thread, &attr, runCommand, buf);
pthread_detach(thread);
}
else
{
runCommand(&(struct connection){newConnection, "exec free"});
}
}
break;
case NETSTAT_CMD:
{
if (USE_THREADS)
{
pthread_t thread;
struct connection *buf = malloc(sizeof(*buf));
buf->handle = newConnection;
buf->type = "exec netstat";
pthread_create(&thread, &attr, runCommand, buf);
pthread_detach(thread);
}
else
{
runCommand(&(struct connection){newConnection, "exec netstat"});
}
}
break;
case USERS_CMD:
{
if (USE_THREADS)
{
pthread_t thread;
struct connection *buf = malloc(sizeof(*buf));
buf->handle = newConnection;
buf->type = "exec who";
pthread_create(&thread, &attr, runCommand, buf);
pthread_detach(thread);
}
else
{
runCommand(&(struct connection){newConnection, "exec who"});
}
}
break;
case RUNNINGPROCS_CMD:
{
if (USE_THREADS)
{
pthread_t thread;
struct connection *buf = malloc(sizeof(*buf));
buf->handle = newConnection;
buf->type = "exec free";
pthread_create(&thread, &attr, runCommand, buf);
pthread_detach(thread);
}
else
{
runCommand(&(struct connection){newConnection, "exec free"});
}
}
break;
default:
fprintf(stderr, "Invalid command");
;
break;
}
}
close(sockfd);
}