- don't free user-supplied string (via -e)
[oweals/busybox.git] / libbb / loop.c
index 1b296d99bef969a12ff65184294705f6c0261320..7d2b420be13123c113b155c1962f2a0c68fd81cf 100644 (file)
@@ -44,7 +44,7 @@ typedef struct {
 } bb_loop_info;
 #endif
 
-char *query_loop(const char *device)
+char* FAST_FUNC query_loop(const char *device)
 {
        int fd;
        bb_loop_info loopinfo;
@@ -61,7 +61,7 @@ char *query_loop(const char *device)
 }
 
 
-int del_loop(const char *device)
+int FAST_FUNC del_loop(const char *device)
 {
        int fd, rc;
 
@@ -79,12 +79,13 @@ int del_loop(const char *device)
    search will re-use an existing loop device already bound to that
    file/offset if it finds one.
  */
-int set_loop(char **device, const char *file, unsigned long long offset)
+int FAST_FUNC set_loop(char **device, const char *file, unsigned long long offset)
 {
-       char dev[20], *try;
+       char dev[LOOP_NAMESIZE];
+       char *try;
        bb_loop_info loopinfo;
        struct stat statbuf;
-       int i, dfd, ffd, mode, rc=-1;
+       int i, dfd, ffd, mode, rc = -1;
 
        /* Open the file.  Barf if this doesn't work.  */
        mode = O_RDWR;
@@ -98,12 +99,12 @@ int set_loop(char **device, const char *file, unsigned long long offset)
 
        /* Find a loop device.  */
        try = *device ? : dev;
-       for (i=0;rc;i++) {
+       for (i = 0; rc; i++) {
                sprintf(dev, LOOP_FORMAT, i);
 
                /* Ran out of block devices, return failure.  */
                if (stat(try, &statbuf) || !S_ISBLK(statbuf.st_mode)) {
-                       rc=-ENOENT;
+                       rc = -ENOENT;
                        break;
                }
                /* Open the sucker and check its loopiness.  */
@@ -112,19 +113,22 @@ int set_loop(char **device, const char *file, unsigned long long offset)
                        mode = O_RDONLY;
                        dfd = open(try, mode);
                }
-               if (dfd < 0) goto try_again;
+               if (dfd < 0)
+                       goto try_again;
 
                rc = ioctl(dfd, BB_LOOP_GET_STATUS, &loopinfo);
 
-               /* If device free, claim it.  */
+               /* If device is free, claim it.  */
                if (rc && errno == ENXIO) {
                        memset(&loopinfo, 0, sizeof(loopinfo));
                        safe_strncpy((char *)loopinfo.lo_file_name, file, LO_NAME_SIZE);
                        loopinfo.lo_offset = offset;
                        /* Associate free loop device with file.  */
                        if (!ioctl(dfd, LOOP_SET_FD, ffd)) {
-                               if (!ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo)) rc = 0;
-                               else ioctl(dfd, LOOP_CLR_FD, 0);
+                               if (!ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo))
+                                       rc = 0;
+                               else
+                                       ioctl(dfd, LOOP_CLR_FD, 0);
                        }
 
                /* If this block device already set up right, re-use it.
@@ -132,16 +136,19 @@ int set_loop(char **device, const char *file, unsigned long long offset)
                   file isn't pretty either.  In general, mounting the same file twice
                   without using losetup manually is problematic.)
                 */
-               } else if (strcmp(file,(char *)loopinfo.lo_file_name)
-                                       || offset!=loopinfo.lo_offset) rc = -1;
+               } else if (strcmp(file, (char *)loopinfo.lo_file_name) != 0
+               || offset != loopinfo.lo_offset) {
+                       rc = -1;
+               }
                close(dfd);
-try_again:
+ try_again:
                if (*device) break;
        }
        close(ffd);
        if (!rc) {
-               if (!*device) *device = strdup(dev);
-               return mode==O_RDONLY ? 1 : 0;
+               if (!*device)
+                       *device = xstrdup(dev);
+               return (mode == O_RDONLY); /* 1:ro, 0:rw */
        }
        return rc;
 }