1 Release Notes

Releases are listed in reverse chronological order, most recent first.

1.1  diameter 1.4.2

Fixed Bugs and Malfunctions

  • Fix handling of 5014 (INVALID_AVP_LENGTH) errors.

    This was in some cases reported as 3009 (INVALID_AVP_BITS).

    Note that the correction is partially implemented in modules generated by diameterc(1): a dictionary file must be recompiled for the correction to apply to any messages it defines.

    Own Id: OTP-11007

  • Fix faulty capitalization in release notes.

    Diameter = the protocol.
    diameter = the Erlang application.

    Own Id: OTP-11014

  • Fix watchdog memory leak.

    Entries were not removed from a service-specific ets table, causing them to be orphaned at connection reestablishment for listening transports, and diameter:remove_transport/2 for both listening and connecting transports.

    The fault was introduced by OTP-10692 in diameter-1.4.1 (R16B).

    Own Id: OTP-11019 Aux Id: OTP-10692

  • Fix decode failure on AVP Length < 8.

    The failure caused the message in question to be discarded.

    Own Id: OTP-11026

  • Respect Host-IP-Address configuration.

    Addresses returned from a transport module were always used to populate Host-IP-Address AVP's in an outgoing CER/CEA, which precluded the sending of a VIP address. Transport addresses are now only used if Host-IP-Address is unspecified.

    Own Id: OTP-11045

  • Fix mkdir race.

    Install could fail if examples/code and examples/dict were created in parallel. Noticed on FreeBSD.

    Own Id: OTP-11051

  • Fix recognition of 5001 on mandatory AVP's.

    An AVP setting the M-bit was not regarded as erroneous if it was defined in the dictionary in question and its container (message or Grouped AVP) had an 'AVP' field. It's now regarded as a 5001 error (AVP_UNSUPPORTED), as in the case that the AVP is not defined.

    Note that the correction is partially implemented in modules generated by diameterc(1): a dictionary file must be recompiled for the correction to apply to any messages it defines.

    Own Id: OTP-11087

  • Fix setting of Failed-AVP on handle_request {answer_message, 5xxx} return.

    Failed-AVP was never in the outgoing answer-message. It is now set with the AVP from the first entry with the specified Result-Code in the errors field of the incoming diameter_packet, if found.

    Own Id: OTP-11092

  • Fix watchdog function_clause

    A listening transport on a service that allowed multiple connections to the same peer could result in a function_clause error in module diameter_watchdog. The resulting crash was harmless but unseemly.

    Thanks to Aleksander Nycz.

    Own Id: OTP-11115

  • Fix population of Failed-AVP.

    In cases in which diameter populated this AVP, many values were sent instead of one as suggested by RFC 6733. This was partially corrected by OTP-11007.

    Own Id: OTP-11127 Aux Id: OTP-11007

  • Fix list-valued Vendor-Specific-Application-Id config

    R16B (specifically, OTP-10760) broke the handling of such configuration, resulting in a function clause error if the list was not of length 3, and faulty interpretation of the list's contents otherwise. Only record-valued configuration was properly interpreted.

    Own Id: OTP-11165

Improvements and New Features

  • Allow peer connections to be shared between Erlang nodes for the purpose of sending outgoing requests.

    A diameter_app(3) pick_peer/4 callback gets a list of remote candidates as argument, allowing a callback on one node to select a transport connection established on another node. The service_opt() share_peers controls the extent to which local connections are shared with remote nodes. The service_opt() use_shared_peers controls the extent to which connections shared from remote nodes are utilized on the local node.

    Own Id: OTP-9610

  • Allow listening diameter_{tcp,sctp} transports to be configured with remote addresses.

    Option 'accept' allows remote addresses to be configured as tuples or regular expressions. Remote addresses are matched against the configured values at connection establishment, any non-matching address causing the connection to be aborted.

    Own Id: OTP-10893

  • Detect more transport_opt() configuration errors at diameter:add_transport/2.

    Many errors would previously not be detected until transport start, diameter:add_transport/2 returning 'ok' but transport connections failing to be established. An error tuple is now returned.

    Own Id: OTP-10972

  • Make explicit local address configuration optional in diameter_tcp:start/3.

    The default address (as determined by gen_tcp) is now used when a local address is not explicitly configured.

    Own Id: OTP-10986

  • Improve handling of unrecognized service options.

    Such options were silently ignored by diameter:start_service/2. An error tuple is now returned.

    Own Id: OTP-11017

  • Don't send default Inband-Security-Id in CER/CEA.

    RFC 6733 recommends against the use of Inband-Security-Id. Only send a value that differs from the default, NO_INBAND_SECURITY = 0.

    Own Id: OTP-11050

  • Make spawn options for request processes configurable.

    Own Id: OTP-11060

1.2  diameter 1.4.1.1

Fixed Bugs and Malfunctions

  • Fix broken Vendor-Specific-Application-Id configuration.

    RFC 6733 changed the definition of this Grouped AVP, changing the arity of Vendor-Id from 1* to 1. A component Vendor-Id can now be either list- or integer-valued in service and transport configuration, allowing it to be used with both RFC 3588 and RFC 6733 dictionaries.

    Own Id: OTP-10942

Improvements and New Features

  • Add transport_opt() watchdog_config to allow non-standard behaviour of the watchdog state machine.

    This can be useful during test but should not be used on nodes that must conform to RFC 3539.

    Own Id: OTP-10898

1.3  diameter 1.4.1

Fixed Bugs and Malfunctions

  • Fix erroneous watchdog transition from DOWN to INITIAL.

    This transition took place when a peer connection was reestablished following a failed capabilities exchange. RFC 3539 requires DOWN to transition into REOPEN.

    Own Id: OTP-10692

Improvements and New Features

  • Add application_opt() request_errors to make the handling of incoming requests containing decode errors configurable.

    The value 'callback' ensures that a handle_request callback takes place for all such requests, the default being for diameter to answer 3xxx series errors itself.

    Own Id: OTP-10686

  • Add transport_opt() length_errors.

    The value determines how messages received over the transport interface with an incorrect Message Length are dealt with.

    Own Id: OTP-10687

  • Add commentary on RFC 6733 to Standards Compliance chapter of the User's Guide.

    Own Id: OTP-10688

  • Allow a 5xxx result code in an answer-message on peer connections using the RFC 6733 common dictionary.

    RFC 6733 allows this while RFC 3588 does not. A handle_request callback can return {answer_message, 3000..3999|5000..5999} in the simplest case.

    Own Id: OTP-10759

  • Add dictionaries for RFC 6733.

    Both the common and accounting dictionaries differ from their RFC 3588 counterparts, which is reflected in generated record definitions. Application configuration on a service or transport determines the dictionary that will be used on a given peer connection.

    Own Id: OTP-10760

  • Allow a handle_request callback to control diameter's setting of Result-Code and Failed-AVP.

    Setting errors = false in a returned #diameter_packet{} disables the setting.

    Own Id: OTP-10761

1.4  diameter 1.4

Fixed Bugs and Malfunctions

  • Add registered server names to the app file.

    Own Id: OTP-10442

  • Fix #diameter_header{} handling broken by OTP-10445.

    The fault caused the the header of a [Header | Avps] request to be ignored if both end_to_end_id and hop_by_hop_id were undefined.

    Own Id: OTP-10609

  • Fix error handling for handle_request callback.

    A callback that returned a #diameter_packet{} would fail if the incoming request had decode errors.

    Own Id: OTP-10614

  • Fix timing of service start event.

    The event did not necessarily precede other events as documented.

    Own Id: OTP-10618

  • Fix setting of header T flag at peer failover.

    The flag is now set in the diameter_header record passed to a prepare_retransmit callback.

    Own Id: OTP-10619

  • Fix sending of CER/CEA timeout event at capx_timeout.

    The event was not sent as documented.

    Own Id: OTP-10628

  • Fix improper setting of Application-ID in the Diameter header of an answer message whose E flag is set.

    The value should be that of the request in question. The fault caused it always to be 0.

    Own Id: OTP-10655

  • Fix faulty handling of AVP length errors.

    An incorrect AVP length but no other errors caused an incoming request to fail.

    Own Id: OTP-10693

1.5  diameter 1.3.1

Known Bugs and Problems

  • Fix function clause resulting from use of an eval callback.

    Own Id: OTP-10685

1.6  diameter 1.3

Fixed Bugs and Malfunctions

  • Fix faulty handling of Origin-State-Id and faulty config values.

    The former was expected in a list despite the documentation requiring (correctly) an integer. A bare value for a list-valued capability was not handled.

    Own Id: OTP-10440

  • Fix timing of up/down events.

    Previously, a call to diameter:call/4 following a peer_up callback might incorrectly return {error, no_connection}, depending on timing. Both events now follow the corresponding callbacks.

    Own Id: OTP-10459

  • Make diameter:service_info/2 usable in peer_up, peer_down and pick_peer callbacks.

    Except for in pick_peer when {call_mutates_state, false}, it would previously hang indefinitely.

    Own Id: OTP-10460

  • Verify that End-to-End and Hop-by-Hop Identifiers in an incoming CEA/DPA match those sent in the corresponding CER/DPR.

    The values were previously ignored. Answers whose identifiers do not match are handled as unexpected.

    Own Id: OTP-10565

  • Fix formatting problems in PDF documentation.

    In particular, text corresponding to links in HTML was omitted in preformatted blocks. There are still issues with indentation but this is not diameter-specific.

    Own Id: OTP-10583

Improvements and New Features

  • Let prepare_request, prepare_retransmit and handle_request callbacks return a function to be invoked on outgoing messages after encode.

    This allows encoded messages to be logged for example.

    Own Id: OTP-10441

  • Add service_opt() 'restrict_connections' to allow multiple transport connections with the same peer.

    Own Id: OTP-10443

  • Add service_opt() 'sequence' to allow the masking of a constant onto the topmost bits of End-to-End and Hop-by-Hop identifiers.

    This allows the same service on different nodes to use distinct values in outgoing request messages.

    Own Id: OTP-10445

  • Add diameter:service_info(PeerRef) to return the transport_ref() and transport_opt() list of the corresponding transport.

    This allows easy access to these from diameter_app callbacks that only get peer_ref() as an argument.

    Own Id: OTP-10470

  • Add reference pages diameter_codec(3) and diameter_make(3).

    Own Id: OTP-10471

  • Add events for service start and stop.

    Own Id: OTP-10492

  • Add transport_opt() 'disconnect_cb' to make the sending of DPR configurable.

    Whether or not DPR should be sent at application stop, service stop or transport removal is determined by the value returned by the callback, as is the Disconnect-Cause and timeout if DPA is not received.

    Own Id: OTP-10493

  • Add transport_opt() 'capx_timeout' for the timeout associated with non-reception of CER/CEA.

    Own Id: OTP-10554

  • Allow a handle_request callback to return a #diameter_packet{}.

    This allows an answer to set transport_data and header fields.

    Own Id: OTP-10566

  • Update documentation for RFC 6733.

    RFC 3588 is now obsolete.

    Own Id: OTP-10568

1.7  diameter 1.2

Fixed Bugs and Malfunctions

  • Fix broken Result-Code setting and Destination-Host/Realm extraction.

    Result-Code was assumed to have arity 1 when setting this value in an answer to a request containing AVP decode errors. Destination-Host/Realm were only correctly extracted from messages in the common application.

    Own Id: OTP-10202

  • Handle insufficient capabilities configuration more gracefully.

    A transport that does not have sufficient capabilities configuration in order to encode CER/CEA will now emit an error report noting the configuration error and exit instead of failing. The error is not detected at diameter:add_transport/2 since there is no requirement that a service be configured before its transports.

    Own Id: OTP-10203

  • Ensure a failing peer_up/down callback does not affect transport connections to other peers.

    Such a failure would previously have taken down all of a service's connections.

    Own Id: OTP-10215

Improvements and New Features

  • Statistics related to Diameter messages can be retrieved using diameter:service_info/2.

    Both Diameter and socket-level statistics are available, for both incoming and outgoing messages.

    Own Id: OTP-9608

  • Allow multiple transport_module/config to diameter:add_transport/2.

    Multiple values are attempted in sequence until one results in an established connection. This provides a way for a connecting transport to specify configuration in order of preference. (For example, SCTP before TCP.)

    Own Id: OTP-9885

  • Add events for state transitions in the RFC 3539 watchdog state machine.

    The watchdog state is also available through diameter:service_info/2.

    Own Id: OTP-10212

  • Add diameter:service_info(SvcName, connections).

    This provides an alternative to diameter:service_info(SvcName, transport) that presents information per established connection instead of per transport reference.

    Own Id: OTP-10213

  • Assorted documentation corrections/improvements.

    Own Id: OTP-10216

1.8  diameter 1.1

Fixed Bugs and Malfunctions

  • Fix fault in sending of 'closed' events.

    The fault made it possible for the 'closed' event not to be sent following a failed capabilities exchange.

    Own Id: OTP-9824

  • Fix faulty diameterc -name/-prefix.

    A minor blunder when introducing the new dictionary parser in diameter-1.0 broke these options.

    Own Id: OTP-9826

1.9  diameter 1.0

Fixed Bugs and Malfunctions

  • Fix faulty cleanup after diameter:remove_transport/2.

    Removing a transport removed the configuration but did not prevent the transport process from being restarted.

    Own Id: OTP-9756

Improvements and New Features

  • Add support for TLS over TCP.

    RFC 3588 requires that a Diameter server support TLS. In practice this seems to mean TLS over SCTP since there are limitations with running over SCTP: see RFC 6083 (DTLS over SCTP), which is a response to RFC 3436 (TLS over SCTP). The current RFC 3588 draft acknowledges this by equating TLS with TLS/TCP and DTLS/SCTP.

    TLS handshaking can take place either following a CER/CEA that negotiates TLS using the Inband-Security-Id AVP (the method documented in RFC 3588) or immediately following connection establishment (the method added to the current draft).

    Own Id: OTP-9605

  • Improvements to the dictionary parser.

    The dictionary parser now emits useful error messages in case of faults in the input file, also identifying the line number at which the fault was detected. There are semantic checks that were missing in the previous parser, a fault in the interpretation of vendor id's in combination with @inherits has been fixed and @end can be used to terminate parsing explicitly instead of always parsing to end of file.

    Own Id: OTP-9639

  • Improve dictionary reusability.

    Reusing a dictionary just to get a different generated module name or prefix previously required taking a copy of the source, which may consist of several files if inheritance is used, just to edit a couple of lines which don't affect the semantics of the Diameter application being defined. Options --name, --prefix and --inherits have been added to diameterc to allow corresponding values to be set at compile time.

    Own Id: OTP-9641

  • Add capabilities_cb transport option.

    Its value is a function that's applied to the transport reference and capabilities record after capabilities exchange. If a callback returns anything but 'ok' then the connection is closed. In the case of an incoming CER, the callback can return a result code with which to answer. Multiple callbacks can be specified and are applied until either all return 'ok' or one doesn't.

    This provides a way to reject a peer connection.

    Own Id: OTP-9654

  • Add @codecs to dictionary format.

    The semantics are similar to @custom_types but results in codec functions of the form TypeName(encode|decode, AvpName, Data) rather than AvpName(encode|decode, TypeName, Data). That is, the role of the AVP name and Diameter type name are reversed. This eliminates the need for exporting one function for each AVP sharing a common specialized encode/decode.

    Own Id: OTP-9708 Aux Id: OTP-9639

  • Add #diameter_callback{} for more flexible callback configuration.

    The record allows individual functions to be configured for each of the diameter_app(3) callbacks, as well as a default callback.

    Own Id: OTP-9777

1.10  diameter 0.10

Fixed Bugs and Malfunctions

  • Handle #sctp_paddr_change and #sctp_pdapi_event from gen_sctp.

    The events are enabled by default but diameter_sctp neither disabled nor dealt with them. Reception of such an event caused a transport process to crash.

    Own Id: OTP-9538

  • Fix header folding bug.

    A prepare_request callback from diameter can return a diameter_header record in order to set values in the header of an outgoing request. A fault in diameter_lib:fold_tuple/3 caused the subsequent encode of the outgoing request to fail.

    Own Id: OTP-9577

  • Fix bugs in sending of answer-message replies.

    3001 (DIAMETER_COMMAND_UNSUPPORTED) was not sent since the decode placed the AVP list in the wrong field of the diameter_packet, causing the subsequent encode to fail. Session-Id was also set improperly, causing encode to fail even in this case.

    Own Id: OTP-9578

  • Fix improper use of error_logger:info_report/2.

    Function doesn't take a format string and arguments as it was called. Instead use error_logger:info_report/1 and use the same report format as used for warning and error reports.

    Own Id: OTP-9579

  • Fix and clarify semantics of peer filters.

    An eval filter returning a non-true value caused the call process to fail and the doc was vague on how an exception was treated. Clarify that the non-tuple host/realm filters assume messages of a certain form.

    Own Id: OTP-9580

  • Fix and clarify relay behaviour.

    Implicit filtering of the sending peer in relaying a request could cause loop detection to be preempted in a manner not specified by RFC3588. Reply with 3002 (DIAMETER_UNABLE_TO_DELIVER) on anything but an answer to a relayed request.

    Own Id: OTP-9583

Improvements and New Features

  • @id required in dictionary files only when @messages is specified.

    @id defines an application identifier and this is used only when sending or receiving messages. A dictionary can define only AVP's however, to be included by other dictionaries using @inherits, in which case it makes no sense to require @id.

    Note that message definitions are not inherited with @inherits, only AVP's

    Own Id: OTP-9467

  • Allow @enum when AVP is defined in an inherited dictionary.

    3GPP standards (for one) extend the values allowed for RFC 3588 AVP's of type Enumerated. Previously, extending an AVP was only possible by completely redefining the AVP.

    Own Id: OTP-9469

  • Migrate testsuites to pure common test and add both suites and testcases.

    Own Id: OTP-9553

  • Requests of arbitrary form.

    diameter:call/4 can be passed anything, as long as the subsequent prepare_request callback returns a term that can be encoded.

    Own Id: OTP-9581

1.11  diameter 0.9

Initial release of the diameter application.

Known issues or limitations:

  • Some agent-related functionality is not entirely complete. In particular, support for proxy agents, that advertise specific Diameter applications but otherwise relay messages in much the same way as relay agents (for which a handle_request callback can return a relay tuple), will be completed in an upcoming release. There may also be more explicit support for redirect agents, although redirect behaviour can be implemented with the current functionality.

  • There is some asymmetry in the treatment of messages sent as diameter_header/avp records and those sent in the "normal" fashion, and not all of this is documented. This is related to the previous point since this form of sending a message was introduced specifically to handle relay agent behaviour using the same callback interface as for client/server behaviour.

  • The User's Guide is currently quite thin. The introductory chapter followed by the examples (in the application examples subdirectory) may be sufficient for those having some familiarity with the Diameter protocol but the intention is to provide more introductory text. The reference documentation is quite complete, although some points could likely be expanded upon.

  • The function diameter:service_info/2 can be used to retrieve information about a started service (statistics, information about connected peers, etc) but this is not yet documented and both the input and output may change in the next release.

See Standards Compliance for standards-related issues.