58 const char* _cmd;
59 size_t _cmd_len;
60 const char* _args;
61 size_t _args_len;
62 public:
63 CmdLine(const char* line, size_t len, bool no_command_name);
64 const char* args_addr() const { return _args; }
65 size_t args_len() const { return _args_len; }
66 const char* cmd_addr() const { return _cmd; }
67 size_t cmd_len() const { return _cmd_len; }
68 bool is_empty() { return _cmd_len == 0; }
69 bool is_executable() { return is_empty() || _cmd[0] != '#'; }
70 bool is_stop() { return !is_empty() && strncmp("stop", _cmd, _cmd_len) == 0; }
71 };
72
73 // Iterator class taking a character string in input and returning a CmdLine
74 // instance for each command line. The argument delimiter has to be specified.
75 class DCmdIter : public StackObj {
76 friend class DCmd;
77 private:
78 const char* _str;
79 char _delim;
80 size_t _len;
81 size_t _cursor;
82 public:
83
84 DCmdIter(const char* str, char delim) {
85 _str = str;
86 _delim = delim;
87 _len = strlen(str);
88 _cursor = 0;
89 }
90 bool has_next() { return _cursor < _len; }
91 CmdLine next() {
92 assert(_cursor <= _len, "Cannot iterate more");
93 size_t n = _cursor;
94 while (n < _len && _str[n] != _delim) n++;
95 CmdLine line(&(_str[_cursor]), n - _cursor, false);
96 _cursor = n + 1;
97 // The default copy constructor of CmdLine is used to return a CmdLine
98 // instance to the caller.
99 return line;
100 }
101 };
102
103 // Iterator class to iterate over diagnostic command arguments
104 class DCmdArgIter : public ResourceObj {
105 const char* _buffer;
106 size_t _len;
107 size_t _cursor;
108 const char* _key_addr;
109 size_t _key_len;
110 const char* _value_addr;
111 size_t _value_len;
112 char _delim;
113 public:
114 DCmdArgIter(const char* buf, size_t len, char delim) {
115 _buffer = buf;
116 _len = len;
117 _delim = delim;
118 _cursor = 0;
119 }
120 bool next(TRAPS);
121 const char* key_addr() { return _key_addr; }
122 size_t key_length() { return _key_len; }
123 const char* value_addr() { return _value_addr; }
124 size_t value_length() { return _value_len; }
125 };
126
127 // A DCmdInfo instance provides a description of a diagnostic command. It is
128 // used to export the description to the JMX interface of the framework.
129 class DCmdInfo : public ResourceObj {
130 protected:
131 const char* _name; /* Name of the diagnostic command */
132 const char* _description; /* Short description */
133 const char* _impact; /* Impact on the JVM */
134 JavaPermission _permission; /* Java Permission required to execute this command if any */
135 int _num_arguments; /* Number of supported options or arguments */
136 bool _is_enabled; /* True if the diagnostic command can be invoked, false otherwise */
137 public:
138 DCmdInfo(const char* name,
139 const char* description,
140 const char* impact,
141 JavaPermission permission,
142 int num_arguments,
143 bool enabled) {
144 this->_name = name;
146 this->_impact = impact;
147 this->_permission = permission;
148 this->_num_arguments = num_arguments;
149 this->_is_enabled = enabled;
150 }
151 const char* name() const { return _name; }
152 const char* description() const { return _description; }
153 const char* impact() const { return _impact; }
154 JavaPermission permission() const { return _permission; }
155 int num_arguments() const { return _num_arguments; }
156 bool is_enabled() const { return _is_enabled; }
157
158 static bool by_name(void* name, DCmdInfo* info);
159 };
160
161 // A DCmdArgumentInfo instance provides a description of a diagnostic command
162 // argument. It is used to export the description to the JMX interface of the
163 // framework.
164 class DCmdArgumentInfo : public ResourceObj {
165 protected:
166 const char* _name; /* Option/Argument name*/
167 const char* _description; /* Short description */
168 const char* _type; /* Type: STRING, BOOLEAN, etc. */
169 const char* _default_string; /* Default value in a parsable string */
170 bool _mandatory; /* True if the option/argument is mandatory */
171 bool _option; /* True if it is an option, false if it is an argument */
172 /* (see diagnosticFramework.hpp for option/argument definitions) */
173 bool _multiple; /* True is the option can be specified several time */
174 int _position; /* Expected position for this argument (this field is */
175 /* meaningless for options) */
176 public:
177 DCmdArgumentInfo(const char* name, const char* description, const char* type,
178 const char* default_string, bool mandatory, bool option,
179 bool multiple) {
180 this->_name = name;
181 this->_description = description;
182 this->_type = type;
183 this->_default_string = default_string;
184 this->_option = option;
185 this->_mandatory = mandatory;
186 this->_option = option;
187 this->_multiple = multiple;
188 this->_position = -1;
189 }
190 DCmdArgumentInfo(const char* name, const char* description, const char* type,
191 const char* default_string, bool mandatory, bool option,
192 bool multiple, int position) {
193 this->_name = name;
194 this->_description = description;
195 this->_type = type;
196 this->_default_string = default_string;
197 this->_option = option;
198 this->_mandatory = mandatory;
199 this->_option = option;
200 this->_multiple = multiple;
201 this->_position = position;
202 }
203 const char* name() const { return _name; }
204 const char* description() const { return _description; }
205 const char* type() const { return _type; }
206 const char* default_string() const { return _default_string; }
207 bool is_mandatory() const { return _mandatory; }
208 bool is_option() const { return _option; }
209 bool is_multiple() const { return _multiple; }
210 int position() const { return _position; }
211 };
212
213 // The DCmdParser class can be used to create an argument parser for a
214 // diagnostic command. It is not mandatory to use it to parse arguments.
215 // The DCmdParser parses a CmdLine instance according to the parameters that
216 // have been declared by its associated diagnostic command. A parameter can
217 // either be an option or an argument. Options are identified by the option name
218 // while arguments are identified by their position in the command line. The
219 // position of an argument is defined relative to all arguments passed on the
220 // command line, options are not considered when defining an argument position.
221 // The generic syntax of a diagnostic command is:
222 //
223 // <command name> [<option>=<value>] [<argument_value>]
224 //
225 // Example:
226 //
227 // command_name option1=value1 option2=value argumentA argumentB argumentC
228 //
229 // In this command line, the diagnostic command receives five parameters, two
230 // options named option1 and option2, and three arguments. argumentA's position
231 // is 0, argumentB's position is 1 and argumentC's position is 2.
232 class DCmdParser {
233 private:
234 GenDCmdArgument* _options;
235 GenDCmdArgument* _arguments_list;
236 char _delim;
237 public:
238 DCmdParser() {
239 _options = NULL;
240 _arguments_list = NULL;
241 _delim = ' ';
242 }
243 void add_dcmd_option(GenDCmdArgument* arg);
244 void add_dcmd_argument(GenDCmdArgument* arg);
245 GenDCmdArgument* lookup_dcmd_option(const char* name, size_t len);
246 GenDCmdArgument* arguments_list() { return _arguments_list; };
247 void check(TRAPS);
248 void parse(CmdLine* line, char delim, TRAPS);
249 void print_help(outputStream* out, const char* cmd_name);
250 void reset(TRAPS);
251 void cleanup();
252 int num_arguments();
253 GrowableArray<const char*>* argument_name_array();
254 GrowableArray<DCmdArgumentInfo*>* argument_info_array();
255 };
256
257 // The DCmd class is the parent class of all diagnostic commands
258 // Diagnostic command instances should not be instantiated directly but
259 // created using the associated factory. The factory can be retrieved with
260 // the DCmdFactory::getFactory() method.
261 // A diagnostic command instance can either be allocated in the resource Area
262 // or in the C-heap. Allocation in the resource area is recommended when the
263 // current thread is the only one which will access the diagnostic command
264 // instance. Allocation in the C-heap is required when the diagnostic command
265 // is accessed by several threads (for instance to perform asynchronous
266 // execution).
267 // To ensure a proper cleanup, it's highly recommended to use a DCmdMark for
268 // each diagnostic command instance. In case of a C-heap allocated diagnostic
269 // command instance, the DCmdMark must be created in the context of the last
270 // thread that will access the instance.
271 class DCmd : public ResourceObj {
272 protected:
273 outputStream* _output;
274 bool _is_heap_allocated;
275 public:
276 DCmd(outputStream* output, bool heap_allocated) {
277 _output = output;
278 _is_heap_allocated = heap_allocated;
279 }
280
281 static const char* name() { return "No Name";}
282 static const char* description() { return "No Help";}
283 static const char* disabled_message() { return "Diagnostic command currently disabled"; }
284 // The impact() method returns a description of the intrusiveness of the diagnostic
285 // command on the Java Virtual Machine behavior. The rational for this method is that some
286 // diagnostic commands can seriously disrupt the behavior of the Java Virtual Machine
287 // (for instance a Thread Dump for an application with several tens of thousands of threads,
288 // or a Head Dump with a 40GB+ heap size) and other diagnostic commands have no serious
289 // impact on the JVM (for instance, getting the command line arguments or the JVM version).
290 // The recommended format for the description is <impact level>: [longer description],
291 // where the impact level is selected among this list: {Low, Medium, High}. The optional
292 // longer description can provide more specific details like the fact that Thread Dump
293 // impact depends on the heap size.
294 static const char* impact() { return "Low: No impact"; }
295 // The permission() method returns the description of Java Permission. This
296 // permission is required when the diagnostic command is invoked via the
297 // DiagnosticCommandMBean. The rationale for this permission check is that
298 // the DiagnosticCommandMBean can be used to perform remote invocations of
299 // diagnostic commands through the PlatformMBeanServer. The (optional) Java
300 // Permission associated with each diagnostic command should ease the work
301 // of system administrators to write policy files granting permissions to
302 // execute diagnostic commands to remote users. Any diagnostic command with
303 // a potential impact on security should overwrite this method.
304 static const JavaPermission permission() {
305 JavaPermission p = {NULL, NULL, NULL};
306 return p;
307 }
308 static int num_arguments() { return 0; }
309 outputStream* output() { return _output; }
310 bool is_heap_allocated() { return _is_heap_allocated; }
311 virtual void print_help(const char* name) {
312 output()->print_cr("Syntax: %s", name);
313 }
314 virtual void parse(CmdLine* line, char delim, TRAPS) {
315 DCmdArgIter iter(line->args_addr(), line->args_len(), delim);
316 bool has_arg = iter.next(CHECK);
317 if (has_arg) {
318 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
319 "The argument list of this diagnostic command should be empty.");
320 }
321 }
322 virtual void execute(DCmdSource source, TRAPS) { }
323 virtual void reset(TRAPS) { }
324 virtual void cleanup() { }
325
326 // support for the JMX interface
327 virtual GrowableArray<const char*>* argument_name_array() {
328 GrowableArray<const char*>* array = new GrowableArray<const char*>(0);
329 return array;
330 }
331 virtual GrowableArray<DCmdArgumentInfo*>* argument_info_array() {
332 GrowableArray<DCmdArgumentInfo*>* array = new GrowableArray<DCmdArgumentInfo*>(0);
333 return array;
334 }
335
336 // main method to invoke the framework
337 static void parse_and_execute(DCmdSource source, outputStream* out, const char* cmdline,
338 char delim, TRAPS);
339 };
340
341 class DCmdWithParser : public DCmd {
342 protected:
343 DCmdParser _dcmdparser;
344 public:
345 DCmdWithParser (outputStream *output, bool heap=false) : DCmd(output, heap) { }
346 static const char* name() { return "No Name";}
347 static const char* description() { return "No Help";}
348 static const char* disabled_message() { return "Diagnostic command currently disabled"; }
349 static const char* impact() { return "Low: No impact"; }
350 static const JavaPermission permission() {JavaPermission p = {NULL, NULL, NULL}; return p; }
351 static int num_arguments() { return 0; }
352 virtual void parse(CmdLine *line, char delim, TRAPS);
353 virtual void execute(DCmdSource source, TRAPS) { }
354 virtual void reset(TRAPS);
355 virtual void cleanup();
356 virtual void print_help(const char* name);
357 virtual GrowableArray<const char*>* argument_name_array();
358 virtual GrowableArray<DCmdArgumentInfo*>* argument_info_array();
359 };
360
361 class DCmdMark : public StackObj {
362 DCmd* _ref;
363 public:
364 DCmdMark(DCmd* cmd) { _ref = cmd; }
365 ~DCmdMark() {
366 if (_ref != NULL) {
367 _ref->cleanup();
368 if (_ref->is_heap_allocated()) {
369 delete _ref;
370 }
371 }
372 }
373 };
374
375 // Diagnostic commands are not directly instantiated but created with a factory.
376 // Each diagnostic command class has its own factory. The DCmdFactory class also
377 // manages the status of the diagnostic command (hidden, enabled). A DCmdFactory
378 // has to be registered to make the diagnostic command available (see
379 // management.cpp)
380 class DCmdFactory: public CHeapObj<mtInternal> {
381 private:
382 static Mutex* _dcmdFactory_lock;
383 static bool _send_jmx_notification;
384 static bool _has_pending_jmx_notification;
385 // Pointer to the next factory in the singly-linked list of registered
386 // diagnostic commands
387 DCmdFactory* _next;
388 // When disabled, a diagnostic command cannot be executed. Any attempt to
389 // execute it will result in the printing of the disabled message without
390 // instantiating the command.
391 bool _enabled;
392 // When hidden, a diagnostic command doesn't appear in the list of commands
393 // provided by the 'help' command.
394 bool _hidden;
395 uint32_t _export_flags;
396 int _num_arguments;
397 static DCmdFactory* _DCmdFactoryList;
398 public:
399 DCmdFactory(int num_arguments, uint32_t flags, bool enabled, bool hidden) {
400 _next = NULL;
401 _enabled = enabled;
402 _hidden = hidden;
403 _export_flags = flags;
404 _num_arguments = num_arguments;
405 }
406 bool is_enabled() const { return _enabled; }
407 void set_enabled(bool b) { _enabled = b; }
408 bool is_hidden() const { return _hidden; }
409 void set_hidden(bool b) { _hidden = b; }
410 uint32_t export_flags() { return _export_flags; }
411 void set_export_flags(uint32_t f) { _export_flags = f; }
412 int num_arguments() { return _num_arguments; }
413 DCmdFactory* next() { return _next; }
414 virtual DCmd* create_Cheap_instance(outputStream* output) = 0;
415 virtual DCmd* create_resource_instance(outputStream* output) = 0;
416 virtual const char* name() const = 0;
417 virtual const char* description() const = 0;
418 virtual const char* impact() const = 0;
419 virtual const JavaPermission permission() const = 0;
420 virtual const char* disabled_message() const = 0;
421 // Register a DCmdFactory to make a diagnostic command available.
422 // Once registered, a diagnostic command must not be unregistered.
423 // To prevent a diagnostic command from being executed, just set the
424 // enabled flag to false.
425 static int register_DCmdFactory(DCmdFactory* factory);
426 static DCmdFactory* factory(DCmdSource source, const char* cmd, size_t len);
427 // Returns a C-heap allocated diagnostic command for the given command line
428 static DCmd* create_global_DCmd(DCmdSource source, CmdLine &line, outputStream* out, TRAPS);
429 // Returns a resourceArea allocated diagnostic command for the given command line
430 static DCmd* create_local_DCmd(DCmdSource source, CmdLine &line, outputStream* out, TRAPS);
431 static GrowableArray<const char*>* DCmd_list(DCmdSource source);
432 static GrowableArray<DCmdInfo*>* DCmdInfo_list(DCmdSource source);
433
434 static void set_jmx_notification_enabled(bool enabled) {
435 _send_jmx_notification = enabled;
436 }
437 static void push_jmx_notification_request();
438 static bool has_pending_jmx_notification() { return _has_pending_jmx_notification; }
439 static void send_notification(TRAPS);
440 private:
441 static void send_notification_internal(TRAPS);
442
443 friend class HelpDCmd;
444 };
445
446 // Template to easily create DCmdFactory instances. See management.cpp
447 // where this template is used to create and register factories.
448 template <class DCmdClass> class DCmdFactoryImpl : public DCmdFactory {
449 public:
450 DCmdFactoryImpl(uint32_t flags, bool enabled, bool hidden) :
451 DCmdFactory(DCmdClass::num_arguments(), flags, enabled, hidden) { }
452 // Returns a C-heap allocated instance
453 virtual DCmd* create_Cheap_instance(outputStream* output) {
454 return new (ResourceObj::C_HEAP, mtInternal) DCmdClass(output, true);
455 }
456 // Returns a resourceArea allocated instance
457 virtual DCmd* create_resource_instance(outputStream* output) {
458 return new DCmdClass(output, false);
459 }
460 virtual const char* name() const {
461 return DCmdClass::name();
462 }
463 virtual const char* description() const {
464 return DCmdClass::description();
465 }
466 virtual const char* impact() const {
467 return DCmdClass::impact();
468 }
469 virtual const JavaPermission permission() const {
470 return DCmdClass::permission();
471 }
472 virtual const char* disabled_message() const {
473 return DCmdClass::disabled_message();
474 }
475 };
476
477 // This class provides a convenient way to register Dcmds, without a need to change
|
58 const char* _cmd;
59 size_t _cmd_len;
60 const char* _args;
61 size_t _args_len;
62 public:
63 CmdLine(const char* line, size_t len, bool no_command_name);
64 const char* args_addr() const { return _args; }
65 size_t args_len() const { return _args_len; }
66 const char* cmd_addr() const { return _cmd; }
67 size_t cmd_len() const { return _cmd_len; }
68 bool is_empty() { return _cmd_len == 0; }
69 bool is_executable() { return is_empty() || _cmd[0] != '#'; }
70 bool is_stop() { return !is_empty() && strncmp("stop", _cmd, _cmd_len) == 0; }
71 };
72
73 // Iterator class taking a character string in input and returning a CmdLine
74 // instance for each command line. The argument delimiter has to be specified.
75 class DCmdIter : public StackObj {
76 friend class DCmd;
77 private:
78 const char* const _str;
79 const char _delim;
80 const size_t _len;
81 size_t _cursor;
82 public:
83
84 DCmdIter(const char* str, char delim)
85 : _str(str), _delim(delim), _len(::strlen(str)), _cursor(0) {}
86 bool has_next() const { return _cursor < _len; }
87 CmdLine next() {
88 assert(_cursor <= _len, "Cannot iterate more");
89 size_t n = _cursor;
90 while (n < _len && _str[n] != _delim) n++;
91 CmdLine line(&(_str[_cursor]), n - _cursor, false);
92 _cursor = n + 1;
93 // The default copy constructor of CmdLine is used to return a CmdLine
94 // instance to the caller.
95 return line;
96 }
97 };
98
99 // Iterator class to iterate over diagnostic command arguments
100 class DCmdArgIter : public ResourceObj {
101 const char* const _buffer;
102 const size_t _len;
103 size_t _cursor;
104 const char* _key_addr;
105 size_t _key_len;
106 const char* _value_addr;
107 size_t _value_len;
108 const char _delim;
109 public:
110 DCmdArgIter(const char* buf, size_t len, char delim)
111 : _buffer(buf), _len(len), _delim(delim), _cursor(0) {}
112
113 bool next(TRAPS);
114 const char* key_addr() const { return _key_addr; }
115 size_t key_length() const { return _key_len; }
116 const char* value_addr() const { return _value_addr; }
117 size_t value_length() const { return _value_len; }
118 };
119
120 // A DCmdInfo instance provides a description of a diagnostic command. It is
121 // used to export the description to the JMX interface of the framework.
122 class DCmdInfo : public ResourceObj {
123 protected:
124 const char* _name; /* Name of the diagnostic command */
125 const char* _description; /* Short description */
126 const char* _impact; /* Impact on the JVM */
127 JavaPermission _permission; /* Java Permission required to execute this command if any */
128 int _num_arguments; /* Number of supported options or arguments */
129 bool _is_enabled; /* True if the diagnostic command can be invoked, false otherwise */
130 public:
131 DCmdInfo(const char* name,
132 const char* description,
133 const char* impact,
134 JavaPermission permission,
135 int num_arguments,
136 bool enabled) {
137 this->_name = name;
139 this->_impact = impact;
140 this->_permission = permission;
141 this->_num_arguments = num_arguments;
142 this->_is_enabled = enabled;
143 }
144 const char* name() const { return _name; }
145 const char* description() const { return _description; }
146 const char* impact() const { return _impact; }
147 JavaPermission permission() const { return _permission; }
148 int num_arguments() const { return _num_arguments; }
149 bool is_enabled() const { return _is_enabled; }
150
151 static bool by_name(void* name, DCmdInfo* info);
152 };
153
154 // A DCmdArgumentInfo instance provides a description of a diagnostic command
155 // argument. It is used to export the description to the JMX interface of the
156 // framework.
157 class DCmdArgumentInfo : public ResourceObj {
158 protected:
159 const char* const _name; /* Option/Argument name*/
160 const char* const _description; /* Short description */
161 const char* const _type; /* Type: STRING, BOOLEAN, etc. */
162 const char* const _default_string; /* Default value in a parsable string */
163 const bool _mandatory; /* True if the option/argument is mandatory */
164 const bool _option; /* True if it is an option, false if it is an argument */
165 /* (see diagnosticFramework.hpp for option/argument definitions) */
166 const bool _multiple; /* True is the option can be specified several time */
167 const int _position; /* Expected position for this argument (this field is */
168 /* meaningless for options) */
169 public:
170 DCmdArgumentInfo(const char* name, const char* description, const char* type,
171 const char* default_string, bool mandatory, bool option,
172 bool multiple, int position = -1)
173 : _name(name), _description(description), _type(type)
174 , _default_string(default_string), _mandatory(mandatory)
175 , _option(option), _multiple(multiple), _position(-1) {}
176
177 const char* name() const { return _name; }
178 const char* description() const { return _description; }
179 const char* type() const { return _type; }
180 const char* default_string() const { return _default_string; }
181 bool is_mandatory() const { return _mandatory; }
182 bool is_option() const { return _option; }
183 bool is_multiple() const { return _multiple; }
184 int position() const { return _position; }
185 };
186
187 // The DCmdParser class can be used to create an argument parser for a
188 // diagnostic command. It is not mandatory to use it to parse arguments.
189 // The DCmdParser parses a CmdLine instance according to the parameters that
190 // have been declared by its associated diagnostic command. A parameter can
191 // either be an option or an argument. Options are identified by the option name
192 // while arguments are identified by their position in the command line. The
193 // position of an argument is defined relative to all arguments passed on the
194 // command line, options are not considered when defining an argument position.
195 // The generic syntax of a diagnostic command is:
196 //
197 // <command name> [<option>=<value>] [<argument_value>]
198 //
199 // Example:
200 //
201 // command_name option1=value1 option2=value argumentA argumentB argumentC
202 //
203 // In this command line, the diagnostic command receives five parameters, two
204 // options named option1 and option2, and three arguments. argumentA's position
205 // is 0, argumentB's position is 1 and argumentC's position is 2.
206 class DCmdParser {
207 private:
208 GenDCmdArgument* _options;
209 GenDCmdArgument* _arguments_list;
210 public:
211 DCmdParser()
212 : _options(NULL), _arguments_list(NULL) {}
213 void add_dcmd_option(GenDCmdArgument* arg);
214 void add_dcmd_argument(GenDCmdArgument* arg);
215 GenDCmdArgument* lookup_dcmd_option(const char* name, size_t len);
216 GenDCmdArgument* arguments_list() const { return _arguments_list; };
217 void check(TRAPS);
218 void parse(CmdLine* line, char delim, TRAPS);
219 void print_help(outputStream* out, const char* cmd_name) const;
220 void reset(TRAPS);
221 void cleanup();
222 int num_arguments() const;
223 GrowableArray<const char*>* argument_name_array() const;
224 GrowableArray<DCmdArgumentInfo*>* argument_info_array() const;
225 };
226
227 // The DCmd class is the parent class of all diagnostic commands
228 // Diagnostic command instances should not be instantiated directly but
229 // created using the associated factory. The factory can be retrieved with
230 // the DCmdFactory::getFactory() method.
231 // A diagnostic command instance can either be allocated in the resource Area
232 // or in the C-heap. Allocation in the resource area is recommended when the
233 // current thread is the only one which will access the diagnostic command
234 // instance. Allocation in the C-heap is required when the diagnostic command
235 // is accessed by several threads (for instance to perform asynchronous
236 // execution).
237 // To ensure a proper cleanup, it's highly recommended to use a DCmdMark for
238 // each diagnostic command instance. In case of a C-heap allocated diagnostic
239 // command instance, the DCmdMark must be created in the context of the last
240 // thread that will access the instance.
241 class DCmd : public ResourceObj {
242 protected:
243 outputStream* const _output;
244 const bool _is_heap_allocated;
245 public:
246 DCmd(outputStream* output, bool heap_allocated)
247 : _output(output), _is_heap_allocated(heap_allocated) {}
248
249 static const char* name() { return "No Name";}
250 static const char* description() { return "No Help";}
251 static const char* disabled_message() { return "Diagnostic command currently disabled"; }
252 // The impact() method returns a description of the intrusiveness of the diagnostic
253 // command on the Java Virtual Machine behavior. The rational for this method is that some
254 // diagnostic commands can seriously disrupt the behavior of the Java Virtual Machine
255 // (for instance a Thread Dump for an application with several tens of thousands of threads,
256 // or a Head Dump with a 40GB+ heap size) and other diagnostic commands have no serious
257 // impact on the JVM (for instance, getting the command line arguments or the JVM version).
258 // The recommended format for the description is <impact level>: [longer description],
259 // where the impact level is selected among this list: {Low, Medium, High}. The optional
260 // longer description can provide more specific details like the fact that Thread Dump
261 // impact depends on the heap size.
262 static const char* impact() { return "Low: No impact"; }
263 // The permission() method returns the description of Java Permission. This
264 // permission is required when the diagnostic command is invoked via the
265 // DiagnosticCommandMBean. The rationale for this permission check is that
266 // the DiagnosticCommandMBean can be used to perform remote invocations of
267 // diagnostic commands through the PlatformMBeanServer. The (optional) Java
268 // Permission associated with each diagnostic command should ease the work
269 // of system administrators to write policy files granting permissions to
270 // execute diagnostic commands to remote users. Any diagnostic command with
271 // a potential impact on security should overwrite this method.
272 static const JavaPermission permission() {
273 JavaPermission p = {NULL, NULL, NULL};
274 return p;
275 }
276 static int num_arguments() { return 0; }
277 outputStream* output() const { return _output; }
278 bool is_heap_allocated() const { return _is_heap_allocated; }
279 virtual void print_help(const char* name) const {
280 output()->print_cr("Syntax: %s", name);
281 }
282 virtual void parse(CmdLine* line, char delim, TRAPS) {
283 DCmdArgIter iter(line->args_addr(), line->args_len(), delim);
284 bool has_arg = iter.next(CHECK);
285 if (has_arg) {
286 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
287 "The argument list of this diagnostic command should be empty.");
288 }
289 }
290 virtual void execute(DCmdSource source, TRAPS) { }
291 virtual void reset(TRAPS) { }
292 virtual void cleanup() { }
293
294 // support for the JMX interface
295 virtual GrowableArray<const char*>* argument_name_array() const {
296 GrowableArray<const char*>* array = new GrowableArray<const char*>(0);
297 return array;
298 }
299 virtual GrowableArray<DCmdArgumentInfo*>* argument_info_array() const {
300 GrowableArray<DCmdArgumentInfo*>* array = new GrowableArray<DCmdArgumentInfo*>(0);
301 return array;
302 }
303
304 // main method to invoke the framework
305 static void parse_and_execute(DCmdSource source, outputStream* out, const char* cmdline,
306 char delim, TRAPS);
307 };
308
309 class DCmdWithParser : public DCmd {
310 protected:
311 DCmdParser _dcmdparser;
312 public:
313 DCmdWithParser (outputStream *output, bool heap=false) : DCmd(output, heap) { }
314 static const char* name() { return "No Name";}
315 static const char* description() { return "No Help";}
316 static const char* disabled_message() { return "Diagnostic command currently disabled"; }
317 static const char* impact() { return "Low: No impact"; }
318 static const JavaPermission permission() {JavaPermission p = {NULL, NULL, NULL}; return p; }
319 static int num_arguments() { return 0; }
320 virtual void parse(CmdLine *line, char delim, TRAPS);
321 virtual void execute(DCmdSource source, TRAPS) { }
322 virtual void reset(TRAPS);
323 virtual void cleanup();
324 virtual void print_help(const char* name) const;
325 virtual GrowableArray<const char*>* argument_name_array() const;
326 virtual GrowableArray<DCmdArgumentInfo*>* argument_info_array() const;
327 };
328
329 class DCmdMark : public StackObj {
330 DCmd* const _ref;
331 public:
332 DCmdMark(DCmd* cmd) : _ref(cmd) {}
333 ~DCmdMark() {
334 if (_ref != NULL) {
335 _ref->cleanup();
336 if (_ref->is_heap_allocated()) {
337 delete _ref;
338 }
339 }
340 }
341 };
342
343 // Diagnostic commands are not directly instantiated but created with a factory.
344 // Each diagnostic command class has its own factory. The DCmdFactory class also
345 // manages the status of the diagnostic command (hidden, enabled). A DCmdFactory
346 // has to be registered to make the diagnostic command available (see
347 // management.cpp)
348 class DCmdFactory: public CHeapObj<mtInternal> {
349 private:
350 static Mutex* _dcmdFactory_lock;
351 static bool _send_jmx_notification;
352 static bool _has_pending_jmx_notification;
353 // Pointer to the next factory in the singly-linked list of registered
354 // diagnostic commands
355 DCmdFactory* _next;
356 // When disabled, a diagnostic command cannot be executed. Any attempt to
357 // execute it will result in the printing of the disabled message without
358 // instantiating the command.
359 const bool _enabled;
360 // When hidden, a diagnostic command doesn't appear in the list of commands
361 // provided by the 'help' command.
362 const bool _hidden;
363 const uint32_t _export_flags;
364 const int _num_arguments;
365 static DCmdFactory* _DCmdFactoryList;
366 public:
367 DCmdFactory(int num_arguments, uint32_t flags, bool enabled, bool hidden)
368 : _num_arguments(num_arguments), _enabled(enabled), _hidden(hidden)
369 , _export_flags(flags), _next(NULL) {}
370 bool is_enabled() const { return _enabled; }
371 bool is_hidden() const { return _hidden; }
372 uint32_t export_flags() const { return _export_flags; }
373 int num_arguments() const { return _num_arguments; }
374 DCmdFactory* next() const { return _next; }
375 virtual DCmd* create_resource_instance(outputStream* output) const = 0;
376 virtual const char* name() const = 0;
377 virtual const char* description() const = 0;
378 virtual const char* impact() const = 0;
379 virtual const JavaPermission permission() const = 0;
380 virtual const char* disabled_message() const = 0;
381 // Register a DCmdFactory to make a diagnostic command available.
382 // Once registered, a diagnostic command must not be unregistered.
383 // To prevent a diagnostic command from being executed, just set the
384 // enabled flag to false.
385 static int register_DCmdFactory(DCmdFactory* factory);
386 static DCmdFactory* factory(DCmdSource source, const char* cmd, size_t len);
387 // Returns a resourceArea allocated diagnostic command for the given command line
388 static DCmd* create_local_DCmd(DCmdSource source, CmdLine &line, outputStream* out, TRAPS);
389 static GrowableArray<const char*>* DCmd_list(DCmdSource source);
390 static GrowableArray<DCmdInfo*>* DCmdInfo_list(DCmdSource source);
391
392 static void set_jmx_notification_enabled(bool enabled) {
393 _send_jmx_notification = enabled;
394 }
395 static void push_jmx_notification_request();
396 static bool has_pending_jmx_notification() { return _has_pending_jmx_notification; }
397 static void send_notification(TRAPS);
398 private:
399 static void send_notification_internal(TRAPS);
400
401 friend class HelpDCmd;
402 };
403
404 // Template to easily create DCmdFactory instances. See management.cpp
405 // where this template is used to create and register factories.
406 template <class DCmdClass> class DCmdFactoryImpl : public DCmdFactory {
407 public:
408 DCmdFactoryImpl(uint32_t flags, bool enabled, bool hidden) :
409 DCmdFactory(DCmdClass::num_arguments(), flags, enabled, hidden) { }
410 // Returns a resourceArea allocated instance
411 virtual DCmd* create_resource_instance(outputStream* output) const {
412 return new DCmdClass(output, false);
413 }
414 virtual const char* name() const {
415 return DCmdClass::name();
416 }
417 virtual const char* description() const {
418 return DCmdClass::description();
419 }
420 virtual const char* impact() const {
421 return DCmdClass::impact();
422 }
423 virtual const JavaPermission permission() const {
424 return DCmdClass::permission();
425 }
426 virtual const char* disabled_message() const {
427 return DCmdClass::disabled_message();
428 }
429 };
430
431 // This class provides a convenient way to register Dcmds, without a need to change
|