chiark / gitweb /
man: fix typos
[elogind.git] / extras / volume_id / lib / sysv.c
1 /*
2  * volume_id - reads filesystem label and uuid
3  *
4  * Copyright (C) 2005 Kay Sievers <kay.sievers@vrfy.org>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef _GNU_SOURCE
21 #define _GNU_SOURCE 1
22 #endif
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <ctype.h>
30
31 #include "libvolume_id.h"
32 #include "libvolume_id-private.h"
33
34 #define SYSV_NICINOD                    100
35 #define SYSV_NICFREE                    50
36
37 struct sysv_super
38 {
39         uint16_t        s_isize;
40         uint16_t        s_pad0;
41         uint32_t        s_fsize;
42         uint16_t        s_nfree;
43         uint16_t        s_pad1;
44         uint32_t        s_free[SYSV_NICFREE];
45         uint16_t        s_ninode;
46         uint16_t        s_pad2;
47         uint16_t        s_inode[SYSV_NICINOD];
48         uint8_t         s_flock;
49         uint8_t         s_ilock;
50         uint8_t         s_fmod;
51         uint8_t         s_ronly;
52         uint32_t        s_time;
53         uint16_t        s_dinfo[4];
54         uint32_t        s_tfree;
55         uint16_t        s_tinode;
56         uint16_t        s_pad3;
57         uint8_t         s_fname[6];
58         uint8_t         s_fpack[6];
59         uint32_t        s_fill[12];
60         uint32_t        s_state;
61         uint32_t        s_magic;
62         uint32_t        s_type;
63 } PACKED;
64
65 #define XENIX_NICINOD                           100
66 #define XENIX_NICFREE                           100
67
68 struct xenix_super {
69         uint16_t        s_isize;
70         uint32_t        s_fsize;
71         uint16_t        s_nfree;
72         uint32_t        s_free[XENIX_NICFREE];
73         uint16_t        s_ninode;
74         uint16_t        s_inode[XENIX_NICINOD];
75         uint8_t         s_flock;
76         uint8_t         s_ilock;
77         uint8_t         s_fmod;
78         uint8_t         s_ronly;
79         uint32_t        s_time;
80         uint32_t        s_tfree;
81         uint16_t        s_tinode;
82         uint16_t        s_dinfo[4];
83         uint8_t         s_fname[6];
84         uint8_t         s_fpack[6];
85         uint8_t         s_clean;
86         uint8_t         s_fill[371];
87         uint32_t        s_magic;
88         uint32_t        s_type;
89 } PACKED;
90
91 #define SYSV_SUPERBLOCK_BLOCK                   0x01
92 #define SYSV_MAGIC                              0xfd187e20
93 #define XENIX_SUPERBLOCK_BLOCK                  0x18
94 #define XENIX_MAGIC                             0x2b5544
95 #define SYSV_MAX_BLOCKSIZE                      0x800
96
97 int volume_id_probe_sysv(struct volume_id *id, uint64_t off, uint64_t size)
98 {
99         struct sysv_super *vs;
100         struct xenix_super *xs;
101         unsigned int boff;
102
103         info("probing at offset 0x%" PRIx64 "\n", off);
104
105         for (boff = 0x200; boff <= SYSV_MAX_BLOCKSIZE; boff <<= 1) {
106                 vs = (struct sysv_super *)
107                         volume_id_get_buffer(id, off + (boff * SYSV_SUPERBLOCK_BLOCK), 0x200);
108                 if (vs == NULL)
109                         return -1;
110
111                 if (vs->s_magic == cpu_to_le32(SYSV_MAGIC) || vs->s_magic == cpu_to_be32(SYSV_MAGIC)) {
112                         volume_id_set_label_raw(id, vs->s_fname, 6);
113                         volume_id_set_label_string(id, vs->s_fname, 6);
114                         id->type = "sysv";
115                         goto found;
116                 }
117         }
118
119         for (boff = 0x200; boff <= SYSV_MAX_BLOCKSIZE; boff <<= 1) {
120                 xs = (struct xenix_super *)
121                         volume_id_get_buffer(id, off + (boff + XENIX_SUPERBLOCK_BLOCK), 0x200);
122                 if (xs == NULL)
123                         return -1;
124
125                 if (xs->s_magic == cpu_to_le32(XENIX_MAGIC) || xs->s_magic == cpu_to_be32(XENIX_MAGIC)) {
126                         volume_id_set_label_raw(id, xs->s_fname, 6);
127                         volume_id_set_label_string(id, xs->s_fname, 6);
128                         id->type = "xenix";
129                         goto found;
130                 }
131         }
132
133         return -1;
134
135 found:
136         volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
137         return 0;
138 }