1. Feb 07, 2020
    • Marc Vef's avatar
      Code Maintenance: Configurations, definitions, adafs to gkfs · 053cd9a5
      Marc Vef authored
      Restructuring code w.r.t. configurations and definitions:
      - #defines have been mostly removed from configurations
      - a dedicated config file has been added for configurations with constexpr
      - past configure file is now only a cmake wrapper
      - wrapping global functions into namespaces
      
      Removed all adafs and ifs occurrences. Now called gkfs
      053cd9a5
  2. Nov 07, 2019
  3. Nov 04, 2019
  4. Sep 14, 2019
    • Alberto Miranda's avatar
      Add tracking of internal fds · 58055d57
      Alberto Miranda authored
      Fixes an issue where client applications such as ssh might attempt to
      close all open fds, therefore also closing the fds used by the internal
      components of the library such as Mercury.
      58055d57
  5. Sep 09, 2019
  6. Sep 06, 2019
  7. Jul 04, 2019
  8. Jun 28, 2019
  9. Apr 24, 2019
  10. Apr 03, 2019
  11. Mar 06, 2019
  12. Mar 05, 2019
  13. Feb 21, 2019
    • Tommaso Tocci's avatar
      Disable interception during library shutdown · 225552aa
      Tommaso Tocci authored
      If we intercept function during shutdown we could try to access the
      internal file map that has been already freed.
      
      This woun't affect performance at runtime since we are always checking
      only one boolean flags on every interception as before.
      
      On the other hand should sppedup the shutdown of the library, because we
      disable the interception of glibc library call before performing the
      shutdown routines.
      225552aa
  14. Nov 07, 2018
  15. Nov 05, 2018
    • Tommaso Tocci's avatar
      bugfix: do not always follow last link in path · 20108549
      Tommaso Tocci authored
      when resolving path we don't want always
      to resolve also the last components if it is a link. Cause in some cases
      we want exactly the path of that link and not the one it points to.
      
      lstat and readlink are some example of functions that don't want to
      resolve the last link.
      20108549
  16. Nov 04, 2018
  17. Oct 31, 2018
    • Tommaso Tocci's avatar
      use mercury automatic SM routing · c40be81b
      Tommaso Tocci authored
      Mercury now support shared memory autorouting.
      
      A single margo instance can be initialized and it will handle both
      shared memory communication and remote ones.
      
      If the endpoint of the RPC is local mercury will automatically use
      shared memory.
      
      Since there is only one margo instance all the duplicated code for
      rpc/ipc have been unified and simplified considerably.
      
      ------
      
      The way in which client contact the server has changed.
      
       - Server initializes its own margo instance and generate the endpoint
      communication string using `HG_Addr_self`.
       - This endpoint description string is written on the pid file
       - When the client library loads it will fetch the server endpoint
      description from the pid file and will use that to contact the server.
      c40be81b
  18. Oct 29, 2018
  19. May 17, 2018
    • Tommaso Tocci's avatar
      Bypass early interceptions · 99805139
      Tommaso Tocci authored
      The library intercepts IO functions from others library constructors
      before our constructor have been executed.
      
      All the interceptions triggered before that our constructor have been
      executed are now forwarded to the glibc.
      
      By moving the logger initialization outside of the passthrough
      initialization we will be able to implements fopen interceptions.
      99805139
    • Tommaso Tocci's avatar
      Move fs_config into preload context · 332081b6
      Tommaso Tocci authored
      332081b6
  20. May 11, 2018
  21. May 08, 2018