Skip to content
Snippets Groups Projects
  1. Dec 20, 2024
  2. Feb 21, 2024
  3. Dec 15, 2023
    • Reiner Hauser's avatar
      Fix crash when wireguard is enabled · e231ac1f
      Reiner Hauser authored
      The special wireguard interface has its ifa_addr pointer set to
      null, leading to a crash in NameService::publish() which iterates
      over all interfaces, checking ifa_addr->family.
      
      Protection against ifa_addr == nullptr were added in various places.
      e231ac1f
  4. Aug 17, 2022
  5. May 07, 2020
  6. Apr 18, 2020
  7. Apr 16, 2020
  8. May 03, 2019
  9. Mar 21, 2018
  10. Mar 08, 2018
  11. Mar 07, 2018
  12. Oct 29, 2016
  13. Aug 11, 2016
  14. Feb 25, 2016
  15. Nov 04, 2015
    • Reiner Hauser's avatar
      dc1e00ab
    • Reiner Hauser's avatar
      Publish multicast address to initial partition even if statically configured. · abc52a83
      Reiner Hauser authored
      In addition, if there is already an entry for this MC address, but with
      a different partition name, the configuration will fail.
      abc52a83
    • Reiner Hauser's avatar
    • Reiner Hauser's avatar
      Allow to dynamically allocate a unique multicast address. · b8d65761
      Reiner Hauser authored
      The OKS value of the multicast address is allowed to be * instead of
      a real IP address. In this case the following procedure is used to allocate a
      unique MC address across all partitions. The network/netmask part of the string
      should still be defined, e.g. */10.149.0.0/255.255.0.0.
      
      The allocate_multicast_address() method of NameService should be called by a
      single application in the partition (typically the HLT supervisor). It will
      first iterate over all existing IS objects of type 'MultiCastGroup' in the
      RunParams IS server of the initial partition. If it finds an entry which
      matches its own partition, the multicast address from this object will be
      used. This means that MC groups will be stable as long as the initial partition
      is up and running.
      
      If the method does not find an entry, it will try to insert a new object
      which contains the multicast address as a string in its name. This guarantees
      the uniqueness of the object and therefore address. The method will loop over
      a range of pre-defined multicast address until insertion succeeds. If the range
      is exhausted an exception CannotAllocateMulticast is thrown.
      
      As a final step either the static or dynamically allocated address and network
      are published in the local partition in all DFConfig IS servers as an object
      with the fixed name 'MultiCastAddress'.
      
      The lookup_multicast_address() method simply looks up the latter object in its
      appropriate DFConfig IS server and returns it.
      
      Note that the IS object contains both the partition name and the network part, but
      the latter should always be taken straight from OKS for purposes of configuration.
      The IS object simply contains it as auxilliary information.
      b8d65761
  16. Apr 22, 2015
    • Tommaso Colombo's avatar
      NameService: sort published addresses · 0d193c1e
      Tommaso Colombo authored
      This is a hack to solve a P1-specific routing problem. See comment for
      more details.
      0d193c1e
    • Tommaso Colombo's avatar
      Session: enable TCP keep-alive probes via environment variable · 08417649
      Tommaso Colombo authored
      TCP keep-alive probes are globally controlled by an environment variable
      called
      TDAQ_ASYNCMSG_KEEPALIVE, with the the following format:
      <enable>:<timeout_s>:<interval_s>:<max_failures>
      where:
      - <enable> (boolean, default: false)
        enables or disables TCP keep-alive probes
      - <idle_s> (integer, default: /proc/sys/net/ipv4/tcp_keepalive_time)
        is the number of seconds a connection needs to be idle before TCP begins
        sending out keep-alive probes
      - <interval_s> (integer, default: /proc/sys/net/ipv4/tcp_keepalive_intvl)
        is the number of seconds between TCP keep-alive probes
      - <max_failures> (integer, default: /proc/sys/net/ipv4/tcp_keepalive_probes)
        is the maximum number of TCP keep-alive probes to send before giving up
        and killing the connection if no response is obtained
      08417649
  17. Jan 12, 2015
    • Tommaso Colombo's avatar
      Remove noexcept specifier from completion methods · 52991b4c
      Tommaso Colombo authored
      This lets exceptions thrown in derived classes to fall through to the
      io_service::run() method invokation.
      
      WARNING: asyncmsg objects one of whose completion methods has thrown an
      exception may be in an inconsistent state afterwards.
      52991b4c
  18. Sep 29, 2014
  19. Feb 16, 2014
  20. Feb 13, 2014
  21. Jan 17, 2014
  22. Oct 31, 2013
  23. Oct 29, 2013
  24. Oct 21, 2013
  25. Oct 14, 2013
    • Tommaso Colombo's avatar
      Session: correctly post the onClose() method · 8e640662
      Tommaso Colombo authored
      All completion methods must be invoked in a manner equivalent to using
      boost::asio::io_service::post(), instead of executing them
      immediately. asyncClose() violated this guarantee if the Session had no
      outstanding operations.
      8e640662
  26. Aug 07, 2013
  27. May 24, 2013
  28. May 21, 2013
Loading