All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tuwien.auto.calimero.knxnetip.KNXnetIPTunnel Maven / Gradle / Ivy

There is a newer version: 2.6-rc1
Show newest version
/*
    Calimero 2 - A library for KNX network access
    Copyright (c) 2006, 2015 B. Malinowsky

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

    Linking this library statically or dynamically with other modules is
    making a combined work based on this library. Thus, the terms and
    conditions of the GNU General Public License cover the whole
    combination.

    As a special exception, the copyright holders of this library give you
    permission to link this library with independent modules to produce an
    executable, regardless of the license terms of these independent
    modules, and to copy and distribute the resulting executable under terms
    of your choice, provided that you also meet, for each linked independent
    module, the terms and conditions of the license of that module. An
    independent module is a module which is not derived from or based on
    this library. If you modify this library, you may extend this exception
    to your version of the library, but you are not obligated to do so. If
    you do not wish to do so, delete this exception statement from your
    version.
*/

package tuwien.auto.calimero.knxnetip;

import java.io.IOException;
import java.net.DatagramPacket;
import java.net.InetAddress;
import java.net.InetSocketAddress;

import tuwien.auto.calimero.CloseEvent;
import tuwien.auto.calimero.cemi.CEMI;
import tuwien.auto.calimero.cemi.CEMIBusMon;
import tuwien.auto.calimero.cemi.CEMILData;
import tuwien.auto.calimero.exception.KNXException;
import tuwien.auto.calimero.exception.KNXFormatException;
import tuwien.auto.calimero.exception.KNXIllegalArgumentException;
import tuwien.auto.calimero.exception.KNXIllegalStateException;
import tuwien.auto.calimero.exception.KNXInvalidResponseException;
import tuwien.auto.calimero.exception.KNXRemoteException;
import tuwien.auto.calimero.exception.KNXTimeoutException;
import tuwien.auto.calimero.knxnetip.servicetype.ErrorCodes;
import tuwien.auto.calimero.knxnetip.servicetype.KNXnetIPHeader;
import tuwien.auto.calimero.knxnetip.servicetype.PacketHelper;
import tuwien.auto.calimero.knxnetip.servicetype.ServiceAck;
import tuwien.auto.calimero.knxnetip.servicetype.ServiceRequest;
import tuwien.auto.calimero.knxnetip.util.TunnelCRI;
import tuwien.auto.calimero.log.LogLevel;

/**
 * KNXnet/IP connection for KNX tunneling.
 * 

* The tunneling protocol specifies a point-to-point exchange of KNX frames over an IP * network connection between two KNXnet/IP devices - client and server.
* Up to now, only the client side is implemented.
* The communication on OSI layer 4 is done using UDP.
* * @author B. Malinowsky */ public class KNXnetIPTunnel extends ClientConnection { /** * Connection type used to tunnel between two KNXnet/IP devices (client / server). *

*/ public static final int TUNNEL_CONNECTION = 0x04; /** * Tunneling on busmonitor layer, establishes a busmonitor tunnel to the KNX network. *

*/ public static final int BUSMONITOR_LAYER = 0x80; /** * Tunneling on link layer, establishes a link layer tunnel to the KNX network. *

*/ public static final int LINK_LAYER = 0x02; /** * Tunneling on raw layer, establishes a raw tunnel to the KNX network. *

*/ public static final int RAW_LAYER = 0x04; // client SHALL wait 1 second for acknowledgment response to a // tunneling request from server private static final int TUNNELING_REQ_TIMEOUT = 1; private final int layer; /** * Creates a new KNXnet/IP tunneling connection to a remote server. *

* Establishing a raw tunneling layer ({@link #RAW_LAYER}) is not supported yet.
* * @param knxLayer KNX tunneling layer (e.g. {@link #LINK_LAYER}) * @param localEP specifies the local endpoint with the socket address to be used by * the tunnel * @param serverCtrlEP control endpoint of the server to establish connection to * @param useNAT true to use a NAT (network address translation) aware * communication mechanism, false to use the default way * @throws KNXException on socket communication error * @throws KNXTimeoutException on no connect response before connect timeout * @throws KNXRemoteException if response indicates an error condition at the server * concerning the request * @throws KNXInvalidResponseException if connect response is in wrong format * @throws InterruptedException on interrupted thread while creating tunneling * connection */ public KNXnetIPTunnel(final int knxLayer, final InetSocketAddress localEP, final InetSocketAddress serverCtrlEP, final boolean useNAT) throws KNXException, InterruptedException { super(KNXnetIPHeader.TUNNELING_REQ, KNXnetIPHeader.TUNNELING_ACK, 2, TUNNELING_REQ_TIMEOUT); if (knxLayer == RAW_LAYER) throw new KNXIllegalArgumentException("raw tunnel to KNX network not supported"); if (knxLayer != LINK_LAYER && knxLayer != BUSMONITOR_LAYER) throw new KNXIllegalArgumentException("unknown KNX layer"); layer = knxLayer; connect(localEP, serverCtrlEP, new TunnelCRI(knxLayer), useNAT); } /** * Sends a cEMI frame to the remote server communicating with this endpoint. *

* Sending in busmonitor mode is not permitted.
* * @param frame cEMI message to send, the expected cEMI type is according to the used * tunneling layer */ public void send(final CEMI frame, final BlockingMode mode) throws KNXTimeoutException, KNXConnectionClosedException { if (layer == BUSMONITOR_LAYER) throw new KNXIllegalStateException("send not permitted in busmonitor mode"); if (!(frame instanceof CEMILData)) throw new KNXIllegalArgumentException("unsupported cEMI type"); super.send(frame, mode); } /* (non-Javadoc) * @see tuwien.auto.calimero.knxnetip.KNXnetIPConnection#getName() */ public String getName() { return "KNXnet/IP Tunneling " + super.getName(); } /* (non-Javadoc) * @see tuwien.auto.calimero.knxnetip.ClientConnection#handleServiceType * (tuwien.auto.calimero.knxnetip.servicetype.KNXnetIPHeader, byte[], int, * java.net.InetAddress, int) */ protected boolean handleServiceType(final KNXnetIPHeader h, final byte[] data, final int offset, final InetAddress src, final int port) throws KNXFormatException, IOException { if (super.handleServiceType(h, data, offset, src, port)) return true; final int svc = h.getServiceType(); if (svc != serviceRequest) return false; final ServiceRequest req = getServiceRequest(h, data, offset); if (!checkChannelId(req.getChannelID(), "request")) return true; final int seq = req.getSequenceNumber(); if (seq == getSeqRcv() || ((seq + 1) & 0xFF) == getSeqRcv()) { final int status = h.getVersion() == KNXNETIP_VERSION_10 ? ErrorCodes.NO_ERROR : ErrorCodes.VERSION_NOT_SUPPORTED; final byte[] buf = PacketHelper.toPacket(new ServiceAck(serviceAck, channelId, seq, status)); final DatagramPacket p = new DatagramPacket(buf, buf.length, dataEndpt.getAddress(), dataEndpt.getPort()); socket.send(p); if (status == ErrorCodes.VERSION_NOT_SUPPORTED) { close(CloseEvent.INTERNAL, "protocol version changed", LogLevel.ERROR, null); return true; } } else logger.warn("tunneling request with invalid rcv-seq " + seq + ", expected " + getSeqRcv()); if (seq == getSeqRcv()) { incSeqRcv(); final CEMI cemi = req.getCEMI(); // leave if we are working with an empty (broken) service request if (cemi == null) return true; if (cemi.getMessageCode() == CEMILData.MC_LDATA_IND || cemi.getMessageCode() == CEMIBusMon.MC_BUSMON_IND) fireFrameReceived(cemi); else if (cemi.getMessageCode() == CEMILData.MC_LDATA_CON) { // invariant: notify listener before return from blocking send fireFrameReceived(cemi); setStateNotify(OK); } else if (cemi.getMessageCode() == CEMILData.MC_LDATA_REQ) logger.warn("received L-Data request - ignored"); } else logger.warn("skipped tunneling request with rcv-seq " + seq); return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy