-
Notifications
You must be signed in to change notification settings - Fork 7
/
shim.c
1010 lines (912 loc) · 18.7 KB
/
shim.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
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
/*
* Copyright (C) 2014-2018 Canonical, Ltd.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* This code is a complete clean re-write of the stress tool by
* Colin Ian King <colin.king@canonical.com> and attempts to be
* backwardly compatible with the stress tool by Amos Waterland
* <apw@rossby.metr.ou.edu> but has more stress tests and more
* functionality.
*
*/
#include "stress-ng.h"
#include <pwd.h>
#if defined(__linux__) && defined(__NR_futex)
#include <linux/futex.h>
#endif
/*
* Various shim abstraction wrappers around systems calls and
* GCC helper functions that may not be supported by some
* kernels or versions of different C libraries.
*/
/*
* shim_sched_yield()
* wrapper for sched_yield(2) - yield the processor
*/
int shim_sched_yield(void)
{
#if defined(_POSIX_PRIORITY_SCHEDULING) && !defined(__minix__)
return sched_yield();
#else
return 0;
#endif
}
/*
* shim_cacheflush()
* wrapper for cacheflush(2), flush contents of
* instruction and/or data cache
*/
int shim_cacheflush(char *addr, int nbytes, int cache)
{
#if defined(__linux__) && defined(__NR_cacheflush)
return (int)syscall(__NR_cacheflush, addr, nbytes, cache);
#else
(void)addr;
(void)nbytes;
(void)cache;
errno = -ENOSYS;
return -1;
#endif
}
/*
* shim_copy_file_range()
* wrapper for copy_file_range(2), copy range of data
* from one file to another
*/
ssize_t shim_copy_file_range(
int fd_in,
shim_loff_t *off_in,
int fd_out,
shim_loff_t *off_out,
size_t len,
unsigned int flags)
{
#if defined(__linux__) && defined(__NR_copy_file_range)
return syscall(__NR_copy_file_range,
fd_in, off_in, fd_out, off_out, len, flags);
#else
(void)fd_in;
(void)off_in;
(void)fd_out;
(void)off_out;
(void)len;
(void)flags;
errno = -ENOSYS;
return -1;
#endif
}
/*
* shim_emulate_fallocate()
* emulate fallocate (very slow!)
*/
static int shim_emulate_fallocate(int fd, off_t offset, off_t len)
{
const off_t buf_sz = 65536;
char buffer[buf_sz];
off_t n;
n = lseek(fd, offset, SEEK_SET);
if (n == (off_t)-1)
return -1;
(void)memset(buffer, 0, buf_sz);
n = len;
while (g_keep_stressing_flag && (n > 0)) {
ssize_t ret;
size_t count = (size_t)STRESS_MINIMUM(n, buf_sz);
ret = write(fd, buffer, count);
if (ret >= 0) {
n -= ret;
} else {
return -1;
}
}
return 0;
}
/*
* shim_fallocate()
* shim wrapper for fallocate system call
* - falls back to posix_fallocate w/o mode
* - falls back to direct writes
*/
int shim_fallocate(int fd, int mode, off_t offset, off_t len)
{
#if defined(__linux__) && defined(__NR_fallocate)
int ret;
ret = fallocate(fd, mode, offset, len);
/* mode not supported? try with zero mode (dirty hack) */
if ((ret < 0) && (errno == EOPNOTSUPP)) {
ret = fallocate(fd, 0, offset, len);
/* fallocate failed, try emulation mode */
if ((ret < 0) && (errno == EOPNOTSUPP)) {
ret = shim_emulate_fallocate(fd, offset, len);
}
}
return ret;
#elif _POSIX_C_SOURCE >= 200112L
int ret;
(void)mode;
ret = posix_fallocate(fd, offset, len);
if ((ret < 0) && (errno == ENOSYS))
ret = shim_emulate_fallocate(fd, offset, len);
return ret;
#else
(void)mode;
return shim_emulate_fallocate(fd, offset, len);
#endif
}
/*
* shim_gettid()
* wrapper for gettid(2), get thread identification
*/
int shim_gettid(void)
{
#if defined(__linux__) && defined(__NR_gettid)
return syscall(__NR_gettid);
#else
errno = -ENOSYS;
return -1;
#endif
}
/*
* shim_getcpu()
* wrapper for getcpu(2) - get CPU and NUMA node of
* calling thread
*/
long shim_getcpu(
unsigned *cpu,
unsigned *node,
void *tcache)
{
#if defined(__linux__) && defined(__NR_getcpu)
return syscall(__NR_getcpu, cpu, node, tcache);
#else
(void)cpu;
(void)node;
(void)tcache;
errno = -ENOSYS;
return -1;
#endif
}
/*
* shim_getdents()
* wrapper for getdents(2) - get directory entries
*/
int shim_getdents(
unsigned int fd,
struct shim_linux_dirent *dirp,
unsigned int count)
{
#if defined(__linux__) && defined(__NR_getdents)
return syscall(__NR_getdents, fd, dirp, count);
#else
(void)fd;
(void)dirp;
(void)count;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_getdent64()
* wrapper for getdents64(2) - get directory entries
*/
int shim_getdents64(
unsigned int fd,
struct shim_linux_dirent64 *dirp,
unsigned int count)
{
#if defined(__linux__) && defined(__NR_getdents64)
return syscall(__NR_getdents64, fd, dirp, count);
#else
(void)fd;
(void)dirp;
(void)count;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_getrandom()
* wrapper for Linux getrandom(2) and BSD getentropy(2)
*/
int shim_getrandom(void *buff, size_t buflen, unsigned int flags)
{
#if defined(__linux__) && defined(__NR_getrandom)
return syscall(__NR_getrandom, buff, buflen, flags);
#elif defined(__OpenBSD__) || defined(__APPLE__)
(void)flags;
return getentropy(buff, buflen);
#else
(void)buff;
(void)buflen;
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_clear_cache()
* wrapper for ARM GNUC clear cache intrinsic
*/
void shim_clear_cache(char* begin, char *end)
{
#if defined(__GNUC__) && defined(STRESS_ARM)
__clear_cache(begin, end);
#else
(void)begin;
(void)end;
#endif
}
/*
* shim_kcmp()
* wrapper for Linux kcmp(2) - compre two processes to
* see if they share a kernel resource.
*/
long shim_kcmp(pid_t pid1, pid_t pid2, int type, unsigned long idx1, unsigned long idx2)
{
#if defined(__linux__) && defined(__NR_kcmp)
errno = 0;
return syscall(__NR_kcmp, pid1, pid2, type, idx1, idx2);
#else
(void)pid1;
(void)pid2;
(void)type;
(void)idx1;
(void)idx2;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_syslog()
* wrapper for syslog(2) (NOT syslog(3))
*/
int shim_syslog(int type, char *bufp, int len)
{
#if defined(__linux__) && defined(__NR_syslog)
return syscall(__NR_syslog, type, bufp, len);
#else
(void)type;
(void)bufp;
(void)len;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_membarrier()
* wrapper for membarrier(2) - issue memory barriers
*/
int shim_membarrier(int cmd, int flags)
{
#if defined(__linux__) && defined(__NR_membarrier)
return syscall(__NR_membarrier, cmd, flags);
#else
(void)cmd;
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_memfd_create()
* wrapper for memfd_create(2)
*/
int shim_memfd_create(const char *name, unsigned int flags)
{
#if defined(__linux__) && defined(__NR_memfd_create)
return syscall(__NR_memfd_create, name, flags);
#else
(void)name;
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_get_mempolicy()
* wrapper for get_mempolicy(2) - get NUMA memory policy
*/
int shim_get_mempolicy(
int *mode,
unsigned long *nodemask,
unsigned long maxnode,
unsigned long addr,
unsigned long flags)
{
#if defined(__linux__) && defined(__NR_get_mempolicy)
return syscall(__NR_get_mempolicy,
mode, nodemask, maxnode, addr, flags);
#else
(void)mode;
(void)nodemask;
(void)maxnode;
(void)addr;
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_set_mempolicy()
* wrapper for set_mempolicy(2) - set NUMA memory policy
*/
int shim_set_mempolicy(
int mode,
unsigned long *nodemask,
unsigned long maxnode)
{
#if defined(__linux__) && defined(__NR_set_mempolicy)
return syscall(__NR_set_mempolicy,
mode, nodemask, maxnode);
#else
(void)mode;
(void)nodemask;
(void)maxnode;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_mbind()
* wrapper for mbind(2) - set memory policy for a memory range
*/
long shim_mbind(
void *addr,
unsigned long len,
int mode,
const unsigned long *nodemask,
unsigned long maxnode,
unsigned flags)
{
#if defined(__linux__) && defined(__NR_mbind)
return syscall(__NR_mbind,
addr, len, mode, nodemask, maxnode, flags);
#else
(void)addr;
(void)len;
(void)mode;
(void)nodemask;
(void)maxnode;
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_migrate_pages()
* wrapper for migrate_pages(2) - move all pages in a process to other nodes
*/
long shim_migrate_pages(
int pid,
unsigned long maxnode,
const unsigned long *old_nodes,
const unsigned long *new_nodes)
{
#if defined(__linux__) && defined(__NR_migrate_pages)
return syscall(__NR_migrate_pages,
pid, maxnode, old_nodes, new_nodes);
#else
(void)pid;
(void)maxnode;
(void)old_nodes;
(void)new_nodes;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_move_pages()
* wrapper for move_pages(2) - move pages in a process to other nodes
*/
long shim_move_pages(
int pid,
unsigned long count,
void **pages,
const int *nodes,
int *status,
int flags)
{
#if defined(__linux__) && defined(__NR_move_pages)
return syscall(__NR_move_pages,
pid, count, pages, nodes,
status, flags);
#else
(void)pid;
(void)count;
(void)pages;
(void)nodes;
(void)status;
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_userfaultfd()
* wrapper for userfaultfd(2)
*/
int shim_userfaultfd(int flags)
{
#if defined(__linux__) && defined(__NR_userfaultfd)
return syscall(__NR_userfaultfd, flags);
#else
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_seccomp()
* wrapper for seccomp(2) - operate on Secure Computing state of process
*/
int shim_seccomp(unsigned int operation, unsigned int flags, void *args)
{
#if defined(__linux__) && defined(__NR_seccomp)
return (int)syscall(__NR_seccomp, operation, flags, args);
#else
(void)operation;
(void)flags;
(void)args;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_unshare()
* wrapper for unshare(2)
*/
int shim_unshare(int flags)
{
#if defined(__linux__) && defined(__NR_unshare)
#if NEED_GLIBC(2,14,0)
return unshare(flags);
#else
return syscall(__NR_unshare, flags);
#endif
#else
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_shed_getattr()
* wrapper for shed_getattr(2)
*/
int shim_sched_getattr(
pid_t pid,
struct shim_sched_attr *attr,
unsigned int size,
unsigned int flags)
{
#if defined(__linux__) && defined(__NR_sched_getattr)
return syscall(__NR_sched_getattr, pid, attr, size, flags);
#else
(void)pid;
(void)attr;
(void)size;
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_shed_setattr()
* wrapper for shed_setattr(2)
*/
int shim_sched_setattr(
pid_t pid,
struct shim_sched_attr *attr,
unsigned int flags)
{
#if defined(__linux__) && defined(__NR_sched_setattr)
return syscall(__NR_sched_setattr, pid, attr, flags);
#else
(void)pid;
(void)attr;
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_mlock2()
* wrapper for mlock2(2) - lock memory
*/
int shim_mlock2(const void *addr, size_t len, int flags)
{
#if defined(__linux__) && defined(__NR_mlock2)
return (int)syscall(__NR_mlock2, addr, len, flags);
#else
(void)addr;
(void)len;
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_mlockall()
* wrapper for mlockall() - lock all memmory
*/
int shim_mlockall(int flags)
{
#if defined(HAVE_MLOCKALL)
return mlockall(flags);
#else
(void)flags;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_munlockall()
* wrapper for munlockall() - unlock all memmory
*/
int shim_munlockall(void)
{
/* if HAVE_MLOCKALL defined we also have munlockall */
#if defined(HAVE_MLOCKALL)
return munlockall();
#else
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_usleep()
* usleep is now deprecated, so
* emulate it with nanosleep
*/
int shim_usleep(uint64_t usec)
{
#if _POSIX_C_SOURCE >= 199309L
struct timespec t, trem;
t.tv_sec = usec / 1000000;
t.tv_nsec = (usec - (t.tv_sec * 1000000)) * 1000;
for (;;) {
errno = 0;
if (nanosleep(&t, &trem) < 0) {
if (errno == EINTR) {
t = trem;
if (g_keep_stressing_flag)
continue;
} else {
return -1;
}
}
break;
}
return 0;
#else
return usleep((useconds_t)usec);
#endif
}
/*
* shim_getlogin
* a more secure abstracted version of getlogin
*
* According to flawfinder:
* "It's often easy to fool getlogin. Sometimes it does not work at all,
* because some program messed up the utmp file. Often, it gives only the
* first 8 characters of the login name. The user currently logged in on the
* controlling tty of our program need not be the user who started it. Avoid
* getlogin() for security-related purposes (CWE-807). Use getpwuid(geteuid())
* and extract the desired information instead."
*/
char *shim_getlogin(void)
{
#if defined(BUILD_STATIC)
/*
* static builds can't use getpwuid because of
* dynamic linking issues. Ugh.
*/
return NULL;
#else
static char pw_name[256];
struct passwd *pw;
pw = getpwuid(geteuid());
if (!pw)
return NULL;
strncpy(pw_name, pw->pw_name, sizeof(pw_name));
pw_name[sizeof(pw_name) - 1 ] = '\0';
return pw_name;
#endif
}
/*
* shim_msync()
* wrapper for msync(2) - synchronize a file with a memory map
*/
int shim_msync(void *addr, size_t length, int flags)
{
#if defined(HAVE_MSYNC)
return msync(addr, length, flags);
#else
(void)addr;
(void)length;
(void)flags;
return 0;
#endif
}
/*
* shim_sysfs()
* wrapper for sysfs(2) - get filesystem type information
*/
int shim_sysfs(int option, ...)
{
#if defined(__linux__) && defined(__NR_sysfs)
int ret;
va_list ap;
char *fsname;
unsigned int fs_index;
char *buf;
va_start(ap, option);
switch (option) {
case 1:
fsname = va_arg(ap, char *);
ret = syscall(__NR_sysfs, option, fsname);
break;
case 2:
fs_index = va_arg(ap, unsigned int);
buf = va_arg(ap, char *);
ret = syscall(__NR_sysfs, option, fs_index, buf);
break;
case 3:
ret = syscall(__NR_sysfs, option);
break;
default:
ret = -1;
errno = EINVAL;
}
va_end(ap);
return ret;
#else
(void)option;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_madvise()
* wrapper for madvise(2) - get filesystem type information
*/
int shim_madvise(void *addr, size_t length, int advice)
{
#if defined(HAVE_MADVISE)
return madvise(addr, length, advice);
#elif (_POSIX_C_SOURCE >= 200112L)
int posix_advice;
switch (advice) {
#if defined(POSIX_MADV_NORMAL) && defined(MADV_NORMAL)
case MADV_NORMAL:
posix_advice = POSIX_MADV_NORMAL;
break;
#endif
#if defined(POSIX_MADV_SEQUENTIAL) && defined(MADV_SEQUENTIAL)
case MADV_SEQUENTIAL:
posix_advice = POSIX_MADV_SEQUENTIAL;
break;
#endif
#if defined(POSIX_MADV_RANDOM) && defined(MADV_RANDOM)
case MADV_RANDOM:
posix_advice = POSIX_MADV_RANDOM;
break;
#endif
#if defined(POSIX_MADV_WILLNEED) && defined(MADV_WILLNEED)
case MADV_WILLNEED:
posix_advice = POSIX_MADV_WILLNEED;
break;
#endif
#if defined(POSIX_MADV_DONTNEED) && defined(MADV_DONTNEED)
case MADV_DONTNEED:
posix_advice = POSIX_MADV_DONTNEED;
break;
#endif
default:
posix_advice = POSIX_MADV_NORMAL;
break;
}
return posix_madvise(addr, length, posix_advice);
#else
(void)addr;
(void)length;
(void)advice;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_mincore()
* wrapper for mincore(2) - determine whether pages are resident in memory
*/
int shim_mincore(void *addr, size_t length, unsigned char *vec)
{
#if defined(HAVE_MINCORE) && NEED_GLIBC(2,2,0)
#if defined(__FreeBSD__) || defined(__OpenBSD__) || \
defined(__NetBSD__) || defined(__sun__)
return mincore(addr, length, (char *)vec);
#else
return mincore(addr, length, vec);
#endif
#else
(void)addr;
(void)length;
(void)vec;
errno = ENOSYS;
return -1;
#endif
}
ssize_t shim_statx(
int dfd,
const char *filename,
unsigned int flags,
unsigned int mask,
struct shim_statx *buffer)
{
#if defined(__linux__) && defined(__NR_statx)
return syscall(__NR_statx, dfd, filename, flags, mask, buffer);
#else
(void)dfd;
(void)filename;
(void)flags;
(void)mask;
(void)buffer;
errno = ENOSYS;
return -1;
#endif
}
/*
* futex wake()
* wake n waiters on futex
*/
#if defined(__linux__) && defined(__NR_futex)
int shim_futex_wake(const void *futex, const int n)
{
return syscall(__NR_futex, futex, FUTEX_WAKE, n, NULL, NULL, 0);
}
#else
int shim_futex_wake(const void *futex, const int n)
{
(void)futex;
(void)n;
errno = -ENOSYS;
return -1;
}
#endif
/*
* futex_wait()
* wait on futex with a timeout
*/
#if defined(__linux__) && defined(__NR_futex)
int shim_futex_wait(
const void *futex,
const int val,
const struct timespec *timeout)
{
return syscall(__NR_futex, futex, FUTEX_WAIT, val, timeout, NULL, 0);
}
#else
int shim_futex_wait(
const void *futex,
const int val,
const struct timespec *timeout)
{
(void)futex;
(void)val;
(void)timeout;
errno = -ENOSYS;
return -1;
}
#endif
/*
* dup3()
* linux special dup
*/
#if defined(HAVE_DUP3)
int shim_dup3(int oldfd, int newfd, int flags)
{
return dup3(oldfd, newfd, flags);
}
#else
int shim_dup3(int oldfd, int newfd, int flags)
{
(void)oldfd;
(void)newfd;
(void)flags;
errno = -ENOSYS;
return -1;
}
#endif
int shim_sync_file_range(
int fd,
shim_off64_t offset,
shim_off64_t nbytes,
unsigned int flags)
{
#if defined(__linux__) && defined(__NR_sync_file_range)
return syscall(__NR_sync_file_range, fd, offset, nbytes, flags);
#elif defined(__linux__) && defined(__NR_sync_file_range2)
/*
* from sync_file_range(2):
* "Some architectures (e.g., PowerPC, ARM) need 64-bit arguments
* to be aligned in a suitable pair of registers. On such
* architectures, the call signature of sync_file_range() shown in
* the SYNOPSIS would force a register to be wasted as padding
* between the fd and offset arguments. (See syscall(2) for details.)
* Therefore, these architectures define a different system call that
* orders the arguments suitably"
*/
return syscall(__NR_sync_file_range2, fd, flags, offset, nbytes);
#else
(void)fd;
(void)offset;
(void)nbytes;
(void)flags;
errno = -ENOSYS;
return -1;
#endif
}
/*
* shim_ioprio_set()
* ioprio_set system call
*/
int shim_ioprio_set(int which, int who, int ioprio)
{
#if defined(__linux__) && defined(__NR_ioprio_set)
return syscall(__NR_ioprio_set, which, who, ioprio);
#else
(void)which;
(void)who;
(void)ioprio;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_ioprio_get()
* ioprio_get system call
*/
int shim_ioprio_get(int which, int who)
{
#if defined(__linux__) && defined(__NR_ioprio_get)
return syscall(__NR_ioprio_get, which, who);
#else
(void)which;
(void)who;
errno = ENOSYS;
return -1;
#endif
}
/*
* shim_brk()
* brk system call shim
*/
int shim_brk(void *addr)
{
#if defined(__APPLE__)
return (int)brk(addr);
#else
return brk(addr);
#endif