mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:32:44 +00:00 
			
		
		
		
	 2a78bf8596
			
		
	
	
		2a78bf8596
		
	
	
	
	
		
			
			The Process::Handler type has KResultOr<FlatPtr> as its return type. Using a different return type with an equally-sized template parameter sort of works but breaks once that condition is no longer true, e.g. for KResultOr<int> on x86_64. Ideally the syscall handlers would also take FlatPtrs as their args so we can get rid of the reinterpret_cast for the function pointer but I didn't quite feel like cleaning that up as well.
		
			
				
	
	
		
			65 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <Kernel/Process.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| KResultOr<FlatPtr> Process::sys$getuid()
 | |
| {
 | |
|     REQUIRE_PROMISE(stdio);
 | |
|     return uid();
 | |
| }
 | |
| 
 | |
| KResultOr<FlatPtr> Process::sys$getgid()
 | |
| {
 | |
|     REQUIRE_PROMISE(stdio);
 | |
|     return gid();
 | |
| }
 | |
| 
 | |
| KResultOr<FlatPtr> Process::sys$geteuid()
 | |
| {
 | |
|     REQUIRE_PROMISE(stdio);
 | |
|     return euid();
 | |
| }
 | |
| 
 | |
| KResultOr<FlatPtr> Process::sys$getegid()
 | |
| {
 | |
|     REQUIRE_PROMISE(stdio);
 | |
|     return egid();
 | |
| }
 | |
| 
 | |
| KResultOr<FlatPtr> Process::sys$getresuid(Userspace<uid_t*> ruid, Userspace<uid_t*> euid, Userspace<uid_t*> suid)
 | |
| {
 | |
|     REQUIRE_PROMISE(stdio);
 | |
|     if (!copy_to_user(ruid, &m_uid) || !copy_to_user(euid, &m_euid) || !copy_to_user(suid, &m_suid))
 | |
|         return EFAULT;
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| KResultOr<FlatPtr> Process::sys$getresgid(Userspace<gid_t*> rgid, Userspace<gid_t*> egid, Userspace<gid_t*> sgid)
 | |
| {
 | |
|     REQUIRE_PROMISE(stdio);
 | |
|     if (!copy_to_user(rgid, &m_gid) || !copy_to_user(egid, &m_egid) || !copy_to_user(sgid, &m_sgid))
 | |
|         return EFAULT;
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| KResultOr<FlatPtr> Process::sys$getgroups(size_t count, Userspace<gid_t*> user_gids)
 | |
| {
 | |
|     REQUIRE_PROMISE(stdio);
 | |
|     if (!count)
 | |
|         return extra_gids().size();
 | |
|     if (count != extra_gids().size())
 | |
|         return EINVAL;
 | |
| 
 | |
|     if (!copy_to_user(user_gids, extra_gids().data(), sizeof(gid_t) * count))
 | |
|         return EFAULT;
 | |
| 
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| }
 |