• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**************************************************************************
2  *
3  * Copyright 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 /*
30  * Miscellaneous OS services.
31  */
32 
33 
34 #ifndef _OS_MISC_H_
35 #define _OS_MISC_H_
36 
37 #include <stdint.h>
38 #include <stdbool.h>
39 
40 #include "util/detect.h"
41 
42 
43 #if DETECT_OS_UNIX
44 #  include <signal.h> /* for kill() */
45 #  include <unistd.h> /* getpid() */
46 #endif
47 
48 
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
52 
53 
54 /*
55  * Trap into the debugger.
56  */
57 #if (DETECT_ARCH_X86 || DETECT_ARCH_X86_64) && DETECT_CC_GCC
58 #  define os_break() __asm("int3")
59 #elif DETECT_CC_MSVC
60 #  define os_break()  __debugbreak()
61 #elif DETECT_OS_UNIX
62 #  define os_break() kill(getpid(), SIGTRAP)
63 #else
64 #  define os_break() abort()
65 #endif
66 
67 
68 /*
69  * Abort the program.
70  */
71 #if defined(DEBUG)
72 #  define os_abort() do { os_break(); abort(); } while(0)
73 #else
74 #  define os_abort() abort()
75 #endif
76 
77 
78 /*
79  * Output a message. Message should preferably end in a newline.
80  */
81 void
82 os_log_message(const char *message);
83 
84 
85 /*
86  * Get an option. Should return NULL if specified option is not set.
87  * It has the same disadvantage as getenv, see
88  * https://wiki.sei.cmu.edu/confluence/display/c/ENV34-C.+Do+not+store+pointers+returned+by+certain+functions
89  */
90 const char *
91 os_get_option(const char *name);
92 
93 /*
94  * Get an option. Should return NULL if specified option is not set.
95  * It's will save the option into hash table for the first time, and
96  * for latter calling, it's will return the value comes from hash table
97  * directly, and the returned value will always be valid before program exit
98  * The disadvantage is that setenv, unsetenv, putenv won't take effect
99  * after this function is called
100  */
101 const char *
102 os_get_option_cached(const char *name);
103 
104 /*
105  * Get the total amount of physical memory available on the system.
106  */
107 bool
108 os_get_total_physical_memory(uint64_t *size);
109 
110 /*
111  * Amount of physical memory available to a process
112  */
113 bool
114 os_get_available_system_memory(uint64_t *size);
115 
116 /*
117  * Size of a page
118  */
119 bool
120 os_get_page_size(uint64_t *size);
121 
122 
123 #ifdef __cplusplus
124 }
125 #endif
126 
127 
128 #endif /* _OS_MISC_H_ */
129