ad561498bde3a7b9acc2da35c2361fb5852c2eb6
[virt-top.git] / virt-df / virt_df_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 Virt_df_gettext.Gettext
24 open Virt_df
25
26 let probe_swap (dev : device) =
27   (* Load the "superblock" (ie. first 0x1000 bytes). *)
28   let bits = dev#read_bitstring 0L 0x1000 in
29
30   bitmatch bits with
31     (* Actually this isn't just padding. *)
32   | padding : 8*0x1000 - 10*8 : bitstring;
33     magic : 10*8 : bitstring
34       when Bitmatch.string_of_bitstring magic = "SWAPSPACE2" ->
35     {
36       fs_name = s_ "Linux swap";
37       fs_block_size = 4096L;            (* XXX *)
38       fs_blocks_total = dev#size /^ 4096L;
39
40       (* The remaining fields are ignored when fs_is_swap is true. *)
41       fs_is_swap = true;
42       fs_blocks_reserved = 0L;
43       fs_blocks_avail = 0L;
44       fs_blocks_used = 0L;
45       fs_inodes_total = 0L;
46       fs_inodes_reserved = 0L;
47       fs_inodes_avail = 0L;
48       fs_inodes_used = 0L;
49     }
50   | _ ->
51       raise Not_found                   (* Not Linux swapspace. *)
52
53 (* Register with main code. *)
54 let () = filesystem_type_register "linux_swap" probe_swap