File: response.c

package info (click to toggle)
s390-tools 2.40.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,288 kB
  • sloc: ansic: 187,079; sh: 12,157; cpp: 5,049; makefile: 2,812; perl: 2,541; asm: 1,097; python: 697; xml: 29
file content (1377 lines) | stat: -rw-r--r-- 45,811 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
/*
 * libkmipclient - KMIP client library
 *
 * Copyright IBM Corp. 2021
 *
 * s390-tools is free software; you can redistribute it and/or modify
 * it under the terms of the MIT license. See LICENSE for details.
 */

#define _XOPEN_SOURCE
#define _DEFAULT_SOURCE

#include <errno.h>
#include <stdarg.h>

#include "kmip.h"

/**
 * Gets the version information from a Protocol Version node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Protocol Version                        Structure     v1.0
 *     Protocol Version Major      Yes       Integer       v1.0
 *     Protocol Version Minor      Yes       Integer       v1.0
 *
 * @param node              the KMIP node
 * @param version           On return: the protocol version
 *
 * @returns 0 on success, or a negative errno in case of an error
 */
int kmip_get_protocol_version(const struct kmip_node *node,
			      struct kmip_version *version)
{
	struct kmip_node *maj, *min;
	int rc = 0;

	if (node == NULL || version == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_PROTOCOL_VERSION)
		return -EBADMSG;

	maj = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_PROTOCOL_VERSION_MAJOR, 0);
	min = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_PROTOCOL_VERSION_MINOR, 0);
	if (maj == NULL || min == NULL) {
		rc = -EBADMSG;
		goto out;
	}

	version->major = kmip_node_get_integer(maj);
	version->minor = kmip_node_get_integer(min);

out:
	kmip_node_free(maj);
	kmip_node_free(min);

	return rc;
}

/**
 * Gets the version information from a Profile Version node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Profile Version                         Structure     v1.0
 *     Profile Version Major       Yes       Integer       v1.0
 *     Profile Version Minor       Yes       Integer       v1.0
 *
 * @param node              the KMIP node
 * @param version           On return: the profile version
 *
 * @returns 0 on success, or a negative errno in case of an error
 */
int kmip_get_profile_version(const struct kmip_node *node,
			     struct kmip_version *version)
{
	struct kmip_node *maj, *min;
	int rc = 0;

	if (node == NULL || version == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_PROFILE_VERSION)
		return -EBADMSG;

	maj = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_PROFILE_VERSION_MAJOR, 0);
	min = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_PROFILE_VERSION_MINOR, 0);
	if (maj == NULL || min == NULL) {
		rc = -EBADMSG;
		goto out;
	}

	version->major = kmip_node_get_integer(maj);
	version->minor = kmip_node_get_integer(min);

out:
	kmip_node_free(maj);
	kmip_node_free(min);

	return rc;
}

/**
 * Gets information from a Response Header node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Response Header               Yes       Structure     v1.0
 *     Protocol Version            Yes       Structure     v1.0
 *     Time Stamp                  No        Date Time     v1.0
 *     Nonce                       No        Structure     v1.2
 *     Server Hashed Password      No        Byte String   v2.0
 *     Attestation Type            No        Enumeration   v1.2
 *        ... may be repeated
 *     Client Correlation Value    No        Text String   v1.4
 *     Server Correlation Value    No        Text String   v1.4
 *     Batch Count                 Yes       Integer       v1.0
 *
 * @param node              the KMIP node
 * @param version           the protocol version (can be NULL)
 * @param time_stamp        the time stamp (can be NULL)
 * @param client_corr_value the client correlation value. Can be NULL.
 * @param server_corr_value the server correlation value. Can be NULL.
 * @param batch_count       the batch count (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned node is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_response_header(const struct kmip_node *node,
			     struct kmip_version *version,
			     int64_t *time_stamp,
			     const char **client_corr_value,
			     const char **server_corr_value,
			     int32_t *batch_count)
{
	struct kmip_node *n;
	int rc;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_HEADER)
		return -EBADMSG;

	if (time_stamp != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_TIME_STAMP, 0);
		if (n == NULL)
			return -EBADMSG;
		*time_stamp = kmip_node_get_date_time(n);
		kmip_node_free(n);
	}

	if (batch_count != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_BATCH_COUNT, 0);
		if (n == NULL)
			return -EBADMSG;
		*batch_count = kmip_node_get_integer(n);
		kmip_node_free(n);
	}

	if (version != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_PROTOCOL_VERSION, 0);
		if (n == NULL)
			return -EBADMSG;
		rc = kmip_get_protocol_version(n, version);
		kmip_node_free(n);
		if (rc != 0)
			return rc;
	}

	if (client_corr_value != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_CLIENT_CORRELATION_VALUE, 0);
		if (n == NULL)
			return -EBADMSG;
		*client_corr_value = kmip_node_get_text_string(n);
		kmip_node_free(n);
	}

	if (server_corr_value != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_SERVER_CORRELATION_VALUE, 0);
		if (n == NULL)
			return -EBADMSG;
		*server_corr_value = kmip_node_get_text_string(n);
		kmip_node_free(n);
	}

	return 0;
}

/**
 * Gets information from a Response Batch Item node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Batch Item                    Yes       Structure     v1.0
 *     Operation                   Yes       Enumeration   v1.0
 *     Unique Batch Item ID        No        Byte String   v1.0
 *     Result Status               Yes       Enumeration   v1.0
 *     Result Reason               No/Yes    Enumeration   v1.0
 *     Result Message              No/Yes    Text String   v1.0
 *     Asynchronous Correl. Value  No/Yes    Byte String   v1.0
 *     Response Payload            Yes       Structure     v1.0
 *     Message Extension           No        Structure     v1.0
 *
 * @param node              the KMIP node
 * @param operation         the operation (can be NULL)
 * @param batch_id          the batch ID (can be NULL)
 * @param batch_id_length   the batch ID length (can be NULL)
 * @param status            the result status (can be NULL)
 * @param reason            the result reason (can be NULL)
 * @param message           the result message (can be NULL)
 * @param async_corr_value  the asynchronous correlation value (can be NULL)
 * @param async_corr_value_len the length if the async corr. value (can be NULL)
 * @param payload           the response payload (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned node is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_response_batch_item(const struct kmip_node *node,
				 enum kmip_operation *operation,
				 const unsigned char **batch_id,
				 uint32_t *batch_id_length,
				 enum kmip_result_status *status,
				 enum kmip_result_reason *reason,
				 const char **message,
				 const unsigned char **async_corr_value,
				 uint32_t *async_corr_value_len,
				 struct kmip_node **payload)
{
	struct kmip_node *n;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_BATCH_ITEM)
		return -EBADMSG;

	if (operation != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_OPERATION, 0);
		if (n == NULL)
			return -EBADMSG;
		*operation = kmip_node_get_enumeration(n);
		kmip_node_free(n);
	}

	if (batch_id != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_UNIQUE_BATCH_ITEM_ID, 0);
		if (n == NULL) {
			*batch_id = NULL;
			if (batch_id_length != NULL)
				*batch_id_length = 0;
		} else {
			*batch_id = kmip_node_get_byte_string(n,
							      batch_id_length);
			kmip_node_free(n);
		}
	}

	if (status != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_RESULT_STATUS, 0);
		if (n == NULL)
			return -EBADMSG;
		*status = kmip_node_get_enumeration(n);
		kmip_node_free(n);
	}

	if (reason != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_RESULT_REASON, 0);
		*reason = (n == NULL ? 0 : kmip_node_get_enumeration(n));
		kmip_node_free(n);
	}

	if (message != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_RESULT_MESSAGE, 0);
		*message = (n == NULL ? NULL :
					kmip_node_get_text_string(n));
		kmip_node_free(n);
	}

	if (async_corr_value != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_ASYNCHRONOUS_CORRELATION_VALUE,
					0);
		if (n != NULL) {
			*async_corr_value = kmip_node_get_byte_string(n,
							async_corr_value_len);
		} else {
			*async_corr_value = NULL;
			if (async_corr_value_len != NULL)
				*async_corr_value_len = 0;
		}
		kmip_node_free(n);
	}

	if (payload != NULL)
		*payload = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_RESPONSE_PAYLOAD, 0);

	return 0;
}

/**
 * Gets information from a Response Message node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Response Message              Yes       Structure     v1.0
 *     Response Header             Yes       Structure     v1.0
 *     Batch Item                  Yes       Structure     v1.0
 *     ... may be repeated
 *
 * @param node              the KMIP node
 * @param response_header   the response header (can be NULL)
 * @param batch_index       the index of the response batch item to return
 * @param batch_item        the batch item (can be NULL)

 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_response(const struct kmip_node *node,
		      struct kmip_node **response_header,
		      unsigned int batch_index,
		      struct kmip_node **batch_item)
{
	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_MESSAGE)
		return -EBADMSG;

	if (response_header != NULL) {
		*response_header = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_RESPONSE_HEADER, 0);
		if (*response_header == NULL)
			return -EBADMSG;
	}

	if (batch_item != NULL)
		*batch_item = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_BATCH_ITEM,
						batch_index);

	return 0;
}

struct kmip_query_info {
	enum kmip_query_function query_function;
	enum kmip_tag result_tag;

};

static const struct kmip_query_info query_info[] = {
	{ .query_function = KMIP_QUERY_OPERATIONS,
			.result_tag = KMIP_TAG_OPERATION, },
	{ .query_function = KMIP_QUERY_OBJECTS,
			.result_tag = KMIP_TAG_OBJECT_TYPE, },
	{ .query_function = KMIP_QUERY_SERVER_INFORMATION,
			.result_tag = KMIP_TAG_VENDOR_IDENTIFICATION, },
	{ .query_function = KMIP_QUERY_SERVER_INFORMATION,
			.result_tag = KMIP_TAG_SERVER_INFORMATION, },
	{ .query_function = KMIP_QUERY_APPLICATION_NAMESPACES,
			.result_tag = KMIP_TAG_APPLICATION_NAMESPACE, },
	{ .query_function = KMIP_QUERY_EXTENSION_LIST,
			.result_tag = KMIP_TAG_EXTENSION_INFORMATION, },
	{ .query_function = KMIP_QUERY_EXTENSION_MAP,
			.result_tag = KMIP_TAG_EXTENSION_INFORMATION, },
	{ .query_function = KMIP_QUERY_ATTESTATION_TYPES,
			.result_tag = KMIP_TAG_ATTESTATION_TYPE, },
	{ .query_function = KMIP_QUERY_QUERY_RNGS,
			.result_tag = KMIP_TAG_RNG_PARAMETERS, },
	{ .query_function = KMIP_QUERY_VALIDATIONS,
			.result_tag = KMIP_TAG_VALIDATION_INFORMATION, },
	{ .query_function = KMIP_QUERY_PROFILES,
			.result_tag = KMIP_TAG_PROFILE_INFORMATION, },
	{ .query_function = KMIP_QUERY_CAPABILITIES,
			.result_tag = KMIP_TAG_CAPABILITY_INFORMATION, },
	{ .query_function = KMIP_QUERY_CLIENT_REGISTRATION_METHODS,
			.result_tag = KMIP_TAG_CLIENT_REGISTRATION_METHOD, },
	{ .query_function = KMIP_QUERY_DEFAULTS_INFORMATION,
			.result_tag = KMIP_TAG_DEFAULTS_INFORMATION, },
	{ .query_function = KMIP_QUERY_STORAGE_PROTECTION_MASKS,
			.result_tag = KMIP_TAG_PROTECTION_STORAGE_MASKS, },
	{ .query_function = 0, .result_tag = 0, },
};

/**
 * Gets information from a Query response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Operation                   No        Enumeration   v1.0
 *        ... may be repeated
 *     Object Type                 No        Enumeration   v1.0
 *        ... may be repeated
 *     Vendor Identification       No        Text String   v1.0
 *     Server Information          No        Structure     v1.0
 *     Application Namespace       No        Text String   v1.0
 *        ... may be repeated
 *     Extension Information       No        Structure     v1.2
 *        ... may be repeated
 *     Attestation Type            No        Enumeration   v1.2
 *        ... may be repeated
 *     RNG Parameters              No        Structure     v1.3
 *        ... may be repeated
 *     Profile Information         No        Structure     v1.3
 *        ... may be repeated
 *     Validation Information      No        Structure     v1.3
 *        ... may be repeated
 *     Capability Information      No        Structure     v1.3
 *        ... may be repeated
 *     Client Registration Method  No        Enumeration   v1.3
 *        ... may be repeated
 *     Defaults Information        No        Structure     v2.0
 *     Protection Storage Masks    No        Structure     v2.0
 *
 * @param node              the KMIP node
 * @param query_function    the query function to get the results for
 * @param num_results       On return: the number of result items of the
 *                          specified query function (can be NULL).
 * @param result_index      the index of the query result item to return
 * @param result            On return: the query result item of the specified
 *                          query function and index. Function returns -ENOENT
 *                          if no result is available. Can be NULL.
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned node is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_query_response_payload(const struct kmip_node *node,
				    enum kmip_query_function query_function,
				    unsigned int *num_results,
				    unsigned int result_index,
				    struct kmip_node **result)
{
	enum kmip_tag result_tag = 0;
	unsigned int i;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_PAYLOAD)
		return -EBADMSG;

	for (i = 0; query_info[i].query_function != 0; i++) {
		if (query_info[i].query_function == query_function) {
			result_tag = query_info[i].result_tag;
			break;
		}
	}
	if (result_tag == 0)
		return -EBADMSG;

	if (num_results != NULL) {
		*num_results = kmip_node_get_structure_element_by_tag_count(
							node, result_tag);

		/*
		 * KMIP_QUERY_SERVER_INFORMATION may return 2 different result
		 * tags, count both of them.
		 */
		if (query_function == KMIP_QUERY_SERVER_INFORMATION) {
			*num_results +=
				kmip_node_get_structure_element_by_tag_count(
					node, KMIP_TAG_SERVER_INFORMATION);
		}
	}

	if (result == NULL)
		return 0;

	*result = kmip_node_get_structure_element_by_tag(node, result_tag,
							 result_index);
	if (*result == NULL) {
		/*
		 * KMIP_QUERY_SERVER_INFORMATION may return 2 different result
		 * tags, return both of them.
		 */
		if (query_function == KMIP_QUERY_SERVER_INFORMATION) {
			if (result_index > 0)
				result_index -= 1;
			*result = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_SERVER_INFORMATION,
						result_index);
			if (*result != NULL)
				return 0;
		}

		return -ENOENT;
	}

	return 0;
}

/**
 * Gets information from a Discover Versions response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Protocol Version            No        Structure     v1.2
 *        ... may be repeated
 *
 * @param node              the KMIP node
 * @param num_versions      On return: the number of versions (can be NULL)
 * @param index             the index of the version item to return
 * @param version           On return: the version item of the specified
 *                          index. Function returns -ENOENT if no version is
 *                          available at that index. (can be NULL).
 *
 * @returns 0 on success, or a negative errno in case of an error.
 */
int kmip_get_discover_versions_response_payload(const struct kmip_node *node,
						unsigned int *num_versions,
						unsigned int index,
						struct kmip_version *version)
{
	struct kmip_node *n;
	int rc;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_PAYLOAD)
		return -EBADMSG;

	if (num_versions != NULL)
		*num_versions = kmip_node_get_structure_element_count(node);

	if (version == NULL)
		return 0;

	n = kmip_node_get_structure_element_by_index(node, index);
	if (n == NULL)
		return -ENOENT;
	rc = kmip_get_protocol_version(n, version);
	kmip_node_free(n);

	return rc;
}

/**
 * Gets information from a Create response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Object Type                 Yes       Enumeration   v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     Template-Attribute          No        Structure     v1.x only
 *
 *
 * @param node              the KMIP node
 * @param obj_type          the object type of the created object (can be NULL)
 * @param unique_id         the unique id node (can be NULL)
 * @param num_attrs         On return: the number of attributes (can be NULL).
 * @param attr_index        the index of the attribute to get
 * @param attributes        the attribute (implicitly set by the server) at the
 *                          specified index (as v2.x attributes) (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_create_response_payload(const struct kmip_node *node,
				     enum kmip_object_type *obj_type,
				     struct kmip_node **unique_id,
				     unsigned int *num_attrs,
				     unsigned int attr_index,
				     struct kmip_node **attribute)
{
	struct kmip_node *n;
	int rc;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_PAYLOAD)
		return -EBADMSG;

	if (obj_type != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
							   KMIP_TAG_OBJECT_TYPE,
							   0);
		if (n == NULL)
			return -EBADMSG;
		*obj_type = kmip_node_get_enumeration(n);
		kmip_node_free(n);
	}

	if (unique_id != NULL)
		*unique_id = kmip_node_get_structure_element_by_tag(
					node, KMIP_TAG_UNIQUE_IDENTIFIER, 0);

	if (attribute == NULL && num_attrs == NULL)
		return 0;

	n = kmip_node_get_structure_element_by_tag(node,
						   KMIP_TAG_TEMPLATE_ATTRIBUTE,
						   0);
	if (n == NULL) {
		if (num_attrs != NULL)
			*num_attrs = 0;

		if (attribute == NULL)
			return 0;

		rc = -ENOENT;
		goto error;
	}

	rc = kmip_get_attributes(n, num_attrs, attr_index, attribute);
	kmip_node_free(n);
	if (rc != 0)
		goto error;

	return 0;

error:
	if (unique_id != NULL) {
		kmip_node_free(*unique_id);
		*unique_id = NULL;
	}
	return rc;
}

/**
 * Gets information from a Get Attribute List response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     Attribute Name              Yes       Text String   v1.x only
 *     ... may be repeated
 *     Attribute Reference         Yes       Enumeration   v2.x only
 *                                           Structure     v2.x only
 *     ... may be repeated
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 * @param num_attr_refs     On return: the number of attribute references
 *                          (can be NULL).
 * @param index             the index of the attribute reference to get
 * @param attr_ref          the attribute (as v2.x attribute reference) at the
 *                          specified index. Function returns -ENOENT if no
 *                          attribute is available at the index.
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_get_attribute_list_response_payload(const struct kmip_node *node,
						 struct kmip_node **unique_id,
						 unsigned int *num_attr_refs,
						 unsigned int index,
						 struct kmip_node **attr_ref)
{
	struct kmip_node *n;
	int rc;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_PAYLOAD)
		return -EBADMSG;

	if (unique_id != NULL)
		*unique_id = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_UNIQUE_IDENTIFIER, 0);

	if (num_attr_refs != NULL)
		*num_attr_refs =
			kmip_node_get_structure_element_count(node) - 1;

	if (attr_ref == NULL)
		return 0;

	n = kmip_node_get_structure_element_by_index(node, index + 1);
	if (n == NULL) {
		if (unique_id != NULL) {
			kmip_node_free(*unique_id);
			*unique_id = NULL;
		}
		return -ENOENT;
	}

	if (kmip_node_get_tag(n) == KMIP_TAG_ATTRIBUTE_REFERENCE) {
		/* Its already a KMIP v2.x attribute reference */
		*attr_ref = n;
		return 0;
	}

	/* Must be a KMIP v1.x attribute name then */
	rc = kmip_get_attribute_name_v1(n, attr_ref);
	kmip_node_free(n);
	if (rc != 0) {
		if (unique_id != NULL) {
			kmip_node_free(*unique_id);
			*unique_id = NULL;
		}
		return rc;
	}

	return 0;
}

/**
 * Gets information from a Get Attributes response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     Attribute                   No        Structure     v1.x only
 *     ... may be repeated
 *     Attributes                  Yes       Structure     v2.x only
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 * @param num_attrs         On return: the number of attributes (can be NULL).
 * @param index             the index of the attribute to get
 * @param v2_attr           the attribute (as v2.x attribute) at the
 *                          specified index. Function returns -ENOENT if no
 *                          attribute is available at the index.
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_get_attributes_response_payload(const struct kmip_node *node,
					     struct kmip_node **unique_id,
					     unsigned int *num_attrs,
					     unsigned int index,
					     struct kmip_node **v2_attr)
{
	struct kmip_node *attr;
	int rc;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_PAYLOAD)
		return -EBADMSG;

	if (unique_id != NULL)
		*unique_id = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_UNIQUE_IDENTIFIER, 0);

	if (v2_attr == NULL && num_attrs == NULL)
		return 0;

	attr = kmip_node_get_structure_element_by_index(node, 1);
	if (attr == NULL) {
		if (num_attrs != NULL)
			*num_attrs = 0;

		if (v2_attr == NULL)
			return 0;

		rc = -ENOENT;
		goto error;
	}

	if (kmip_node_get_tag(attr) == KMIP_TAG_ATTRIBUTES) {
		/* Its already a KMIP v2.x attributes structure */
		rc = kmip_get_attributes(attr, num_attrs, index, v2_attr);
		kmip_node_free(attr);
		if (rc != 0)
			goto error;
		return 0;
	}

	/* Must be a KMIP v1.x attribute then */
	kmip_node_free(attr);

	if (num_attrs != NULL)
		*num_attrs = kmip_node_get_structure_element_count(node) - 1;

	if (v2_attr == NULL)
		return 0;

	attr = kmip_node_get_structure_element_by_index(node, index + 1);
	if (attr == NULL) {
		rc = -ENOENT;
		goto error;
	}

	rc = kmip_v2_attr_from_v1_attr(attr, v2_attr);
	kmip_node_free(attr);
	if (rc != 0)
		goto error;

	return 0;

error:
	if (unique_id != NULL) {
		kmip_node_free(*unique_id);
		*unique_id = NULL;
	}

	return rc;
}

/**
 * Gets information from a response payload node that include a unique id and
 * an attribute.
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     Attribute                   Yes       Structure     v1.x only
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 * @param v2_attr           the added attribute (as v2.x attribute).
 *                          For KMIP v1.y no attribute is returned.
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
static int kmip_get_unique_id_attribute_response_payload(
						const struct kmip_node *node,
						struct kmip_node **unique_id,
						struct kmip_node **v2_attr)
{
	struct kmip_node *attr;
	int rc;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_PAYLOAD)
		return -EBADMSG;

	if (unique_id != NULL)
		*unique_id = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_UNIQUE_IDENTIFIER, 0);

	if (v2_attr == NULL)
		return 0;

	/* KMIP v2.x does not send a attribute in the reply, but v1.x does */
	attr = kmip_node_get_structure_element_by_tag(node, KMIP_TAG_ATTRIBUTE,
						      0);
	if (attr == NULL) {

		*v2_attr = NULL;
		return 0;
	}

	rc = kmip_v2_attr_from_v1_attr(attr, v2_attr);
	kmip_node_free(attr);
	if (rc != 0)
		goto error;

	return 0;

error:
	if (unique_id != NULL) {
		kmip_node_free(*unique_id);
		*unique_id = NULL;
	}

	return rc;
}


/**
 * Gets information from a Add Attribute response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     Attribute                   Yes       Structure     v1.x only
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 * @param v2_attr           the added attribute (as v2.x attribute).
 *                          For KMIP v1.y no attribute is returned.
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_add_attribute_response_payload(const struct kmip_node *node,
					     struct kmip_node **unique_id,
					     struct kmip_node **v2_attr)
{
	return kmip_get_unique_id_attribute_response_payload(node, unique_id,
							     v2_attr);
}

/**
 * Gets information from a Modify Attribute response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     Attribute                   Yes       Structure     v1.x only
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 * @param v2_attr           the modified attribute (as v2.x attribute).
 *                          For KMIP v1.y no attribute is returned.
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_modify_attribute_response_payload(const struct kmip_node *node,
					       struct kmip_node **unique_id,
					       struct kmip_node **v2_attr)
{
	return kmip_get_unique_id_attribute_response_payload(node, unique_id,
							     v2_attr);
}

/**
 * Gets information from a Set Attribute response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *
 * KMIP v1.x does not have a Set Attribute operation.
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_set_attribute_v2_response_payload(const struct kmip_node *node,
					       struct kmip_node **unique_id)
{
	return kmip_get_unique_id_attribute_response_payload(node, unique_id,
							     NULL);
}

/**
 * Gets information from a Delete Attribute response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     Attribute                   Yes       Structure     v1.x only
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 * @param v2_attr           the modified attribute (as v2.x attribute).
 *                          For KMIP v1.y no attribute is returned.
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_delete_attribute_response_payload(const struct kmip_node *node,
					       struct kmip_node **unique_id,
					       struct kmip_node **v2_attr)
{
	return kmip_get_unique_id_attribute_response_payload(node, unique_id,
							     v2_attr);
}

/**
 * Gets information from a response payload node that only includes a unique id:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
static int kmip_get_unique_id_response_payload(const struct kmip_node *node,
					       struct kmip_node **unique_id)
{
	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_PAYLOAD)
		return -EBADMSG;

	if (unique_id != NULL)
		*unique_id = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_UNIQUE_IDENTIFIER, 0);

	return 0;
}

/**
 * Gets information from a Activate response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_activate_response_payload(const struct kmip_node *node,
				       struct kmip_node **unique_id)
{
	return kmip_get_unique_id_response_payload(node, unique_id);
}

/**
 * Gets information from a Destroy response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_destroy_response_payload(const struct kmip_node *node,
				      struct kmip_node **unique_id)
{
	return kmip_get_unique_id_response_payload(node, unique_id);
}

/**
 * Gets information from a Archive response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_archive_response_payload(const struct kmip_node *node,
				      struct kmip_node **unique_id)
{
	return kmip_get_unique_id_response_payload(node, unique_id);
}

/**
 * Gets information from a Recover response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_recover_response_payload(const struct kmip_node *node,
				      struct kmip_node **unique_id)
{
	return kmip_get_unique_id_response_payload(node, unique_id);
}

/**
 * Gets information from a Revoke response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *
 * @param node              the KMIP node
 * @param unique_id         the unique id node (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_revoke_response_payload(const struct kmip_node *node,
				     struct kmip_node **unique_id)
{
	return kmip_get_unique_id_response_payload(node, unique_id);
}

/**
 * Gets information from a Locate response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Located Items               No        Integer       v2.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     ... may be repated
 *
 * @param node              the KMIP node
 * @param located_items     On return: the total number of located items.
 *                          Only available since KMIP v2.x. If not available,
 *                          it is returned as -1. May be NULL.
 * @param num_items         On return: the returned number of located items.
 *                          May be NULL.
 * @param index             The index of the returned item.
 * @param unique_id         the unique id node at the specified index.
 *                          Function returns -ENOENT if no item is available at
 *                          the index. May be NULL.
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_locate_response_payload(const struct kmip_node *node,
				     int32_t *located_items,
				     unsigned int *num_items,
				     unsigned int index,
				     struct kmip_node **unique_id)
{
	struct kmip_node *n;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_PAYLOAD)
		return -EBADMSG;

	if (located_items != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_LOCATED_ITEMS, 0);
		*located_items = (n != NULL ? kmip_node_get_integer(n) : -1);
		kmip_node_free(n);
	}

	if (num_items != NULL)
		*num_items = kmip_node_get_structure_element_by_tag_count(node,
						KMIP_TAG_UNIQUE_IDENTIFIER);

	if (unique_id != NULL) {
		*unique_id = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_UNIQUE_IDENTIFIER, index);
		if (*unique_id == NULL)
			return -ENOENT;
	}

	return 0;
}

/**
 * Gets information from a Register response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     Template-Attribute          No        Structure     v1.x only
 *
 *
 * @param node              the KMIP node
 * @param obj_type          the object type of the created object (can be NULL)
 * @param unique_id         the unique id node (can be NULL)
 * @param num_attrs         On return: the number of attributes (can be NULL).
 * @param attr_index        the index of the attribute to get
 * @param attributes        the attribute (implicitly set by the server) at the
 *                          specified index (as v2.x attributes) (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_register_response_payload(const struct kmip_node *node,
				       struct kmip_node **unique_id,
				       unsigned int *num_attrs,
				       unsigned int attr_index,
				       struct kmip_node **attribute)
{
	struct kmip_node *attrs;
	int rc;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_PAYLOAD)
		return -EBADMSG;

	if (unique_id != NULL)
		*unique_id = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_UNIQUE_IDENTIFIER, 0);

	if (attribute == NULL && num_attrs == NULL)
		return 0;

	attrs = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_TEMPLATE_ATTRIBUTE, 0);
	if (attrs == NULL) {
		if (num_attrs != NULL)
			*num_attrs = 0;

		if (attribute == NULL)
			return 0;

		rc = -ENOENT;
		goto error;
	}

	rc = kmip_get_attributes(attrs, num_attrs, attr_index, attribute);
	kmip_node_free(attrs);
	if (rc != 0)
		goto error;

	return 0;

error:
	if (unique_id != NULL) {
		kmip_node_free(*unique_id);
		*unique_id = NULL;
	}
	return rc;
}

/**
 * Gets information from a Get response payload node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Payload                       Yes       Structure     v1.0
 *     Object Type                 Yes       Enumeration   v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     <any object>                Yes       Structure     v1.0
 *
 * @param node              the KMIP node
 * @param obj_type          the object type of the created object (can be NULL)
 * @param unique_id         the unique id node (can be NULL)
 * @param object            the object (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_get_response_payload(const struct kmip_node *node,
				     enum kmip_object_type *obj_type,
				     struct kmip_node **unique_id,
				     struct kmip_node **object)
{
	struct kmip_node *n;
	int rc = 0;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_RESPONSE_PAYLOAD)
		return -EBADMSG;

	if (obj_type != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
							   KMIP_TAG_OBJECT_TYPE,
							   0);
		if (n == NULL)
			return -EBADMSG;
		*obj_type = kmip_node_get_enumeration(n);
		kmip_node_free(n);
	}

	if (unique_id != NULL) {
		*unique_id = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_UNIQUE_IDENTIFIER, 0);
		if (*unique_id == NULL)
			return -EBADMSG;
	}

	if (object == NULL)
		return 0;

	*object = kmip_node_get_structure_element_by_index(node, 2);
	if (*object == NULL) {
		rc = -EBADMSG;
		goto error;
	}

	switch (kmip_node_get_tag(*object)) {
	case KMIP_TAG_CERTIFICATE:
	case KMIP_TAG_CERTIFICATE_REQUEST:
	case KMIP_TAG_OPAQUE_OBJECT:
	case KMIP_TAG_PGP_KEY:
	case KMIP_TAG_PRIVATE_KEY:
	case KMIP_TAG_PUBLIC_KEY:
	case KMIP_TAG_SECRET_DATA:
	case KMIP_TAG_SYMMETRIC_KEY:
		break;
	default:
		kmip_node_free(*object);
		*object = NULL;
		rc = -EBADMSG;
		goto error;
	}

	return 0;

error:
	if (unique_id != NULL && *unique_id != NULL) {
		kmip_node_free(*unique_id);
		*unique_id = NULL;
	}
	return rc;
}