File size: 14,369 Bytes
8739cbb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 | #ifndef CEPIPELIB_H
#define CEPIPELIB_H
#include <celog.h>
#include <cesocket.h>
#include <stdarg.h>
#include <stddef.h>
#include <errno.h>
#include <stdint.h>
#ifdef ANDROID
//alternatively, registersymbol('_errno','__errno')
int *__cdecl __errno(void);
#undef errno
#define errno (*__errno())
#endif
#ifdef __APPLE__
#undef errno
extern int errno;
#endif
#ifdef _WIN32
#include <windowslite.h>
#else
typedef int HANDLE;
#endif
#ifndef _WIN32
int unlink(const char *_Filename);
#endif
char *strerror(int errnum);
int sprintf(char *str, const char *format, ...);
int snprintf(char *str, int max, const char *format, ...);
char *strcpy(char *dest, const char *src);
size_t strlen(const char *s);
void *malloc(size_t size);
void *realloc(void *ptr, size_t size);
void free(void *ptr);
char *strdup(const char *s);
void *memcpy(void *dest, const void *src, size_t n);
#ifndef _WIN32
ssize_t recv(int sockfd, void *buf, size_t len, int flags);
ssize_t send(int sockfd, const void *buf, size_t len, int flags);
int connect(int, void *, socklen_t);
#endif
char *defaultpipename="unnamed pipe";
typedef struct
{
unsigned char *buf;
int size;
int pos;
} MemoryStream, *PMemoryStream;
typedef struct
{
char *pipename;
char *debugname;
HANDLE handle;
} PipeConnection, *PPipeConnection;
typedef PPipeConnection PPipeServer;
typedef PPipeConnection PPipeClient;
void ms_read(PMemoryStream this, void* buf, int count)
{
if (this->pos+count>this->size)
count=this->size-this->pos;
memcpy(buf, &this->buf[this->pos], count);
}
void ms_write(PMemoryStream this, void* buf, int count)
{
if ((buf==NULL) || (count==0))
return;
while (this->pos+count>this->size)
{
debug_log("Realloc memorystream: Old size=%d", this->size);
if (this->size<1048576)
this->size*=2;
else
this->size+=1048576;
debug_log("Realloc memorystream: New size=%d", this->size);
this->buf=(unsigned char*)realloc(this->buf, this->size);
}
memcpy(&this->buf[this->pos], buf, count);
this->pos+=count;
}
uint8_t ms_readByte(PMemoryStream this)
{
uint8_t r;
ms_read(this, (void*)&r,1);
return r;
}
uint16_t ms_readWord(PMemoryStream this)
{
uint16_t r;
ms_read(this, (void*)&r,2);
return r;
}
uint32_t ms_readDword(PMemoryStream this)
{
uint32_t r;
ms_read(this, (void*)&r,4);
return r;
}
uint64_t ms_readQword(PMemoryStream this)
{
uint64_t r;
ms_read(this, (void*)&r,8);
return r;
}
void ms_writeByte(PMemoryStream this, uint8_t v)
{
ms_write(this, (void*)&v,1);
}
void ms_writeWord(PMemoryStream this, uint16_t v)
{
ms_write(this, (void*)&v,2);
}
void ms_writeDword(PMemoryStream this, uint32_t v)
{
ms_write(this, (void*)&v,4);
}
void ms_writeQword(PMemoryStream this, uint64_t v)
{
ms_write(this, (void*)&v,8);
}
void ms_writeString(PMemoryStream this, char *str)
{
int l=0;
if (str)
l=strlen(str);
ms_writeWord(this, l);
ms_write(this, str,l);
}
PMemoryStream ms_create(int initialsize)
{
PMemoryStream r=(PMemoryStream)malloc(sizeof(MemoryStream));
if (initialsize==0)
initialsize=32;
r->buf=(unsigned char *)malloc(initialsize);
r->size=initialsize;
r->pos=0;
return r;
}
void ms_destroy(PMemoryStream this)
{
if (this->buf)
{
free(this->buf);
this->buf=NULL;
}
free(this);
}
//-----PipeConnection----
void ps_setDebugName(PPipeConnection this, char *name)
{
if (this->debugname)
free(this->debugname);
this->debugname=strdup(name);
}
ssize_t recvall (HANDLE s, void *buf, size_t size, int flags)
{
ssize_t totalreceived=0;
ssize_t sizeleft=size;
unsigned char *buffer=(unsigned char*)buf;
while (sizeleft>0)
{
#ifdef _WIN32
DWORD br=0;
if (ReadFile(s, &buffer[totalreceived], sizeleft, &br, NULL) == FALSE)
{
//debug_log("recvall: ReadFile returned FALSE. br=%d", br);
if (br==0)
return totalreceived;
}
else
{
// debug_log("successfully read %d bytes", br);
}
totalreceived += br;
sizeleft-= br;
#else
ssize_t i=recv(s, &buffer[totalreceived], sizeleft, flags);
if (i==0)
{
debug_log("recv returned 0\n");
return i;
}
if (i==-1)
{
debug_log("recv returned -1\n");
if (errno==EINTR)
{
debug_log("errno = EINTR\n");
i=0;
}
else
{
debug_log("Error during recvall ( %s ) ", strerror(errno));
return i; //read error, or disconnected
}
}
totalreceived+=i;
sizeleft-=i;
#endif
}
//printf("leave recvall\n");
return totalreceived;
}
ssize_t sendall (HANDLE s, void *buf, size_t size, int flags)
{
ssize_t totalsent=0;
ssize_t sizeleft=size;
unsigned char *buffer=(unsigned char*)buf;
while (sizeleft>0)
{
#ifdef _WIN32
DWORD bw;
if (WriteFile(s, &buffer[totalsent], sizeleft, &bw, NULL) == FALSE)
{
debug_log("sendall: WriteFile returned FALSE. bw=%d (size was %d)", bw, size);
if (bw==0)
return totalsent;
}
totalsent += bw;
sizeleft-= bw;
#else
ssize_t i=send(s, &buffer[totalsent], sizeleft, flags);
if (i==0)
{
return i;
}
if (i==-1)
{
if (errno==EINTR)
i=0;
else
{
debug_log((char *)"Error during sendall ( %s )\n", strerror(errno));
return i;
}
}
totalsent+=i;
sizeleft-=i;
#endif
}
return totalsent;
}
void ps_read(PPipeConnection this, void* buf, int count)
{
if (this->handle)
{
int r=recvall(this->handle, buf,count,0);
if (r!=count)
{
debug_log("ps_read: r(%d)!=count(%d)", r,count);
#ifdef _WIN32
CloseHandle(this->handle);
#else
close(this->handle);
#endif
debug_log("closed the handle");
this->handle=0;
}
}
}
void ps_write(PPipeConnection this, void* buf, int count)
{
if (this->handle)
{
char d[100];
int i;
int max=count;
unsigned char *cbuf;
if (max>20)
max=20;
cbuf=(unsigned char *)buf;
debug_log("ps_write:");
for (i=0; i<max; i++)
debug_log("buf[%d]=%.2x", i, cbuf[i]);
int r=sendall(this->handle, buf,count,0);
if (r!=count)
{
debug_log("ps_write: r!=count");
#ifdef _WIN32
CloseHandle(this->handle);
#else
close(this->handle);
#endif
debug_log("closed the handle");
this->handle=0;
}
}
}
uint8_t ps_readByte(PPipeConnection this)
{
uint8_t r;
ps_read(this, (void*)&r,1);
return r;
}
uint16_t ps_readWord(PPipeConnection this)
{
uint16_t r;
ps_read(this, (void*)&r,2);
return r;
}
uint32_t ps_readDword(PPipeConnection this)
{
uint32_t r;
ps_read(this, (void*)&r,4);
return r;
}
uint64_t ps_readQword(PPipeConnection this)
{
uint64_t r;
ps_read(this, (void*)&r,8);
return r;
}
void ps_writeByte(PPipeConnection this, uint8_t v)
{
ps_write(this, (void*)&v,1);
}
void ps_writeWord(PPipeConnection this, uint16_t v)
{
ps_write(this, (void*)&v,2);
}
void ps_writeDword(PPipeConnection this, uint32_t v)
{
ps_write(this, (void*)&v,4);
}
void ps_writeQword(PPipeConnection this, uint64_t v)
{
ps_write(this, (void*)&v,8);
}
void ps_writeMemStream(PPipeConnection this, PMemoryStream ms)
{
ps_writeDword(this, ms->pos);
ps_write(this, ms->buf, ms->pos);
}
void ps_writeMemStreamRaw(PPipeConnection this, PMemoryStream ms)
{
debug_log("ps_writeMemStreamRaw: Writing %d bytes", ms->pos);
ps_write(this, ms->buf, ms->pos);
}
int ps_isvalid(PPipeConnection this)
{
return this->handle!=0;
}
void ps_destroy(PPipeConnection this)
{
debug_log("ps_destroy called");
if (this)
{
if (this->pipename)
{
debug_log("Freeing pipename %s", this->pipename);
free(this->pipename);
}
if (this->debugname)
{
debug_log("Freeing debugname");
free(this->debugname);
}
else
debug_log("no debugname to free");
if (this->handle)
{
#ifdef _WIN32
DisconnectNamedPipe(this->handle);
CloseHandle(this->handle);
#else
close(this->handle);
#endif
}
else
debug_log("no handle to close");
debug_log("Freeing this");
free(this);
}
debug_log("returning from ps_destroy");
}
//correct: 1D 01 2F 74 6D 70 2F 63 65 70 69 70 65 5F 43 45 4C 55 41 53 45 52 56 45 52 34 30 33 30
//mine: 1D 01 2F 74 6D 70 2F 63 65 70 69 70 65 5F 43 45 4C 55 41 53 45 52 56 45 52 34 30 33 30
PipeConnection *CreateClientPipeConnection(char *name)
{
HANDLE pipehandle;
debug_log("CreateClientPipeConnection(\"%s\")", name);
char pipename[300];
struct sockaddr_un address;
#ifdef _WIN32
snprintf(pipename, 300, "%s%s", "\\\\.\\pipe\\", name);
#else
#ifdef __APPLE__
snprintf(pipename, 300, "/tmp/cepipe_%s", name);
#else
snprintf(pipename, 300, "%s", name);
#endif
#endif
debug_log("Connecting to pipe %s", pipename);
#ifdef _WIN32
pipehandle=CreateFileA(pipename,GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0);
#else
{
debug_log("using named sockets as pipe");
int s;
#ifdef __APPLE__
memset(&address, 0, sizeof(address));
strcpy(&address.sun_path[0], pipename);
address.sun_path[strlen(pipename)]=0;
#else
strcpy(&address.sun_path[1], pipename);
address.sun_path[0]=0; //abstract pipe
#endif
address.sun_family=AF_UNIX;
debug_log("address.sun_path=%s",address.sun_path);
int al=(int)SUN_LEN(&address);
debug_log("SUN_LEN=%d", al);
#ifdef __APPLE__
address.sun_len=al;
#endif
s=socket(AF_UNIX, SOCK_STREAM,0);
if (s)
{
if (connect(s,&address, al)==0)
{
debug_log("Succesful connection");
pipehandle=s;
}
else
{
int le=errno;
debug_log("Failure to connect to %s (error=%d: %s)", pipename,le, strerror(le));
pipehandle=0;
close(s);
}
}
else
debug_log("failed creating socket");
}
#endif
debug_log("CreateFileA returned %x", pipehandle);
PPipeConnection t=malloc(sizeof(PipeConnection));
t->pipename=strdup(name);
t->debugname=NULL;
t->handle=pipehandle;
return t;
}
#define CreatePipeServer CreatePipeConnection
PipeConnection *CreatePipeConnection(char *name)
{
//single connect system
int s;
debug_log("CreatePipeConnection(\"%s\")\n",name);
#ifdef _WIN32
//windows:
HANDLE pipehandle;
char pipename[300];
snprintf(pipename, 300, "%s%s", "\\\\.\\pipe\\", name);
debug_log("Calling CreateNamedPipeA with name %s", pipename);
pipehandle = CreateNamedPipeA(pipename, PIPE_ACCESS_DUPLEX, PIPE_TYPE_BYTE | PIPE_READMODE_BYTE | PIPE_WAIT, 1, 256 * 1024, 16, INFINITE, NULL);
debug_log("pipehandle=%p", pipehandle);
if ((pipehandle==NULL) || (pipehandle==INVALID_HANDLE_VALUE))
{
//todo: UWP shit with duplicatehandle etc...
return (void*)0;
}
debug_log("Calling ConnectNamedPipe");
ConnectNamedPipe(pipehandle, NULL);
debug_log("ConnectNamedPipe returned. So there was a connection");
PPipeConnection t=malloc(sizeof(PipeConnection));
t->pipename=strdup(name);
t->debugname=NULL;
t->handle=pipehandle;
return t;
#else
//not windows:
debug_log("Not windows");
s=socket(AF_UNIX, SOCK_STREAM,0);
if (s)
{
char *path=malloc(100);
#ifdef __APPLE__
snprintf(path,100,"/tmp/cepipe_%s", name);
unlink(path);
#else
snprintf(path,100," %s", name);
#endif
struct sockaddr_un address;
address.sun_family=AF_UNIX;
strcpy(address.sun_path, path);
int al=(int)SUN_LEN(&address);
#ifndef __APPLE__
debug_log("al=%d\n",al);
address.sun_path[0]=0;
#endif
int optval=1;
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &optval, optval);
int i;
i=bind(s,(const struct sockaddr *)&address, al);
if (i==0)
{
debug_log((char*)"Starting to listen\n");
i=listen(s,32);
debug_log("Listen returned %d\n",i);
if (i==0)
{
struct sockaddr_un addr_client;
socklen_t clisize=sizeof(addr_client);
int a=-1;
while (a==-1)
{
debug_log("Calling accept (clisize=%d)",clisize);
a=accept(s, (struct sockaddr *)&addr_client, &clisize);
if (a!=-1)
{
debug_log("Connection accepted");
debug_log("Closing the listener");
close(s); //stop listening
PPipeConnection t=malloc(sizeof(PipeConnection));
t->pipename=strdup(name);
t->debugname=NULL;
t->handle=a;
return t;
}
else
{
debug_log("accept returned %d (%d - %s )", a, errno, strerror(errno));
close(s);
break;
}
}
}
else
debug_log((char*)"Listen failed");
}
else
{
debug_log((char*)"Bind failed: i=%d (error %d - %s)\n", i, errno, strerror(errno));
}
}
else
debug_log((char*)"Failure creating socket\n");
return (void*)0;
#endif
}
#endif
|