fix some more O_CLOEXEC/SOCK_CLOEXEC issues
authorRich Felker <dalias@aerifal.cx>
Sat, 29 Sep 2012 21:59:50 +0000 (17:59 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 29 Sep 2012 21:59:50 +0000 (17:59 -0400)
src/ldso/dynlink.c
src/misc/realpath.c
src/network/__dns.c
src/stdio/__fopen_rb_ca.c

index 1c181339d95a43964502c255c529e3d7449627d5..d0b57e8d68496242b6bcc8b68adb983ea30b37a1 100644 (file)
@@ -376,7 +376,7 @@ static int path_open(const char *name, const char *search, char *buf, size_t buf
                z = strchr(s, ':');
                l = z ? z-s : strlen(s);
                snprintf(buf, buf_size, "%.*s/%s", l, s, name);
-               if ((fd = open(buf, O_RDONLY))>=0) return fd;
+               if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
                s += l;
        }
 }
@@ -423,7 +423,7 @@ static struct dso *load_library(const char *name)
        }
        if (strchr(name, '/')) {
                pathname = name;
-               fd = open(name, O_RDONLY);
+               fd = open(name, O_RDONLY|O_CLOEXEC);
        } else {
                /* Search for the name to see if it's already loaded */
                for (p=head->next; p; p=p->next) {
index 5756817943c208c66723f375c606451e7fe400f1..183351462519b99912265da7a87a11489dd8f1b9 100644 (file)
@@ -19,7 +19,7 @@ char *realpath(const char *restrict filename, char *restrict resolved)
                return 0;
        }
 
-       fd = open(filename, O_RDONLY|O_NONBLOCK);
+       fd = open(filename, O_RDONLY|O_NONBLOCK|O_CLOEXEC);
        if (fd < 0) return 0;
        snprintf(buf, sizeof buf, "/proc/self/fd/%d", fd);
 
index 1464513df8b890c2c0e58324db53383a6ddb1343..372a58710fb03129a9b35048c8c8a96d306d0f8b 100644 (file)
@@ -91,7 +91,7 @@ int __dns_doqueries(unsigned char *dest, const char *name, int *rr, int rrcnt)
 
        /* Get local address and open/bind a socket */
        sa.sin.sin_family = family;
-       fd = socket(family, SOCK_DGRAM, 0);
+       fd = socket(family, SOCK_DGRAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
 
        pthread_cleanup_push(cleanup, (void *)(intptr_t)fd);
        pthread_setcancelstate(cs, 0);
@@ -100,8 +100,6 @@ int __dns_doqueries(unsigned char *dest, const char *name, int *rr, int rrcnt)
                errcode = EAI_SYSTEM;
                goto out;
        }
-       /* Nonblocking to work around Linux UDP select bug */
-       fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) | O_NONBLOCK);
 
        pfd.fd = fd;
        pfd.events = POLLIN;
index 89ccbc374b513095f6cb6521d40f3128590ed6ef..a1b1b3b6ece7fb93d1f1d50606dca216dc54eb10 100644 (file)
@@ -4,7 +4,7 @@ FILE *__fopen_rb_ca(const char *filename, FILE *f, unsigned char *buf, size_t le
 {
        memset(f, 0, sizeof *f);
 
-       f->fd = syscall(SYS_open, filename, O_RDONLY|O_LARGEFILE, 0);
+       f->fd = syscall(SYS_open, filename, O_RDONLY|O_LARGEFILE|O_CLOEXEC, 0);
        if (f->fd < 0) return 0;
 
        f->flags = F_NOWR | F_PERM;