chiark / gitweb /
volume_id: remove deprecated functions and bump major version
[elogind.git] / extras / volume_id / lib / squashfs.c
1 /*
2  * volume_id - reads filesystem label and uuid
3  *
4  * Copyright (C) 2006 Kay Sievers <kay.sievers@vrfy.org>
5  *
6  *      This program is free software; you can redistribute it and/or modify it
7  *      under the terms of the GNU General Public License as published by the
8  *      Free Software Foundation version 2 of the License.
9  */
10
11 #ifndef _GNU_SOURCE
12 #define _GNU_SOURCE 1
13 #endif
14
15 #ifdef HAVE_CONFIG_H
16 #  include <config.h>
17 #endif
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <ctype.h>
25
26 #include "libvolume_id.h"
27 #include "libvolume_id-private.h"
28 #include "util.h"
29
30 #define SQUASHFS_MAGIC          0x73717368
31 #define SQUASHFS_MAGIC_LZMA     0x71736873
32
33 struct squashfs_super {
34         uint32_t        s_magic;
35         uint32_t        inodes;
36         uint32_t        bytes_used_2;
37         uint32_t        uid_start_2;
38         uint32_t        guid_start_2;
39         uint32_t        inode_table_start_2;
40         uint32_t        directory_table_start_2;
41         uint16_t        s_major;
42         uint16_t        s_minor;
43 } PACKED;
44
45 int volume_id_probe_squashfs(struct volume_id *id, uint64_t off, uint64_t size)
46 {
47         struct squashfs_super *sqs;
48
49         info("probing at offset 0x%llx\n", (unsigned long long) off);
50
51         sqs = (struct squashfs_super *) volume_id_get_buffer(id, off, 0x200);
52         if (sqs == NULL)
53                 return -1;
54
55         if (sqs->s_magic == SQUASHFS_MAGIC || sqs->s_magic == SQUASHFS_MAGIC_LZMA) {
56                 snprintf(id->type_version, sizeof(id->type_version), "%u.%u",
57                          sqs->s_major, sqs->s_minor);
58                 goto found;
59         }
60         if (sqs->s_magic == bswap_32(SQUASHFS_MAGIC) || sqs->s_magic == bswap_32(SQUASHFS_MAGIC_LZMA)) {
61                 snprintf(id->type_version, sizeof(id->type_version), "%u.%u",
62                          bswap_16(sqs->s_major), bswap_16(sqs->s_minor));
63                 goto found;
64         }
65
66         return -1;
67
68 found:
69         volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
70         id->type = "squashfs";
71         return 0;
72 }