// Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to permit // persons to whom the Software is furnished to do so, subject to the // following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. #include "node_internals.h" #include "string_bytes.h" #include #include #include #ifdef __MINGW32__ # include #endif // __MINGW32__ #ifdef __POSIX__ # include // PATH_MAX on Solaris. # include // MAXHOSTNAMELEN on Solaris. # include // gethostname, sysconf # include // MAXHOSTNAMELEN on Linux and the BSDs. # include #endif // __POSIX__ // Add Windows fallback. #ifndef MAXHOSTNAMELEN # define MAXHOSTNAMELEN 256 #endif // MAXHOSTNAMELEN namespace node { namespace os { using v8::Array; using v8::ArrayBuffer; using v8::Boolean; using v8::Context; using v8::Float64Array; using v8::Function; using v8::FunctionCallbackInfo; using v8::Int32; using v8::Integer; using v8::Isolate; using v8::Local; using v8::MaybeLocal; using v8::Null; using v8::Number; using v8::Object; using v8::String; using v8::Value; static void GetHostname(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); char buf[MAXHOSTNAMELEN + 1]; if (gethostname(buf, sizeof(buf))) { #ifdef __POSIX__ int errorno = errno; #else // __MINGW32__ int errorno = WSAGetLastError(); #endif // __POSIX__ CHECK_GE(args.Length(), 1); env->CollectExceptionInfo(args[args.Length() - 1], errorno, "gethostname"); return args.GetReturnValue().SetUndefined(); } buf[sizeof(buf) - 1] = '\0'; args.GetReturnValue().Set(OneByteString(env->isolate(), buf)); } static void GetOSType(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); const char* rval; #ifdef __POSIX__ struct utsname info; if (uname(&info) < 0) { CHECK_GE(args.Length(), 1); env->CollectExceptionInfo(args[args.Length() - 1], errno, "uname"); return args.GetReturnValue().SetUndefined(); } rval = info.sysname; #else // __MINGW32__ rval = "Windows_NT"; #endif // __POSIX__ args.GetReturnValue().Set(OneByteString(env->isolate(), rval)); } static void GetOSRelease(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); const char* rval; #ifdef __POSIX__ struct utsname info; if (uname(&info) < 0) { CHECK_GE(args.Length(), 1); env->CollectExceptionInfo(args[args.Length() - 1], errno, "uname"); return args.GetReturnValue().SetUndefined(); } # ifdef _AIX char release[256]; snprintf(release, sizeof(release), "%s.%s", info.version, info.release); rval = release; # else rval = info.release; # endif #else // Windows char release[256]; OSVERSIONINFOW info; info.dwOSVersionInfoSize = sizeof(info); // Don't complain that GetVersionEx is deprecated; there is no alternative. #pragma warning(suppress : 4996) if (GetVersionExW(&info) == 0) return; snprintf(release, sizeof(release), "%d.%d.%d", static_cast(info.dwMajorVersion), static_cast(info.dwMinorVersion), static_cast(info.dwBuildNumber)); rval = release; #endif // __POSIX__ args.GetReturnValue().Set(OneByteString(env->isolate(), rval)); } static void GetCPUInfo(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); Isolate* isolate = env->isolate(); uv_cpu_info_t* cpu_infos; int count; int err = uv_cpu_info(&cpu_infos, &count); if (err) return; // It's faster to create an array packed with all the data and // assemble them into objects in JS than to call Object::Set() repeatedly // The array is in the format // [model, speed, (5 entries of cpu_times), model2, speed2, ...] std::vector> result(count * 7); for (int i = 0; i < count; i++) { uv_cpu_info_t* ci = cpu_infos + i; result[i * 7] = OneByteString(isolate, ci->model); result[i * 7 + 1] = Number::New(isolate, ci->speed); result[i * 7 + 2] = Number::New(isolate, ci->cpu_times.user); result[i * 7 + 3] = Number::New(isolate, ci->cpu_times.nice); result[i * 7 + 4] = Number::New(isolate, ci->cpu_times.sys); result[i * 7 + 5] = Number::New(isolate, ci->cpu_times.idle); result[i * 7 + 6] = Number::New(isolate, ci->cpu_times.irq); } uv_free_cpu_info(cpu_infos, count); args.GetReturnValue().Set(Array::New(isolate, result.data(), result.size())); } static void GetFreeMemory(const FunctionCallbackInfo& args) { double amount = uv_get_free_memory(); if (amount < 0) return; args.GetReturnValue().Set(amount); } static void GetTotalMemory(const FunctionCallbackInfo& args) { double amount = uv_get_total_memory(); if (amount < 0) return; args.GetReturnValue().Set(amount); } static void GetUptime(const FunctionCallbackInfo& args) { double uptime; int err = uv_uptime(&uptime); if (err == 0) args.GetReturnValue().Set(uptime); } static void GetLoadAvg(const FunctionCallbackInfo& args) { CHECK(args[0]->IsFloat64Array()); Local array = args[0].As(); CHECK_EQ(array->Length(), 3); Local ab = array->Buffer(); double* loadavg = static_cast(ab->GetContents().Data()); uv_loadavg(loadavg); } static void GetInterfaceAddresses(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); uv_interface_address_t* interfaces; int count, i; char ip[INET6_ADDRSTRLEN]; char netmask[INET6_ADDRSTRLEN]; std::array mac; Local ret, o; Local name, family; Local ifarr; int err = uv_interface_addresses(&interfaces, &count); ret = Object::New(env->isolate()); if (err == UV_ENOSYS) { return args.GetReturnValue().Set(ret); } else if (err) { CHECK_GE(args.Length(), 1); env->CollectUVExceptionInfo(args[args.Length() - 1], errno, "uv_interface_addresses"); return args.GetReturnValue().SetUndefined(); } for (i = 0; i < count; i++) { const char* const raw_name = interfaces[i].name; // Use UTF-8 on both Windows and Unixes (While it may be true that UNIX // systems are somewhat encoding-agnostic here, it’s more than reasonable // to assume UTF8 as the default as well. It’s what people will expect if // they name the interface from any input that uses UTF-8, which should be // the most frequent case by far these days.) name = String::NewFromUtf8(env->isolate(), raw_name, v8::NewStringType::kNormal).ToLocalChecked(); if (ret->Has(env->context(), name).FromJust()) { ifarr = Local::Cast(ret->Get(env->context(), name).ToLocalChecked()); } else { ifarr = Array::New(env->isolate()); ret->Set(env->context(), name, ifarr).FromJust(); } snprintf(mac.data(), mac.size(), "%02x:%02x:%02x:%02x:%02x:%02x", static_cast(interfaces[i].phys_addr[0]), static_cast(interfaces[i].phys_addr[1]), static_cast(interfaces[i].phys_addr[2]), static_cast(interfaces[i].phys_addr[3]), static_cast(interfaces[i].phys_addr[4]), static_cast(interfaces[i].phys_addr[5])); if (interfaces[i].address.address4.sin_family == AF_INET) { uv_ip4_name(&interfaces[i].address.address4, ip, sizeof(ip)); uv_ip4_name(&interfaces[i].netmask.netmask4, netmask, sizeof(netmask)); family = env->ipv4_string(); } else if (interfaces[i].address.address4.sin_family == AF_INET6) { uv_ip6_name(&interfaces[i].address.address6, ip, sizeof(ip)); uv_ip6_name(&interfaces[i].netmask.netmask6, netmask, sizeof(netmask)); family = env->ipv6_string(); } else { strncpy(ip, "", INET6_ADDRSTRLEN); family = env->unknown_string(); } o = Object::New(env->isolate()); o->Set(env->context(), env->address_string(), OneByteString(env->isolate(), ip)).FromJust(); o->Set(env->context(), env->netmask_string(), OneByteString(env->isolate(), netmask)).FromJust(); o->Set(env->context(), env->family_string(), family).FromJust(); o->Set(env->context(), env->mac_string(), FIXED_ONE_BYTE_STRING(env->isolate(), mac)).FromJust(); if (interfaces[i].address.address4.sin_family == AF_INET6) { uint32_t scopeid = interfaces[i].address.address6.sin6_scope_id; o->Set(env->context(), env->scopeid_string(), Integer::NewFromUnsigned(env->isolate(), scopeid)).FromJust(); } const bool internal = interfaces[i].is_internal; o->Set(env->context(), env->internal_string(), internal ? True(env->isolate()) : False(env->isolate())).FromJust(); ifarr->Set(env->context(), ifarr->Length(), o).FromJust(); } uv_free_interface_addresses(interfaces, count); args.GetReturnValue().Set(ret); } static void GetHomeDirectory(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); char buf[PATH_MAX]; size_t len = sizeof(buf); const int err = uv_os_homedir(buf, &len); if (err) { CHECK_GE(args.Length(), 1); env->CollectUVExceptionInfo(args[args.Length() - 1], err, "uv_os_homedir"); return args.GetReturnValue().SetUndefined(); } Local home = String::NewFromUtf8(env->isolate(), buf, v8::NewStringType::kNormal, len).ToLocalChecked(); args.GetReturnValue().Set(home); } static void GetUserInfo(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); uv_passwd_t pwd; enum encoding encoding; if (args[0]->IsObject()) { Local options = args[0].As(); MaybeLocal maybe_encoding = options->Get(env->context(), env->encoding_string()); if (maybe_encoding.IsEmpty()) return; Local encoding_opt = maybe_encoding.ToLocalChecked(); encoding = ParseEncoding(env->isolate(), encoding_opt, UTF8); } else { encoding = UTF8; } const int err = uv_os_get_passwd(&pwd); if (err) { CHECK_GE(args.Length(), 2); env->CollectUVExceptionInfo(args[args.Length() - 1], err, "uv_os_get_passwd"); return args.GetReturnValue().SetUndefined(); } OnScopeLeave free_passwd([&]() { uv_os_free_passwd(&pwd); }); Local error; Local uid = Number::New(env->isolate(), pwd.uid); Local gid = Number::New(env->isolate(), pwd.gid); MaybeLocal username = StringBytes::Encode(env->isolate(), pwd.username, encoding, &error); MaybeLocal homedir = StringBytes::Encode(env->isolate(), pwd.homedir, encoding, &error); MaybeLocal shell; if (pwd.shell == nullptr) shell = Null(env->isolate()); else shell = StringBytes::Encode(env->isolate(), pwd.shell, encoding, &error); if (username.IsEmpty() || homedir.IsEmpty() || shell.IsEmpty()) { CHECK(!error.IsEmpty()); env->isolate()->ThrowException(error); return; } Local entry = Object::New(env->isolate()); entry->Set(env->context(), env->uid_string(), uid).FromJust(); entry->Set(env->context(), env->gid_string(), gid).FromJust(); entry->Set(env->context(), env->username_string(), username.ToLocalChecked()).FromJust(); entry->Set(env->context(), env->homedir_string(), homedir.ToLocalChecked()).FromJust(); entry->Set(env->context(), env->shell_string(), shell.ToLocalChecked()).FromJust(); args.GetReturnValue().Set(entry); } static void SetPriority(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); CHECK_EQ(args.Length(), 3); CHECK(args[0]->IsInt32()); CHECK(args[1]->IsInt32()); const int pid = args[0].As()->Value(); const int priority = args[1].As()->Value(); const int err = uv_os_setpriority(pid, priority); if (err) { CHECK(args[2]->IsObject()); env->CollectUVExceptionInfo(args[2], err, "uv_os_setpriority"); } args.GetReturnValue().Set(err); } static void GetPriority(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); CHECK_EQ(args.Length(), 2); CHECK(args[0]->IsInt32()); const int pid = args[0].As()->Value(); int priority; const int err = uv_os_getpriority(pid, &priority); if (err) { CHECK(args[1]->IsObject()); env->CollectUVExceptionInfo(args[1], err, "uv_os_getpriority"); return; } args.GetReturnValue().Set(priority); } void Initialize(Local target, Local unused, Local context, void* priv) { Environment* env = Environment::GetCurrent(context); env->SetMethod(target, "getHostname", GetHostname); env->SetMethod(target, "getLoadAvg", GetLoadAvg); env->SetMethod(target, "getUptime", GetUptime); env->SetMethod(target, "getTotalMem", GetTotalMemory); env->SetMethod(target, "getFreeMem", GetFreeMemory); env->SetMethod(target, "getCPUs", GetCPUInfo); env->SetMethod(target, "getOSType", GetOSType); env->SetMethod(target, "getOSRelease", GetOSRelease); env->SetMethod(target, "getInterfaceAddresses", GetInterfaceAddresses); env->SetMethod(target, "getHomeDirectory", GetHomeDirectory); env->SetMethod(target, "getUserInfo", GetUserInfo); env->SetMethod(target, "setPriority", SetPriority); env->SetMethod(target, "getPriority", GetPriority); target->Set(env->context(), FIXED_ONE_BYTE_STRING(env->isolate(), "isBigEndian"), Boolean::New(env->isolate(), IsBigEndian())).FromJust(); } } // namespace os } // namespace node NODE_BUILTIN_MODULE_CONTEXT_AWARE(os, node::os::Initialize)