2002-11-18 17:04:08 +03:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2007-08-21 00:55:30 +04:00
* Copyright ( C ) 2004 - 2006 Red Hat , Inc . All rights reserved .
2002-11-18 17:04:08 +03:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
*
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
2007-08-21 00:55:30 +04:00
* of the GNU Lesser General Public License v .2 .1 .
2004-03-30 23:35:44 +04:00
*
2007-08-21 00:55:30 +04:00
* You should have received a copy of the GNU Lesser General Public License
2004-03-30 23:35:44 +04:00
* along with this program ; if not , write to the Free Software Foundation ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
2002-11-18 17:04:08 +03:00
*/
# ifndef _LVM_TEXT_LAYOUT_H
# define _LVM_TEXT_LAYOUT_H
# include "config.h"
# include "lvm-types.h"
# include "metadata.h"
# include "uuid.h"
2012-02-10 05:28:27 +04:00
/* disk_locn and data_area_list are defined in format-text.h */
2002-11-18 17:04:08 +03:00
/* Fields with the suffix _xl should be xlate'd wherever they appear */
/* On disk */
struct pv_header {
2006-05-10 01:23:51 +04:00
int8_t pv_uuid [ ID_LEN ] ;
2005-10-31 05:37:29 +03:00
/* This size can be overridden if PV belongs to a VG */
2002-11-18 17:04:08 +03:00
uint64_t device_size_xl ; /* Bytes */
/* NULL-terminated list of data areas followed by */
/* NULL-terminated list of metadata area headers */
struct disk_locn disk_areas_xl [ 0 ] ; /* Two lists */
} __attribute__ ( ( packed ) ) ;
2010-06-29 00:29:57 +04:00
/*
* Ignore this raw location . This allows us to
* ignored metadata areas easily , and thus balance
* metadata across VGs with many PVs .
*/
# define RAW_LOCN_IGNORED 0x00000001
2002-11-18 17:04:08 +03:00
/* On disk */
struct raw_locn {
uint64_t offset ; /* Offset in bytes to start sector */
uint64_t size ; /* Bytes */
uint32_t checksum ;
2010-06-29 00:29:42 +04:00
uint32_t flags ;
2002-11-18 17:04:08 +03:00
} __attribute__ ( ( packed ) ) ;
2010-06-29 00:29:57 +04:00
int rlocn_is_ignored ( const struct raw_locn * rlocn ) ;
2010-06-30 21:13:05 +04:00
void rlocn_set_ignored ( struct raw_locn * rlocn , unsigned mda_ignored ) ;
2010-06-29 00:29:57 +04:00
2002-11-18 17:04:08 +03:00
/* On disk */
/* Structure size limited to one sector */
struct mda_header {
uint32_t checksum_xl ; /* Checksum of rest of mda_header */
2006-05-10 01:23:51 +04:00
int8_t magic [ 16 ] ; /* To aid scans for metadata */
2002-11-18 17:04:08 +03:00
uint32_t version ;
uint64_t start ; /* Absolute start byte of mda_header */
uint64_t size ; /* Size of metadata area */
struct raw_locn raw_locns [ 0 ] ; /* NULL-terminated list */
} __attribute__ ( ( packed ) ) ;
Allow raw_read_mda_header to be called from text_label.c.
We'd like to pass in mda_header to vgname_from_mda(). In order to
do this, we need to call raw_read_mda_header() from text_label.c,
_text_read(), which gets called from the label_read() path, and
peers into the metadata and update vginfo cache. We should check
the disable bit here, and if set, not peer into the vg metadata,
thus reducing the I/O to disk.
In the process, move vgname_from_mda() to layout.h, since the fn
only gets called from format_text code, and we need the mda_header
definition from the private layout.h.
Signed-off-by: Dave Wysochanski <dwysocha@redhat.com>
2010-06-29 00:31:01 +04:00
struct mda_header * raw_read_mda_header ( const struct format_type * fmt ,
struct device_area * dev_area ) ;
2002-11-18 17:04:08 +03:00
struct mda_lists {
2008-11-04 01:14:30 +03:00
struct dm_list dirs ;
struct dm_list raws ;
2002-11-18 17:04:08 +03:00
struct metadata_area_ops * file_ops ;
struct metadata_area_ops * raw_ops ;
} ;
struct mda_context {
struct device_area area ;
2007-11-05 20:17:55 +03:00
uint64_t free_sectors ;
2002-11-18 17:04:08 +03:00
struct raw_locn rlocn ; /* Store inbetween write and commit */
} ;
/* FIXME Convert this at runtime */
# define FMTT_MAGIC "\040\114\126\115\062\040\170\133\065\101\045\162\060\116\052\076"
# define FMTT_VERSION 1
# define MDA_HEADER_SIZE 512
# define LVM2_LABEL "LVM2 001"
2006-08-17 22:23:44 +04:00
# define MDA_SIZE_MIN (8 * (unsigned) lvm_getpagesize())
2002-11-18 17:04:08 +03:00
Allow raw_read_mda_header to be called from text_label.c.
We'd like to pass in mda_header to vgname_from_mda(). In order to
do this, we need to call raw_read_mda_header() from text_label.c,
_text_read(), which gets called from the label_read() path, and
peers into the metadata and update vginfo cache. We should check
the disable bit here, and if set, not peer into the vg metadata,
thus reducing the I/O to disk.
In the process, move vgname_from_mda() to layout.h, since the fn
only gets called from format_text code, and we need the mda_header
definition from the private layout.h.
Signed-off-by: Dave Wysochanski <dwysocha@redhat.com>
2010-06-29 00:31:01 +04:00
const char * vgname_from_mda ( const struct format_type * fmt ,
struct mda_header * mdah ,
struct device_area * dev_area , struct id * vgid ,
uint64_t * vgstatus , char * * creation_host ,
uint64_t * mda_free_sectors ) ;
2002-11-18 17:04:08 +03:00
# endif