Add call to set up the partition offset for filedev.
[lwext4.git] / blockdev / linux / ext4_filedev.c
1 /*
2  * Copyright (c) 2013 Grzegorz Kostka (kostka.grzegorz@gmail.com)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  *   notice, this list of conditions and the following disclaimer.
11  * - Redistributions in binary form must reproduce the above copyright
12  *   notice, this list of conditions and the following disclaimer in the
13  *   documentation and/or other materials provided with the distribution.
14  * - The name of the author may not be used to endorse or promote products
15  *   derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #define _LARGEFILE64_SOURCE
30 #define _FILE_OFFSET_BITS 64
31
32 #include <ext4_config.h>
33 #include <ext4_blockdev.h>
34 #include <ext4_errno.h>
35 #include <stdio.h>
36 #include <stdbool.h>
37 #include <string.h>
38
39 /**@brief   Default filename.*/
40 static const char *fname = "ext2";
41 static uint64_t offset = 0;
42
43 /**@brief   Image block size.*/
44 #define EXT4_FILEDEV_BSIZE 512
45
46 /**@brief   Image file descriptor.*/
47 static FILE *dev_file;
48
49 #define DROP_LINUXCACHE_BUFFERS 0
50
51 /**********************BLOCKDEV INTERFACE**************************************/
52 static int filedev_open(struct ext4_blockdev *bdev);
53 static int filedev_bread(struct ext4_blockdev *bdev, void *buf, uint64_t blk_id,
54                          uint32_t blk_cnt);
55 static int filedev_bwrite(struct ext4_blockdev *bdev, const void *buf,
56                           uint64_t blk_id, uint32_t blk_cnt);
57 static int filedev_close(struct ext4_blockdev *bdev);
58
59 /******************************************************************************/
60 EXT4_BLOCKDEV_STATIC_INSTANCE(_filedev, EXT4_FILEDEV_BSIZE, 0, filedev_open,
61                 filedev_bread, filedev_bwrite, filedev_close, 0, 0);
62
63 /******************************************************************************/
64 static int filedev_open(struct ext4_blockdev *bdev)
65 {
66         dev_file = fopen(fname, "r+b");
67
68         if (!dev_file)
69                 return EIO;
70
71         /*No buffering at file.*/
72         setbuf(dev_file, 0);
73
74         if (fseeko(dev_file, 0, SEEK_END))
75                 return EFAULT;
76
77         _filedev.part_offset = offset;
78         _filedev.part_size = ftello(dev_file) - offset;
79         _filedev.bdif->ph_bcnt = _filedev.part_size / _filedev.bdif->ph_bsize;
80
81         return EOK;
82 }
83
84 /******************************************************************************/
85
86 static int filedev_bread(struct ext4_blockdev *bdev, void *buf, uint64_t blk_id,
87                          uint32_t blk_cnt)
88 {
89         if (fseeko(dev_file, blk_id * bdev->bdif->ph_bsize, SEEK_SET))
90                 return EIO;
91         if (!blk_cnt)
92                 return EOK;
93         if (!fread(buf, bdev->bdif->ph_bsize * blk_cnt, 1, dev_file))
94                 return EIO;
95
96         return EOK;
97 }
98
99 static void drop_cache(void)
100 {
101 #if defined(__linux__) && DROP_LINUXCACHE_BUFFERS
102         int fd;
103         char *data = "3";
104
105         sync();
106         fd = open("/proc/sys/vm/drop_caches", O_WRONLY);
107         write(fd, data, sizeof(char));
108         close(fd);
109 #endif
110 }
111
112 /******************************************************************************/
113 static int filedev_bwrite(struct ext4_blockdev *bdev, const void *buf,
114                           uint64_t blk_id, uint32_t blk_cnt)
115 {
116         if (fseeko(dev_file, blk_id * bdev->bdif->ph_bsize, SEEK_SET))
117                 return EIO;
118         if (!blk_cnt)
119                 return EOK;
120         if (!fwrite(buf, bdev->bdif->ph_bsize * blk_cnt, 1, dev_file))
121                 return EIO;
122
123         drop_cache();
124         return EOK;
125 }
126 /******************************************************************************/
127 static int filedev_close(struct ext4_blockdev *bdev)
128 {
129         fclose(dev_file);
130         return EOK;
131 }
132
133 /******************************************************************************/
134 struct ext4_blockdev *ext4_filedev_get(void) { return &_filedev; }
135 /******************************************************************************/
136 void ext4_filedev_filename(const char *n) { fname = n; }
137 void ext4_filedev_offset(uint64_t o) { offset = o; }
138
139 /******************************************************************************/