X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=util.cpp;h=1b76962a2b1e5061209da30acfaff172a8d4e981;hp=41c13c6f2a3ed743a5345b3d0d41c37aefb6e5bc;hb=562cf44b96b5c0260d1a1ab18b2dd2408b6d1fc8;hpb=d1ad2cf60ca694f742e2061a596bc27c7e58f5c8 diff --git a/util.cpp b/util.cpp index 41c13c6..1b76962 100644 --- a/util.cpp +++ b/util.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include "log.h" @@ -12,14 +13,16 @@ using namespace std; int make_tempfile(const std::string &contents) { char filename[] = "/tmp/cubemap.XXXXXX"; + mode_t old_umask = umask(0600); int fd = mkstemp(filename); + umask(old_umask); if (fd == -1) { - perror("mkstemp"); + log_perror("mkstemp"); return -1; } if (unlink(filename) == -1) { - perror("unlink"); + log_perror("unlink"); // Can still continue; } @@ -28,8 +31,8 @@ int make_tempfile(const std::string &contents) while (to_write > 0) { ssize_t ret = write(fd, ptr, to_write); if (ret == -1) { - perror("write"); - close(fd); + log_perror("write"); + safe_close(fd); return -1; } @@ -40,51 +43,57 @@ int make_tempfile(const std::string &contents) return fd; } +bool read_tempfile_and_close(int fd, std::string *contents) +{ + bool ok = read_tempfile(fd, contents); + safe_close(fd); // Implicitly deletes the file. + return ok; +} + bool read_tempfile(int fd, std::string *contents) { - bool ok = true; ssize_t ret, has_read; off_t len = lseek(fd, 0, SEEK_END); if (len == -1) { - perror("lseek"); - ok = false; - goto done; + log_perror("lseek"); + return false; } contents->resize(len); if (lseek(fd, 0, SEEK_SET) == -1) { - perror("lseek"); - ok = false; - goto done; + log_perror("lseek"); + return false; } has_read = 0; while (has_read < len) { ret = read(fd, &((*contents)[has_read]), len - has_read); if (ret == -1) { - perror("read"); - ok = false; - goto done; + log_perror("read"); + return false; } if (ret == 0) { log(ERROR, "Unexpected EOF!"); - ok = false; - goto done; + return false; } has_read += ret; } -done: + return true; +} + +int safe_close(int fd) +{ + int ret; do { - ret = close(fd); // Implicitly deletes the files. + ret = close(fd); } while (ret == -1 && errno == EINTR); - + if (ret == -1) { - perror("close"); - // Can still continue. + log_perror("close()"); } - return ok; + return ret; }