aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-stun.c
blob: f253ef2ce785d094521854044562604d5d67781b (plain)
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
/* packet-stun.c
 * Routines for Session Traversal Utilities for NAT (STUN) dissection
 * Copyright 2003, Shiang-Ming Huang <smhuang@pcs.csie.nctu.edu.tw>
 * Copyright 2006, Marc Petit-Huguenin <marc@petit-huguenin.org>
 * Copyright 2007-2008, 8x8 Inc. <petithug@8x8.com>
 * Copyright 2008, Gael Breard <gael@breard.org>
 *
 * $Id$
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 * Please refer to the following specs for protocol detail:
 * - RFC 5389, formerly draft-ietf-behave-rfc3489bis-18
 * - RFC 5245, formerly draft-ietf-mmusic-ice-19
 * - RFC 5780, formerly draft-ietf-behave-nat-behavior-discovery-08
 * - RFC 5766, formerly draft-ietf-behave-turn-16
 * - draft-ietf-behave-turn-ipv6-11
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include <glib.h>

#include <epan/packet.h>
#include <epan/conversation.h>
#include <epan/ipproto.h>
#include <packet-tcp.h>
#include <packet-udp.h>

/* heuristic subdissectors */
static heur_dissector_list_t heur_subdissector_list;

/* data dissector handle */
static dissector_handle_t data_handle;

/* Initialize the protocol and registered fields */
static int proto_stun = -1;

static int hf_stun_channel = -1;

static int hf_stun_type = -1;
static int hf_stun_type_class = -1;
static int hf_stun_type_method = -1;
static int hf_stun_type_method_assignment = -1;
static int hf_stun_length = -1;
static int hf_stun_cookie = -1;
static int hf_stun_id = -1;
static int hf_stun_attributes = -1;
static int hf_stun_response_in = -1;
static int hf_stun_response_to = -1;
static int hf_stun_time = -1;
static int hf_stun_duplicate = -1;
static int hf_stun_attr = -1;

static int stun_att_type = -1;		/* STUN attribute fields */
static int stun_att_length = -1;
static int stun_att_family = -1;
static int stun_att_type_comprehension = -1;
static int stun_att_type_assignment = -1;
static int stun_att_ipv4 = -1;
static int stun_att_ipv6 = -1;
static int stun_att_port = -1;
static int stun_att_username = -1;
static int stun_att_padding = -1;
static int stun_att_hmac = -1;
static int stun_att_crc32 = -1;
static int stun_att_error_class = -1;
static int stun_att_error_number = -1;
static int stun_att_error_reason = -1;
static int stun_att_realm = -1;
static int stun_att_nonce = -1;
static int stun_att_unknown = -1;
static int stun_att_xor_ipv4 = -1;
static int stun_att_xor_ipv6 = -1;
static int stun_att_xor_port = -1;
static int stun_att_icmp_type = -1;
static int stun_att_icmp_code = -1;
static int stun_att_software = -1;
static int stun_att_priority = -1;
static int stun_att_tie_breaker = -1;
static int stun_att_change_ip = -1;
static int stun_att_change_port = -1;
static int stun_att_cache_timeout = -1;
static int stun_att_token = -1;
static int stun_att_reserve_next = -1;
static int stun_att_reserved = -1;
static int stun_att_value = -1;
static int stun_att_transp = -1;
static int stun_att_bandwidth = -1;
static int stun_att_lifetime = -1;
static int stun_att_channelnum = -1;


/* Structure containing transaction specific information */
typedef struct _stun_transaction_t {
	guint32 req_frame;
	guint32 rep_frame;
	nstime_t req_time;
} stun_transaction_t;

/* Structure containing conversation specific information */
typedef struct _stun_conv_info_t {
	emem_tree_t *transaction_pdus;
} stun_conv_info_t;


/* Message classes */
#define REQUEST		0x0000
#define INDICATION	0x0001
#define RESPONSE	0x0002
#define ERROR_RESPONSE	0x0003


/* Methods */
#define BINDING			0x0001	/* draft-ietf-behave-rfc3489bis-17 */
#define ALLOCATE		0x0003  /* draft-ietf-behave-turn-10*/
#define REFRESH			0x0004  /* draft-ietf-behave-turn-10*/
#define CHANNELBIND		0x0009  /* draft-ietf-behave-turn-10*/
#define CREATE_PERMISSION	0x0008	/* draft-ietf-behave-turn-10 */
/* Indications */
#define SEND			0x0006  /* draft-ietf-behave-turn-10*/
#define DATA_IND		0x0007  /* draft-ietf-behave-turn-10*/


/* Attribute Types */
/* Comprehension-required range (0x0000-0x7FFF) */
#define MAPPED_ADDRESS		0x0001	/* draft-ietf-behave-rfc3489bis-17 */
#define CHANGE_REQUEST		0x0003	/* draft-ietf-behave-nat-behavior-discovery-03 */
#define USERNAME		0x0006	/* draft-ietf-behave-rfc3489bis-17 */
#define MESSAGE_INTEGRITY	0x0008	/* draft-ietf-behave-rfc3489bis-17 */
#define ERROR_CODE		0x0009	/* draft-ietf-behave-rfc3489bis-17 */
#define UNKNOWN_ATTRIBUTES	0x000a	/* draft-ietf-behave-rfc3489bis-17 */
#define CHANNEL_NUMBER		0x000c	/* draft-ietf-behave-turn-10 */
#define LIFETIME		0x000d	/* draft-ietf-behave-turn-10 */
#define BANDWIDTH		0x0010  /* turn-07 */
#define XOR_PEER_ADDRESS	0x0012	/* draft-ietf-behave-turn-10 */
#define DATA			0x0013	/* draft-ietf-behave-turn-10 */
#define REALM			0x0014	/* draft-ietf-behave-rfc3489bis-17 */
#define NONCE			0x0015	/* draft-ietf-behave-rfc3489bis-17 */
#define XOR_RELAYED_ADDRESS	0x0016	/* draft-ietf-behave-turn-10 */
#define REQUESTED_ADDRESS_TYPE	0x0017	/* draft-ietf-behave-turn-ipv6-03 */
#define EVEN_PORT		0x0018	/* draft-ietf-behave-turn-10 */
#define REQUESTED_TRANSPORT	0x0019	/* draft-ietf-behave-turn-10 */
#define DONT_FRAGMENT		0x001a	/* draft-ietf-behave-turn-10 */
#define XOR_MAPPED_ADDRESS	0x0020	/* draft-ietf-behave-rfc3489bis-17 */
#define RESERVATION_TOKEN	0x0022	/* draft-ietf-behave-turn-10 */
#define PRIORITY		0x0024	/* draft-ietf-mmusic-ice-19 */
#define USE_CANDIDATE		0x0025	/* draft-ietf-mmusic-ice-19 */
#define PADDING			0x0026	/* draft-ietf-behave-nat-behavior-discovery-03 */
#define XOR_RESPONSE_TARGET	0x0027	/* draft-ietf-behave-nat-behavior-discovery-03 */
#define XOR_REFLECTED_FROM	0x0028	/* draft-ietf-behave-nat-behavior-discovery-03 */
#define ICMP			0x0030	/* Moved from TURN to a future I-D */
/* Comprehension-optional range (0x8000-0xFFFF) */
#define SOFTWARE		0x8022	/* draft-ietf-behave-rfc3489bis-17 */
#define ALTERNATE_SERVER	0x8023	/* draft-ietf-behave-rfc3489bis-17 */
#define CACHE_TIMEOUT		0x8027	/* draft-ietf-behave-nat-behavior-discovery-03 */
#define FINGERPRINT		0x8028	/* draft-ietf-behave-rfc3489bis-17 */
#define ICE_CONTROLLED		0x8029	/* draft-ietf-mmusic-ice-19 */
#define ICE_CONTROLLING		0x802a	/* draft-ietf-mmusic-ice-19 */
#define RESPONSE_ORIGIN		0x802b	/* draft-ietf-behave-nat-behavior-discovery-03 */
#define OTHER_ADDRESS		0x802c	/* draft-ietf-behave-nat-behavior-discovery-03 */


/* Initialize the subtree pointers */
static gint ett_stun = -1;
static gint ett_stun_type = -1;
static gint ett_stun_att_all= -1;
static gint ett_stun_att = -1;
static gint ett_stun_att_type = -1;

#define UDP_PORT_STUN 	3478
#define TCP_PORT_STUN	3478

#define STUN_HDR_LEN		       20	/* STUN message header length */
#define ATTR_HDR_LEN			4	/* STUN attribute header length */
#define CHANNEL_DATA_HDR_LEN		4	/* TURN CHANNEL-DATA Message hdr length */
#define MIN_HDR_LEN			4

static const value_string transportnames[] = {
	{ 17, "UDP" },
	{  6, "TCP" },
	{  0, NULL }
};

static const value_string classes[] = {
	{REQUEST       , "Request"},
	{INDICATION    , "Indication"},
	{RESPONSE      , "Success Response"},
	{ERROR_RESPONSE, "Error Response"},
	{0x00          , NULL}
};

static const value_string methods[] = {
	{BINDING	  , "Binding"},
	{ALLOCATE	  , "Allocate"},
	{REFRESH	  , "Refresh"},
	{CHANNELBIND	  , "Channel-Bind"},
	{SEND		  , "Send"},
	{DATA_IND	  , "Data"},
	{CREATE_PERMISSION, "CreatePermission"},
	{0x00		  , NULL}
};



static const value_string attributes[] = {
	{MAPPED_ADDRESS        , "MAPPED-ADDRESS"},
	{CHANGE_REQUEST        , "CHANGE_REQUEST"},
	{USERNAME              , "USERNAME"},
	{MESSAGE_INTEGRITY     , "MESSAGE-INTEGRITY"},
	{ERROR_CODE            , "ERROR-CODE"},
	{UNKNOWN_ATTRIBUTES    , "UNKNOWN-ATTRIBUTES"},
	{CHANNEL_NUMBER        , "CHANNEL-NUMBER"},
	{LIFETIME              , "LIFETIME"},
	{BANDWIDTH             , "BANDWIDTH"},
	{XOR_PEER_ADDRESS      , "XOR-PEER-ADDRESS"},
	{DATA                  , "DATA"},
	{REALM                 , "REALM"},
	{NONCE                 , "NONCE"},
	{XOR_RELAYED_ADDRESS   , "XOR-RELAYED-ADDRESS"},
	{REQUESTED_ADDRESS_TYPE, "REQUESTED-ADDRESS-TYPE"},
	{EVEN_PORT             , "EVEN-PORT"},
	{REQUESTED_TRANSPORT   , "REQUESTED-TRANSPORT"},
	{DONT_FRAGMENT         , "DONT-FRAGMENT"},
	{XOR_MAPPED_ADDRESS    , "XOR-MAPPED-ADDRESS"},
	{RESERVATION_TOKEN     , "RESERVATION-TOKEN"},
	{PRIORITY              , "PRIORITY"},
	{USE_CANDIDATE         , "USE-CANDIDATE"},
	{PADDING               , "PADDING"},
	{XOR_RESPONSE_TARGET   , "XOR-RESPONSE-TARGET"},
	{XOR_REFLECTED_FROM    , "XOR-REFELECTED-FROM"},
	{ICMP                  , "ICMP"},
	{SOFTWARE              , "SOFTWARE"},
	{ALTERNATE_SERVER      , "ALTERNATE-SERVER"},
	{CACHE_TIMEOUT         , "CACHE-TIMEOUT"},
	{FINGERPRINT           , "FINGERPRINT"},
	{ICE_CONTROLLED        , "ICE-CONTROLLED"},
	{ICE_CONTROLLING       , "ICE-CONTROLLING"},
	{RESPONSE_ORIGIN       , "RESPONSE-ORIGIN"},
	{OTHER_ADDRESS         , "OTHER-ADDRESS"},
	{0x00                  , NULL}
};

static const value_string assignments[] = {
	{0x0000, "IETF Review"},
	{0x0001, "Designated Expert"},
	{0x00, NULL}
};

static const value_string comprehensions[] = {
	{0x0000, "Required"},
	{0x0001, "Optional"},
	{0x00  , NULL}
};

static const value_string attributes_reserve_next[] = {
	{0, "No reservation"},
	{1, "Reserve next port number"},
	{0x00, NULL}
};

static const value_string attributes_properties_p[] = {
	{0, "All allocation"},
	{1, "Preserving allocation"},
	{0x00, NULL}
};

static const value_string attributes_family[] = {
	{0x0001, "IPv4"},
	{0x0002, "IPv6"},
	{0x00, NULL}
};

static const value_string error_code[] = {
	{300, "Try Alternate"},/* rfc3489bis-15 */
	{400, "Bad Request"},/* rfc3489bis-15 */
	{401, "Unauthorized"},/* rfc3489bis-15 */
	{420, "Unknown Attribute"},/* rfc3489bis-15 */
	{437, "Allocation Mismatch"},/* turn-07 */
	{438, "Stale Nonce"},/* rfc3489bis-15 */
	{439, "Wrong Credentials"}, /* turn-07 - collision 38=>39 */
	{442, "Unsupported Transport Protocol"},/* turn-07 */
	{440, "Address Family not Supported"}, /* turn-ipv6-04 */
	{481, "Connection does not exist"}, /* nat-behavior-discovery-03 */
	{486, "Allocation Quota Reached"},/* turn-07 */
	{500, "Server Error"},/* rfc3489bis-15 */
	{503, "Service Unavailable"}, /* nat-behavior-discovery-03 */
	{507, "Insufficient Bandwidth Capacity"},/* turn-07 */
	{508, "Insufficient Port Capacity"},/* turn-07 */
	{600, "Global Failure"},
	{0x00, NULL}
};


static guint
get_stun_message_len(packet_info *pinfo _U_, tvbuff_t *tvb, int offset)
{
	guint16 type   = tvb_get_ntohs(tvb, offset);
	guint   length = tvb_get_ntohs(tvb, offset+2);

	if (type & 0xC000)
	{
		/* two first bits not NULL => should be a channel-data message */
		/* Note: For TCP the message is padded to a 4 byte boundary    */
		return (length + CHANNEL_DATA_HDR_LEN +3) & ~0x3;
	}
	else
	{
		/* Normal STUN message */
		return length + STUN_HDR_LEN;
	}
}

static int
dissect_stun_message_channel_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint16 msg_type, guint msg_length)
{
	guint reported_length;
	tvbuff_t *next_tvb;

	reported_length = tvb_reported_length(tvb);

	/* two first bits not NULL => should be a channel-data message */
	if (msg_type == 0xFFFF)
		return 0;

	/* note that padding is only mandatory over streaming
	   protocols */
	if (pinfo->ipproto == IP_PROTO_UDP) {
		if (reported_length != (msg_length + CHANNEL_DATA_HDR_LEN))
			return 0;
	} else { /* TCP */
		if (reported_length != ((msg_length + CHANNEL_DATA_HDR_LEN + 3) & ~0x3))
			return 0;
	}

	col_set_str(pinfo->cinfo, COL_PROTOCOL, "STUN");
	col_set_str(pinfo->cinfo, COL_INFO, "ChannelData TURN Message");

	if (tree) {
		proto_item *ti;
		proto_tree *stun_tree;
		ti = proto_tree_add_item(
			tree, proto_stun, tvb, 0,
			CHANNEL_DATA_HDR_LEN,
			ENC_NA);
		proto_item_append_text(ti, ", TURN ChannelData Message");
		stun_tree = proto_item_add_subtree(ti, ett_stun);
		proto_tree_add_item(stun_tree, hf_stun_channel, tvb, 0, 2, ENC_BIG_ENDIAN);
		proto_tree_add_item(stun_tree, hf_stun_length,  tvb, 2, 2, ENC_BIG_ENDIAN);
	}

	next_tvb = tvb_new_subset_remaining(tvb, CHANNEL_DATA_HDR_LEN);

	if (!dissector_try_heuristic(heur_subdissector_list, next_tvb, pinfo, tree)) {
		call_dissector_only(data_handle, next_tvb, pinfo, tree);
	}

	return reported_length;
}


static int
dissect_stun_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
	guint       captured_length;
	guint16     msg_type;
	guint       msg_length;
	proto_item *ti;
	proto_tree *stun_tree;
	proto_tree *stun_type_tree;
	proto_tree *att_all_tree;
	proto_tree *att_type_tree;
	proto_tree *att_tree;
	guint16     msg_type_method;
	guint16     msg_type_class;
	const char *msg_class_str;
	const char *msg_method_str;
	guint16     att_type;
	guint16     att_length;
	guint       i;
	guint       magic_cookie_first_word;
	conversation_t     *conversation=NULL;
	stun_conv_info_t   *stun_info;
	stun_transaction_t *stun_trans;
	emem_tree_key_t transaction_id_key[2];
	guint32         transaction_id[3];

	/*
	 * Check if the frame is really meant for us.
	 */

	/* First, make sure we have enough data to do the check. */
	captured_length = tvb_length(tvb);
	if (captured_length < MIN_HDR_LEN)
		return 0;

	msg_type     = tvb_get_ntohs(tvb, 0);
	msg_length   = tvb_get_ntohs(tvb, 2);

	/* STUN Channel Data message ? */
	if (msg_type & 0xC000) {
		return dissect_stun_message_channel_data(tvb, pinfo, tree, msg_type, msg_length);
	}

	/* Normal STUN message */
	if (captured_length < STUN_HDR_LEN)
		return 0;

	/* Check if it is really a STUN message */
	if ( tvb_get_ntohl(tvb, 4) != 0x2112a442)
		return 0;

	/* check if payload enough */
	if (tvb_reported_length(tvb) != (msg_length + STUN_HDR_LEN))
		return 0;

	/* The message seems to be a valid STUN message! */

	col_set_str(pinfo->cinfo, COL_PROTOCOL, "STUN");

	/* Create the transaction key which may be used
	   to track the conversation */
	transaction_id[0] = tvb_get_ntohl(tvb, 8);
	transaction_id[1] = tvb_get_ntohl(tvb, 12);
	transaction_id[2] = tvb_get_ntohl(tvb, 16);

	transaction_id_key[0].length = 3;
	transaction_id_key[0].key =  transaction_id;
	transaction_id_key[1].length = 0;
	transaction_id_key[1].key = NULL;

	msg_type_class = ((msg_type & 0x0010) >> 4) | ((msg_type & 0x0100) >> 7) ;
	msg_type_method = (msg_type & 0x000F) | ((msg_type & 0x00E0) >> 1) | ((msg_type & 0x3E00) >> 2);

	conversation = find_or_create_conversation(pinfo);

	/*
	 * Do we already have a state structure for this conv
	 */
	stun_info = conversation_get_proto_data(conversation, proto_stun);
	if (!stun_info) {
		/* No.  Attach that information to the conversation, and add
		 * it to the list of information structures.
		 */
		stun_info = se_alloc(sizeof(stun_conv_info_t));
		stun_info->transaction_pdus=se_tree_create_non_persistent(EMEM_TREE_TYPE_RED_BLACK, "stun_transaction_pdus");
		conversation_add_proto_data(conversation, proto_stun, stun_info);
	}

	if (!pinfo->fd->flags.visited) {
		if ((stun_trans =
		     se_tree_lookup32_array(stun_info->transaction_pdus,
					    transaction_id_key)) == NULL) {
			stun_trans=se_alloc(sizeof(stun_transaction_t));
			stun_trans->req_frame=0;
			stun_trans->rep_frame=0;
			stun_trans->req_time=pinfo->fd->abs_ts;
			se_tree_insert32_array(stun_info->transaction_pdus,
					       transaction_id_key,
					       (void *)stun_trans);
		}

		if (msg_type_class == REQUEST) {
			/* This is a request */
			if (stun_trans->req_frame == 0) {
				stun_trans->req_frame=pinfo->fd->num;
			}

		} else {
			/* This is a catch-all for all non-request messages */
			if (stun_trans->rep_frame == 0) {
				stun_trans->rep_frame=pinfo->fd->num;
			}

		}
	} else {
		stun_trans=se_tree_lookup32_array(stun_info->transaction_pdus,
						  transaction_id_key);
	}

	if (!stun_trans) {
		/* create a "fake" pana_trans structure */
		stun_trans=ep_alloc(sizeof(stun_transaction_t));
		stun_trans->req_frame=0;
		stun_trans->rep_frame=0;
		stun_trans->req_time=pinfo->fd->abs_ts;
	}


	msg_class_str  = val_to_str_const(msg_type_class, classes, "Unknown");
	msg_method_str = val_to_str_const(msg_type_method, methods, "Unknown");

	col_add_fstr(pinfo->cinfo, COL_INFO, "%s %s",
		     msg_method_str, msg_class_str);

	ti = proto_tree_add_item(tree, proto_stun, tvb, 0, -1, ENC_NA);

	stun_tree = proto_item_add_subtree(ti, ett_stun);

	if (msg_type_class == REQUEST) {
		if (stun_trans->req_frame != pinfo->fd->num) {
			proto_item *it;
			it=proto_tree_add_uint(stun_tree, hf_stun_duplicate,
					       tvb, 0, 0,
					       stun_trans->req_frame);
			PROTO_ITEM_SET_GENERATED(it);
		}
		if (stun_trans->rep_frame) {
			proto_item *it;
			it=proto_tree_add_uint(stun_tree, hf_stun_response_in,
					       tvb, 0, 0,
					       stun_trans->rep_frame);
			PROTO_ITEM_SET_GENERATED(it);
		}
	}
	else {
		/* Retransmission control */
		if (stun_trans->rep_frame != pinfo->fd->num) {
			proto_item *it;
			it=proto_tree_add_uint(stun_tree, hf_stun_duplicate,
					       tvb, 0, 0,
					       stun_trans->rep_frame);
			PROTO_ITEM_SET_GENERATED(it);
		}
		if (msg_type_class == RESPONSE || msg_type_class == ERROR_RESPONSE) {
			/* This is a response */
			if (stun_trans->req_frame) {
				proto_item *it;
				nstime_t ns;

				it=proto_tree_add_uint(stun_tree, hf_stun_response_to, tvb, 0, 0,
						       stun_trans->req_frame);
				PROTO_ITEM_SET_GENERATED(it);

				nstime_delta(&ns, &pinfo->fd->abs_ts, &stun_trans->req_time);
				it=proto_tree_add_time(stun_tree, hf_stun_time, tvb, 0, 0, &ns);
				PROTO_ITEM_SET_GENERATED(it);
			}

		}
	}

	ti = proto_tree_add_uint_format(stun_tree, hf_stun_type, tvb, 0, 2,
					msg_type, "Message Type: 0x%04x (%s %s)", msg_type, msg_method_str, msg_class_str);
	stun_type_tree = proto_item_add_subtree(ti, ett_stun_type);
	proto_tree_add_uint(stun_type_tree, hf_stun_type_class, tvb, 0, 2, msg_type);
	ti = proto_tree_add_text(stun_type_tree, tvb, 0, 2, "%s (%d)", msg_class_str, msg_type_class);
	PROTO_ITEM_SET_GENERATED(ti);
	proto_tree_add_uint(stun_type_tree, hf_stun_type_method, tvb, 0, 2, msg_type);
	ti = proto_tree_add_text(stun_type_tree, tvb, 0, 2, "%s (0x%03x)", msg_method_str, msg_type_method);
	PROTO_ITEM_SET_GENERATED(ti);
	proto_tree_add_uint(stun_type_tree, hf_stun_type_method_assignment, tvb, 0, 2, msg_type);
	ti = proto_tree_add_text(stun_type_tree, tvb, 0, 2,
				 "%s (%d)",
				 val_to_str((msg_type & 0x2000) >> 13, assignments, "Unknown: 0x%x"),
				 (msg_type & 0x2000) >> 13);
	PROTO_ITEM_SET_GENERATED(ti);

	proto_tree_add_item(stun_tree, hf_stun_length, tvb, 2, 2, ENC_BIG_ENDIAN);
	proto_tree_add_item(stun_tree, hf_stun_cookie, tvb, 4, 4, ENC_NA);
	proto_tree_add_item(stun_tree, hf_stun_id, tvb, 8, 12, ENC_NA);

	/* Remember this (in host order) so we can show clear xor'd addresses */
	magic_cookie_first_word = tvb_get_ntohl(tvb, 4);

	if (msg_length != 0) {
		guint offset;

		ti = proto_tree_add_item(stun_tree, hf_stun_attributes, tvb, STUN_HDR_LEN, msg_length, ENC_NA);
		att_all_tree = proto_item_add_subtree(ti, ett_stun_att_all);

		offset = STUN_HDR_LEN;

		while (offset < (STUN_HDR_LEN + msg_length)) {
			att_type = tvb_get_ntohs(tvb, offset);     /* Type field in attribute header */
			att_length = tvb_get_ntohs(tvb, offset+2); /* Length field in attribute header */
			ti = proto_tree_add_uint_format(att_all_tree, hf_stun_attr,
							tvb, offset, ATTR_HDR_LEN+att_length,
							att_type, "%s", val_to_str(att_type, attributes, "Unknown"));
			att_tree = proto_item_add_subtree(ti, ett_stun_att);
			ti = proto_tree_add_uint(att_tree, stun_att_type, tvb,
						 offset, 2, att_type);
			att_type_tree = proto_item_add_subtree(ti, ett_stun_att_type);
			proto_tree_add_uint(att_type_tree, stun_att_type_comprehension, tvb, offset, 2, att_type);
			ti = proto_tree_add_text(att_type_tree, tvb, offset, 2,
						 "%s (%d)",
						 val_to_str((att_type & 0x8000) >> 15, comprehensions, "Unknown: %d"),
						 (att_type & 0x8000) >> 15);
			PROTO_ITEM_SET_GENERATED(ti);
			proto_tree_add_uint(att_type_tree, stun_att_type_assignment, tvb, offset, 2, att_type);
			ti = proto_tree_add_text(att_type_tree, tvb, offset, 2,
						 "%s (%d)",
						 val_to_str((att_type & 0x4000) >> 14, assignments, "Unknown: %d"),
						 (att_type & 0x4000) >> 14);
			PROTO_ITEM_SET_GENERATED(ti);

			if ((offset+ATTR_HDR_LEN+att_length) > (STUN_HDR_LEN+msg_length)) {
				proto_tree_add_uint_format(att_tree,
							   stun_att_length, tvb, offset+2, 2,
							   att_length,
							   "Attribute Length: %u (bogus, goes past the end of the message)",
							   att_length);
				break;
			}
			offset += 2;

			proto_tree_add_uint(att_tree, stun_att_length, tvb,
					    offset, 2, att_length);
			offset += 2;

			switch (att_type) {
			case MAPPED_ADDRESS:
			case ALTERNATE_SERVER:
			case RESPONSE_ORIGIN:
			case OTHER_ADDRESS:
				if (att_length < 1)
					break;
				proto_tree_add_uint(att_tree, stun_att_reserved, tvb, offset, 1, 1);
				if (att_length < 2)
					break;
				proto_tree_add_item(att_tree, stun_att_family, tvb, offset+1, 1, ENC_BIG_ENDIAN);
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_port, tvb, offset+2, 2, ENC_BIG_ENDIAN);
				switch (tvb_get_guint8(tvb, offset+1)) {
				case 1:
					if (att_length < 8)
						break;
					proto_tree_add_item(att_tree, stun_att_ipv4, tvb, offset+4, 4, ENC_BIG_ENDIAN);
					{
						const gchar *ipstr;
						guint32 ip;
						ip = tvb_get_ipv4(tvb,offset+4);
						ipstr = ip_to_str((guint8*)&ip);
						proto_item_append_text(att_tree, ": %s:%d", ipstr,tvb_get_ntohs(tvb,offset+2));
						col_append_fstr(
							pinfo->cinfo, COL_INFO,
							" %s: %s:%d",
							val_to_str(att_type, attributes, "Unknown"),
							ipstr,
							tvb_get_ntohs(tvb,offset+2)
							);
					}
					break;

				case 2:
					if (att_length < 20)
						break;
					proto_tree_add_item(att_tree, stun_att_ipv6, tvb, offset+4, 16, ENC_NA);
					break;
				}
				break;

			case CHANGE_REQUEST:
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_change_ip, tvb, offset, 4, ENC_BIG_ENDIAN);
				proto_tree_add_item(att_tree, stun_att_change_port, tvb, offset, 4, ENC_BIG_ENDIAN);
				break;

			case USERNAME:
				proto_tree_add_item(att_tree, stun_att_username, tvb, offset, att_length, ENC_ASCII|ENC_NA);
				proto_item_append_text(att_tree, ": %s", tvb_get_ephemeral_string(tvb, offset, att_length));
				col_append_fstr(
					pinfo->cinfo, COL_INFO,
					" user: %s",
					tvb_get_ephemeral_string(tvb,offset, att_length)
					);
				if (att_length % 4 != 0)
					proto_tree_add_uint(att_tree, stun_att_padding,
							    tvb, offset+att_length, 4-(att_length % 4), 4-(att_length % 4));
				break;

			case MESSAGE_INTEGRITY:
				if (att_length < 20)
					break;
				proto_tree_add_item(att_tree, stun_att_hmac, tvb, offset, att_length, ENC_NA);
				break;

			case ERROR_CODE:
				if (att_length < 2)
					break;
				proto_tree_add_uint(att_tree, stun_att_reserved, tvb, offset, 2, 2);
				if (att_length < 3)
					break;
				proto_tree_add_item(att_tree, stun_att_error_class, tvb, offset+2, 1, ENC_BIG_ENDIAN);
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_error_number, tvb, offset+3, 1, ENC_BIG_ENDIAN);
				{
					int human_error_num = tvb_get_guint8(tvb, offset+2) * 100 + tvb_get_guint8(tvb, offset+3);
					proto_item_append_text(
						att_tree,
						" %d (%s)",
						human_error_num, /* human readable error code */
						val_to_str(human_error_num, error_code, "*Unknown error code*")
						);
					col_append_fstr(
						pinfo->cinfo, COL_INFO,
						" error-code: %d (%s)",
						human_error_num,
						val_to_str(human_error_num, error_code, "*Unknown error code*")
						);
				}
				if (att_length < 5)
					break;
				proto_tree_add_item(att_tree, stun_att_error_reason, tvb, offset+4, att_length-4, ENC_ASCII|ENC_NA);

				proto_item_append_text(att_tree, ": %s", tvb_get_ephemeral_string(tvb, offset+4, att_length-4));
				col_append_fstr(
					pinfo->cinfo, COL_INFO,
					" %s",
					tvb_get_ephemeral_string(tvb, offset+4, att_length-4)
					);


				if (att_length % 4 != 0)
					proto_tree_add_uint(att_tree, stun_att_padding, tvb, offset+att_length, 4-(att_length % 4), 4-(att_length % 4));
				break;

			case UNKNOWN_ATTRIBUTES:
				for (i = 0; i < att_length; i += 2)
					proto_tree_add_item(att_tree, stun_att_unknown, tvb, offset+i, 2, ENC_BIG_ENDIAN);
				if (att_length % 4 != 0)
					proto_tree_add_uint(att_tree, stun_att_padding, tvb, offset+att_length, 4-(att_length % 4), 4-(att_length % 4));
				break;

			case REALM:
				proto_tree_add_item(att_tree, stun_att_realm, tvb, offset, att_length, ENC_ASCII|ENC_NA);
				proto_item_append_text(att_tree, ": %s", tvb_get_ephemeral_string(tvb, offset, att_length));
				col_append_fstr(
					pinfo->cinfo, COL_INFO,
					" realm: %s",
					tvb_get_ephemeral_string(tvb,offset, att_length)
					);
				if (att_length % 4 != 0)
					proto_tree_add_uint(att_tree, stun_att_padding, tvb, offset+att_length, 4-(att_length % 4), 4-(att_length % 4));
				break;

			case NONCE:
				proto_tree_add_item(att_tree, stun_att_nonce, tvb, offset, att_length, ENC_ASCII|ENC_NA);
				proto_item_append_text(att_tree, ": %s", tvb_get_ephemeral_string(tvb, offset, att_length));
				col_append_fstr(
					pinfo->cinfo, COL_INFO,
					" with nonce"
					);
				if (att_length % 4 != 0)
					proto_tree_add_uint(att_tree, stun_att_padding, tvb, offset+att_length, 4-(att_length % 4), 4-(att_length % 4));
				break;

			case XOR_MAPPED_ADDRESS:
			case XOR_PEER_ADDRESS:
			case XOR_RELAYED_ADDRESS:
			case XOR_RESPONSE_TARGET:
			case XOR_REFLECTED_FROM:
				if (att_length < 1)
					break;
				    	proto_tree_add_uint(att_tree, stun_att_reserved, tvb, offset, 1, 1);
				if (att_length < 2)
					break;
				proto_tree_add_item(att_tree, stun_att_family, tvb, offset+1, 1, ENC_BIG_ENDIAN);
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_xor_port, tvb, offset+2, 2, ENC_NA);

				/* Show the port 'in the clear'
				XOR (host order) transid with (host order) xor-port.
				Add host-order port into tree. */
				ti = proto_tree_add_uint(att_tree, stun_att_port, tvb, offset+2, 2,
					tvb_get_ntohs(tvb, offset+2) ^ (magic_cookie_first_word >> 16));
				PROTO_ITEM_SET_GENERATED(ti);

				if (att_length < 8)
					break;
				switch (tvb_get_guint8(tvb, offset+1)) {
					case 1:
					proto_tree_add_item(att_tree, stun_att_xor_ipv4, tvb, offset+4, 4, ENC_NA);

					/* Show the address 'in the clear'.
					XOR (host order) transid with (host order) xor-address.
					Add in network order tree. */
					ti = proto_tree_add_ipv4(att_tree, stun_att_ipv4, tvb, offset+4, 4,
								 tvb_get_ipv4(tvb, offset+4) ^ g_htonl(magic_cookie_first_word));
					PROTO_ITEM_SET_GENERATED(ti);

					{
						const gchar *ipstr;
						guint32 ip;
						guint16 port;
						ip = tvb_get_ipv4(tvb, offset+4) ^ g_htonl(magic_cookie_first_word);
						ipstr = ip_to_str((guint8*)&ip);
						port = tvb_get_ntohs(tvb, offset+2) ^ (magic_cookie_first_word >> 16);
						proto_item_append_text(att_tree, ": %s:%d", ipstr, port);
						col_append_fstr(
							pinfo->cinfo, COL_INFO,
							" %s: %s:%d",
							val_to_str(att_type, attributes, "Unknown"),
							ipstr,
							port
							);
					}
					break;

				case 2:
					if (att_length < 20)
						break;
					proto_tree_add_item(att_tree, stun_att_xor_ipv6, tvb, offset+4, 16, ENC_NA);
					{
						guint32 IPv6[4];
						tvb_get_ipv6(tvb, offset+4, (struct e_in6_addr *)IPv6);
						IPv6[0] = IPv6[0] ^ g_htonl(magic_cookie_first_word);
						IPv6[1] = IPv6[1] ^ g_htonl(transaction_id[0]);
						IPv6[2] = IPv6[2] ^ g_htonl(transaction_id[1]);
						IPv6[3] = IPv6[3] ^ g_htonl(transaction_id[2]);
						ti = proto_tree_add_ipv6(att_tree, stun_att_ipv6, tvb, offset+4, 16,
									 (const guint8 *)IPv6);
						PROTO_ITEM_SET_GENERATED(ti);
					}

					break;
				}
				break;

			case REQUESTED_ADDRESS_TYPE:
				if (att_length < 1)
					break;
				proto_tree_add_item(att_tree, stun_att_family, tvb, offset, 1, ENC_BIG_ENDIAN);
				if (att_length < 4)
					break;
				proto_tree_add_uint(att_tree, stun_att_reserved, tvb, offset+1, 3, 3);
				break;
case EVEN_PORT:
  				if (att_length < 1)
					break;
				proto_tree_add_item(att_tree, stun_att_reserve_next, tvb, offset, 1, ENC_BIG_ENDIAN);
				break;

			case RESERVATION_TOKEN:
				if (att_length < 8)
					break;
				proto_tree_add_item(att_tree, stun_att_token, tvb, offset, 8, ENC_NA);
				break;

			case PRIORITY:
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_priority, tvb, offset, 4, ENC_BIG_ENDIAN);
				break;

			case PADDING:
				proto_tree_add_uint(att_tree, stun_att_padding, tvb, offset, att_length, att_length);
				break;

			case ICMP:
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_icmp_type, tvb, offset, 1, ENC_BIG_ENDIAN);
				proto_tree_add_item(att_tree, stun_att_icmp_code, tvb, offset+1, 1, ENC_BIG_ENDIAN);
				break;

			case SOFTWARE:
				proto_tree_add_item(att_tree, stun_att_software, tvb, offset, att_length, ENC_ASCII|ENC_NA);
				if (att_length % 4 != 0)
					proto_tree_add_uint(att_tree, stun_att_padding, tvb, offset+att_length, 4-(att_length % 4), 4-(att_length % 4));
				break;

			case CACHE_TIMEOUT:
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_cache_timeout, tvb, offset, 4, ENC_BIG_ENDIAN);
				break;

			case FINGERPRINT:
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_crc32, tvb, offset, att_length, ENC_BIG_ENDIAN);
				break;

			case ICE_CONTROLLED:
			case ICE_CONTROLLING:
				if (att_length < 8)
					break;
				proto_tree_add_item(att_tree, stun_att_tie_breaker, tvb, offset, 8, ENC_NA);
				break;

			case DATA:
				if (att_length > 0) {
					tvbuff_t *next_tvb;
					proto_tree_add_item(att_tree, stun_att_value, tvb, offset, att_length, ENC_NA);
					if (att_length % 4 != 0) {
						guint pad;
						pad = 4-(att_length % 4);
						proto_tree_add_uint(att_tree, stun_att_padding, tvb, offset+att_length, pad, pad);
					}

					next_tvb = tvb_new_subset(tvb, offset, att_length, att_length);

					if (!dissector_try_heuristic(heur_subdissector_list, next_tvb, pinfo, att_tree)) {
						call_dissector_only(data_handle, next_tvb, pinfo, att_tree);
					}

				}
				break;

			case REQUESTED_TRANSPORT:
				if (att_length < 1)
					break;
				proto_tree_add_item(att_tree, stun_att_transp, tvb, offset, 1, ENC_BIG_ENDIAN);
				if (att_length < 4)
					break;

				{
					guint8  protoCode = tvb_get_guint8(tvb, offset);
					proto_item_append_text(att_tree, ": %s", val_to_str(protoCode, transportnames, "Unknown (0x%8x)"));
					col_append_fstr(
						pinfo->cinfo, COL_INFO,
						" %s",
						val_to_str(protoCode, transportnames, "Unknown (0x%8x)")
						);
				}
				proto_tree_add_uint(att_tree, stun_att_reserved, tvb, offset+1, 3, 3);
				break;

			case CHANNEL_NUMBER:
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_channelnum, tvb, offset, 2, ENC_BIG_ENDIAN);
				{
					guint16 chan = tvb_get_ntohs(tvb, offset);
					proto_item_append_text(att_tree, ": 0x%x", chan);
					col_append_fstr(
						pinfo->cinfo, COL_INFO,
						" ChannelNumber=0x%x",
						chan
						);
				}
				proto_tree_add_uint(att_tree, stun_att_reserved, tvb, offset+2, 2, 2);
				break;

			case BANDWIDTH:
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_bandwidth, tvb, offset, 4, ENC_BIG_ENDIAN);
				proto_item_append_text(att_tree, " %d", tvb_get_ntohl(tvb, offset));
				col_append_fstr(
					pinfo->cinfo, COL_INFO,
					" bandwidth: %d",
					tvb_get_ntohl(tvb, offset)
					);
				break;
			case LIFETIME:
				if (att_length < 4)
					break;
				proto_tree_add_item(att_tree, stun_att_lifetime, tvb, offset, 4, ENC_BIG_ENDIAN);
				proto_item_append_text(att_tree, " %d", tvb_get_ntohl(tvb, offset));
				col_append_fstr(
					pinfo->cinfo, COL_INFO,
					" lifetime: %d",
					tvb_get_ntohl(tvb, offset)
					);
				break;

			default:
				if (att_length > 0)
					proto_tree_add_item(att_tree, stun_att_value, tvb, offset, att_length, ENC_NA);
				if (att_length % 4 != 0)
					proto_tree_add_uint(att_tree, stun_att_padding, tvb,
							    offset+att_length, 4-(att_length % 4), 4-(att_length % 4));
				break;
			}
			offset += (att_length+3) & ~0x3;
		}
	}

	return tvb_reported_length(tvb);
}

static int
dissect_stun_udp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
	return dissect_stun_message(tvb, pinfo, tree);
}

static void
dissect_stun_message_no_return(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
	dissect_stun_message(tvb, pinfo, tree);
}

static void
dissect_stun_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
	tcp_dissect_pdus(tvb, pinfo, tree, TRUE, MIN_HDR_LEN,
		get_stun_message_len, dissect_stun_message_no_return);
}

static gboolean
dissect_stun_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
	if (dissect_stun_message(tvb, pinfo, tree) == 0) {
		/*
		 * It wasn't a valid STUN message, and wasn't
		 * dissected as such.
		 */
		return FALSE;
	}
	return TRUE;
}

void
proto_register_stun(void)
{
	static hf_register_info hf[] = {

		{ &hf_stun_channel,
		  { "Channel Number",	"stun.channel",	FT_UINT16,
		    BASE_HEX, 	NULL, 	0x0, 	NULL,	HFILL }
		},

		/* ////////////////////////////////////// */
		{ &hf_stun_type,
		  { "Message Type",	"stun.type", 	FT_UINT16,
		    BASE_HEX, 	NULL,	0, 	NULL, 	HFILL }
		},
		{ &hf_stun_type_class,
		  { "Message Class",	"stun.type.class", 	FT_UINT16,
		    BASE_HEX, 	NULL,	0x0110, 	NULL, 	HFILL }
		},
		{ &hf_stun_type_method,
		  { "Message Method",	"stun.type.method", 	FT_UINT16,
		    BASE_HEX, 	NULL,	0x3EEF, 	NULL, 	HFILL }
		},
		{ &hf_stun_type_method_assignment,
		  { "Message Method Assignment",	"stun.type.method-assignment", 	FT_UINT16,
		    BASE_HEX, 	NULL,	0x2000, 	NULL, 	HFILL }
		},
		{ &hf_stun_length,
		  { "Message Length",	"stun.length",	FT_UINT16,
		    BASE_DEC,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &hf_stun_cookie,
		  { "Message Cookie",	"stun.cookie",	FT_BYTES,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &hf_stun_id,
		  { "Message Transaction ID",	"stun.id",	FT_BYTES,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &hf_stun_attributes,
		  { "Attributes",		"stun.attributes",	FT_NONE,
		    BASE_NONE,	NULL, 	0x0, 	NULL,	HFILL }
		},
		{ &hf_stun_attr,
		  { "Attribute Type",	"stun.attribute", 	FT_UINT16,
		    BASE_HEX, 	NULL,	0, 	NULL, 	HFILL }
		},
		{ &hf_stun_response_in,
		  { "Response In",	"stun.response-in", FT_FRAMENUM,
		    BASE_NONE, NULL, 0x0, "The response to this STUN query is in this frame", HFILL }
		},
		{ &hf_stun_response_to,
		  { "Request In", "stun.response-to", FT_FRAMENUM,
		    BASE_NONE, NULL, 0x0, "This is a response to the STUN Request in this frame", HFILL }
		},
		{ &hf_stun_time,
		  { "Time", "stun.time", FT_RELATIVE_TIME,
		    BASE_NONE, NULL, 0x0, "The time between the Request and the Response", HFILL }
		},
		{ &hf_stun_duplicate,
		  { "Duplicated original message in", "stun.reqduplicate", FT_FRAMENUM,
		    BASE_NONE, NULL, 0x0, "This is a duplicate of STUN message in this frame", HFILL }
		},
		/* ////////////////////////////////////// */
		{ &stun_att_type,
		  { "Attribute Type",	"stun.att.type",	FT_UINT16,
		    BASE_HEX,	VALS(attributes),	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_type_comprehension,
		  { "Attribute Type Comprehension",	"stun.att.type.comprehension",	FT_UINT16,
		    BASE_HEX,	NULL,	0x8000, 	NULL,	HFILL }
		},
		{ &stun_att_type_assignment,
		  { "Attribute Type Assignment",	"stun.att.type.assignment",	FT_UINT16,
		    BASE_HEX,	NULL,	0x4000, 	NULL,	HFILL }
		},
		{ &stun_att_length,
		  { "Attribute Length",	"stun.att.length",	FT_UINT16,
		    BASE_DEC,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_family,
		  { "Protocol Family",	"stun.att.family",	FT_UINT8,
		    BASE_HEX,	VALS(attributes_family),	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_ipv4,
		  { "IP",		"stun.att.ipv4",	FT_IPv4,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_ipv6,
		  { "IP",		"stun.att.ipv6",	FT_IPv6,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_port,
		  { "Port",	"stun.att.port",	FT_UINT16,
		    BASE_DEC,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_username,
		  { "Username",	"stun.att.username",	FT_STRING,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_padding,
		  { "Padding",	"stun.att.padding",	FT_UINT16,
		    BASE_DEC,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_hmac,
		  { "HMAC-SHA1",	"stun.att.hmac",	FT_BYTES,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_crc32,
		  { "CRC-32",	"stun.att.crc32",	FT_UINT32,
		    BASE_HEX,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_error_class,
		  { "Error Class","stun.att.error.class",	FT_UINT8,
		    BASE_DEC, 	NULL,	0x07,	NULL,	HFILL}
		},
		{ &stun_att_error_number,
		  { "Error Code","stun.att.error",	FT_UINT8,
		    BASE_DEC, 	NULL,	0x0,	NULL,	HFILL}
		},
		{ &stun_att_error_reason,
		  { "Error Reason Phrase","stun.att.error.reason",	FT_STRING,
		    BASE_NONE, 	NULL,	0x0,	NULL,	HFILL}
		},
		{ &stun_att_realm,
		  { "Realm",	"stun.att.realm",	FT_STRING,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_nonce,
		  { "Nonce",	"stun.att.nonce",	FT_STRING,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_unknown,
		  { "Unknown Attribute","stun.att.unknown",	FT_UINT16,
		    BASE_HEX, 	NULL,	0x0,	NULL,	HFILL}
		},
		{ &stun_att_xor_ipv4,
		  { "IP (XOR-d)",		"stun.att.ipv4-xord",	FT_BYTES,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_xor_ipv6,
		  { "IP (XOR-d)",		"stun.att.ipv6-xord",	FT_BYTES,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_xor_port,
		  { "Port (XOR-d)",	"stun.att.port-xord",	FT_BYTES,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_icmp_type,
		  { "ICMP type",		"stun.att.icmp.type",	FT_UINT8,
		    BASE_DEC, 	NULL,	0x0,	NULL,	HFILL}
 		},
		{ &stun_att_icmp_code,
		  { "ICMP code",		"stun.att.icmp.code",	FT_UINT8,
		    BASE_DEC, 	NULL,	0x0,	NULL,	HFILL}
 		},
		{ &stun_att_software,
		  { "Software","stun.att.software",	FT_STRING,
		    BASE_NONE, 	NULL,	0x0,	NULL,	HFILL}
		},
		{ &stun_att_priority,
		  { "Priority",		"stun.att.priority",	FT_UINT32,
		    BASE_DEC, 	NULL,	0x0,	NULL,	HFILL}
 		},
		{ &stun_att_tie_breaker,
		  { "Tie breaker",	"stun.att.tie-breaker",	FT_BYTES,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_lifetime,
		  { "Lifetime",		"stun.att.lifetime",	FT_UINT32,
		    BASE_DEC, 	NULL,	0x0,	NULL,	HFILL}
 		},
		{ &stun_att_change_ip,
		  { "Change IP","stun.att.change-ip",	FT_BOOLEAN,
		    16, 	TFS(&tfs_set_notset),	0x0004,	NULL,	HFILL}
		},
		{ &stun_att_change_port,
		  { "Change Port","stun.att.change-port",	FT_BOOLEAN,
		    16, 	TFS(&tfs_set_notset),	0x0002,	NULL,	HFILL}
		},
		{ &stun_att_reserve_next,
		  { "Reserve next","stun.att.even-port.reserve-next",	FT_UINT8,
		    BASE_DEC, 	VALS(attributes_reserve_next),	0x80,	NULL,	HFILL}
		},
		{ &stun_att_cache_timeout,
		  { "Cache timeout",		"stun.att.cache-timeout",	FT_UINT32,
		    BASE_DEC, 	NULL,	0x0,	NULL,	HFILL}
 		},
		{ &stun_att_token,
		  { "Token",	"stun.att.token",	FT_BYTES,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_value,
		  { "Value",	"stun.value",	FT_BYTES,
		    BASE_NONE,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_reserved,
		  { "Reserved",	"stun.att.reserved",	FT_UINT16,
		    BASE_DEC,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_transp,
		  { "Transport",	"stun.att.transp",	FT_UINT8,
		    BASE_HEX,	VALS(transportnames),	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_channelnum,
		  { "Channel-Number",	"stun.att.channelnum",	FT_UINT16,
		    BASE_HEX,	NULL,	0x0, 	NULL,	HFILL }
		},
		{ &stun_att_bandwidth,
		  { "Bandwidth",	"stun.port.bandwidth", 	FT_UINT32,
		    BASE_DEC, 	NULL,	0x0, 	NULL, HFILL }
		},
	};

	/* Setup protocol subtree array */
	static gint *ett[] = {
		&ett_stun,
		&ett_stun_type,
		&ett_stun_att_all,
		&ett_stun_att,
		&ett_stun_att_type,
	};

	/* Register the protocol name and description */
	proto_stun = proto_register_protocol("Session Traversal Utilities for NAT", "STUN", "stun");

	/* Required function calls to register the header fields and subtrees used */
	proto_register_field_array(proto_stun, hf, array_length(hf));
	proto_register_subtree_array(ett, array_length(ett));

	/* heuristic subdissectors (used for the DATA field) */
	register_heur_dissector_list("stun", &heur_subdissector_list);
}

void
proto_reg_handoff_stun(void)
{
	dissector_handle_t stun_tcp_handle;
	dissector_handle_t stun_udp_handle;

	stun_tcp_handle = create_dissector_handle(dissect_stun_tcp, proto_stun);
	stun_udp_handle = new_create_dissector_handle(dissect_stun_udp, proto_stun);

	dissector_add_uint("tcp.port", TCP_PORT_STUN, stun_tcp_handle);
	dissector_add_uint("udp.port", UDP_PORT_STUN, stun_udp_handle);

	heur_dissector_add("udp",  dissect_stun_heur, proto_stun);
	heur_dissector_add("tcp",  dissect_stun_heur, proto_stun);
	heur_dissector_add("stun", dissect_stun_heur, proto_stun);

	data_handle = find_dissector("data");
}