blob: e5a780b4035b582a9d1a0f28eb5a28d9fdcc622b [file] [log] [blame]
José Fonseca0b0e7052010-02-03 12:11:58 +00001/**************************************************************************
2 *
Vinson Leefdb19972020-10-21 15:13:03 -07003 * Copyright 2008-2010 VMware, Inc.
José Fonseca0b0e7052010-02-03 12:11:58 +00004 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28
29#include "os_misc.h"
Jonathan Gray033dcb22019-12-06 01:01:29 +110030#include "os_file.h"
Jonathan Grayb30bd6f2019-12-06 01:21:07 +110031#include "macros.h"
José Fonseca0b0e7052010-02-03 12:11:58 +000032
33#include <stdarg.h>
34
35
Eric Engestrom8c52bca2019-08-01 22:49:05 +010036#if DETECT_OS_WINDOWS
José Fonseca0b0e7052010-02-03 12:11:58 +000037
38#ifndef WIN32_LEAN_AND_MEAN
39#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
40#endif
41#include <windows.h>
42#include <stdio.h>
Jose Fonseca46f7b362019-08-27 11:51:00 +010043#include <stdlib.h>
José Fonseca0b0e7052010-02-03 12:11:58 +000044
45#else
46
47#include <stdio.h>
48#include <stdlib.h>
Jonathan Gray033dcb22019-12-06 01:01:29 +110049#include <string.h>
50#include <inttypes.h>
José Fonseca0b0e7052010-02-03 12:11:58 +000051
52#endif
53
54
Rob Clarkf9f7cbc2019-09-03 11:43:40 -070055#if DETECT_OS_ANDROID
56# define LOG_TAG "MESA"
57# include <unistd.h>
58# include <log/log.h>
59#elif DETECT_OS_LINUX || DETECT_OS_CYGWIN || DETECT_OS_SOLARIS || DETECT_OS_HURD
Emil Velikov8d274572014-02-28 03:34:51 +000060# include <unistd.h>
Emmanuel Vadotfe894dc2020-10-04 11:00:49 +020061#elif DETECT_OS_OPENBSD || DETECT_OS_FREEBSD
Jonathan Grayb30bd6f2019-12-06 01:21:07 +110062# include <sys/resource.h>
63# include <sys/sysctl.h>
Eric Engestrom7f12a662019-08-01 22:33:05 +010064#elif DETECT_OS_APPLE || DETECT_OS_BSD
Emil Velikov8d274572014-02-28 03:34:51 +000065# include <sys/sysctl.h>
Eric Engestrom7f12a662019-08-01 22:33:05 +010066#elif DETECT_OS_HAIKU
Emil Velikov8d274572014-02-28 03:34:51 +000067# include <kernel/OS.h>
Eric Engestrom7f12a662019-08-01 22:33:05 +010068#elif DETECT_OS_WINDOWS
Emil Velikov8d274572014-02-28 03:34:51 +000069# include <windows.h>
70#else
71#error unexpected platform in os_sysinfo.c
72#endif
73
74
José Fonseca0b0e7052010-02-03 12:11:58 +000075void
76os_log_message(const char *message)
77{
Brian Paul9c856872012-05-22 09:32:50 -060078 /* If the GALLIUM_LOG_FILE environment variable is set to a valid filename,
79 * write all messages to that file.
80 */
81 static FILE *fout = NULL;
82
83 if (!fout) {
Brian Paulbb1292e2016-06-14 20:35:53 -060084#ifdef DEBUG
Brian Paul9c856872012-05-22 09:32:50 -060085 /* one-time init */
86 const char *filename = os_get_option("GALLIUM_LOG_FILE");
Brian Paulbb1292e2016-06-14 20:35:53 -060087 if (filename) {
88 const char *mode = "w";
89 if (filename[0] == '+') {
90 /* If the filename is prefixed with '+' then open the file for
91 * appending instead of normal writing.
92 */
93 mode = "a";
94 filename++; /* skip the '+' */
95 }
96 fout = fopen(filename, mode);
97 }
98#endif
Brian Paul9c856872012-05-22 09:32:50 -060099 if (!fout)
100 fout = stderr;
101 }
102
Eric Engestrom8c52bca2019-08-01 22:49:05 +0100103#if DETECT_OS_WINDOWS
José Fonseca0b0e7052010-02-03 12:11:58 +0000104 OutputDebugStringA(message);
105 if(GetConsoleWindow() && !IsDebuggerPresent()) {
106 fflush(stdout);
Brian Paul9c856872012-05-22 09:32:50 -0600107 fputs(message, fout);
108 fflush(fout);
109 }
110 else if (fout != stderr) {
111 fputs(message, fout);
112 fflush(fout);
José Fonseca0b0e7052010-02-03 12:11:58 +0000113 }
Eric Engestrom8c52bca2019-08-01 22:49:05 +0100114#else /* !DETECT_OS_WINDOWS */
José Fonseca0b0e7052010-02-03 12:11:58 +0000115 fflush(stdout);
Brian Paul9c856872012-05-22 09:32:50 -0600116 fputs(message, fout);
117 fflush(fout);
Rob Clarkf9f7cbc2019-09-03 11:43:40 -0700118# if DETECT_OS_ANDROID
119 LOG_PRI(ANDROID_LOG_ERROR, LOG_TAG, "%s", message);
120# endif
José Fonseca0b0e7052010-02-03 12:11:58 +0000121#endif
122}
123
124
Eric Engestrome740e7a2019-08-01 21:45:25 +0100125#if !defined(EMBEDDED_DEVICE)
José Fonseca0b0e7052010-02-03 12:11:58 +0000126const char *
127os_get_option(const char *name)
128{
José Fonseca0b0e7052010-02-03 12:11:58 +0000129 return getenv(name);
José Fonseca0b0e7052010-02-03 12:11:58 +0000130}
Eric Engestrome740e7a2019-08-01 21:45:25 +0100131#endif /* !EMBEDDED_DEVICE */
José Fonseca0b0e7052010-02-03 12:11:58 +0000132
Emil Velikov8d274572014-02-28 03:34:51 +0000133
134/**
135 * Return the size of the total physical memory.
136 * \param size returns the size of the total physical memory
137 * \return true for success, or false on failure
138 */
139bool
140os_get_total_physical_memory(uint64_t *size)
141{
Eric Engestrom7f12a662019-08-01 22:33:05 +0100142#if DETECT_OS_LINUX || DETECT_OS_CYGWIN || DETECT_OS_SOLARIS || DETECT_OS_HURD
Emil Velikov8d274572014-02-28 03:34:51 +0000143 const long phys_pages = sysconf(_SC_PHYS_PAGES);
144 const long page_size = sysconf(_SC_PAGE_SIZE);
145
Axel Davy21845972016-10-06 19:35:04 +0200146 if (phys_pages <= 0 || page_size <= 0)
147 return false;
148
Axel Davy197cdd12016-10-11 18:57:17 +0200149 *size = (uint64_t)phys_pages * (uint64_t)page_size;
Axel Davy21845972016-10-06 19:35:04 +0200150 return true;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100151#elif DETECT_OS_APPLE || DETECT_OS_BSD
Jonathan Gray7983a3d2015-02-22 19:19:25 +1100152 size_t len = sizeof(*size);
Emil Velikov8d274572014-02-28 03:34:51 +0000153 int mib[2];
154
155 mib[0] = CTL_HW;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100156#if DETECT_OS_APPLE
Emil Velikov8d274572014-02-28 03:34:51 +0000157 mib[1] = HW_MEMSIZE;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100158#elif DETECT_OS_NETBSD || DETECT_OS_OPENBSD
Emil Velikov8d274572014-02-28 03:34:51 +0000159 mib[1] = HW_PHYSMEM64;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100160#elif DETECT_OS_FREEBSD
Emil Velikov8d274572014-02-28 03:34:51 +0000161 mib[1] = HW_REALMEM;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100162#elif DETECT_OS_DRAGONFLY
Vinson Leea2fd55c2014-10-10 22:40:21 -0700163 mib[1] = HW_PHYSMEM;
Emil Velikov8d274572014-02-28 03:34:51 +0000164#else
165#error Unsupported *BSD
166#endif
167
Jonathan Gray7983a3d2015-02-22 19:19:25 +1100168 return (sysctl(mib, 2, size, &len, NULL, 0) == 0);
Eric Engestrom7f12a662019-08-01 22:33:05 +0100169#elif DETECT_OS_HAIKU
Emil Velikov8d274572014-02-28 03:34:51 +0000170 system_info info;
171 status_t ret;
172
173 ret = get_system_info(&info);
Axel Davy21845972016-10-06 19:35:04 +0200174 if (ret != B_OK || info.max_pages <= 0)
175 return false;
176
Axel Davy197cdd12016-10-11 18:57:17 +0200177 *size = (uint64_t)info.max_pages * (uint64_t)B_PAGE_SIZE;
Axel Davy21845972016-10-06 19:35:04 +0200178 return true;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100179#elif DETECT_OS_WINDOWS
Emil Velikov8d274572014-02-28 03:34:51 +0000180 MEMORYSTATUSEX status;
181 BOOL ret;
182
183 status.dwLength = sizeof(status);
184 ret = GlobalMemoryStatusEx(&status);
185 *size = status.ullTotalPhys;
186 return (ret == TRUE);
187#else
188#error unexpected platform in os_sysinfo.c
189 return false;
190#endif
191}
Jonathan Gray033dcb22019-12-06 01:01:29 +1100192
193bool
194os_get_available_system_memory(uint64_t *size)
195{
196#if DETECT_OS_LINUX
197 char *meminfo = os_read_file("/proc/meminfo", NULL);
198 if (!meminfo)
199 return false;
200
201 char *str = strstr(meminfo, "MemAvailable:");
202 if (!str) {
203 free(meminfo);
204 return false;
205 }
206
207 uint64_t kb_mem_available;
208 if (sscanf(str, "MemAvailable: %" PRIx64, &kb_mem_available) == 1) {
209 free(meminfo);
210 *size = kb_mem_available << 10;
211 return true;
212 }
213
214 free(meminfo);
215 return false;
Emmanuel Vadotfe894dc2020-10-04 11:00:49 +0200216#elif DETECT_OS_OPENBSD || DETECT_OS_FREEBSD
Jonathan Grayb30bd6f2019-12-06 01:21:07 +1100217 struct rlimit rl;
Emmanuel Vadotfe894dc2020-10-04 11:00:49 +0200218#if DETECT_OS_OPENBSD
Jonathan Grayb30bd6f2019-12-06 01:21:07 +1100219 int mib[] = { CTL_HW, HW_USERMEM64 };
Emmanuel Vadotfe894dc2020-10-04 11:00:49 +0200220#elif DETECT_OS_FREEBSD
221 int mib[] = { CTL_HW, HW_USERMEM };
222#endif
Jonathan Grayb30bd6f2019-12-06 01:21:07 +1100223 int64_t mem_available;
224 size_t len = sizeof(mem_available);
225
226 /* physmem - wired */
227 if (sysctl(mib, 2, &mem_available, &len, NULL, 0) == -1)
228 return false;
229
230 /* static login.conf limit */
231 if (getrlimit(RLIMIT_DATA, &rl) == -1)
232 return false;
233
234 *size = MIN2(mem_available, rl.rlim_cur);
235 return true;
Jonathan Gray033dcb22019-12-06 01:01:29 +1100236#else
237 return false;
238#endif
239}