27unsigned char LocalIPNum6[16] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01};
53 if (p==NULL)
return TRUE;
82 unsigned char x[] = {0x01, 0x00};
89 unsigned short* xx = (
unsigned short*)x;
116 unsigned char x[] = {0x00, 0x01};
123 unsigned short* xx = (
unsigned short*)x;
158 double ret = *((
double*)ptr);
176 float ret = *((
float*)ptr);
194 int ret = *((
int*)ptr);
212 unsigned int ret = *((
unsigned int*)ptr);
230 short ret = *((
short*)ptr);
248 unsigned short ret = *((
unsigned short*)ptr);
266 double ret = *((
double*)ptr);
284 float ret = *((
float*)ptr);
302 int ret = *((
int*)ptr);
320 int ret = *((
unsigned int*)ptr);
338 short ret = *((
short*)ptr);
356 unsigned short ret = *((
unsigned short*)ptr);
442 char* buf = (
char*)malloc(64);
446 struct tm tm = *localtime(&date);
447 strftime(buf, 63, format, &tm);
456 char* buf = (
char*)malloc(64);
459 struct tm tm = *gmtime(&date);
461 strftime(buf, 63, format, &tm);
489 if (buf==NULL)
return NULL;
491 for(i=0,j=0; j<n-1; j++) {
495 if (buf[i]==
'\0')
return NULL;
502 ret = (
char*)malloc(cnt+1);
503 if (ret==NULL)
return NULL;
505 for(i=0; i<cnt; i++) ret[i] = buf[pos+i];
534 if (buf==NULL || buf[*ptr]==
'\0')
return NULL;
537 while (buf[*ptr]!=
CHAR_LF && buf[*ptr]!=
CHAR_CR && buf[*ptr]!=
'\0') (*ptr)++;
541 ret = (
char*)malloc(cnt+1);
542 if (ret==NULL)
return NULL;
545 for(i=0; i<cnt; i++) ret[i] = buf[pos+i];
567char*
awk(
char* buf,
char cc,
int n)
572 if (buf==NULL)
return NULL;
574 for(i=0,j=0; j<n-1; j++) {
575 while (buf[i]!=
'\0' && buf[i]!=cc) i++;
578 if (buf[i]==
'\0')
return NULL;
581 while (buf[i]!=
'\0' && buf[i]!=cc) i++;
584 item = (
char*)malloc(cnt+1);
585 if (item==NULL)
return NULL;
587 for (i=0; i<cnt; i++) item[i] = buf[pos+i];
609char*
cawk(
char* buf,
char cc,
int n)
614 if (buf==NULL)
return NULL;
616 for(i=0,j=0; j<n-1; j++) {
617 while (buf[i]!=
'\0' && buf[i]!=cc) i++;
618 while (buf[i]!=
'\0' && buf[i]==cc) i++;
620 if (buf[i]==
'\0')
return NULL;
623 while (buf[i]!=
'\0' && buf[i]!=cc) i++;
626 item = (
char*)malloc(cnt+1);
627 if (item==NULL)
return NULL;
629 for (i=0; i<cnt; i++) item[i] = buf[pos+i];
650int bincmp(
unsigned char* b1,
unsigned char* b2,
int n)
654 if (b1==NULL || b2==NULL)
return 1;
656 for (i=0; i<n; i++) {
657 if (b1[i]!=b2[i])
return 1;
678 if (s1==NULL || s2==NULL)
return 1;
680 j1 = (int)strlen(s1) - 1;
681 j2 = (int)strlen(s2) - 1;
683 while (n>0 && j1>=0 && j2>=0) {
684 if (s1[j1--] != s2[j2--])
return 1;
707 if (s1==NULL || s2==NULL)
return 1;
709 j1 = (int)strlen(s1) - 1;
710 j2 = (int)strlen(s2) - 1;
712 while (n>0 && j1>=0 && j2>=0) {
713 if (toupper(s1[j1--]) != toupper(s2[j2--]))
return 1;
742 if (buf==NULL || nd==NULL)
return NULL;
744 pb = (
char*)malloc(strlen(buf)+1);
745 if (pb==NULL)
return NULL;
746 memcpy(pb, buf, (
int)strlen(buf)+1);
748 pn = (
char*)malloc(strlen(nd)+1);
753 memcpy(pn, nd, (
int)strlen(nd)+1);
760 pp = (pp - pb) + (
char*)buf;
786 if (dat==NULL || key==NULL)
return FALSE;
789 if (!strcmp(dat, key))
return TRUE;
792 if (!strncmp(dat, key, len))
return TRUE;
796 if (len==-1) sz = (int)strlen(dat);
797 else sz = (int)strlen(key);
798 if (!strncmp(dat, key, sz))
return TRUE;
822 if (dat==NULL || key==NULL)
return FALSE;
832 if (len==-1) sz = (int)strlen(dat);
833 else sz = (int)strlen(key);
858 if (dat==NULL || key==NULL)
return FALSE;
861 if (!strcmp(dat, key))
return TRUE;
868 if (len==-1) sz = (int)strlen(dat);
869 else sz = (int)strlen(key);
894 if (dat==NULL || key==NULL)
return FALSE;
904 if (len==-1) sz = (int)strlen(dat);
905 else sz = (int)strlen(key);
925 if (buf==NULL)
return NULL;
927 len = (int)strlen(buf);
928 for (i=0; i<len; i++) {
950 int n, sqf = 0, dqf = 0;
952 n = (int)strlen(check);
955 while (*pp==
'\\') pp += 2;
958 if (!sqf && *pp==
'\"') dqf = 1 - dqf;
959 else if (!dqf && *pp==
'\'') sqf = 1 - sqf;
961 else if (!sqf && !dqf) {
963 for (i=0; i<n; i++) {
964 if (*pp==check[i])
return pp;
987 int sqf = 0, dqf = 0;
990 while (*pp==
'\\') pp += 2;
993 if (!sqf && *pp==
'\"') dqf = 1 - dqf;
994 else if (!dqf && *pp==
'\'') sqf = 1 - sqf;
995 else if (!sqf && !dqf && *pp==cc)
return pp;
1024 int cnt = 0, sqf = 0, dqf = 0;
1032 while (*pp==
'\\') pp += 2;
1035 if (!sqf && *pp==
'\"') dqf = 1 - dqf;
1036 else if (!dqf && *pp==
'\'') sqf = 1 - sqf;
1038 else if (!sqf && !dqf) {
1039 if (*pp==end) cnt--;
1040 else if (*pp==pair) cnt++;
1041 if (cnt==0)
return pp;
1064 if (*pp==
'\"' || *pp==
'\'') {
1068 while (*pp==
'\\') pp += 2;
1071 if (*pp==ch)
return pp;
1099 if (mesg==NULL)
return NULL;
1104 while(*pe!=
'\0') pe++;
1108 sz = (int)(pe - ps) + 1;
1109 pp = (
char*)malloc((
size_t)(sz + 1));
1161 if (mesg==NULL)
return NULL;
1163 if (len==0)
return NULL;
1164 if (len<0) len = (int)strlen(mesg);
1165 pp = (
char*)malloc(len+1);
1166 if (pp==NULL)
return NULL;
1167 memset(pp, 0, len+1);
1170 while(mesg[i]!=
'\0' && i<len) {
1171 if (mesg[i]==
CHAR_TAB) mesg[i] =
' ';
1176 if (ff==
ON) ff =
OFF;
1177 else pp[j++] = mesg[i];
1190 i = (int)strlen(pp) - 1;
1215 if (mesg==NULL)
return NULL;
1217 pp = (
char*)malloc((strlen(mesg)+1)*2);
1218 if (pp==NULL)
return NULL;
1219 memset(pp, 0, (strlen(mesg)+1)*2);
1222 while(mesg[i]!=
'\0') {
1252void replace_char(
unsigned char* buf,
int len,
unsigned char frm,
unsigned char toc)
1254 if (buf==NULL)
return;
1255 if (len<=0) len = (int)strlen((
char*)buf) + 1;
1258 for (i=0; i<len; i++) {
1259 if (buf[i]==frm) buf[i] = toc;
1282char*
replace_str(
char* buf,
int len,
const char* frm,
const char* tos)
1285 int i, j, k, slen, flen, tlen;
1287 if (buf==NULL || frm==NULL || tos==NULL)
return NULL;
1288 if (len<=0) len = (int)strlen(buf) + 1;
1290 wrk = (
char*)malloc(len);
1291 if (wrk==NULL)
return NULL;
1292 memset(wrk, 0, len);
1294 slen = (int)strlen(buf);
1295 flen = (int)strlen(frm);
1296 tlen = (int)strlen(tos);
1299 while (i<slen && j<len) {
1300 if (!strncmp((
const char*)(buf+i), frm, flen)){
1301 for (k=0; k<tlen; k++) {
1308 wrk[j++] = buf[i++];
1319 for (k=0; k<=j; k++) buf[k] = wrk[k];
1343 if (buf==NULL)
return NULL;
1346 le =
Min(le, (
int)strlen((
const char*)buf));
1348 if (len<=0)
return NULL;
1350 ret = (
char*)malloc(len+1);
1351 if (ret==NULL)
return NULL;
1352 memset(ret, 0, len+1);
1354 for (i=0; i<len; i++) ret[i] = buf[i+ls];
1373 if (buf==NULL)
return NULL;
1375 len = (int)strlen(buf);
1376 ret = (
char*)malloc(len+1);
1377 if (ret==NULL)
return NULL;
1379 memcpy(ret, buf, len);
1396 if (str==NULL)
return 0;
1397 int i, len = (int)strlen((
char*)str);
1400 for (i=0; i<len; i++) {
1401 if (str[i]==
'.') cnt += 1;
1402 else if (str[i]<
'0' || str[i]>
'9')
return 0;
1404 if (cnt>1)
return 0;
1405 else if (cnt>0)
return 2;
1535 str = (
char*)malloc(
LDATA);
1536 if (str==NULL)
return NULL;
1538 memset(str, 0,
LDATA);
1555 str = (
char*)malloc(
LDATA);
1556 if (str==NULL)
return NULL;
1558 memset(str, 0,
LDATA);
1575 str = (
char*)malloc(
LDATA);
1576 if (str==NULL)
return NULL;
1578 memset(str, 0,
LDATA);
1595 str = (
char*)malloc(
LDATA);
1596 if (str==NULL)
return NULL;
1598 memset(str, 0,
LDATA);
1615 str = (
char*)malloc(
LDATA);
1616 if (str==NULL)
return NULL;
1618 memset(str, 0,
LDATA);
1635 str = (
char*)malloc(
LDATA);
1636 if (str==NULL)
return NULL;
1638 memset(str, 0,
LDATA);
1655 str = (
char*)malloc(
LDATA);
1656 if (str==NULL)
return NULL;
1658 memset(str, 0,
LDATA);
1678 if (buf==NULL)
return 0;
1681 while(buf[i]!=
'\0') {
1709 if (str==NULL)
return ret;
1711 int len = (int)strlen(str);
1713 for (i=0; i<len; i++) {
1714 if (str[i]>=
'0' && str[i]<=
'9') {
1716 ret += (int)(str[i] -
'0');
1718 else if (str[i]>=
'A' && str[i]<=
'F') {
1720 ret += (int)(str[i] -
'A') + 10;
1722 else if (str[i]>=
'a' && str[i]<=
'f') {
1724 ret += (int)(str[i] -
'a') + 10;
1726 else if (str[i]!=
' ') {
1754 fp = fopen(
"/dev/urandom",
"rb");
1759 sz = fread(&seed,
sizeof(
unsigned int), 1, fp);
1779 char base[]=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
1783 if (n<=0)
return NULL;
1784 pass = (
char*)malloc(n+1);
1785 if (pass==NULL)
return pass;
1787 sz = (int)strlen(base);
1788 for (i=0; i<n; i++) pass[i] = base[rand()%sz];
1810 bin = (
unsigned char*)malloc(sz);
1811 if (bin==NULL)
return NULL;
1814 for (i=0; i<n; i++)
setBit(bin, i, rand()%2);
1824unsigned long long int ntohull(
unsigned long long int s)
1923long long int swapd(
unsigned long long int p)
1957 if (s<=0) s = (int)strlen((
const char*)p);
1959 for (i=0; i<s/2; i++) {
1995 buf = (
unsigned char*)malloc(sz);
1999 fp = fopen(src,
"rb");
2004 rs = fread(buf, sz, 1, fp);
2007 fp = fopen(dst, mode);
2012 fwrite(buf, sz, 1, fp);
2045 buf = (
unsigned char*)malloc(sz);
2049 rs = fread(buf, sz, 1, src);
2050 sz = (int)fwrite(buf, sz, 1, dst);
2068 if (str==NULL)
return NULL;
2076 int len = (int)strlen(str);
2078 while (sz<len && str[len-1-sz]!=cc) sz++;
2079 char* fnm = (
char*)str + len - sz;
2096 if (str==NULL)
return NULL;
2104 char* path = (
char*)str;
2105 int len = (int)strlen(str);
2107 if (path[0]==cc)
return path;
2112 while (sz>=0 && str[sz]!=cc) sz--;
2193 if (str==NULL || str[0]==
'\0')
return NULL;
2195 int len = (int)strlen(str);
2196 char* path = (
char*)malloc(len + 1);
2197 memcpy(path, str, len + 1);
2203 while (sz>=0 && path[sz]!=cc1 && path[sz]!=cc2) sz--;
2230 if (str==NULL)
return NULL;
2236 len = (int)strlen(str);
2238 while (sz<len && str[len-1-sz]!=cc1 && str[len-1-sz]!=cc2 && str[len-1-sz]!=pd) sz++;
2240 if (str[len-1-sz]!=pd)
return NULL;
2241 ext = (
char*)str + len - sz;
2258 if (str==NULL)
return NULL;
2261 char* path = (
char*)str;
2263 int len = (int)strlen(path);
2265 while (sz>=0 && path[sz]!=cc) sz--;
2267 if (sz<1)
return path;
2284 if (str==NULL)
return NULL;
2287 int len = (int)strlen(str);
2288 char* path = (
char*)malloc(len+1);
2289 memcpy(path, str, len+1);
2292 while (sz>=0 && path[sz]!=cc) sz--;
2294 if (sz<1)
return path;
2311 if (fn==NULL)
return -1;
2317 return stbuf.st_size;
2319 if (S_ISREG(stbuf.st_mode))
return stbuf.st_size;
2341 if (fn==NULL)
return FALSE;
2343 if ((fp=fopen(fn,
"rb"))==NULL) {
2371 if ((fp=fopen(fn,
"wb"))==NULL)
return NULL;
2377 if (chmod(fn, mode))
return fp;
2408 if (dir==NULL) dir = &nostr;
2409 dlen = (int)strlen(dir);
2410 if (flen<=0) flen = 15;
2412 fname = (
char*)malloc(dlen+flen+1);
2413 if (fname==NULL)
return NULL;
2414 memset(fname, 0, dlen+flen+1);
2416 fnbin = (
char*)malloc(flen);
2421 memset(fnbin, 0, flen);
2424 fp = fopen(
"/dev/urandom",
"rb");
2428 rs = fread(fnbin, flen, 1, fp);
2430 if (fnb64!=NULL) fnb64[flen] =
'\0';
2432 if (fnb64==NULL) fnb64 =
randstr(flen);
2434 for (i=0; i<flen; i++) {
2435 if (fnb64[i]==
'/') fnb64[i] =
'x';
2436 if (fnb64[i]==
'+') fnb64[i] =
'X';
2439 memset (fname, 0, dlen+flen+1);
2440 strncpy(fname, dir, dlen);
2441 strncat(fname, fnb64, flen);
2445 if (fp!=NULL) fclose(fp);
2460unsigned char*
read_file(
const char* fname,
long unsigned int* size)
2465 if (size==NULL)
return NULL;
2468 if (*size<=0)
return NULL;
2470 unsigned char* buf = (
unsigned char*)malloc(*size);
2471 if (buf==NULL)
return NULL;
2472 memset(buf, 0, *size);
2474 FILE* fp = fopen(fname,
"rb");
2480 rs = fread(buf, *size, 1, fp);
2497long unsigned int write_file(
const char* fname,
unsigned char* buf,
long unsigned int size)
2499 if (size==0)
return 0;
2501 FILE* fp = fopen(fname,
"wb");
2502 if (fp==NULL)
return 0;
2504 size = (
long unsigned int)fwrite(buf, size, 1, fp);
2515 long unsigned int lpath = (
long unsigned int)strlen(path);
2516 char* file_name = (
char*)malloc(lpath + 1);
2517 memcpy(file_name, path, lpath);
2518 file_name[lpath] =
'\0';
2520 long unsigned int size = 0;
2523 if (file_name[1]==
':') mark = 2;
2526 char* wrk = (
char*)malloc(lpath + 1);
2527 while (size < lpath) {
2528 memcpy(wrk, file_name, lpath + 1);
2530 for (
long unsigned int ptr=0; ptr<=lpath; ptr++) {
2531 if (wrk[ptr]==
'/') dirs++;
2535 int ret = stat(wrk, &stbuf);
2537 if (!(stbuf.st_mode & S_IFDIR)) {
2542 ret =
mkdir(wrk, mode);
2570 len = (int)strlen(str);
2571 for (i=0; i<len; i++)
if (str[i]==
'\\') bsn++;
2572 buf = (
char*)malloc(len+bsn+1);
2573 if (buf==NULL)
return NULL;
2574 memset(buf, 0, len+bsn+1);
2576 for (i=0,j=0; i<len; i++) {
2578 if (str[i]==
'\\') buf[j++] =
'\\';
2601 char fname[
LNAME], *fo;
2603 memset(fname, 0,
LNAME);
2605 len = (int)strlen(fname);
2607 fo = (
char*)malloc(len+1);
2608 if (fo==NULL)
return NULL;
2610 memset(fo, 0, len+1);
2611 strncpy(fo, fname, len);
2647 while(mesg[i]!=
'\0' && mesg[i+1]!=
'\0'){
2648 if (mesg[i]>=0xa1 && mesg[i]<=0xfe){
2667 while(mesg[i]!=
'\0' && mesg[i+1]!=
'\0'){
2669 if ((mesg[i]>=0x81 && mesg[i]<=0x9f) ||
2670 (mesg[i]>=0xe0 && mesg[i]<=0xfe) || mesg[i]==0xff) {
2689 if (*c1%2==0) *c2 -= 0x02;
2692 if (*c2>0x7e) (*c2)++;
2730 if (*c2>0x7f) (*c2)--;
2759 for (i=0; i<(int)strlen((
const char*)str); i++) {
2760 if (str[i]>=
'a' && str[i]<=
'z') str[i] +=
'A' -
'a';
2788 int i, j, cc=0, bas, lt, ln;
2792 ln = (int)strlen((
const char*)buf);
2793 while (buf[lt]!=
'=' && lt<ln) {
2798 int len = lt/4*3 + (lt%4)*3/4;
2799 if (sz!=NULL) *sz = len;
2801 dcd = (
unsigned char*)malloc(len+1);
2802 if (dcd==NULL)
return NULL;
2803 memset(dcd, 0, len+1);
2805 for (i=0; i<lt; i++) {
2806 if (buf[i]>=
'A' && buf[i]<=
'Z') cc = buf[i] -
'A';
2807 else if (buf[i]>=
'a' && buf[i]<=
'z') cc = buf[i] -
'a' + 26;
2808 else if (buf[i]>=
'0' && buf[i]<=
'9') cc = buf[i] -
'0' + 52;
2809 else if (buf[i]==
'+') cc = 62;
2810 else if (buf[i]==
'/') cc = 63;
2814 for (j=0; j<6; j++) {
2815 setBit(dcd, i*6+j, cc/bas);
2850 unsigned char base[]=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
2855 if (buf==NULL)
return NULL;
2856 if (sz<0) len = (int)strlen((
const char*)buf);
2858 if (len<=0)
return NULL;
2861 ecd = (
unsigned char*)malloc(sz+1);
2862 if (ecd==NULL)
return NULL;
2863 memset(ecd, 0, sz+1);
2865 for (i=0; i<sz; i++) {
2868 for (j=0; j<6; j++) {
2869 if (len*8 > i*6+j)
setBit(&bas, j+2,
getBit(buf, i*6+j));
2872 ecd[i] = base[(int)bas];
2889 if (cc==0x00) cc =
'-';
2891 int i, len = (int)strlen((
char*)buf);
2892 for (i=0; i<len; i++) {
2893 if (buf[i]==cc) buf[i] =
'/';
2909 if (cc==0x00) cc =
'-';
2913 int i, len = (int)strlen((
char*)enc);
2914 for (i=0; i<len; i++) {
2915 if (enc[i]==
'/') enc[i] = cc;
2937 if (buf==NULL)
return NULL;
2939 len = (int)strlen((
const char*)buf) + 1;
2940 dec = (
unsigned char*)malloc(len);
2941 if (dec==NULL)
return NULL;
2942 memset(dec, 0, len);
2945 while (buf[i]!=
'\0') {
2947 if (buf[i+1]==
'\0')
return dec;
2948 if (buf[i+2]==
'\0')
return dec;
2953 if (buf[i]==
'+') dec[j++] =
' ';
2954 else dec[j++] = buf[i];
2984 if (buf==NULL)
return NULL;
2986 if (sz<0) sz = (int)strlen((
const char*)buf);
2988 enc = (
unsigned char*)malloc(len);
2989 if (enc==NULL)
return NULL;
2990 memset(enc, 0, len);
2992 for(i=0, j=0; i<sz; i++) {
2996 else if ((buf[i]>=0x30 && buf[i]<=0x39) ||
2997 (buf[i]>=0x41 && buf[i]<=0x5a) ||
2998 (buf[i]>=0x61 && buf[i]<=0x7a) ||
2999 buf[i]==
'-' || buf[i]==
'.' || buf[i]==
'_'){
3034 len = (int)strlen((
const char*)buf) + 1;
3035 dec = (
unsigned char*)malloc(len);
3036 if (dec==NULL)
return NULL;
3037 memset(dec, 0, len);
3040 while (buf[i]!=
'\0') {
3042 if (buf[i+1]==
'\0')
return dec;
3043 if (buf[i+2]==
'\0')
return dec;
3048 if (buf[i]==
'_') dec[j++] =
' ';
3049 else dec[j++] = buf[i];
3079 if (sz<0) sz = (int)strlen((
const char*)buf);
3081 enc = (
unsigned char*)malloc(len);
3082 if (enc==NULL)
return NULL;
3083 memset(enc, 0, len);
3085 for (i=0, j=0; i<sz; i++) {
3091 else if (buf[i]==
'_') {
3096 else if (buf[i]==
' ') {
3099 else if (buf[i]<=0x1f || buf[i]>=0x7f) {
3141 unsigned char pp1, pp2;
3142 unsigned char base[] =
"0123456789ABCDEF";
3144 ret = (
unsigned char*)malloc(3);
3145 if (ret==NULL)
return NULL;
3175 if (pp1>=0x30 && pp1<=0x39) pp1 -= 0x30;
3176 else if (pp1>=0x41 && pp1<=0x46) pp1 -= 0x37;
3177 else if (pp1>=0x61 && pp1<=0x66) pp1 -= 0x57;
3180 if (pp2>=0x30 && pp2<=0x39) pp2 -= 0x30;
3181 else if (pp2>=0x41 && pp2<=0x46) pp2 -= 0x37;
3182 else if (pp2>=0x41 && pp2<=0x46) pp2 -= 0x57;
3185 ret = (pp1<<4) + pp2;
3209 if (rb==NULL)
return NULL;
3214 rb->
buf = (
unsigned char*)malloc(sz);
3215 if (rb->
buf==NULL)
return rb;
3216 memset(rb->
buf, 0, sz);
3234 if (rb!=NULL && *rb!=NULL) {
3235 freeNull((*rb)->buf);
3277 rb.
buf = (
unsigned char*)malloc(sz);
3278 if (rb.
buf==NULL)
return rb;
3279 memset(rb.
buf, 0, sz);
3316 unsigned char* ptr = rb->
buf;
3353 if (rb->
epoint+sz<=rb->bufsz) {
3386 if (rb==NULL)
return NULL;
3387 if (rb->
buf==NULL)
return NULL;
3388 if (sz>rb->
datasz)
return NULL;
3390 pp = (
unsigned char*)malloc(sz+1);
3391 if (pp==NULL)
return NULL;
3392 memset(pp, 0, sz+1);
3394 if (rb->
spoint+sz<=rb->bufsz) {
3425 if (rb==NULL)
return FALSE;
3432 else if (rb->
spoint+sz<0) {
3458 if (rb==NULL)
return NULL;
3459 if (rb->
buf==NULL)
return NULL;
3460 if (pos>rb->
datasz)
return NULL;
3462 int sz = rb->
spoint + pos;
3492 int i, n, m, cc, np=0, len;
3499 len = (int)strlen((
const char*)mesg);
3500 for (i=0, n=0, m=0; i<len; i++) {
3506 if (sb->datano==0 && n>=1) np = (sb->epoint + m + 1) % sb->bufsz;
3510 if (sb->datano==0 && n>=1) sb->npoint = np;
3536 if (sb==NULL)
return NULL;
3538 if (sb->buf==NULL)
return NULL;
3539 if (sb->datano==0)
return NULL;
3541 len = sb->npoint - sb->spoint;
3542 if (len==0)
return NULL;
3543 else if (len<0) len += sb->bufsz;
3553 sb->spoint = sb->npoint;
3555 if (sb->datano>=1) {
3558 while (n!=sb->epoint) {
3559 m = (n + 1) % sb->bufsz;
3596 if (sb==NULL)
return NULL;
3597 if (sb->buf==NULL) {
3599 if (sb->buf==NULL)
return NULL;
3603 if (sb->state<0) state = sb->state;
3605 if (sb->datano==0) {
3611 if (sb->state>=0 && state<0) sb->state = state;
3630 unsigned char* guid;
3632 if (p==NULL)
return NULL;
3634 guid = (
unsigned char*)malloc(
LGUID);
3635 if (guid==NULL)
return NULL;
3636 memset(guid, 0,
LGUID);
3638 snprintf((
char*)guid, 37,
"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
3639 p[0],p[1],p[2],p[3],p[4],p[5],p[6],p[7],p[8],p[9],p[10],p[11],p[12],p[13],p[14],p[15]);
3657 unsigned char* uuid;
3659 if (p==NULL)
return NULL;
3661 uuid = (
unsigned char*)malloc(16);
3662 if (uuid==NULL)
return NULL;
3663 memset(uuid, 0, 16);
3666 while (p[i]!=
'\0' && j<16) {
3667 if (p[i]!=
'-' && p[i+1]!=
'\0') {
3668 unsigned char hb, lb;
3670 if (p[i]>=
'0' && p[i]<=
'9') hb = p[i] -
'0';
3671 else if (p[i]>=
'a' && p[i]<=
'f') hb = p[i] -
'a' + 10;
3672 else if (p[i]>=
'A' && p[i]<=
'F') hb = p[i] -
'A' + 10;
3675 if (p[i+1]>=
'0' && p[i+1]<=
'9') lb = p[i+1] -
'0';
3676 else if (p[i+1]>=
'a' && p[i+1]<=
'f') lb = p[i+1] -
'a' + 10;
3677 else if (p[i+1]>=
'A' && p[i+1]<=
'F') lb = p[i+1] -
'A' + 10;
3680 uuid[j] = (hb<<4) + lb;
3702unsigned long int get_used_memory(
void)
3704 struct sysinfo info;
3708 unsigned long int mem = info.totalram - info.freeram - info.bufferram - info.sharedram;
3709 return mem*info.mem_unit/1024;
3718unsigned long int get_free_memory(
void)
3720 struct sysinfo info;
3723 unsigned long int mem = info.freeram;
3724 return mem*info.mem_unit/1024;
3728void memory_check_start(
void)
3734unsigned long int memory_check(
void)
3762void set_sigterm_child(
void (*handler)(
int))
3764 struct sigaction sa;
3766 memset(&sa, 0,
sizeof(sa));
3767 if (handler!=NULL) sa.sa_handler = handler;
3768 else sa.sa_handler = sigterm_child;
3770 sa.sa_flags = SA_NOCLDSTOP | SA_RESTART;
3771 sigemptyset(&sa.sa_mask);
3772 sigaddset(&sa.sa_mask, SIGINT);
3773 sigaddset(&sa.sa_mask, SIGHUP);
3774 sigaddset(&sa.sa_mask, SIGTERM);
3775 sigaction(SIGCHLD, &sa, NULL);
3786void sigterm_child(
int signal)
3797 pid = waitpid(-1, &ret, WNOHANG);
3807void ignore_sigterm_child()
3809 struct sigaction sa;
3811 memset(&sa, 0,
sizeof(sa));
3812 sa.sa_handler = SIG_IGN;
3814 sigemptyset(&sa.sa_mask);
3815 sigaction(SIGCHLD, &sa, NULL);
3828void set_sigsegv_handler(
void (*handler)(
int))
3830 struct sigaction sa;
3832 memset(&sa, 0,
sizeof(sa));
3833 if (handler!=NULL) sa.sa_handler = handler;
3834 else sa.sa_handler = trap_segmentation_falt;
3837 sigemptyset(&sa.sa_mask);
3838 sigaction(SIGSEGV, &sa, NULL);
3849void trap_segmentation_falt(
int signal)
3851 PRINT_MESG(
"****************************************************************\n");
3852 PRINT_MESG(
"* Segmentation Falt in [%d] !!!!!\n", getpid());
3853 PRINT_MESG(
"****************************************************************\n");
3945 va_start(args, fmt);
3947 len = (int)strlen(fmt);
3948 nfmt = (
char*)malloc(len + 2);
3949 if (nfmt==NULL)
return;
3951 strncpy(nfmt, fmt, len);
4020 va_start(args, fmt);
4022 len = (int)strlen(fmt);
4023 nfmt = (
char*)malloc(len + 2);
4024 if (nfmt==NULL)
return;
4026 strncpy(nfmt, fmt, len);
4060 va_start(args, fmt);
4062 len = (int)strlen(fmt);
4063 nfmt = (
char*)malloc(len + 1);
4064 if (nfmt==NULL)
return;
4066 strncpy(nfmt, fmt, len);
4069 vfprintf(stderr, nfmt, args);
4094 va_start(args, fmt);
4096 len = (int)strlen(fmt);
4097 nfmt = (
char*)malloc(len + 1);
4098 if (nfmt==NULL)
return;
4100 strncpy(nfmt, fmt, len);
4103 vfprintf(fp, nfmt, args);
4128 if (fmt==NULL || mesg==NULL)
return;
4131 if (pp==NULL)
return;
4155 if (fmt==NULL || mesg==NULL)
return;
4158 if (pp==NULL)
return;
4176void fdump(FILE* fp,
unsigned char* mesg,
int n)
4181 if (fp==NULL) fp = stderr;
4184 fprintf(fp,
"(Dump Data is NULL)\n");
4188 if (n<0) len = (int)strlen((
const char*)mesg);
4191 memset(ascii, 0x2e, 16);
4192 for (i=0, j=0; i<len; i++) {
4193 fprintf(fp,
"%02x ", mesg[i]);
4194 if (mesg[i]>=0x20 && mesg[i]<=0x7e) ascii[j] = mesg[i];
4198 for (j=0; j<16; j++) {
4199 fprintf(fp,
"%c ", ascii[j]);
4202 memset(ascii, 0x2e, 16);
4209 for (i=0; i<17-mod; i++) fprintf(fp,
" ");
4210 for (i=0; i<mod; i++) fprintf(fp,
"%c ", ascii[i]);
4231 if (fp==NULL) fp = stderr;
4233 if (n<0) len = (int)strlen((
const char*)mesg);
4236 for (i=0; i<len; i++) {
4237 fprintf(fp,
"%02x", mesg[i]);
4254 uWord file = tex & 0x00f0;
#define LGUID
16*2 + 4(-) + 1('\0') = 37 以上の 4の倍数
unsigned short uWord
2Byte
#define JBXL_TEXTURE_PNG
0x0040
#define JBXL_TEXTURE_TGA
0x0050
#define JBXL_TEXTURE_TIFF
0x0030
#define JBXL_TEXTURE_RAS
0x0070 SUN RASTER 8bit
#define JBXL_TEXTURE_JP2K
0x0060
#define JBXL_TEXTURE_JPEG
0x0020
#define JBXL_FILE_EXIST_ERROR
ファイルが存在しない(シンボリックリンクもダメ).または既に存在する.
#define JBXL_ARGS_ERROR
不正な引数(NULLなど)
#define JBXL_TOOLS_BUFSZ_ERROR
バッファ(データ格納)部の大きさが足りない
#define JBXL_DIR_MAKE_ERROR
ディレクトリ作成エラー
#define JBXL_NODATA
有効なデータが無い
#define JBXL_FILE_DESTOPEN_ERROR
ディスティネーションファイルのオープン失敗
#define JBXL_MALLOC_ERROR
メモリ確保エラー
#define JBXL_FILE_OPEN_ERROR
ファイルオープン エラー
#define JBXL_TOOLS_BUF_ERROR
バッファ(データ格納)部の領域がない
int datasz
保存されているデータの全体の長さ
int epoint
バッファデータの終点+1 (データの追加点)