view simtool/dumpdir.c @ 10:ddd767f6e15b

fc-simtool ported over
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 14 Mar 2021 07:11:25 +0000
parents
children
line wrap: on
line source

/*
 * This module implements the dump of EF_DIR.
 */

#include <sys/types.h>
#include <stdio.h>
#include "curfile.h"
#include "file_id.h"

cmd_uicc_dir(argc, argv, outf)
	char **argv;
	FILE *outf;
{
	int rc;
	unsigned recno;

	rc = select_op(FILEID_MF);
	if (rc < 0)
		return(rc);
	rc = select_op(EF_DIR);
	if (rc < 0)
		return(rc);
	rc = parse_ef_select_response();
	if (rc < 0)
		return(rc);
	if (curfile_structure != 0x01) {
		fprintf(stderr, "error: EF_DIR is not linear fixed\n");
		return(-1);
	}
	if (curfile_record_len < 5) {
		fprintf(stderr, "error: EF_DIR record length is too short\n");
		return(-1);
	}
	for (recno = 1; recno <= curfile_record_count; recno++) {
		rc = readrec_op(recno, 0x04, curfile_record_len);
		if (rc < 0)
			return(rc);
		if (check_simresp_all_blank())
			continue;
		fprintf(outf, "Record #%u:\n", recno);
		dump_efdir_record(outf);
	}
	return(0);
}