blob: d22b39800bb08b7ac7a4b01dbff916c9b78621bf [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Bernhard Reutner-Fischer7547a6e2005-10-15 20:56:31 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Rob Landley53437472006-07-16 08:14:35 +00006 * Copyright (C) 2005 by Rob Landley <rob@landley.net>
Eric Andersenaad1a882001-03-16 22:47:14 +00007 *
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +00008 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersenaad1a882001-03-16 22:47:14 +00009 */
10
Eric Andersenaad1a882001-03-16 22:47:14 +000011#include "libbb.h"
Eric Andersenef8cd3b2004-02-06 07:16:36 +000012
Rob Landley6a6798b2005-08-10 20:35:54 +000013/* For 2.6, use the cleaned up header to get the 64 bit API. */
Eric Andersenef8cd3b2004-02-06 07:16:36 +000014#include <linux/version.h>
Eric Andersencf6ef052004-08-16 08:29:44 +000015#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
Rob Landley6a6798b2005-08-10 20:35:54 +000016#include <linux/loop.h>
17typedef struct loop_info64 bb_loop_info;
18#define BB_LOOP_SET_STATUS LOOP_SET_STATUS64
19#define BB_LOOP_GET_STATUS LOOP_GET_STATUS64
Eric Andersenef8cd3b2004-02-06 07:16:36 +000020
Rob Landley6a6798b2005-08-10 20:35:54 +000021/* For 2.4 and earlier, use the 32 bit API (and don't trust the headers) */
22#else
23/* Stuff stolen from linux/loop.h for 2.4 and earlier kernels*/
24#include <linux/posix_types.h>
Eric Andersenef8cd3b2004-02-06 07:16:36 +000025#define LO_NAME_SIZE 64
26#define LO_KEY_SIZE 32
27#define LOOP_SET_FD 0x4C00
28#define LOOP_CLR_FD 0x4C01
Rob Landley6a6798b2005-08-10 20:35:54 +000029#define BB_LOOP_SET_STATUS 0x4C02
30#define BB_LOOP_GET_STATUS 0x4C03
31typedef struct {
Eric Andersenef8cd3b2004-02-06 07:16:36 +000032 int lo_number;
Rob Landley6a6798b2005-08-10 20:35:54 +000033 __kernel_dev_t lo_device;
Eric Andersenef8cd3b2004-02-06 07:16:36 +000034 unsigned long lo_inode;
Rob Landley6a6798b2005-08-10 20:35:54 +000035 __kernel_dev_t lo_rdevice;
Eric Andersenef8cd3b2004-02-06 07:16:36 +000036 int lo_offset;
37 int lo_encrypt_type;
38 int lo_encrypt_key_size;
39 int lo_flags;
Rob Landley6a6798b2005-08-10 20:35:54 +000040 char lo_file_name[LO_NAME_SIZE];
Eric Andersenef8cd3b2004-02-06 07:16:36 +000041 unsigned char lo_encrypt_key[LO_KEY_SIZE];
42 unsigned long lo_init[2];
43 char reserved[4];
Rob Landley6a6798b2005-08-10 20:35:54 +000044} bb_loop_info;
45#endif
Eric Andersenaad1a882001-03-16 22:47:14 +000046
Rob Landley1d589b22005-11-29 23:47:10 +000047char *query_loop(const char *device)
Eric Andersenaad1a882001-03-16 22:47:14 +000048{
Rob Landley1d589b22005-11-29 23:47:10 +000049 int fd;
50 bb_loop_info loopinfo;
51 char *dev=0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000052
Rob Landley1d589b22005-11-29 23:47:10 +000053 if ((fd = open(device, O_RDONLY)) < 0) return 0;
54 if (!ioctl(fd, BB_LOOP_GET_STATUS, &loopinfo))
Rob Landleyd921b2e2006-08-03 15:41:12 +000055 dev=xasprintf("%ld %s", (long) loopinfo.lo_offset,
Eric Andersen76b24272006-01-30 17:30:22 +000056 (char *)loopinfo.lo_file_name);
Rob Landley1d589b22005-11-29 23:47:10 +000057 close(fd);
Eric Andersenaad1a882001-03-16 22:47:14 +000058
Rob Landley1d589b22005-11-29 23:47:10 +000059 return dev;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000060}
Rob Landley1d589b22005-11-29 23:47:10 +000061
62
63int del_loop(const char *device)
64{
65 int fd, rc;
66
67 if ((fd = open(device, O_RDONLY)) < 0) return 1;
68 rc=ioctl(fd, LOOP_CLR_FD, 0);
69 close(fd);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000070
Rob Landley6a6798b2005-08-10 20:35:54 +000071 return rc;
Eric Andersenaad1a882001-03-16 22:47:14 +000072}
73
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +000074/* Returns 0 if mounted RW, 1 if mounted read-only, <0 for error.
75 *device is loop device to use, or if *device==NULL finds a loop device to
76 mount it on and sets *device to a strdup of that loop device name. This
77 search will re-use an existing loop device already bound to that
78 file/offset if it finds one.
79 */
Rob Landley1d589b22005-11-29 23:47:10 +000080int set_loop(char **device, const char *file, int offset)
Eric Andersenaad1a882001-03-16 22:47:14 +000081{
Rob Landley1d589b22005-11-29 23:47:10 +000082 char dev[20], *try;
Rob Landley6a6798b2005-08-10 20:35:54 +000083 bb_loop_info loopinfo;
Eric Andersenaad1a882001-03-16 22:47:14 +000084 struct stat statbuf;
Rob Landley90854672005-12-21 16:53:57 +000085 int i, dfd, ffd, mode, rc=-1;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000086
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +000087 /* Open the file. Barf if this doesn't work. */
Rob Landleyff567f72005-10-11 07:26:15 +000088 if((ffd = open(file, mode=O_RDWR))<0 && (ffd = open(file,mode=O_RDONLY))<0)
Rob Landleyaae8b342006-03-18 02:38:10 +000089 return -errno;
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +000090
91 /* Find a loop device. */
Rob Landley1d589b22005-11-29 23:47:10 +000092 try=*device ? : dev;
Rob Landley6a6798b2005-08-10 20:35:54 +000093 for(i=0;rc;i++) {
Rob Landleyb70ccd92006-01-22 23:17:18 +000094 sprintf(dev, LOOP_FORMAT, i);
Rob Landleyaae8b342006-03-18 02:38:10 +000095
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +000096 /* Ran out of block devices, return failure. */
Rob Landley1d589b22005-11-29 23:47:10 +000097 if(stat(try, &statbuf) || !S_ISBLK(statbuf.st_mode)) {
Rob Landleyaae8b342006-03-18 02:38:10 +000098 rc=-ENOENT;
Rob Landley6a6798b2005-08-10 20:35:54 +000099 break;
Eric Andersenaad1a882001-03-16 22:47:14 +0000100 }
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000101 /* Open the sucker and check its loopiness. */
Rob Landley1d589b22005-11-29 23:47:10 +0000102 if((dfd=open(try, mode))<0 && errno==EROFS)
Rob Landleyaae8b342006-03-18 02:38:10 +0000103 dfd=open(try, mode = O_RDONLY);
Rob Landley90854672005-12-21 16:53:57 +0000104 if(dfd<0) goto try_again;
Eric Andersenaad1a882001-03-16 22:47:14 +0000105
Rob Landley6a6798b2005-08-10 20:35:54 +0000106 rc=ioctl(dfd, BB_LOOP_GET_STATUS, &loopinfo);
Rob Landley1d589b22005-11-29 23:47:10 +0000107
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000108 /* If device free, claim it. */
Rob Landley6a6798b2005-08-10 20:35:54 +0000109 if(rc && errno==ENXIO) {
110 memset(&loopinfo, 0, sizeof(loopinfo));
Eric Andersen76b24272006-01-30 17:30:22 +0000111 safe_strncpy((char *)loopinfo.lo_file_name, file, LO_NAME_SIZE);
Rob Landley6a6798b2005-08-10 20:35:54 +0000112 loopinfo.lo_offset = offset;
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000113 /* Associate free loop device with file. */
Rob Landley934da822006-06-25 15:29:12 +0000114 if(!ioctl(dfd, LOOP_SET_FD, ffd)) {
Rob Landleya892bf82006-06-25 15:37:28 +0000115 if (!ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo)) rc=0;
Rob Landley934da822006-06-25 15:29:12 +0000116 else ioctl(dfd, LOOP_CLR_FD, 0);
117 }
Rob Landleyaae8b342006-03-18 02:38:10 +0000118
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000119 /* If this block device already set up right, re-use it.
120 (Yes this is racy, but associating two loop devices with the same
121 file isn't pretty either. In general, mounting the same file twice
122 without using losetup manually is problematic.)
123 */
Eric Andersen76b24272006-01-30 17:30:22 +0000124 } else if(strcmp(file,(char *)loopinfo.lo_file_name)
Rob Landley1d589b22005-11-29 23:47:10 +0000125 || offset!=loopinfo.lo_offset) rc=-1;
Rob Landley6a6798b2005-08-10 20:35:54 +0000126 close(dfd);
Rob Landley90854672005-12-21 16:53:57 +0000127try_again:
Rob Landley6a6798b2005-08-10 20:35:54 +0000128 if(*device) break;
129 }
130 close(ffd);
131 if(!rc) {
132 if(!*device) *device=strdup(dev);
133 return mode==O_RDONLY ? 1 : 0;
134 } else return rc;
135}