View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
4   //  ------------------------------------------------------------------------
5   //  All rights reserved. This program and the accompanying materials
6   //  are made available under the terms of the Eclipse Public License v1.0
7   //  and Apache License v2.0 which accompanies this distribution.
8   //
9   //      The Eclipse Public License is available at
10  //      http://www.eclipse.org/legal/epl-v10.html
11  //
12  //      The Apache License v2.0 is available at
13  //      http://www.opensource.org/licenses/apache2.0.php
14  //
15  //  You may elect to redistribute this code under either of these licenses.
16  //  ========================================================================
17  //
18  
19  package org.eclipse.jetty.rewrite.handler;
20  
21  import java.io.IOException;
22  
23  import javax.servlet.http.HttpServletRequest;
24  import javax.servlet.http.HttpServletResponse;
25  
26  import org.eclipse.jetty.http.HttpHeader;
27  import org.eclipse.jetty.http.HttpHeaderValue;
28  import org.eclipse.jetty.util.StringMap;
29  
30  /**
31   * MSIE (Microsoft Internet Explorer) SSL Rule.
32   * Disable keep alive for SSL from IE5 or IE6 on Windows 2000.
33   *  
34   * 
35   *
36   */
37  public class MsieSslRule extends Rule
38  {
39      private static final int IEv5 = '5';
40      private static final int IEv6 = '6';
41      private static StringMap __IE6_BadOS = new StringMap();
42      {
43          __IE6_BadOS.put("NT 5.01", Boolean.TRUE);
44          __IE6_BadOS.put("NT 5.0",Boolean.TRUE);
45          __IE6_BadOS.put("NT 4.0",Boolean.TRUE);
46          __IE6_BadOS.put("98",Boolean.TRUE);
47          __IE6_BadOS.put("98; Win 9x 4.90",Boolean.TRUE);
48          __IE6_BadOS.put("95",Boolean.TRUE);
49          __IE6_BadOS.put("CE",Boolean.TRUE);
50      }
51      
52      public MsieSslRule()
53      {
54          _handling = false;
55          _terminating = false;
56      }
57      
58      @Override
59      public String matchAndApply(String target, HttpServletRequest request, HttpServletResponse response) throws IOException
60      {
61          if (request.isSecure())
62          {
63              String user_agent = request.getHeader(HttpHeader.USER_AGENT.asString());
64              
65              if (user_agent!=null)
66              {
67                  int msie=user_agent.indexOf("MSIE");
68                  if (msie>0 && user_agent.length()-msie>5)
69                  {
70                      // Get Internet Explorer Version
71                      int ieVersion = user_agent.charAt(msie+5);
72                      
73                      if ( ieVersion<=IEv5)
74                      {
75                          response.setHeader(HttpHeader.CONNECTION.asString(), HttpHeaderValue.CLOSE.asString());
76                          return target;
77                      }
78  
79                      if (ieVersion==IEv6)
80                      {
81                          int windows = user_agent.indexOf("Windows",msie+5);
82                          if (windows>0)
83                          {
84                              int end=user_agent.indexOf(')',windows+8);
85                              if(end<0 || __IE6_BadOS.get(user_agent,windows+8,end-windows-8)!=null)
86                              {
87                                  response.setHeader(HttpHeader.CONNECTION.asString(), HttpHeaderValue.CLOSE.asString());
88                                  return target;
89                              }
90                          }
91                      }
92                  }
93              }
94          }
95          return null;
96      }
97  }