View Javadoc
1   /*
2    * Copyright 2014 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License,
5    * version 2.0 (the "License"); you may not use this file except in compliance
6    * with the License. You may obtain a copy of the License at:
7    *
8    *   https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations
14   * under the License.
15   */
16  
17  package io.netty.handler.codec.socksx.v5;
18  
19  import io.netty.buffer.ByteBuf;
20  import io.netty.channel.ChannelHandlerContext;
21  import io.netty.handler.codec.DecoderException;
22  import io.netty.handler.codec.DecoderResult;
23  import io.netty.handler.codec.ReplayingDecoder;
24  import io.netty.handler.codec.socksx.v5.Socks5PasswordAuthRequestDecoder.State;
25  import io.netty.util.CharsetUtil;
26  import io.netty.util.internal.UnstableApi;
27  
28  import java.util.List;
29  
30  /**
31   * Decodes a single {@link Socks5PasswordAuthRequest} from the inbound {@link ByteBuf}s.
32   * On successful decode, this decoder will forward the received data to the next handler, so that
33   * other handler can remove or replace this decoder later.  On failed decode, this decoder will
34   * discard the received data, so that other handler closes the connection later.
35   */
36  public class Socks5PasswordAuthRequestDecoder extends ReplayingDecoder<State> {
37  
38      @UnstableApi
39      public enum State {
40          INIT,
41          SUCCESS,
42          FAILURE
43      }
44  
45      public Socks5PasswordAuthRequestDecoder() {
46          super(State.INIT);
47      }
48  
49      @Override
50      protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
51          try {
52              switch (state()) {
53              case INIT: {
54                  final int startOffset = in.readerIndex();
55                  final byte version = in.getByte(startOffset);
56                  if (version != 1) {
57                      throw new DecoderException("unsupported subnegotiation version: " + version + " (expected: 1)");
58                  }
59  
60                  final int usernameLength = in.getUnsignedByte(startOffset + 1);
61                  final int passwordLength = in.getUnsignedByte(startOffset + 2 + usernameLength);
62                  final int totalLength = usernameLength + passwordLength + 3;
63  
64                  in.skipBytes(totalLength);
65                  out.add(new DefaultSocks5PasswordAuthRequest(
66                          in.toString(startOffset + 2, usernameLength, CharsetUtil.US_ASCII),
67                          in.toString(startOffset + 3 + usernameLength, passwordLength, CharsetUtil.US_ASCII)));
68  
69                  checkpoint(State.SUCCESS);
70              }
71              case SUCCESS: {
72                  int readableBytes = actualReadableBytes();
73                  if (readableBytes > 0) {
74                      out.add(in.readRetainedSlice(readableBytes));
75                  }
76                  break;
77              }
78              case FAILURE: {
79                  in.skipBytes(actualReadableBytes());
80                  break;
81              }
82              }
83          } catch (Exception e) {
84              fail(out, e);
85          }
86      }
87  
88      private void fail(List<Object> out, Exception cause) {
89          if (!(cause instanceof DecoderException)) {
90              cause = new DecoderException(cause);
91          }
92  
93          checkpoint(State.FAILURE);
94  
95          Socks5Message m = new DefaultSocks5PasswordAuthRequest("", "");
96          m.setDecoderResult(DecoderResult.failure(cause));
97          out.add(m);
98      }
99  }