Skip to content
  1. Oct 31, 2018
  2. Oct 29, 2018
  3. 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
  4. May 17, 2018
    • Tommaso Tocci's avatar
      Remove the auxiliary loaded check · cfda3081
      Tommaso Tocci authored
      Since we introduced the `initialized` flag in the preload context, it is
      not needed anymore to check for ld_is_aux_loaded flag.
      In fact ld_is_aux_loaded is true if and only if the `initialized` flag
      is true.
      cfda3081
    • 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
  5. May 16, 2018
  6. May 15, 2018
  7. May 14, 2018
  8. May 11, 2018
  9. May 10, 2018
    • Tommaso Tocci's avatar
      Implement rmdir · b8281adb
      Tommaso Tocci authored
      b8281adb
    • 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
      follow glibc convention for error numbers · e9cb2605
      Tommaso Tocci authored
      readdir and closedir in glibc returns a EINVAL if the directory pointer
      passed as parameter is NULL
      e9cb2605