2 * Copyright (c) 2016 The DragonFly Project
3 * Copyright (c) 2005 Takanori Watanabe
4 * Copyright (c) 2014 The FreeBSD Foundation
7 * This software was developed by Edward Tomasz Napierala under sponsorship
8 * from the FreeBSD Foundation.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 #define NTFS_A_VOLUMENAME 0x60
40 #define NTFS_FILEMAGIC ((uint32_t)(0x454C4946))
41 #define NTFS_VOLUMEINO 3
50 uint8_t a_compression
;
69 uint32_t fr_allocated
;
74 struct ntfs_bootfile
{
84 uint8_t reserver4
[12];
87 uint64_t bf_mftmirrcn
;
94 fstyp_ntfs(FILE *fp
, char *label
, size_t size
)
96 struct ntfs_bootfile
*bf
;
97 struct ntfs_filerec
*fr
;
98 struct ntfs_attr
*atr
;
107 bf
= (struct ntfs_bootfile
*)read_buf(fp
, 0, 512);
108 if (bf
== NULL
|| strncmp(bf
->bf_sysid
, "NTFS ", 8) != 0)
111 mftrecsz
= bf
->bf_mftrecsz
;
112 recsize
= (mftrecsz
> 0) ? (mftrecsz
* bf
->bf_bps
* bf
->bf_spc
) : (1 << -mftrecsz
);
114 voloff
= bf
->bf_mftcn
* bf
->bf_spc
* bf
->bf_bps
+
115 recsize
* NTFS_VOLUMEINO
;
117 filerecp
= read_buf(fp
, voloff
, recsize
);
118 if (filerecp
== NULL
)
120 fr
= (struct ntfs_filerec
*)filerecp
;
122 if (fr
->fr_hdrmagic
!= NTFS_FILEMAGIC
)
125 for (ap
= filerecp
+ fr
->fr_attroff
;
126 atr
= (struct ntfs_attr
*)ap
, (int)atr
->a_type
!= -1;
128 if (atr
->a_type
== NTFS_A_VOLUMENAME
) {
129 if(atr
->a_datalen
>= size
*2){
134 * Should we need to use iconv(9)?
136 for (j
= 0; j
< atr
->a_datalen
; j
++) {
137 vnchar
= *(ap
+ atr
->a_dataoff
+ j
);
143 label
[j
/ 2] = vnchar
;