0a964b8c52054ca3364462d22c81f7a98c991a8e
[platform/upstream/cryptsetup.git] / lib / utils_loop.h
1 /*
2  * loopback block device utilities
3  *
4  * Copyright (C) 2011-2012, 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19
20 #ifndef _UTILS_LOOP_H
21 #define _UTILS_LOOP_H
22
23 /* loopback device helpers */
24
25 char *crypt_loop_get_device(void);
26 char *crypt_loop_backing_file(const char *loop);
27 int crypt_loop_device(const char *loop);
28 int crypt_loop_attach(const char *loop, const char *file, int offset,
29                       int autoclear, int *readonly);
30 int crypt_loop_detach(const char *loop);
31
32 #endif /* _UTILS_LOOP_H */