Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/jdk.hotspot.agent/linux/native/libsaproc/libproc_impl.h
41149 views
1
/*
2
* Copyright (c) 2003, 2020, 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 _LIBPROC_IMPL_H_
26
#define _LIBPROC_IMPL_H_
27
28
#include <unistd.h>
29
#include <limits.h>
30
#include "libproc.h"
31
#include "symtab.h"
32
33
// data structures in this file mimic those of Solaris 8.0 - libproc's Pcontrol.h
34
35
#define BUF_SIZE (PATH_MAX + NAME_MAX + 1)
36
37
// .eh_frame data
38
typedef struct eh_frame_info {
39
uintptr_t library_base_addr;
40
uintptr_t v_addr;
41
unsigned char* data;
42
int size;
43
} eh_frame_info;
44
45
// list of shared objects
46
typedef struct lib_info {
47
char name[BUF_SIZE];
48
uintptr_t base;
49
uintptr_t end;
50
uintptr_t exec_start;
51
uintptr_t exec_end;
52
eh_frame_info eh_frame;
53
struct symtab* symtab;
54
int fd; // file descriptor for lib
55
struct lib_info* next;
56
} lib_info;
57
58
// list of threads
59
typedef struct thread_info {
60
lwpid_t lwp_id;
61
struct user_regs_struct regs; // not for process, core uses for caching regset
62
struct thread_info* next;
63
} thread_info;
64
65
// list of virtual memory maps
66
typedef struct map_info {
67
int fd; // file descriptor
68
off_t offset; // file offset of this mapping
69
uintptr_t vaddr; // starting virtual address
70
size_t memsz; // size of the mapping
71
uint32_t flags; // acces flags
72
struct map_info* next;
73
} map_info;
74
75
// vtable for ps_prochandle
76
typedef struct ps_prochandle_ops {
77
// "derived class" clean-up
78
void (*release)(struct ps_prochandle* ph);
79
// read from debuggee
80
bool (*p_pread)(struct ps_prochandle *ph,
81
uintptr_t addr, char *buf, size_t size);
82
// write into debuggee
83
bool (*p_pwrite)(struct ps_prochandle *ph,
84
uintptr_t addr, const char *buf , size_t size);
85
// get integer regset of a thread
86
bool (*get_lwp_regs)(struct ps_prochandle* ph, lwpid_t lwp_id, struct user_regs_struct* regs);
87
} ps_prochandle_ops;
88
89
// the ps_prochandle
90
91
struct core_data {
92
int core_fd; // file descriptor of core file
93
int exec_fd; // file descriptor of exec file
94
int interp_fd; // file descriptor of interpreter (ld-linux.so.2)
95
// part of the class sharing workaround
96
int classes_jsa_fd; // file descriptor of class share archive
97
uintptr_t dynamic_addr; // address of dynamic section of a.out
98
uintptr_t ld_base_addr; // base address of ld.so
99
size_t num_maps; // number of maps.
100
map_info* maps; // maps in a linked list
101
// part of the class sharing workaround
102
map_info* class_share_maps;// class share maps in a linked list
103
map_info** map_array; // sorted (by vaddr) array of map_info pointers
104
};
105
106
struct ps_prochandle {
107
ps_prochandle_ops* ops; // vtable ptr
108
pid_t pid;
109
int num_libs;
110
lib_info* libs; // head of lib list
111
lib_info* lib_tail; // tail of lib list - to append at the end
112
int num_threads;
113
thread_info* threads; // head of thread list
114
struct core_data* core; // data only used for core dumps, NULL for process
115
};
116
117
#ifdef __cplusplus
118
extern "C" {
119
#endif
120
121
int pathmap_open(const char* name);
122
123
void print_debug(const char* format,...);
124
void print_error(const char* format,...);
125
bool is_debug();
126
127
// deletes a thread from the thread list
128
void delete_thread_info(struct ps_prochandle* ph, thread_info* thr);
129
130
// adds a new shared object to lib list, returns NULL on failure
131
lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base);
132
133
// adds a new shared object to lib list, supply open lib file descriptor as well
134
lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd,
135
uintptr_t base);
136
137
// adds a new thread to threads list, returns NULL on failure
138
thread_info* add_thread_info(struct ps_prochandle* ph, lwpid_t lwp_id);
139
140
// a test for ELF signature without using libelf
141
bool is_elf_file(int fd);
142
143
#ifdef __cplusplus
144
}
145
#endif
146
147
#endif //_LIBPROC_IMPL_H_
148
149