com.github.cambierr.lorawanpacket.DataPayload Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of LoRaWanPacket Show documentation
Show all versions of LoRaWanPacket Show documentation
This is a library do decode LoRaWan packets
The newest version!
/*
* The MIT License
*
* Copyright 2016 cambierr.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.github.cambierr.lorawanpacket;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.Key;
import java.security.NoSuchAlgorithmException;
import java.util.Arrays;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.spec.SecretKeySpec;
/**
*
* @author cambierr
*/
public class DataPayload implements FRMPayload {
private MacPayload mac;
private byte[] payload;
private byte[] nwkSKey;
private byte[] appSKey;
public DataPayload(MacPayload _mac, ByteBuffer _raw) {
mac = _mac;
_raw.order(ByteOrder.LITTLE_ENDIAN);
payload = new byte[_raw.remaining() - 4];
_raw.get(payload);
}
public DataPayload(MacPayload _mac) {
mac = _mac;
mac.setPayload(this);
}
public byte[] computeMic() {
if (nwkSKey == null) {
throw new RuntimeException("undefined nwkSKey");
}
//size = mhdr + MacPayload + 16 (B0)
ByteBuffer body = ByteBuffer.allocate(1 + mac.length() + 16);
body.order(ByteOrder.LITTLE_ENDIAN);
body.put((byte) 0x49);
body.put(new byte[]{0x00, 0x00, 0x00, 0x00});
body.put(mac.getPhyPayload().getDirection().value());
body.put(mac.getFhdr().getDevAddr());
body.putInt(mac.getFhdr().getfCnt());
body.put((byte) 0x00);
body.put((byte) (1 + mac.length()));
body.put(mac.getPhyPayload().getMHDR());
mac.toRaw(body);
AesCmac aesCmac;
try {
aesCmac = new AesCmac();
aesCmac.init(new SecretKeySpec(nwkSKey, "AES"));
aesCmac.updateBlock(body.array());
return Arrays.copyOfRange(aesCmac.doFinal(), 0, 4);
} catch (NoSuchAlgorithmException | InvalidKeyException | InvalidAlgorithmParameterException ex) {
throw new RuntimeException("Could not compute AesCmac", ex);
}
}
@Override
public int length() {
return payload.length;
}
@Override
public void toRaw(ByteBuffer _bb) {
_bb.order(ByteOrder.LITTLE_ENDIAN);
_bb.put(payload);
}
public byte[] getClearPayLoad() throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
byte[] key;
if (mac.getfPort() == 0) {
if (nwkSKey == null) {
throw new RuntimeException("undefined nwkSKey");
}
key = nwkSKey;
} else {
if (appSKey == null) {
throw new RuntimeException("undefined appSKey");
}
key = appSKey;
}
int k = (int) Math.ceil(payload.length / 16.0);
ByteBuffer a = ByteBuffer.allocate(16 * k);
a.order(ByteOrder.LITTLE_ENDIAN);
for (int i = 1; i <= k; i++) {
a.put((byte) 0x01);
a.put(new byte[]{0x00, 0x00, 0x00, 0x00});
a.put(mac.getPhyPayload().getDirection().value());
a.put(mac.getFhdr().getDevAddr());
a.putInt(mac.getFhdr().getfCnt());
a.put((byte) 0x00);
a.put((byte) i);
}
Key aesKey = new SecretKeySpec(key, "AES");
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.ENCRYPT_MODE, aesKey);
byte[] s = cipher.doFinal(a.array());
byte[] paddedPayload = new byte[16 * k];
System.arraycopy(payload, 0, paddedPayload, 0, payload.length);
byte[] plainPayload = new byte[payload.length];
for (int i = 0; i < payload.length; i++) {
plainPayload[i] = (byte) (s[i] ^ paddedPayload[i]);
}
return plainPayload;
}
public DataPayload setClearPayLoad(byte[] _data) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
byte[] key;
if (mac.getfPort() == 0) {
if (nwkSKey == null) {
throw new RuntimeException("undefined nwkSKey");
}
key = nwkSKey;
} else {
if (appSKey == null) {
throw new RuntimeException("undefined appSKey");
}
key = appSKey;
}
int k = (int) Math.ceil(_data.length / 16.0);
ByteBuffer a = ByteBuffer.allocate(16 * k);
a.order(ByteOrder.LITTLE_ENDIAN);
for (int i = 1; i <= k; i++) {
a.put((byte) 0x01);
a.put(new byte[]{0x00, 0x00, 0x00, 0x00});
a.put(mac.getPhyPayload().getDirection().value());
a.put(mac.getFhdr().getDevAddr());
a.putInt(mac.getFhdr().getfCnt());
a.put((byte) 0x00);
a.put((byte) i);
}
Key aesKey = new SecretKeySpec(key, "AES");
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.ENCRYPT_MODE, aesKey);
byte[] s = cipher.doFinal(a.array());
byte[] paddedPayload = new byte[16 * k];
System.arraycopy(_data, 0, paddedPayload, 0, _data.length);
payload = new byte[_data.length];
for (int i = 0; i < _data.length; i++) {
payload[i] = (byte) (s[i] ^ paddedPayload[i]);
}
return this;
}
public MacPayload getMac() {
return mac;
}
public DataPayload setMac(MacPayload _mac) {
this.mac = _mac;
return this;
}
public byte[] getPayload() {
return payload;
}
public DataPayload setPayload(byte[] _payload) {
this.payload = _payload;
return this;
}
@Override
public boolean validateMic() {
return Arrays.equals(computeMic(), mac.getPhyPayload().getMic());
}
public DataPayload setNwkSKey(byte[] _nwkSKey) {
nwkSKey = _nwkSKey;
return this;
}
public byte[] getNwkSKey() {
return nwkSKey;
}
public DataPayload setAppSKey(byte[] _appSKey) {
appSKey = _appSKey;
return this;
}
public byte[] getAppSKey() {
return appSKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy