author | dholmes |
Sat, 23 Jun 2018 01:32:41 -0400 | |
changeset 50735 | 2f2af62dfac7 |
parent 49406 | f654b37c58a1 |
child 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49406
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_SERVICES_ATTACHLISTENER_HPP |
26 |
#define SHARE_VM_SERVICES_ATTACHLISTENER_HPP |
|
27 |
||
28 |
#include "memory/allocation.hpp" |
|
29 |
#include "utilities/debug.hpp" |
|
49406
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
30 |
#include "utilities/globalDefinitions.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13977
diff
changeset
|
31 |
#include "utilities/macros.hpp" |
49406
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
32 |
#include "utilities/ostream.hpp" |
7397 | 33 |
|
1 | 34 |
// The AttachListener thread services a queue of operations that are enqueued |
35 |
// by client tools. Each operation is identified by a name and has up to 3 |
|
36 |
// arguments. The operation name is mapped to a function which performs the |
|
37 |
// operation. The function is called with an outputStream which is can use to |
|
38 |
// write any result data (for examples the properties command serializes |
|
39 |
// properties names and values to the output stream). When the function |
|
40 |
// complets the result value and any result data is returned to the client |
|
41 |
// tool. |
|
42 |
||
43 |
class AttachOperation; |
|
44 |
||
45 |
typedef jint (*AttachOperationFunction)(AttachOperation* op, outputStream* out); |
|
46 |
||
47 |
struct AttachOperationFunctionInfo { |
|
48 |
const char* name; |
|
49 |
AttachOperationFunction func; |
|
50 |
}; |
|
51 |
||
52 |
class AttachListener: AllStatic { |
|
53 |
public: |
|
18931
5de3638104b4
7162400: Intermittent java.io.IOException: Bad file number during HotSpotVirtualMachine.executeCommand
allwin
parents:
15484
diff
changeset
|
54 |
static void vm_start() NOT_SERVICES_RETURN; |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13195
diff
changeset
|
55 |
static void init() NOT_SERVICES_RETURN; |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13195
diff
changeset
|
56 |
static void abort() NOT_SERVICES_RETURN; |
1 | 57 |
|
58 |
// invoke to perform clean-up tasks when all clients detach |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13195
diff
changeset
|
59 |
static void detachall() NOT_SERVICES_RETURN; |
1 | 60 |
|
61 |
// indicates if the Attach Listener needs to be created at startup |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13195
diff
changeset
|
62 |
static bool init_at_startup() NOT_SERVICES_RETURN_(false); |
1 | 63 |
|
64 |
// indicates if we have a trigger to start the Attach Listener |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13195
diff
changeset
|
65 |
static bool is_init_trigger() NOT_SERVICES_RETURN_(false); |
1 | 66 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13195
diff
changeset
|
67 |
#if !INCLUDE_SERVICES |
1 | 68 |
static bool is_attach_supported() { return false; } |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13195
diff
changeset
|
69 |
#else |
1 | 70 |
private: |
71 |
static volatile bool _initialized; |
|
72 |
||
73 |
public: |
|
74 |
static bool is_initialized() { return _initialized; } |
|
75 |
static void set_initialized() { _initialized = true; } |
|
76 |
||
77 |
// indicates if this VM supports attach-on-demand |
|
78 |
static bool is_attach_supported() { return !DisableAttachMechanism; } |
|
79 |
||
80 |
// platform specific initialization |
|
81 |
static int pd_init(); |
|
82 |
||
83 |
// platform specific operation |
|
84 |
static AttachOperationFunctionInfo* pd_find_operation(const char* name); |
|
85 |
||
86 |
// platform specific flag change |
|
87 |
static jint pd_set_flag(AttachOperation* op, outputStream* out); |
|
88 |
||
89 |
// platform specific detachall |
|
90 |
static void pd_detachall(); |
|
91 |
||
92 |
// platform specific data dump |
|
93 |
static void pd_data_dump(); |
|
94 |
||
95 |
// dequeue the next operation |
|
96 |
static AttachOperation* dequeue(); |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13195
diff
changeset
|
97 |
#endif // !INCLUDE_SERVICES |
22197
41ea552a447d
6730115: Fastdebug VM crashes with "ExceptionMark destructor expects no pending exceptions" error
zgu
parents:
18931
diff
changeset
|
98 |
|
41ea552a447d
6730115: Fastdebug VM crashes with "ExceptionMark destructor expects no pending exceptions" error
zgu
parents:
18931
diff
changeset
|
99 |
private: |
41ea552a447d
6730115: Fastdebug VM crashes with "ExceptionMark destructor expects no pending exceptions" error
zgu
parents:
18931
diff
changeset
|
100 |
static bool has_init_error(TRAPS); |
1 | 101 |
}; |
102 |
||
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13195
diff
changeset
|
103 |
#if INCLUDE_SERVICES |
13195 | 104 |
class AttachOperation: public CHeapObj<mtInternal> { |
1 | 105 |
public: |
106 |
enum { |
|
107 |
name_length_max = 16, // maximum length of name |
|
108 |
arg_length_max = 1024, // maximum length of argument |
|
109 |
arg_count_max = 3 // maximum number of arguments |
|
110 |
}; |
|
111 |
||
112 |
// name of special operation that can be enqueued when all |
|
113 |
// clients detach |
|
114 |
static char* detachall_operation_name() { return (char*)"detachall"; } |
|
115 |
||
116 |
private: |
|
117 |
char _name[name_length_max+1]; |
|
118 |
char _arg[arg_count_max][arg_length_max+1]; |
|
119 |
||
120 |
public: |
|
121 |
const char* name() const { return _name; } |
|
122 |
||
123 |
// set the operation name |
|
124 |
void set_name(char* name) { |
|
49406
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
125 |
assert(strlen(name) <= name_length_max, "exceeds maximum name length"); |
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
126 |
size_t len = MIN2(strlen(name), (size_t)name_length_max); |
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
127 |
memcpy(_name, name, len); |
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
128 |
_name[len] = '\0'; |
1 | 129 |
} |
130 |
||
131 |
// get an argument value |
|
132 |
const char* arg(int i) const { |
|
133 |
assert(i>=0 && i<arg_count_max, "invalid argument index"); |
|
134 |
return _arg[i]; |
|
135 |
} |
|
136 |
||
137 |
// set an argument value |
|
138 |
void set_arg(int i, char* arg) { |
|
139 |
assert(i>=0 && i<arg_count_max, "invalid argument index"); |
|
140 |
if (arg == NULL) { |
|
141 |
_arg[i][0] = '\0'; |
|
142 |
} else { |
|
49406
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
143 |
assert(strlen(arg) <= arg_length_max, "exceeds maximum argument length"); |
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
144 |
size_t len = MIN2(strlen(arg), (size_t)arg_length_max); |
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
145 |
memcpy(_arg[i], arg, len); |
f654b37c58a1
8199010: attachListener.hpp: Fix potential null termination issue found by coverity scans
clanger
parents:
47216
diff
changeset
|
146 |
_arg[i][len] = '\0'; |
1 | 147 |
} |
148 |
} |
|
149 |
||
150 |
// create an operation of a given name |
|
151 |
AttachOperation(char* name) { |
|
152 |
set_name(name); |
|
153 |
for (int i=0; i<arg_count_max; i++) { |
|
154 |
set_arg(i, NULL); |
|
155 |
} |
|
156 |
} |
|
157 |
||
158 |
// complete operation by sending result code and any result data to the client |
|
159 |
virtual void complete(jint result, bufferedStream* result_stream) = 0; |
|
160 |
}; |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13195
diff
changeset
|
161 |
#endif // INCLUDE_SERVICES |
7397 | 162 |
|
163 |
#endif // SHARE_VM_SERVICES_ATTACHLISTENER_HPP |