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

io.pkts.packet.sip.header.ViaHeader Maven / Gradle / Ivy

There is a newer version: 3.0.10
Show newest version
/**
 * 
 */
package io.pkts.packet.sip.header;

import static io.pkts.packet.sip.impl.PreConditions.assertArgument;
import static io.pkts.packet.sip.impl.PreConditions.assertNotEmpty;
import static io.pkts.packet.sip.impl.PreConditions.assertNotNull;
import io.pkts.buffer.Buffer;
import io.pkts.buffer.Buffers;
import io.pkts.packet.sip.SipParseException;
import io.pkts.packet.sip.header.impl.ViaHeaderImpl;
import io.pkts.packet.sip.impl.SipParser;

import java.io.IOException;
import java.util.List;
import java.util.UUID;
import java.util.function.Supplier;

/**
 * Source rfc 3261 section 8.1.1.7
 * 
 * 

* The Via header field indicates the transport used for the transaction and * identifies the location where the response is to be sent. A Via header field * value is added only after the transport that will be used to reach the next * hop has been selected (which may involve the usage of the procedures in [4]). *

* *

* When the UAC creates a request, it MUST insert a Via into that request. The * protocol name and protocol version in the header field MUST be SIP and 2.0, * respectively. The Via header field value MUST contain a branch parameter. * This parameter is used to identify the transaction created by that request. * This parameter is used by both the client and the server. *

* *

* The branch parameter value MUST be unique across space and time for all * requests sent by the UA. The exceptions to this rule are CANCEL and ACK for * non-2xx responses. As discussed below, a CANCEL request will have the same * value of the branch parameter as the request it cancels. As discussed in * Section 17.1.1.3, an ACK for a non-2xx response will also have the same * branch ID as the INVITE whose response it acknowledges. *

* *

* The uniqueness property of the branch ID parameter, to facilitate its use as * a transaction ID, was not part of RFC 2543. *

* *

* The branch ID inserted by an element compliant with this specification MUST * always begin with the characters "z9hG4bK". These 7 characters are used as a * magic cookie (7 is deemed sufficient to ensure that an older RFC 2543 * implementation would not pick such a value), so that servers receiving the * request can determine that the branch ID was constructed in the fashion * described by this specification (that is, globally unique). Beyond this * requirement, the precise format of the branch token is * implementation-defined. *

* *

* The Via header maddr, ttl, and sent-by components will be set when the * request is processed by the transport layer (Section 18). *

* *

* Via processing for proxies is described in Section 16.6 Item 8 and Section * 16.7 Item 3. *

* * @author [email protected] * */ public interface ViaHeader extends Parameters, SipHeader { Buffer NAME = Buffers.wrap("Via"); /** * The protocol, which typically is "UDP", "TCP" or "TLS" but can really be * anything according to RFC3261. * * @return */ Buffer getTransport(); Buffer getHost(); int getPort(); Buffer getReceived(); void setReceived(Buffer received); /** * For a request, the rport value will not be filled out since the * downstream element will do so when it discovers the rport parameter on a * {@link ViaHeader}. Hence, if you use {@link #getRPort()} you will not * correctly be able to determine whether this {@link ViaHeader} actually * has the rport parameter present or if it is simply not set yet. However, * this method will return true if the rport parameter exists on the * {@link ViaHeader}, irrespectively whether it has a value or not. * * @return */ boolean hasRPort(); /** * Get the value of the rport parameter. -1 (negative one) will be returned * if the value is not set. Note, if you get -1 that doesn't mean that the * rport is not present on the {@link ViaHeader}. To make sure that the * {@link ViaHeader} indeed has the rport parameter set, use the * {@link #hasRPort()}. * * @return */ int getRPort(); void setRPort(int port); /** * The branch-parameter is mandatory and as such should always be there. * However, everything is done lazily in this library so there is not a 100% * guarantee that the branch header actually is present. Hence, you MUST be * prepared to check for null in case the Via-header is bad. If important to * your application (and if you are building a stack it probably will be) * then please call {@link #verify()} on your headers since that will * guarantee that they conform to whatever the various RFC's mandates. * * @return */ Buffer getBranch(); void setBranch(Buffer branch); int getTTL(); /** * Convenience method for checking whether the protocol is UDP or not. * * @return */ boolean isUDP(); /** * Convenience method for checking whether the protocol is TCP or not. * * @return */ boolean isTCP(); /** * Convenience method for checking whether the protocol is TLS or not. * * @return */ boolean isTLS(); /** * Convenience method for checking whether the protocol is SCTP or not. * * @return */ boolean isSCTP(); @Override ViaHeader clone(); /** * Frame a buffer into a {@link ViaHeader}. * * NOTE, this method assumes that you have already stripped off the header name "Via". * * @param buffer * @return * @throws SipParseException */ public static ViaHeader frame(final Buffer buffer) throws SipParseException { try { final Buffer original = buffer.slice(); final Object[] result = SipParser.consumeVia(buffer); final Buffer transport = (Buffer) result[0]; final Buffer host = (Buffer) result[1]; final Buffer port = result[2] == null ? null : (Buffer) result[2]; final List params = (List) result[3]; return new ViaHeaderImpl(original, transport, host, port, params); } catch (final IOException e) { throw new SipParseException(0, "Unable to frame the Via header due to IOException", e); } } /** * Generate a cryptographic * * @return */ static Buffer generateBranch() { // TODO: change to something else. return Buffers.wrap("z9hG4bK-" + UUID.randomUUID().toString()); } /** * Factory method for obtaining a {@link ViaHeaderBuilder}. * * @return */ static ViaHeaderBuilder with() { return new ViaHeaderBuilder(); } public static class ViaHeaderBuilder { private static final Buffer udp = Buffers.wrap("UDP"); private static final Buffer tcp = Buffers.wrap("TCP"); private static final Buffer tls = Buffers.wrap("TLS"); private static final Buffer sctp = Buffers.wrap("SCTP"); private static final Buffer ws = Buffers.wrap("WS"); private int port = -1; private Buffer host; private Buffer branch; private Buffer transport; public ViaHeaderBuilder port(final int port) { assertArgument(port > 0, "Port must be greater than zer"); this.port = port; return this; } /** * Set the transport. Normally, you should really use the {@link #transportUDP()} methods * rather than this. * * @param transport * @return * @throws SipParseException in case the transport is not any of UDP, TCP, TLS, SCTP or WS. */ public ViaHeaderBuilder transport(final Buffer transport) throws SipParseException { assertNotNull(transport); if (SipParser.isUDP(transport) || SipParser.isTCP(transport) || SipParser.isTLS(transport) || SipParser.isWS(transport) || SipParser.isSCTP(transport)) { this.transport = transport.clone(); return this; } throw new SipParseException(0, "Illegal transport"); } public ViaHeaderBuilder transport(final String transport) throws SipParseException { return transport(Buffers.wrap(assertNotEmpty(transport, "Transport cannot be null or the empty string"))); } public ViaHeaderBuilder host(final Buffer host) { this.host = assertNotEmpty(host, "Host cannot be empty or null"); return this; } public ViaHeaderBuilder host(final String host) { assertNotEmpty(host, "Host cannot be empty or null"); this.host = Buffers.wrap(host); return this; } public ViaHeaderBuilder branch(final Buffer branch) { this.branch = assertNotEmpty(branch, "Branch cannot be empty or null."); return this; } public ViaHeaderBuilder branch(final String branch) { assertNotEmpty(branch, "Branch cannot be empty or null."); this.branch = Buffers.wrap(branch); return this; } public ViaHeaderBuilder branch(final Supplier branch) { assertNotNull(branch); this.branch = branch.get(); return this; } public ViaHeaderBuilder transportUDP() { this.transport = udp.clone(); return this; } public ViaHeaderBuilder transportSCTP() { this.transport = sctp.clone(); return this; } public ViaHeaderBuilder transportTCP() { this.transport = tcp.clone(); return this; } public ViaHeaderBuilder transportTLS() { this.transport = tls.clone(); return this; } public ViaHeaderBuilder transportWS() { this.transport = ws.clone(); return this; } public ViaHeader build() throws SipParseException { if (host == null) { throw new SipParseException("Missing host, cannot create ViaHeader"); } return new ViaHeaderImpl(transport, host, port, branch); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy