blob: e6894731b635b754e028b4ac49b2da8769607a0c [file] [log] [blame]
José Fonseca0b0e7052010-02-03 12:11:58 +00001/**************************************************************************
2 *
3 * Copyright 2008-2010 Vmware, Inc.
4 * 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"
30
31#include <stdarg.h>
32
33
Eric Engestrom8c52bca2019-08-01 22:49:05 +010034#if DETECT_OS_WINDOWS
José Fonseca0b0e7052010-02-03 12:11:58 +000035
36#ifndef WIN32_LEAN_AND_MEAN
37#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
38#endif
39#include <windows.h>
40#include <stdio.h>
Jose Fonseca46f7b362019-08-27 11:51:00 +010041#include <stdlib.h>
José Fonseca0b0e7052010-02-03 12:11:58 +000042
43#else
44
45#include <stdio.h>
46#include <stdlib.h>
47
48#endif
49
50
Rob Clarkf9f7cbc2019-09-03 11:43:40 -070051#if DETECT_OS_ANDROID
52# define LOG_TAG "MESA"
53# include <unistd.h>
54# include <log/log.h>
55#elif DETECT_OS_LINUX || DETECT_OS_CYGWIN || DETECT_OS_SOLARIS || DETECT_OS_HURD
Emil Velikov8d274572014-02-28 03:34:51 +000056# include <unistd.h>
Eric Engestrom7f12a662019-08-01 22:33:05 +010057#elif DETECT_OS_APPLE || DETECT_OS_BSD
Emil Velikov8d274572014-02-28 03:34:51 +000058# include <sys/sysctl.h>
Eric Engestrom7f12a662019-08-01 22:33:05 +010059#elif DETECT_OS_HAIKU
Emil Velikov8d274572014-02-28 03:34:51 +000060# include <kernel/OS.h>
Eric Engestrom7f12a662019-08-01 22:33:05 +010061#elif DETECT_OS_WINDOWS
Emil Velikov8d274572014-02-28 03:34:51 +000062# include <windows.h>
63#else
64#error unexpected platform in os_sysinfo.c
65#endif
66
67
José Fonseca0b0e7052010-02-03 12:11:58 +000068void
69os_log_message(const char *message)
70{
Brian Paul9c856872012-05-22 09:32:50 -060071 /* If the GALLIUM_LOG_FILE environment variable is set to a valid filename,
72 * write all messages to that file.
73 */
74 static FILE *fout = NULL;
75
76 if (!fout) {
Brian Paulbb1292e2016-06-14 20:35:53 -060077#ifdef DEBUG
Brian Paul9c856872012-05-22 09:32:50 -060078 /* one-time init */
79 const char *filename = os_get_option("GALLIUM_LOG_FILE");
Brian Paulbb1292e2016-06-14 20:35:53 -060080 if (filename) {
81 const char *mode = "w";
82 if (filename[0] == '+') {
83 /* If the filename is prefixed with '+' then open the file for
84 * appending instead of normal writing.
85 */
86 mode = "a";
87 filename++; /* skip the '+' */
88 }
89 fout = fopen(filename, mode);
90 }
91#endif
Brian Paul9c856872012-05-22 09:32:50 -060092 if (!fout)
93 fout = stderr;
94 }
95
Eric Engestrom8c52bca2019-08-01 22:49:05 +010096#if DETECT_OS_WINDOWS
José Fonseca0b0e7052010-02-03 12:11:58 +000097 OutputDebugStringA(message);
98 if(GetConsoleWindow() && !IsDebuggerPresent()) {
99 fflush(stdout);
Brian Paul9c856872012-05-22 09:32:50 -0600100 fputs(message, fout);
101 fflush(fout);
102 }
103 else if (fout != stderr) {
104 fputs(message, fout);
105 fflush(fout);
José Fonseca0b0e7052010-02-03 12:11:58 +0000106 }
Eric Engestrom8c52bca2019-08-01 22:49:05 +0100107#else /* !DETECT_OS_WINDOWS */
José Fonseca0b0e7052010-02-03 12:11:58 +0000108 fflush(stdout);
Brian Paul9c856872012-05-22 09:32:50 -0600109 fputs(message, fout);
110 fflush(fout);
Rob Clarkf9f7cbc2019-09-03 11:43:40 -0700111# if DETECT_OS_ANDROID
112 LOG_PRI(ANDROID_LOG_ERROR, LOG_TAG, "%s", message);
113# endif
José Fonseca0b0e7052010-02-03 12:11:58 +0000114#endif
115}
116
117
Eric Engestrome740e7a2019-08-01 21:45:25 +0100118#if !defined(EMBEDDED_DEVICE)
José Fonseca0b0e7052010-02-03 12:11:58 +0000119const char *
120os_get_option(const char *name)
121{
José Fonseca0b0e7052010-02-03 12:11:58 +0000122 return getenv(name);
José Fonseca0b0e7052010-02-03 12:11:58 +0000123}
Eric Engestrome740e7a2019-08-01 21:45:25 +0100124#endif /* !EMBEDDED_DEVICE */
José Fonseca0b0e7052010-02-03 12:11:58 +0000125
Emil Velikov8d274572014-02-28 03:34:51 +0000126
127/**
128 * Return the size of the total physical memory.
129 * \param size returns the size of the total physical memory
130 * \return true for success, or false on failure
131 */
132bool
133os_get_total_physical_memory(uint64_t *size)
134{
Eric Engestrom7f12a662019-08-01 22:33:05 +0100135#if DETECT_OS_LINUX || DETECT_OS_CYGWIN || DETECT_OS_SOLARIS || DETECT_OS_HURD
Emil Velikov8d274572014-02-28 03:34:51 +0000136 const long phys_pages = sysconf(_SC_PHYS_PAGES);
137 const long page_size = sysconf(_SC_PAGE_SIZE);
138
Axel Davy21845972016-10-06 19:35:04 +0200139 if (phys_pages <= 0 || page_size <= 0)
140 return false;
141
Axel Davy197cdd12016-10-11 18:57:17 +0200142 *size = (uint64_t)phys_pages * (uint64_t)page_size;
Axel Davy21845972016-10-06 19:35:04 +0200143 return true;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100144#elif DETECT_OS_APPLE || DETECT_OS_BSD
Jonathan Gray7983a3d2015-02-22 19:19:25 +1100145 size_t len = sizeof(*size);
Emil Velikov8d274572014-02-28 03:34:51 +0000146 int mib[2];
147
148 mib[0] = CTL_HW;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100149#if DETECT_OS_APPLE
Emil Velikov8d274572014-02-28 03:34:51 +0000150 mib[1] = HW_MEMSIZE;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100151#elif DETECT_OS_NETBSD || DETECT_OS_OPENBSD
Emil Velikov8d274572014-02-28 03:34:51 +0000152 mib[1] = HW_PHYSMEM64;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100153#elif DETECT_OS_FREEBSD
Emil Velikov8d274572014-02-28 03:34:51 +0000154 mib[1] = HW_REALMEM;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100155#elif DETECT_OS_DRAGONFLY
Vinson Leea2fd55c2014-10-10 22:40:21 -0700156 mib[1] = HW_PHYSMEM;
Emil Velikov8d274572014-02-28 03:34:51 +0000157#else
158#error Unsupported *BSD
159#endif
160
Jonathan Gray7983a3d2015-02-22 19:19:25 +1100161 return (sysctl(mib, 2, size, &len, NULL, 0) == 0);
Eric Engestrom7f12a662019-08-01 22:33:05 +0100162#elif DETECT_OS_HAIKU
Emil Velikov8d274572014-02-28 03:34:51 +0000163 system_info info;
164 status_t ret;
165
166 ret = get_system_info(&info);
Axel Davy21845972016-10-06 19:35:04 +0200167 if (ret != B_OK || info.max_pages <= 0)
168 return false;
169
Axel Davy197cdd12016-10-11 18:57:17 +0200170 *size = (uint64_t)info.max_pages * (uint64_t)B_PAGE_SIZE;
Axel Davy21845972016-10-06 19:35:04 +0200171 return true;
Eric Engestrom7f12a662019-08-01 22:33:05 +0100172#elif DETECT_OS_WINDOWS
Emil Velikov8d274572014-02-28 03:34:51 +0000173 MEMORYSTATUSEX status;
174 BOOL ret;
175
176 status.dwLength = sizeof(status);
177 ret = GlobalMemoryStatusEx(&status);
178 *size = status.ullTotalPhys;
179 return (ret == TRUE);
180#else
181#error unexpected platform in os_sysinfo.c
182 return false;
183#endif
184}