8c3ad2ce03c390f9317fe4d62d8d05236094d0b4
[oweals/busybox.git] / libbb / loop.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
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
20  */
21
22 #include <features.h>
23 #if defined (__GLIBC__) && !defined(__UCLIBC__)
24 #include <linux/posix_types.h>
25 #endif
26 #include <stdio.h>
27 #include <errno.h>
28 #include <fcntl.h>
29 #include <string.h>
30 #include <unistd.h>
31 #include <sys/ioctl.h>
32 #include "libbb.h"
33
34 /* Grumble...  The 2.6.x kernel breaks asm/posix_types.h
35  * so we get to try and cope as best we can... */
36 #include <linux/version.h>
37
38 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
39 #define __bb_kernel_dev_t   __kernel_old_dev_t
40 #elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
41 #define __bb_kernel_dev_t   __kernel_dev_t
42 #else
43 #define __bb_kernel_dev_t   unsigned short
44 #endif
45
46 /* Stuff stolen from linux/loop.h */
47 #define LO_NAME_SIZE        64
48 #define LO_KEY_SIZE         32
49 #define LOOP_SET_FD         0x4C00
50 #define LOOP_CLR_FD         0x4C01
51 #define LOOP_SET_STATUS     0x4C02
52 #define LOOP_GET_STATUS     0x4C03
53 struct loop_info {
54         int                lo_number;
55         __bb_kernel_dev_t  lo_device;
56         unsigned long      lo_inode;
57         __bb_kernel_dev_t  lo_rdevice;
58         int                lo_offset;
59         int                lo_encrypt_type;
60         int                lo_encrypt_key_size;
61         int                lo_flags;
62         char               lo_name[LO_NAME_SIZE];
63         unsigned char      lo_encrypt_key[LO_KEY_SIZE];
64         unsigned long      lo_init[2];
65         char               reserved[4];
66 };
67
68 extern int del_loop(const char *device)
69 {
70         int fd;
71
72         if ((fd = open(device, O_RDONLY)) < 0) {
73                 bb_perror_msg("%s", device);
74                 return (FALSE);
75         }
76         if (ioctl(fd, LOOP_CLR_FD, 0) < 0) {
77                 close(fd);
78                 bb_perror_msg("ioctl: LOOP_CLR_FD");
79                 return (FALSE);
80         }
81         close(fd);
82         return (TRUE);
83 }
84
85 extern int set_loop(const char *device, const char *file, int offset,
86                                         int *loopro)
87 {
88         struct loop_info loopinfo;
89         int fd, ffd, mode;
90
91         mode = *loopro ? O_RDONLY : O_RDWR;
92         if ((ffd = open(file, mode)) < 0 && !*loopro
93                 && (errno != EROFS || (ffd = open(file, mode = O_RDONLY)) < 0)) {
94                 bb_perror_msg("%s", file);
95                 return 1;
96         }
97         if ((fd = open(device, mode)) < 0) {
98                 close(ffd);
99                 bb_perror_msg("%s", device);
100                 return 1;
101         }
102         *loopro = (mode == O_RDONLY);
103
104         memset(&loopinfo, 0, sizeof(loopinfo));
105         safe_strncpy(loopinfo.lo_name, file, LO_NAME_SIZE);
106
107         loopinfo.lo_offset = offset;
108
109         loopinfo.lo_encrypt_key_size = 0;
110         if (ioctl(fd, LOOP_SET_FD, ffd) < 0) {
111                 bb_perror_msg("ioctl: LOOP_SET_FD");
112                 close(fd);
113                 close(ffd);
114                 return 1;
115         }
116         if (ioctl(fd, LOOP_SET_STATUS, &loopinfo) < 0) {
117                 (void) ioctl(fd, LOOP_CLR_FD, 0);
118                 bb_perror_msg("ioctl: LOOP_SET_STATUS");
119                 close(fd);
120                 close(ffd);
121                 return 1;
122         }
123         close(fd);
124         close(ffd);
125         return 0;
126 }
127
128 extern char *find_unused_loop_device(void)
129 {
130         char dev[20];
131         int i, fd;
132         struct stat statbuf;
133         struct loop_info loopinfo;
134
135         for (i = 0; i <= 7; i++) {
136                 sprintf(dev, LOOP_FORMAT, i);
137                 if (stat(dev, &statbuf) == 0 && S_ISBLK(statbuf.st_mode)) {
138                         if ((fd = open(dev, O_RDONLY)) >= 0) {
139                                 if (ioctl(fd, LOOP_GET_STATUS, &loopinfo) != 0) {
140                                         if (errno == ENXIO) {   /* probably free */
141                                                 close(fd);
142                                                 return strdup(dev);
143                                         }
144                                 }
145                                 close(fd);
146                         }
147                 }
148         }
149         return NULL;
150 }
151
152
153 /* END CODE */
154 /*
155 Local Variables:
156 c-file-style: "linux"
157 c-basic-offset: 4
158 tab-width: 4
159 End:
160 */