chiark / gitweb /
udevadm: add --version --help options to man page, hide them as commands
[elogind.git] / extras / volume_id / lib / linux_swap.c
1 /*
2  * volume_id - reads filesystem label and uuid
3  *
4  * Copyright (C) 2004 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 struct swap_header_v1_2 {
31         uint8_t         bootbits[1024];
32         uint32_t        version;
33         uint32_t        last_page;
34         uint32_t        nr_badpages;
35         uint8_t         uuid[16];
36         uint8_t         volume_name[16];
37 } PACKED;
38
39 #define LARGEST_PAGESIZE                        0x4000
40
41 int volume_id_probe_linux_swap(struct volume_id *id, uint64_t off, uint64_t size)
42 {
43         const uint8_t *buf;
44         unsigned int page;
45         struct swap_header_v1_2 *sw;
46
47         info("probing at offset 0x%llx\n", (unsigned long long) off);
48
49         /* eek, the swap signature is at the end of the PAGE_SIZE */
50         for (page = 0x1000; page <= LARGEST_PAGESIZE; page <<= 1) {
51                         buf = volume_id_get_buffer(id, off + page-10, 10);
52                         if (buf == NULL)
53                                 return -1;
54
55                         if (memcmp(buf, "SWAP-SPACE", 10) == 0) {
56                                 strcpy(id->type_version, "1");
57                                 goto found;
58                         }
59
60                         if (memcmp(buf, "SWAPSPACE2", 10) == 0) {
61                                 id->type = "swap";
62                                 strcpy(id->type_version, "2");
63                                 goto found_label;
64                         }
65
66                         if (memcmp(buf, "S1SUSPEND", 9) == 0) {
67                                 id->type = "suspend";
68                                 strcpy(id->type_version, "s1suspend");
69                                 goto found_label;
70                         }
71
72                         if (memcmp(buf, "ULSUSPEND", 9) == 0) {
73                                 id->type = "suspend";
74                                 strcpy(id->type_version, "ulsuspend");
75                                 goto found_label;
76                         }
77
78                         if (memcmp(buf, "\xed\xc3\x02\xe9\x98\x56\xe5\x0c", 8) == 0) {
79                                 id->type = "suspend";
80                                 strcpy(id->type_version, "tuxonice");
81                                 goto found_label;
82                         }
83         }
84         return -1;
85
86 found_label:
87         sw = (struct swap_header_v1_2 *) volume_id_get_buffer(id, off, sizeof(struct swap_header_v1_2));
88         if (sw != NULL) {
89                 volume_id_set_label_raw(id, sw->volume_name, 16);
90                 volume_id_set_label_string(id, sw->volume_name, 16);
91                 volume_id_set_uuid(id, sw->uuid, 0, UUID_DCE);
92         }
93
94 found:
95         volume_id_set_usage(id, VOLUME_ID_OTHER);
96         return 0;
97 }