Skip to content
Snippets Groups Projects
  1. Oct 24, 2017
  2. Oct 16, 2017
  3. Oct 06, 2017
    • Colin Walters's avatar
      Add glnx_fd_close() and glnx_autofd · 97cd6a6c
      Colin Walters authored
      I'd like to have the checks for `EBADF` as well as the
      "assign to -1" in more places.  The cleanup function we
      had for `glnx_fd_close` is actually what we want.
      
      Let's rename the cleanup macro to `glnx_autofd` to better match
      other autocleanups like `g_autofree`.
      
      Then we can use `glnx_fd_close()` as a replacement for plain Unix `close()`. I
      left the `glnx_close_fd` macro, but it's obviously confusing now with the
      former. We'll eventually remove it.
      97cd6a6c
  4. Sep 13, 2017
    • Colin Walters's avatar
      tree-wide: Use our own syscall wrappers or error prefixing · 667d8aa7
      Colin Walters authored
      Followup to similar commits in the ostree stack recently.
      667d8aa7
    • Colin Walters's avatar
      dirfd: Extend tmpdir API to support optional cleaning · 0428fd87
      Colin Walters authored
      We have a use case in libostree's staging dirs where we try to reuse
      them across multiple ostree txns, but we want the fd-relative bits
      here.
      
      Extend the tmpdir API to make deletion optional. While here, also extend the API
      to support checking for errors when deleting for projects like libostree that
      want to do so consistently.
      
      Also while here, add a change to set the fd to `-1` after clearing to be extra
      defensive.
      0428fd87
  5. Aug 18, 2017
    • Colin Walters's avatar
      dirfd: New tmpdir API · 7100ebbc
      Colin Walters authored
      Basically all of the ostree/rpm-ostree callers want to both create and open, so
      let's merge `glnx_mkdtempat()` and `glnx_mkdtempat_open()`.
      
      Second, all of them want to do `glnx_shutil_rm_rf_at()` on cleanup, so we do the
      same thing we did with `GLnxTmpfile` and create `GLnxTmpDir` that has a cleanup
      attribute.
      
      The cleanup this results in for rpm-ostree is pretty substantial.
      7100ebbc
  6. Aug 15, 2017
  7. Jul 19, 2017
  8. May 31, 2017
    • Colin Walters's avatar
      dirfd: Have dfd iter _take_fd() take a pointer and do a steal · f5ba01cf
      Colin Walters authored
      This avoids callers having to use `glnx_steal_fd()` on their own; in general, I
      think we should implement move semantics like this at the callee level.
      
      Another reason to do this is there's a subtle problem with doing:
      
      ```
      somefunction (steal_value (&v), ..., error);
      ```
      
      in that if `somefunction` throws, it may not have taken ownership of the value.
      At least `glnx_dirfd_iterator_init_take_fd()` didn't.
      f5ba01cf
  9. May 30, 2017
  10. Apr 25, 2017
  11. Apr 21, 2017
  12. Mar 22, 2017
    • Colin Walters's avatar
      errors: Add new glnx_throw_errno{,_prefix}() APIs · 074236b8
      Colin Walters authored
      We have a *lot* of code of the form:
      
      ```
      if (unlinkat (fd, pathname) < 0)
        {
           glnx_set_error_from_errno (error);
           goto out;
        }
      ```
      
      After conversion to `return FALSE style` which is in progress, it's way shorter,
      and clearer like this:
      
      ```
      if (unlinkat (fd, pathname) < 0)
        return glnx_throw_errno (error);
      ```
      074236b8
  13. Jan 26, 2017
    • Colin Walters's avatar
      dirfd: Use better and faster random algorithm for gen_temp_name() · 597f03b4
      Colin Walters authored
      I was looking at ostree performance, and a surprising amount of
      time was spent in `glnx_gen_temp_name()`.  We end up calling it
      from the main loop, and the iteration here shows up in my perf
      profiles.
      
      The glibc algorithm here that we adopted is *very* dated; let's
      switch to use `GRand`, which gives us a better algorithm.
      
      It'd be even better of course to use `getrandom()`, but we should do that in
      glib at some point.
      
      While I had the patient open, I extended the charset with lowercase, to better
      avoid collisions.
      597f03b4
  14. Oct 27, 2016
    • Colin Walters's avatar
      dirfd: Set initialized flag for iters · abd37a47
      Colin Walters authored
      And use it when deinitializing, to avoid calling `closedir(NULL)`.
      In practice, this doesn't matter, because `closedir` *does* handle `NULL`
      in glibc.
      
      However, I'm playing with the GCC `-fsanitize=undefined`, and it
      aborts because `closedir` is tagged as requiring a non-`NULL` pointer.
      abd37a47
  15. May 31, 2016
  16. May 30, 2016
  17. Jan 03, 2016
    • Colin Walters's avatar
      dirfd: Add a public API to ensure a filled dtype · 91e06069
      Colin Walters authored
      It's quite common to iterate over a directory recursively, only caring
      about the file type, but not other bits returned by `stat()`.
      
      Good file systems fill in `dt_type`, but not all do.  This function
      papers over that in userspace conveniently.
      91e06069
  18. Dec 11, 2015
  19. Apr 17, 2015
    • Colin Walters's avatar
      dirfd: Add API to get an absolute path from a dfd/relpath · 381ca54e
      Colin Walters authored
      There are a lot of APIs that still only take absolute paths, such as
      librpm (and everything above it).  I plan to use this in rpm-ostree to
      convert temporary directories that I'm accessing fd-relative back into
      absolutes until such time as fd-relative APIs are plumbed through the
      stack more.
      381ca54e
  20. Mar 17, 2015
  21. Mar 03, 2015
  22. Feb 17, 2015
  23. Feb 15, 2015
Loading