- Oct 24, 2017
-
-
Colin Walters authored
Use decl-after-stmt where applicable.
-
- Oct 16, 2017
-
-
Colin Walters authored
Port to `glnx_autofd` tree wide, and add one missed `glnx_close_fd()` use in the tmpfile code.
-
- Oct 06, 2017
-
-
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.
-
- Sep 13, 2017
-
-
Colin Walters authored
Followup to similar commits in the ostree stack recently.
-
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.
-
- Aug 18, 2017
-
-
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.
-
- Aug 15, 2017
-
-
Matthew Leeds authored
-
- Jul 19, 2017
-
-
Colin Walters authored
This showed up in https://github.com/projectatomic/rpm-ostree/issues/883 We'll have to audit callers to be sure to avoid double-prefixing.
-
- May 31, 2017
-
-
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.
-
- May 30, 2017
-
-
Colin Walters authored
Not everything, but a good chunk of the remaining bits.
-
- Apr 25, 2017
-
-
Colin Walters authored
There's a lot more fdio code, starting with some of the easier ones.
-
- Apr 21, 2017
-
-
Philip Withnall authored
At the moment, it’s not possible for them to do this race-free (since openat(O_DIRECTORY | O_CREAT | O_EXCL) doesn’t work), but in future this could be possible. In any case, it’s a useful thing to want to do. Signed-off-by:
Philip Withnall <withnall@endlessm.com>
-
- Mar 22, 2017
-
-
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); ```
-
- Jan 26, 2017
-
-
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.
-
- Oct 27, 2016
-
-
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.
-
- May 31, 2016
-
-
Colin Walters authored
I swear I tested it...
-
- May 30, 2016
-
-
Colin Walters authored
We have multiple copies growing again of this code. glibc has this API internally and uses it in multiple places, let's do the same. Closes: #14
-
- Jan 03, 2016
-
-
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.
-
- Dec 11, 2015
-
-
Alexander Larsson authored
Create a temporary directory using mkdirat. https://bugzilla.gnome.org/show_bug.cgi?id=757611
-
- Apr 17, 2015
-
-
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.
-
- Mar 17, 2015
-
-
Colin Walters authored
We want to honor `-1 == AT_FDCWD`.
-
- Mar 03, 2015
-
-
Colin Walters authored
This allows reusing an iterator struct.
-
- Feb 17, 2015
-
-
Colin Walters authored
-
- Feb 15, 2015
-
-
Colin Walters authored
-
Colin Walters authored
-