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