Skip to content
Snippets Groups Projects
Commit 97cd6a6c authored by Colin Walters's avatar Colin Walters
Browse files

Add glnx_fd_close() and glnx_autofd

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.
parent dea16cd8
No related branches found
No related tags found
No related merge requests found
...@@ -382,8 +382,7 @@ _glnx_tmpdir_free (GLnxTmpDir *tmpd, ...@@ -382,8 +382,7 @@ _glnx_tmpdir_free (GLnxTmpDir *tmpd,
if (!(tmpd && tmpd->initialized)) if (!(tmpd && tmpd->initialized))
return TRUE; return TRUE;
g_assert_cmpint (tmpd->fd, !=, -1); g_assert_cmpint (tmpd->fd, !=, -1);
(void) close (tmpd->fd); glnx_close_fd (&tmpd->fd);
tmpd->fd = -1;
g_assert (tmpd->path); g_assert (tmpd->path);
g_assert_cmpint (tmpd->src_dfd, !=, -1); g_assert_cmpint (tmpd->src_dfd, !=, -1);
g_autofree char *path = tmpd->path; /* Take ownership */ g_autofree char *path = tmpd->path; /* Take ownership */
......
...@@ -42,14 +42,30 @@ glnx_local_obj_unref (void *v) ...@@ -42,14 +42,30 @@ glnx_local_obj_unref (void *v)
} }
#define glnx_unref_object __attribute__ ((cleanup(glnx_local_obj_unref))) #define glnx_unref_object __attribute__ ((cleanup(glnx_local_obj_unref)))
static inline int
glnx_steal_fd (int *fdp)
{
int fd = *fdp;
*fdp = -1;
return fd;
}
/**
* glnx_close_fd:
* @fdp: Pointer to fd
*
* Effectively `close (glnx_steal_fd (&fd))`. Also
* asserts that `close()` did not raise `EBADF` - encountering
* that error is usually a critical bug in the program.
*/
static inline void static inline void
glnx_cleanup_close_fdp (int *fdp) glnx_close_fd (int *fdp)
{ {
int fd, errsv; int errsv;
g_assert (fdp); g_assert (fdp);
fd = *fdp; int fd = glnx_steal_fd (fdp);
if (fd >= 0) if (fd >= 0)
{ {
errsv = errno; errsv = errno;
...@@ -62,16 +78,14 @@ glnx_cleanup_close_fdp (int *fdp) ...@@ -62,16 +78,14 @@ glnx_cleanup_close_fdp (int *fdp)
/** /**
* glnx_fd_close: * glnx_fd_close:
* *
* Deprecated in favor of `glnx_autofd`.
*/
#define glnx_fd_close __attribute__((cleanup(glnx_close_fd)))
/**
* glnx_autofd:
*
* Call close() on a variable location when it goes out of scope. * Call close() on a variable location when it goes out of scope.
*/ */
#define glnx_fd_close __attribute__((cleanup(glnx_cleanup_close_fdp))) #define glnx_autofd __attribute__((cleanup(glnx_close_fd)))
static inline int
glnx_steal_fd (int *fdp)
{
int fd = *fdp;
*fdp = -1;
return fd;
}
G_END_DECLS G_END_DECLS
...@@ -119,8 +119,7 @@ glnx_make_lock_file(int dfd, const char *p, int operation, GLnxLockFile *out_loc ...@@ -119,8 +119,7 @@ glnx_make_lock_file(int dfd, const char *p, int operation, GLnxLockFile *out_loc
if (st.st_nlink > 0) if (st.st_nlink > 0)
break; break;
(void) close(fd); glnx_close_fd (&fd);
fd = -1;
} }
/* Note that if this is not AT_FDCWD, the caller takes responsibility /* Note that if this is not AT_FDCWD, the caller takes responsibility
...@@ -174,9 +173,7 @@ void glnx_release_lock_file(GLnxLockFile *f) { ...@@ -174,9 +173,7 @@ void glnx_release_lock_file(GLnxLockFile *f) {
f->path = NULL; f->path = NULL;
} }
if (f->fd != -1) glnx_close_fd (&f->fd);
(void) close (f->fd);
f->fd = -1;
f->operation = 0; f->operation = 0;
f->initialized = FALSE; f->initialized = FALSE;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment