|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
java.lang.Objectorg.eclipse.jetty.util.component.AbstractLifeCycle
org.eclipse.jetty.util.component.AggregateLifeCycle
org.eclipse.jetty.server.handler.AbstractHandler
org.eclipse.jetty.server.handler.AbstractHandlerContainer
org.eclipse.jetty.server.handler.HandlerWrapper
org.eclipse.jetty.server.handler.IPAccessHandler
public class IPAccessHandler
IP Access Handler
Controls access to the wrapped handler by the real remote IP. Control is provided by white/black lists that include both internet addresses and URIs. This handler uses the real internet address of the connection, not one reported in the forwarded for headers, as this cannot be as easily forged.
Typically, the black/white lists will be used in one of three modes:
An empty white list is treated as match all. If there is at least one entry in the white list, then a request must match a white list entry. Black list entries are always applied, so that even if an entry matches the white list, a black list entry will override it.
Internet addresses may be specified as absolute address or as a combination of four octet wildcard specifications (a.b.c.d) that are defined as follows.
nnn - an absolute value (0-255)
mmm-nnn - an inclusive range of absolute values,
with following shorthand notations:
nnn- => nnn-255
-nnn => 0-nnn
- => 0-255
a,b,... - a list of wildcard specifications
Internet address specification is separated from the URI pattern using the "|" (pipe) character. URI patterns follow the servlet specification for simple * prefix and suffix wild cards (e.g. /, /foo, /foo/bar, /foo/bar/*, *.baz).
Earlier versions of the handler used internet address prefix wildcard specification to define a range of the internet addresses (e.g. 127., 10.10., 172.16.1.). They also used the first "/" character of the URI pattern to separate it from the internet address. Both of these features have been deprecated in the current version.
Examples of the entry specifications are:
Earlier versions of the handler used internet address prefix wildcard specification to define a range of the internet addresses (e.g. 127., 10.10., 172.16.1.). They also used the first "/" character of the URI pattern to separate it from the internet address. Both of these features have been deprecated in the current version.
| 嵌套类摘要 |
|---|
| 从类 org.eclipse.jetty.util.component.AbstractLifeCycle 继承的嵌套类/接口 |
|---|
AbstractLifeCycle.AbstractLifeCycleListener |
| 从接口 org.eclipse.jetty.util.component.LifeCycle 继承的嵌套类/接口 |
|---|
LifeCycle.Listener |
| 字段摘要 |
|---|
| 从类 org.eclipse.jetty.server.handler.HandlerWrapper 继承的字段 |
|---|
_handler |
| 从类 org.eclipse.jetty.util.component.AbstractLifeCycle 继承的字段 |
|---|
_listeners, FAILED, RUNNING, STARTED, STARTING, STOPPED, STOPPING |
| 构造方法摘要 | |
|---|---|
IPAccessHandler()
Creates new handler object |
|
IPAccessHandler(String[] white,
String[] black)
Creates new handler object and initializes white- and black-list |
|
| 方法摘要 | |
|---|---|
protected void |
add(String entry,
IPAddressMap<PathMap> patternMap)
Helper method to parse the new entry and add it to the specified address pattern map. |
void |
addBlack(String entry)
Add a blacklist entry to an existing handler configuration |
void |
addWhite(String entry)
Add a whitelist entry to an existing handler configuration |
protected void |
doStart()
Dump the white- and black-list configurations when started |
String |
dump()
Dump the handler configuration |
protected void |
dump(StringBuilder buf,
IPAddressMap<PathMap> patternMap)
Dump a pattern map into a StringBuilder buffer |
void |
handle(String target,
Request baseRequest,
HttpServletRequest request,
HttpServletResponse response)
Checks the incoming request against the whitelist and blacklist |
protected boolean |
isAddrUriAllowed(String addr,
String path)
Check if specified request is allowed by current IPAccess rules. |
protected void |
set(String[] entries,
IPAddressMap<PathMap> patternMap)
Helper method to process a list of new entries and replace the content of the specified address pattern map |
void |
setBlack(String[] entries)
Re-initialize the blacklist of existing handler object |
void |
setWhite(String[] entries)
Re-initialize the whitelist of existing handler object |
| 从类 org.eclipse.jetty.server.handler.HandlerWrapper 继承的方法 |
|---|
destroy, doStop, expandChildren, getHandler, getHandlers, getNestedHandlerByClass, setHandler, setServer |
| 从类 org.eclipse.jetty.server.handler.AbstractHandlerContainer 继承的方法 |
|---|
dump, expandHandler, findContainerOf, getChildHandlerByClass, getChildHandlers, getChildHandlersByClass |
| 从类 org.eclipse.jetty.server.handler.AbstractHandler 继承的方法 |
|---|
dumpThis, getServer |
| 从类 org.eclipse.jetty.util.component.AggregateLifeCycle 继承的方法 |
|---|
addBean, addBean, contains, dump, dump, dump, dumpObject, dumpStdErr, getBean, getBeans, getBeans, isManaged, manage, removeBean, removeBeans, unmanage |
| 从类 org.eclipse.jetty.util.component.AbstractLifeCycle 继承的方法 |
|---|
addLifeCycleListener, getState, getState, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop |
| 从类 java.lang.Object 继承的方法 |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| 从接口 org.eclipse.jetty.util.component.LifeCycle 继承的方法 |
|---|
addLifeCycleListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop |
| 构造方法详细信息 |
|---|
public IPAccessHandler()
public IPAccessHandler(String[] white,
String[] black)
white - array of whitelist entriesblack - array of blacklist entries| 方法详细信息 |
|---|
public void addWhite(String entry)
entry - new whitelist entrypublic void addBlack(String entry)
entry - new blacklist entrypublic void setWhite(String[] entries)
entries - array of whitelist entriespublic void setBlack(String[] entries)
entries - array of blacklist entries
public void handle(String target,
Request baseRequest,
HttpServletRequest request,
HttpServletResponse response)
throws IOException,
ServletException
Handler 中的 handleHandlerWrapper 中的 handletarget - The target of the request - either a URI or a name.baseRequest - The original unwrapped request object.request - The request either as the Request
object or a wrapper of that request. The AbstractHttpConnection.getCurrentConnection()
method can be used access the Request object if required.response - The response as the Response
object or a wrapper of that request. The AbstractHttpConnection.getCurrentConnection()
method can be used access the Response object if required.
IOException
ServletExceptionHandlerWrapper.handle(java.lang.String, org.eclipse.jetty.server.Request, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
protected void add(String entry,
IPAddressMap<PathMap> patternMap)
entry - new entrypatternMap - target address pattern map
protected void set(String[] entries,
IPAddressMap<PathMap> patternMap)
entries - new entriespatternMap - target address pattern map
protected boolean isAddrUriAllowed(String addr,
String path)
addr - internet addresspath - context path
protected void doStart()
throws Exception
HandlerWrapper 中的 doStartExceptionHandlerWrapper.doStart()public String dump()
Dumpable 中的 dumpAggregateLifeCycle 中的 dump
protected void dump(StringBuilder buf,
IPAddressMap<PathMap> patternMap)
buf - bufferpatternMap - pattern map to dump
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||