2020-07-30 21:38:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 21:38:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-11-07 23:51:39 +00:00
|
|
|
ErrorOr<FlatPtr> Process::sys$uname(Userspace<utsname*> user_buf)
|
2020-07-30 21:38:15 +00:00
|
|
|
{
|
2021-07-18 18:27:41 +00:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this)
|
2021-12-29 09:11:45 +00:00
|
|
|
TRY(require_promise(Pledge::stdio));
|
2020-08-09 20:02:27 +00:00
|
|
|
|
2021-02-24 13:33:50 +00:00
|
|
|
utsname buf {};
|
|
|
|
memcpy(buf.sysname, "SerenityOS", 11);
|
|
|
|
memcpy(buf.release, "1.0-dev", 8);
|
|
|
|
memcpy(buf.version, "FIXME", 6);
|
2021-06-29 17:19:35 +00:00
|
|
|
#if ARCH(I386)
|
2021-02-24 13:33:50 +00:00
|
|
|
memcpy(buf.machine, "i686", 5);
|
2021-06-29 17:19:35 +00:00
|
|
|
#else
|
|
|
|
memcpy(buf.machine, "x86_64", 7);
|
|
|
|
#endif
|
|
|
|
|
2021-07-18 13:00:48 +00:00
|
|
|
hostname().with_shared([&](const auto& name) {
|
|
|
|
memcpy(buf.nodename, name.characters(), name.length() + 1);
|
|
|
|
});
|
2021-02-24 13:33:50 +00:00
|
|
|
|
2021-11-07 23:51:39 +00:00
|
|
|
TRY(copy_to_user(user_buf, &buf));
|
|
|
|
return 0;
|
2020-07-30 21:38:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|