blob: 8c3ad2ce03c390f9317fe4d62d8d05236094d0b4 [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
Eric Andersen1e4dc962005-01-04 20:37:55 +000022#include <features.h>
Eric Andersen1271dbb2005-01-03 05:50:01 +000023#if defined (__GLIBC__) && !defined(__UCLIBC__)
Eric Andersen1e4dc962005-01-04 20:37:55 +000024#include <linux/posix_types.h>
Eric Andersen1271dbb2005-01-03 05:50:01 +000025#endif
Eric Andersenaad1a882001-03-16 22:47:14 +000026#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"
Eric Andersenef8cd3b2004-02-06 07:16:36 +000033
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>
Glenn L McGrath774e6cc2004-06-25 09:01:09 +000037
Eric Andersencf6ef052004-08-16 08:29:44 +000038#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
Eric Andersen07225132004-08-16 08:36:28 +000039#define __bb_kernel_dev_t __kernel_old_dev_t
40#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
Glenn L McGrath774e6cc2004-06-25 09:01:09 +000041#define __bb_kernel_dev_t __kernel_dev_t
Eric Andersenef8cd3b2004-02-06 07:16:36 +000042#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
53struct 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};
Eric Andersenaad1a882001-03-16 22:47:14 +000067
68extern int del_loop(const char *device)
69{
70 int fd;
71
72 if ((fd = open(device, O_RDONLY)) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000073 bb_perror_msg("%s", device);
Eric Andersenaad1a882001-03-16 22:47:14 +000074 return (FALSE);
75 }
76 if (ioctl(fd, LOOP_CLR_FD, 0) < 0) {
Eric Andersen7b3edeb2003-05-02 16:25:01 +000077 close(fd);
Manuel Novoa III cad53642003-03-19 09:13:01 +000078 bb_perror_msg("ioctl: LOOP_CLR_FD");
Eric Andersenaad1a882001-03-16 22:47:14 +000079 return (FALSE);
80 }
81 close(fd);
82 return (TRUE);
83}
84
85extern 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)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000094 bb_perror_msg("%s", file);
Eric Andersenaad1a882001-03-16 22:47:14 +000095 return 1;
96 }
97 if ((fd = open(device, mode)) < 0) {
98 close(ffd);
Manuel Novoa III cad53642003-03-19 09:13:01 +000099 bb_perror_msg("%s", device);
Eric Andersenaad1a882001-03-16 22:47:14 +0000100 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) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000111 bb_perror_msg("ioctl: LOOP_SET_FD");
Eric Andersenaad1a882001-03-16 22:47:14 +0000112 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);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000118 bb_perror_msg("ioctl: LOOP_SET_STATUS");
Eric Andersenaad1a882001-03-16 22:47:14 +0000119 close(fd);
120 close(ffd);
121 return 1;
122 }
123 close(fd);
124 close(ffd);
125 return 0;
126}
127
128extern 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++) {
Eric Andersenc7a3fb92002-03-20 15:25:25 +0000136 sprintf(dev, LOOP_FORMAT, i);
Eric Andersenaad1a882001-03-16 22:47:14 +0000137 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/*
155Local Variables:
156c-file-style: "linux"
157c-basic-offset: 4
158tab-width: 4
159End:
160*/