MaplePacketDecoder.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:3k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.net.mina;
  19. import net.sf.odinms.client.MapleClient;
  20. import net.sf.odinms.tools.MapleAESOFB;
  21. import net.sf.odinms.tools.MapleCustomEncryption;
  22. import org.apache.mina.common.ByteBuffer;
  23. import org.apache.mina.common.IoSession;
  24. import org.apache.mina.filter.codec.CumulativeProtocolDecoder;
  25. import org.apache.mina.filter.codec.ProtocolDecoderOutput;
  26. import org.slf4j.Logger;
  27. import org.slf4j.LoggerFactory;
  28. public class MaplePacketDecoder extends CumulativeProtocolDecoder {
  29. private static final String DECODER_STATE_KEY = MaplePacketDecoder.class.getName() + ".STATE";
  30. private static Logger log = LoggerFactory.getLogger(MaplePacketDecoder.class);
  31. private static class DecoderState {
  32. public int packetlength = -1;
  33. }
  34. @Override
  35. protected boolean doDecode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out) throws Exception {
  36. MapleClient client = (MapleClient) session.getAttribute(MapleClient.CLIENT_KEY);
  37. DecoderState decoderState = (DecoderState) session.getAttribute(DECODER_STATE_KEY);
  38. if (decoderState == null) {
  39. decoderState = new DecoderState();
  40. session.setAttribute(DECODER_STATE_KEY, decoderState);
  41. }
  42. if (in.remaining() >= 4 && decoderState.packetlength == -1) {
  43. int packetHeader = in.getInt();
  44. if (!client.getReceiveCrypto().checkPacket(packetHeader)) {
  45. log.warn(MapleClient.getLogMessage(client, "Client failed packet check -> disconnecting"));
  46. session.close();
  47. return false;
  48. }
  49. decoderState.packetlength = MapleAESOFB.getPacketLength(packetHeader);
  50. } else if (in.remaining() < 4 && decoderState.packetlength == -1) {
  51. log.trace("decode... not enough data");
  52. return false;
  53. }
  54. if (in.remaining() >= decoderState.packetlength) {
  55. byte decryptedPacket[] = new byte[decoderState.packetlength];
  56. in.get(decryptedPacket, 0, decoderState.packetlength);
  57. decoderState.packetlength = -1;
  58. client.getReceiveCrypto().crypt(decryptedPacket);
  59. MapleCustomEncryption.decryptData(decryptedPacket);
  60. out.write(decryptedPacket);
  61. return true;
  62. } else {
  63. log.trace("decode... not enough data to decode (need {})", decoderState.packetlength);
  64. return false;
  65. }
  66. }
  67. }