aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorThomas Bertani <mail@thomasbertani.it>2012-08-18 18:30:29 +0200
committerThomas Bertani <mail@thomasbertani.it>2012-08-18 18:30:29 +0200
commita9b0934412cd218befd3bea06ad4f2b49081f37b (patch)
treefa73347d40a4ee8b3d038e9230a7c6b0c4769d92 /src/main.c
Initial import
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c196
1 files changed, 196 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..cbf1bdc
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,196 @@
+/* (C) 2012 by Thomas Bertani <mail@thomasbertani.it>
+ *
+ * All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ */
+
+#include <sys/file.h>
+#include <termios.h>
+#include <errno.h>
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <signal.h>
+//#include <sys/ioctl.h>
+
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include "gsmtap.h"
+
+
+static volatile int run = 1;
+static int gsmtap_fd, serial_fd;
+
+struct frame
+{
+ unsigned char AppID, FCS, AppMsg[8192];
+ unsigned short AppMsgLength;
+};
+
+static void interrupt(int sign){ run = 0; }
+
+static int serial_init(const char *serial_port)
+{
+ struct termios t;
+ serial_fd = open(serial_port, O_RDWR | O_NOCTTY | O_NONBLOCK);
+ if (serial_fd < 0)
+ {
+ char errstr[50];
+ sprintf(errstr, "Failed to open serial port %s", serial_port);
+ perror(errstr);
+ return -1;
+ }
+ t.c_cflag = CBAUD | B115200 | CRTSCTS | CS8 | CREAD | CLOCAL;
+ t.c_cc[VMIN] = 255;
+ t.c_cc[VTIME] = 0;
+ tcsetattr(serial_fd, TCSAFLUSH, &t);
+ return 0;
+}
+
+static int serial_read(void *buf, size_t nbytes)
+{
+ fd_set readfds;
+ int actual;
+ FD_ZERO(&readfds);
+ FD_SET(serial_fd, &readfds);
+ actual = select(serial_fd+1, &readfds, NULL, NULL, NULL);
+ if(actual > 0)
+ {
+ actual = read(serial_fd, buf, nbytes);
+ if( actual == 0 )
+ {
+ run = 0;
+ return -1;
+ }
+ }
+ if((actual == -1) && (errno != EINTR))
+ {
+ perror("serial_read");
+ run = 0;
+ }
+ return actual;
+}
+
+static void gsmtap_open(const char *gsmtap_host)
+{
+ struct sockaddr_in sin;
+ sin.sin_family= AF_INET;
+ sin.sin_port = htons(GSMTAP_UDP_PORT);
+ if (inet_aton(gsmtap_host, &sin.sin_addr) < 0) perror("parsing GSMTAP destination address");
+ gsmtap_fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
+ if (gsmtap_fd < 0) perror("GSMTAP socket initialization");
+ if (connect(gsmtap_fd, (struct sockaddr *)&sin, sizeof(sin)) < 0) perror("connecting GSMTAP socket");
+}
+
+void testgsmtap(unsigned char *AppMsg, unsigned short AppMsgLength)
+{
+ int length = 0;
+ if ((AppMsg[0] == 0x03) && ((AppMsg[1] == 0x03) || (AppMsg[1] == 0x00))) //L2/L3
+ {
+ int format = (AppMsg[2] >> 1 & 0b1111);
+ length = AppMsg[3] << 8 | AppMsg[4];
+ int i = 0;
+ printf("* L%d format:%d, Length:%d, FreqBit:%d, U/D: %d, LayerMessageFrame: [", (AppMsg[1] == 0x00) ? 3 : 2, format, length, AppMsg[2] >> 5, (AppMsg[2] & 1));
+ for (i=0; i<length; i++) printf("%d, ", AppMsg[5+i]);
+ printf("\b\b]\n");
+ }
+}
+
+void req(unsigned char *msg, int length)
+{
+ int sent = 0;
+ do
+ {
+ int ret = write(serial_fd, msg, length - sent);
+ if (ret < 0)
+ {
+ if (errno == EAGAIN)
+ {
+ usleep(1000);
+ continue;
+ }
+ break;
+ }
+ sent += ret;
+ msg += ret;
+ } while (sent < length);
+ if (sent != length) perror("Something went wrong while sending");
+ printf("Sent %dB frame!\n", length);
+}
+
+int main(int argc, char **argv)
+{
+ struct stats { int packets, totalErrors, checksumErrors; } s;
+ struct frame f;
+ unsigned char actual, buf[3], fcs;
+ unsigned short i;
+ if (serial_init(argv[1]) < 0) return -1;
+ gsmtap_open(argv[2]);
+ printf("Press Ctrl+C to interrupt...\n");
+ signal(SIGINT, interrupt);
+
+ unsigned char myreq[] = {2, 0, 0, 2, 65, 0, 67, 3}; //MobileInformationMessage-ProductName request
+ req(myreq, sizeof(myreq));
+ unsigned char myreq2[] = {2, 0, 0, 6, 0, 31, 0, 0, 0, 9, 16, 3}; //LayerMessage-EnableL2L3Trace request
+ req(myreq2, sizeof(myreq2));
+
+ while (run)
+ {
+ if ((serial_read(buf, 1) == 1) && (buf[0] == 0x02))
+ {
+ s.packets++;
+ serial_read(buf, 3);
+ f.AppID = buf[0];
+ f.AppMsgLength = ((buf[1] & 0x1F) << 8) | buf[2];
+ fcs = f.AppID ^ buf[1] ^ buf[2];
+ if (f.AppMsgLength > 255) //FIXME: not yet implemented, actually we don't need it at all
+ {
+ s.packets--;
+ continue;
+ }
+ if (f.AppID != 0x00) continue; // we are just interested in parsing AppID == 0x00 (OTR) packets
+ serial_read(f.AppMsg, f.AppMsgLength);
+ for (i = 0; i < f.AppMsgLength; i++) fcs ^= f.AppMsg[i];
+ actual = serial_read(buf, 2);
+ if ((actual != 2) || (buf[1] != 0x03))
+ {
+ printf("(ERROR: ETX expected, got %d instead)\n", buf[1]);
+ s.totalErrors++;
+ continue;
+ }
+ printf("(OK %dB)", f.AppMsgLength);
+ f.FCS = buf[0];
+ if (fcs != f.FCS)
+ {
+ printf(" ~ WRONG CHECKSUM!!\n");
+ s.totalErrors++; s.checksumErrors++;
+ continue;
+ }
+ printf(" ~ AppMsg: [");
+ for (i = 0; i < f.AppMsgLength; i++) printf("%d ", f.AppMsg[i]);
+ printf("\b]\n");
+ /*printf("\b, asString: [");
+ for (i = 0; i < f.AppMsgLength; i++) printf("%c ", (char)f.AppMsg[i]);
+ printf("\b]\n");*/
+ testgsmtap(f.AppMsg, f.AppMsgLength);
+ }
+ }
+ printf("[*] Checksum errors: %d/%d | Total errors: %d/%d\n", s.checksumErrors, s.packets, s.totalErrors, s.packets);
+ return 0;
+}