-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpsm_test.c
More file actions
1128 lines (1005 loc) · 26 KB
/
psm_test.c
File metadata and controls
1128 lines (1005 loc) · 26 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
/*
** SPDX-License-Identifier: MIT
**
** Copyright (c) 2019 Toshiba Corporation
*/
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <assert.h>
#if defined(_WIN32) || defined(_WIN64)
#define WINDOWS 1
#endif /* defined(_WIN32) || defined(_WIN64) */
#if WINDOWS
#include <Windows.h>
#else /* WINDOWS */
#include <unistd.h>
#include <dlfcn.h>
#include <sys/wait.h>
#endif /* WINDOWS */
#include "psm.h"
static char **g_argv;
static int g_argc;
void (**mspace_malloc_in_lock_hook_)(void);
void (**psm_init_in_lock_hook_)(void);
void (**psm_deinit_in_lock_hook_)(void);
#if WINDOWS
#define RTLD_LAZY (0)
static unsigned int sleep(unsigned int seconds) {
Sleep(seconds * 1000);
return seconds * 1000;
}
void *dlopen(const char *filename, int flag) {
(void)filename;
(void)flag;
HANDLE hDll = GetModuleHandleA("psm_library.dll");
return hDll;
}
int dlclose(void *handle) {
(void)handle;
return 0;
}
void *dlsym(void *handle, char* symbol) {
FARPROC addr = NULL;
addr = GetProcAddress(GetModuleHandle(NULL), symbol);
if (addr == NULL) {
HANDLE hDll = handle;
if (hDll != NULL) {
addr = GetProcAddress(hDll, symbol);
}
}
return (void *)addr;
}
#define TEST_EXPORT __declspec(dllexport)
#else
#define TEST_EXPORT
#endif /* WINDOWS */
TEST_EXPORT int simple(void)
{
int err = 0;
PSMHandle handle;
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
void *pAddress = PSMalloc(handle, 1024);
err = PSMgetError(handle);
printf("Application call PSMgetError to check critical error -> %d\n", err);
if (pAddress == NULL) {
PSMdeinit(handle);
return 1;
}
PSMfree(handle, pAddress);
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int simple30k(void)
{
int err = 0;
PSMHandle handle;
PSMinit("test.psm", 30*1024, 0, &handle);
if (handle != NULL) {
void *pAddress = PSMalloc(handle, 1024);
err = PSMgetError(handle);
printf("Application call PSMgetError to check critical error -> %d\n", err);
if (pAddress == NULL) {
PSMdeinit(handle);
return 1;
}
PSMfree(handle, pAddress);
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int simple_twice(void)
{
int err = 0;
PSMHandle handle;
int i;
for (i=0; i< 2; i++) {
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
void *pAddress = PSMalloc(handle, 1024);
err = PSMgetError(handle);
printf("Application call PSMgetError to check critical error -> %d\n", err);
if (pAddress == NULL) {
PSMdeinit(handle);
return 1;
}
PSMfree(handle, pAddress);
PSMgetError(handle);
PSMdeinit(handle);
}
}
return 0;
}
static void wait_forever(void)
{
while(1);
}
TEST_EXPORT int mallocblock_simple(void)
{
if (mspace_malloc_in_lock_hook_ == NULL) {
printf("not supported\n");
exit(-1);
}
*mspace_malloc_in_lock_hook_ = &wait_forever;
return simple();
}
TEST_EXPORT int initblock_simple(void)
{
if (psm_init_in_lock_hook_ == NULL) {
printf("not supported\n");
exit(-1);
}
*psm_init_in_lock_hook_ = &wait_forever;
return simple();
}
TEST_EXPORT int deinitblock_simple(void)
{
if (psm_deinit_in_lock_hook_ == NULL) {
printf("not supported\n");
exit(-1);
}
*psm_deinit_in_lock_hook_ = &wait_forever;
return simple();
}
static void call_simple(void)
{
simple();
}
TEST_EXPORT int initblock_process_simple(void)
{
if (psm_init_in_lock_hook_ == NULL) {
printf("not supported\n");
exit(-1);
}
*psm_init_in_lock_hook_ = &call_simple;
return simple();
}
TEST_EXPORT int toobigalloc(void)
{
PSMHandle handle;
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
void *pAddress = PSMalloc(handle, 1024*1024);
if (pAddress) {
PSMfree(handle, pAddress);
}
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int toosmallalloc(void)
{
PSMHandle handle;
size_t siz;
for (siz = 64; siz < 1024 * 32; siz+=64) {
PSMinit("test.psm", siz, 0, &handle);
printf("handle %p\n", handle);
if (handle != NULL) {
void *pAddress = PSMalloc(handle, 2);
if (pAddress) {
PSMfree(handle, pAddress);
PSMdeinit(handle);
return 0;
} else {
int err = 0;
err = PSMgetError(handle);
printf("PSMgetError %d\n", err);
}
PSMdeinit(handle);
}
}
return 0;
}
TEST_EXPORT int simple2(void)
{
PSMHandle handle;
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
void *pAddress1 = PSMalloc(handle, 1024);
void *pAddress2 = PSMalloc(handle, 1024);
PSMfree(handle, pAddress2);
PSMfree(handle, pAddress1);
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int initalloc(void)
{
PSMHandle handle;
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
void *pAddress = PSMalloc(handle, 1024);
printf("initalloc allocate %p\n", pAddress);
if (pAddress == NULL) {
int err = 0;
err = PSMgetError(handle);
printf("Application got NULL from malloc and the critical error status is %d\n", err);
return 1;
}
}
return 0;
}
TEST_EXPORT int init_twice(void)
{
PSMHandle handle1, handle2;
PSMinit("test.psm", 1024*1024, 0, &handle1);
PSMinit("test.psm", 1024*1024, 0, &handle2);
if (handle2 == NULL)
printf("second map is failed ... OK\n");
if (handle1 != NULL) {
PSMdeinit(handle1);
}
if (handle2 != NULL) {
PSMdeinit(handle2);
}
return 0;
}
TEST_EXPORT int pshared_handle_test(void)
{
PSMHandle handle1, handle2, handle3;
char *name = "test.psm";
size_t size = 1024*1024;
remove(name);
PSMinit(name, size, NULL, &handle1);
assert(handle1);
PSMinit(name, size, NULL, &handle2);
assert(handle2);
PSMdeinit(handle1);
PSMdeinit(handle2);
PSMinit(name, size, NULL, &handle3);
assert(handle3);
PSMdeinit(handle3);
return 0;
}
TEST_EXPORT int pshared_handle_test2(void)
{
PSMHandle handle1, handle2, handle3;
char *name = "test.psm";
size_t size = 1024*1024;
remove(name);
PSMinit(name, size, NULL, &handle1);
assert(handle1);
PSMinit(name, size, NULL, &handle2);
assert(handle2);
PSMdeinit(handle1);
system("./psm_test_mod initwait &");
sleep(1);
PSMdeinit(handle2);
PSMinit(name, size, NULL, &handle3);
assert(handle3);
PSMdeinit(handle3);
return 0;
}
TEST_EXPORT int init_three(void)
{
PSMHandle handle1, handle2, handle3;
PSMinit("test1.psm", PSM_AUTO_ADDR_UNIT - 1, 0, &handle1); /* 1 slot */
printf("test1.psm %p\n", handle1);
PSMinit("test2.psm", PSM_AUTO_ADDR_UNIT + 1, 0, &handle2); /* 2 slots */
printf("test2.psm %p\n", handle2);
PSMinit("test3.psm", PSM_AUTO_ADDR_UNIT, 0, &handle3); /* 1 slot */
printf("test3.psm %p\n", handle3);
if (handle1 != NULL) {
PSMdeinit(handle1);
}
if (handle2 != NULL) {
PSMdeinit(handle2);
}
if (handle3 != NULL) {
PSMdeinit(handle3);
}
return 0;
}
TEST_EXPORT int init_three2(void)
{
size_t siz = 1024 * 1024;
PSMHandle handle1, handle2, handle3;
PSMinit("test1.psm", siz, 0, &handle1);
printf("test1.psm %p\n", handle1);
PSMinit("test1.psm", siz, 0, &handle2);
printf("test1.psm %p\n", handle2);
if (handle2 != NULL) {
PSMdeinit(handle2);
}
PSMinit("test1.psm", siz, 0, &handle3);
printf("test1.psm %p\n", handle3);
if (handle1 != NULL) {
PSMdeinit(handle1);
}
if (handle3 != NULL) {
PSMdeinit(handle3);
}
return 0;
}
TEST_EXPORT int simple_sleep(void)
{
PSMHandle handle;
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
void *pAddress = PSMalloc(handle, 1024);
sleep(10);
PSMfree(handle, pAddress);
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int initfree(void)
{
PSMHandle handle;
int i;
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
uintptr_t adr = (uintptr_t)strtoll(g_argv[2], NULL, 16);
void *pAddress = (void *)adr;
printf("address %p\n", pAddress);
printf("%p: %x\n", pAddress, *(uint32_t*)pAddress);
unsigned char *getUser = (unsigned char *)PSMgetUser(handle);
printf("getUser address %p\n", getUser);
for (i=0;i<PSM_USER_SIZE;i++) {
printf("%02x", getUser[i]);
if (i==(PSM_USER_SIZE-1)) printf("\n");
}
fflush(stdout);
PSMfree(handle, pAddress);
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int initallocwait(void)
{
PSMHandle handle;
int i;
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
void *pAddress = PSMalloc(handle, 1024);
printf("address %p\n", pAddress);
*(uint32_t*)pAddress = (uint32_t)time(NULL);
printf("%p: %x\n", pAddress, *(uint32_t*)pAddress);
unsigned char *getUser = (unsigned char *)PSMgetUser(handle);
printf("getUser address %p\n", getUser);
for (i=0;i<PSM_USER_SIZE;i++) {
getUser[i] = i;
printf("%02x", getUser[i]);
if (i==(PSM_USER_SIZE-1)) printf("\n");
}
fflush(stdout);
wait_forever();
PSMfree(handle, pAddress);
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int initwait(void)
{
PSMHandle handle;
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
wait_forever();
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int fullalloc(void)
{
PSMHandle handle;
const size_t all_size = 1024*1024;
PSMinit("test.psm", all_size, 0, &handle);
if (handle != NULL) {
int i;
int err;
void *pAddresses[10];
size_t total = 0;
const size_t alloc_size = 1024*105;
for (i=0; i<10; i++) {
pAddresses[i] = PSMalloc(handle, alloc_size);
if (pAddresses[i] != NULL)
total += alloc_size;
err = PSMgetError(handle);
printf("%d: %zu/%zu bytes, %.01f %%, PSMalloc = %p, err = %d\n",
i, total, all_size, (total*100.f/all_size), pAddresses[i], err);
}
for (i=0; i<10; i++) {
if (pAddresses[i] != NULL) {
PSMfree(handle, pAddresses[i]);
}
}
}
PSMdeinit(handle);
return 0;
}
TEST_EXPORT int initnameNULL(void)
{
PSMHandle handle;
printf("call PSMinit(NULL, 1024*1024, 0, &handle)\n");
PSMinit(NULL, 1024*1024, 0, &handle);
printf("handle should be NULL: %p\n", handle);
return 0;
}
TEST_EXPORT int initnameEmpty(void)
{
PSMHandle handle;
printf("call PSMinit("", 1024*1024, 0, &handle)\n");
PSMinit("", 1024*1024, 0, &handle);
printf("handle should be NULL: %p\n", handle);
return 0;
}
TEST_EXPORT int initlongname(void)
{
PSMHandle handle;
size_t name_len = (size_t)strtoll(g_argv[2], NULL, 10);
char *name = malloc(name_len);
if (name == NULL) {
printf("malloc failed\n");
return 1;
}
printf("name length %zu (including null termination)\n", name_len);
if (name_len == 0) {
printf("name length should be larger than or equal to 1\n");
return 1;
}
memset(name, 'x', name_len);
name[name_len-1] = '\0';
printf("call PSMinit('x' x %zu + '\\0', 1024*1024, 0, &handle)\n", name_len-1);
PSMinit(name, 1024*1024, 0, &handle);
free(name);
if (handle != NULL) {
int err;
void *pAddress = PSMalloc(handle, 1024);
err = PSMgetError(handle);
if (err) {
printf("PSMgetError %d\n", err);
}
if (pAddress != NULL) {
PSMfree(handle, pAddress);
}
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int initreqaddr(void)
{
PSMHandle handle;
uintptr_t adr = (uintptr_t)strtoll(g_argv[2], NULL, 16);
void *pAddress = (void *)adr;
printf("map request address = %p\n", pAddress);
PSMinit("test.psm", 1024*1024, pAddress, &handle);
if (handle != NULL) {
int err;
void *pAddress = PSMalloc(handle, 1024);
err = PSMgetError(handle);
if (err) {
printf("PSMgetError %d\n", err);
}
if (pAddress != NULL) {
PSMfree(handle, pAddress);
}
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int inheritnullhandle(void)
{
PSMprepareInherit(NULL);
PSMexecuteInherit(NULL);
PSMcancelInherit(NULL);
return 0;
}
TEST_EXPORT int initnullhandle(void)
{
PSMinit("test.psm", 1024*1024, 0, NULL);
return 0;
}
TEST_EXPORT int deinitnullhandle(void)
{
PSMdeinit(NULL);
return 0;
}
TEST_EXPORT int allocnullhandle(void)
{
PSMalloc(NULL, 10);
return 0;
}
TEST_EXPORT int freenullhandle(void)
{
PSMHandle handle;
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
int err;
void *pAddress = PSMalloc(handle, 1024);
err = PSMgetError(handle);
if (err) {
printf("PSMgetError %d\n", err);
return 1;
}
if (pAddress != NULL) {
PSMfree(NULL, pAddress);
}
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int freenulladdress(void)
{
PSMHandle handle;
PSMinit("test.psm", 1024*1024, 0, &handle);
if (handle != NULL) {
int err;
void *pAddress = PSMalloc(handle, 1024);
err = PSMgetError(handle);
if (err) {
printf("PSMgetError %d\n", err);
}
if (pAddress != NULL) {
PSMfree(handle, NULL);
}
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int geterrornullhandle(void)
{
int err = PSMgetError(NULL);
printf("PSMgetError %d\n", err);
return 0;
}
TEST_EXPORT int allocSize(void)
{
PSMHandle handle;
const size_t init_size = 1024*1024;
PSMinit("test.psm", init_size, 0, &handle);
if (handle != NULL) {
int err;
size_t size = 0;
for (size = 0; size < init_size; size++) {
void *pAddress = PSMalloc(handle, size);
err = PSMgetError(handle);
printf("size %zu: address %p, err %d\n", size, pAddress, err);
if (err) {
printf("PSMgetError %d\n", err);
}
if (pAddress != NULL) {
PSMfree(handle, pAddress);
}
}
PSMdeinit(handle);
}
return 0;
}
TEST_EXPORT int htrun(void)
{
PSMPlatformFunctionsType *pf = &PSMPlatformFunctions;
PSMHandle handle;
const size_t obSize = 4 * 1024;
const size_t init_size = 1024 * 1024;
const double test_duration = 10 * 60; /* 30 minutes */
const int obEntries = 10;
PSMHandle obHandle;
int writer = 0;
int seq = 0;
time_t prev_t;
time_t start_t;
if (g_argc > 2 && strncmp(g_argv[2], "first", 6) == 0) {
obHandle = (PSMHandle)malloc(sizeof(struct PSMHandleTag));
if (obHandle == NULL) {
printf("cannot allocate PSMHandle\n");
return 0;
}
pf->resetPSMHandle(obHandle);
if (pf->openPSM(obHandle, "ht.psm")) return 0;
if (pf->emptyPSMFile(obHandle)) return 0;
if (pf->preparePSMFile(obHandle, obSize)) return 0;
if (pf->mapPSM(obHandle, obSize, NULL)) return 0;
printf("Outband shared address %p (initiator)\n", obHandle->pMap);
printf("Outband entries %d\n", obEntries);
memset(obHandle->pMap, 0, obSize);
writer = 1;
} else {
obHandle = (PSMHandle)malloc(sizeof(struct PSMHandleTag));
if (obHandle == NULL) {
printf("cannot allocate PSMHandle\n");
return 0;
}
pf->resetPSMHandle(obHandle);
if (pf->openPSM(obHandle, "ht.psm")) return 0;
if (pf->mapPSM(obHandle, obSize, NULL)) return 0;
printf("Outband shared address %p\n", obHandle->pMap);
printf("Outband entries %d\n", obEntries);
}
PSMinit("test.psm", init_size, 0, &handle);
if (handle == NULL) return 0;
prev_t = time(NULL);
start_t = prev_t;
while (1) {
int i;
time_t t;
int update = 0;
for (i = 0; i < obEntries; i++) {
size_t size;
void *pAddress;
pAddress = (void *)*(intptr_t *)((char *)obHandle->pMap + i * sizeof(void *));
if (writer == 1) {
if (pAddress == NULL) {
size = (rand() % ((init_size - 12 * 1024) / obEntries)) + 1;
pAddress = PSMalloc(handle, size);
*(intptr_t *)((char *)obHandle->pMap + i * sizeof(void *)) = (intptr_t)pAddress;
printf("entry(%d) alloc %p\n", i, pAddress);
update++;
}
} else {
if (pAddress != NULL) {
PSMfree(handle, pAddress);
*(intptr_t *)((char *)obHandle->pMap + i * sizeof(void *)) = (intptr_t)NULL;
printf("entry(%d) free %p\n", i, pAddress);
update++;
if ((seq % 100) == 99) {
printf("deinit / init (writer)\n");
PSMdeinit(handle);
PSMinit("test.psm", init_size, 0, &handle);
if (handle == NULL) return 0;
}
}
}
}
t = time(NULL);
if (update) {
seq++;
printf("%s iterate end (%s)\n", asctime(localtime(&t)), writer == 1 ? "writer" : "reader");
prev_t = t;
}
if (difftime(t, prev_t) > 10.0) {
printf("******* %s stall over 10 seconds (%s)\n", asctime(localtime(&t)), writer == 1 ? "writer" : "reader");
prev_t = t;
}
if (difftime(t, start_t) > test_duration) {
printf("%s test duration is over (%s)\n", asctime(localtime(&t)), writer == 1 ? "writer" : "reader");
break;
}
}
PSMdeinit(handle);
pf->unmapPSM(obHandle);
pf->closePSM(obHandle);
free(obHandle);
return 0;
}
#if !WINDOWS
TEST_EXPORT int forktest1()
{
/* inherit test before parent deinit */
pid_t pid;
PSMHandle psmHandle = NULL;
PSMinit("test_inherit.psm", 1024 * 1024, NULL, &psmHandle);
PSMprepareInherit(psmHandle);
if ((pid = fork()) == 0){
void *ptr;
printf("This is child process %d.\n", getpid());
if (!PSMexecuteInherit(psmHandle)) {
printf("PSMexecuteInherit failed\n");
exit(1);
}
ptr = PSMalloc(psmHandle, 1000);
PSMfree(psmHandle, ptr);
PSMgetError(psmHandle);
PSMgetUser(psmHandle);
PSMdeinit(psmHandle);
}else{
int status;
void *ptr;
sleep(1);
printf("This is parent process %d.\n", getpid());
ptr = PSMalloc(psmHandle, 1000);
PSMfree(psmHandle, ptr);
PSMgetError(psmHandle);
PSMgetUser(psmHandle);
PSMdeinit(psmHandle);
waitpid(pid, &status, WUNTRACED | WCONTINUED);
}
return 0;
}
TEST_EXPORT int forktest2()
{
/* inherit test after parent deinit */
pid_t pid;
PSMHandle psmHandle = NULL;
PSMinit("test_inherit.psm", 1024 * 1024, NULL, &psmHandle);
PSMprepareInherit(psmHandle);
if ((pid = fork()) == 0){
void *ptr;
printf("This is child process %d.\n", getpid());
sleep(1);
if (!PSMexecuteInherit(psmHandle)) {
printf("PSMexecuteInherit failed\n");
exit(1);
}
ptr = PSMalloc(psmHandle, 1000);
PSMfree(psmHandle, ptr);
PSMgetError(psmHandle);
PSMgetUser(psmHandle);
PSMdeinit(psmHandle);
}else{
int status;
printf("This is parent process %d.\n", getpid());
PSMdeinit(psmHandle);
waitpid(pid, &status, WUNTRACED | WCONTINUED);
}
return 0;
}
TEST_EXPORT int forktest3()
{
/* inherit test the case of immediate deinit after fork */
pid_t pid;
PSMHandle psmHandle = NULL;
PSMinit("test_inherit.psm", 1024 * 1024, NULL, &psmHandle);
PSMprepareInherit(psmHandle);
if ((pid = fork()) == 0){
printf("This is child process %d.\n", getpid());
if (!PSMexecuteInherit(psmHandle)) {
printf("PSMexecuteInherit failed\n");
exit(1);
}
PSMdeinit(psmHandle);
}else{
int status;
printf("This is parent process %d.\n", getpid());
PSMdeinit(psmHandle);
waitpid(pid, &status, WUNTRACED | WCONTINUED);
}
return 0;
}
TEST_EXPORT int forktest4()
{
/* inherit test for multiple inherits */
pid_t pid, pid2;
PSMHandle psmHandle = NULL;
PSMinit("test_inherit.psm", 1024 * 1024, NULL, &psmHandle);
PSMprepareInherit(psmHandle);
PSMprepareInherit(psmHandle);
if ((pid = fork()) == 0){
printf("This is child process %d.\n", getpid());
if (!PSMexecuteInherit(psmHandle)) {
printf("PSMexecuteInherit failed\n");
exit(1);
}
PSMprepareInherit(psmHandle);
if ((pid = fork()) == 0){
printf("This is grand child process %d.\n", getpid());
if (!PSMexecuteInherit(psmHandle)) {
printf("PSMexecuteInherit failed\n");
exit(1);
}
PSMdeinit(psmHandle);
} else {
int status;
printf("This is child process %d.\n", getpid());
PSMdeinit(psmHandle);
waitpid(pid, &status, WUNTRACED | WCONTINUED);
}
} else {
int status;
printf("This is parent process %d.\n", getpid());
if ((pid2 = fork()) == 0){
printf("This is child process %d.\n", getpid());
if (!PSMexecuteInherit(psmHandle)) {
printf("PSMexecuteInherit failed\n");
exit(1);
}
PSMdeinit(psmHandle);
} else {
PSMdeinit(psmHandle);
waitpid(pid2, &status, WUNTRACED | WCONTINUED);
waitpid(pid, &status, WUNTRACED | WCONTINUED);
}
}
return 0;
}
TEST_EXPORT int forktest5()
{
/* inherit test for simple cancel */
PSMHandle psmHandle = NULL;
PSMinit("test_inherit.psm", 1024 * 1024, NULL, &psmHandle);
PSMprepareInherit(psmHandle);
PSMcancelInherit(psmHandle);
PSMdeinit(psmHandle);
return 0;
}
TEST_EXPORT int forktest6()
{
/* inherit test case of cancel after fork (for fork error usecase) */
pid_t pid;
PSMHandle psmHandle = NULL;
PSMinit("test_inherit.psm", 1024 * 1024, NULL, &psmHandle);
PSMprepareInherit(psmHandle);
if ((pid = fork()) == 0){
printf("This is child process %d.\n", getpid());
printf("This child have memory leaks, but please ignore.\n");
exit(0);
}else{
int status;
printf("This is parent process %d.\n", getpid());
PSMcancelInherit(psmHandle);
PSMdeinit(psmHandle);
waitpid(pid, &status, WUNTRACED | WCONTINUED);
}
return 0;
}
TEST_EXPORT int forktest7()
{
/* inherit test where memory is allocated and parent frees it. */
pid_t pid;
PSMHandle psmHandle = NULL;
void *ptr;
PSMinit("test_inherit.psm", 1024 * 1024, NULL, &psmHandle);
ptr = PSMalloc(psmHandle, 1000);
PSMprepareInherit(psmHandle);
if ((pid = fork()) == 0){
printf("This is child process %d.\n", getpid());
if (!PSMexecuteInherit(psmHandle)) {
printf("PSMexecuteInherit failed\n");
exit(1);
}
ptr = PSMalloc(psmHandle, 1000);
PSMfree(psmHandle, ptr);
PSMgetError(psmHandle);
PSMgetUser(psmHandle);
PSMdeinit(psmHandle);
}else{
int status;
printf("This is parent process %d.\n", getpid());
PSMfree(psmHandle, ptr);
PSMgetError(psmHandle);
PSMgetUser(psmHandle);
PSMdeinit(psmHandle);
waitpid(pid, &status, WUNTRACED | WCONTINUED);
}
return 0;
}
TEST_EXPORT int forktest8()
{
/* inherit test where memory is allocated and child frees it. */
pid_t pid;
PSMHandle psmHandle = NULL;
void *ptr;
PSMinit("test_inherit.psm", 1024 * 1024, NULL, &psmHandle);
ptr = PSMalloc(psmHandle, 1000);
PSMprepareInherit(psmHandle);
if ((pid = fork()) == 0){
printf("This is child process %d.\n", getpid());
if (!PSMexecuteInherit(psmHandle)) {
printf("PSMexecuteInherit failed\n");
exit(1);
}
PSMfree(psmHandle, ptr);
PSMgetError(psmHandle);
PSMgetUser(psmHandle);
PSMdeinit(psmHandle);
}else{
int status;
printf("This is parent process %d.\n", getpid());
ptr = PSMalloc(psmHandle, 1000);
PSMfree(psmHandle, ptr);
PSMgetError(psmHandle);
PSMgetUser(psmHandle);
PSMdeinit(psmHandle);
waitpid(pid, &status, WUNTRACED | WCONTINUED);
}
return 0;
}
TEST_EXPORT int forktest9()