Use loop functions even in api test.
[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 <unistd.h>
23 #include <fcntl.h>
24 #include <errno.h>
25 #include <sys/ioctl.h>
26 #include <sys/stat.h>
27 #include <linux/loop.h>
28
29 #include "utils_loop.h"
30
31 char *crypt_loop_get_device(void)
32 {
33         char dev[20];
34         int i, loop_fd;
35         struct stat st;
36         struct loop_info64 lo64 = {0};
37
38         for (i = 0; i < 256; i++) {
39                 sprintf(dev, "/dev/loop%d", i);
40                 if (stat(dev, &st) || !S_ISBLK(st.st_mode))
41                         return NULL;
42
43                 loop_fd = open(dev, O_RDONLY);
44                 if (loop_fd < 0)
45                         return NULL;
46
47                 if (ioctl(loop_fd, LOOP_GET_STATUS64, &lo64) &&
48                     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, int offset,
59                       int autoclear, 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         if (autoclear)
79                 lo64.lo_flags |= LO_FLAGS_AUTOCLEAR;
80
81         if (ioctl(loop_fd, LOOP_SET_FD, file_fd) < 0)
82                 goto out;
83
84         if (ioctl(loop_fd, LOOP_SET_STATUS64, &lo64) < 0) {
85                 (void)ioctl(loop_fd, LOOP_CLR_FD, 0);
86                 goto out;
87         }
88
89         /* Verify that autoclear is really set */
90         if (autoclear) {
91                 memset(&lo64, 0, sizeof(lo64));
92                 if (ioctl(loop_fd, LOOP_GET_STATUS64, &lo64) < 0 ||
93                    !(lo64.lo_flags & LO_FLAGS_AUTOCLEAR)) {
94                 (void)ioctl(loop_fd, LOOP_CLR_FD, 0);
95                         goto out;
96                 }
97         }
98
99         r = 0;
100 out:
101         if (r && loop_fd >= 0)
102                 close(loop_fd);
103         if (file_fd >= 0)
104                 close(file_fd);
105         return r ? -1 : loop_fd;
106 }
107
108 int crypt_loop_detach(const char *loop)
109 {
110         int loop_fd = -1, r = 1;
111
112         loop_fd = open(loop, O_RDONLY);
113         if (loop_fd < 0)
114                 return 1;
115
116         if (!ioctl(loop_fd, LOOP_CLR_FD, 0))
117                 r = 0;
118
119         close(loop_fd);
120         return r;
121 }
122
123 char *crypt_loop_backing_file(const char *loop)
124 {
125         struct loop_info64 lo64 = {0};
126         int loop_fd;
127
128         loop_fd = open(loop, O_RDONLY);
129         if (loop_fd < 0)
130                 return NULL;
131
132         if (ioctl(loop_fd, LOOP_GET_STATUS64, &lo64) < 0) {
133                 close(loop_fd);
134                 return NULL;
135         }
136
137         lo64.lo_file_name[LO_NAME_SIZE-2] = '*';
138         lo64.lo_file_name[LO_NAME_SIZE-1] = 0;
139
140         close(loop_fd);
141
142         return strdup((char*)lo64.lo_file_name);
143 }
144
145 int crypt_loop_device(const char *loop)
146 {
147         struct stat st;
148
149         if (!loop)
150                 return 0;
151
152         if (stat(loop, &st) || !S_ISBLK(st.st_mode) ||
153             major(st.st_rdev) != LOOP_DEV_MAJOR)
154                 return 0;
155
156         return 1;
157 }