Decode JSON TRP messages, then send to main thread.
[trust_router.git] / common / tr_msg.c
1 /*
2  * Copyright (c) 2012-2014 , JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34 #include <sys/socket.h>
35 #include <netinet/in.h>
36 #include <arpa/inet.h>
37 #include <string.h>
38 #include <openssl/dh.h>
39 #include <jansson.h>
40 #include <assert.h>
41 #include <talloc.h>
42
43
44 #include <tr_msg.h>
45 #include <trust_router/tr_name.h>
46 #include <trp_internal.h>
47 #include <trust_router/tr_constraint.h>
48 #include <tr_debug.h>
49
50 /* JSON helpers */
51 /* Read attribute attr from msg as an integer. Returns nonzero on error. */
52 static int tr_msg_get_json_integer(json_t *jmsg, const char *attr, int *dest)
53 {
54   json_t *obj;
55
56   obj=json_object_get(jmsg, attr);
57   if (obj == NULL) {
58     return -1;
59   }
60   /* check type */
61   if (!json_is_integer(obj)) {
62     return -1;
63   }
64
65   (*dest)=json_integer_value(obj);
66   return 0;
67 }
68
69 /* Read attribute attr from msg as a string. Copies string into mem_ctx context so jmsg can
70  * be destroyed safely. Returns nonzero on error. */
71 static int tr_msg_get_json_string(json_t *jmsg, const char *attr, char **dest, TALLOC_CTX *mem_ctx)
72 {
73   json_t *obj;
74
75   obj=json_object_get(jmsg, attr);
76   if (obj == NULL)
77     return -1;
78
79   /* check type */
80   if (!json_is_string(obj))
81     return -1;
82
83   *dest=talloc_strdup(mem_ctx, json_string_value(obj));
84   if (*dest==NULL)
85     return -1;
86
87   return 0;
88 }
89
90 enum msg_type tr_msg_get_msg_type(TR_MSG *msg) 
91 {
92   return msg->msg_type;
93 }
94
95 void tr_msg_set_msg_type(TR_MSG *msg, enum msg_type type)
96 {
97   msg->msg_type = type;
98 }
99
100 TID_REQ *tr_msg_get_req(TR_MSG *msg)
101 {
102   if (msg->msg_type == TID_REQUEST)
103     return (TID_REQ *)msg->msg_rep;
104   return NULL;
105 }
106
107 void tr_msg_set_req(TR_MSG *msg, TID_REQ *req)
108 {
109   msg->msg_rep = req;
110   msg->msg_type = TID_REQUEST;
111 }
112
113 TID_RESP *tr_msg_get_resp(TR_MSG *msg)
114 {
115   if (msg->msg_type == TID_RESPONSE)
116     return (TID_RESP *)msg->msg_rep;
117   return NULL;
118 }
119
120 void tr_msg_set_resp(TR_MSG *msg, TID_RESP *resp)
121 {
122   msg->msg_rep = resp;
123   msg->msg_type = TID_RESPONSE;
124 }
125
126 TRP_UPD *tr_msg_get_trp_upd(TR_MSG *msg)
127 {
128   if (msg->msg_type == TRP_UPDATE)
129     return (TRP_UPD *)msg->msg_rep;
130   return NULL;
131 }
132
133 void tr_msg_set_trp_upd(TR_MSG *msg, TRP_UPD *update)
134 {
135   msg->msg_rep=update;
136   msg->msg_type=TRP_UPDATE;
137 }
138
139 TRP_REQ *tr_msg_get_trp_req(TR_MSG *msg)
140 {
141   if (msg->msg_type == TRP_REQUEST)
142     return (TRP_REQ *)msg->msg_rep;
143   return NULL;
144 }
145
146 void tr_msg_set_trp_req(TR_MSG *msg, TRP_REQ *req)
147 {
148   msg->msg_rep=req;
149   msg->msg_type=TRP_REQUEST;
150 }
151
152 static json_t *tr_msg_encode_dh(DH *dh)
153 {
154   json_t *jdh = NULL;
155   json_t *jbn = NULL;
156
157   if ((!dh) || (!dh->p) || (!dh->g) || (!dh->pub_key))
158     return NULL;
159
160   jdh = json_object();
161
162   jbn = json_string(BN_bn2hex(dh->p));
163   json_object_set_new(jdh, "dh_p", jbn);
164
165   jbn = json_string(BN_bn2hex(dh->g));
166   json_object_set_new(jdh, "dh_g", jbn);
167
168   jbn = json_string(BN_bn2hex(dh->pub_key));
169   json_object_set_new(jdh, "dh_pub_key", jbn);
170
171   return jdh;
172 }
173
174 static DH *tr_msg_decode_dh(json_t *jdh)
175 {
176   DH *dh = NULL;
177   json_t *jp = NULL;
178   json_t *jg = NULL;
179   json_t *jpub_key = NULL;
180
181   if (!(dh = malloc(sizeof(DH)))) {
182     tr_crit("tr_msg_decode_dh(): Error allocating DH structure.");
183     return NULL;
184   }
185  
186   memset(dh, 0, sizeof(DH));
187
188   /* store required fields from dh object */
189   if ((NULL == (jp = json_object_get(jdh, "dh_p"))) ||
190       (NULL == (jg = json_object_get(jdh, "dh_g"))) ||
191       (NULL == (jpub_key = json_object_get(jdh, "dh_pub_key")))) {
192     tr_debug("tr_msg_decode_dh(): Error parsing dh_info.");
193     free(dh);
194     return NULL;
195   }
196
197   BN_hex2bn(&(dh->p), json_string_value(jp));
198   BN_hex2bn(&(dh->g), json_string_value(jg));
199   BN_hex2bn(&(dh->pub_key), json_string_value(jpub_key));
200
201   return dh;
202 }
203
204 static json_t * tr_msg_encode_tidreq(TID_REQ *req)
205 {
206   json_t *jreq = NULL;
207   json_t *jstr = NULL;
208
209   if ((!req) || (!req->rp_realm) || (!req->realm) || !(req->comm))
210     return NULL;
211
212   assert(jreq = json_object());
213
214   jstr = json_string(req->rp_realm->buf);
215   json_object_set_new(jreq, "rp_realm", jstr);
216
217   jstr = json_string(req->realm->buf);
218   json_object_set_new(jreq, "target_realm", jstr);
219
220   jstr = json_string(req->comm->buf);
221   json_object_set_new(jreq, "community", jstr);
222   
223   if (req->orig_coi) {
224     jstr = json_string(req->orig_coi->buf);
225     json_object_set_new(jreq, "orig_coi", jstr);
226   }
227
228   json_object_set_new(jreq, "dh_info", tr_msg_encode_dh(req->tidc_dh));
229
230   if (req->cons)
231     json_object_set(jreq, "constraints", (json_t *) req->cons);
232
233   if (req->path)
234     json_object_set(jreq, "path", req->path);
235   if (req->expiration_interval)
236     json_object_set_new(jreq, "expiration_interval",
237                         json_integer(req->expiration_interval));
238   
239   return jreq;
240 }
241
242 static TID_REQ *tr_msg_decode_tidreq(json_t *jreq)
243 {
244   TID_REQ *treq = NULL;
245   json_t *jrp_realm = NULL;
246   json_t *jrealm = NULL;
247   json_t *jcomm = NULL;
248   json_t *jorig_coi = NULL;
249   json_t *jdh = NULL;
250   json_t *jpath = NULL;
251   json_t *jexpire_interval = NULL;
252
253   if (!(treq =tid_req_new())) {
254     tr_crit("tr_msg_decode_tidreq(): Error allocating TID_REQ structure.");
255     return NULL;
256   }
257  
258   /* store required fields from request */
259   if ((NULL == (jrp_realm = json_object_get(jreq, "rp_realm"))) ||
260       (NULL == (jrealm = json_object_get(jreq, "target_realm"))) ||
261       (NULL == (jcomm = json_object_get(jreq, "community")))) {
262     tr_notice("tr_msg_decode(): Error parsing required fields.");
263     tid_req_free(treq);
264     return NULL;
265   }
266
267   jpath = json_object_get(jreq, "path");
268   jexpire_interval = json_object_get(jreq, "expiration_interval");
269
270   treq->rp_realm = tr_new_name((char *)json_string_value(jrp_realm));
271   treq->realm = tr_new_name((char *)json_string_value(jrealm));
272   treq->comm = tr_new_name((char *)json_string_value(jcomm));
273
274   /* Get DH Info from the request */
275   if (NULL == (jdh = json_object_get(jreq, "dh_info"))) {
276     tr_debug("tr_msg_decode(): Error parsing dh_info.");
277     tid_req_free(treq);
278     return NULL;
279   }
280   treq->tidc_dh = tr_msg_decode_dh(jdh);
281
282   /* store optional "orig_coi" field */
283   if (NULL != (jorig_coi = json_object_get(jreq, "orig_coi"))) {
284     treq->orig_coi = tr_new_name((char *)json_string_value(jorig_coi));
285   }
286
287   treq->cons = (TR_CONSTRAINT_SET *) json_object_get(jreq, "constraints");
288   if (treq->cons) {
289     if (!tr_constraint_set_validate(treq->cons)) {
290       tr_debug("Constraint set validation failed");
291     tid_req_free(treq);
292     return NULL;
293     }
294     json_incref((json_t *) treq->cons);
295     tid_req_cleanup_json(treq, (json_t *) treq->cons);
296   }
297   if (jpath) {
298     json_incref(jpath);
299     treq->path = jpath;
300     tid_req_cleanup_json(treq, jpath);
301   }
302   if (jexpire_interval)
303     treq->expiration_interval = json_integer_value(jexpire_interval);
304   
305   return treq;
306 }
307
308 static json_t *tr_msg_encode_one_server(TID_SRVR_BLK *srvr)
309 {
310   json_t *jsrvr = NULL;
311   json_t *jstr = NULL;
312   gchar *time_str = g_time_val_to_iso8601(&srvr->key_expiration);
313
314   tr_debug("Encoding one server.");
315
316   jsrvr = json_object();
317
318   /* Server IP Address -- TBD handle IPv6 */
319   jstr = json_string(inet_ntoa(srvr->aaa_server_addr));
320   json_object_set_new(jsrvr, "server_addr", jstr);
321
322   json_object_set_new(jsrvr,
323                       "key_expiration", json_string(time_str));
324   g_free(time_str);
325   /* Server DH Block */
326   jstr = json_string(srvr->key_name->buf);
327   json_object_set_new(jsrvr, "key_name", jstr);
328   json_object_set_new(jsrvr, "server_dh", tr_msg_encode_dh(srvr->aaa_server_dh));
329   if (srvr->path)
330     /* The path is owned by the srvr, so grab an extra ref*/
331     json_object_set(jsrvr, "path", srvr->path);
332   return jsrvr;
333 }
334
335 static int tr_msg_decode_one_server(json_t *jsrvr, TID_SRVR_BLK *srvr) 
336 {
337   json_t *jsrvr_addr = NULL;
338   json_t *jsrvr_kn = NULL;
339   json_t *jsrvr_dh = NULL;
340   json_t *jsrvr_expire = NULL;
341
342   if (jsrvr == NULL)
343     return -1;
344
345
346   if ((NULL == (jsrvr_addr = json_object_get(jsrvr, "server_addr"))) ||
347       (NULL == (jsrvr_kn = json_object_get(jsrvr, "key_name"))) ||
348       (NULL == (jsrvr_dh = json_object_get(jsrvr, "server_dh")))) {
349     tr_notice("tr_msg_decode_one_server(): Error parsing required fields.");
350     return -1;
351   }
352   
353   /* TBD -- handle IPv6 Addresses */
354   inet_aton(json_string_value(jsrvr_addr), &(srvr->aaa_server_addr));
355   srvr->key_name = tr_new_name((char *)json_string_value(jsrvr_kn));
356   srvr->aaa_server_dh = tr_msg_decode_dh(jsrvr_dh);
357   srvr->path = json_object_get(jsrvr, "path");
358   jsrvr_expire = json_object_get(jsrvr, "key_expiration");
359   if (jsrvr_expire && json_is_string(jsrvr_expire)) {
360     if (!g_time_val_from_iso8601(json_string_value(jsrvr_expire),
361                                  &srvr->key_expiration))
362       tr_notice("Key expiration %s cannot be parsed", json_string_value(jsrvr_expire));
363   }
364   
365   return 0;
366 }
367
368 static json_t *tr_msg_encode_servers(TID_RESP *resp)
369 {
370   json_t *jservers = NULL;
371   json_t *jsrvr = NULL;
372   TID_SRVR_BLK *srvr = NULL;
373   size_t index;
374
375   jservers = json_array();
376
377   tid_resp_servers_foreach(resp, srvr, index) {
378     if ((NULL == (jsrvr = tr_msg_encode_one_server(srvr))) ||
379         (-1 == json_array_append_new(jservers, jsrvr))) {
380       return NULL;
381     }
382   }
383
384   //  tr_debug("tr_msg_encode_servers(): servers contains:");
385   //  tr_debug("%s", json_dumps(jservers, 0));
386   return jservers;
387 }
388
389 static TID_SRVR_BLK *tr_msg_decode_servers(void * ctx, json_t *jservers, size_t *out_len)
390 {
391   TID_SRVR_BLK *servers = NULL;
392   json_t *jsrvr;
393   size_t i, num_servers;
394
395   num_servers = json_array_size(jservers);
396   tr_debug("tr_msg_decode_servers(): Number of servers = %u.", (unsigned) num_servers);
397   
398   if (0 == num_servers) {
399     tr_debug("tr_msg_decode_servers(): Server array is empty."); 
400     return NULL;
401   }
402   servers = talloc_zero_array(ctx, TID_SRVR_BLK, num_servers);
403
404   for (i = 0; i < num_servers; i++) {
405     jsrvr = json_array_get(jservers, i);
406     if (0 != tr_msg_decode_one_server(jsrvr, &servers[i])) {
407       talloc_free(servers);
408       return NULL;
409     }
410
411
412   }
413   *out_len = num_servers;
414   return servers;
415 }
416
417 static json_t * tr_msg_encode_tidresp(TID_RESP *resp)
418 {
419   json_t *jresp = NULL;
420   json_t *jstr = NULL;
421   json_t *jservers = NULL;
422
423   if ((!resp) || (!resp->rp_realm) || (!resp->realm) || !(resp->comm))
424     return NULL;
425
426   jresp = json_object();
427
428   if (TID_ERROR == resp->result) {
429     jstr = json_string("error");
430     json_object_set_new(jresp, "result", jstr);
431     if (resp->err_msg) {
432       jstr = json_string(resp->err_msg->buf);
433       json_object_set_new(jresp, "err_msg", jstr);
434     }
435   }
436   else {
437     jstr = json_string("success");
438     json_object_set_new(jresp, "result", jstr);
439   }
440
441   jstr = json_string(resp->rp_realm->buf);
442   json_object_set_new(jresp, "rp_realm", jstr);
443
444   jstr = json_string(resp->realm->buf);
445   json_object_set_new(jresp, "target_realm", jstr);
446
447   jstr = json_string(resp->comm->buf);
448   json_object_set_new(jresp, "comm", jstr);
449
450   if (resp->orig_coi) {
451     jstr = json_string(resp->orig_coi->buf);
452     json_object_set_new(jresp, "orig_coi", jstr);
453   }
454
455   if (NULL == resp->servers) {
456     tr_debug("tr_msg_encode_tidresp(): No servers to encode.");
457   }
458   else {
459     jservers = tr_msg_encode_servers(resp);
460     json_object_set_new(jresp, "servers", jservers);
461   }
462   if (resp->error_path)
463     json_object_set(jresp, "error_path", resp->error_path);
464   
465   
466   return jresp;
467 }
468
469 static TID_RESP *tr_msg_decode_tidresp(json_t *jresp)
470 {
471   TID_RESP *tresp = NULL;
472   json_t *jresult = NULL;
473   json_t *jrp_realm = NULL;
474   json_t *jrealm = NULL;
475   json_t *jcomm = NULL;
476   json_t *jorig_coi = NULL;
477   json_t *jservers = NULL;
478   json_t *jerr_msg = NULL;
479
480   if (!(tresp=tid_resp_new(NULL))) {
481     tr_crit("tr_msg_decode_tidresp(): Error allocating TID_RESP structure.");
482     return NULL;
483   }
484  
485
486   /* store required fields from response */
487   if ((NULL == (jresult = json_object_get(jresp, "result"))) ||
488       (!json_is_string(jresult)) ||
489       (NULL == (jrp_realm = json_object_get(jresp, "rp_realm"))) ||
490       (!json_is_string(jrp_realm)) ||
491       (NULL == (jrealm = json_object_get(jresp, "target_realm"))) ||
492       (!json_is_string(jrealm)) ||
493       (NULL == (jcomm = json_object_get(jresp, "comm"))) ||
494       (!json_is_string(jcomm))) {
495     tr_debug("tr_msg_decode_tidresp(): Error parsing response.");
496     talloc_free(tresp);
497     return NULL;
498   }
499
500   if (0 == (strcmp(json_string_value(jresult), "success"))) {
501     tr_debug("tr_msg_decode_tidresp(): Success! result = %s.", json_string_value(jresult));
502     if ((NULL != (jservers = json_object_get(jresp, "servers"))) ||
503         (!json_is_array(jservers))) {
504       tresp->servers = tr_msg_decode_servers(tresp, jservers, &tresp->num_servers); 
505     } 
506     else {
507       talloc_free(tresp);
508       return NULL;
509     }
510     tresp->result = TID_SUCCESS;
511   }
512   else {
513     tresp->result = TID_ERROR;
514     tr_debug("tr_msg_decode_tidresp(): Error! result = %s.", json_string_value(jresult));
515     if ((NULL != (jerr_msg = json_object_get(jresp, "err_msg"))) ||
516         (!json_is_string(jerr_msg))) {
517       tresp->err_msg = tr_new_name((char *)json_string_value(jerr_msg));
518     }
519   }
520
521   tresp->rp_realm = tr_new_name((char *)json_string_value(jrp_realm));
522   tresp->realm = tr_new_name((char *)json_string_value(jrealm));
523   tresp->comm = tr_new_name((char *)json_string_value(jcomm));
524
525   /* store optional "orig_coi" field */
526   if ((NULL != (jorig_coi = json_object_get(jresp, "orig_coi"))) &&
527       (!json_is_object(jorig_coi))) {
528     tresp->orig_coi = tr_new_name((char *)json_string_value(jorig_coi));
529   }
530      
531   return tresp;
532 }
533
534
535 /* Information records for TRP update msg 
536  * requires that jrec already be allocated */
537 static TRP_RC tr_msg_encode_inforec_route(json_t *jrec, TRP_INFOREC *rec )
538 {
539   json_t *jstr=NULL;
540   json_t *jint=NULL;
541   char *s=NULL;
542
543   if (rec==NULL)
544     return TRP_BADTYPE;
545
546   s=tr_name_strdup(trp_inforec_get_comm(rec));
547   if (s==NULL)
548     return TRP_NOMEM;
549   jstr=json_string(s);
550   free(s);s=NULL;
551   if(jstr==NULL)
552     return TRP_ERROR;
553   json_object_set_new(jrec, "community", jstr);
554
555   s=tr_name_strdup(trp_inforec_get_realm(rec));
556   if (s==NULL)
557     return TRP_NOMEM;
558   jstr=json_string(s);
559   free(s);s=NULL;
560   if(jstr==NULL)
561     return TRP_ERROR;
562   json_object_set_new(jrec, "realm", jstr);
563
564   s=tr_name_strdup(trp_inforec_get_trust_router(rec));
565   if (s==NULL)
566     return TRP_NOMEM;
567   jstr=json_string(s);
568   free(s);s=NULL;
569   if(jstr==NULL)
570     return TRP_ERROR;
571   json_object_set_new(jrec, "trust_router", jstr);
572
573   jint=json_integer(trp_inforec_get_metric(rec));
574   if(jint==NULL)
575     return TRP_ERROR;
576   json_object_set_new(jrec, "metric", jint);
577
578   jint=json_integer(trp_inforec_get_interval(rec));
579   if(jint==NULL)
580     return TRP_ERROR;
581   json_object_set_new(jrec, "interval", jint);
582
583   return TRP_SUCCESS;
584 }
585
586 static json_t *tr_msg_encode_inforec(TRP_INFOREC *rec)
587 {
588   json_t *jrec=NULL;
589   json_t *jstr=NULL;
590
591   if ((rec==NULL) || (trp_inforec_get_type(rec)==TRP_INFOREC_TYPE_UNKNOWN))
592     return NULL;
593
594   jrec=json_object();
595   if (jrec==NULL)
596     return NULL;
597
598   jstr=json_string(trp_inforec_type_to_string(trp_inforec_get_type(rec)));
599   if (jstr==NULL) {
600     json_decref(jrec);
601     return NULL;
602   }
603   json_object_set_new(jrec, "record_type", jstr);
604
605   switch (rec->type) {
606   case TRP_INFOREC_TYPE_ROUTE:
607     if (TRP_SUCCESS!=tr_msg_encode_inforec_route(jrec, rec)) {
608       json_decref(jrec);
609       return NULL;
610     }
611     break;
612   default:
613     json_decref(jrec);
614     return NULL;
615   }
616   return jrec;
617 }
618
619 /* decode a single record */
620 static TRP_INFOREC *tr_msg_decode_trp_inforec(TALLOC_CTX *mem_ctx, json_t *jrecord)
621 {
622   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
623   TRP_INFOREC_TYPE rectype;
624   TRP_INFOREC *rec=NULL;
625   TRP_RC rc=TRP_ERROR;
626   char *s=NULL;
627   int num=0;
628   
629   if (0!=tr_msg_get_json_string(jrecord, "record_type", &s, tmp_ctx))
630     goto cleanup;
631
632   rectype=trp_inforec_type_from_string(s);
633   talloc_free(s); s=NULL;
634
635   rec=trp_inforec_new(tmp_ctx, rectype);
636   if (rec==NULL) {
637     rc=TRP_NOMEM;
638     goto cleanup;
639   }
640
641   /* We only support route_info records for now*/
642   if (trp_inforec_get_type(rec)!=TRP_INFOREC_TYPE_ROUTE) {
643     rc=TRP_UNSUPPORTED;
644     goto cleanup;
645   }
646
647   tr_debug("tr_msg_decode_trp_inforec: '%s' record found.", trp_inforec_type_to_string(rec->type));
648
649   rc=tr_msg_get_json_string(jrecord, "community", &s, tmp_ctx);
650   if (rc != TRP_SUCCESS)
651     goto cleanup;
652   if (TRP_SUCCESS!=trp_inforec_set_comm(rec, tr_new_name(s)))
653     goto cleanup;
654   talloc_free(s); s=NULL;
655
656   rc=tr_msg_get_json_string(jrecord, "realm", &s, tmp_ctx);
657   if (rc != TRP_SUCCESS)
658     goto cleanup;
659   if (TRP_SUCCESS!=trp_inforec_set_realm(rec, tr_new_name(s)))
660     goto cleanup;
661   talloc_free(s); s=NULL;
662
663   rc=tr_msg_get_json_string(jrecord, "trust_router", &s, tmp_ctx);
664   if (rc != TRP_SUCCESS)
665     goto cleanup;
666   if (TRP_SUCCESS!=trp_inforec_set_trust_router(rec, tr_new_name(s)))
667     goto cleanup;
668   talloc_free(s); s=NULL;
669
670   rc=tr_msg_get_json_integer(jrecord, "metric", &num);
671   if ((rc != TRP_SUCCESS) || (TRP_SUCCESS!=trp_inforec_set_metric(rec,num)))
672     goto cleanup;
673
674   rc=tr_msg_get_json_integer(jrecord, "interval", &num);
675   if ((rc != TRP_SUCCESS) || (TRP_SUCCESS!=trp_inforec_set_interval(rec,num)))
676     goto cleanup;
677
678   talloc_steal(mem_ctx, rec);
679   rc=TRP_SUCCESS;
680
681 cleanup:
682   if (rc != TRP_SUCCESS) {
683     trp_inforec_free(rec);
684     rec=NULL;
685   }
686   talloc_free(tmp_ctx);
687   return rec;
688 }
689
690 /* TRP update msg */
691 static json_t *tr_msg_encode_trp_upd(TRP_UPD *update)
692 {
693   json_t *jupdate=NULL;
694   json_t *jrecords=NULL;
695   json_t *jrec=NULL;
696   TRP_INFOREC *rec;
697
698   if (update==NULL)
699     return NULL;
700
701   jupdate=json_object();
702   if (jupdate==NULL)
703     return NULL;
704
705   jrecords=json_array();
706   if (jrecords==NULL) {
707     json_decref(jupdate);
708     return NULL;
709   }
710   json_object_set_new(jupdate, "records", jrecords); /* jrecords now a "borrowed" reference */
711   for (rec=trp_upd_get_inforec(update); rec!=NULL; rec=trp_inforec_get_next(rec)) {
712     jrec=tr_msg_encode_inforec(rec);
713     if (jrec==NULL) {
714       json_decref(jupdate); /* also decs jrecords and any elements */
715       return NULL;
716     }
717     if (0!=json_array_append_new(jrecords, jrec)) {
718       json_decref(jupdate); /* also decs jrecords and any elements */
719       json_decref(jrec); /* this one did not get added so dec explicitly */
720       return NULL;
721     }
722   }
723
724   return jupdate;
725 }
726
727 /*Creates a linked list of records in the msg->body talloc context.
728  * An error will be returned if any unparseable records are encountered. 
729  */
730 static TRP_UPD *tr_msg_decode_trp_upd(TALLOC_CTX *mem_ctx, json_t *jupdate)
731 {
732   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
733   json_t *jrecords=NULL;
734   size_t ii=0;
735   TRP_UPD *update=NULL;
736   TRP_INFOREC *new_rec=NULL;
737   TRP_INFOREC *list_tail=NULL;
738   TRP_RC rc=TRP_ERROR;
739
740   update=trp_upd_new(tmp_ctx);
741   if (update==NULL) {
742     rc=TRP_NOMEM;
743     goto cleanup;
744   }
745
746   jrecords=json_object_get(jupdate, "records");
747   if ((jrecords==NULL) || (!json_is_array(jrecords))) {
748     rc=TRP_NOPARSE;
749     goto cleanup;
750   }
751
752   tr_debug("tr_msg_decode_trp_upd: found %d records", json_array_size(jrecords));
753   /* process the array */
754   for (ii=0; ii<json_array_size(jrecords); ii++) {
755     new_rec=tr_msg_decode_trp_inforec(update, json_array_get(jrecords, ii));
756     if (new_rec==NULL) {
757       rc=TRP_NOPARSE;
758       goto cleanup;
759     }
760
761     if (list_tail==NULL)
762       trp_upd_set_inforec(update, new_rec); /* first is a special case */
763     else
764       trp_inforec_set_next(list_tail, new_rec);
765
766     list_tail=new_rec;
767   }
768
769   /* Succeeded. Move new allocations into the correct talloc context */
770   talloc_steal(mem_ctx, update);
771   rc=TRP_SUCCESS;
772
773 cleanup:
774   talloc_free(tmp_ctx);
775   if (rc!=TRP_SUCCESS)
776     return NULL;
777   return update;
778 }
779
780 static json_t *tr_msg_encode_trp_req(TRP_REQ *req)
781 {
782   json_t *jbody=NULL;
783   json_t *jstr=NULL;
784   char *s=NULL;
785
786   if (req==NULL)
787     return NULL;
788
789   jbody=json_object();
790   if (jbody==NULL)
791     return NULL;
792
793   s=tr_name_strdup(trp_req_get_comm(req)); /* ensures null termination */
794   if (s==NULL) {
795     json_decref(jbody);
796     return NULL;
797   }
798   jstr=json_string(s);
799   free(s); s=NULL;
800   if (jstr==NULL) {
801     json_decref(jbody);
802     return NULL;
803   }
804   json_object_set_new(jbody, "community", jstr);
805     
806   s=tr_name_strdup(trp_req_get_realm(req)); /* ensures null termination */
807   if (s==NULL) {
808     json_decref(jbody);
809     return NULL;
810   }
811   jstr=json_string(s);
812   free(s); s=NULL;
813   if (jstr==NULL) {
814     json_decref(jbody);
815     return NULL;
816   }
817   json_object_set_new(jbody, "realm", jstr);
818
819   return jbody;
820 }
821
822 static TRP_REQ *tr_msg_decode_trp_req(TALLOC_CTX *mem_ctx, json_t *jreq)
823 {
824   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
825   TRP_REQ *req=NULL;
826   char *s=NULL;
827   TRP_RC rc=TRP_ERROR;
828
829   /* check message type and body type for agreement */
830   req=trp_req_new(tmp_ctx);
831   if (req==NULL) {
832     rc=TRP_NOMEM;
833     goto cleanup;
834   }
835
836   rc=tr_msg_get_json_string(jreq, "community", &s, tmp_ctx);
837   if (rc!=TRP_SUCCESS)
838     goto cleanup;
839   trp_req_set_comm(req, tr_new_name(s));
840   talloc_free(s); s=NULL;
841
842   rc=tr_msg_get_json_string(jreq, "realm", &s, tmp_ctx);
843   if (rc!=TRP_SUCCESS)
844     goto cleanup;
845   trp_req_set_realm(req, tr_new_name(s));
846   talloc_free(s); s=NULL;
847
848   rc=TRP_SUCCESS;
849   talloc_steal(mem_ctx, req);
850
851 cleanup:
852   talloc_free(tmp_ctx);
853   if (rc!=TRP_SUCCESS)
854     return NULL;
855   return req;
856 }
857
858 char *tr_msg_encode(TR_MSG *msg) 
859 {
860   json_t *jmsg;
861   json_t *jmsg_type;
862   char *encoded;
863
864   /* TBD -- add error handling */
865   jmsg = json_object();
866
867   switch (msg->msg_type) 
868     {
869     case TID_REQUEST:
870       jmsg_type = json_string("tid_request");
871       json_object_set_new(jmsg, "msg_type", jmsg_type);
872       json_object_set_new(jmsg, "msg_body", tr_msg_encode_tidreq(tr_msg_get_req(msg)));
873       break;
874
875     case TID_RESPONSE:
876       jmsg_type = json_string("tid_response");
877       json_object_set_new(jmsg, "msg_type", jmsg_type);
878       json_object_set_new(jmsg, "msg_body", tr_msg_encode_tidresp(tr_msg_get_resp(msg)));
879       break;
880
881     case TRP_UPDATE:
882       jmsg_type = json_string("trp_update");
883       json_object_set_new(jmsg, "msg_type", jmsg_type);
884       json_object_set_new(jmsg, "msg_body", tr_msg_encode_trp_upd(tr_msg_get_trp_upd(msg)));
885       break;
886
887     case TRP_REQUEST:
888       jmsg_type = json_string("trp_request");
889       json_object_set_new(jmsg, "msg_type", jmsg_type);
890       json_object_set_new(jmsg, "msg_body", tr_msg_encode_trp_req(tr_msg_get_trp_req(msg)));
891       break;
892
893     default:
894       json_decref(jmsg);
895       return NULL;
896     }
897
898   encoded=json_dumps(jmsg, 0);
899   json_decref(jmsg);
900   return encoded;
901 }
902
903 TR_MSG *tr_msg_decode(char *jbuf, size_t buflen)
904 {
905   TR_MSG *msg=NULL;
906   json_t *jmsg = NULL;
907   json_error_t rc;
908   json_t *jtype=NULL;
909   json_t *jbody=NULL;
910   const char *mtype = NULL;
911
912   if (NULL == (jmsg = json_loadb(jbuf, buflen, JSON_DISABLE_EOF_CHECK, &rc))) {
913     tr_debug("tr_msg_decode(): error loading object");
914     return NULL;
915   }
916
917   if (!(msg = malloc(sizeof(TR_MSG)))) {
918     tr_debug("tr_msg_decode(): Error allocating TR_MSG structure.");
919     json_decref(jmsg);
920     return NULL;
921   }
922  
923   memset(msg, 0, sizeof(TR_MSG));
924
925   if ((NULL == (jtype = json_object_get(jmsg, "msg_type"))) ||
926       (NULL == (jbody = json_object_get(jmsg, "msg_body")))) {
927     tr_debug("tr_msg_decode(): Error parsing message header.");
928     json_decref(jmsg);
929     tr_msg_free_decoded(msg);
930     return NULL;
931   }
932
933   mtype = json_string_value(jtype);
934
935   if (0 == strcmp(mtype, "tid_request")) {
936     msg->msg_type = TID_REQUEST;
937     tr_msg_set_req(msg, tr_msg_decode_tidreq(jbody));
938   }
939   else if (0 == strcmp(mtype, "tid_response")) {
940     msg->msg_type = TID_RESPONSE;
941     tr_msg_set_resp(msg, tr_msg_decode_tidresp(jbody));
942   }
943   else if (0 == strcmp(mtype, "trp_update")) {
944     msg->msg_type = TRP_UPDATE;
945     tr_msg_set_trp_upd(msg, tr_msg_decode_trp_upd(NULL, jbody)); /* null talloc context for now */
946   }
947   else if (0 == strcmp(mtype, "trp_request")) {
948     msg->msg_type = TRP_UPDATE;
949     tr_msg_set_trp_req(msg, tr_msg_decode_trp_req(NULL, jbody)); /* null talloc context for now */
950   }
951   else {
952     msg->msg_type = TR_UNKNOWN;
953     msg->msg_rep = NULL;
954   }
955   return msg;
956 }
957
958 void tr_msg_free_encoded(char *jmsg)
959 {
960   if (jmsg)
961     free (jmsg);
962 }
963
964 void tr_msg_free_decoded(TR_MSG *msg)
965 {
966   if (msg) {
967     switch (msg->msg_type) {
968     case TID_REQUEST:
969       tid_req_free(tr_msg_get_req(msg));
970       break;
971     case TID_RESPONSE:
972       tid_resp_free(tr_msg_get_resp(msg));
973       break;
974     case TRP_UPDATE:
975       trp_upd_free(tr_msg_get_trp_upd(msg));
976       break;
977     case TRP_REQUEST:
978       trp_req_free(tr_msg_get_trp_req(msg));
979     default:
980       break;
981     }
982     free (msg);
983   }
984 }