// Arminius' protocol utilities ver 0.1 // // Any questions and bugs, mailto: arminius@mail.hwaei.com.tw // ------------------------------------------------------------------- // The following definitions is to define game-dependent codes. // Before compiling, remove the "//". #define __STONEAGE #include "version.h" #include #include #include "autil.h" #include "char.h" #ifdef __STONEAGE #include "lssproto_util.h" #include "common.h" #endif // Nuke 0701 fix char *MesgSlice[SLICE_MAX]; int SliceCount; char PersonalKey[4096]; // ------------------------------------------------------------------- // Initialize utilities // BOOL util_Init( void) { int i; for (i=0; i=0)) { ptr[0] = '\0'; if (strlen(head)= 65) { b = (src[i] - 65 + 10); } else { b = src[i] - 48; } if (i % 2) { tmp = tmp + b; dst[i / 2] = tmp; } else { tmp = b <<4; } } dst[strlen(dst)]=0; } unsigned long DELTA=0x9e3779b9; #define MX (z>>5^y<<2) + (y>>3^z<<4)^(sum^y) + (k[p&3^e]^z); long DecodeTea(long* v, long n, long* k) { unsigned long z,y,sum,e; z=v[n-1]; y=v[0]; sum=0; long p, q; q = 6 + 52/n; sum = q*DELTA; while(sum != 0) { e = (sum >> 2) & 3; for (p=n-1; p>0; p--) z = v[p-1], y = v[p] -= MX; z = v[n-1]; y = v[0] -= MX; sum -= DELTA; } return 0; } BOOL util_DecodeMessageTea(char *dst,char *sac) { int len = strlen(sac)/2; if (sac[0]=='\0') return FALSE; if(len/4 <= 0 ) return FALSE; hexstrtostring(dst,sac); DecodeTea((long*)dst,len/4,(long *)DENGLUKEY1); return TRUE; } #endif void util_DecodeMessage(char *dst, char *src) { // strcpy(dst, src); // util_xorstring(dst, src); #define INTCODESIZE (sizeof(int)*8+5)/6 int rn; int *t1, t2; char t3[4096], t4[4096]; // This buffer is enough for an integer. char tz[65500]; if (src[strlen(src)-1]=='\n') src[strlen(src)-1]='\0'; util_xorstring(tz, src); // get seed strncpy(t4, tz, INTCODESIZE); t4[INTCODESIZE] = '\0'; util_64to256(t3, t4, DEFAULTTABLE); t1 = (int *) t3; t2 = *t1 ^ 0xffffffff; util_swapint(&rn, &t2, "3142"); util_shrstring(dst, tz + INTCODESIZE, rn); } // ------------------------------------------------------------------- // Get a function information from MesgSlice. A function is a complete // and identifiable message received, beginned at DEFAULTFUNCBEGIN and // ended at DEFAULTFUNCEND. This routine will return the function ID // (Action ID) and how many fields this function have. // // arg: func=return function ID fieldcount=return fields of the function // ret: 1=success 0=failed (function not complete) int util_GetFunctionFromSlice(int *func, int *fieldcount) { char t1[16384]; int i; // if (strcmp(MesgSlice[0], DEFAULTFUNCBEGIN)!=0) util_DiscardMessage(); strcpy(t1, MesgSlice[1]); // Robin adjust #ifdef _VERSION_NEW *func=atoi(t1) - 13; #else #ifdef _VERSION_80 *func=atoi(t1) - 13; #else *func=atoi(t1); #endif #endif for (i=0; i func(%d)\n", file, line, func); return; } #ifdef _VERSION_NEW sprintf(t1, "&;%d%s;#;", func+23, buffer); #else #ifdef _VERSION_80 sprintf(t1, "&;%d%s;#;", func+23, buffer); #else sprintf(t1, "&;%d%s;#;", func, buffer); #endif #endif util_EncodeMessage(t2, t1); #ifdef __STONEAGE lssproto_Send(fd, t2); #endif } int util_256to64(char *dst, char *src, int len, char *table) { unsigned int dw,dwcounter,i; if (!dst || !src || !table) return 0; dw=0; dwcounter=0; for (i=0; i> 6 ); if (i%3==2) { dst[ dwcounter++ ] = table[ dw & 0x3f ]; dw = 0; } } if (dw) dst[ dwcounter++ ] = table[ dw ]; dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // Convert 6-bit strings into 8-bit strings, buffers that store these strings // must have enough space. // // arg: dst=6-bit string; src=8-bit string; table=mapping table // ret: 0=failed >0=bytes converted int util_64to256(char *dst, char *src, char *table) { unsigned int dw,dwcounter,i; char *ptr = NULL; dw=0; dwcounter=0; if (!dst || !src || !table) return 0; for (i=0; i> 8; } else { dw = (unsigned int)(ptr-table) & 0x3f; } } if (dw) dst[ dwcounter++ ] = dw & 0xff; dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // This basically is a 256to64 encoder. But it shifts the result by key. // // arg: dst=6-bit string; src=8-bit string; len=src strlen; // table=mapping table; key=rotate key; // ret: 0=failed >0=bytes converted int util_256to64_shr(char *dst, char *src, int len, char *table, char *key) { unsigned int dw,dwcounter,i,j; if (!dst || !src || !table || !key) return 0; if (strlen(key)<1) return 0; // key can't be empty. dw=0; dwcounter=0; j=0; for (i=0; i> 6 ); if (i%3==2) { dst[ dwcounter++ ] = table[ ((dw & 0x3f) + key[j]) % 64 ];// check! j++; if (!key[j]) j=0; dw = 0; } } if (dw) dst[ dwcounter++ ] = table[ (dw + key[j]) % 64 ]; // check! dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // Decoding function of util_256to64_shr. // // arg: dst=8-bit string; src=6-bit string; table=mapping table; // key=rotate key; // ret: 0=failed >0=bytes converted int util_shl_64to256(char *dst, char *src, char *table, char *key) { unsigned int dw,dwcounter,i,j; char *ptr = NULL; if (!key || (strlen(key)<1)) return 0; // must have key dw=0; dwcounter=0; j=0; if (!dst || !src || !table) return 0; for (i=0; i> 8; } else { // check! dw = (((unsigned int)(ptr-table) & 0x3f) + 64 - key[j]) % 64; j++; if (!key[j]) j=0; } } if (dw) dst[ dwcounter++ ] = dw & 0xff; dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // This basically is a 256to64 encoder. But it shifts the result by key. // // arg: dst=6-bit string; src=8-bit string; len=src strlen; // table=mapping table; key=rotate key; // ret: 0=failed >0=bytes converted int util_256to64_shl(char *dst, char *src, int len, char *table, char *key) { unsigned int dw,dwcounter,i,j; if (!dst || !src || !table || !key) return 0; if (strlen(key)<1) return 0; // key can't be empty. dw=0; dwcounter=0; j=0; for (i=0; i> 6 ); if (i%3==2) { dst[ dwcounter++ ] = table[ ((dw & 0x3f) + 64 - key[j]) % 64 ]; // check! j++; if (!key[j]) j=0; dw = 0; } } if (dw) dst[ dwcounter++ ] = table[ (dw + 64 - key[j]) % 64 ]; // check! dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // Decoding function of util_256to64_shl. // // arg: dst=8-bit string; src=6-bit string; table=mapping table; // key=rotate key; // ret: 0=failed >0=bytes converted int util_shr_64to256(char *dst, char *src, char *table, char *key) { unsigned int dw,dwcounter,i,j; char *ptr = NULL; if (!key || (strlen(key)<1)) return 0; // must have key dw=0; dwcounter=0; j=0; if (!dst || !src || !table) return 0; for (i=0; i> 8; } else { // check! dw = (((unsigned int)(ptr-table) & 0x3f) + key[j]) % 64; j++; if (!key[j]) j=0; } } if (dw) dst[ dwcounter++ ] = dw & 0xff; dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // Swap a integer (4 byte). // The value "rule" indicates the swaping rule. It's a 4 byte string // such as "1324" or "2431". // void util_swapint(int *dst, int *src, char *rule) { char *ptr, *qtr; int i; ptr = (char *) src; qtr = (char *) dst; for (i=0; i<4; i++) qtr[rule[i]-'1']=ptr[i]; } // ------------------------------------------------------------------- // Xor a string. Be careful that your string contains '0xff'. Your // data may lose. // void util_xorstring(char *dst, char *src) { int i; if (strlen(src)>65500) return; for (i=0; i