view uicc/readcmd.c @ 93:6041c601304d

fcsim1-mkprov: revert OTA key addition It appears that GrcardSIM2 cards (which is what we got for FCSIM1) do not support OTA after all, contrary to what we were previously led to believe by some tech support emails from Grcard - apparently those support emails and OTA descriptions referred to some other card model(s).
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 21 Apr 2021 05:38:39 +0000
parents db131929ee96
children
line wrap: on
line source

/*
 * This module implements elementary low-level readbin and readrec commands.
 */

#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include "simresp.h"

extern unsigned last_sel_file_record_len;

cmd_readbin(argc, argv, outf)
	char **argv;
	FILE *outf;
{
	unsigned offset, len;
	int rc;

	offset = strtoul(argv[1], 0, 0);
	if (offset > 0x7FFF) {
		fprintf(stderr, "error: offset argument is out of range\n");
		return(-1);
	}
	len = strtoul(argv[2], 0, 0);
	if (len < 1 || len > 256) {
		fprintf(stderr, "error: length argument is out of range\n");
		return(-1);
	}
	rc = readbin_op(offset, len);
	if (rc < 0)
		return(rc);
	display_sim_resp_in_hex(outf);
	return(0);
}

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

	recno = strtoul(argv[1], 0, 0);
	if (recno < 1 || recno > 255) {
		fprintf(stderr,
			"error: record number argument is out of range\n");
		return(-1);
	}
	if (argv[2]) {
		len = strtoul(argv[2], 0, 0);
		if (len < 1 || len > 255) {
			fprintf(stderr,
				"error: length argument is out of range\n");
			return(-1);
		}
	} else {
		if (!last_sel_file_record_len) {
			fprintf(stderr,
			"error: no current file record length is available\n");
			return(-1);
		}
		len = last_sel_file_record_len;
	}
	rc = readrec_op(recno, 0x04, len);
	if (rc < 0)
		return(rc);
	display_sim_resp_in_hex(outf);
	return(0);
}