Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
5c3b97c9
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5c3b97c9
编写于
10月 09, 2008
作者:
D
dfuchs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6332953: JMX agent should bind to loopback address when starting the local connector server
Reviewed-by: emcmanus
上级
45ed04f5
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
154 addition
and
6 deletion
+154
-6
src/share/classes/sun/management/jmxremote/ConnectorBootstrap.java
.../classes/sun/management/jmxremote/ConnectorBootstrap.java
+19
-5
src/share/classes/sun/management/jmxremote/LocalRMIServerSocketFactory.java
...sun/management/jmxremote/LocalRMIServerSocketFactory.java
+114
-0
src/share/lib/management/management.properties
src/share/lib/management/management.properties
+21
-1
未找到文件。
src/share/classes/sun/management/jmxremote/ConnectorBootstrap.java
浏览文件 @
5c3b97c9
...
...
@@ -80,7 +80,7 @@ import sun.management.AgentConfigurationError;
import
static
sun
.
management
.
AgentConfigurationError
.*;
import
sun.management.ConnectorAddressLink
;
import
sun.management.FileSystem
;
import
sun.management.snmp.util.Mib
Logger
;
import
com.sun.jmx.remote.util.Class
Logger
;
import
com.sun.jmx.remote.internal.RMIExporter
;
import
com.sun.jmx.remote.security.JMXPluggableAuthenticator
;
...
...
@@ -115,6 +115,8 @@ public final class ConnectorBootstrap {
"com.sun.management.jmxremote.port"
;
public
static
final
String
CONFIG_FILE_NAME
=
"com.sun.management.config.file"
;
public
static
final
String
USE_LOCAL_ONLY
=
"com.sun.management.jmxremote.local.only"
;
public
static
final
String
USE_SSL
=
"com.sun.management.jmxremote.ssl"
;
public
static
final
String
USE_REGISTRY_SSL
=
...
...
@@ -384,7 +386,7 @@ public final class ConnectorBootstrap {
checkAccessFile
(
accessFileName
);
}
if
(
log
.
isD
ebugOn
())
{
if
(
log
.
d
ebugOn
())
{
log
.
debug
(
"initialize"
,
Agent
.
getText
(
"jmxremote.ConnectorBootstrap.initialize"
)
+
"\n\t"
+
PropertyNames
.
PORT
+
"="
+
port
+
...
...
@@ -477,6 +479,18 @@ public final class ConnectorBootstrap {
MBeanServer
mbs
=
ManagementFactory
.
getPlatformMBeanServer
();
try
{
JMXServiceURL
url
=
new
JMXServiceURL
(
"rmi"
,
localhost
,
0
);
// Do we accept connections from local interfaces only?
Properties
props
=
Agent
.
getManagementProperties
();
if
(
props
==
null
)
{
props
=
new
Properties
();
}
String
useLocalOnlyStr
=
props
.
getProperty
(
PropertyNames
.
USE_LOCAL_ONLY
,
DefaultValues
.
USE_LOCAL_ONLY
);
boolean
useLocalOnly
=
Boolean
.
valueOf
(
useLocalOnlyStr
).
booleanValue
();
if
(
useLocalOnly
)
{
env
.
put
(
RMIConnectorServer
.
RMI_SERVER_SOCKET_FACTORY_ATTRIBUTE
,
new
LocalRMIServerSocketFactory
());
}
JMXConnectorServer
server
=
JMXConnectorServerFactory
.
newJMXConnectorServer
(
url
,
env
,
mbs
);
server
.
start
();
...
...
@@ -764,7 +778,7 @@ public final class ConnectorBootstrap {
private
ConnectorBootstrap
()
{
}
// XXX Revisit: should probably clone this MibLogger....
private
static
final
MibLogger
log
=
new
MibLogger
(
ConnectorBootstrap
.
class
);
private
static
final
ClassLogger
log
=
new
ClassLogger
(
ConnectorBootstrap
.
class
.
getPackage
().
getName
(),
"ConnectorBootstrap"
);
}
src/share/classes/sun/management/jmxremote/LocalRMIServerSocketFactory.java
0 → 100644
浏览文件 @
5c3b97c9
/*
* Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
package
sun.management.jmxremote
;
import
java.io.IOException
;
import
java.net.InetAddress
;
import
java.net.NetworkInterface
;
import
java.net.ServerSocket
;
import
java.net.Socket
;
import
java.net.SocketException
;
import
java.rmi.server.RMIServerSocketFactory
;
import
java.util.Enumeration
;
/**
* This RMI server socket factory creates server sockets that
* will only accept connection requests from clients running
* on the host where the RMI remote objects have been exported.
*/
public
final
class
LocalRMIServerSocketFactory
implements
RMIServerSocketFactory
{
/**
* Creates a server socket that only accepts connection requests from
* clients running on the host where the RMI remote objects have been
* exported.
*/
public
ServerSocket
createServerSocket
(
int
port
)
throws
IOException
{
return
new
ServerSocket
(
port
)
{
@Override
public
Socket
accept
()
throws
IOException
{
Socket
socket
=
super
.
accept
();
InetAddress
remoteAddr
=
socket
.
getInetAddress
();
final
String
msg
=
"The server sockets created using the "
+
"LocalRMIServerSocketFactory only accept connections "
+
"from clients running on the host where the RMI "
+
"remote objects have been exported."
;
if
(
remoteAddr
.
isAnyLocalAddress
())
{
// local address: accept the connection.
return
socket
;
}
// Retrieve all the network interfaces on this host.
Enumeration
<
NetworkInterface
>
nis
;
try
{
nis
=
NetworkInterface
.
getNetworkInterfaces
();
}
catch
(
SocketException
e
)
{
try
{
socket
.
close
();
}
catch
(
IOException
ioe
)
{
// Ignore...
}
throw
new
IOException
(
msg
,
e
);
}
// Walk through the network interfaces to see
// if any of them matches the client's address.
// If true, then the client's address is local.
while
(
nis
.
hasMoreElements
())
{
NetworkInterface
ni
=
nis
.
nextElement
();
Enumeration
<
InetAddress
>
addrs
=
ni
.
getInetAddresses
();
while
(
addrs
.
hasMoreElements
())
{
InetAddress
localAddr
=
addrs
.
nextElement
();
if
(
localAddr
.
equals
(
remoteAddr
))
{
return
socket
;
}
}
}
// The client's address is remote so refuse the connection.
try
{
socket
.
close
();
}
catch
(
IOException
ioe
)
{
// Ignore...
}
throw
new
IOException
(
msg
);
}
};
}
/**
* Two LocalRMIServerSocketFactory objects
* are equal if they are of the same type.
*/
@Override
public
boolean
equals
(
Object
obj
)
{
return
(
obj
instanceof
LocalRMIServerSocketFactory
);
}
/**
* Returns a hash code value for this LocalRMIServerSocketFactory.
*/
@Override
public
int
hashCode
()
{
return
getClass
().
hashCode
();
}
}
src/share/lib/management/management.properties
浏览文件 @
5c3b97c9
...
...
@@ -82,7 +82,7 @@
#
# com.sun.management.snmp.interface=<InetAddress>
# Specifies the local interface on which the SNMP agent will bind.
# This is useful
l
when running on machines which have several
# This is useful when running on machines which have several
# interfaces defined. It makes it possible to listen to a specific
# subnet accessible through that interface.
# Default for this property is "localhost".
...
...
@@ -143,6 +143,26 @@
# running MBean server, the connector, or the registry.
#
#
# ########## RMI connector settings for local management ##########
#
# com.sun.management.jmxremote.local.only=true|false
# Default for this property is true. (Case for true/false ignored)
# If this property is specified as true then the local JMX RMI connector
# server will only accept connection requests from clients running on
# the host where the out-of-the-box JMX management agent is running.
# In order to ensure backwards compatibility this property could be
# set to false. However, deploying the local management agent in this
# way is discouraged because the local JMX RMI connector server will
# accept connection requests from any client either local or remote.
# For remote management the remote JMX RMI connector server should
# be used instead with authentication and SSL/TLS encryption enabled.
#
# For allowing the local management agent accept local
# and remote connection requests use the following line
# com.sun.management.jmxremote.local.only=false
#
# ###################### RMI SSL #############################
#
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录