]> andersk Git - libfaim.git/commitdiff
- Wed May 9 15:21:51 PDT 2001
authormid <mid>
Wed, 9 May 2001 22:28:51 +0000 (22:28 +0000)
committermid <mid>
Wed, 9 May 2001 22:28:51 +0000 (22:28 +0000)
  - I had pizza for lunch.

CHANGES
utils/faimtest/faimtest.c

diff --git a/CHANGES b/CHANGES
index ce1a3c285f487ca8fcefa63c1c6a0e0b60b44568..871755519c60ef8f5b41755f5aa9e17b351338f8 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
 
 No release numbers
 ------------------
+ - Wed May  9 15:21:51 PDT 2001
+  - I had pizza for lunch.
+
  - Mon May  7 15:19:55 PDT 2001
   - Rename rxhandler_t to aim_rxhandler_t.  This has been 
      bugging me for a while.
index f01d265a6840630f90204e0968c16c0e98af2feb..4c8db38afd8ce2984b58a0c5b2d1144d8ca6ca7e 100644 (file)
@@ -39,6 +39,7 @@
  */
 
 #include "faimtest.h"
+#include <sys/stat.h>
 
 static char *dprintf_ctime(void)
 {
@@ -359,6 +360,7 @@ int main(int argc, char **argv)
       printf("    -c name       Screen name of owner\n");
       printf("    -o            Login at startup, then prompt\n");
       printf("    -O            Login, never give prompt\n");
+      printf("    -b path       Path to AIM 3.5.1670 binaries\n");
       exit(0);
     }
   }
@@ -797,13 +799,37 @@ int faimtest_handleredirect(struct aim_session_t *sess, struct command_rx_struct
   return 1;
 }
 
-static int getaimdata(unsigned char *buf, int buflen, unsigned long offset, const char *modname)
+/*
+ * This is a little more complicated than it looks.  The module
+ * name (proto, boscore, etc) may or may not be given.  If it is
+ * not given, then use aim.exe.  If it is given, put ".ocm" on the
+ * end of it.
+ *
+ * Now, if the offset or length requested would cause a read past
+ * the end of the file, then the request is considered invalid.  Invalid
+ * requests are processed specially.  The value hashed is the
+ * the request, put into little-endian (eight bytes: offset followed
+ * by length).  
+ *
+ * Additionally, if the request is valid, the length is mod 4096.  It is
+ * important that the length is checked for validity first before doing
+ * the mod.
+ *
+ * Note to Bosco's Brigade: if you'd like to break this, put the 
+ * module name on an invalid request.
+ *
+ */
+static int getaimdata(unsigned char **bufret, int *buflenret, unsigned long offset, unsigned long len, const char *modname)
 {
   FILE *f;
   static const char defaultmod[] = "aim.exe";
   char *filename = NULL;
+  struct stat st;
+  unsigned char *buf;
+  int invalid = 0;
 
-  memset(buf, 0, buflen);
+  if (!bufret || !*bufret || !buflenret)
+    return -1;
 
   if (modname) {
 
@@ -825,33 +851,84 @@ static int getaimdata(unsigned char *buf, int buflen, unsigned long offset, cons
 
   }
 
-  dvprintf("memrequest: loading %d bytes from 0x%08lx in \"%s\"...\n", buflen, offset, filename);
-
-  if (!(f = fopen(filename, "r"))) {
-    dperror("memrequest: fopen");
+  if (stat(filename, &st) == -1) {
+    dperror("memrequest: stat");
     free(filename);
     return -1;
   }
 
-  free(filename);
+  if ((offset > st.st_size) || (offset > st.st_size))
+    invalid = 1;
+  else if ((st.st_size - offset) < len)
+    len = st.st_size - offset;
+  else if ((st.st_size - len) < len)
+    len = st.st_size - len;
+
+  if (!invalid && len)
+    len %= 4096;
+
+  if (invalid) {
+
+    free(filename); /* not needed */
+
+    if (!(buf = malloc(8)))
+      return -1;
+
+    dvprintf("memrequest: recieved invalid request for 0x%08lx bytes at 0x%08lx\n", len, offset);
+
+    /* Damn endianness. This must be little (LSB first) endian. */
+    buf[0] = offset & 0xff;
+    buf[1] = (offset >> 8) & 0xff;
+    buf[2] = (offset >> 16) & 0xff;
+    buf[3] = (offset >> 24) & 0xff;
+    buf[4] = len & 0xff;
+    buf[5] = (len >> 8) & 0xff;
+    buf[6] = (len >> 16) & 0xff;
+    buf[7] = (len >> 24) & 0xff;
+
+    *bufret = buf;
+    *buflenret = 8;
+
+  } else {
+
+    if (!(buf = malloc(len))) {
+      free(filename);
+      return -1;
+    }
+
+    dvprintf("memrequest: loading %ld bytes from 0x%08lx in \"%s\"...\n", len, offset, filename);
+
+    if (!(f = fopen(filename, "r"))) {
+      dperror("memrequest: fopen");
+      free(filename);
+      free(buf);
+      return -1;
+    }
+
+    free(filename);
 
-  if (buflen) {
     if (fseek(f, offset, SEEK_SET) == -1) {
       dperror("memrequest: fseek");
       fclose(f);
+      free(buf);
       return -1;
     }
 
-    if (fread(buf, buflen, 1, f) != 1) {
+    if (fread(buf, len, 1, f) != 1) {
       dperror("memrequest: fread");
       fclose(f);
+      free(buf);
       return -1;
     }
-  }
 
-  fclose(f);
+    fclose(f);
 
-  return buflen;
+    *bufret = buf;
+    *buflenret = len;
+
+  }
+
+  return 0; /* success! */
 }
 
 /*
@@ -865,8 +942,9 @@ static int faimtest_memrequest(struct aim_session_t *sess, struct command_rx_str
 {
   va_list ap;
   unsigned long offset, len;
-  unsigned char *buf;
   char *modname;
+  unsigned char *buf;
+  int buflen;
   
   va_start(ap, command);
   offset = va_arg(ap, unsigned long);
@@ -874,14 +952,11 @@ static int faimtest_memrequest(struct aim_session_t *sess, struct command_rx_str
   modname = va_arg(ap, char *);
   va_end(ap);
 
-  if (!(buf = malloc(len))) {
-    dperror("memrequest: malloc");
-    return 0;
-  }
+  if (aimbinarypath && (getaimdata(&buf, &buflen, offset, len, modname) == 0)) {
 
-  if (aimbinarypath && (getaimdata(buf, len, offset, modname) == len)) {
+    aim_sendmemblock(sess, command->conn, offset, buflen, buf, AIM_SENDMEMBLOCK_FLAG_ISREQUEST);
 
-    aim_sendmemblock(sess, command->conn, offset, len, buf, AIM_SENDMEMBLOCK_FLAG_ISREQUEST);
+    free(buf);
 
   } else {
 
@@ -891,8 +966,6 @@ static int faimtest_memrequest(struct aim_session_t *sess, struct command_rx_str
 
   }
 
-  free(buf);
-
   return 1;
 }
 
This page took 0.061494 seconds and 5 git commands to generate.