123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397 |
- #include "skynet.h"
- #include "skynet_socket.h"
- #include "databuffer.h"
- #include "hashid.h"
- #include <stdlib.h>
- #include <string.h>
- #include <assert.h>
- #include <stdint.h>
- #include <stdio.h>
- #include <stdarg.h>
- #define BACKLOG 128
- struct connection {
- int id; // skynet_socket id
- uint32_t agent;
- uint32_t client;
- char remote_name[32];
- struct databuffer buffer;
- };
- struct gate {
- struct skynet_context *ctx;
- int listen_id;
- uint32_t watchdog;
- uint32_t broker;
- int client_tag;
- int header_size;
- int max_connection;
- struct hashid hash;
- struct connection *conn;
- // todo: save message pool ptr for release
- struct messagepool mp;
- };
- struct gate *
- gate_create(void) {
- struct gate * g = skynet_malloc(sizeof(*g));
- memset(g,0,sizeof(*g));
- g->listen_id = -1;
- return g;
- }
- void
- gate_release(struct gate *g) {
- int i;
- struct skynet_context *ctx = g->ctx;
- for (i=0;i<g->max_connection;i++) {
- struct connection *c = &g->conn[i];
- if (c->id >=0) {
- skynet_socket_close(ctx, c->id);
- }
- }
- if (g->listen_id >= 0) {
- skynet_socket_close(ctx, g->listen_id);
- }
- messagepool_free(&g->mp);
- hashid_clear(&g->hash);
- skynet_free(g->conn);
- skynet_free(g);
- }
- static void
- _parm(char *msg, int sz, int command_sz) {
- while (command_sz < sz) {
- if (msg[command_sz] != ' ')
- break;
- ++command_sz;
- }
- int i;
- for (i=command_sz;i<sz;i++) {
- msg[i-command_sz] = msg[i];
- }
- msg[i-command_sz] = '\0';
- }
- static void
- _forward_agent(struct gate * g, int fd, uint32_t agentaddr, uint32_t clientaddr) {
- int id = hashid_lookup(&g->hash, fd);
- if (id >=0) {
- struct connection * agent = &g->conn[id];
- agent->agent = agentaddr;
- agent->client = clientaddr;
- }
- }
- static void
- _ctrl(struct gate * g, const void * msg, int sz) {
- struct skynet_context * ctx = g->ctx;
- char tmp[sz+1];
- memcpy(tmp, msg, sz);
- tmp[sz] = '\0';
- char * command = tmp;
- int i;
- if (sz == 0)
- return;
- for (i=0;i<sz;i++) {
- if (command[i]==' ') {
- break;
- }
- }
- if (memcmp(command,"kick",i)==0) {
- _parm(tmp, sz, i);
- int uid = strtol(command , NULL, 10);
- int id = hashid_lookup(&g->hash, uid);
- if (id>=0) {
- skynet_socket_close(ctx, uid);
- }
- return;
- }
- if (memcmp(command,"forward",i)==0) {
- _parm(tmp, sz, i);
- char * client = tmp;
- char * idstr = strsep(&client, " ");
- if (client == NULL) {
- return;
- }
- int id = strtol(idstr , NULL, 10);
- char * agent = strsep(&client, " ");
- if (client == NULL) {
- return;
- }
- uint32_t agent_handle = strtoul(agent+1, NULL, 16);
- uint32_t client_handle = strtoul(client+1, NULL, 16);
- _forward_agent(g, id, agent_handle, client_handle);
- return;
- }
- if (memcmp(command,"broker",i)==0) {
- _parm(tmp, sz, i);
- g->broker = skynet_queryname(ctx, command);
- return;
- }
- if (memcmp(command,"start",i) == 0) {
- _parm(tmp, sz, i);
- int uid = strtol(command , NULL, 10);
- int id = hashid_lookup(&g->hash, uid);
- if (id>=0) {
- skynet_socket_start(ctx, uid);
- }
- return;
- }
- if (memcmp(command, "close", i) == 0) {
- if (g->listen_id >= 0) {
- skynet_socket_close(ctx, g->listen_id);
- g->listen_id = -1;
- }
- return;
- }
- skynet_error(ctx, "[gate] Unknown command : %s", command);
- }
- static void
- _report(struct gate * g, const char * data, ...) {
- if (g->watchdog == 0) {
- return;
- }
- struct skynet_context * ctx = g->ctx;
- va_list ap;
- va_start(ap, data);
- char tmp[1024];
- int n = vsnprintf(tmp, sizeof(tmp), data, ap);
- va_end(ap);
- skynet_send(ctx, 0, g->watchdog, PTYPE_TEXT, 0, tmp, n);
- }
- static void
- _forward(struct gate *g, struct connection * c, int size) {
- struct skynet_context * ctx = g->ctx;
- int fd = c->id;
- if (fd <= 0) {
- // socket error
- return;
- }
- if (g->broker) {
- void * temp = skynet_malloc(size);
- databuffer_read(&c->buffer,&g->mp,(char *)temp, size);
- skynet_send(ctx, 0, g->broker, g->client_tag | PTYPE_TAG_DONTCOPY, fd, temp, size);
- return;
- }
- if (c->agent) {
- void * temp = skynet_malloc(size);
- databuffer_read(&c->buffer,&g->mp,(char *)temp, size);
- skynet_send(ctx, c->client, c->agent, g->client_tag | PTYPE_TAG_DONTCOPY, fd , temp, size);
- } else if (g->watchdog) {
- char * tmp = skynet_malloc(size + 32);
- int n = snprintf(tmp,32,"%d data ",c->id);
- databuffer_read(&c->buffer,&g->mp,tmp+n,size);
- skynet_send(ctx, 0, g->watchdog, PTYPE_TEXT | PTYPE_TAG_DONTCOPY, fd, tmp, size + n);
- }
- }
- static void
- dispatch_message(struct gate *g, struct connection *c, int id, void * data, int sz) {
- databuffer_push(&c->buffer,&g->mp, data, sz);
- for (;;) {
- int size = databuffer_readheader(&c->buffer, &g->mp, g->header_size);
- if (size < 0) {
- return;
- } else if (size > 0) {
- if (size >= 0x1000000) {
- struct skynet_context * ctx = g->ctx;
- databuffer_clear(&c->buffer,&g->mp);
- skynet_socket_close(ctx, id);
- skynet_error(ctx, "Recv socket message > 16M");
- return;
- } else {
- _forward(g, c, size);
- databuffer_reset(&c->buffer);
- }
- }
- }
- }
- static void
- dispatch_socket_message(struct gate *g, const struct skynet_socket_message * message, int sz) {
- struct skynet_context * ctx = g->ctx;
- switch(message->type) {
- case SKYNET_SOCKET_TYPE_DATA: {
- int id = hashid_lookup(&g->hash, message->id);
- if (id>=0) {
- struct connection *c = &g->conn[id];
- dispatch_message(g, c, message->id, message->buffer, message->ud);
- } else {
- skynet_error(ctx, "Drop unknown connection %d message", message->id);
- skynet_socket_close(ctx, message->id);
- skynet_free(message->buffer);
- }
- break;
- }
- case SKYNET_SOCKET_TYPE_CONNECT: {
- if (message->id == g->listen_id) {
- // start listening
- break;
- }
- int id = hashid_lookup(&g->hash, message->id);
- if (id<0) {
- skynet_error(ctx, "Close unknown connection %d", message->id);
- skynet_socket_close(ctx, message->id);
- }
- break;
- }
- case SKYNET_SOCKET_TYPE_CLOSE:
- case SKYNET_SOCKET_TYPE_ERROR: {
- int id = hashid_remove(&g->hash, message->id);
- if (id>=0) {
- struct connection *c = &g->conn[id];
- databuffer_clear(&c->buffer,&g->mp);
- memset(c, 0, sizeof(*c));
- c->id = -1;
- _report(g, "%d close", message->id);
- }
- break;
- }
- case SKYNET_SOCKET_TYPE_ACCEPT:
- // report accept, then it will be get a SKYNET_SOCKET_TYPE_CONNECT message
- assert(g->listen_id == message->id);
- if (hashid_full(&g->hash)) {
- skynet_socket_close(ctx, message->ud);
- } else {
- struct connection *c = &g->conn[hashid_insert(&g->hash, message->ud)];
- if (sz >= sizeof(c->remote_name)) {
- sz = sizeof(c->remote_name) - 1;
- }
- c->id = message->ud;
- memcpy(c->remote_name, message+1, sz);
- c->remote_name[sz] = '\0';
- _report(g, "%d open %d %s:0",c->id, c->id, c->remote_name);
- skynet_error(ctx, "socket open: %x", c->id);
- }
- break;
- case SKYNET_SOCKET_TYPE_WARNING:
- skynet_error(ctx, "fd (%d) send buffer (%d)K", message->id, message->ud);
- break;
- }
- }
- static int
- _cb(struct skynet_context * ctx, void * ud, int type, int session, uint32_t source, const void * msg, size_t sz) {
- struct gate *g = ud;
- switch(type) {
- case PTYPE_TEXT:
- _ctrl(g , msg , (int)sz);
- break;
- case PTYPE_CLIENT: {
- if (sz <=4 ) {
- skynet_error(ctx, "Invalid client message from %x",source);
- break;
- }
- // The last 4 bytes in msg are the id of socket, write following bytes to it
- const uint8_t * idbuf = msg + sz - 4;
- uint32_t uid = idbuf[0] | idbuf[1] << 8 | idbuf[2] << 16 | idbuf[3] << 24;
- int id = hashid_lookup(&g->hash, uid);
- if (id>=0) {
- // don't send id (last 4 bytes)
- skynet_socket_send(ctx, uid, (void*)msg, sz-4);
- // return 1 means don't free msg
- return 1;
- } else {
- skynet_error(ctx, "Invalid client id %d from %x",(int)uid,source);
- break;
- }
- }
- case PTYPE_SOCKET:
- // recv socket message from skynet_socket
- dispatch_socket_message(g, msg, (int)(sz-sizeof(struct skynet_socket_message)));
- break;
- }
- return 0;
- }
- static int
- start_listen(struct gate *g, char * listen_addr) {
- struct skynet_context * ctx = g->ctx;
- char * portstr = strrchr(listen_addr,':');
- const char * host = "";
- int port;
- if (portstr == NULL) {
- port = strtol(listen_addr, NULL, 10);
- if (port <= 0) {
- skynet_error(ctx, "Invalid gate address %s",listen_addr);
- return 1;
- }
- } else {
- port = strtol(portstr + 1, NULL, 10);
- if (port <= 0) {
- skynet_error(ctx, "Invalid gate address %s",listen_addr);
- return 1;
- }
- portstr[0] = '\0';
- host = listen_addr;
- }
- g->listen_id = skynet_socket_listen(ctx, host, port, BACKLOG);
- if (g->listen_id < 0) {
- return 1;
- }
- skynet_socket_start(ctx, g->listen_id);
- return 0;
- }
- int
- gate_init(struct gate *g , struct skynet_context * ctx, char * parm) {
- if (parm == NULL)
- return 1;
- int max = 0;
- int sz = strlen(parm)+1;
- char watchdog[sz];
- char binding[sz];
- int client_tag = 0;
- char header;
- int n = sscanf(parm, "%c %s %s %d %d", &header, watchdog, binding, &client_tag, &max);
- if (n<4) {
- skynet_error(ctx, "Invalid gate parm %s",parm);
- return 1;
- }
- if (max <=0 ) {
- skynet_error(ctx, "Need max connection");
- return 1;
- }
- if (header != 'S' && header !='L') {
- skynet_error(ctx, "Invalid data header style");
- return 1;
- }
- if (client_tag == 0) {
- client_tag = PTYPE_CLIENT;
- }
- if (watchdog[0] == '!') {
- g->watchdog = 0;
- } else {
- g->watchdog = skynet_queryname(ctx, watchdog);
- if (g->watchdog == 0) {
- skynet_error(ctx, "Invalid watchdog %s",watchdog);
- return 1;
- }
- }
- g->ctx = ctx;
- hashid_init(&g->hash, max);
- g->conn = skynet_malloc(max * sizeof(struct connection));
- memset(g->conn, 0, max *sizeof(struct connection));
- g->max_connection = max;
- int i;
- for (i=0;i<max;i++) {
- g->conn[i].id = -1;
- }
-
- g->client_tag = client_tag;
- g->header_size = header=='S' ? 2 : 4;
- skynet_callback(ctx,g,_cb);
- return start_listen(g,binding);
- }
|