blob: 25f66fcead74aafde9b46f7e7389c192ba96258a [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.
91 if((ffd = open(file, mode=O_RDWR))<0)
92 if(errno!=EROFS || (ffd=open(file,mode=O_RDONLY))<0)
93 return errno;
94
95 // Find a loop device
96 for(i=0;rc;i++) {
97 sprintf(dev, LOOP_FORMAT, i++);
98 // Ran out of block devices, return failure.
99 if(stat(*device ? : dev, &statbuf) || !S_ISBLK(statbuf.st_mode)) {
100 rc=ENOENT;
101 break;
Eric Andersenaad1a882001-03-16 22:47:14 +0000102 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000103 // Open the sucker and check its loopiness.
104 if((dfd=open(dev, mode))<0 && errno==EROFS)
105 dfd=open(dev,mode=O_RDONLY);
106 if(dfd<0) continue;
Eric Andersenaad1a882001-03-16 22:47:14 +0000107
Rob Landley6a6798b2005-08-10 20:35:54 +0000108 rc=ioctl(dfd, BB_LOOP_GET_STATUS, &loopinfo);
109 // If device free, claim it.
110 if(rc && errno==ENXIO) {
111 memset(&loopinfo, 0, sizeof(loopinfo));
112 safe_strncpy(loopinfo.lo_file_name, file, LO_NAME_SIZE);
113 loopinfo.lo_offset = offset;
114 // Associate free loop device with file
115 if(!ioctl(dfd, LOOP_SET_FD, ffd) &&
116 !ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo)) rc=0;
117 else ioctl(dfd, LOOP_CLR_FD, 0);
118 // If this block device already set up right, re-use it.
119 // (Yes this is racy, but associating two loop devices with the same
120 // file isn't pretty either. In general, mounting the same file twice
121 // without using losetup manually is problematic.)
122 } else if(strcmp(file,loopinfo.lo_file_name)
123 || offset!=loopinfo.lo_offset) rc=1;
124 close(dfd);
125 if(*device) break;
126 }
127 close(ffd);
128 if(!rc) {
129 if(!*device) *device=strdup(dev);
130 return mode==O_RDONLY ? 1 : 0;
131 } else return rc;
132}
Eric Andersenaad1a882001-03-16 22:47:14 +0000133
134/* END CODE */
135/*
136Local Variables:
137c-file-style: "linux"
138c-basic-offset: 4
139tab-width: 4
140End:
141*/