1. May 28, 2020
  2. Feb 20, 2020
  3. Feb 19, 2020
  4. Feb 10, 2020
  5. 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
  6. Dec 09, 2019
  7. Nov 04, 2019
  8. Sep 14, 2019
  9. Sep 06, 2019
  10. Jul 04, 2019
  11. Apr 24, 2019
  12. Apr 18, 2019
  13. Apr 17, 2019
  14. Apr 03, 2019
  15. Mar 05, 2019
  16. Nov 26, 2018
  17. Nov 04, 2018
    • Tommaso Tocci's avatar
      path resolution · 0d7d83e5
      Tommaso Tocci authored
      add support for path resolution, this will be used to get canonical path.
      
      More info at `man path_resolution`
      0d7d83e5
  18. Nov 03, 2018
  19. Oct 31, 2018
  20. Oct 29, 2018
  21. Oct 28, 2018
    • Tommaso Tocci's avatar
      update deps, drop abt-snoozer · b0c8d184
      Tommaso Tocci authored
      margo, argobots and mercury have been updated. The abt-snoozer dep
      required by margo it is not needed anymore.
      
      RocksDB has been also updated to the lastest release
      b0c8d184
    • Tommaso Tocci's avatar
      makes logs configurable at exec time · 1ad8f4e4
      Tommaso Tocci authored
      loggers can be now configured at execution time, by using environment
      variables for both server and client.
      
      Server:
       - ADAFS_LOG_LEVEL
       - ADAFS_DAEMON_LOG_PATH
      
      Client:
       - ADAFS_LOG_LEVEL
       - ADAFS_PRELOAD_LOG_PATH
      1ad8f4e4
  22. May 14, 2018
  23. May 11, 2018
  24. May 10, 2018
    • Tommaso Tocci's avatar
      Avoid optimization for readdir/opendir · f16b7a2b
      Tommaso Tocci authored
      In the glibc both readdir and closedir functions marks the @dirp parameter
      with a non-null attribute.
      If we use a compiler optimization level grater then 1,
      the `dirp == nullptr` expression is evaluated to false
      at compilation time and the relative if blocks is cutted out
      of the final binary.
      
      In order to avoid this bheaviour, we implement a functions and then set
      that as weak alias of the real glibc function call.
      f16b7a2b
    • Tommaso Tocci's avatar
      Add OpenDir class · 97f26a22
      Tommaso Tocci authored
      In order to support directories functionalities
      opendir,readdir,closedir,etc.. the OpenDir class has been introduced.
      This is a new specialization of the OpenFile class so that OpenDir
      object can be stored in the open_file_map along with regular file.
      97f26a22
  25. May 09, 2018
  26. May 08, 2018
    • Tommaso Tocci's avatar
      Client send relative paths · 8a5d3de0
      Tommaso Tocci authored
      Paths are now made relative to the mountdir at client side.
      
      The new relativize_path fucntion in the PreloadContext is used to check
      if a path is relative to the pseudo-mount directory and to make it
      relative
      8a5d3de0
    • Tommaso Tocci's avatar
      Introduce preload context · 52269a81
      Tommaso Tocci authored
      The new PreloadContext class is used as singleton to store the general context
      information of the interception library.
      
      The plan is to move global accessed variables into this sigleton.
      
      At the moment just the logger object has been moved into it.
      52269a81
  27. Apr 02, 2018
    • Marc Vef's avatar
      Daemon now creates a pid file with pid and mountdir info for clients · fe7e5ee3
      Marc Vef authored
      Previously, clients would look for the daemon by name which was not robust.
      If the daemon was started with valgrind for example, clients would not find
      the daemon.
      
      Similar to other applications a daemon now creates a pid file with
      information about its pid and its started mountdir.
      
      Proper errorhandling on server and client side was added.
      
      Multiple daemons per node are explicitly not allowed for now!
      fe7e5ee3
  28. Mar 23, 2018
  29. Mar 22, 2018
    • Tommaso Tocci's avatar
      bugfix: blocks offset and count calculus · be9d15eb
      Tommaso Tocci authored
      The calculus (on clients) about the last chunk involved into a
      write/read operation was bugged.
      
      A new blocks_calc_util library has been introduced in order to make
      easier to perform this kind of calculus.
      be9d15eb
  30. Mar 12, 2018
  31. Mar 07, 2018