[sr-dev] git:andrei/rpc_async: tm: async t_uac (t_uac_wait) support

Andrei Pelinescu-Onciul andrei at iptel.org
Thu Sep 3 11:27:19 CEST 2009


Module: sip-router
Branch: andrei/rpc_async
Commit: d12ab1890360072e6b1658b3f738f56a9590f872
URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d12ab1890360072e6b1658b3f738f56a9590f872

Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date:   Tue Sep  1 18:44:36 2009 +0200

tm: async t_uac (t_uac_wait) support

t_uac_wait implemented using the new rpc "wait" support.
For now the implementation is just the fifo uac updated to use
rpcs.
The result of the rpc call is the reply code (int) followed by a
list of strings:
reason phrase,
request uri,
next hop uri,
dialog routes list (one string with all of them),
rest of the reply (everything except the first line in one
string).

Missing parts are represented by empty strings.
The current format is not yet final. It might make sense to switch
to a structure if there is no backwards compatibility problem.

---

 modules/tm/rpc_uac.c |  167 +++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 165 insertions(+), 2 deletions(-)

diff --git a/modules/tm/rpc_uac.c b/modules/tm/rpc_uac.c
index 043fc65..3dc34a9 100644
--- a/modules/tm/rpc_uac.c
+++ b/modules/tm/rpc_uac.c
@@ -300,6 +300,156 @@ static char *get_hfblock(str *uri, struct hdr_field *hf, int proto,
 }
 
 
+#define RPC_ROUTE_PREFIX	"Route: "
+#define RPC_ROUTE_PREFIX_LEN	(sizeof(RPC_ROUTE_PREFIX)-1)
+#define RPC_ROUTE_SEPARATOR	", "
+#define RPC_ROUTE_SEPARATOR_LEN	(sizeof(RPC_ROUTE_SEPARATOR)-1)
+
+
+/** internal print routes into rpc reply function.
+ *  Prints the dialog routes. It's used internally by
+ *  rpx_print_uris (called from rpc_uac_callback()).
+ *  @param rpc
+ *  @param c - rpc context
+ *  @param reply - sip reply
+ */
+static void  rpc_print_routes(rpc_t* rpc, void* c,
+								dlg_t* d)
+{
+	rr_t* ptr;
+	int size;
+	char* buf;
+	char* p;
+	
+	
+	if (d->hooks.first_route == 0){
+		rpc->add(c, "s", "");
+		return;
+	}
+	size=RPC_ROUTE_PREFIX_LEN;
+	for (ptr=d->hooks.first_route; ptr; ptr=ptr->next)
+		size+=ptr->len+(ptr->next!=0)*RPC_ROUTE_SEPARATOR_LEN;
+	if (d->hooks.last_route)
+		size+=RPC_ROUTE_SEPARATOR_LEN + 1 /* '<' */ + 
+				d->hooks.last_route->len +1 /* '>' */;
+
+	buf=pkg_malloc(size+1);
+	if (buf==0){
+		ERR("out of memory\n");
+		rpc->add(c, "s", "");
+		return;
+	}
+	p=buf;
+	memcpy(p, RPC_ROUTE_PREFIX, RPC_ROUTE_PREFIX_LEN);
+	p+=RPC_ROUTE_PREFIX_LEN;
+	for (ptr=d->hooks.first_route; ptr; ptr=ptr->next){
+		memcpy(p, ptr->nameaddr.name.s, ptr->len);
+		p+=ptr->len;
+		if (ptr->next!=0){
+			memcpy(p, RPC_ROUTE_SEPARATOR, RPC_ROUTE_SEPARATOR_LEN);
+			p+=RPC_ROUTE_SEPARATOR_LEN;
+		}
+	}
+	if (d->hooks.last_route){
+		memcpy(p, RPC_ROUTE_SEPARATOR, RPC_ROUTE_SEPARATOR_LEN);
+		p+=RPC_ROUTE_SEPARATOR_LEN;
+		*p='<';
+		p++;
+		memcpy(p, d->hooks.last_route->s, d->hooks.last_route->len);
+		p+=d->hooks.last_route->len;
+		*p='>';
+		p++;
+	}
+	*p=0;
+	rpc->add(c, "s", buf);
+	pkg_free(buf);
+	return;
+}
+
+
+/** internal print uri into rpc reply function.
+ *  Prints the uris into rpc reply. It's used internally by
+ *  rpc_uac_callback().
+ *  @param rpc
+ *  @param c - rpc context
+ *  @param reply - sip reply
+ */
+static void  rpc_print_uris(rpc_t* rpc, void* c, struct sip_msg* reply)
+{
+	dlg_t* dlg;
+	dlg=shm_malloc(sizeof(dlg_t));
+	if (dlg==0){
+		ERR("out of memory (shm)\n");
+		return;
+	}
+	memset(dlg, 0, sizeof(dlg_t));
+	if (dlg_response_uac(dlg, reply, TARGET_REFRESH_UNKNOWN) < 0) {
+		ERR("failure while filling dialog structure\n");
+		free_dlg(dlg);
+		return;
+	}
+	if (dlg->state != DLG_CONFIRMED) {
+		free_dlg(dlg);
+		return;
+	}
+	if (dlg->hooks.request_uri->s){
+		rpc->add(c, "S", dlg->hooks.request_uri);
+	}else{
+		rpc->add(c, "s", "");
+	}
+	if (dlg->hooks.next_hop->s) {
+		rpc->add(c, "S", dlg->hooks.next_hop);
+	} else {
+		rpc->add(c, "s", "");
+	}
+	rpc_print_routes(rpc, c, dlg);
+	free_dlg(dlg);
+	return;
+}
+
+
+
+/* t_uac callback */
+static void rpc_uac_callback(struct cell* t, int type, struct tmcb_params* ps)
+{
+	rpc_delayed_ctx_t* dctx;
+	str text;
+	rpc_t* rpc;
+	void* c;
+	int code;
+	str* preason;
+	
+	dctx=(rpc_delayed_ctx_t*)*ps->param;
+	*ps->param=0;
+	if (dctx==0){
+		BUG("null delayed reply ctx\n");
+		return;
+	}
+	rpc=&dctx->rpc;
+	c=dctx->reply_ctx;
+	if (ps->rpl==FAKED_REPLY) {
+		text.s=error_text(ps->code);
+		text.len=strlen(text.s);
+		code=ps->code;
+		preason=&text;
+		rpc->add(c, "dS", code, preason);
+		rpc->add(c, "s", ""); /* request uri (rpc_print_uris)*/
+		rpc->add(c, "s", ""); /* next hop (rpc_print_uris) */
+		rpc->add(c, "s", ""); /* dialog routes (rpc_print_routes) */
+		rpc->add(c, "s", ""); /* rest of the reply */
+	}else{
+		code=ps->rpl->first_line.u.reply.statuscode;
+		preason=&ps->rpl->first_line.u.reply.reason;
+		rpc->add(c, "dS", code, preason);
+		rpc_print_uris(rpc, c, ps->rpl);
+		/* print all the reply (from the first header) */
+		rpc->add(c, "s", ps->rpl->headers->name.s);
+	}
+	rpc->delayed_ctx_close(dctx);
+	ps->param=0;
+}
+
+
 
 /** rpc t_uac version-
   * It expects the following list of strings as parameters:
@@ -339,11 +489,14 @@ static void rpc_t_uac(rpc_t* rpc, void* c, int reply_wait)
 	char err_buf[MAX_REASON_LEN];
 	dlg_t dlg;
 	uac_req_t uac_req;
+	rpc_delayed_ctx_t* dctx;
 	
 	body.s=0;
 	body.len=0;
-	if (reply_wait){
-		rpc->fault(c, 600, "Reply wait/async mode not supported");
+	if (reply_wait && (rpc->capabilities == 0 ||
+						!(rpc->capabilities(c) & RPC_DELAYED_REPLY))) {
+		rpc->fault(c, 600, "Reply wait/async mode not supported"
+							" by this rpc transport");
 		return;
 	}
 	ret=rpc->scan(c, "SSSSS*S",
@@ -442,6 +595,16 @@ static void rpc_t_uac(rpc_t* rpc, void* c, int reply_wait)
 	uac_req.headers=&hfb;
 	uac_req.body=body.len?&body:0;
 	uac_req.dialog=&dlg;
+	if (reply_wait){
+		dctx=rpc->delayed_ctx_new(c);
+		if (dctx==0){
+			rpc->fault(c, 500, "internal error: failed to create context");
+			return;
+		}
+		uac_req.cb=rpc_uac_callback;
+		uac_req.cbp=dctx;
+		uac_req.cb_flags=TMCB_LOCAL_COMPLETED;
+	}
 	ret = t_uac(&uac_req);
 	
 	if (ret <= 0) {




More information about the sr-dev mailing list