summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2016-07-08 13:06:47 -0400
committerColin Walters <walters@verbum.org>2016-07-08 13:10:40 -0400
commitd2e588d94fabacfeb5b08790365161a015a00b98 (patch)
tree4434113dff4b6d901b8554ef4ce546b23f69b794
parent78ae787757ab697bf92f49ec41a03c540550c887 (diff)
downloadlibglnx-d2e588d94fabacfeb5b08790365161a015a00b98.tar.gz
fdio: Add unlinkat() in error paths for tmpfiles
This is kind of an ABI change but it's for the better I think; on error we consistently clean up the temp file. This is obviously necessary without `O_TMPFILE`. With it, we still need an error cleanup in the case where we're trying to replace an existing file. I noticed this in ostree's `tests/test-refs.sh` which intentionally tries to rename a file over a directory path.
-rw-r--r--glnx-fdio.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/glnx-fdio.c b/glnx-fdio.c
index 55eef09..f4648ed 100644
--- a/glnx-fdio.c
+++ b/glnx-fdio.c
@@ -199,6 +199,7 @@ glnx_link_tmpfile_at (int dfd,
*/
if (renameat (dfd, tmpfile_path, target_dfd, target) < 0)
{
+ (void) unlinkat (dfd, tmpfile_path, 0);
glnx_set_error_from_errno (error);
return FALSE;
}
@@ -209,7 +210,10 @@ glnx_link_tmpfile_at (int dfd,
if (!rename_file_noreplace_at (dfd, tmpfile_path, target_dfd, target,
ignore_eexist,
error))
- return FALSE;
+ {
+ (void) unlinkat (dfd, tmpfile_path, 0);
+ return FALSE;
+ }
}
}
else
@@ -257,6 +261,10 @@ glnx_link_tmpfile_at (int dfd,
}
if (renameat (target_dfd, tmpname_buf, target_dfd, target) < 0)
{
+ /* This is currently the only case where we need to have
+ * a cleanup unlinkat() still with O_TMPFILE.
+ */
+ (void) unlinkat (target_dfd, tmpname_buf, 0);
glnx_set_error_from_errno (error);
return FALSE;
}