FreeCalypso > hg > fc-pcsc-tools
annotate simtool/smsp_dump.c @ 130:9c10afbb745a
fc-simtool: search added to file-reading commands
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Sat, 20 Feb 2021 21:54:12 +0000 | 
| parents | f1ea981ab225 | 
| children | 
| rev | line source | 
|---|---|
| 1 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 1 /* | 
| 38 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 2 * This module implements intelligent dumping of EF_SMSP (smsp-dump). | 
| 1 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 3 */ | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 4 | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 5 #include <sys/types.h> | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 6 #include <stdio.h> | 
| 19 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 7 #include "simresp.h" | 
| 1 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 8 #include "curfile.h" | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 9 | 
| 19 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 10 static | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 11 check_blank_area(dp, endp) | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 12 u_char *dp, *endp; | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 13 { | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 14 while (dp < endp) | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 15 if (*dp++ != 0xFF) | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 16 return(-1); | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 17 return(0); | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 18 } | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 19 | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 20 static void | 
| 38 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 21 dump_da_field(binaddr, outf) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 22 u_char *binaddr; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 23 FILE *outf; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 24 { | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 25 char digits[21]; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 26 | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 27 fputs("DA=", outf); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 28 if (binaddr[0] < 1 || binaddr[0] > 20) { | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 29 malformed: fputs("malformed ", outf); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 30 return; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 31 } | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 32 if ((binaddr[0] & 1) && (binaddr[(binaddr[0] >> 1) + 2] & 0xF0) != 0xF0) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 33 goto malformed; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 34 if (check_blank_area(binaddr + 2 + ((binaddr[0] + 1) >> 1), | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 35 binaddr + 12) < 0) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 36 goto malformed; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 37 /* all checks passed */ | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 38 decode_address_digits(binaddr + 2, digits, binaddr[0]); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 39 fprintf(outf, "%s,0x%02X ", digits, binaddr[1]); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 40 } | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 41 | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 42 static void | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 43 dump_sca_field(binaddr, outf) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 44 u_char *binaddr; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 45 FILE *outf; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 46 { | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 47 char digits[21]; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 48 int rc; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 49 | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 50 fputs("SC=", outf); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 51 if (binaddr[0] < 2 || binaddr[0] > 11) { | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 52 malformed: fputs("malformed ", outf); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 53 return; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 54 } | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 55 rc = decode_phone_number(binaddr + 2, binaddr[0] - 1, digits); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 56 if (rc < 0) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 57 goto malformed; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 58 rc = check_blank_area(binaddr + 1 + binaddr[0], binaddr + 12); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 59 if (rc < 0) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 60 goto malformed; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 61 /* all checks passed */ | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 62 fprintf(outf, "%s,0x%02X ", digits, binaddr[1]); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 63 } | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 64 | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 65 static void | 
| 19 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 66 dump_record(recno, outf) | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 67 unsigned recno; | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 68 FILE *outf; | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 69 { | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 70 int rc; | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 71 unsigned textlen; | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 72 u_char *fixp; | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 73 | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 74 fprintf(outf, "#%u: ", recno); | 
| 38 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 75 if (sim_resp_data_len > 28) { | 
| 19 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 76 rc = validate_alpha_field(sim_resp_data, | 
| 38 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 77 sim_resp_data_len - 28, | 
| 19 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 78 &textlen); | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 79 if (rc < 0) { | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 80 malformed: fprintf(outf, "malformed record\n"); | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 81 return; | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 82 } | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 83 } else | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 84 textlen = 0; | 
| 38 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 85 fixp = sim_resp_data + sim_resp_data_len - 28; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 86 if ((fixp[0] & 0xE0) != 0xE0) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 87 goto malformed; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 88 if ((fixp[0] & 0x01) && check_blank_area(fixp + 1, fixp + 13) < 0) | 
| 19 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 89 goto malformed; | 
| 38 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 90 if ((fixp[0] & 0x02) && check_blank_area(fixp + 13, fixp + 25) < 0) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 91 goto malformed; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 92 if ((fixp[0] & 0x04) && fixp[25] != 0xFF) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 93 goto malformed; | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 94 if ((fixp[0] & 0x08) && fixp[26] != 0xFF) | 
| 19 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 95 goto malformed; | 
| 38 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 96 if ((fixp[0] & 0x10) && fixp[27] != 0xFF) | 
| 19 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 97 goto malformed; | 
| 38 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 98 /* basic checks passed, emit present fields */ | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 99 if (!(fixp[0] & 0x01)) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 100 dump_da_field(fixp + 1, outf); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 101 if (!(fixp[0] & 0x02)) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 102 dump_sca_field(fixp + 13, outf); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 103 if (!(fixp[0] & 0x04)) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 104 fprintf(outf, "PID=0x%02X ", fixp[25]); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 105 if (!(fixp[0] & 0x08)) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 106 fprintf(outf, "DCS=0x%02X ", fixp[26]); | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 107 if (!(fixp[0] & 0x10)) | 
| 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 108 fprintf(outf, "VP=%u ", fixp[27]); | 
| 19 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 109 print_alpha_field(sim_resp_data, textlen, outf); | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 110 putc('\n', outf); | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 111 } | 
| 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 112 | 
| 115 
f1ea981ab225
fc-simtool smsp-dump: support output redirection
 Mychaela Falconia <falcon@freecalypso.org> parents: 
38diff
changeset | 113 cmd_smsp_dump(argc, argv, outf) | 
| 1 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 114 char **argv; | 
| 115 
f1ea981ab225
fc-simtool smsp-dump: support output redirection
 Mychaela Falconia <falcon@freecalypso.org> parents: 
38diff
changeset | 115 FILE *outf; | 
| 1 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 116 { | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 117 int rc; | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 118 unsigned recno; | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 119 | 
| 38 
f5a26c1d0b93
fc-simtool smsp-dump implemented
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 120 rc = select_ef_smsp(); | 
| 1 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 121 if (rc < 0) | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 122 return(rc); | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 123 for (recno = 1; recno <= curfile_record_count; recno++) { | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 124 rc = readrec_op(recno, 0x04, curfile_record_len); | 
| 115 
f1ea981ab225
fc-simtool smsp-dump: support output redirection
 Mychaela Falconia <falcon@freecalypso.org> parents: 
38diff
changeset | 125 if (rc < 0) | 
| 1 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 126 return(rc); | 
| 19 
72a24b8538eb
meaty function of pb-dump moved back into simtool, out of libcommon
 Mychaela Falconia <falcon@freecalypso.org> parents: 
9diff
changeset | 127 dump_record(recno, outf); | 
| 1 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 128 } | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 129 return(0); | 
| 
2071b28cd0c7
simtool: first refactored version
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 130 } | 
