gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
syscalls.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2003-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
30 #include "sim/syscall_desc.hh"
31 #include "sim/syscall_emul.hh"
32 
33 class Process;
34 class ThreadContext;
35 
36 namespace SparcISA {
37 
39 static SyscallReturn
41 {
42  auto process = tc->getProcessPtr();
44 
45  strcpy(name->sysname, "Linux");
46  strcpy(name->nodename, "sim.gem5.org");
47  strcpy(name->release, process->release.c_str());
48  strcpy(name->version, "#1 Mon Aug 18 11:32:15 EDT 2003");
49  strcpy(name->machine, "sparc");
50 
51  name.copyOut(tc->getVirtProxy());
52 
53  return 0;
54 }
55 
56 
59  Addr ruid, Addr euid, Addr suid)
60 {
61  const uint64_t id = htobe(100);
62  // Handle the EFAULT case
63  // Set the ruid
64  if (ruid) {
65  BufferArg ruidBuff(ruid, sizeof(uint64_t));
66  memcpy(ruidBuff.bufferPtr(), &id, sizeof(uint64_t));
67  ruidBuff.copyOut(tc->getVirtProxy());
68  }
69  // Set the euid
70  if (euid) {
71  BufferArg euidBuff(euid, sizeof(uint64_t));
72  memcpy(euidBuff.bufferPtr(), &id, sizeof(uint64_t));
73  euidBuff.copyOut(tc->getVirtProxy());
74  }
75  // Set the suid
76  if (suid) {
77  BufferArg suidBuff(suid, sizeof(uint64_t));
78  memcpy(suidBuff.bufferPtr(), &id, sizeof(uint64_t));
79  suidBuff.copyOut(tc->getVirtProxy());
80  }
81  return 0;
82 }
83 
86  { 0, "restart_syscall" },
87  { 1, "exit", exitFunc }, // 32 bit
88  { 2, "fork" },
89  { 3, "read", readFunc<Sparc32Linux> },
90  { 4, "write", writeFunc<Sparc32Linux> },
91  { 5, "open", openFunc<Sparc32Linux> }, // 32 bit
92  { 6, "close", closeFunc },
93  { 7, "wait4" }, // 32 bit
94  { 8, "creat" }, // 32 bit
95  { 9, "link" },
96  { 10, "unlink", unlinkFunc },
97  { 11, "execv" },
98  { 12, "chdir" },
99  { 13, "chown", chownFunc }, // 32 bit
100  { 14, "mknod" },
101  { 15, "chmod" },
102  { 16, "lchown" }, // 32 bit
103  { 17, "brk", brkFunc },
104  { 18, "perfctr" }, // 32 bit
105  { 19, "lseek", lseekFunc }, // 32 bit
106  { 20, "getpid", getpidFunc },
107  { 21, "capget" },
108  { 22, "capset" },
109  { 23, "setuid", ignoreFunc }, // 32 bit
110  { 24, "getuid", getuidFunc }, // 32 bit
111  { 25, "time" },
112  { 26, "ptrace" },
113  { 27, "alarm" },
114  { 28, "sigaltstack" }, // 32 bit
115  { 29, "pause" }, // 32 bit
116  { 30, "utime" },
117  { 31, "lchown32" },
118  { 32, "fchown32" },
119  { 33, "access" }, // 32 bit
120  { 34, "nice" }, // 32 bit
121  { 35, "chown32" },
122  { 36, "sync" },
123  { 37, "kill" }, // 32 bit
124  { 38, "stat" },
125  { 39, "sendfile" }, // 32 bit
126  { 40, "lstat" },
127  { 41, "dup" },
128  { 42, "pipe", pipePseudoFunc },
129  { 43, "times", ignoreFunc },
130  { 44, "getuid32" },
131  { 45, "umount2" }, // 32 bit
132  { 46, "setgid" }, // 32 bit
133  { 47, "getgid", getgidFunc }, // 32 bit
134  { 48, "signal" }, // 32 bit
135  { 49, "geteuid", geteuidFunc }, // 32 bit
136  { 50, "getegid", getegidFunc }, // 32 bit
137  { 51, "acct" },
138  { 52, "memory_ordering" },
139  { 53, "getgid32" },
140  { 54, "ioctl" },
141  { 55, "reboot" }, // 32 bit
142  { 56, "mmap2" }, // 32 bit
143  { 57, "symlink" },
144  { 58, "readlink", readlinkFunc }, // 32 bit
145  { 59, "execve" }, // 32 bit
146  { 60, "umask" }, // 32 bit
147  { 61, "chroot" },
148  { 62, "fstat" },
149  { 63, "fstat64", fstat64Func<Sparc32Linux> },
150  { 64, "getpagesize" },
151  { 65, "msync" }, // 32 bit
152  { 66, "vfork" },
153  { 67, "pread64" }, // 32 bit
154  { 68, "pwrite64" }, // 32 bit
155  { 69, "geteuid32" },
156  { 70, "getegid32" },
157  { 71, "mmap", mmapFunc<Sparc32Linux> },
158  { 72, "setreuid32" },
159  { 73, "munmap", munmapFunc },
160  { 74, "mprotect", ignoreFunc },
161  { 75, "madvise" },
162  { 76, "vhangup" },
163  { 77, "truncate64" }, // 32 bit
164  { 78, "mincore" },
165  { 79, "getgroups" }, // 32 bit
166  { 80, "setgroups" }, // 32 bit
167  { 81, "getpgrp" },
168  { 82, "setgroups32" }, // 32 bit
169  { 83, "setitimer" }, // 32 bit
170  { 84, "ftruncate64" }, // 32 bit
171  { 85, "swapon" }, // 32 bit
172  { 86, "getitimer" }, // 32 bit
173  { 87, "setuid32" },
174  { 88, "sethostname" }, // 32 bit
175  { 89, "setgid32" },
176  { 90, "dup2" },
177  { 91, "setfsuid32" },
178  { 92, "fcntl" },
179  { 93, "select" }, // 32 bit
180  { 94, "setfsgid32" },
181  { 95, "fsync" },
182  { 96, "setpriority" }, // 32 bit
183  { 97, "socket" },
184  { 98, "connect" },
185  { 99, "accept" },
186  { 100, "getpriority" }, // 32 bit
187  { 101, "rt_sigreturn" }, // 32 bit
188  { 102, "rt_sigaction", ignoreFunc }, // 32 bit
189  { 103, "rt_sigprocmask", ignoreFunc }, // 32 bit
190  { 104, "rt_sigpending" }, // 32 bit
191  { 105, "rt_sigtimedwait" },
192  { 106, "rt_sigqueueinfo" }, // 32 bit
193  { 107, "rt_sigsuspend" },
194  { 108, "setresuid32" },
195  { 109, "getresuid32", getresuidFunc },
196  { 110, "setresgid32", ignoreFunc },
197  { 111, "getresgid32" },
198  { 112, "setregid32" },
199  { 113, "revcmsg" },
200  { 114, "sendmsg" },
201  { 115, "getgroups32" }, // 32 bit
202  { 116, "gettimeofday", gettimeofdayFunc<Sparc32Linux> }, // 32 bit
203  { 117, "getrusage" }, // 32 bit
204  { 118, "getsockopt" },
205  { 119, "getcwd", getcwdFunc },
206  { 120, "readv" },
207  { 121, "writev" },
208  { 122, "settimeofday" }, // 32 bit
209  { 123, "fchown" }, // 32 bit
210  { 124, "fchmod" },
211  { 125, "recvfrom" },
212  { 126, "setreuid" }, // 32 bit
213  { 127, "setregid" }, // 32 bit
214  { 128, "rename", renameFunc },
215  { 129, "truncate" },
216  { 130, "ftruncate" },
217  { 131, "flock" },
218  { 132, "lstat64" },
219  { 133, "sendto" },
220  { 134, "shutdown" },
221  { 135, "socketpair" },
222  { 136, "mkdir", mkdirFunc }, // 32 bit
223  { 137, "rmdir" },
224  { 138, "utimes" }, // 32 bit
225  { 139, "stat64" },
226  { 140, "sendfile64" }, // 32 bit
227  { 141, "getpeername" },
228  { 142, "futex" }, // 32 bit
229  { 143, "gettid" },
230  { 144, "getrlimit" },
231  { 145, "setrlimit" },
232  { 146, "pivot_root" },
233  { 147, "prctl" }, // 32 bit
234  { 148, "pciconfig_read" },
235  { 149, "pciconfig_write" },
236  { 150, "getsockname" },
237  { 151, "inotify_init" },
238  { 152, "inotify_add_watch" },
239  { 153, "poll" },
240  { 154, "getdents64" },
241  { 155, "fcntl64" },
242  { 156, "inotify_rm_watch" },
243  { 157, "statfs" },
244  { 158, "fstatfs" },
245  { 159, "umount" },
246  { 160, "sched_setaffinity" },
247  { 161, "sched_getaffinity" },
248  { 162, "getdomainname" }, // 32 bit
249  { 163, "setdomainname" }, // 32 bit
250  { 164, "ni_syscall" },
251  { 165, "quotactl" },
252  { 166, "set_tid_address" },
253  { 167, "mount" },
254  { 168, "ustat" },
255  { 169, "setxattr" }, // 32 bit
256  { 170, "lsetxattr" }, // 32 bit
257  { 171, "fsetxattr" }, // 32 bit
258  { 172, "getxattr" },
259  { 173, "lgetxattr" },
260  { 174, "getdents" },
261  { 175, "setsid" },
262  { 176, "fchdir" },
263  { 177, "fgetxattr" }, // 32 bit
264  { 178, "listxattr" },
265  { 179, "llistxattr" },
266  { 180, "flistxattr" }, // 32 bit
267  { 181, "removexattr" },
268  { 182, "lremovexattr" },
269  { 183, "sigpending" },
270  { 184, "query_module" },
271  { 185, "setpgid" }, // 32 bit
272  { 186, "fremovexattr" }, // 32 bit
273  { 187, "tkill" }, // 32 bit
274  { 188, "exit_group", exitGroupFunc }, // 32 bit
275  { 189, "uname", unameFunc },
276  { 190, "init_module" }, // 32 bit
277  { 191, "personality" },
278  { 192, "remap_file_pages" },
279  { 193, "epoll_create" }, // 32 bit
280  { 194, "epoll_ctl" }, // 32 bit
281  { 195, "epoll_wait" }, // 32 bit
282  { 196, "ioprio_set" }, // 32 bit
283  { 197, "getppid", getppidFunc },
284  { 198, "sigaction" }, // 32 bit
285  { 199, "sgetmask" },
286  { 200, "ssetmask" },
287  { 201, "sigsuspend" },
288  { 202, "oldlstat" },
289  { 203, "uselib" },
290  { 204, "readdir" },
291  { 205, "readahead" }, // 32 bit
292  { 206, "socketcall" }, // 32 bit
293  { 207, "syslog" }, // 32 bit
294  { 208, "lookup_dcookie" }, // 32 bit
295  { 209, "fadvise64" }, // 32 bit
296  { 210, "fadvise64_64" }, // 32 bit
297  { 211, "tgkill" }, // 32 bit
298  { 212, "waitpid" }, // 32 bit
299  { 213, "swapoff" },
300  { 214, "sysinfo", sysinfoFunc<Sparc32Linux> }, // 32 bit
301  { 215, "ipc" }, // 32 bit
302  { 216, "sigreturn" }, // 32 bit
303  { 217, "clone", cloneFunc<Sparc32Linux> },
304  { 218, "ioprio_get" }, // 32 bit
305  { 219, "adjtimex" }, // 32 bit
306  { 220, "sigprocmask" }, // 32 bit
307  { 221, "create_module" },
308  { 222, "delete_module" }, // 32 bit
309  { 223, "get_kernel_syms" },
310  { 224, "getpgid" }, // 32 bit
311  { 225, "bdflush" }, // 32 bit
312  { 226, "sysfs" }, // 32 bit
313  { 227, "afs_syscall" },
314  { 228, "setfsuid" }, // 32 bit
315  { 229, "setfsgid" }, // 32 bit
316  { 230, "_newselect" }, // 32 bit
317  { 231, "time", ignoreFunc },
318  { 232, "oldstat" },
319  { 233, "stime" },
320  { 234, "statfs64" },
321  { 235, "fstatfs64" },
322  { 236, "_llseek", _llseekFunc },
323  { 237, "mlock" },
324  { 238, "munlock" },
325  { 239, "mlockall" }, // 32 bit
326  { 240, "munlockall" },
327  { 241, "sched_setparam" }, // 32 bit
328  { 242, "sched_getparam" }, // 32 bit
329  { 243, "sched_setscheduler" }, // 32 bit
330  { 244, "sched_getscheduler" }, // 32 bit
331  { 245, "sched_yield" },
332  { 246, "sched_get_priority_max" }, // 32 bit
333  { 247, "sched_get_priority_min" }, // 32 bit
334  { 248, "sched_rr_get_interval" }, // 32 bit
335  { 249, "nanosleep" },
336  { 250, "mremap", mremapFunc<Sparc32Linux> }, // 32 bit
337  { 251, "_sysctl" }, // 32 bit
338  { 252, "getsid" }, // 32 bit
339  { 253, "fdatasync" },
340  { 254, "nfsservctl" }, // 32 bit
341  { 255, "aplib" },
342  { 256, "clock_settime" },
343  { 257, "clock_gettime" },
344  { 258, "clock_getres" },
345  { 259, "clock_nanosleep" }, // 32 bit
346  { 260, "sched_getaffinity" },
347  { 261, "sched_setaffinity" },
348  { 262, "timer_settime" }, // 32 bit
349  { 263, "timer_gettime" },
350  { 264, "timer_getoverrun" },
351  { 265, "timer_delete" },
352  { 266, "timer_create" },
353  { 267, "vserver" },
354  { 268, "io_setup" },
355  { 269, "io_destroy" },
356  { 270, "io_submit" }, // 32 bit
357  { 271, "io_cancel" },
358  { 272, "io_getevents" },
359  { 273, "mq_open" }, // 32 bit
360  { 274, "mq_unlink" },
361  { 275, "mq_timedsend" },
362  { 276, "mq_timedreceive" },
363  { 277, "mq_notify" },
364  { 278, "mq_getsetattr" },
365  { 279, "waitid" },
366  { 280, "sys_setaltroot" },
367  { 281, "add_key" },
368  { 282, "request_key" },
369  { 283, "keyctl" },
370  { 284, "openat" },
371  { 285, "mkdirat" },
372  { 286, "mknodat" },
373  { 287, "fchownat" },
374  { 288, "futimesat" },
375  { 289, "fstatat64" },
376  { 290, "unlinkat" },
377  { 291, "renameat" },
378  { 292, "linkat" },
379  { 293, "symlinkat" },
380  { 294, "readlinkat" },
381  { 295, "fchmodat" },
382  { 296, "faccessat" },
383  { 297, "pselect6" },
384  { 298, "ppoll" },
385  { 299, "unshare" }
386 };
387 
390  { 0, "restart_syscall" },
391  { 1, "exit", exitFunc },
392  { 2, "fork" },
393  { 3, "read", readFunc<SparcLinux> },
394  { 4, "write", writeFunc<SparcLinux> },
395  { 5, "open", openFunc<SparcLinux> },
396  { 6, "close", closeFunc },
397  { 7, "wait4" },
398  { 8, "creat" },
399  { 9, "link" },
400  { 10, "unlink", unlinkFunc },
401  { 11, "execv" },
402  { 12, "chdir" },
403  { 13, "chown", chownFunc },
404  { 14, "mknod" },
405  { 15, "chmod", chmodFunc<Linux> },
406  { 16, "lchown" },
407  { 17, "brk", brkFunc },
408  { 18, "perfctr" },
409  { 19, "lseek", lseekFunc },
410  { 20, "getpid", getpidFunc },
411  { 21, "capget" },
412  { 22, "capset" },
413  { 23, "setuid", ignoreFunc },
414  { 24, "getuid", getuidFunc },
415  { 25, "time" },
416  { 26, "ptrace" },
417  { 27, "alarm" },
418  { 28, "sigaltstack" },
419  { 29, "pause" },
420  { 30, "utime" },
421  { 31, "lchown32" },
422  { 32, "fchown32" },
423  { 33, "access" },
424  { 34, "nice" },
425  { 35, "chown32" },
426  { 36, "sync" },
427  { 37, "kill" },
428  { 38, "stat" },
429  { 39, "sendfile" },
430  { 40, "lstat" },
431  { 41, "dup" },
432  { 42, "pipe", pipePseudoFunc },
433  { 43, "times", ignoreFunc },
434  { 44, "getuid32" },
435  { 45, "umount2" },
436  { 46, "setgid" },
437  { 47, "getgid", getgidFunc },
438  { 48, "signal" },
439  { 49, "geteuid", geteuidFunc },
440  { 50, "getegid", getegidFunc },
441  { 51, "acct" },
442  { 52, "memory_ordering" },
443  { 53, "getgid32" },
444  { 54, "ioctl" },
445  { 55, "reboot" },
446  { 56, "mmap2" },
447  { 57, "symlink" },
448  { 58, "readlink", readlinkFunc },
449  { 59, "execve" },
450  { 60, "umask" },
451  { 61, "chroot" },
452  { 62, "fstat", fstatFunc<SparcLinux> },
453  { 63, "fstat64", fstat64Func<SparcLinux> },
454  { 64, "getpagesize" },
455  { 65, "msync" },
456  { 66, "vfork" },
457  { 67, "pread64" },
458  { 68, "pwrite64" },
459  { 69, "geteuid32" },
460  { 70, "getegid32" },
461  { 71, "mmap", mmapFunc<SparcLinux> },
462  { 72, "setreuid32" },
463  { 73, "munmap", munmapFunc },
464  { 74, "mprotect", ignoreFunc },
465  { 75, "madvise" },
466  { 76, "vhangup" },
467  { 77, "truncate64" },
468  { 78, "mincore" },
469  { 79, "getgroups" },
470  { 80, "setgroups" },
471  { 81, "getpgrp" },
472  { 82, "setgroups32" },
473  { 83, "setitimer" },
474  { 84, "ftruncate64" },
475  { 85, "swapon" },
476  { 86, "getitimer" },
477  { 87, "setuid32" },
478  { 88, "sethostname" },
479  { 89, "setgid32" },
480  { 90, "dup2" },
481  { 91, "setfsuid32" },
482  { 92, "fcntl" },
483  { 93, "select" },
484  { 94, "setfsgid32" },
485  { 95, "fsync" },
486  { 96, "setpriority" },
487  { 97, "socket" },
488  { 98, "connect" },
489  { 99, "accept" },
490  { 100, "getpriority" },
491  { 101, "rt_sigreturn" },
492  { 102, "rt_sigaction", ignoreFunc },
493  { 103, "rt_sigprocmask", ignoreFunc },
494  { 104, "rt_sigpending" },
495  { 105, "rt_sigtimedwait" },
496  { 106, "rt_sigqueueinfo" },
497  { 107, "rt_sigsuspend" },
498  { 108, "setresuid" },
499  { 109, "getresuid", getresuidFunc },
500  { 110, "setresgid", ignoreFunc },
501  { 111, "getresgid" },
502  { 112, "setregid32" },
503  { 113, "recvmsg" },
504  { 114, "sendmsg" },
505  { 115, "getgroups32" },
506  { 116, "gettimeofday", gettimeofdayFunc<SparcLinux> },
507  { 117, "getrusage" },
508  { 118, "getsockopt" },
509  { 119, "getcwd" },
510  { 120, "readv" },
511  { 121, "writev" },
512  { 122, "settimeofday" },
513  { 123, "fchown" },
514  { 124, "fchmod" },
515  { 125, "recvfrom" },
516  { 126, "setreuid" },
517  { 127, "setregid" },
518  { 128, "rename", renameFunc },
519  { 129, "truncate" },
520  { 130, "ftruncate" },
521  { 131, "flock" },
522  { 132, "lstat64" },
523  { 133, "sendto" },
524  { 134, "shutdown" },
525  { 135, "socketpair" },
526  { 136, "mkdir", mkdirFunc },
527  { 137, "rmdir" },
528  { 138, "utimes" },
529  { 139, "stat64" },
530  { 140, "sendfile64" },
531  { 141, "getpeername" },
532  { 142, "futex" },
533  { 143, "gettid" },
534  { 144, "getrlimit" },
535  { 145, "setrlimit" },
536  { 146, "pivot_root" },
537  { 147, "prctl" },
538  { 148, "pciconfig_read" },
539  { 149, "pciconfig_write" },
540  { 150, "getsockname" },
541  { 151, "inotify_init" },
542  { 152, "inotify_add_watch" },
543  { 153, "poll" },
544  { 154, "getdents64" },
545  { 155, "fcntl64" },
546  { 156, "inotify_rm_watch" },
547  { 157, "statfs" },
548  { 158, "fstatfs" },
549  { 159, "umount" },
550  { 160, "sched_set_affinity" },
551  { 161, "sched_get_affinity" },
552  { 162, "getdomainname" },
553  { 163, "setdomainname" },
554  { 164, "utrap_install" },
555  { 165, "quotactl" },
556  { 166, "set_tid_address" },
557  { 167, "mount" },
558  { 168, "ustat" },
559  { 169, "setxattr" },
560  { 170, "lsetxattr" },
561  { 171, "fsetxattr" },
562  { 172, "getxattr" },
563  { 173, "lgetxattr" },
564  { 174, "getdents" },
565  { 175, "setsid" },
566  { 176, "fchdir" },
567  { 177, "fgetxattr" },
568  { 178, "listxattr" },
569  { 179, "llistxattr" },
570  { 180, "flistxattr" },
571  { 181, "removexattr" },
572  { 182, "lremovexattr" },
573  { 183, "sigpending" },
574  { 184, "query_module" },
575  { 185, "setpgid" },
576  { 186, "fremovexattr" },
577  { 187, "tkill" },
578  { 188, "exit_group", exitGroupFunc },
579  { 189, "uname", unameFunc },
580  { 190, "init_module" },
581  { 191, "personality" },
582  { 192, "remap_file_pages" },
583  { 193, "epoll_create" },
584  { 194, "epoll_ctl" },
585  { 195, "epoll_wait" },
586  { 196, "ioprio_set" },
587  { 197, "getppid", getppidFunc },
588  { 198, "sigaction", ignoreFunc },
589  { 199, "sgetmask" },
590  { 200, "ssetmask" },
591  { 201, "sigsuspend" },
592  { 202, "oldlstat" },
593  { 203, "uselib" },
594  { 204, "readdir" },
595  { 205, "readahead" },
596  { 206, "socketcall" },
597  { 207, "syslog" },
598  { 208, "lookup_dcookie" },
599  { 209, "fadvise64" },
600  { 210, "fadvise64_64" },
601  { 211, "tgkill" },
602  { 212, "waitpid" },
603  { 213, "swapoff" },
604  { 214, "sysinfo", sysinfoFunc<SparcLinux> },
605  { 215, "ipc" },
606  { 216, "sigreturn" },
607  { 217, "clone", cloneFunc<SparcLinux> },
608  { 218, "ioprio_get" },
609  { 219, "adjtimex" },
610  { 220, "sigprocmask" },
611  { 221, "create_module" },
612  { 222, "delete_module" },
613  { 223, "get_kernel_syms" },
614  { 224, "getpgid" },
615  { 225, "bdflush" },
616  { 226, "sysfs" },
617  { 227, "afs_syscall" },
618  { 228, "setfsuid" },
619  { 229, "setfsgid" },
620  { 230, "_newselect" },
621  { 231, "time", ignoreFunc },
622  { 232, "oldstat" },
623  { 233, "stime" },
624  { 234, "statfs64" },
625  { 235, "fstatfs64" },
626  { 236, "_llseek", _llseekFunc },
627  { 237, "mlock" },
628  { 238, "munlock" },
629  { 239, "mlockall" },
630  { 240, "munlockall" },
631  { 241, "sched_setparam" },
632  { 242, "sched_getparam" },
633  { 243, "sched_setscheduler" },
634  { 244, "sched_getscheduler" },
635  { 245, "sched_yield" },
636  { 246, "sched_get_priority_max" },
637  { 247, "sched_get_priority_min" },
638  { 248, "sched_rr_get_interval" },
639  { 249, "nanosleep" },
640  { 250, "mremap", mremapFunc<SparcLinux> },
641  { 251, "_sysctl" },
642  { 252, "getsid" },
643  { 253, "fdatasync" },
644  { 254, "nfsservctl" },
645  { 255, "aplib" },
646  { 256, "clock_settime" },
647  { 257, "clock_gettime" },
648  { 258, "clock_getres" },
649  { 259, "clock_nanosleep" },
650  { 260, "sched_getaffinity" },
651  { 261, "sched_setaffinity" },
652  { 262, "timer_settime" },
653  { 263, "timer_gettime" },
654  { 264, "timer_getoverrun" },
655  { 265, "timer_delete" },
656  { 266, "timer_create" },
657  { 267, "vserver" },
658  { 268, "io_setup" },
659  { 269, "io_destroy" },
660  { 270, "io_submit" },
661  { 271, "io_cancel" },
662  { 272, "io_getevents" },
663  { 273, "mq_open" },
664  { 274, "mq_unlink" },
665  { 275, "mq_timedsend" },
666  { 276, "mq_timedreceive" },
667  { 277, "mq_notify" },
668  { 278, "mq_getsetattr" },
669  { 279, "waitid" },
670  { 280, "sys_setaltroot" },
671  { 281, "add_key" },
672  { 282, "request_key" },
673  { 283, "keyctl" }
674 };
675 
676 } // namespace SparcISA
SyscallReturn getpidFunc(SyscallDesc *desc, ThreadContext *tc)
Target getpid() handler.
SyscallReturn closeFunc(SyscallDesc *desc, ThreadContext *tc, int tgt_fd)
Target close() handler.
SyscallReturn ignoreFunc(SyscallDesc *desc, ThreadContext *tc)
Handler for unimplemented syscalls that we never intend to implement (signal handling, etc.) and should not affect the correct behavior of the program.
Definition: syscall_emul.cc:72
const std::string & name()
Definition: trace.cc:50
SyscallReturn readlinkFunc(SyscallDesc *desc, ThreadContext *tc, Addr pathname, Addr buf_ptr, size_t bufsiz)
Target readlink() handler.
SyscallReturn getresuidFunc(SyscallDesc *desc, ThreadContext *tc, Addr ruid, Addr euid, Addr suid)
Definition: syscalls.cc:58
virtual PortProxy & getVirtProxy()=0
virtual Process * getProcessPtr()=0
char version[_SYS_NMLN]
OS version.
Definition: linux.hh:115
static SyscallReturn unameFunc(SyscallDesc *desc, ThreadContext *tc, Addr utsname)
Target uname() handler.
Definition: syscalls.cc:40
TypedBufferArg is a class template; instances of this template represent typed buffers in target user...
ThreadContext is the external interface to all thread state for anything outside of the CPU...
char release[_SYS_NMLN]
OS release.
Definition: linux.hh:114
SyscallReturn getgidFunc(SyscallDesc *desc, ThreadContext *tc)
Target getgid() handler.
SyscallReturn getcwdFunc(SyscallDesc *desc, ThreadContext *tc, Addr buf_ptr, unsigned long size)
Target getcwd() handler.
SyscallReturn munmapFunc(SyscallDesc *desc, ThreadContext *tc, Addr start, size_t length)
Target munmap() handler.
SyscallReturn getuidFunc(SyscallDesc *desc, ThreadContext *tc)
SyscallReturn getppidFunc(SyscallDesc *desc, ThreadContext *tc)
Target getppid() handler.
SyscallReturn lseekFunc(SyscallDesc *desc, ThreadContext *tc, int tgt_fd, uint64_t offs, int whence)
Target lseek() handler.
SyscallReturn brkFunc(SyscallDesc *desc, ThreadContext *tc, Addr new_brk)
Target brk() handler: set brk address.
void * bufferPtr()
Return a pointer to the internal simulator-space buffer.
SyscallReturn pipePseudoFunc(SyscallDesc *desc, ThreadContext *tc)
Pseudo Funcs - These functions use a different return convension, returning a second value in a regis...
char sysname[_SYS_NMLN]
System name.
Definition: linux.hh:112
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
SyscallReturn _llseekFunc(SyscallDesc *desc, ThreadContext *tc, int tgt_fd, uint64_t offset_high, uint32_t offset_low, Addr result_ptr, int whence)
Target _llseek() handler.
This class provides the wrapper interface for the system call implementations which are defined in th...
Definition: syscall_desc.hh:66
SyscallReturn mkdirFunc(SyscallDesc *desc, ThreadContext *tc, Addr pathname, mode_t mode)
Target mkdir() handler.
This file defines objects used to emulate syscalls from the target application on the host machine...
T htobe(T value)
Definition: byteswap.hh:142
Definition: asi.cc:31
bool copyOut(PortProxy &memproxy)
copy data out of simulator space (write to target memory)
SyscallReturn unlinkFunc(SyscallDesc *desc, ThreadContext *tc, Addr pathname)
Target unlink() handler.
static SyscallDescTable< Sparc32Process::SyscallABI > syscall32Descs
32 bit compatibility syscall descriptors, indexed by call number.
Definition: process.hh:49
SyscallReturn exitGroupFunc(SyscallDesc *desc, ThreadContext *tc, int status)
Target exit_group() handler: terminate simulation. (exit all threads)
char nodename[_SYS_NMLN]
Node name.
Definition: linux.hh:113
static SyscallDescTable< Sparc64Process::SyscallABI > syscallDescs
64 bit syscall descriptors, indexed by call number.
Definition: process.hh:46
BufferArg represents an untyped buffer in target user space that is passed by reference to an (emulat...
SyscallReturn geteuidFunc(SyscallDesc *desc, ThreadContext *tc)
Target geteuid() handler.
char machine[_SYS_NMLN]
Machine type.
Definition: linux.hh:116
SyscallReturn renameFunc(SyscallDesc *desc, ThreadContext *tc, Addr oldpath, Addr newpath)
Target rename() handler.
This class represents the return value from an emulated system call, including any errno setting...
SyscallReturn getegidFunc(SyscallDesc *desc, ThreadContext *tc)
Target getegid() handler.
Bitfield< 11 > id
Definition: miscregs.hh:121
SyscallReturn exitFunc(SyscallDesc *desc, ThreadContext *tc, int status)
Target exit() handler: terminate current context.
SyscallReturn chownFunc(SyscallDesc *desc, ThreadContext *tc, Addr pathname, uint32_t owner, uint32_t group)
Target chown() handler.

Generated on Thu May 28 2020 16:21:29 for gem5 by doxygen 1.8.13