-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommunication.c
More file actions
1390 lines (1133 loc) · 41.8 KB
/
communication.c
File metadata and controls
1390 lines (1133 loc) · 41.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
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Progetto del corso di LSO 2017/2018
*
* Dipartimento di Informatica Università di Pisa
* Docenti: Prencipe, Torquati
*
* Autore: Alessandro Meschi
* Matricola: 525658
* Email: alessandro.meschi@icloud.com
*
* Questo programma è, in ogni sua parte, opera originale dell'autore.
*/
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <sys/uio.h>
#include <unistd.h>
#include <errno.h>
#include "message.h"
#include "errors.h"
#include "logIn.h"
#include "stats.h"
#include "connections.h"
#include "settings.h"
#include "users.h"
#include "delivery.h"
#include "groups.h"
#include "utils.h"
/**
* @file communication.c
*
* @author Alessandro Meschi
*
* @date 7 Maggio 2019
*
* @brief Contiene la definizione di diverse funzioni di comunicazione utilizzate
* dal server per soddisfare le richieste
*/
int sReadHeader(long fd, message_hdr_t *hdr)
{
if(hdr == NULL || fd < 0) {errno = EINVAL; return -1;}
int test;
struct iovec iov;
iov.iov_base = hdr;
iov.iov_len = sizeof(message_hdr_t);
test = readv(fd, &iov, 1);
if(test == 0 || (test == -1 && errno == EPIPE))
return CLIENT_CLOSED_CONNECTION;
if(test == -1)
return test;
return test;
}
int sReadData(long fd, message_data_t *data)
{
if(data == NULL || fd < 0) {errno = EINVAL; return -1;}
int test;
char* ph;
unsigned int bytesRead;
unsigned int bufRead = 0;
struct iovec iov;
iov.iov_base = &(data->hdr);
iov.iov_len = sizeof(message_data_hdr_t);
test = readv(fd, &iov, 1);
if(test == 0 || (test == -1 && errno == EPIPE))
return CLIENT_CLOSED_CONNECTION;
if(test == -1)
return test;
bytesRead = test;
// Lettura del buffer finché non è stato letto tutto
if(data->hdr.len != 0)
{
data->buf = malloc(data->hdr.len);
CHECK_NULL_FATAL_ERROR(data->buf, "Allocando spazio per contenere la parte dati di un messaggio in lettura");
ph = data->buf;
while (bufRead < data->hdr.len)
{
test = read(fd, ph, data->hdr.len - bufRead);
if(test == 0 || (test == -1 && errno == EPIPE))
return CLIENT_CLOSED_CONNECTION;
if(test == -1)
return test;
bufRead += test;
ph += test;
}
bytesRead += bufRead;
}
return bytesRead;
}
int sReadFile(long fd, message_data_t* data)
{
if(data == NULL || fd < 0) {errno = EINVAL; return -1;}
int test;
char* ph;
unsigned int bytesRead;
unsigned int bufRead = 0;
struct iovec iov;
iov.iov_base = &(data->hdr);
iov.iov_len = sizeof(message_data_hdr_t);
test = readv(fd, &iov, 1);
if(test == 0 || (test == -1 && errno == EPIPE))
return CLIENT_CLOSED_CONNECTION;
if(test == -1)
return test;
bytesRead = test;
// Lettura del buffer finché non è stato letto tutto
if(data->hdr.len != 0)
{
data->buf = malloc(data->hdr.len);
CHECK_NULL_FATAL_ERROR(data->buf, "Allocando lo spazio necessario per leggere il file dal socket");
ph = data->buf;
while (bufRead < data->hdr.len)
{
test = read(fd, ph, data->hdr.len - bufRead);
if(test == 0 || (test == -1 && errno == EPIPE))
return CLIENT_CLOSED_CONNECTION;
if(test == -1)
return test;
bufRead += test;
ph += test;
}
bytesRead += bufRead;
}
// Controllo sulla dimensione del file
if((int)data->hdr.len/1000 > MaxFileSize)
return FILE_MESSAGE_TOO_BIG;
else
return bytesRead;
}
int sReadMsg(long fd, message_t *msg)
{
if(msg == NULL || fd < 0) {errno = EINVAL; return -1;}
int test;
unsigned int bytesRead;
// Lettura intestazione
test = sReadHeader(fd, &(msg->hdr));
if(test <= 0){return test;}
bytesRead = test;
// Lettura parte dati
test = sReadData(fd, &(msg->data));
if(test <= 0){return test;}
bytesRead += test;
return bytesRead;
}
int sSendHeader(long fd, message_hdr_t* hdr)
{
if(fd <= 0 || hdr == NULL){errno = EINVAL; return -1;}
int test;
struct iovec iov;
iov.iov_base = hdr;
iov.iov_len = sizeof(message_hdr_t);
test = writev(fd, &iov, 1);
if(test == 0 || (test == -1 && errno == EPIPE))
return CLIENT_CLOSED_CONNECTION;
return test;
}
int sSendData(long fd, message_data_t *data)
{
if(data == NULL || fd < 0) {errno = EINVAL; return -1;}
int test;
char* ph;
unsigned int written;
unsigned int bufWritten = 0;
struct iovec iov;
iov.iov_base = &(data->hdr);
iov.iov_len = sizeof(message_data_hdr_t);
test = writev(fd, &(iov), 1);
if(test == 0 || (test == -1 && errno == EPIPE))
return CLIENT_CLOSED_CONNECTION;
if(test == -1)
return test;
written = test;
// Scrittura del buffer finché non è stato scritto tutto
if(data->hdr.len != 0)
{
ph = data->buf;
while (bufWritten < data->hdr.len)
{
test = write(fd, ph, data->hdr.len - bufWritten);
if(test == 0 || (test == -1 && errno == EPIPE))
return CLIENT_CLOSED_CONNECTION;
if(test == -1)
return test;
bufWritten += test;
ph += test;
}
written += bufWritten;
}
return written;
}
int sSendMsg(long fd, message_t* msg)
{
if(msg == NULL || fd < 0) {errno = EINVAL; return -1;}
int test;
int written;
// Scrittura intestazione
test = sSendHeader(fd, &(msg->hdr));
if(test <= 0){return test;}
written = test;
// Scrittura parte dati
test = sSendData(fd, &(msg->data));
if(test <= 0){return test;}
written += test;
return written;
}
int registerUser(char* nickName)
{
// Controllo sulla validità dei parametri
if(nickName == NULL){errno = EINVAL; return -1;}
// Controllo sulla lunghezza del nome
if (strlen(nickName) > MAX_NAME_LENGTH)
return USERNAME_TOO_LONG;
int test;
int index;
int mutexIndex;
usersList_t* row;
// Calcolo dell'indice di riga
index = userHash((unsigned char*)nickName);
row = &((usrTable.table)[index]);
// Calcolo dell'indice della lock relativa alla porzione di tabella contenente la riga selezionata
mutexIndex = index / USERS_MUTEX_BLOCK_SIZE;
WRITE_LOCK((usrTable.blockLocks)[mutexIndex]);
// Inserimento nella riga
test = insertUserNode(row, nickName);
CHECK_FATAL_ERROR(test, "Inserendo l'utente nella lista utenti");
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
if(test == 0)
{// Inserimento effettuato
WRITE_LOCK(chattyStats.statsLock);
// Aggiornamento statistiche
chattyStats.nusers++;
RW_UNLOCK(chattyStats.statsLock)
}
return test;
}
int unregisterUser(char* nickName, long client)
{
if(nickName == NULL){errno = EINVAL; return -1;}
int test;
int grIndex;
int grMutexIndex;
int usrIndex;
int usrMutexIndex;
userNode_t* usrSave;
groupNode_t* grSave;
groupsList_t* grRow;
usersList_t* usrRow;
// Calcolo dell'indice di riga nella tabella utenti
usrIndex = userHash((unsigned char*)nickName);
usrRow = &((usrTable.table)[usrIndex]);
// Calcolo dell'indice della lock relativa alla porzione di tabella contenente la riga selezionata
usrMutexIndex = usrIndex / USERS_MUTEX_BLOCK_SIZE;
usrSave = NULL;
WRITE_LOCK((usrTable.blockLocks)[usrMutexIndex]);
// Selezione dell'utente nella tabella
test = getUserNode(usrRow, nickName, &usrSave);
CHECK_FATAL_ERROR(test, "Cercando l'utente nella tabella utenti");
if(usrSave == NULL)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
return USER_NOT_REGISTERED;
}
// Rmizione da tutti i gruppi
for(int i = 0; i < usrSave->user.groups.belonging; i++)
{
// Calcolo dell'indice di riga nella tabella dei gruppi
grIndex = groupHash((unsigned char*)(usrSave->user.groups.set)[i]);
grRow = &((grTable.table)[grIndex]);
// Calcolo dell'indice della lock relativa alla porzione di tabella dei gruppi contenente la riga selezionata
grMutexIndex = grIndex / GROUPS_MUTEX_BLOCK_SIZE;
grSave = NULL;
WRITE_LOCK((grTable.bloksLocks)[grMutexIndex]);
// Selezione del grupo da cui rimuovere l'utente
test = getGroupNode(grRow, (usrSave->user.groups.set)[i], &grSave);
CHECK_FATAL_ERROR(test, "Cercando il gruppo nella tabella dei gruppi");
if(grSave == NULL)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
errno = EPERM;
return -1;
}
// Rimozione dell'utente dal gruppo
test = removeMember(&(grSave->gr), nickName);
CHECK_FATAL_ERROR(test, "Rimuovendo l'username dalla lista dei membri del gruppo");
if(test < 0)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
errno = EPERM;
return -1;
}
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
}
// LogOut di tutti i client connessi con questo utente
for (int i = 0; i < usrSave->user.distribution.active; i++)
{
// Controllo che non venga disconnesso il client che ha fatto richiesta di deregistrazione
if ((usrSave->user.distribution.addresses)[i] != client)
{
// Logout del client
test = logOut((usrSave->user.distribution.addresses)[i]);
CHECK_FATAL_ERROR(test, "Effettuando il logout dei diversi client durante la deregistrazione");
}
(usrSave->user.distribution.addresses)[i] = -1;
}
// Rimozione dell'utente dalla tabella utenti
test = removeUserNode(usrRow, nickName);
CHECK_FATAL_ERROR(test, "Rimuovendo l'utente dalla lista utenti");
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
// Aggiornamento statistiche
WRITE_LOCK(chattyStats.statsLock);
chattyStats.nusers--;
RW_UNLOCK(chattyStats.statsLock);
return 0;
}
int checkRegistration(char* nickName)
{
if(nickName == NULL){errno = EINVAL; return -1;}
int test;
int index;
int mutexIndex;
userNode_t* save;
usersList_t* row;
// Calcolo dell'indice di riga
index = userHash((unsigned char*)nickName);
row = &((usrTable.table)[index]);
// Calcolo dell'indice della lock relativa alla porzione di tabella contenente la riga selezionata
mutexIndex = index / USERS_MUTEX_BLOCK_SIZE;
save = NULL;
WRITE_LOCK((usrTable.blockLocks)[mutexIndex]);
test = getUserNode(row, nickName, &save);
CHECK_FATAL_ERROR(test, "Selezionando l'utente nella riga");
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
if(save == NULL)
return 0;
else
return 1;
}
int logInUser(char* nickName, int address)
{
if(nickName == NULL || address <= 0){errno = EINVAL; return -1;}
int test;
int index;
int mutexIndex;
userNode_t* save;
usersList_t* row;
// Calcolo dell'indice di riga
index = userHash((unsigned char*)nickName);
row = &((usrTable.table)[index]);
// Calcolo dell'indice della lock relativa alla porzione di tabella contenente la riga selezionata
mutexIndex = index / USERS_MUTEX_BLOCK_SIZE;
save = NULL;
WRITE_LOCK((usrTable.blockLocks)[mutexIndex]);
// Selezione dell'utente da loggare
test = getUserNode(row, nickName, &save);
CHECK_FATAL_ERROR(test, "Cercando l'utente nella tabella utenti");
if(save == NULL)
{
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
return USER_NOT_REGISTERED;
}
// Si controlla che non venga superato il numero massimo di logIs simultanei per utente
if(save->user.distribution.active >= MAX_USER_SIMULTANEUS_CONNECTIONS)
{
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
return USER_LOGIN_QUOTA_EXCEEDED;
}
// LogIn
test = logIn(nickName, address);
CHECK_FATAL_ERROR(test, "Aggiungendo un login nella tabella dei login");
if(test != 0)
{
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
return test;
}
// Viene aggiunto il file descriptor al vettore di indirizzi dell'utente
test = addAddress(&(save->user.distribution), address);
CHECK_FATAL_ERROR(test, "Aggiungendo l'indirizzo nella lista degli indirizzi relativa all'utente");
if(test != 0)
{
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
return test;
}
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
// Aggiornamento delle statistiche
WRITE_LOCK(chattyStats.statsLock);
chattyStats.nonline++;
RW_UNLOCK(chattyStats.statsLock);
return 0;
}
int logOutUser(int address)
{
if(address <= 0){errno = EINVAL; return -1;}
int test;
int index;
int mutexIndex;
char buf[MAX_NAME_LENGTH];
userNode_t* save;
usersList_t* row;
READ_LOCK((lgTable.strip)[address].logLock);
// Ci si assicura che il file descriptor passato come parametro risulti attivo
// nella tabella dei logIn
if(!((lgTable.strip)[address].active))
{
RW_UNLOCK((lgTable.strip)[address].logLock);
return CLIENT_NOT_LOGGED;
}
// Viene copiato il nome dell'utente connesso su questo file descriptor
strcpy(buf, ((lgTable.strip)[address]).username);
RW_UNLOCK((lgTable.strip)[address].logLock);
// Calcolo dell'indice di riga
index = userHash((unsigned char*)buf);
row = &((usrTable.table)[index]);
// Calcolo dell'indice della lock relativa alla porzione di tabella contenente la riga selezionata
mutexIndex = index / USERS_MUTEX_BLOCK_SIZE;
save = NULL;
WRITE_LOCK((usrTable.blockLocks)[mutexIndex]);
// Selezione dell'utente
test = getUserNode(row, (lgTable.strip)[address].username, &save);
CHECK_FATAL_ERROR(test, "Cercando l'utente nella tabella utenti");
// LogOut dell'indirizzo
test = logOut(address);
CHECK_FATAL_ERROR(test, "Rimuovendo un login dalla tabella dei login");
// Aggiornamento delle statistiche
WRITE_LOCK(chattyStats.statsLock);
chattyStats.nonline--;
RW_UNLOCK(chattyStats.statsLock);
// Se l'utente ha effettuato una deregistrazione allora non risulterà nella tabella utenti
// quindi la funzione deve terminare qui
if(save == NULL)
{
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
return USER_NOT_REGISTERED;
}
// Altrimenti si rimuove il file descriptor dal vettore indirizzi dell'utente
test = removeAddress(&(save->user.distribution), address);
CHECK_FATAL_ERROR(test, "Rimuovendo l'indirizzo dalla lista degli indirizzi relativa all'utente");
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
return 0;
}
int createGroup(char* grName, char* fnd)
{
if(grName == NULL || fnd == NULL){errno = EINVAL; return -1;}
int test;
int index;
int mutexIndex;
userNode_t* save;
usersList_t* row;
// Calcolo dell'indice di riga
index = userHash((unsigned char*)fnd);
row = &((usrTable.table)[index]);
// Calcolo dell'indice della lock relativa alla porzione di tabella contenente la riga selezionata
mutexIndex = index / USERS_MUTEX_BLOCK_SIZE;
save = NULL;
WRITE_LOCK((usrTable.blockLocks)[mutexIndex]);
// Selezione dell'utente fondatore
test = getUserNode(row, fnd, &save);
CHECK_FATAL_ERROR(test, "Cercando l'utente nella tabella utenti");
if(save == NULL)
{
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
return USER_NOT_REGISTERED;
}
RW_UNLOCK((usrTable.blockLocks)[mutexIndex]);
// Inserimento del nuovo gruppo
test = insertGroup(grName, fnd);
CHECK_FATAL_ERROR(test, "inserendo il gruppo nella tabella dei gruppi");
return test;
}
int joinUser(char* grName, char* nickName)
{
if(grName == NULL || nickName == NULL){errno = EINVAL; return -1;}
int test;
int grIndex;
int grMutexIndex;
int usrIndex;
int usrMutexIndex;
userNode_t* usrSave;
groupNode_t* grSave;
groupsList_t* grRow;
usersList_t* usrRow;
// Calcolo dell'indice di riga nella tabella utenti
usrIndex = userHash((unsigned char*)nickName);
usrRow = &((usrTable.table)[usrIndex]);
// Calcolo dell'indice della lock relativa alla porzione di tabella contenente la riga selezionata
usrMutexIndex = usrIndex / USERS_MUTEX_BLOCK_SIZE;
usrSave = NULL;
WRITE_LOCK((usrTable.blockLocks)[usrMutexIndex]);
// Selezione dell'utente da associare al gruppo
test = getUserNode(usrRow, nickName, &usrSave);
CHECK_FATAL_ERROR(test, "Cercando l'utente nella tabella utenti");
if(usrSave == NULL)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
return USER_NOT_REGISTERED;
}
// Calcolo dell'indice di riga nella tabella dei gruppi
grIndex = groupHash((unsigned char*)grName);
grRow = &((grTable.table)[grIndex]);
// Calcolo dell'indice della lock relativa alla porzione di tabella dei gruppi contenente la riga selezionata
grMutexIndex = grIndex / GROUPS_MUTEX_BLOCK_SIZE;
grSave = NULL;
WRITE_LOCK((grTable.bloksLocks)[grMutexIndex]);
// Selezione del gruppo al quale si intende effettuare l'associazione
test = getGroupNode(grRow, grName, &grSave);
CHECK_FATAL_ERROR(test, "Cercando il gruppo nella tabella dei gruppi");
if(grSave == NULL)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
return test;
}
// Aggiunta del gruppo al vettore di appartenenza dell'utente
test = association(&(usrSave->user.groups), grName);
CHECK_FATAL_ERROR(test, "Aggiungendo il nome del un gruppo alla lista di appartenenza dell'utente");
if(test != 0)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
return test;
}
// Aggiunta dell'utente alla lista dei membri del gruppo
test = addMember(&(grSave->gr), nickName);
CHECK_FATAL_ERROR(test, "Inserendo l'username nella lista dei membri del gruppo");
if(test < 0)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
errno = EPERM;
return -1;
}
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
return 0;
}
int disjoinUser(char* grName, char* nickName)
{
if(grName == NULL || nickName == NULL){errno = EINVAL; return -1;}
int test;
int grIndex;
int grMutexIndex;
int usrIndex;
int usrMutexIndex;
userNode_t* usrSave;
groupNode_t* grSave;
groupsList_t* grRow;
usersList_t* usrRow;
// Calcolo dell'indice di riga nella tabella utenti
usrIndex = userHash((unsigned char*)nickName);
usrRow = &((usrTable.table)[usrIndex]);
// Calcolo dell'indice della lock relativa alla porzione di tabella contenente la riga selezionata
usrMutexIndex = usrIndex / USERS_MUTEX_BLOCK_SIZE;
usrSave = NULL;
WRITE_LOCK((usrTable.blockLocks)[usrMutexIndex]);
// Selezione dell'utente da dissociare dal gruppo
test = getUserNode(usrRow, nickName, &usrSave);
CHECK_FATAL_ERROR(test, "Cercando l'utente nella tabella utenti");
if(usrSave == NULL)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
return USER_NOT_REGISTERED;
}
// Calcolo dell'indice di riga nella tabella dei gruppi
grIndex = groupHash((unsigned char*)grName);
grRow = &((grTable.table)[grIndex]);
// Calcolo dell'indice della lock relativa alla porzione di tabella dei gruppi contenente la riga selezionata
grMutexIndex = grIndex / GROUPS_MUTEX_BLOCK_SIZE;
grSave = NULL;
WRITE_LOCK((grTable.bloksLocks)[grMutexIndex]);
// Selezione del gruppo dal quale si intende dissociare l'utente
test = getGroupNode(grRow, grName, &grSave);
CHECK_FATAL_ERROR(test, "Cercando il gruppo nella tabella dei gruppi");
if(grSave == NULL)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
return test;
}
// Rimozione del gruppo dal vettore di appartenenza dell'utente
test = dissociation(&(usrSave->user.groups), grName);
CHECK_FATAL_ERROR(test, "Rimuovendo il nome del un gruppo dalla lista di appartenenza dell'utente");
if(test != 0)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
return test;
}
// Rimozione dell'utente dalla lista dei membri del gruppo
test = removeMember(&(grSave->gr), nickName);
CHECK_FATAL_ERROR(test, "Rimuovendo l'username dalla lista dei membri del gruppo");
if(test < 0)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
errno = EPERM;
return -1;
}
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
return 0;
}
int deleteGroup(char* grName, char* applicant)
{
if(grName == NULL || applicant == NULL){errno = EINVAL; return -1;}
int test;
int grIndex;
int grMutexIndex;
int usrIndex;
int usrMutexIndex;
groupNode_t* grSave;
member_t* grIter;
groupsList_t* grRow;
userNode_t* usrSave;
usersList_t* usrRow;
// Calcolo dell'indice di riga nella tabella utenti
usrIndex = userHash((unsigned char*)applicant);
usrRow = &((usrTable.table)[usrIndex]);
// Calcolo dell'indice della lock relativa alla porzione di tabella contenente la riga selezionata
usrMutexIndex = usrIndex / USERS_MUTEX_BLOCK_SIZE;
usrSave = NULL;
WRITE_LOCK((usrTable.blockLocks)[usrMutexIndex]);
// Selezione dell'utente che ha richiesto la cancellazione del gruppo
test = getUserNode(usrRow, applicant, &usrSave);
CHECK_FATAL_ERROR(test, "Selezionando l'utente per dissociarlo dal gruppo");
if(test < 0)
{
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
return USER_NOT_REGISTERED;
}
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
// Calcolo dell'indice di riga nella tabella dei gruppi
grIndex = groupHash((unsigned char*)grName);
grRow = &((grTable.table)[grIndex]);
// Calcolo dell'indice della lock relativa alla porzione di tabella dei gruppi contenente la riga selezionata
grMutexIndex = grIndex / GROUPS_MUTEX_BLOCK_SIZE;
grSave = NULL;
WRITE_LOCK((grTable.bloksLocks)[grMutexIndex]);
// Selezione del gruppo che si intende cancellare
test = getGroupNode(grRow, grName, &grSave);
CHECK_FATAL_ERROR(test, "Selezionando il gruppo da eliminare");
if(grSave == NULL)
{
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
return test;
}
// Si verifica che l'utente che ha richiesto la cancellazione sia il
// fondatore del gruppo che si intende cancellare
if(strcmp(grSave->gr.founder, applicant) != 0)
{
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
return USER_NOT_FOUNDER;
}
// Vengono dissociati dal gruppo tutti i sui membri
// Quindi viene eseguito un ciclo sulla lista dei membri del gruppo
while(grSave->gr.members != NULL)
{
grIter = grSave->gr.members;
// Calcolo dell'indice di riga nella tabella utenti
usrIndex = userHash((unsigned char*)applicant);
usrRow = &((usrTable.table)[usrIndex]);
// Calcolo dell'indice della lock relativa alla porzione di tabella contenente la riga selezionata
usrMutexIndex = usrIndex / USERS_MUTEX_BLOCK_SIZE;
usrSave = NULL;
WRITE_LOCK((usrTable.blockLocks)[usrMutexIndex]);
// Selezione dell'utente da dissociare
test = getUserNode(usrRow, grIter->nickName, &usrSave);
CHECK_FATAL_ERROR(test, "Selezionando l'utente per dissociarlo dal gruppo");
if(test < 0)
{
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
errno = EPERM;
return -1;
}
// Rimozione del gruppo dal vettore di appartenenza dell'utente
test = dissociation(&(usrSave->user.groups), grName);
CHECK_FATAL_ERROR(test, "Rimuovendo il nome del gruppo dalla lista di appartenenza dell'utente");
if(test < 0)
{
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
errno = EPERM;
return -1;
}
RW_UNLOCK((usrTable.blockLocks)[usrMutexIndex]);
// Incremento dell'iteratore
grSave->gr.members = grIter->next;
// Si libera spazio
free(grIter->nickName);
free(grIter);
}
// Si elimina il gruppo dalla lista dei gruppi della tabella grTable
if(grSave->prev != NULL)
grSave->prev->next = grSave->next;
if(grSave->next != NULL)
grSave->next->prev = grSave->prev;
destroyGroup(&(grSave->gr));
free(grSave);
RW_UNLOCK((grTable.bloksLocks)[grMutexIndex]);
return 0;
}
int sendAtUser(message_t* msg, user_t* reciever)
{
if (msg == NULL || reciever == NULL) {errno = EINVAL; return -1;}
int test;
int sock;
int sent = 0;
// Si cicla sulla struttura delivery dell'utente
for (int i = 0; i < reciever->distribution.active; i++)
{
sock = (reciever->distribution.addresses)[i];
WRITE_LOCK((lgTable.strip)[sock].logLock);
// Si verifica la consistenza fra le due struttura
if(!((lgTable.strip)[sock].active) ||
strcmp(reciever->nickName, (lgTable.strip)[sock].username) != 0)
{
errno = EPERM;
return -1;
}
// Si scrive il messaggio sul socket
test = sSendMsg(sock, msg);
CHECK_FATAL_ERROR(test, "Scrivendo il messaggio sul socket associato al destinatario");
if(test < 0)
{
RW_UNLOCK((lgTable.strip)[sock].logLock);
continue;
}
RW_UNLOCK((lgTable.strip)[sock].logLock);
// Si incrementa il contatore di invii
sent++;
}
// Aggiornamento dello storico dei messaggi dell'utente
if(sent > 0)
test = pushMessage(&(reciever->userIncomeHistory), msg, TRUE);
else
test = pushMessage(&(reciever->userIncomeHistory), msg, FALSE);
CHECK_FATAL_ERROR(test, "Inserendo il messaggio nella history del destinatario");
return sent;
}
int sendOk(int client, int bufLen, char* buf)
{
if(client <= 0 || (bufLen > 0 && buf == NULL)){errno = EINVAL; return -1;}
int test;
message_hdr_t header;
// Impostazione dell'intestazione
setHeader(&header, OP_OK, "Chatty");
WRITE_LOCK((lgTable.strip)[client].logLock);
// Si verifica che l'indirizzo sia effettivamente attivo
if(!((lgTable.strip)[client].active))
{
RW_UNLOCK((lgTable.strip)[client].logLock);
errno = EPERM;
return -1;
}
// Invio dell'intestazione
test = sSendHeader(client, &header);
CHECK_FATAL_ERROR(test, "Scrivendo l'header del messaggio sul socket associato al destinatario");
if(test < 0)
{
RW_UNLOCK((lgTable.strip)[client].logLock);
return test;
}
// Si verifica la presenza di una parte dati
if(bufLen > 0)
{
message_data_t data;
// Impostazione della parte dati
setData(&data, "", buf, bufLen);
// Invio della parte dati
test = sSendData(client, &data);
CHECK_FATAL_ERROR(test, "Scrivendo la parte dati del messaggio sul socket associato al destinatario");
if(test < 0)
{
RW_UNLOCK((lgTable.strip)[client].logLock);
return test;
}
}
RW_UNLOCK((lgTable.strip)[client].logLock);
return 0;
}
int sendError(int client, op_t errCode)
{
// Si verifica la correttezza dei parametri e che il codice di errore
// sia conforme a quanto indicato in ops.h
if(client <= 0 ||
(errCode != OP_NICK_ALREADY && errCode != OP_NICK_UNKNOWN &&
errCode != OP_MSG_TOOLONG && errCode != OP_NO_SUCH_FILE &&
errCode != OP_FAIL))
{errno = EINVAL; return -1;}
int test;
message_hdr_t header;
setHeader(&header, errCode, "Chatty");
WRITE_LOCK((lgTable.strip)[client].logLock);
// Si verifica se l'indirizzo è attivo
if(!((lgTable.strip)[client].active))
{// Indirizzo non attivo (quando un client non è riuscito a loggarsi)
RW_UNLOCK((lgTable.strip)[client].logLock);
test = sSendHeader(client, &header);
}
else
{// Indirizzo attivo
test = sSendHeader(client, &header);
RW_UNLOCK((lgTable.strip)[client].logLock);
}
CHECK_FATAL_ERROR(test, "Scrivendo l'header del messaggio sul socket associato al destinatario");
// Aggiornamento della statistica degli errori