Add support for automatic loop device use (image infile etc).
[platform/upstream/cryptsetup.git] / lib / utils_loop.c
1 /*
2  * loopback block device utilities
3  *
4  * Copyright (C) 2011, Red Hat, Inc. All rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * version 2 as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <string.h>
21 #include <stdio.h>
22 #include <fcntl.h>
23 #include <errno.h>
24 #include <sys/ioctl.h>
25 #include <sys/stat.h>
26 #include <linux/loop.h>
27
28 #include "internal.h"
29
30 #define LOOP_DEV_MAJOR 7
31
32 char *crypt_loop_get_device(void)
33 {
34         char dev[20];
35         int i, loop_fd;
36         struct stat st;
37         struct loop_info64 lo64 = {0};
38
39         for(i = 0; i < 256; i++) {
40                 sprintf(dev, "/dev/loop%d", i);
41                 if (stat(dev, &st) || !S_ISBLK(st.st_mode))
42                         return NULL;
43
44                 loop_fd = open(dev, O_RDONLY);
45                 if (loop_fd < 0)
46                         return NULL;
47
48                 if(ioctl(loop_fd, LOOP_GET_STATUS64, &lo64) && errno == ENXIO) {
49                         close(loop_fd);
50                         return strdup(dev);
51                 }
52                 close(loop_fd);
53         }
54
55         return NULL;
56 }
57
58 int crypt_loop_attach(const char *loop, const char *file,
59                       int offset, int *readonly)
60 {
61         struct loop_info64 lo64 = {0};
62         int loop_fd = -1, file_fd = -1, r = 1;
63
64         file_fd = open(file, (*readonly ? O_RDONLY : O_RDWR) | O_EXCL);
65         if (file_fd < 0 && errno == EROFS && !*readonly) {
66                 *readonly = 1;
67                 file_fd = open(file, O_RDONLY | O_EXCL);
68         }
69         if (file_fd < 0)
70                 goto out;
71
72         loop_fd = open(loop, *readonly ? O_RDONLY : O_RDWR);
73         if (loop_fd < 0)
74                 goto out;
75
76         strncpy((char*)lo64.lo_file_name, file, LO_NAME_SIZE);
77         lo64.lo_offset = offset;
78         lo64.lo_flags |= LO_FLAGS_AUTOCLEAR;
79
80         if (ioctl(loop_fd, LOOP_SET_FD, file_fd) < 0)
81                 goto out;
82
83         if (ioctl(loop_fd, LOOP_SET_STATUS64, &lo64) < 0) {
84                 (void)ioctl(loop_fd, LOOP_CLR_FD, 0);
85                 goto out;
86         }
87         r = 0;
88 out:
89         if (r && loop_fd >= 0)
90                 close(loop_fd);
91         if (file_fd >= 0)
92                 close(file_fd);
93         return r ? -1 : loop_fd;
94 }
95
96 char *crypt_loop_backing_file(const char *loop)
97 {
98         struct loop_info64 lo64 = {0};
99         int loop_fd;
100
101         loop_fd = open(loop, O_RDONLY);
102         if (loop_fd < 0)
103                 return NULL;
104
105         if (ioctl(loop_fd, LOOP_GET_STATUS64, &lo64) < 0) {
106                 close(loop_fd);
107                 return NULL;
108         }
109
110         lo64.lo_file_name[LO_NAME_SIZE-2] = '*';
111         lo64.lo_file_name[LO_NAME_SIZE-1] = 0;
112
113         close(loop_fd);
114
115         return strdup((char*)lo64.lo_file_name);
116 }
117
118 int crypt_loop_device(const char *loop)
119 {
120         struct stat st;
121
122         if (stat(loop, &st) || !S_ISBLK(st.st_mode) ||
123             major(st.st_rdev) != LOOP_DEV_MAJOR)
124                 return 0;
125
126         return 1;
127 }