diff options
author | Steve Langasek <vorlon@debian.org> | 2014-01-16 00:38:42 +0000 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2014-01-16 00:38:42 +0000 |
commit | 60fe4501b4194949d3117a937abdfa90d3f138e9 (patch) | |
tree | 212a6a00baa11e9d0ca7bc27b12420d1dce6f07c /libpam/pam_modutil_ioloop.c | |
download | pam-60fe4501b4194949d3117a937abdfa90d3f138e9.tar.gz pam-60fe4501b4194949d3117a937abdfa90d3f138e9.tar.bz2 pam-60fe4501b4194949d3117a937abdfa90d3f138e9.zip |
Import pam_1.1.8.orig.tar.gz
[dgit import orig pam_1.1.8.orig.tar.gz]
Diffstat (limited to 'libpam/pam_modutil_ioloop.c')
-rw-r--r-- | libpam/pam_modutil_ioloop.c | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/libpam/pam_modutil_ioloop.c b/libpam/pam_modutil_ioloop.c new file mode 100644 index 00000000..54ab0e55 --- /dev/null +++ b/libpam/pam_modutil_ioloop.c @@ -0,0 +1,53 @@ +/* + * $Id$ + * + * These functions provides common methods for ensure a complete read or + * write occurs. It handles EINTR and partial read/write returns. + */ + +#include "pam_modutil_private.h" + +#include <unistd.h> +#include <errno.h> + +int +pam_modutil_read(int fd, char *buffer, int count) +{ + int block, offset = 0; + + while (count > 0) { + block = read(fd, &buffer[offset], count); + + if (block < 0) { + if (errno == EINTR) continue; + return block; + } + if (block == 0) return offset; + + offset += block; + count -= block; + } + + return offset; +} + +int +pam_modutil_write(int fd, const char *buffer, int count) +{ + int block, offset = 0; + + while (count > 0) { + block = write(fd, &buffer[offset], count); + + if (block < 0) { + if (errno == EINTR) continue; + return block; + } + if (block == 0) return offset; + + offset += block; + count -= block; + } + + return offset; +} |