ae8c405a7627c187a825b4b85a38959498ddd522
[virt-df.git] / lib / diskimage_linux_swap.ml
1 (* 'df' command for virtual domains.
2
3    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
4    http://libvirt.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, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20    Support for Linux swap partitions.
21 *)
22
23 open Diskimage_utils
24
25 let plugin_id = "linux_swap"
26
27 let blocksize = 4096                    (* XXX *)
28 let blocksize64 = 4096L                 (* XXX *)
29
30 let probe dev =
31   (* Load the "superblock" (ie. first 0x1000 bytes). *)
32   let bits = dev#read_bitstring 0L 0x1000 in
33
34   bitmatch bits with
35   | {
36       (* Actually this isn't just padding. *)
37       padding : 8*0x1000 - 10*8 : bitstring;
38       "SWAPSPACE2" : 80 : string
39     } ->
40
41       let fs_dev = new blocksize_overlay blocksize dev in
42       {
43         fs_dev = fs_dev;
44         fs_plugin_id = plugin_id;
45         fs_block_size = blocksize64;
46         fs_blocks_total = fs_dev#size /^ blocksize64;
47
48         (* The remaining fields are ignored when fs_is_swap is true. *)
49         fs_is_swap = true;
50         fs_blocks_reserved = 0L;
51         fs_blocks_avail = 0L;
52         fs_blocks_used = 0L;
53         fs_inodes_total = 0L;
54         fs_inodes_reserved = 0L;
55         fs_inodes_avail = 0L;
56         fs_inodes_used = 0L;
57       }
58
59   | { _ } ->
60       raise Not_found                   (* Not Linux swapspace. *)