From 1678a08ded7e00049f4335d856c91043904002f7 Mon Sep 17 00:00:00 2001 From: Matt Sinclair Date: Thu, 21 Jun 2018 19:31:09 -0400 Subject: syscall_emul: adding symlink system call Change-Id: Iebda05c130b4d2ee8434cad1e703933bfda486c8 Reviewed-on: https://gem5-review.googlesource.com/11490 Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power --- src/sim/syscall_emul.cc | 20 ++++++++++++++++++++ src/sim/syscall_emul.hh | 4 ++++ 2 files changed, 24 insertions(+) (limited to 'src/sim') diff --git a/src/sim/syscall_emul.cc b/src/sim/syscall_emul.cc index c56963acf..dd2323eaa 100644 --- a/src/sim/syscall_emul.cc +++ b/src/sim/syscall_emul.cc @@ -539,6 +539,26 @@ linkFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc) return (result == -1) ? -errno : result; } +SyscallReturn +symlinkFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc) +{ + string path; + string new_path; + + int index = 0; + auto &virt_mem = tc->getMemProxy(); + if (!virt_mem.tryReadString(path, p->getSyscallArg(tc, index))) + return -EFAULT; + if (!virt_mem.tryReadString(new_path, p->getSyscallArg(tc, index))) + return -EFAULT; + + path = p->fullPath(path); + new_path = p->fullPath(new_path); + + int result = symlink(path.c_str(), new_path.c_str()); + return (result == -1) ? -errno : result; +} + SyscallReturn mkdirFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc) { diff --git a/src/sim/syscall_emul.hh b/src/sim/syscall_emul.hh index e3d99cea9..1f4233aa8 100644 --- a/src/sim/syscall_emul.hh +++ b/src/sim/syscall_emul.hh @@ -207,6 +207,10 @@ SyscallReturn unlinkFunc(SyscallDesc *desc, int num, SyscallReturn linkFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc); +/// Target symlink() handler. +SyscallReturn symlinkFunc(SyscallDesc *desc, int num, Process *p, + ThreadContext *tc); + /// Target mkdir() handler. SyscallReturn mkdirFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc); -- cgit v1.2.3