예제 #1
0
CHANNEL *getchan(const char *chan, acetables *g_ape)
{
	if (strlen(chan) > MAX_CHAN_LEN) {
		return NULL;
	}
	return (CHANNEL *)hashtbl_seek(g_ape->hLusers, chan);	
}
예제 #2
0
USERS *seek_user_id(const char *sessid, acetables *g_ape)
{
	if (strlen(sessid) != 32) {
		return NULL;
	}
	return ((USERS *)hashtbl_seek(g_ape->hSessid, sessid));
}
예제 #3
0
파일: pipe.c 프로젝트: roy204/APE_Server
void *get_pipe(char *pubid, acetables *g_ape)
{
	if (strlen(pubid) != 32) {
		return NULL;
	}
	return hashtbl_seek(g_ape->hPubid, pubid);
}
예제 #4
0
userslist *getlist(const char *chan, acetables *g_ape)
{
	CHANNEL *lchan;
	
	if (strlen(chan) > MAX_CHAN_LEN) {
		return NULL;
	}
	if ((lchan = (CHANNEL *)hashtbl_seek(g_ape->hLusers, chan)) == NULL) {
		return NULL;
	}
	return lchan->head;
}
예제 #5
0
void register_cmd(const char *cmd, unsigned int (*func)(callbackp *), unsigned int need, acetables *g_ape)
{
	callback *new_cmd, *old_cmd;
	
	new_cmd = (callback *) xmalloc(sizeof(*new_cmd));

	new_cmd->func = func;
	new_cmd->need = need;
	
	/* Unregister old cmd if exists */
	if ((old_cmd = (callback *)hashtbl_seek(g_ape->hCallback, cmd)) != NULL) {
		hashtbl_erase(g_ape->hCallback, cmd);
	}
	
	hashtbl_append(g_ape->hCallback, cmd, (void *)new_cmd);
	
}
예제 #6
0
int register_hook_cmd(const char *cmd, unsigned int (*func)(callbackp *), void *data, acetables *g_ape)
{
	callback_hook *hook;
	
	if (hashtbl_seek(g_ape->hCallback, cmd) == NULL) {
		return 0;
	}
	
	hook = xmalloc(sizeof(*hook));
	hook->cmd = xstrdup(cmd);
	hook->func = func;
	hook->data = data;
	hook->next = NULL;
	
	if (g_ape->cmd_hook.head == NULL) {
		g_ape->cmd_hook.head = hook;
		g_ape->cmd_hook.foot = hook;
	} else {
		g_ape->cmd_hook.foot->next = hook;
		g_ape->cmd_hook.foot = hook;
	}

	return 1;
}
예제 #7
0
unsigned int checkcmd(clientget *cget, subuser **iuser, acetables *g_ape)
{
	char *param[64+1], *cmd;
	callback *cmdback;
	
	size_t nTok;
	
	unsigned int flag;
	
	USERS *guser = NULL;
	subuser *sub = NULL;
	

	nTok = explode('&', cget->get, param, 64);
	
	if (nTok < 1) {
		cmd = NULL;
	} else {
		cmd = param[0];

	}
	
	/* TODO: Making a simple chainlist can be more efficient since we do not have many cmds */
	cmdback = (callback *)hashtbl_seek(g_ape->hCallback, cmd);
	if (cmdback != NULL) {
		if ((nTok-1) == cmdback->nParam || (cmdback->nParam < 0 && (nTok-1) >= (cmdback->nParam*-1) && (cmdback->nParam*-1) <= 16)) {
			int tmpfd = 0;
			callbackp cp;
			switch(cmdback->need) {
				case NEED_SESSID:
					guser = seek_user_id(param[1], g_ape);
					break;
				case NEED_NOTHING:
					guser = NULL;
					break;
			}
			
			if (cmdback->need != NEED_NOTHING) {
				if (guser == NULL) {
					SENDH(cget->fdclient, ERR_BAD_SESSID, g_ape);
					
					return (CONNECT_SHUTDOWN);
				} else {
					sub = getsubuser(guser, cget->host);
					if (sub != NULL && sub->fd != cget->fdclient && sub->state == ALIVE) {
						if (guser->transport == TRANSPORT_IFRAME) {
							/* iframe is already open on "sub" */
							tmpfd = sub->fd; /* Forward data directly to iframe */
							CLOSE(cget->fdclient, g_ape);
							shutdown(cget->fdclient, 2); /* Immediatly close controller */
						} else {
							/* Only one connection is allowed per user/host */
							CLOSE(sub->fd, g_ape);
							shutdown(sub->fd, 2);
							sub->state = ADIED;
							sub->fd = cget->fdclient;					
						}
					} else if (sub == NULL) {
						sub = addsubuser(cget->fdclient, cget->host, guser);
						if (sub != NULL) {
							subuser_restor(sub, g_ape);
						}
					} else if (sub != NULL) {
						sub->fd = cget->fdclient;
					}
					guser->idle = (long int)time(NULL); // update user idle

					sub->idle = guser->idle; // Update subuser idle
				}
			}
			cp.param = param;
			cp.fdclient = (tmpfd ? tmpfd : cget->fdclient);
			cp.call_user = guser,
			cp.g_ape = g_ape;
			cp.nParam = nTok-1;
			cp.host = cget->host;
			
			flag = cmdback->func(&cp);
			
			if (flag & FOR_NULL) {
				guser = NULL;
			} else if (flag & FOR_LOGIN) {
				guser = cp.call_user;
			} 
			
			if (guser != NULL) {

				if (sub == NULL && (sub = getsubuser(guser, cget->host)) == NULL) {
					
					if ((sub = addsubuser(cget->fdclient, cget->host, guser)) == NULL) {
						return (CONNECT_SHUTDOWN);
					}
					subuser_restor(sub, g_ape);
					
					if (guser->transport == TRANSPORT_IFRAME) {
						sendbin(sub->fd, HEADER, strlen(HEADER), g_ape);
					}			
				}

				*iuser = (tmpfd ? NULL : sub);
				
				if (flag & FOR_UPDATE_IP) {
					strncpy(guser->ip, cget->ip_get, 16);
				}
				
				/* If tmpfd is set, we do not have reasons to change this state */
				if (!tmpfd) {
					sub->state = ALIVE;
				}
				return (CONNECT_KEEPALIVE);
				
			}
			return (CONNECT_SHUTDOWN);
		} else {

			SENDH(cget->fdclient, ERR_BAD_PARAM, g_ape);
		}
	} else { // unregistered CMD
		SENDH(cget->fdclient, ERR_BAD_CMD, g_ape);
	}
	return (CONNECT_SHUTDOWN);
}
예제 #8
0
int process_cmd(json_item *ijson, struct _cmd_process *pc, subuser **iuser, acetables *g_ape)
{
	callback *cmdback, tmpback = {handle_bad_cmd, NEED_NOTHING};
	json_item *rjson = json_lookup(ijson->jchild.child, "cmd"), *jchl;
	subuser *sub = pc->sub;
	unsigned int flag;
	unsigned short int attach = 1;

	if (rjson != NULL && rjson->jval.vu.str.value != NULL) {
		callbackp cp;
		cp.client = NULL;
		cp.cmd 	= rjson->jval.vu.str.value;
		cp.data = NULL;
		cp.hlines = NULL;
		
		json_item *jsid;
		
		if ((cmdback = (callback *)hashtbl_seek(g_ape->hCallback, rjson->jval.vu.str.value)) == NULL) {
			cmdback = &tmpback;
		}
		
		if ((pc->guser == NULL && (jsid = json_lookup(ijson->jchild.child, "sessid")) != NULL && jsid->jval.vu.str.value != NULL)) {
			pc->guser = seek_user_id(jsid->jval.vu.str.value, g_ape);
		}

		if (cmdback->need != NEED_NOTHING || pc->guser != NULL) { // We process the connection like a "NEED_SESSID" if the user provide its key

			if (pc->guser == NULL) {
				
				RAW *newraw;
				json_item *jlist = json_new_object();

				json_set_property_strZ(jlist, "code", "004");
				json_set_property_strZ(jlist, "value", "BAD_SESSID");

				newraw = forge_raw(RAW_ERR, jlist);
				
				send_raw_inline(pc->client, pc->transport, newraw, g_ape);

				return (CONNECT_SHUTDOWN);
			} else if (sub == NULL) {
				
				sub = getsubuser(pc->guser, pc->host);
				if (sub != NULL && sub->client->fd != pc->client->fd && sub->state == ALIVE) {
					/* The user open a new connection while he already has one openned */
					struct _transport_open_same_host_p retval = transport_open_same_host(sub, pc->client, pc->guser->transport);				
			
					if (retval.client_close != NULL) {
						// Send CLOSE if no response has been sent yet
						if (!sub->headers.sent) {
							RAW *newraw;
							json_item *jlist = json_new_object();

							json_set_property_strZ(jlist, "value", "null");

							newraw = forge_raw("CLOSE", jlist);

							send_raw_inline((retval.client_close->fd == pc->client->fd ? pc->client : sub->client), pc->transport, newraw, g_ape);
						}
						
						// It's not safe to leave the subuser pointer in co->attach anymore
						// since subuser could subsequently be deleted, leaving a pointer into free heap.
						// So, let this socket finish up on its own and pretend its already finished.

						sub->state = ADIED;
						sub->headers.sent = 0;
						http_headers_free(sub->headers.content);
						sub->headers.content = NULL;
						sub->burn_after_writing = 0;

						g_ape->co[retval.client_close->fd]->attach = NULL;
						safe_shutdown(retval.client_close->fd, g_ape);
					}
					sub->client = cp.client = retval.client_listener;
					sub->state = retval.substate;
					attach = retval.attach;
			
				} else if (sub == NULL) {
					sub = addsubuser(pc->client, pc->host, pc->guser, g_ape);
					if (sub != NULL) {
						subuser_restor(sub, g_ape);
					}
				} else if (sub != NULL) {
					sub->client = pc->client;
				}
				pc->guser->idle = (long int)time(NULL); // update user idle

				sub->idle = pc->guser->idle; // Update subuser idle
				
			}

		}
		
		if (pc->guser != NULL && sub != NULL && (jchl = json_lookup(ijson->jchild.child, "chl")) != NULL /*&& jchl->jval.vu.integer_value > sub->current_chl*/) {
			sub->current_chl = jchl->jval.vu.integer_value;
		}
		#if 0 
		else if (pc->guser != NULL && sub != NULL) {
			/* if a bad challenge is detected, we are stoping walking on cmds */
			send_error(pc->guser, "BAD_CHL", "250", g_ape);

			sub->state = ALIVE;
			
			return (CONNECT_KEEPALIVE);
		}
		#endif
					
		cp.param = json_lookup(ijson->jchild.child, "params");
		cp.client = (cp.client != NULL ? cp.client : pc->client);
		cp.call_user = pc->guser;
		cp.call_subuser = sub;
		cp.g_ape = g_ape;
		cp.host = pc->host;
		cp.ip = pc->ip;
		cp.chl = (sub != NULL ? sub->current_chl : 0);
		cp.transport = pc->transport;
		cp.hlines = pc->hlines;
		
		/* Little hack to access user object on connect hook callback (preallocate an user) */
		if (strncasecmp(cp.cmd, "CONNECT", 7) == 0 && cp.cmd[7] == '\0') {
			pc->guser = cp.call_user = adduser(cp.client, cp.host, cp.ip, NULL, g_ape);
			pc->guser->transport = pc->transport;
			sub = cp.call_subuser = cp.call_user->subuser;
		}
		
		if ((flag = call_cmd_hook(cp.cmd, &cp, g_ape)) == RETURN_CONTINUE) {
			flag = cmdback->func(&cp);
		}
		
		if (flag & RETURN_NULL) {
			pc->guser = NULL;
		} else if (flag & RETURN_BAD_PARAMS) {
			RAW *newraw;
			json_item *jlist = json_new_object();
			
			if (cp.chl) {
				json_set_property_intN(jlist, "chl", 3, cp.chl);
			}
			json_set_property_strZ(jlist, "code", "001");
			json_set_property_strZ(jlist, "value", "BAD_PARAMS");

			newraw = forge_raw(RAW_ERR, jlist);
			
			if (cp.call_user != NULL) {
				//cp.call_user->istmp = 0;
				if (sub == NULL) {
					sub = getsubuser(pc->guser, pc->host);	
				}
				post_raw_sub(newraw, sub, g_ape);
			} else {
				send_raw_inline(pc->client, pc->transport, newraw, g_ape);
			}
			
			//guser = NULL;
		} else if (flag & RETURN_BAD_CMD) {
			RAW *newraw;
			json_item *jlist = json_new_object();

			if (cp.chl) {
				json_set_property_intN(jlist, "chl", 3, cp.chl);
			}
			json_set_property_strZ(jlist, "code", "003");
			json_set_property_strZ(jlist, "value", "BAD_CMD");

			newraw = forge_raw(RAW_ERR, jlist);
			
			if (cp.call_user != NULL) {	
				if (sub == NULL) {
					sub = getsubuser(pc->guser, pc->host);	
				}
				post_raw_sub(newraw, sub, g_ape);
			} else {
				send_raw_inline(pc->client, pc->transport, newraw, g_ape);
			}					
		}

		if (pc->guser != NULL) {
			if (sub == NULL) {
				sub = getsubuser(pc->guser, pc->host);	
			}
			if (iuser != NULL) {
				*iuser = (attach ? sub : NULL);
			}
			/* If tmpfd is set, we do not have any reasons to change its state */
			sub->state = ALIVE;
			
			if (flag & RETURN_HANG || flag & RETURN_BAD_PARAMS) {
				return (CONNECT_KEEPALIVE);
			}
			
		} else if (flag & RETURN_HANG) {
			/* Doesn't need sessid */
			return (CONNECT_KEEPALIVE);
		} else {
			return (CONNECT_SHUTDOWN);
		}
	} else {

		RAW *newraw;
		json_item *jlist = json_new_object();

		json_set_property_strZ(jlist, "code", "003");
		json_set_property_strZ(jlist, "value", "NO_CMD");

		newraw = forge_raw(RAW_ERR, jlist);

		send_raw_inline(pc->client, pc->transport, newraw, g_ape);
		//printf("Cant find %s\n", rjson->jval.vu.str.value);
		return (CONNECT_SHUTDOWN);
	}
	
	return -1;
}
예제 #9
0
void unregister_cmd(const char *cmd, acetables *g_ape)
{
	free(hashtbl_seek(g_ape->hCallback, cmd));
	hashtbl_erase(g_ape->hCallback, cmd);
}