blob: f7029d59194614557e3309f9874dc71397b88417 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Eric Andersenaad1a882001-03-16 22:47:14 +000020 */
21
Rob Landley6a6798b2005-08-10 20:35:54 +000022
Eric Andersen1e4dc962005-01-04 20:37:55 +000023#include <features.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000024#include <stdio.h>
25#include <errno.h>
26#include <fcntl.h>
27#include <string.h>
28#include <unistd.h>
29#include <sys/ioctl.h>
30#include "libbb.h"
Eric Andersenef8cd3b2004-02-06 07:16:36 +000031
Rob Landley6a6798b2005-08-10 20:35:54 +000032/* For 2.6, use the cleaned up header to get the 64 bit API. */
Eric Andersenef8cd3b2004-02-06 07:16:36 +000033#include <linux/version.h>
Eric Andersencf6ef052004-08-16 08:29:44 +000034#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
Rob Landley6a6798b2005-08-10 20:35:54 +000035#include <linux/loop.h>
36typedef struct loop_info64 bb_loop_info;
37#define BB_LOOP_SET_STATUS LOOP_SET_STATUS64
38#define BB_LOOP_GET_STATUS LOOP_GET_STATUS64
Eric Andersenef8cd3b2004-02-06 07:16:36 +000039
Rob Landley6a6798b2005-08-10 20:35:54 +000040/* For 2.4 and earlier, use the 32 bit API (and don't trust the headers) */
41#else
42/* Stuff stolen from linux/loop.h for 2.4 and earlier kernels*/
43#include <linux/posix_types.h>
Eric Andersenef8cd3b2004-02-06 07:16:36 +000044#define LO_NAME_SIZE 64
45#define LO_KEY_SIZE 32
46#define LOOP_SET_FD 0x4C00
47#define LOOP_CLR_FD 0x4C01
Rob Landley6a6798b2005-08-10 20:35:54 +000048#define BB_LOOP_SET_STATUS 0x4C02
49#define BB_LOOP_GET_STATUS 0x4C03
50typedef struct {
Eric Andersenef8cd3b2004-02-06 07:16:36 +000051 int lo_number;
Rob Landley6a6798b2005-08-10 20:35:54 +000052 __kernel_dev_t lo_device;
Eric Andersenef8cd3b2004-02-06 07:16:36 +000053 unsigned long lo_inode;
Rob Landley6a6798b2005-08-10 20:35:54 +000054 __kernel_dev_t lo_rdevice;
Eric Andersenef8cd3b2004-02-06 07:16:36 +000055 int lo_offset;
56 int lo_encrypt_type;
57 int lo_encrypt_key_size;
58 int lo_flags;
Rob Landley6a6798b2005-08-10 20:35:54 +000059 char lo_file_name[LO_NAME_SIZE];
Eric Andersenef8cd3b2004-02-06 07:16:36 +000060 unsigned char lo_encrypt_key[LO_KEY_SIZE];
61 unsigned long lo_init[2];
62 char reserved[4];
Rob Landley6a6798b2005-08-10 20:35:54 +000063} bb_loop_info;
64#endif
Eric Andersenaad1a882001-03-16 22:47:14 +000065
66extern int del_loop(const char *device)
67{
Rob Landley6a6798b2005-08-10 20:35:54 +000068 int fd,rc=0;
Eric Andersenaad1a882001-03-16 22:47:14 +000069
Rob Landley6a6798b2005-08-10 20:35:54 +000070 if ((fd = open(device, O_RDONLY)) < 0) rc=1;
71 else {
72 if (ioctl(fd, LOOP_CLR_FD, 0) < 0) rc=1;
Eric Andersen7b3edeb2003-05-02 16:25:01 +000073 close(fd);
Eric Andersenaad1a882001-03-16 22:47:14 +000074 }
Rob Landley6a6798b2005-08-10 20:35:54 +000075 return rc;
Eric Andersenaad1a882001-03-16 22:47:14 +000076}
77
Rob Landley6a6798b2005-08-10 20:35:54 +000078// Returns 0 if mounted RW, 1 if mounted read-only, <0 for error.
79// *device is loop device to use, or if *device==NULL finds a loop device to
80// mount it on and sets *device to a strdup of that loop device name. This
81// search will re-use an existing loop device already bound to that
82// file/offset if it finds one.
83extern int set_loop(char **device, const char *file, int offset)
Eric Andersenaad1a882001-03-16 22:47:14 +000084{
85 char dev[20];
Rob Landley6a6798b2005-08-10 20:35:54 +000086 bb_loop_info loopinfo;
Eric Andersenaad1a882001-03-16 22:47:14 +000087 struct stat statbuf;
Rob Landley6a6798b2005-08-10 20:35:54 +000088 int i, dfd, ffd, mode, rc=1;
Eric Andersenaad1a882001-03-16 22:47:14 +000089
Rob Landley6a6798b2005-08-10 20:35:54 +000090 // Open the file. Barf if this doesn't work.
Rob Landleyff567f72005-10-11 07:26:15 +000091 if((ffd = open(file, mode=O_RDWR))<0 && (ffd = open(file,mode=O_RDONLY))<0)
92 return errno;
93
Rob Landley6a6798b2005-08-10 20:35:54 +000094 // Find a loop device
95 for(i=0;rc;i++) {
96 sprintf(dev, LOOP_FORMAT, i++);
97 // Ran out of block devices, return failure.
98 if(stat(*device ? : dev, &statbuf) || !S_ISBLK(statbuf.st_mode)) {
99 rc=ENOENT;
100 break;
Eric Andersenaad1a882001-03-16 22:47:14 +0000101 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000102 // Open the sucker and check its loopiness.
103 if((dfd=open(dev, mode))<0 && errno==EROFS)
104 dfd=open(dev,mode=O_RDONLY);
105 if(dfd<0) continue;
Eric Andersenaad1a882001-03-16 22:47:14 +0000106
Rob Landley6a6798b2005-08-10 20:35:54 +0000107 rc=ioctl(dfd, BB_LOOP_GET_STATUS, &loopinfo);
108 // If device free, claim it.
109 if(rc && errno==ENXIO) {
110 memset(&loopinfo, 0, sizeof(loopinfo));
111 safe_strncpy(loopinfo.lo_file_name, file, LO_NAME_SIZE);
112 loopinfo.lo_offset = offset;
113 // Associate free loop device with file
114 if(!ioctl(dfd, LOOP_SET_FD, ffd) &&
115 !ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo)) rc=0;
116 else ioctl(dfd, LOOP_CLR_FD, 0);
117 // If this block device already set up right, re-use it.
118 // (Yes this is racy, but associating two loop devices with the same
119 // file isn't pretty either. In general, mounting the same file twice
120 // without using losetup manually is problematic.)
121 } else if(strcmp(file,loopinfo.lo_file_name)
122 || offset!=loopinfo.lo_offset) rc=1;
123 close(dfd);
124 if(*device) break;
125 }
126 close(ffd);
127 if(!rc) {
128 if(!*device) *device=strdup(dev);
129 return mode==O_RDONLY ? 1 : 0;
130 } else return rc;
131}
Eric Andersenaad1a882001-03-16 22:47:14 +0000132
133/* END CODE */
134/*
135Local Variables:
136c-file-style: "linux"
137c-basic-offset: 4
138tab-width: 4
139End:
140*/