/* This file is part of the OdinMS Maple Story Server Copyright (C) 2008 ~ 2010 Patrick Huy <patrick.huy@frz.cc> Matthias Butz <matze@odinms.de> Jan Christian Meyer <vimes@odinms.de> This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation. You may not use, modify or distribute this program under any other version of the GNU Affero General Public License. This program 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package handling.mina; import clientside.MapleClient; import tools.MapleAESOFB; import tools.MapleCustomEncryption; import java.util.concurrent.locks.Lock; import org.apache.mina.core.buffer.IoBuffer; import org.apache.mina.core.session.IoSession; import org.apache.mina.filter.codec.ProtocolEncoder; import org.apache.mina.filter.codec.ProtocolEncoderOutput; public class MaplePacketEncoder implements ProtocolEncoder { @Override public void encode(final IoSession session, final Object message, final ProtocolEncoderOutput out) throws Exception { final MapleClient client = (MapleClient) session.getAttribute(MapleClient.CLIENT_KEY); if (client != null) { final MapleAESOFB send_crypto = client.getSendCrypto(); final byte[] inputInitialPacket = ((byte[]) message); final byte[] unencrypted = new byte[inputInitialPacket.length]; System.arraycopy(inputInitialPacket, 0, unencrypted, 0, inputInitialPacket.length); // Copy the input > "unencrypted" final byte[] ret = new byte[unencrypted.length + 4]; // Create new bytes with length = "unencrypted" + 4 final Lock mutex = client.getLock(); mutex.lock(); try { final byte[] header = send_crypto.getPacketHeader(unencrypted.length); MapleCustomEncryption.encryptData(unencrypted); // Encrypting Data send_crypto.crypt(unencrypted); // Crypt it with IV System.arraycopy(header, 0, ret, 0, 4); // Copy the header > "Ret", first 4 bytes } finally { mutex.unlock(); } System.arraycopy(unencrypted, 0, ret, 4, unencrypted.length); // Copy the unencrypted > "ret" out.write(IoBuffer.wrap(ret)); } else { // no client object created yet, send unencrypted (hello) out.write(IoBuffer.wrap(((byte[]) message))); } } @Override public void dispose(IoSession session) throws Exception { // nothing to do } }