mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Add 'Dump file size' field for zgetdump -i output to show the actual size of dump file in s390 extended format on disk in megabytes. Signed-off-by: Mikhail Zaslonko <zaslonko@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
189 lines
4.3 KiB
C
189 lines
4.3 KiB
C
/*
|
|
* zgetdump - Tool for copying and converting System z dumps
|
|
*
|
|
* S390 dump input format
|
|
*
|
|
* Copyright IBM Corp. 2001, 2017
|
|
*
|
|
* s390-tools is free software; you can redistribute it and/or modify
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
*/
|
|
|
|
#include <fcntl.h>
|
|
#include <linux/fs.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
|
|
#include "zgetdump.h"
|
|
|
|
/*
|
|
* File local static data
|
|
*/
|
|
static struct {
|
|
struct df_s390_hdr hdr; /* s390 dump header */
|
|
struct df_s390_em em; /* s390 end marker */
|
|
bool extended; /* Extended input dump format */
|
|
} l;
|
|
|
|
/*
|
|
* s390 mem chunk read callback
|
|
*/
|
|
static void dfi_s390_mem_chunk_read(struct dfi_mem_chunk *mem_chunk, u64 off,
|
|
void *buf, u64 cnt)
|
|
{
|
|
(void) mem_chunk;
|
|
|
|
zg_seek(g.fh, off + DF_S390_HDR_SIZE, ZG_CHECK);
|
|
zg_read(g.fh, buf, cnt, ZG_CHECK);
|
|
}
|
|
|
|
/*
|
|
* s390_ext mem chunk read callback
|
|
*/
|
|
static void dfi_s390_ext_mem_chunk_read(struct dfi_mem_chunk *mem_chunk,
|
|
u64 off, void *buf, u64 cnt)
|
|
{
|
|
u64 *mem_chunk_off = mem_chunk->data;
|
|
|
|
zg_seek(g.fh, *mem_chunk_off + off, ZG_CHECK);
|
|
zg_read(g.fh, buf, cnt, ZG_CHECK);
|
|
}
|
|
|
|
|
|
/*
|
|
* Read s390 dump header
|
|
*/
|
|
static int read_s390_hdr(void)
|
|
{
|
|
u64 magic_number;
|
|
|
|
magic_number = l.extended ? DF_S390_MAGIC_EXT : DF_S390_MAGIC;
|
|
if ((zg_type(g.fh) == ZG_TYPE_FILE) && (zg_size(g.fh) < sizeof(l.hdr)))
|
|
return -ENODEV;
|
|
if (zg_read(g.fh, &l.hdr, sizeof(l.hdr), ZG_CHECK_ERR) != sizeof(l.hdr))
|
|
return -ENODEV;
|
|
if (l.hdr.magic != magic_number)
|
|
return -ENODEV;
|
|
df_s390_hdr_add(&l.hdr);
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Init end marker
|
|
*/
|
|
static int read_s390_em(void)
|
|
{
|
|
u64 rc;
|
|
|
|
rc = zg_read(g.fh, &l.em, sizeof(l.em), ZG_CHECK_ERR);
|
|
if (rc != sizeof(l.em))
|
|
return -EINVAL;
|
|
if (df_s390_em_verify(&l.em, &l.hdr) != 0)
|
|
return -EINVAL;
|
|
df_s390_em_add(&l.em);
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Register memory chunks and verify the end marker
|
|
*/
|
|
static int mem_chunks_add(void)
|
|
{
|
|
u64 rc;
|
|
|
|
/* Single memory chunk for non-extended dump format */
|
|
dfi_mem_chunk_add(0, l.hdr.mem_size, NULL,
|
|
dfi_s390_mem_chunk_read,
|
|
NULL);
|
|
rc = zg_seek(g.fh, DF_S390_HDR_SIZE + l.hdr.mem_size,
|
|
ZG_CHECK_NONE);
|
|
if (rc != DF_S390_HDR_SIZE + l.hdr.mem_size)
|
|
return -EINVAL;
|
|
/* Read and verify the end marker */
|
|
return read_s390_em();
|
|
}
|
|
|
|
/*
|
|
* Register memory chunks (extended dump format) and verify the end marker
|
|
*/
|
|
static int mem_chunks_add_ext(void)
|
|
{
|
|
struct df_s390_dump_segm_hdr dump_segm;
|
|
u64 rc, *off_ptr, old = 0, dump_size = 0;
|
|
|
|
off_ptr = zg_alloc(sizeof(*off_ptr));
|
|
*off_ptr = zg_seek(g.fh, DF_S390_HDR_SIZE, ZG_CHECK_NONE);
|
|
if (*off_ptr != DF_S390_HDR_SIZE)
|
|
return -EINVAL;
|
|
while (*off_ptr < DF_S390_HDR_SIZE + l.hdr.mem_size - PAGE_SIZE) {
|
|
rc = zg_read(g.fh, &dump_segm, PAGE_SIZE, ZG_CHECK_ERR);
|
|
if (rc != PAGE_SIZE)
|
|
return -EINVAL;
|
|
*off_ptr += PAGE_SIZE;
|
|
/* Add zero memory chunk */
|
|
dfi_mem_chunk_add(old, dump_segm.start - old, NULL,
|
|
dfi_mem_chunk_read_zero, NULL);
|
|
/* Add memory chunk for a dump segment */
|
|
dfi_mem_chunk_add(dump_segm.start, dump_segm.len, off_ptr,
|
|
dfi_s390_ext_mem_chunk_read, zg_free);
|
|
old = dump_segm.start + dump_segm.len;
|
|
dump_size += dump_segm.len;
|
|
off_ptr = zg_alloc(sizeof(*off_ptr));
|
|
*off_ptr = zg_seek_cur(g.fh, dump_segm.len, ZG_CHECK_NONE);
|
|
if (dump_segm.stop_marker)
|
|
break;
|
|
}
|
|
/* Add zero memory chunk at the end */
|
|
dfi_mem_chunk_add(old, l.hdr.mem_size - old, NULL,
|
|
dfi_mem_chunk_read_zero, NULL);
|
|
/* Set the actual size of the dump file */
|
|
dfi_attr_file_size_set(dump_size);
|
|
/* Check if the last dump segment found */
|
|
if (!dump_segm.stop_marker)
|
|
return -EINVAL;
|
|
/* Read and verify the end marker */
|
|
return read_s390_em();
|
|
}
|
|
|
|
/*
|
|
* Initialize s390 single-volume DFI general function
|
|
*/
|
|
int dfi_s390_init_gen(bool extended)
|
|
{
|
|
int rc;
|
|
|
|
l.extended = extended;
|
|
if (read_s390_hdr() != 0)
|
|
return -ENODEV;
|
|
if (!extended)
|
|
rc = mem_chunks_add();
|
|
else
|
|
rc = mem_chunks_add_ext();
|
|
if (rc)
|
|
return rc;
|
|
df_s390_cpu_info_add(&l.hdr, l.hdr.mem_size);
|
|
zg_seek(g.fh, sizeof(l.hdr), ZG_CHECK);
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Initialize s390 single-volume DFI (non-extended)
|
|
*/
|
|
static int dfi_s390_init(void)
|
|
{
|
|
return dfi_s390_init_gen(DUMP_NON_EXTENDED);
|
|
}
|
|
|
|
/*
|
|
* s390 single-volume DFI (non-extended) operations
|
|
*/
|
|
struct dfi dfi_s390 = {
|
|
.name = "s390",
|
|
.init = dfi_s390_init,
|
|
.feat_bits = DFI_FEAT_COPY | DFI_FEAT_SEEK,
|
|
};
|