changeset 39:957c20852c7c

new program v110-dump8
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 12 Sep 2024 21:38:22 +0000
parents d7674c80426c
children 796cc2d94204
files .hgignore v110/Makefile v110/v110-dump8.c
diffstat 3 files changed, 147 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Thu Sep 12 19:50:29 2024 +0000
+++ b/.hgignore	Thu Sep 12 21:38:22 2024 +0000
@@ -21,3 +21,5 @@
 
 ^trau-ul-prep/efrdec2tsrc$
 ^trau-ul-prep/gsmx2tsrc$
+
+^v110/v110-dump8$
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/v110/Makefile	Thu Sep 12 21:38:22 2024 +0000
@@ -0,0 +1,11 @@
+CC=	gcc
+CFLAGS=	-O2
+PROGS=	v110-dump8
+
+all:	${PROGS}
+
+v110-dump8:	v110-dump8.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
+clean:
+	rm -f *.o ${PROGS}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/v110/v110-dump8.c	Thu Sep 12 21:38:22 2024 +0000
@@ -0,0 +1,134 @@
+/*
+ * This program reads a 64 kbit/s timeslot recording file, examines it
+ * as V.110 with 8 kbit/s intermediate rate, locates 80-bit V.110 frames
+ * and dumps them in a mostly raw form.
+ */
+
+#include <sys/types.h>
+#include <sys/file.h>
+#include <sys/stat.h>
+#include <sys/mman.h>
+#include <stdio.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <string.h>
+#include <strings.h>
+#include <unistd.h>
+
+static const uint8_t *filebuf;
+static unsigned total_size;
+
+static void
+read_ts_file(filename)
+	char *filename;
+{
+	int fd;
+	struct stat st;
+
+	fd = open(filename, O_RDONLY);
+	if (fd < 0) {
+		perror(filename);
+		exit(1);
+	}
+	fstat(fd, &st);
+	if (!S_ISREG(st.st_mode)) {
+		fprintf(stderr, "error: %s is not a regular file\n", filename);
+		exit(1);
+	}
+	total_size = st.st_size;
+	if (total_size < 80) {
+		fprintf(stderr, "error: %s is too short\n", filename);
+		exit(1);
+	}
+	filebuf = mmap(NULL, total_size, PROT_READ, MAP_PRIVATE, fd, 0);
+	if (filebuf == MAP_FAILED) {
+		perror("mmap");
+		exit(1);
+	}
+	close(fd);
+}
+
+static int
+check_sync(pos)
+	unsigned pos;
+{
+	const uint8_t *cand = filebuf + pos;
+	unsigned n;
+
+	for (n = 0; n < 8; n++) {
+		if (cand[n] & 0x80)
+			return 0;
+	}
+	for (n = 1; n < 10; n++) {
+		if (!(cand[n * 8] & 0x80))
+			return 0;
+	}
+	return 1;
+}
+
+static unsigned
+extract_data_byte(pos)
+	unsigned pos;
+{
+	const uint8_t *src = filebuf + pos;
+	unsigned accum;
+	unsigned n;
+
+	accum = 0;
+	for (n = 0; n < 8; n++) {
+		accum <<= 1;
+		if (*src & 0x80)
+			accum |= 1;
+		src++;
+	}
+	return accum;
+}
+
+static void
+process_frame(pos)
+	unsigned pos;
+{
+	unsigned nb;
+
+	printf("Frame at 0x%x:", pos);
+	pos += 8;
+	for (nb = 0; nb < 9; nb++) {
+		printf(" %02X", extract_data_byte(pos));
+		pos += 8;
+	}
+	putchar('\n');
+}
+
+static void
+process_filebuf()
+{
+	unsigned p, endp;
+	int sync = 0, match;
+
+	endp = total_size - 80;
+	for (p = 0; p < endp; ) {
+		match = check_sync(p);
+		if (match != sync) {
+			printf("# %s frame sync at file offset 0x%x\n",
+				match ? "Acquired" : "Lost", p);
+		}
+		if (match) {
+			process_frame(p);
+			p += 80;
+		} else
+			p++;
+		sync = match;
+	}
+}
+
+main(argc, argv)
+	char **argv;
+{
+	if (argc != 2) {
+		fprintf(stderr, "usage: %s binfile\n", argv[0]);
+		exit(1);
+	}
+	read_ts_file(argv[1]);
+	process_filebuf();
+	exit(0);
+}