Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Utility routines. |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 6 | * |
| 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 Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 20 | */ |
| 21 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 22 | |
Eric Andersen | 1e4dc96 | 2005-01-04 20:37:55 +0000 | [diff] [blame] | 23 | #include <features.h> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 24 | #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 Andersen | ef8cd3b | 2004-02-06 07:16:36 +0000 | [diff] [blame] | 31 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 32 | /* For 2.6, use the cleaned up header to get the 64 bit API. */ |
Eric Andersen | ef8cd3b | 2004-02-06 07:16:36 +0000 | [diff] [blame] | 33 | #include <linux/version.h> |
Eric Andersen | cf6ef05 | 2004-08-16 08:29:44 +0000 | [diff] [blame] | 34 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 35 | #include <linux/loop.h> |
| 36 | typedef 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 Andersen | ef8cd3b | 2004-02-06 07:16:36 +0000 | [diff] [blame] | 39 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 40 | /* 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 Andersen | ef8cd3b | 2004-02-06 07:16:36 +0000 | [diff] [blame] | 44 | #define LO_NAME_SIZE 64 |
| 45 | #define LO_KEY_SIZE 32 |
| 46 | #define LOOP_SET_FD 0x4C00 |
| 47 | #define LOOP_CLR_FD 0x4C01 |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 48 | #define BB_LOOP_SET_STATUS 0x4C02 |
| 49 | #define BB_LOOP_GET_STATUS 0x4C03 |
| 50 | typedef struct { |
Eric Andersen | ef8cd3b | 2004-02-06 07:16:36 +0000 | [diff] [blame] | 51 | int lo_number; |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 52 | __kernel_dev_t lo_device; |
Eric Andersen | ef8cd3b | 2004-02-06 07:16:36 +0000 | [diff] [blame] | 53 | unsigned long lo_inode; |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 54 | __kernel_dev_t lo_rdevice; |
Eric Andersen | ef8cd3b | 2004-02-06 07:16:36 +0000 | [diff] [blame] | 55 | int lo_offset; |
| 56 | int lo_encrypt_type; |
| 57 | int lo_encrypt_key_size; |
| 58 | int lo_flags; |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 59 | char lo_file_name[LO_NAME_SIZE]; |
Eric Andersen | ef8cd3b | 2004-02-06 07:16:36 +0000 | [diff] [blame] | 60 | unsigned char lo_encrypt_key[LO_KEY_SIZE]; |
| 61 | unsigned long lo_init[2]; |
| 62 | char reserved[4]; |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 63 | } bb_loop_info; |
| 64 | #endif |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 65 | |
| 66 | extern int del_loop(const char *device) |
| 67 | { |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 68 | int fd,rc=0; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 69 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 70 | if ((fd = open(device, O_RDONLY)) < 0) rc=1; |
| 71 | else { |
| 72 | if (ioctl(fd, LOOP_CLR_FD, 0) < 0) rc=1; |
Eric Andersen | 7b3edeb | 2003-05-02 16:25:01 +0000 | [diff] [blame] | 73 | close(fd); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 74 | } |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 75 | return rc; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 78 | // 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. |
| 83 | extern int set_loop(char **device, const char *file, int offset) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 84 | { |
| 85 | char dev[20]; |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 86 | bb_loop_info loopinfo; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 87 | struct stat statbuf; |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 88 | int i, dfd, ffd, mode, rc=1; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 89 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 90 | // 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 Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 102 | } |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 103 | // 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 Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 107 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 108 | 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 Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 133 | |
| 134 | /* END CODE */ |
| 135 | /* |
| 136 | Local Variables: |
| 137 | c-file-style: "linux" |
| 138 | c-basic-offset: 4 |
| 139 | tab-width: 4 |
| 140 | End: |
| 141 | */ |