Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/os/linux/os_linux.hpp
40951 views
1
/*
2
* Copyright (c) 1999, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*
23
*/
24
25
#ifndef OS_LINUX_OS_LINUX_HPP
26
#define OS_LINUX_OS_LINUX_HPP
27
28
// Linux_OS defines the interface to Linux operating systems
29
30
// Information about the protection of the page at address '0' on this os.
31
static bool zero_page_read_protected() { return true; }
32
33
class Linux {
34
friend class CgroupSubsystem;
35
friend class os;
36
friend class OSContainer;
37
friend class TestReserveMemorySpecial;
38
39
static int (*_pthread_getcpuclockid)(pthread_t, clockid_t *);
40
static int (*_pthread_setname_np)(pthread_t, const char*);
41
42
static address _initial_thread_stack_bottom;
43
static uintptr_t _initial_thread_stack_size;
44
45
static const char *_libc_version;
46
static const char *_libpthread_version;
47
48
static bool _supports_fast_thread_cpu_time;
49
50
static GrowableArray<int>* _cpu_to_node;
51
static GrowableArray<int>* _nindex_to_node;
52
53
static size_t _default_large_page_size;
54
55
protected:
56
57
static julong _physical_memory;
58
static pthread_t _main_thread;
59
static int _page_size;
60
61
static julong available_memory();
62
static julong physical_memory() { return _physical_memory; }
63
static void set_physical_memory(julong phys_mem) { _physical_memory = phys_mem; }
64
static int active_processor_count();
65
66
static void initialize_system_info();
67
68
static int commit_memory_impl(char* addr, size_t bytes, bool exec);
69
static int commit_memory_impl(char* addr, size_t bytes,
70
size_t alignment_hint, bool exec);
71
72
static void set_libc_version(const char *s) { _libc_version = s; }
73
static void set_libpthread_version(const char *s) { _libpthread_version = s; }
74
75
static void rebuild_cpu_to_node_map();
76
static void rebuild_nindex_to_node_map();
77
static GrowableArray<int>* cpu_to_node() { return _cpu_to_node; }
78
static GrowableArray<int>* nindex_to_node() { return _nindex_to_node; }
79
80
static size_t default_large_page_size();
81
static size_t scan_default_large_page_size();
82
static os::PageSizes scan_multiple_page_support();
83
84
static bool setup_large_page_type(size_t page_size);
85
static bool transparent_huge_pages_sanity_check(bool warn, size_t pages_size);
86
static bool hugetlbfs_sanity_check(bool warn, size_t page_size);
87
static bool shm_hugetlbfs_sanity_check(bool warn, size_t page_size);
88
89
static int hugetlbfs_page_size_flag(size_t page_size);
90
91
static char* reserve_memory_special_shm(size_t bytes, size_t alignment, char* req_addr, bool exec);
92
static char* reserve_memory_special_huge_tlbfs(size_t bytes, size_t alignment, size_t page_size, char* req_addr, bool exec);
93
static bool commit_memory_special(size_t bytes, size_t page_size, char* req_addr, bool exec);
94
95
static bool release_memory_special_impl(char* base, size_t bytes);
96
static bool release_memory_special_shm(char* base, size_t bytes);
97
static bool release_memory_special_huge_tlbfs(char* base, size_t bytes);
98
99
static void print_process_memory_info(outputStream* st);
100
static void print_system_memory_info(outputStream* st);
101
static bool print_container_info(outputStream* st);
102
static void print_steal_info(outputStream* st);
103
static void print_distro_info(outputStream* st);
104
static void print_libversion_info(outputStream* st);
105
static void print_proc_sys_info(outputStream* st);
106
static bool print_ld_preload_file(outputStream* st);
107
static void print_uptime_info(outputStream* st);
108
109
public:
110
struct CPUPerfTicks {
111
uint64_t used;
112
uint64_t usedKernel;
113
uint64_t total;
114
uint64_t steal;
115
bool has_steal_ticks;
116
};
117
118
// which_logical_cpu=-1 returns accumulated ticks for all cpus.
119
static bool get_tick_information(CPUPerfTicks* pticks, int which_logical_cpu);
120
static bool _stack_is_executable;
121
static void *dlopen_helper(const char *name, char *ebuf, int ebuflen);
122
static void *dll_load_in_vmthread(const char *name, char *ebuf, int ebuflen);
123
124
static void init_thread_fpu_state();
125
static int get_fpu_control_word();
126
static void set_fpu_control_word(int fpu_control);
127
static pthread_t main_thread(void) { return _main_thread; }
128
// returns kernel thread id (similar to LWP id on Solaris), which can be
129
// used to access /proc
130
static pid_t gettid();
131
132
static address initial_thread_stack_bottom(void) { return _initial_thread_stack_bottom; }
133
static uintptr_t initial_thread_stack_size(void) { return _initial_thread_stack_size; }
134
135
static int page_size(void) { return _page_size; }
136
static void set_page_size(int val) { _page_size = val; }
137
138
static intptr_t* ucontext_get_sp(const ucontext_t* uc);
139
static intptr_t* ucontext_get_fp(const ucontext_t* uc);
140
141
// GNU libc and libpthread version strings
142
static const char *libc_version() { return _libc_version; }
143
static const char *libpthread_version() { return _libpthread_version; }
144
145
static void libpthread_init();
146
static void sched_getcpu_init();
147
static bool libnuma_init();
148
static void* libnuma_dlsym(void* handle, const char* name);
149
// libnuma v2 (libnuma_1.2) symbols
150
static void* libnuma_v2_dlsym(void* handle, const char* name);
151
152
// Return default guard size for the specified thread type
153
static size_t default_guard_size(os::ThreadType thr_type);
154
155
static void capture_initial_stack(size_t max_size);
156
157
// Stack overflow handling
158
static bool manually_expand_stack(JavaThread * t, address addr);
159
160
// fast POSIX clocks support
161
static void fast_thread_clock_init(void);
162
163
static int pthread_getcpuclockid(pthread_t tid, clockid_t *clock_id) {
164
return _pthread_getcpuclockid ? _pthread_getcpuclockid(tid, clock_id) : -1;
165
}
166
167
static bool supports_fast_thread_cpu_time() {
168
return _supports_fast_thread_cpu_time;
169
}
170
171
static jlong fast_thread_cpu_time(clockid_t clockid);
172
173
// Determine if the vmid is the parent pid for a child in a PID namespace.
174
// Return the namespace pid if so, otherwise -1.
175
static int get_namespace_pid(int vmid);
176
177
// Stack repair handling
178
179
// none present
180
181
private:
182
static void numa_init();
183
static void expand_stack_to(address bottom);
184
185
typedef int (*sched_getcpu_func_t)(void);
186
typedef int (*numa_node_to_cpus_func_t)(int node, unsigned long *buffer, int bufferlen);
187
typedef int (*numa_node_to_cpus_v2_func_t)(int node, void *mask);
188
typedef int (*numa_max_node_func_t)(void);
189
typedef int (*numa_num_configured_nodes_func_t)(void);
190
typedef int (*numa_available_func_t)(void);
191
typedef int (*numa_tonode_memory_func_t)(void *start, size_t size, int node);
192
typedef void (*numa_interleave_memory_func_t)(void *start, size_t size, unsigned long *nodemask);
193
typedef void (*numa_interleave_memory_v2_func_t)(void *start, size_t size, struct bitmask* mask);
194
typedef struct bitmask* (*numa_get_membind_func_t)(void);
195
typedef struct bitmask* (*numa_get_interleave_mask_func_t)(void);
196
typedef long (*numa_move_pages_func_t)(int pid, unsigned long count, void **pages, const int *nodes, int *status, int flags);
197
typedef void (*numa_set_preferred_func_t)(int node);
198
typedef void (*numa_set_bind_policy_func_t)(int policy);
199
typedef int (*numa_bitmask_isbitset_func_t)(struct bitmask *bmp, unsigned int n);
200
typedef int (*numa_distance_func_t)(int node1, int node2);
201
202
static sched_getcpu_func_t _sched_getcpu;
203
static numa_node_to_cpus_func_t _numa_node_to_cpus;
204
static numa_node_to_cpus_v2_func_t _numa_node_to_cpus_v2;
205
static numa_max_node_func_t _numa_max_node;
206
static numa_num_configured_nodes_func_t _numa_num_configured_nodes;
207
static numa_available_func_t _numa_available;
208
static numa_tonode_memory_func_t _numa_tonode_memory;
209
static numa_interleave_memory_func_t _numa_interleave_memory;
210
static numa_interleave_memory_v2_func_t _numa_interleave_memory_v2;
211
static numa_set_bind_policy_func_t _numa_set_bind_policy;
212
static numa_bitmask_isbitset_func_t _numa_bitmask_isbitset;
213
static numa_distance_func_t _numa_distance;
214
static numa_get_membind_func_t _numa_get_membind;
215
static numa_get_interleave_mask_func_t _numa_get_interleave_mask;
216
static numa_move_pages_func_t _numa_move_pages;
217
static numa_set_preferred_func_t _numa_set_preferred;
218
static unsigned long* _numa_all_nodes;
219
static struct bitmask* _numa_all_nodes_ptr;
220
static struct bitmask* _numa_nodes_ptr;
221
static struct bitmask* _numa_interleave_bitmask;
222
static struct bitmask* _numa_membind_bitmask;
223
224
static void set_sched_getcpu(sched_getcpu_func_t func) { _sched_getcpu = func; }
225
static void set_numa_node_to_cpus(numa_node_to_cpus_func_t func) { _numa_node_to_cpus = func; }
226
static void set_numa_node_to_cpus_v2(numa_node_to_cpus_v2_func_t func) { _numa_node_to_cpus_v2 = func; }
227
static void set_numa_max_node(numa_max_node_func_t func) { _numa_max_node = func; }
228
static void set_numa_num_configured_nodes(numa_num_configured_nodes_func_t func) { _numa_num_configured_nodes = func; }
229
static void set_numa_available(numa_available_func_t func) { _numa_available = func; }
230
static void set_numa_tonode_memory(numa_tonode_memory_func_t func) { _numa_tonode_memory = func; }
231
static void set_numa_interleave_memory(numa_interleave_memory_func_t func) { _numa_interleave_memory = func; }
232
static void set_numa_interleave_memory_v2(numa_interleave_memory_v2_func_t func) { _numa_interleave_memory_v2 = func; }
233
static void set_numa_set_bind_policy(numa_set_bind_policy_func_t func) { _numa_set_bind_policy = func; }
234
static void set_numa_bitmask_isbitset(numa_bitmask_isbitset_func_t func) { _numa_bitmask_isbitset = func; }
235
static void set_numa_distance(numa_distance_func_t func) { _numa_distance = func; }
236
static void set_numa_get_membind(numa_get_membind_func_t func) { _numa_get_membind = func; }
237
static void set_numa_get_interleave_mask(numa_get_interleave_mask_func_t func) { _numa_get_interleave_mask = func; }
238
static void set_numa_move_pages(numa_move_pages_func_t func) { _numa_move_pages = func; }
239
static void set_numa_set_preferred(numa_set_preferred_func_t func) { _numa_set_preferred = func; }
240
static void set_numa_all_nodes(unsigned long* ptr) { _numa_all_nodes = ptr; }
241
static void set_numa_all_nodes_ptr(struct bitmask **ptr) { _numa_all_nodes_ptr = (ptr == NULL ? NULL : *ptr); }
242
static void set_numa_nodes_ptr(struct bitmask **ptr) { _numa_nodes_ptr = (ptr == NULL ? NULL : *ptr); }
243
static void set_numa_interleave_bitmask(struct bitmask* ptr) { _numa_interleave_bitmask = ptr ; }
244
static void set_numa_membind_bitmask(struct bitmask* ptr) { _numa_membind_bitmask = ptr ; }
245
static int sched_getcpu_syscall(void);
246
247
enum NumaAllocationPolicy{
248
NotInitialized,
249
Membind,
250
Interleave
251
};
252
static NumaAllocationPolicy _current_numa_policy;
253
254
#ifdef __GLIBC__
255
struct glibc_mallinfo {
256
int arena;
257
int ordblks;
258
int smblks;
259
int hblks;
260
int hblkhd;
261
int usmblks;
262
int fsmblks;
263
int uordblks;
264
int fordblks;
265
int keepcost;
266
};
267
268
struct glibc_mallinfo2 {
269
size_t arena;
270
size_t ordblks;
271
size_t smblks;
272
size_t hblks;
273
size_t hblkhd;
274
size_t usmblks;
275
size_t fsmblks;
276
size_t uordblks;
277
size_t fordblks;
278
size_t keepcost;
279
};
280
281
typedef struct glibc_mallinfo (*mallinfo_func_t)(void);
282
typedef struct glibc_mallinfo2 (*mallinfo2_func_t)(void);
283
284
static mallinfo_func_t _mallinfo;
285
static mallinfo2_func_t _mallinfo2;
286
#endif
287
288
public:
289
static int sched_getcpu() { return _sched_getcpu != NULL ? _sched_getcpu() : -1; }
290
static int numa_node_to_cpus(int node, unsigned long *buffer, int bufferlen);
291
static int numa_max_node() { return _numa_max_node != NULL ? _numa_max_node() : -1; }
292
static int numa_num_configured_nodes() {
293
return _numa_num_configured_nodes != NULL ? _numa_num_configured_nodes() : -1;
294
}
295
static int numa_available() { return _numa_available != NULL ? _numa_available() : -1; }
296
static int numa_tonode_memory(void *start, size_t size, int node) {
297
return _numa_tonode_memory != NULL ? _numa_tonode_memory(start, size, node) : -1;
298
}
299
300
static bool is_running_in_interleave_mode() {
301
return _current_numa_policy == Interleave;
302
}
303
304
static void set_configured_numa_policy(NumaAllocationPolicy numa_policy) {
305
_current_numa_policy = numa_policy;
306
}
307
308
static NumaAllocationPolicy identify_numa_policy() {
309
for (int node = 0; node <= Linux::numa_max_node(); node++) {
310
if (Linux::_numa_bitmask_isbitset(Linux::_numa_interleave_bitmask, node)) {
311
return Interleave;
312
}
313
}
314
return Membind;
315
}
316
317
static void numa_interleave_memory(void *start, size_t size) {
318
// Prefer v2 API
319
if (_numa_interleave_memory_v2 != NULL) {
320
if (is_running_in_interleave_mode()) {
321
_numa_interleave_memory_v2(start, size, _numa_interleave_bitmask);
322
} else if (_numa_membind_bitmask != NULL) {
323
_numa_interleave_memory_v2(start, size, _numa_membind_bitmask);
324
}
325
} else if (_numa_interleave_memory != NULL) {
326
_numa_interleave_memory(start, size, _numa_all_nodes);
327
}
328
}
329
static void numa_set_preferred(int node) {
330
if (_numa_set_preferred != NULL) {
331
_numa_set_preferred(node);
332
}
333
}
334
static void numa_set_bind_policy(int policy) {
335
if (_numa_set_bind_policy != NULL) {
336
_numa_set_bind_policy(policy);
337
}
338
}
339
static int numa_distance(int node1, int node2) {
340
return _numa_distance != NULL ? _numa_distance(node1, node2) : -1;
341
}
342
static long numa_move_pages(int pid, unsigned long count, void **pages, const int *nodes, int *status, int flags) {
343
return _numa_move_pages != NULL ? _numa_move_pages(pid, count, pages, nodes, status, flags) : -1;
344
}
345
static int get_node_by_cpu(int cpu_id);
346
static int get_existing_num_nodes();
347
// Check if numa node is configured (non-zero memory node).
348
static bool is_node_in_configured_nodes(unsigned int n) {
349
if (_numa_bitmask_isbitset != NULL && _numa_all_nodes_ptr != NULL) {
350
return _numa_bitmask_isbitset(_numa_all_nodes_ptr, n);
351
} else
352
return false;
353
}
354
// Check if numa node exists in the system (including zero memory nodes).
355
static bool is_node_in_existing_nodes(unsigned int n) {
356
if (_numa_bitmask_isbitset != NULL && _numa_nodes_ptr != NULL) {
357
return _numa_bitmask_isbitset(_numa_nodes_ptr, n);
358
} else if (_numa_bitmask_isbitset != NULL && _numa_all_nodes_ptr != NULL) {
359
// Not all libnuma API v2 implement numa_nodes_ptr, so it's not possible
360
// to trust the API version for checking its absence. On the other hand,
361
// numa_nodes_ptr found in libnuma 2.0.9 and above is the only way to get
362
// a complete view of all numa nodes in the system, hence numa_nodes_ptr
363
// is used to handle CPU and nodes on architectures (like PowerPC) where
364
// there can exist nodes with CPUs but no memory or vice-versa and the
365
// nodes may be non-contiguous. For most of the architectures, like
366
// x86_64, numa_node_ptr presents the same node set as found in
367
// numa_all_nodes_ptr so it's possible to use numa_all_nodes_ptr as a
368
// substitute.
369
return _numa_bitmask_isbitset(_numa_all_nodes_ptr, n);
370
} else
371
return false;
372
}
373
// Check if node is in bound node set.
374
static bool is_node_in_bound_nodes(int node) {
375
if (_numa_bitmask_isbitset != NULL) {
376
if (is_running_in_interleave_mode()) {
377
return _numa_bitmask_isbitset(_numa_interleave_bitmask, node);
378
} else {
379
return _numa_membind_bitmask != NULL ? _numa_bitmask_isbitset(_numa_membind_bitmask, node) : false;
380
}
381
}
382
return false;
383
}
384
// Check if bound to only one numa node.
385
// Returns true if bound to a single numa node, otherwise returns false.
386
static bool is_bound_to_single_node() {
387
int nodes = 0;
388
struct bitmask* bmp = NULL;
389
unsigned int node = 0;
390
unsigned int highest_node_number = 0;
391
392
if (_numa_get_membind != NULL && _numa_max_node != NULL && _numa_bitmask_isbitset != NULL) {
393
bmp = _numa_get_membind();
394
highest_node_number = _numa_max_node();
395
} else {
396
return false;
397
}
398
399
for (node = 0; node <= highest_node_number; node++) {
400
if (_numa_bitmask_isbitset(bmp, node)) {
401
nodes++;
402
}
403
}
404
405
if (nodes == 1) {
406
return true;
407
} else {
408
return false;
409
}
410
}
411
412
static const GrowableArray<int>* numa_nindex_to_node() {
413
return _nindex_to_node;
414
}
415
};
416
417
#endif // OS_LINUX_OS_LINUX_HPP
418
419