# HG changeset patch # User Mychaela Falconia # Date 1613170929 0 # Node ID 2714d379edc2df89aa7e194ee8de88a292f6d198 # Parent 8cb269f5a902dddc5c0c24d3a42d9892c1424534 fc-simtool sms-erase-* command family implemented diff -r 8cb269f5a902 -r 2714d379edc2 simtool/Makefile --- a/simtool/Makefile Fri Feb 12 22:10:32 2021 +0000 +++ b/simtool/Makefile Fri Feb 12 23:02:09 2021 +0000 @@ -4,8 +4,8 @@ OBJS= a38.o chv.o curfile.o dispatch.o dumpdir.o grcard1.o grcard2.o hlread.o\ main.o pbcommon.o pbdump.o pberase.o pbupd_file.o pbupd_imm.o \ pbupd_immhex.o readcmd.o readops.o restorebin.o savebin.o script.o \ - select.o smsp_common.o smsp_dump.o smsp_erase.o smsp_restore.o sysmo.o \ - telsum.o writecmd.o writeops.o + select.o smserase.o smsp_common.o smsp_dump.o smsp_erase.o \ + smsp_restore.o sysmo.o telsum.o writecmd.o writeops.o LIBS= ../libcommon/libcommon.a INSTBIN=/opt/freecalypso/bin diff -r 8cb269f5a902 -r 2714d379edc2 simtool/dispatch.c --- a/simtool/dispatch.c Fri Feb 12 22:10:32 2021 +0000 +++ b/simtool/dispatch.c Fri Feb 12 23:02:09 2021 +0000 @@ -38,6 +38,9 @@ extern int cmd_savebin(); extern int cmd_save_sms_bin(); extern int cmd_select(); +extern int cmd_sms_erase_all(); +extern int cmd_sms_erase_one(); +extern int cmd_sms_erase_range(); extern int cmd_smsp_dump(); extern int cmd_smsp_erase_all(); extern int cmd_smsp_erase_one(); @@ -106,6 +109,9 @@ {"save-sms-bin", 1, 1, cmd_save_sms_bin}, {"select", 1, 1, cmd_select}, {"sim-resp", 0, 0, display_sim_resp_in_hex}, + {"sms-erase-all", 0, 0, cmd_sms_erase_all}, + {"sms-erase-one", 1, 1, cmd_sms_erase_one}, + {"sms-erase-range", 2, 2, cmd_sms_erase_range}, {"smsp-dump", 0, 1, cmd_smsp_dump}, {"smsp-erase-all", 0, 0, cmd_smsp_erase_all}, {"smsp-erase-one", 1, 1, cmd_smsp_erase_one}, diff -r 8cb269f5a902 -r 2714d379edc2 simtool/smserase.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/simtool/smserase.c Fri Feb 12 23:02:09 2021 +0000 @@ -0,0 +1,116 @@ +/* + * This module implements the sms-erase family of commands. + */ + +#include +#include +#include +#include +#include +#include "curfile.h" +#include "file_id.h" + +#define SMS_RECORD_LEN 176 + +static +select_ef_sms() +{ + int rc; + + rc = select_op(DF_TELECOM); + if (rc < 0) + return(rc); + rc = select_op(EF_SMS); + if (rc < 0) + return(rc); + rc = parse_ef_select_response(); + if (rc < 0) + return(rc); + if (curfile_structure != 0x01) { + fprintf(stderr, "error: EF_SMS is not linear fixed\n"); + return(-1); + } + if (curfile_record_len != SMS_RECORD_LEN) { + fprintf(stderr, + "error: EF_SMS has record length of %u bytes, expected 176\n", + curfile_record_len); + return(-1); + } + return(0); +} + +cmd_sms_erase_all(argc, argv) + char **argv; +{ + int rc; + unsigned recno; + u_char record[SMS_RECORD_LEN]; + + rc = select_ef_sms(); + if (rc < 0) + return(rc); + memset(record, 0xFF, SMS_RECORD_LEN); + record[0] = 0; + for (recno = 1; recno <= curfile_record_count; recno++) { + rc = update_rec_op(recno, 0x04, record, SMS_RECORD_LEN); + if (rc < 0) + return(rc); + } + return(0); +} + +cmd_sms_erase_one(argc, argv) + char **argv; +{ + int rc; + unsigned recno; + u_char record[SMS_RECORD_LEN]; + + rc = select_ef_sms(); + if (rc < 0) + return(rc); + recno = strtoul(argv[1], 0, 0); + if (recno < 1 || recno > curfile_record_count) { + fprintf(stderr, "error: specified record number is invalid\n"); + return(-1); + } + memset(record, 0xFF, SMS_RECORD_LEN); + record[0] = 0; + return update_rec_op(recno, 0x04, record, SMS_RECORD_LEN); +} + +cmd_sms_erase_range(argc, argv) + char **argv; +{ + int rc; + unsigned recno, startrec, endrec; + u_char record[SMS_RECORD_LEN]; + + rc = select_ef_sms(); + if (rc < 0) + return(rc); + startrec = strtoul(argv[1], 0, 0); + if (startrec < 1 || startrec > curfile_record_count) { + fprintf(stderr, + "error: specified starting record number is invalid\n"); + return(-1); + } + endrec = strtoul(argv[2], 0, 0); + if (endrec < 1 || endrec > curfile_record_count) { + fprintf(stderr, + "error: specified final record number is invalid\n"); + return(-1); + } + if (startrec > endrec) { + fprintf(stderr, "error: reverse record range specified\n"); + return(-1); + } + memset(record, 0xFF, SMS_RECORD_LEN); + record[0] = 0; + for (recno = startrec; recno <= endrec; recno++) { + rc = update_rec_op(recno, 0x04, record, SMS_RECORD_LEN); + if (rc < 0) + return(rc); + } + return(0); +}