Skip to content
This repository was archived by the owner on Aug 31, 2018. It is now read-only.

Commit a79ea0d

Browse files
EdSchoutenQard
authored andcommitted
build,src: Add CloudABI as a POSIX-like runtime environment.
CloudABI is a compact POSIX-like runtime that makes use of capability-based security. More details: https://github.com/NuxiNL/cloudlibc * src: Disable use of pwd.h, grp.h and get*uid() on CloudABI. As CloudABI is intended to run applications in cluster contexts (e.g., on Kubernetes), they are oblivious of UNIX credentials. Extend the existing preprocessor checks to disable any use of these interfaces, just like on Windows, Android, etc. * src: Explicitly include <netdb.h>. cares_wrap.cc calls into functions like getnameinfo() and getaddrinfo(). These functions tend to be available implicitly through <uv.h>, but we'd better still include this header explicitly. On CloudABI, we make use of a custom implementation of libuv that does not implicitly include header files like <netdb.h>. PR-URL: nodejs/node#16612 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
1 parent 2aac399 commit a79ea0d

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@
291291
'cflags': [ '-pthread', ],
292292
'ldflags': [ '-pthread' ],
293293
}],
294-
[ 'OS in "linux freebsd openbsd solaris android aix"', {
294+
[ 'OS in "linux freebsd openbsd solaris android aix cloudabi"', {
295295
'cflags': [ '-Wall', '-Wextra', '-Wno-unused-parameter', ],
296296
'cflags_cc': [ '-fno-rtti', '-fno-exceptions', '-std=gnu++0x' ],
297297
'ldflags': [ '-rdynamic' ],

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ from gyp_node import run_gyp
5757
parser = optparse.OptionParser()
5858

5959
valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux',
60-
'android', 'aix')
60+
'android', 'aix', 'cloudabi')
6161
valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc',
6262
'ppc64', 'x32','x64', 'x86', 's390', 's390x')
6363
valid_arm_float_abi = ('soft', 'softfp', 'hard')

src/cares_wrap.cc

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@
3434
#include <vector>
3535
#include <unordered_set>
3636

37+
#ifdef __POSIX__
38+
# include <netdb.h>
39+
#endif // __POSIX__
40+
3741
#if defined(__ANDROID__) || \
3842
defined(__MINGW32__) || \
3943
defined(__OpenBSD__) || \

src/node.cc

+6-6
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ typedef int mode_t;
108108
#include <unistd.h> // setuid, getuid
109109
#endif
110110

111-
#if defined(__POSIX__) && !defined(__ANDROID__)
111+
#if defined(__POSIX__) && !defined(__ANDROID__) && !defined(__CloudABI__)
112112
#include <pwd.h> // getpwnam()
113113
#include <grp.h> // getgrnam()
114114
#endif
@@ -1013,7 +1013,7 @@ Local<Value> UVException(Isolate* isolate,
10131013

10141014
// Look up environment variable unless running as setuid root.
10151015
bool SafeGetenv(const char* key, std::string* text) {
1016-
#ifndef _WIN32
1016+
#if !defined(__CloudABI__) && !defined(_WIN32)
10171017
if (linux_at_secure || getuid() != geteuid() || getgid() != getegid())
10181018
goto fail;
10191019
#endif
@@ -2167,7 +2167,7 @@ static void Umask(const FunctionCallbackInfo<Value>& args) {
21672167
}
21682168

21692169

2170-
#if defined(__POSIX__) && !defined(__ANDROID__)
2170+
#if defined(__POSIX__) && !defined(__ANDROID__) && !defined(__CloudABI__)
21712171

21722172
static const uid_t uid_not_found = static_cast<uid_t>(-1);
21732173
static const gid_t gid_not_found = static_cast<gid_t>(-1);
@@ -2490,7 +2490,7 @@ static void InitGroups(const FunctionCallbackInfo<Value>& args) {
24902490
}
24912491
}
24922492

2493-
#endif // __POSIX__ && !defined(__ANDROID__)
2493+
#endif // __POSIX__ && !defined(__ANDROID__) && !defined(__CloudABI__)
24942494

24952495

24962496
static void WaitForInspectorDisconnect(Environment* env) {
@@ -3769,7 +3769,7 @@ void SetupProcessObject(Environment* env,
37693769

37703770
env->SetMethod(process, "umask", Umask);
37713771

3772-
#if defined(__POSIX__) && !defined(__ANDROID__)
3772+
#if defined(__POSIX__) && !defined(__ANDROID__) && !defined(__CloudABI__)
37733773
env->SetMethod(process, "getuid", GetUid);
37743774
env->SetMethod(process, "geteuid", GetEUid);
37753775
env->SetMethod(process, "getgid", GetGid);
@@ -3786,7 +3786,7 @@ void SetupProcessObject(Environment* env,
37863786
env->SetMethod(process, "setgroups", SetGroups);
37873787
env->SetMethod(process, "initgroups", InitGroups);
37883788
}
3789-
#endif // __POSIX__ && !defined(__ANDROID__)
3789+
#endif // __POSIX__ && !defined(__ANDROID__) && !defined(__CloudABI__)
37903790

37913791
env->SetMethod(process, "_kill", Kill);
37923792
env->SetMethod(process, "dlopen", DLOpen);

0 commit comments

Comments
 (0)