Changes since version 1.49.2:
* ci: run macOS and iOS tests also on macOS 14 (Saúl Ibarra Corretgé)
* unix,win: map ENOEXEC errno (Saúl Ibarra Corretgé)
* test: skip multicast join test on ENOEXEC (Saúl Ibarra Corretgé)
* ci: make sure the macOS firewall is disabled (Saúl Ibarra Corretgé)
* darwin,test: squelch EBUSY error on multicast join (Saúl Ibarra Corretgé)
* build: update minimum cmake to 3.10 (Ben Noordhuis)
* kqueue: use EVFILT_USER for async if available (Jameson Nash)
* unix,win: fix off-by-one in uv_wtf8_to_utf16() (Ben Noordhuis)
* doc: add scala-native-loop to LINKS.md (Julian A Avar C)
* unix: fix build breakage on haiku, openbsd, etc (Jeffrey H. Johnson)
* kqueue: lower overhead in uv__io_check_fd (Andy Pan)
* doc: move cjihrig back to active maintainers (cjihrig)
* build(deps): bump actions/checkout from 3 to 4 (dependabot[bot])
* unix,pipe: fix handling null buffer in uv_pipe_get{sock,peer}name (Saúl
Ibarra Corretgé)
* unix,win: harmonize buffer checking (Saúl Ibarra Corretgé)
* unix,win: add support for detached threads (Juan José Arboleda)
* src: add uv_thread_set/getname() methods (Santiago Gimeno)
* build: fix qemu builds (Ben Noordhuis)
* win: drop support for windows 8 (Ben Noordhuis)
* linux: fix uv_cpu_info() arm cpu model detection (Ben Noordhuis)
* linux: always use io_uring for epoll batching (Ben Noordhuis)
* doc: clarify repeating timer behavior more (Ben Noordhuis)
* unix,win: handle nbufs=0 in uv_udp_try_send (Ben Noordhuis)
* win: use GetQueuedCompletionStatusEx directly (Saúl Ibarra Corretgé)
* win: enable uv_thread_{get,set}name on MinGW (Saúl Ibarra Corretgé)
* win: drop support for the legacy MinGW (Saúl Ibarra Corretgé)
* win,fs: get (most) fstat when no permission (Jameson Nash)
* win: plug uv_fs_event_start memory leak (amcgoogan)
* test: address FreeBSD kernel bug causing NULL path in fsevents (Juan José
Arboleda)
* unix: refactor udp sendmsg code (Ben Noordhuis)
* unix,win: add uv_udp_try_send2 (Ben Noordhuis)
* test: fix flaky flaky udp_mmsg test (Juan José Arboleda)
* build: enable fdsan in Android (Juan José Arboleda)
* test: fix udp-multicast-join for FreeBSD (Juan José Arboleda)
* win: fix leak processing fs event (Saúl Ibarra Corretgé)
* src: set a default thread name for workers (Rafael Gonzaga)
* misc: implement uv_getrusage_thread (Juan José Arboleda)
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEEYS8OrZQBYiN530QC8ow8jaM8A74FAmeH+OkACgkQ8ow8jaM8
A75yQBAAiYL5OQM5nxSoEzOn9gBi3ssuvJX6549gytYRLQKyhHCeS43i+YFVeWbw
OjQa59M2BuYz11YoHW5Vu/1ohU06CCugvwJ9QKSvEfsDcmtBIAJp4RO5XaGTtnlB
k7PqJj/BrX+MyH8JzeioxILHuitlemwBy8fqrguxIqlO8XnT6H2lFtqwJsD/OvTj
O5a2kjdyK0773LraOsv18XJBWWQ8dfebxZgVvYY2Vi461CpZKgq85uKYrBpQLkqK
oVY9VrDRNkDQZGJgJiC3FqtNudw0W15y3vuEVoYTkaKbQzoAqx7HP3GyQaGc0186
afGediLfb1SkVscbwVQMDB7UvJjJaGd9DNQoa7PorjtAn/l+tsrZpCGFGqwRmGIC
w8s7/pmlyKTtsMgKV3WUmTvB6XDgWt70OK4viCpbf2COdoRWjTvdMkAq1FEv/E7B
QWlzyqItuJ1Z556mnKy0ifCG5V/eW8HlaMhJARAsQDVeKzquTMvrvJNm8iKVKpFh
8Y1OR+0nGc3l7Id9x8drKNWfGif11LraJXHUJmrfj9OLLHaE613krvXwahyogxap
yTmtWDOcVS9z37xAh/JAd7eX7Aj157OhXy4ax55q2+9akp+jfTyvDRTgQHtAcq0J
k21+HSnUwFVzyR8Ux8Vz2O+w7WXNOeatOK5UPZ+wKxtZ1Q7ylog=
=pGW8
-----END PGP SIGNATURE-----
Merge tag 'v1.50.0' into merge_1.50.0
265 lines
8.6 KiB
C
265 lines
8.6 KiB
C
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
*
|
|
* 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 "uv.h"
|
|
#include "task.h"
|
|
#include <string.h>
|
|
|
|
|
|
TEST_IMPL(platform_output) {
|
|
char buffer[512];
|
|
size_t rss;
|
|
size_t size;
|
|
double uptime;
|
|
uv_pid_t pid;
|
|
uv_pid_t ppid;
|
|
uv_rusage_t rusage;
|
|
uv_cpu_info_t* cpus;
|
|
uv_interface_address_t* interfaces;
|
|
uv_passwd_t pwd;
|
|
uv_group_t grp;
|
|
uv_utsname_t uname;
|
|
unsigned par;
|
|
char* const* member;
|
|
int count;
|
|
int i;
|
|
int err;
|
|
|
|
err = uv_get_process_title(buffer, sizeof(buffer));
|
|
ASSERT_OK(err);
|
|
printf("uv_get_process_title: %s\n", buffer);
|
|
|
|
size = sizeof(buffer);
|
|
err = uv_cwd(buffer, &size);
|
|
ASSERT_OK(err);
|
|
printf("uv_cwd: %s\n", buffer);
|
|
|
|
err = uv_resident_set_memory(&rss);
|
|
#if defined(__MSYS__)
|
|
ASSERT_EQ(err, UV_ENOSYS);
|
|
#else
|
|
ASSERT_OK(err);
|
|
printf("uv_resident_set_memory: %llu\n", (unsigned long long) rss);
|
|
#endif
|
|
|
|
err = uv_uptime(&uptime);
|
|
#if defined(__PASE__)
|
|
ASSERT_EQ(err, UV_ENOSYS);
|
|
#else
|
|
ASSERT_OK(err);
|
|
ASSERT_GT(uptime, 0);
|
|
printf("uv_uptime: %f\n", uptime);
|
|
#endif
|
|
|
|
err = uv_getrusage(&rusage);
|
|
ASSERT_OK(err);
|
|
ASSERT_GE(rusage.ru_utime.tv_sec, 0);
|
|
ASSERT_GE(rusage.ru_utime.tv_usec, 0);
|
|
ASSERT_GE(rusage.ru_stime.tv_sec, 0);
|
|
ASSERT_GE(rusage.ru_stime.tv_usec, 0);
|
|
printf("uv_getrusage:\n");
|
|
printf(" user: %llu sec %llu microsec\n",
|
|
(unsigned long long) rusage.ru_utime.tv_sec,
|
|
(unsigned long long) rusage.ru_utime.tv_usec);
|
|
printf(" system: %llu sec %llu microsec\n",
|
|
(unsigned long long) rusage.ru_stime.tv_sec,
|
|
(unsigned long long) rusage.ru_stime.tv_usec);
|
|
printf(" page faults: %llu\n", (unsigned long long) rusage.ru_majflt);
|
|
printf(" maximum resident set size: %llu\n",
|
|
(unsigned long long) rusage.ru_maxrss);
|
|
|
|
par = uv_available_parallelism();
|
|
ASSERT_GE(par, 1);
|
|
printf("uv_available_parallelism: %u\n", par);
|
|
|
|
#ifdef __linux__
|
|
FILE* file;
|
|
int cgroup_version = 0;
|
|
unsigned int cgroup_par = 0;
|
|
uint64_t quota, period;
|
|
|
|
// Attempt to parse cgroup v2 to deduce parallelism constraints
|
|
file = fopen("/sys/fs/cgroup/cpu.max", "r");
|
|
if (file) {
|
|
if (fscanf(file, "%lu %lu", "a, &period) == 2 && quota > 0) {
|
|
cgroup_version = 2;
|
|
cgroup_par = (unsigned int)(quota / period);
|
|
}
|
|
fclose(file);
|
|
}
|
|
|
|
// If cgroup v2 wasn't present, try parsing cgroup v1
|
|
if (cgroup_version == 0) {
|
|
file = fopen("/sys/fs/cgroup/cpu,cpuacct/cpu.cfs_quota_us", "r");
|
|
if (file) {
|
|
if (fscanf(file, "%lu", "a) == 1 && quota > 0 && quota < ~0ULL) {
|
|
fclose(file);
|
|
file = fopen("/sys/fs/cgroup/cpu,cpuacct/cpu.cfs_period_us", "r");
|
|
if (file && fscanf(file, "%lu", &period) == 1) {
|
|
cgroup_version = 1;
|
|
cgroup_par = (unsigned int)(quota / period);
|
|
}
|
|
}
|
|
if (file) fclose(file);
|
|
}
|
|
}
|
|
|
|
// If we found cgroup parallelism constraints, assert and print them
|
|
if (cgroup_par > 0) {
|
|
ASSERT_GE(par, cgroup_par);
|
|
printf("cgroup v%d available parallelism: %u\n", cgroup_version, cgroup_par);
|
|
}
|
|
#endif
|
|
|
|
err = uv_cpu_info(&cpus, &count);
|
|
#if defined(__CYGWIN__) || defined(__MSYS__)
|
|
ASSERT_EQ(err, UV_ENOSYS);
|
|
#else
|
|
ASSERT_OK(err);
|
|
|
|
printf("uv_cpu_info:\n");
|
|
for (i = 0; i < count; i++) {
|
|
printf(" model: %s\n", cpus[i].model);
|
|
printf(" speed: %d\n", cpus[i].speed);
|
|
printf(" times.sys: %llu\n", (unsigned long long) cpus[i].cpu_times.sys);
|
|
printf(" times.user: %llu\n",
|
|
(unsigned long long) cpus[i].cpu_times.user);
|
|
printf(" times.idle: %llu\n",
|
|
(unsigned long long) cpus[i].cpu_times.idle);
|
|
printf(" times.irq: %llu\n", (unsigned long long) cpus[i].cpu_times.irq);
|
|
printf(" times.nice: %llu\n",
|
|
(unsigned long long) cpus[i].cpu_times.nice);
|
|
}
|
|
#endif
|
|
uv_free_cpu_info(cpus, count);
|
|
|
|
err = uv_interface_addresses(&interfaces, &count);
|
|
ASSERT_OK(err);
|
|
|
|
printf("uv_interface_addresses:\n");
|
|
for (i = 0; i < count; i++) {
|
|
printf(" name: %s\n", interfaces[i].name);
|
|
printf(" internal: %d\n", interfaces[i].is_internal);
|
|
printf(" physical address: ");
|
|
printf("%02x:%02x:%02x:%02x:%02x:%02x\n",
|
|
(unsigned char)interfaces[i].phys_addr[0],
|
|
(unsigned char)interfaces[i].phys_addr[1],
|
|
(unsigned char)interfaces[i].phys_addr[2],
|
|
(unsigned char)interfaces[i].phys_addr[3],
|
|
(unsigned char)interfaces[i].phys_addr[4],
|
|
(unsigned char)interfaces[i].phys_addr[5]);
|
|
|
|
if (interfaces[i].address.address4.sin_family == AF_INET) {
|
|
uv_ip4_name(&interfaces[i].address.address4, buffer, sizeof(buffer));
|
|
} else if (interfaces[i].address.address4.sin_family == AF_INET6) {
|
|
uv_ip6_name(&interfaces[i].address.address6, buffer, sizeof(buffer));
|
|
}
|
|
|
|
printf(" address: %s\n", buffer);
|
|
|
|
if (interfaces[i].netmask.netmask4.sin_family == AF_INET) {
|
|
uv_ip4_name(&interfaces[i].netmask.netmask4, buffer, sizeof(buffer));
|
|
printf(" netmask: %s\n", buffer);
|
|
} else if (interfaces[i].netmask.netmask4.sin_family == AF_INET6) {
|
|
uv_ip6_name(&interfaces[i].netmask.netmask6, buffer, sizeof(buffer));
|
|
printf(" netmask: %s\n", buffer);
|
|
} else {
|
|
printf(" netmask: none\n");
|
|
}
|
|
|
|
if (interfaces[i].broadcast.broadcast4.sin_family == AF_INET) {
|
|
uv_ip4_name(&interfaces[i].broadcast.broadcast4, buffer, sizeof(buffer));
|
|
printf(" broadcast: %s\n", buffer);
|
|
} else {
|
|
printf(" broadcast: none\n");
|
|
}
|
|
}
|
|
uv_free_interface_addresses(interfaces, count);
|
|
|
|
err = uv_os_get_passwd(&pwd);
|
|
ASSERT_OK(err);
|
|
|
|
err = uv_os_get_group(&grp, pwd.gid);
|
|
#if defined(_WIN32)
|
|
ASSERT_EQ(err, UV_ENOTSUP);
|
|
ASSERT_EQ(pwd.uid, (unsigned long) -1);
|
|
ASSERT_EQ(pwd.gid, (unsigned long) -1);
|
|
(void) member;
|
|
grp.groupname = "ENOTSUP";
|
|
#else
|
|
ASSERT_OK(err);
|
|
ASSERT_EQ(pwd.gid, grp.gid);
|
|
#endif
|
|
|
|
printf("uv_os_get_passwd:\n");
|
|
printf(" euid: %ld\n", pwd.uid);
|
|
printf(" gid: %ld (%s)\n", pwd.gid, grp.groupname);
|
|
#if !defined(_WIN32)
|
|
printf(" members: [");
|
|
for (member = grp.members; *member != NULL; member++) {
|
|
printf(" %s", *member);
|
|
}
|
|
printf(" ]\n");
|
|
#endif
|
|
printf(" username: %s\n", pwd.username);
|
|
if (pwd.shell != NULL) /* Not set on Windows */
|
|
printf(" shell: %s\n", pwd.shell);
|
|
printf(" home directory: %s\n", pwd.homedir);
|
|
printf(" gecos: %s\n", pwd.gecos);
|
|
uv_os_free_passwd(&pwd);
|
|
#if !defined(_WIN32)
|
|
uv_os_free_group(&grp);
|
|
#endif
|
|
|
|
pid = uv_os_getpid();
|
|
ASSERT_GT(pid, 0);
|
|
printf("uv_os_getpid: %d\n", (int) pid);
|
|
ppid = uv_os_getppid();
|
|
ASSERT_GT(ppid, 0);
|
|
printf("uv_os_getppid: %d\n", (int) ppid);
|
|
|
|
err = uv_os_uname(&uname);
|
|
ASSERT_OK(err);
|
|
printf("uv_os_uname:\n");
|
|
printf(" sysname: %s\n", uname.sysname);
|
|
printf(" release: %s\n", uname.release);
|
|
printf(" version: %s\n", uname.version);
|
|
printf(" machine: %s\n", uname.machine);
|
|
|
|
ASSERT_OK(uv_getrusage_thread(&rusage));
|
|
ASSERT_UINT64_GE(rusage.ru_utime.tv_sec, 0);
|
|
ASSERT_UINT64_GE(rusage.ru_utime.tv_usec, 0);
|
|
ASSERT_UINT64_GE(rusage.ru_stime.tv_sec, 0);
|
|
ASSERT_UINT64_GE(rusage.ru_stime.tv_usec, 0);
|
|
printf("uv_getrusage_thread:\n");
|
|
printf(" user: %llu sec %llu microsec\n",
|
|
(unsigned long long) rusage.ru_utime.tv_sec,
|
|
(unsigned long long) rusage.ru_utime.tv_usec);
|
|
printf(" system: %llu sec %llu microsec\n",
|
|
(unsigned long long) rusage.ru_stime.tv_sec,
|
|
(unsigned long long) rusage.ru_stime.tv_usec);
|
|
printf(" page faults: %llu\n", (unsigned long long) rusage.ru_majflt);
|
|
printf(" maximum resident set size: %llu\n",
|
|
(unsigned long long) rusage.ru_maxrss);
|
|
|
|
return 0;
|
|
}
|