| /* |
| * Copyright (C) 2012-2026 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| * THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include <wtf/AvailableMemory.h> |
| |
| #include <array> |
| #include <mutex> |
| #include <wtf/PageBlock.h> |
| #include <wtf/text/ParsingUtilities.h> |
| #include <wtf/text/StringToIntegerConversion.h> |
| |
| #if PLATFORM(IOS_FAMILY) |
| #include <wtf/spi/darwin/MemoryStatusSPI.h> |
| #endif |
| |
| #if OS(DARWIN) |
| #import <mach/host_info.h> |
| #import <mach/mach.h> |
| #import <math.h> |
| #elif OS(UNIX) |
| #if OS(FREEBSD) || OS(LINUX) |
| #include <sys/sysinfo.h> |
| #endif |
| #if OS(LINUX) |
| #include <fcntl.h> |
| #elif OS(FREEBSD) |
| #include <sys/sysctl.h> |
| #include <sys/types.h> |
| #include <sys/user.h> |
| #endif |
| #include <unistd.h> |
| #elif OS(WINDOWS) |
| #include <windows.h> |
| #endif |
| |
| namespace WTF { |
| |
| static constexpr size_t availableMemoryGuess = 512 * MB; |
| |
| #if OS(DARWIN) |
| static size_t memorySizeAccordingToKernel() |
| { |
| #if PLATFORM(IOS_FAMILY_SIMULATOR) |
| UNUSED_PARAM(availableMemoryGuess); |
| // Pretend we have 1024MB of memory to make cache sizes behave like on device. |
| return 1024 * MB; |
| #else |
| host_basic_info_data_t hostInfo; |
| |
| mach_port_t host = mach_host_self(); |
| mach_msg_type_number_t count = HOST_BASIC_INFO_COUNT; |
| kern_return_t r = host_info(host, HOST_BASIC_INFO, (host_info_t)&hostInfo, &count); |
| mach_port_deallocate(mach_task_self(), host); |
| if (r != KERN_SUCCESS) |
| return availableMemoryGuess; |
| |
| if (hostInfo.max_mem > std::numeric_limits<size_t>::max()) |
| return std::numeric_limits<size_t>::max(); |
| |
| return static_cast<size_t>(hostInfo.max_mem); |
| #endif |
| } |
| #endif |
| |
| #if PLATFORM(IOS_FAMILY) |
| static size_t jetsamLimit() |
| { |
| memorystatus_memlimit_properties_t properties; |
| pid_t pid = getpid(); |
| if (memorystatus_control(MEMORYSTATUS_CMD_GET_MEMLIMIT_PROPERTIES, pid, 0, &properties, sizeof(properties))) |
| return 840 * MB; |
| if (properties.memlimit_active < 0) |
| return std::numeric_limits<size_t>::max(); |
| return static_cast<size_t>(properties.memlimit_active) * MB; |
| } |
| #endif |
| |
| #if OS(LINUX) |
| struct LinuxMemory { |
| static const LinuxMemory& singleton() |
| { |
| static LinuxMemory s_singleton; |
| static std::once_flag s_onceFlag; |
| std::call_once(s_onceFlag, |
| [] { |
| s_singleton.pageSize = sysconf(_SC_PAGE_SIZE); |
| s_singleton.statmFd = open("/proc/self/statm", O_RDONLY | O_CLOEXEC); |
| }); |
| return s_singleton; |
| } |
| |
| size_t footprint() const |
| { |
| if (statmFd == -1) |
| return 0; |
| |
| std::array<char, 256> statmBuffer; |
| ssize_t numBytes = pread(statmFd, statmBuffer.data(), statmBuffer.size(), 0); |
| if (numBytes <= 0) |
| return 0; |
| |
| auto parsingBuffer = spanReinterpretCast<const Latin1Character>(unsafeMakeSpan(statmBuffer.data(), numBytes)); |
| skipUntil<isASCIIWhitespace>(parsingBuffer); |
| if (parsingBuffer.size() && isASCIIWhitespace(parsingBuffer[0])) { |
| auto result = checkedProduct<size_t>(pageSize, parseInteger<size_t>(parsingBuffer).value_or(0)); |
| if (!result.hasOverflowed()) [[likely]] |
| return result.value(); |
| } |
| return 0; |
| } |
| |
| long pageSize { 0 }; |
| int statmFd { -1 }; |
| }; |
| #endif |
| |
| static size_t computeAvailableMemory() |
| { |
| #if OS(DARWIN) |
| size_t sizeAccordingToKernel = memorySizeAccordingToKernel(); |
| #if PLATFORM(IOS_FAMILY) |
| sizeAccordingToKernel = std::min(sizeAccordingToKernel, jetsamLimit()); |
| #endif |
| size_t multiple = 128 * MB; |
| |
| // Round up the memory size to a multiple of 128MB because max_mem may not be exactly 512MB |
| // (for example) and we have code that depends on those boundaries. |
| return ((sizeAccordingToKernel + multiple - 1) / multiple) * multiple; |
| #elif OS(FREEBSD) || OS(LINUX) |
| struct sysinfo info; |
| if (!sysinfo(&info)) |
| return info.totalram * info.mem_unit; |
| return availableMemoryGuess; |
| #elif OS(UNIX) || OS(HAIKU) |
| long pages = sysconf(_SC_PHYS_PAGES); |
| long pageSize = sysconf(_SC_PAGE_SIZE); |
| if (pages == -1 || pageSize == -1) |
| return availableMemoryGuess; |
| return pages * pageSize; |
| #elif OS(WINDOWS) |
| MEMORYSTATUSEX status; |
| status.dwLength = sizeof(status); |
| bool result = GlobalMemoryStatusEx(&status); |
| if (!result) |
| return availableMemoryGuess; |
| return status.ullTotalPhys; |
| #else |
| return availableMemoryGuess; |
| #endif |
| } |
| |
| size_t availableMemory() |
| { |
| static size_t availableMemory; |
| static std::once_flag onceFlag; |
| std::call_once(onceFlag, [] { |
| availableMemory = computeAvailableMemory(); |
| }); |
| return availableMemory; |
| } |
| |
| #if PLATFORM(IOS_FAMILY) || OS(LINUX) || OS(FREEBSD) |
| MemoryStatus memoryStatus() |
| { |
| #if PLATFORM(IOS_FAMILY) |
| task_vm_info_data_t vmInfo; |
| mach_msg_type_number_t vmSize = TASK_VM_INFO_COUNT; |
| |
| size_t memoryFootprint = 0; |
| if (KERN_SUCCESS == task_info(mach_task_self(), TASK_VM_INFO, (task_info_t)(&vmInfo), &vmSize)) |
| memoryFootprint = static_cast<size_t>(vmInfo.phys_footprint); |
| #elif OS(LINUX) |
| auto& memory = LinuxMemory::singleton(); |
| size_t memoryFootprint = memory.footprint(); |
| #elif OS(FREEBSD) |
| struct kinfo_proc info; |
| size_t infolen = sizeof(info); |
| |
| std::array<int, 4> mib { CTL_KERN, KERN_PROC, KERN_PROC_PID, getpid() }; |
| |
| size_t memoryFootprint = 0; |
| if (!sysctl(mib.data(), mib.size(), &info, &infolen, nullptr, 0)) |
| memoryFootprint = static_cast<size_t>(info.ki_rssize) * pageSize(); |
| #endif |
| |
| double percentInUse = static_cast<double>(memoryFootprint) / static_cast<double>(availableMemory()); |
| double percentAvailableMemoryInUse = std::min(percentInUse, 1.0); |
| return MemoryStatus(memoryFootprint, percentAvailableMemoryInUse); |
| } |
| #endif |
| |
| } // namespace WTF |