Imported Upstream version 4.0.41
[platform/upstream/mtools.git] / offset.c
1 /*  Copyright 2021 Alain Knaff.
2  *  This file is part of mtools.
3  *
4  *  Mtools is free software: you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation, either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  Mtools is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with Mtools.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  * filter to support filesystems stored at an offset into their image
18  */
19
20 #include "sysincludes.h"
21 #include "mtools.h"
22 #include "offset.h"
23
24 typedef struct Offset_t {
25         struct Stream_t head;
26
27         mt_off_t offset;
28 } Offset_t;
29
30 static ssize_t offset_pread(Stream_t *Stream, char *buf,
31                             mt_off_t start, size_t len)
32 {
33         DeclareThis(Offset_t);
34         return PREADS(This->head.Next, buf, start+This->offset, len);
35 }
36
37 static ssize_t offset_pwrite(Stream_t *Stream, char *buf,
38                              mt_off_t start, size_t len)
39 {
40         DeclareThis(Offset_t);
41         return PWRITES(This->head.Next, buf, start+This->offset, len);
42 }
43
44 static Class_t OffsetClass = {
45         0,
46         0,
47         offset_pread,
48         offset_pwrite,
49         0, /* flush */
50         0, /* free */
51         set_geom_pass_through, /* set_geom */
52         0, /* get_data */
53         0, /* pre-allocate */
54         get_dosConvert_pass_through, /* dos convert */
55         0, /* discard */
56 };
57
58 Stream_t *OpenOffset(Stream_t *Next, struct device *dev, off_t offset,
59                      char *errmsg, mt_off_t *maxSize) {
60         Offset_t *This;
61
62         This = New(Offset_t);
63         if (!This){
64                 printOom();
65                 return 0;
66         }
67         memset((void*)This, 0, sizeof(Offset_t));
68         init_head(&This->head, &OffsetClass, Next);
69
70         This->offset = offset;
71
72         if(maxSize) {
73                 if(This->offset > *maxSize) {
74                         if(errmsg)
75                                 sprintf(errmsg,"init: Big disks not supported");
76                         goto exit_0;
77                 }
78
79                 *maxSize -= This->offset;
80         }
81
82         if(adjust_tot_sectors(dev, This->offset, errmsg) < 0)
83                 goto exit_0;
84
85         return &This->head;
86  exit_0:
87         Free(This);
88         return NULL;
89 }