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