-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver_functions.h
More file actions
564 lines (541 loc) · 12.8 KB
/
server_functions.h
File metadata and controls
564 lines (541 loc) · 12.8 KB
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
#include <unistd.h>
#include <stdio.h>
#include <sys/socket.h>
#include <stdlib.h>
#include <netinet/in.h>
#include <string.h>
#include <pthread.h>
#include <fcntl.h>
#include<string.h>
#define PORT 8080
#define START_MENU 0
#define SIGN_UP_OPTIONS 1
#define SIGN_IN_OPTIONS 2
#define USER_OPTIONS 3
#define ADMIN_OPTIONS 4
#define SIGN_UP 5
#define SIGN_IN 6
#define SIGN_UP_AS_USER 7
#define SIGN_UP_AS_JOINT 8
#define SIGN_UP_AS_ADMIN 9
#define SIGN_IN_AS_USER 10
#define SIGN_IN_AS_JOINT 11
#define SIGN_IN_AS_ADMIN 12
#define DEPOSIT 13
#define WITHDRAW 14
#define BALANCE 15
#define PASSWORD 16
#define DETAILS 17
#define EXIT 18
#define ADD_USER 19
#define DEL_USER 20
#define MOD_USER 21
#define GET_USER_DETAILS 22
#define INVALID -1
#define BUF_SIZE 1000
int global_acc_id = 100;
struct user
{
char type[BUF_SIZE];
char password[BUF_SIZE];
char u_name[BUF_SIZE];
};
struct account
{
int balance;
int accid;
};
int signup(int choice, char *u_name, char *password)
{
char filename[BUF_SIZE];
strcpy(filename, u_name);
char extension[5] = ".txt";
int fd;
strncat(filename, extension, sizeof(extension));
fd = open(filename, O_WRONLY);
if (fd != -1)
return -1;
else
close(fd);
fd = open(filename, O_WRONLY | O_CREAT, 0644);
if (fd == -1)
{
perror("signup");
return -1;
}
struct user u;
strcpy(u.u_name, u_name);
strcpy(u.password, password);
switch (choice)
{
case 7:
strcpy(u.type, "normal");
break;
case 19:
strcpy(u.type, "normal");
break;
case 8:
strcpy(u.type, "joint");
break;
case 9:
strcpy(u.type, "admin");
break;
}
write(fd, &u, sizeof(struct user));
struct account acc;
acc.balance = 0;
acc.accid = (global_acc_id += 1);
write(fd, &acc, sizeof(struct account));
close(fd);
return 0;
}
int signin(int choice, char *u_name, char *password)
{
static struct flock lock;
lock.l_type = F_RDLCK;
lock.l_start = 0;
lock.l_whence = SEEK_SET;
lock.l_len = sizeof(struct user);
lock.l_pid = getpid();
char filename[BUF_SIZE];
strcpy(filename, u_name);
char extension[5] = ".txt";
int fd;
strncat(filename, extension, sizeof(extension));
fd = open(filename, O_RDONLY, 0644);
if (fd == -1)
{
perror("signin");
return -1;
}
struct user u;
if (fcntl(fd, F_SETLKW, &lock) == -1)
{
perror("fcntl");
return -1;
}
// Critical section starts........
lseek(fd, 0, SEEK_SET);
read(fd, &u, sizeof(struct user));
if ((strcmp(u.password, password) != 0) || (choice == SIGN_IN_AS_USER && (strcmp(u.type, "normal") != 0)) || (choice == SIGN_IN_AS_ADMIN && (strcmp(u.type, "admin") != 0)) || (choice == SIGN_IN_AS_JOINT && (strcmp(u.type, "joint") != 0)))
return -1;
// Critical section ends........
lock.l_type = F_UNLCK;
fcntl(fd, F_SETLKW, &lock);
close(fd);
return 0;
}
int deposit(char *u_name, int amt)
{
static struct flock lock;
lock.l_type = F_WRLCK;
lock.l_start = sizeof(struct user);
lock.l_whence = SEEK_SET;
lock.l_len = sizeof(struct account);
lock.l_pid = getpid();
char filename[BUF_SIZE];
strcpy(filename, u_name);
char extension[5] = ".txt";
int fd;
strncat(filename, extension, sizeof(extension));
fd = open(filename, O_RDWR, 0644);
if (fd == -1)
{
perror("signin");
return -1;
}
struct account acc;
if (fcntl(fd, F_SETLKW, &lock) == -1)
{
perror("fcntl");
return -1;
}
// Critical section starts........
lseek(fd, sizeof(struct user), SEEK_SET);
if (read(fd, &acc, sizeof(struct account)) == -1)
{
perror("read");
return -1;
}
acc.balance += amt;
lseek(fd, sizeof(struct user), SEEK_SET);
if (write(fd, &acc, sizeof(struct account)) == -1)
{
perror("write");
return -1;
}
// Critical section ends..........
lock.l_type = F_UNLCK;
fcntl(fd, F_SETLKW, &lock);
close(fd);
return 0;
}
int withdraw(char *u_name, int amt)
{
static struct flock lock;
lock.l_type = F_WRLCK;
lock.l_start = sizeof(struct user);
lock.l_whence = SEEK_SET;
lock.l_len = sizeof(struct account);
lock.l_pid = getpid();
char filename[BUF_SIZE];
strcpy(filename, u_name);
char extension[5] = ".txt";
int fd;
strncat(filename, extension, sizeof(extension));
fd = open(filename, O_RDWR, 0644);
if (fd == -1)
{
perror("SIGNIN");
return -1;
}
struct account acc;
if (fcntl(fd, F_SETLKW, &lock) == -1)
{
perror("fcntl");
return -1;
}
// Critical section begins..........
lseek(fd, sizeof(struct user), SEEK_SET);
if (read(fd, &acc, sizeof(struct account)) == -1)
{
perror("read");
return -1;
}
printf("balance = %d\n", acc.balance);
acc.balance -= amt;
if (acc.balance < 0)
return -1;
lseek(fd, sizeof(struct user), SEEK_SET);
if (write(fd, &acc, sizeof(struct account)) == -1)
{
perror("write");
return -1;
}
// Critical section ends...............
lock.l_type = F_UNLCK;
fcntl(fd, F_SETLKW, &lock);
close(fd);
return 0;
}
int balance(char *u_name)
{
static struct flock lock;
lock.l_type = F_RDLCK;
lock.l_start = sizeof(struct user);
lock.l_whence = SEEK_SET;
lock.l_len = sizeof(struct account);
lock.l_pid = getpid();
char filename[BUF_SIZE];
strcpy(filename, u_name);
char extension[5] = ".txt";
int fd;
strncat(filename, extension, sizeof(extension));
fd = open(filename, O_RDONLY, 0644);
if (fd == -1)
{
perror("SIGNIN");
return -1;
}
struct account acc;
if (fcntl(fd, F_SETLKW, &lock) == -1)
{
perror("fcntl");
return -1;
}
// Critical section .......... begins
lseek(fd, sizeof(struct user), SEEK_SET);
if (read(fd, &acc, sizeof(struct account)) == -1)
{
perror("read");
}
// Critical section ......... ends
lock.l_type = F_UNLCK;
fcntl(fd, F_SETLKW, &lock);
close(fd);
return acc.balance;
}
int change_password(char *u_name, char *pwd)
{
static struct flock lock;
lock.l_type = F_WRLCK;
lock.l_start = 0;
lock.l_whence = SEEK_SET;
lock.l_len = sizeof(struct user);
lock.l_pid = getpid();
char filename[BUF_SIZE];
strcpy(filename, u_name);
char extension[5] = ".txt";
int fd;
strncat(filename, extension, sizeof(extension));
fd = open(filename, O_RDWR, 0644);
if (fd == -1)
{
perror("Password change");
return -1;
}
struct user u;
lseek(fd, 0, SEEK_SET);
if (fcntl(fd, F_SETLKW, &lock) == -1)
{
perror("fcntl");
return -1;
}
// Critical section begins...........
if (read(fd, &u, sizeof(struct user)) == -1)
{
perror("read");
return -1;
}
strcpy(u.password, pwd);
lseek(fd, 0, SEEK_SET);
if (write(fd, &u, sizeof(struct user)) == -1)
{
perror("write");
return -1;
}
// Critical section ends...........
lock.l_type = F_UNLCK;
fcntl(fd, F_SETLKW, &lock);
close(fd);
return 0;
}
char *get_details(char *u_name)
{
static struct flock lock;
lock.l_type = F_RDLCK;
lock.l_start = 0;
lock.l_whence = SEEK_SET;
lock.l_len = 0;
lock.l_pid = getpid();
char filename[BUF_SIZE];
strcpy(filename, u_name);
char extension[5] = ".txt";
int fd;
strncat(filename, extension, sizeof(extension));
fd = open(filename, O_RDWR, 0644);
if (fd == -1)
{
perror("open");
return "user does not exist\n";
}
struct account acc;
struct user u;
if (fcntl(fd, F_SETLKW, &lock) == -1)
{
perror("fcntl");
return "sorry, section is locked\n";
}
// sCritical section begins........
lseek(fd, 0, SEEK_SET);
if (read(fd, &u, sizeof(struct user)) == -1)
{
perror("read");
return "unable to read file\n";
}
if (read(fd, &acc, sizeof(struct account)) == -1)
{
perror("read");
return "unable to read file\n";
}
// Critical section ends..........
lock.l_type = F_UNLCK;
fcntl(fd, F_SETLKW, &lock);
close(fd);
char *return_string = (char *)malloc(BUF_SIZE * sizeof(char));
sprintf(return_string, "username : %s \npassword : %s \ntype : %s\nbalance : %d\n account id : %d\n",
u.u_name, u.password, u.type, acc.balance, acc.accid);
return return_string;
}
int del_user(char *u_name)
{
static struct flock lock;
lock.l_type = F_WRLCK;
lock.l_start = 0;
lock.l_whence = SEEK_SET;
lock.l_len = 0;
lock.l_pid = getpid();
char filename[BUF_SIZE];
strcpy(filename, u_name);
char extension[5] = ".txt";
strncat(filename, extension, sizeof(extension));
int fd = open(filename, O_RDWR, 0644);
if (fd == -1)
{
perror("open");
}
if (fcntl(fd, F_SETLKW, &lock) == -1)
{
perror("fcntl");
}
return unlink(filename);
}
int modify_user(char *u_name, char *new_u_name, char *password)
{
static struct flock lock;
lock.l_type = F_WRLCK;
lock.l_start = 0;
lock.l_whence = SEEK_SET;
lock.l_len = 0;
lock.l_pid = getpid();
char filename[BUF_SIZE];
strcpy(filename, u_name);
char extension[5] = ".txt";
int fd, choice;
strncat(filename, extension, sizeof(extension));
fd = open(filename, O_RDWR, 0644);
if (fd == -1)
{
perror("mod user");
return -1;
}
struct user u;
if (fcntl(fd, F_SETLKW, &lock) == -1)
{
perror("fcntl");
}
// Critical section starts........
lseek(fd, 0, SEEK_SET);
if (read(fd, &u, sizeof(struct user)) == -1)
{
perror("read");
return -1;
}
del_user(u_name);
if (strcmp(u.type, "normal") == 0)
choice = SIGN_UP_AS_USER;
else
choice = SIGN_UP_AS_JOINT;
strcpy(u.u_name, new_u_name);
signup(choice, new_u_name, password);
// Critical section ends.......
lock.l_type = F_UNLCK;
fcntl(fd, F_SETLKW, &lock);
close(fd);
return 0;
}
void *connection_handler(void *socket_desc)
{
int sd = *(int *)socket_desc, choice, deposit_amt, withdraw_amt, ret, balance_amt;
char *u_name = (char*)malloc(BUF_SIZE * sizeof(char));
char *password = (char*)malloc(BUF_SIZE * sizeof(char));
while (1)
{
char *type = (char*)malloc(BUF_SIZE * sizeof(char));
char *new_u_name = (char*)malloc(BUF_SIZE * sizeof(char));
char *message = (char*)malloc(BUF_SIZE * sizeof(char));
char *option_string = (char*)malloc(BUF_SIZE * sizeof(char));
char *amt_string = (char*)malloc(BUF_SIZE * sizeof(char));
printf("socket = %d\n", sd);
read(sd, option_string, sizeof(option_string));
choice = atoi(option_string);
if (choice == SIGN_UP_AS_USER || choice == SIGN_UP_AS_ADMIN || choice == SIGN_UP_AS_JOINT)
{
read(sd, u_name, sizeof(u_name));
read(sd, password, sizeof(password));
int ret = signup(choice, u_name, password);
if (ret == -1)
message = "Failed to add user please try again";
else
message = "User added successfully!\n";
}
else if (choice == SIGN_IN_AS_USER || choice == SIGN_IN_AS_ADMIN || choice == SIGN_IN_AS_JOINT)
{
read(sd, u_name, sizeof(u_name));
read(sd, password, sizeof(password));
ret = signin(choice, u_name, password);
if (ret == -1)
message = "Sign in failed\n";
else
message = "Successfully signed in!\n";
}
else if (choice == DEPOSIT)
{
read(sd, amt_string, sizeof(amt_string));
deposit_amt = atoi(amt_string);
ret = deposit(u_name, deposit_amt);
if (ret == 0)
message = "Amount deposited successfully\n";
}
else if (choice == WITHDRAW)
{
read(sd, amt_string, sizeof(amt_string));
withdraw_amt = atoi(amt_string);
ret = withdraw(u_name, withdraw_amt);
if (ret == -1)
message = "Withdraw failed";
else
message = "Withdraw success\n";
}
else if (choice == BALANCE)
{
balance_amt = balance(u_name);
sprintf(message, "%d", balance_amt);
}
else if (choice == PASSWORD)
{
read(sd, password, sizeof(password));
ret = change_password(u_name, password);
if (ret == -1)
message = "Password change failed\n";
else
message = "Password changed successfully";
}
else if (choice == DEL_USER)
{
char *u_name = (char*)malloc(BUF_SIZE * sizeof(char));
char *password = (char*)malloc(BUF_SIZE * sizeof(char));
read(sd, u_name, sizeof(u_name));
ret = del_user(u_name);
printf("unlink returned %d\n", ret);
if (ret == -1)
message = "Delete user failed\n";
else
message = "User deleted successfully\n";
}
else if (choice == GET_USER_DETAILS)
{
char *u_name = (char*)malloc(BUF_SIZE * sizeof(char));
read(sd, u_name, sizeof(u_name));
printf("u_name = %s\n", u_name);
message = get_details(u_name);
}
else if (choice == MOD_USER)
{
char *u_name = (char*)malloc(BUF_SIZE * sizeof(char));
char *password = (char*)malloc(BUF_SIZE * sizeof(char));
read(sd, u_name, sizeof(u_name));
read(sd, new_u_name, sizeof(new_u_name));
read(sd, password, sizeof(password));
ret = modify_user(u_name, new_u_name, password);
if (ret == -1)
message = " Unable to modify user\n";
else
message = "User details updated\n";
}
else if (choice == DETAILS)
{
message = get_details(u_name);
}
else if (choice == ADD_USER)
{
char *u_name = (char*)malloc(BUF_SIZE * sizeof(char));
char *password = (char*)malloc(BUF_SIZE * sizeof(char));
read(sd, type, sizeof(type));
read(sd, u_name, sizeof(u_name));
read(sd, password, sizeof(password));
printf("type = %s u_name = %s pwd = %s\n", type, u_name, password);
if (!strcmp(type, "1"))
choice = SIGN_UP_AS_USER;
else
choice = SIGN_UP_AS_JOINT;
ret = signup(choice, u_name, password);
if (ret == -1)
message = "Failed to add account please try again later \n";
else
message = "Account added successfully\n";
}
send(sd, message, BUF_SIZE * sizeof(char), 0);
}
return 0;
}