aboutsummaryrefslogtreecommitdiffstats
path: root/packet-mmse.c
blob: 7a55215b3d5597bb070517e64ecd0172d92be926 (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
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
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
/* packet-mmse.c
 * Routines for MMS Message Encapsulation dissection
 * Copyright 2001, Tom Uijldert <tom.uijldert@cmg.nl>
 * Copyright 2004, Olivier Biot
 *
 * $Id$
 *
 * Ethereal - Network traffic analyzer
 * By Gerald Combs <gerald@ethereal.com>
 * 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.
 * ----------
 *
 * Dissector of an encoded Multimedia message PDU, as defined by the WAPForum
 * (http://www.wapforum.org) in "WAP-209-MMSEncapsulation-20020105-a".
 * Subsequent releases of MMS are in control of the Open Mobile Alliance (OMA):
 * Dissection of MMS 1.1 as in OMA-MMS-ENC-v1.1.
 * Dissection of MMS 1.2 as in OMA-MMS-ENC-v1.2 (not finished yet).
 */

/* This file has been edited with 8-space tabs and 4-space indentation */

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

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <glib.h>

#include <epan/packet.h>
#include "packet-wap.h"
#include "packet-wsp.h"
/* #include "packet-mmse.h" */		/* We autoregister	*/

#define	MM_QUOTE		0x7F	/* Quoted string	*/

#define MMS_CONTENT_TYPE	0x3E	/* WINA-value for mms-message	*/

/* General-purpose debug logger.
 * Requires double parentheses because of variable arguments of printf().
 *
 * Enable debug logging for MMSE by defining AM_CFLAGS
 * so that it contains "-DDEBUG_mmse"
 */
#ifdef DEBUG_mmse
#define DebugLog(x) \
	printf("%s:%u: ", __FILE__, __LINE__); \
	printf x; \
	fflush(stdout)
#else
#define DebugLog(x) ;
#endif


/*
 * Forward declarations
 */
static void dissect_mmse_standalone(tvbuff_t *, packet_info *, proto_tree *);
static void dissect_mmse_encapsulated(tvbuff_t *, packet_info *, proto_tree *);
static void dissect_mmse(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
	guint8 pdut, char *message_type);

/*
 * Header field values
 */
/* MMS 1.0 */
#define MM_BCC_HDR		0x81	/* Bcc			*/
#define MM_CC_HDR		0x82	/* Cc			*/
#define MM_CLOCATION_HDR	0x83	/* X-Mms-Content-Location	*/
#define MM_CTYPE_HDR		0x84	/* Content-Type		*/
#define MM_DATE_HDR		0x85	/* Date				*/
#define MM_DREPORT_HDR		0x86	/* X-Mms-Delivery-Report	*/
#define MM_DTIME_HDR		0x87	/* X-Mms-Delivery-Time		*/
#define MM_EXPIRY_HDR		0x88	/* X-Mms-Expiry			*/
#define MM_FROM_HDR		0x89	/* From				*/
#define MM_MCLASS_HDR		0x8A	/* X-Mms-Message-Class		*/
#define MM_MID_HDR		0x8B	/* Message-ID			*/
#define MM_MTYPE_HDR		0x8C	/* X-Mms-Message-Type		*/
#define MM_VERSION_HDR		0x8D	/* X-Mms-MMS-Version		*/
#define MM_MSIZE_HDR		0x8E	/* X-Mms-Message-Size		*/
#define MM_PRIORITY_HDR		0x8F	/* X-Mms-Priority		*/
#define MM_RREPLY_HDR		0x90	/* X-Mms-Read-Reply		*/
#define MM_RALLOWED_HDR		0x91	/* X-Mms-Report-Allowed		*/
#define MM_RSTATUS_HDR		0x92	/* X-Mms-Response-Status	*/
#define MM_RTEXT_HDR		0x93	/* X-Mms-Response-Text		*/
#define MM_SVISIBILITY_HDR	0x94	/* X-Mms-Sender-Visibility	*/
#define MM_STATUS_HDR		0x95	/* X-Mms-Status			*/
#define MM_SUBJECT_HDR		0x96	/* Subject			*/
#define MM_TO_HDR		0x97	/* To				*/
#define MM_TID_HDR		0x98	/* X-Mms-Transaction-Id		*/
/* MMS 1.1 */
#define MM_RETRIEVE_STATUS_HDR	0x99	/* X-Mms-Retrieve-Status	*/
#define MM_RETRIEVE_TEXT_HDR	0x9A	/* X-Mms-Retrieve-Text		*/
#define MM_READ_STATUS_HDR	0x9B	/* X-Mms-Read-Status		*/
#define MM_REPLY_CHARGING_HDR	0x9C	/* X-Mms-Reply-Charging		*/
#define MM_REPLY_CHARGING_DEADLINE_HDR	\
				0x9D	/* X-Mms-Reply-Charging-Deadline*/
#define MM_REPLY_CHARGING_ID_HDR	\
				0x9E	/* X-Mms-Reply-Charging-ID	*/
#define MM_REPLY_CHARGING_SIZE_HDR	\
				0x9F	/* X-Mms-Reply-Charging-Size	*/
#define MM_PREV_SENT_BY_HDR	0xA0	/* X-Mms-Previously-Sent-By	*/
#define MM_PREV_SENT_DATE_HDR	0xA1	/* X-Mms-Previously-Sent-Date	*/
/* MMS 1.2 */
#define MM_STORE_HDR		0xA2	/* X-Mms-Store			*/
#define MM_MM_STATE_HDR		0xA3	/* X-Mms-MM-State		*/
#define MM_MM_FLAGS_HDR		0xA4	/* X-Mms-MM-Flags		*/
#define MM_STORE_STATUS_HDR	0xA5	/* X-Mms-Store-Status		*/
#define MM_STORE_STATUS_TEXT_HDR	\
				0xA6	/* X-Mms-Store-Status-Text	*/
#define MM_STORED_HDR		0xA7	/* X-Mms-Stored			*/
#define MM_ATTRIBUTES_HDR	0xA8	/* X-Mms-Attributes		*/
#define MM_TOTALS_HDR		0xA9	/* X-Mms-Totals			*/
#define MM_MBOX_TOTALS_HDR	0xAA	/* X-Mms-Mbox-Totals		*/
#define MM_QUOTAS_HDR		0xAB	/* X-Mms-Quotas			*/
#define MM_MBOX_QUOTAS_HDR	0xAC	/* X-Mms-Mbox-Quotas		*/
#define MM_MBOX_MSG_COUNT_HDR	0xAD	/* X-Mms-Message-Count		*/
#define MM_CONTENT_HDR		0xAE	/* Content			*/
#define MM_START_HDR		0xAF	/* X-Mms-Start			*/
#define MM_ADDITIONAL_HDR	0xB0	/* Additional-headers		*/
#define MM_DISTRIBUION_IND_HDR	0xB1	/* X-Mms-Distribution-Indcator	*/
#define MM_ELEMENT_DESCR_HDR	0xB2	/* X-Mms-Element-Descriptor	*/
#define MM_LIMIT_HDR		0xB3	/* X-Mms-Limit			*/

static const value_string vals_mm_header_names[] = {
	/* MMS 1.0 */
	{ MM_BCC_HDR,			"Bcc" },
	{ MM_CC_HDR,			"Cc" },
	{ MM_CLOCATION_HDR,		"X-Mms-Content-Location" },
	{ MM_CTYPE_HDR,			"X-Mms-Content-Type" },
	{ MM_DATE_HDR,			"Date" },
	{ MM_DREPORT_HDR,		"X-Mms-Delivery-Report" },
	{ MM_DTIME_HDR,			"X-Mms-Delivery-Time" },
	{ MM_EXPIRY_HDR,		"X-Mms-Expiry" },
	{ MM_FROM_HDR,			"From" },
	{ MM_MCLASS_HDR,		"X-Mms-Message-Class" },
	{ MM_MID_HDR,			"Message-ID" },
	{ MM_MTYPE_HDR,			"X-Mms-Message-Type" },
	{ MM_VERSION_HDR,		"X-Mms-MMS-Version" },
	{ MM_MSIZE_HDR,			"X-Mms-Message-Size" },
	{ MM_PRIORITY_HDR,		"X-Mms-Priority" },
	{ MM_RREPLY_HDR,		"X-Mms-Read-Reply" },
	{ MM_RALLOWED_HDR,		"X-Mms-Report-Allowed" },
	{ MM_RSTATUS_HDR,		"X-Mms-Response-Status" },
	{ MM_RTEXT_HDR,			"X-Mms-Response-Text" },
	{ MM_SVISIBILITY_HDR,		"X-Mms-Sender-Visibility" },
	{ MM_STATUS_HDR,		"X-Mms-Status" },
	{ MM_SUBJECT_HDR,		"Subject" },
	{ MM_TO_HDR,			"To" },
	{ MM_TID_HDR,			"X-Mms-Transaction-Id" },
	/* MMS 1.1 */
	{ MM_RETRIEVE_STATUS_HDR,	"X-Mms-Retrieve-Status" },
	{ MM_RETRIEVE_TEXT_HDR,		"X-Mms-Retrieve-Text" },
	{ MM_READ_STATUS_HDR,		"X-Mms-Read-Status" },
	{ MM_REPLY_CHARGING_HDR,	"X-Mms-Reply-Charging" },
	{ MM_REPLY_CHARGING_DEADLINE_HDR,
					"X-Mms-Reply-Charging-Deadline" },
	{ MM_REPLY_CHARGING_ID_HDR,	"X-Mms-Reply-Charging-ID" },
	{ MM_REPLY_CHARGING_SIZE_HDR,	"X-Mms-Reply-Charging-Size" },
	{ MM_PREV_SENT_BY_HDR,		"X-Mms-Previously-Sent-By" },
	{ MM_PREV_SENT_DATE_HDR,	"X-Mms-Previously-Sent-Date" },
	/* MMS 1.2 */
	{ MM_STORE_HDR,			"X-Mms-Store" },
	{ MM_MM_STATE_HDR,		"X-Mms-MM-State	" },
	{ MM_MM_FLAGS_HDR,		"X-Mms-MM-Flags	" },
	{ MM_STORE_STATUS_HDR,		"X-Mms-Store-Status" },
	{ MM_STORE_STATUS_TEXT_HDR,	"X-Mms-Store-Status-Text" },
	{ MM_STORED_HDR,		"X-Mms-Stored" },
	{ MM_ATTRIBUTES_HDR,		"X-Mms-Attributes" },
	{ MM_TOTALS_HDR,		"X-Mms-Totals" },
	{ MM_MBOX_TOTALS_HDR,		"X-Mms-Mbox-Totals" },
	{ MM_QUOTAS_HDR,		"X-Mms-Quotas" },
	{ MM_MBOX_QUOTAS_HDR,		"X-Mms-Mbox-Quotas" },
	{ MM_MBOX_MSG_COUNT_HDR,	"X-Mms-Message-Count" },
	{ MM_CONTENT_HDR,		"Content" },
	{ MM_START_HDR,			"X-Mms-Start" },
	{ MM_ADDITIONAL_HDR,		"Additional-headers" },
	{ MM_DISTRIBUION_IND_HDR,	"X-Mms-Distribution-Indcator" },
	{ MM_ELEMENT_DESCR_HDR,		"X-Mms-Element-Descriptor" },
	{ MM_LIMIT_HDR,			"X-Mms-Limit" },

	{ 0x00, NULL },
};
/*
 * Initialize the protocol and registered fields
 */
static int proto_mmse = -1;

static int hf_mmse_message_type		= -1;
static int hf_mmse_transaction_id	= -1;
static int hf_mmse_mms_version		= -1;
static int hf_mmse_bcc			= -1;
static int hf_mmse_cc			= -1;
static int hf_mmse_content_location	= -1;
static int hf_mmse_date			= -1;
static int hf_mmse_delivery_report	= -1;
static int hf_mmse_delivery_time_abs	= -1;
static int hf_mmse_delivery_time_rel	= -1;
static int hf_mmse_expiry_abs		= -1;
static int hf_mmse_expiry_rel		= -1;
static int hf_mmse_from			= -1;
static int hf_mmse_message_class_id	= -1;
static int hf_mmse_message_class_str	= -1;
static int hf_mmse_message_id		= -1;
static int hf_mmse_message_size		= -1;
static int hf_mmse_priority		= -1;
static int hf_mmse_read_reply		= -1;
static int hf_mmse_report_allowed	= -1;
static int hf_mmse_response_status	= -1;
static int hf_mmse_response_text	= -1;
static int hf_mmse_sender_visibility	= -1;
static int hf_mmse_status		= -1;
static int hf_mmse_subject		= -1;
static int hf_mmse_to			= -1;
static int hf_mmse_content_type		= -1;
static int hf_mmse_ffheader		= -1;
/* MMSE 1.1 */
static int hf_mmse_read_report		= -1;
static int hf_mmse_retrieve_status	= -1;
static int hf_mmse_retrieve_text	= -1;
static int hf_mmse_read_status		= -1;
static int hf_mmse_reply_charging	= -1;
static int hf_mmse_reply_charging_deadline	= -1;
static int hf_mmse_reply_charging_id	= -1;
static int hf_mmse_reply_charging_size	= -1;
static int hf_mmse_prev_sent_by	= -1;
static int hf_mmse_prev_sent_by_fwd_count	= -1;
static int hf_mmse_prev_sent_by_address	= -1;
static int hf_mmse_prev_sent_date	= -1;
static int hf_mmse_prev_sent_date_fwd_count	= -1;
static int hf_mmse_prev_sent_date_date	= -1;

/*
 * Initialize the subtree pointers
 */
static gint ett_mmse			= -1;
static gint ett_mmse_hdr_details	= -1;

/*
 * Valuestrings for PDU types
 */
/* MMS 1.0 */
#define PDU_M_SEND_REQ		0x80
#define PDU_M_SEND_CONF		0x81
#define PDU_M_NOTIFICATION_IND	0x82
#define PDU_M_NOTIFYRESP_IND	0x83
#define PDU_M_RETRIEVE_CONF	0x84
#define PDU_M_ACKNOWLEDGE_IND	0x85
#define PDU_M_DELIVERY_IND	0x86
/* MMS 1.1 */
#define PDU_M_READ_REC_IND	0x87
#define PDU_M_READ_ORIG_IND	0x88
#define PDU_M_FORWARD_REQ	0x89
#define PDU_M_FORWARD_CONF	0x8A
/* MMS 1.2 */
#define PDU_M_MBOX_STORE_REQ	0x8B
#define PDU_M_MBOX_STORE_CONF	0x8C
#define PDU_M_MBOX_VIEW_REQ	0x8D
#define PDU_M_MBOX_VIEW_CONF	0x8E
#define PDU_M_MBOX_UPLOAD_REQ	0x8F
#define PDU_M_MBOX_UPLOAD_CONF	0x90
#define PDU_M_MBOX_DELETE_REQ	0x91
#define PDU_M_MBOX_DELETE_CONF	0x92
#define PDU_M_MBOX_DESCR	0x93

#define pdu_has_content(pdut) \
	(  ((pdut) == PDU_M_SEND_REQ) \
	|| ((pdut) == PDU_M_DELIVERY_IND) \
	|| ((pdut) == PDU_M_RETRIEVE_CONF) \
	|| ((pdut) == PDU_M_MBOX_VIEW_CONF) \
	|| ((pdut) == PDU_M_MBOX_DESCR) \
	|| ((pdut) == PDU_M_MBOX_UPLOAD_REQ) \
	)

static const value_string vals_message_type[] = {
    /* MMS 1.0 */
    { PDU_M_SEND_REQ,		"m-send-req" },
    { PDU_M_SEND_CONF,		"m-send-conf" },
    { PDU_M_NOTIFICATION_IND,	"m-notification-ind" },
    { PDU_M_NOTIFYRESP_IND,	"m-notifyresp-ind" },
    { PDU_M_RETRIEVE_CONF,	"m-retrieve-conf" },
    { PDU_M_ACKNOWLEDGE_IND,	"m-acknowledge-ind" },
    { PDU_M_DELIVERY_IND,	"m-delivery-ind" },
    /* MMS 1.1 */
    { PDU_M_READ_REC_IND,	"m-read-rec-ind" },
    { PDU_M_READ_ORIG_IND,	"m-read-orig-ind" },
    { PDU_M_FORWARD_REQ,	"m-forward-req" },
    { PDU_M_FORWARD_CONF,	"m-forward-conf" },
    /* MMS 1.2 */
    { PDU_M_MBOX_STORE_REQ,	"m-mbox-store-req" },
    { PDU_M_MBOX_STORE_CONF,	"m-mbox-store-conf" },
    { PDU_M_MBOX_VIEW_REQ,	"m-mbox-view-req" },
    { PDU_M_MBOX_VIEW_CONF,	"m-mbox-view-conf" },
    { PDU_M_MBOX_UPLOAD_REQ,	"m-mbox-upload-req" },
    { PDU_M_MBOX_UPLOAD_CONF,	"m-mbox-upload-conf" },
    { PDU_M_MBOX_DELETE_REQ,	"m-mbox-delete-req" },
    { PDU_M_MBOX_DELETE_CONF,	"m-mbox-delete-conf" },
    { PDU_M_MBOX_DESCR,		"m-mbox-descr" },
    { 0x00, NULL },
};

static const value_string vals_yes_no[] = {
    { 0x80, "Yes" },
    { 0x81, "No" },
    { 0x00, NULL },
};

static const value_string vals_message_class[] = {
    { 0x80, "Personal" },
    { 0x81, "Advertisement" },
    { 0x82, "Informational" },
    { 0x83, "Auto" },
    { 0x00, NULL },
};

static const value_string vals_priority[] = {
    { 0x80, "Low" },
    { 0x81, "Normal" },
    { 0x82, "High" },
    { 0x00, NULL },
};

static const value_string vals_response_status[] = {
    /* MMS 1.0 - obsolete as from MMS 1.1 */
    { 0x80, "Ok" },
    { 0x81, "Unspecified" },
    { 0x82, "Service denied" },
    { 0x83, "Message format corrupt" },
    { 0x84, "Sending address unresolved" },
    { 0x85, "Message not found" },
    { 0x86, "Network problem" },
    { 0x87, "Content not accepted" },
    { 0x88, "Unsupported message" },

    /*
     * Transient errors
     */
    /* MMS 1.1 */
    { 0xC0, "Transient failure" },
    { 0xC1, "Transient: Sending address unresolved" },
    { 0xC2, "Transient: Message not found" },
    { 0xC3, "Transient: Network problem" },
    /* MMS 1.2 */
    { 0xC4, "Transient: Partial success" },

    /*
     * Permanent errors
     */
    /* MMS 1.1 */
    { 0xE0, "Permanent failure" },
    { 0xE1, "Permanent: Service denied" },
    { 0xE2, "Permanent: Message format corrupt" },
    { 0xE3, "Permanent: Sending address unresolved" },
    { 0xE4, "Permanent: Message not found" },
    { 0xE5, "Permanent: Content not accepted" },
    { 0xE6, "Permanent: Reply charging limitations not met" },
    { 0xE7, "Permanent: Reply charging request not accepted" },
    { 0xE8, "Permanent: Reply charging forwarding denied" },
    { 0xE9, "Permanent: Reply charging not supported" },
    /* MMS 1.2 */
    { 0xEA, "Permanent: Address hiding not supported" },
    
    { 0x00, NULL },
};

static const value_string vals_sender_visibility[] = {
    { 0x80, "Hide" },
    { 0x81, "Show" },
    { 0x00, NULL },
};

static const value_string vals_message_status[] = {
    /* MMS 1.0 */
    { 0x80, "Expired" },
    { 0x81, "Retrieved" },
    { 0x82, "Rejected" },
    { 0x83, "Deferred" },
    { 0x84, "Unrecognized" },
    /* MMS 1.1 */
    { 0x85, "Indeterminate" },
    { 0x86, "Forwarded" },
    /* MMS 1.2 */
    { 0x87, "Unreachable" },
    
    { 0x00, NULL },
};

static const value_string vals_retrieve_status[] = {
    /*
     * Transient errors
     */
    /* MMS 1.1 */
    { 0xC0, "Transient failure" },
    { 0xC1, "Transient: Message not found" },
    { 0xC2, "Transient: Network problem" },

    /*
     * Permanent errors
     */
    /* MMS 1.1 */
    { 0xE0, "Permanent failure" },
    { 0xE1, "Permanent: Service denied" },
    { 0xE2, "Permanent: Message not found" },
    { 0xE3, "Permanent: Content unsupported" },

    { 0x00, NULL },
};

static const value_string vals_read_status[] = {
    { 0x80, "Read" },
    { 0x81, "Deleted without being read" },

    { 0x00, NULL },
};

static const value_string vals_reply_charging[] = {
    { 0x80, "Requested" },
    { 0x81, "Requested text only" },
    { 0x82, "Accepted" },
    { 0x83, "Accepted text only" },

    { 0x00, NULL },
};

static const value_string vals_reply_charging_deadline[] = {
    { 0x80, "Absolute" },
    { 0x81, "Relative" },

    { 0x00, NULL },
};

/*!
 * Decodes a Text-string from the protocol data
 * 	Text-string = [Quote] *TEXT End-of-string
 * 	Quote	    = <Octet 127>
 * 	End-of-string = <Octet 0>
 *
 * \todo Shouldn't we be sharing this with WSP (packet-wap.c)?
 *
 * \param	tvb	The buffer with PDU-data
 * \param	offset	Offset within that buffer
 * \param	strval	Pointer to variable into which to put pointer to
 *			buffer allocated to hold the text; must be freed
 *			when no longer used
 *
 * \return		The length in bytes of the entire field
 */
static guint
get_text_string(tvbuff_t *tvb, guint offset, char **strval)
{
    guint	 len;

    DebugLog(("get_text_string(tvb = %p, offset = %u, **strval) - start\n", 
		tvb, offset));
    len = tvb_strsize(tvb, offset);
    DebugLog((" [1] tvb_strsize(tvb, offset) == %u\n", len));
    if (tvb_get_guint8(tvb, offset) == MM_QUOTE)
	*strval = (char *)tvb_memdup(tvb, offset + 1, len - 1);
    else
	*strval = (char *)tvb_memdup(tvb, offset, len);
    DebugLog((" [3] Return(len) == %u\n", len));
    return len;
}

/*!
 * Decodes a Value-length from the protocol data.
 * 	Value-length = Short-length | (Length-quote Length)
 * 	Short-length = <Any octet 0-30>
 * 	Length-quote = <Octet 31>
 * 	Length	     = Uintvar-integer
 *
 * \todo Shouldn't we be sharing this with WSP (packet-wap.c)?
 *
 * \param	tvb		The buffer with PDU-data
 * \param	offset		Offset within that buffer
 * \param	byte_count	Returns the length in bytes of
 *				the "Value-length" field.
 *
 * \return			The actual value of "Value-length"
 */
static guint
get_value_length(tvbuff_t *tvb, guint offset, guint *byte_count)
{
    guint	 field;

    field = tvb_get_guint8(tvb, offset++);
    if (field < 31)
	*byte_count = 1;
    else {			/* Must be 31 so, Uintvar follows	*/
	field = tvb_get_guintvar(tvb, offset, byte_count);
	(*byte_count)++;
    }
    return field;
}

/*!
 * Decodes an Encoded-string-value from the protocol data
 * 	Encoded-string-value = Text-string | Value-length Char-set Text-string
 *
 * \param	tvb	The buffer with PDU-data
 * \param	offset	Offset within that buffer
 * \param	strval	Pointer to variable into which to put pointer to
 *			buffer allocated to hold the text; must be freed
 *			when no longer used
 *
 * \return		The length in bytes of the entire field
 */
static guint
get_encoded_strval(tvbuff_t *tvb, guint offset, char **strval)
{
    guint	 field;
    guint	 length;
    guint	 count;

    field = tvb_get_guint8(tvb, offset);

    if (field < 32) {
	length = get_value_length(tvb, offset, &count);
	if (length < 2) {
	    *strval = g_strdup("");
	} else {
	    /* \todo	Something with "Char-set", skip for now	*/
	    *strval = (char *)tvb_get_string(tvb, offset + count + 1, length - 1);
	}
	return count + length;
    } else
	return get_text_string(tvb, offset, strval);
}

/*!
 * Decodes a Long-integer from the protocol data
 * 	Long-integer = Short-length Multi-octet-integer
 * 	Short-length = <Any octet 0-30>
 * 	Multi-octet-integer = 1*30OCTET
 *
 * \todo Shouldn't we be sharing this with WSP (packet-wap.c)?
 *
 * \param	tvb		The buffer with PDU-data
 * \param	offset		Offset within that buffer
 * \param	byte_count	Returns the length in bytes of the field
 *
 * \return			The value of the Long-integer
 *
 * \note	A maximum of 4-byte integers will be handled.
 */
static guint
get_long_integer(tvbuff_t *tvb, guint offset, guint *byte_count)
{
    guint	 val;

    *byte_count = tvb_get_guint8(tvb, offset++);
    switch (*byte_count) {
	case 1:
	    val = tvb_get_guint8(tvb, offset);
	    break;
	case 2:
	    val = tvb_get_ntohs(tvb, offset);
	    break;
	case 3:
	    val = tvb_get_ntoh24(tvb, offset);
	    break;
	case 4:
	    val = tvb_get_ntohl(tvb, offset);
	    break;
	default:
	    val = 0;
	    break;
    }
    (*byte_count)++;
    return val;
}

/*!
 * Decodes an Integer-value from the protocol data
 * 	Integer-value = Short-integer | Long-integer
 * 	Short-integer = OCTET
 * 	Long-integer = Short-length Multi-octet-integer
 * 	Short-length = <Any octet 0-30>
 * 	Multi-octet-integer = 1*30OCTET
 *
 * \todo Shouldn't we be sharing this with WSP (packet-wap.c)?
 *
 * \param	tvb		The buffer with PDU-data
 * \param	offset		Offset within that buffer
 * \param	byte_count	Returns the length in bytes of the field
 *
 * \return			The value of the Long-integer
 *
 * \note	A maximum of 4-byte integers will be handled.
 */
static guint
get_integer_value(tvbuff_t *tvb, guint offset, guint *byte_count)
{
    guint	 val;
    guint8 peek;

    peek = tvb_get_guint8(tvb, offset++);
    if (peek & 0x80) {
	val = peek & 0x7F;
	*byte_count = 1;
	return val;
    } else {
	*byte_count = peek;
	switch (peek) {
	case 1:
	    val = tvb_get_guint8(tvb, offset);
	    break;
	case 2:
	    val = tvb_get_ntohs(tvb, offset);
	    break;
	case 3:
	    val = tvb_get_ntoh24(tvb, offset);
	    break;
	case 4:
	    val = tvb_get_ntohl(tvb, offset);
	    break;
	default:
	    val = 0;
	    break;
	}
    }
    (*byte_count)++;
    return val;
}

/* Code to actually dissect the packets */
static gboolean
dissect_mmse_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
    guint8	 pdut;

	DebugLog(("dissect_mmse_heur()\n"));
    /*
     * Check if data makes sense for it to be dissected as MMSE:  Message-type
     * field must make sense and followed by either Transaction-Id
     * or MMS-Version header
     */
    if (tvb_get_guint8(tvb, 0) != MM_MTYPE_HDR)
	return FALSE;
    pdut = tvb_get_guint8(tvb, 1);
    if (match_strval(pdut, vals_message_type) == NULL)
	return FALSE;
    if ((tvb_get_guint8(tvb, 2) != MM_TID_HDR) &&
	(tvb_get_guint8(tvb, 2) != MM_VERSION_HDR))
	return FALSE;
    dissect_mmse_standalone(tvb, pinfo, tree);
    return TRUE;
}

static void
dissect_mmse_standalone(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
    guint8	 pdut;
    char	 *message_type;

    DebugLog(("dissect_mmse_standalone() - START (Packet %u)\n",
		pinfo->fd->num));

    pdut = tvb_get_guint8(tvb, 1);
    message_type = match_strval(pdut, vals_message_type);

    /* Make entries in Protocol column and Info column on summary display */
    if (check_col(pinfo->cinfo, COL_PROTOCOL))
	col_set_str(pinfo->cinfo, COL_PROTOCOL, "MMSE");

    if (check_col(pinfo->cinfo, COL_INFO)) {
	col_clear(pinfo->cinfo, COL_INFO);
	col_add_fstr(pinfo->cinfo, COL_INFO, "MMS %s", message_type);
    }

    dissect_mmse(tvb, pinfo, tree, pdut, message_type);
}

static void
dissect_mmse_encapsulated(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
    guint8	 pdut;
    char	 *message_type;

    DebugLog(("dissect_mmse_encapsulated() - START (Packet %u)\n",
		pinfo->fd->num));

    pdut = tvb_get_guint8(tvb, 1);
    message_type = match_strval(pdut, vals_message_type);

    /* Make entries in Info column on summary display */
    if (check_col(pinfo->cinfo, COL_INFO)) {
	col_append_sep_fstr(pinfo->cinfo, COL_INFO, " ", "(MMS %s)",
		message_type);
    }

    dissect_mmse(tvb, pinfo, tree, pdut, message_type);
}

static void
dissect_mmse(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint8 pdut,
	char *message_type)
{
    guint	 offset;
    guint8	 field = 0;
    char	 *strval;
    guint	 length;
    guint	 count;
    guint8	 version = 0x80; /* Default to MMSE 1.0 */

    /* Set up structures needed to add the protocol subtree and manage it */
    proto_item	*ti = NULL;
    proto_tree	*mmse_tree = NULL;

    DebugLog(("dissect_mmse() - START (Packet %u)\n", pinfo->fd->num));

    /* If tree == NULL then we are only interested in protocol dissection
     * up to reassembly and handoff to subdissectors if applicable; the
     * columns must be set appropriately too.
     * If tree != NULL then we also want to display the protocol tree
     * with its fields.
     * 
     * In the interest of speed, skip protocol tree item generation
     * if tree is NULL.
     */
    if (tree) {
	DebugLog(("tree != NULL\n"));

	ti = proto_tree_add_item(tree, proto_mmse, tvb, 0, -1, FALSE);
	proto_item_append_text(ti, ", Type: %s", message_type);
	/* create display subtree for the protocol */
	mmse_tree = proto_item_add_subtree(ti, ett_mmse);

	/* Report PDU-type	*/
	proto_tree_add_uint(mmse_tree, hf_mmse_message_type, tvb, 0, 2, pdut);
    }

    offset = 2;			/* Skip Message-Type	*/

    /*
     * Cycle through MMS-headers
     *
     * NOTE - some PDUs may convey content which can be handed off
     *        to subdissectors.
     */
    if (tree || pdu_has_content(pdut)) {
	while ((offset < tvb_reported_length(tvb)) &&
	       (field = tvb_get_guint8(tvb, offset++)) != MM_CTYPE_HDR)
	{
	    DebugLog(("\tField =  0x%02X (offset = %u): %s\n",
			field, offset,
			val_to_str(field, vals_mm_header_names,
			    "Unknown MMS header 0x%02X")));
	    switch (field)
	    {
		case MM_TID_HDR:		/* Text-string	*/
		    length = get_text_string(tvb, offset, &strval);
		    if (tree) {
			proto_tree_add_string(mmse_tree, hf_mmse_transaction_id,
				tvb, offset - 1, length + 1,strval);
		    }
		    g_free(strval);
		    offset += length;
		    break;
		case MM_VERSION_HDR:		/* nibble-Major/nibble-minor*/
		    version = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			guint8	 major, minor;

			major = (version & 0x70) >> 4;
			minor = version & 0x0F;
			if (minor == 0x0F)
			    strval = g_strdup_printf("%u", major);
			else
			    strval = g_strdup_printf("%u.%u", major, minor);
			proto_tree_add_string(mmse_tree, hf_mmse_mms_version,
				tvb, offset - 2, 2, strval);
			g_free(strval);
		    }
		    break;
		case MM_BCC_HDR:		/* Encoded-string-value	*/
		    length = get_encoded_strval(tvb, offset, &strval);
		    if (tree) {
			proto_tree_add_string(mmse_tree, hf_mmse_bcc, tvb,
				offset - 1, length + 1, strval);
		    }
		    g_free(strval);
		    offset += length;
		    break;
		case MM_CC_HDR:			/* Encoded-string-value	*/
		    length = get_encoded_strval(tvb, offset, &strval);
		    if (tree) {
			proto_tree_add_string(mmse_tree, hf_mmse_cc, tvb,
				offset - 1, length + 1, strval);
		    }
		    g_free(strval);
		    offset += length;
		    break;
		case MM_CLOCATION_HDR:		/* Uri-value		*/
		    if (pdut == PDU_M_MBOX_DELETE_CONF) {
			/* General form with length */
			length = tvb_get_guint8(tvb, offset);
			if (length == 0x1F) {
			    guint length_len = 0;
			    length = tvb_get_guintvar(tvb, offset + 1,
				    &length_len);
			    length += 1 + length_len;
			} else {
			    length += 1;
			}
			if (tree) {
			    proto_tree_add_string(mmse_tree,
				    hf_mmse_content_location,
				    tvb, offset - 1, length + 1,
				    "<Undecoded value for m-mbox-delete-conf>");
			}
		    } else {
			length = get_text_string(tvb, offset, &strval);
			if (tree) {
			    proto_tree_add_string(mmse_tree,
				    hf_mmse_content_location,
				    tvb, offset - 1, length + 1, strval);
			}
			g_free(strval);
		    }
		    offset += length;
		    break;
		case MM_DATE_HDR:		/* Long-integer		*/
		    {
			guint		 tval;
			nstime_t	 tmptime;

			tval = get_long_integer(tvb, offset, &count);
			tmptime.secs = tval;
			tmptime.nsecs = 0;
			if (tree) {
			    proto_tree_add_time(mmse_tree, hf_mmse_date, tvb,
				    offset - 1, count + 1, &tmptime);
			}
		    }
		    offset += count;
		    break;
		case MM_DREPORT_HDR:		/* Yes|No		*/
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			proto_tree_add_uint(mmse_tree,
				hf_mmse_delivery_report,
				tvb, offset - 2, 2, field);
		    }
		    break;
		case MM_DTIME_HDR:
		    /*
		     * Value-length(Absolute-token Date-value|
		     * 		    Relative-token Delta-seconds-value)
		     */
		    length = get_value_length(tvb, offset, &count);
		    field = tvb_get_guint8(tvb, offset + count);
		    if (tree) {
			guint		 tval;
			nstime_t	 tmptime;
			guint		 cnt;

			tval =  get_long_integer(tvb, offset + count + 1, &cnt);
			tmptime.secs = tval;
			tmptime.nsecs = 0;

			if (field == 0x80)
			    proto_tree_add_time(mmse_tree,
				    hf_mmse_delivery_time_abs,
				    tvb, offset - 1,
				    length + count + 1, &tmptime);
			else
			    proto_tree_add_time(mmse_tree,
				    hf_mmse_delivery_time_rel,
				    tvb, offset - 1,
				    length + count + 1, &tmptime);
		    }
		    offset += length + count;
		    break;
		case MM_EXPIRY_HDR:
		    /*
		     * Value-length(Absolute-token Date-value|
		     * 		    Relative-token Delta-seconds-value)
		     */
		    length = get_value_length(tvb, offset, &count);
		    field = tvb_get_guint8(tvb, offset + count);
		    if (tree) {
			guint		 tval;
			nstime_t	 tmptime;
			guint		 cnt;

			tval = get_long_integer(tvb, offset + count + 1, &cnt);
			tmptime.secs = tval;
			tmptime.nsecs = 0;

			if (field == 0x80)
			    proto_tree_add_time(mmse_tree, hf_mmse_expiry_abs,
				    tvb, offset - 1,
				    length + count + 1, &tmptime);
			else
			    proto_tree_add_time(mmse_tree, hf_mmse_expiry_rel,
				    tvb, offset - 1,
				    length + count + 1, &tmptime);
		    }
		    offset += length + count;
		    break;
		case MM_FROM_HDR:
		    /*
		     * Value-length(Address-present-token Encoded-string-value
		     * 		    |Insert-address-token)
		     */
		    length = get_value_length(tvb, offset, &count);
		    if (tree) {
			field = tvb_get_guint8(tvb, offset + count);
			if (field == 0x81) {
			    proto_tree_add_string(mmse_tree, hf_mmse_from, tvb,
				    offset-1, length + count + 1,
				    "<insert address>");
			} else {
			    (void) get_encoded_strval(tvb, offset + count + 1,
						      &strval);
			    proto_tree_add_string(mmse_tree, hf_mmse_from, tvb,
				    offset-1, length + count + 1, strval);
			    g_free(strval);
			}
		    }
		    offset += length + count;
		    break;
		case MM_MCLASS_HDR:
		    /*
		     * Class-identifier|Text-string
		     */
		    field = tvb_get_guint8(tvb, offset);
		    if (field & 0x80) {
			offset++;
			if (tree) {
			    proto_tree_add_uint(mmse_tree,
				    hf_mmse_message_class_id,
				    tvb, offset - 2, 2, field);
			}
		    } else {
			length = get_text_string(tvb, offset, &strval);
			if (tree) {
			    proto_tree_add_string(mmse_tree,
				    hf_mmse_message_class_str,
				    tvb, offset - 1, length + 1,
				    strval);
			}
			g_free(strval);
			offset += length;
		    }
		    break;
		case MM_MID_HDR:		/* Text-string		*/
		    length = get_text_string(tvb, offset, &strval);
		    if (tree) {
			proto_tree_add_string(mmse_tree, hf_mmse_message_id,
				tvb, offset - 1, length + 1, strval);
		    }
		    g_free(strval);
		    offset += length;
		    break;
		case MM_MSIZE_HDR:		/* Long-integer		*/
		    length = get_long_integer(tvb, offset, &count);
		    if (tree) {
			proto_tree_add_uint(mmse_tree, hf_mmse_message_size,
				tvb, offset - 1, count + 1, length);
		    }
		    offset += count;
		    break;
		case MM_PRIORITY_HDR:		/* Low|Normal|High	*/
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			proto_tree_add_uint(mmse_tree, hf_mmse_priority, tvb,
				offset - 2, 2, field);
		    }
		    break;
		case MM_RREPLY_HDR:		/* Yes|No		*/
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			if (version == 0x80) { /* MMSE 1.0 */
			    proto_tree_add_uint(mmse_tree, hf_mmse_read_reply,
				    tvb, offset - 2, 2, field);
			} else {
			    proto_tree_add_uint(mmse_tree, hf_mmse_read_report,
				    tvb, offset - 2, 2, field);
			}
		    }
		    break;
		case MM_RALLOWED_HDR:		/* Yes|No		*/
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			proto_tree_add_uint(mmse_tree, hf_mmse_report_allowed,
				tvb, offset - 2, 2, field);
		    }
		    break;
		case MM_RSTATUS_HDR:
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			proto_tree_add_uint(mmse_tree, hf_mmse_response_status,
				tvb, offset - 2, 2, field);
		    }
		    break;
		case MM_RTEXT_HDR:		/* Encoded-string-value	*/
		    if (pdut == PDU_M_MBOX_DELETE_CONF) {
			/* General form with length */
			length = tvb_get_guint8(tvb, offset);
			if (length == 0x1F) {
			    guint length_len = 0;
			    length = tvb_get_guintvar(tvb, offset + 1,
				    &length_len);
			    length += 1 + length_len;
			} else {
			    length += 1;
			}
			if (tree) {
			    proto_tree_add_string(mmse_tree,
				    hf_mmse_content_location,
				    tvb, offset - 1, length + 1,
				    "<Undecoded value for m-mbox-delete-conf>");
			}
		    } else {
    			length = get_encoded_strval(tvb, offset, &strval);
			if (tree) {
			    proto_tree_add_string(mmse_tree,
				    hf_mmse_response_text, tvb, offset - 1,
				    length + 1, strval);
			}
			g_free(strval);
		    }
		    offset += length;
		    break;
		case MM_SVISIBILITY_HDR:	/* Hide|Show		*/
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			proto_tree_add_uint(mmse_tree,hf_mmse_sender_visibility,
				tvb, offset - 2, 2, field);
		    }
		    break;
		case MM_STATUS_HDR:
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			proto_tree_add_uint(mmse_tree, hf_mmse_status, tvb,
				offset - 2, 2, field);
		    }
		    break;
		case MM_SUBJECT_HDR:		/* Encoded-string-value	*/
		    length = get_encoded_strval(tvb, offset, &strval);
		    if (tree) {
			proto_tree_add_string(mmse_tree, hf_mmse_subject, tvb,
				offset - 1, length + 1, strval);
		    }
		    g_free(strval);
		    offset += length;
		    break;
		case MM_TO_HDR:			/* Encoded-string-value	*/
		    length = get_encoded_strval(tvb, offset, &strval);
		    if (tree) {
			proto_tree_add_string(mmse_tree, hf_mmse_to, tvb,
				offset - 1, length + 1, strval);
		    }
		    g_free(strval);
		    offset += length;
		    break;

		/*
		 * MMS Encapsulation 1.1
		 */
		case MM_RETRIEVE_STATUS_HDR:	/* Well-known-value */
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			proto_tree_add_uint(mmse_tree, hf_mmse_retrieve_status,
				tvb, offset - 2, 2, field);
		    }
		    break;
		case MM_RETRIEVE_TEXT_HDR:
		    if (pdut == PDU_M_MBOX_DELETE_CONF) {
			/* General form with length */
			length = tvb_get_guint8(tvb, offset);
			if (length == 0x1F) {
			    guint length_len = 0;
			    length = tvb_get_guintvar(tvb, offset + 1,
				    &length_len);
			    length += 1 + length_len;
			} else {
			    length += 1;
			}
			if (tree) {
			    proto_tree_add_string(mmse_tree,
				    hf_mmse_content_location,
				    tvb, offset - 1, length + 1,
				    "<Undecoded value for m-mbox-delete-conf>");
			}
		    } else {
			/* Encoded-string-value */
			length = get_encoded_strval(tvb, offset, &strval);
			if (tree) {
			    proto_tree_add_string(mmse_tree,
				    hf_mmse_retrieve_text, tvb, offset - 1,
				    length + 1, strval);
			}
			g_free(strval);
		    }
		    offset += length;
		    break;
		case MM_READ_STATUS_HDR:	/* Well-known-value */
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			proto_tree_add_uint(mmse_tree, hf_mmse_read_status,
				tvb, offset - 2, 2, field);
		    }
		    break;
		case MM_REPLY_CHARGING_HDR:	/* Well-known-value */
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			proto_tree_add_uint(mmse_tree, hf_mmse_reply_charging,
				tvb, offset - 2, 2, field);
		    }
		    break;
		case MM_REPLY_CHARGING_DEADLINE_HDR:	/* Well-known-value */
		    field = tvb_get_guint8(tvb, offset++);
		    if (tree) {
			proto_tree_add_uint(mmse_tree,
				hf_mmse_reply_charging_deadline,
				tvb, offset - 2, 2, field);
		    }
		    break;
		case MM_REPLY_CHARGING_ID_HDR:	/* Text-string */
		    length = get_text_string(tvb, offset, &strval);
		    if (tree) {
			proto_tree_add_string(mmse_tree,
				hf_mmse_reply_charging_id,
				tvb, offset - 1, length + 1, strval);
		    }
		    g_free(strval);
		    offset += length;
		    break;
		case MM_REPLY_CHARGING_SIZE_HDR:	/* Long-integer */
		    length = get_long_integer(tvb, offset, &count);
		    if (tree) {
			proto_tree_add_uint(mmse_tree,
				hf_mmse_reply_charging_size,
				tvb, offset - 1, count + 1, length);
		    }
		    offset += count;
		    break;
		case MM_PREV_SENT_BY_HDR:
		    /* Value-length Integer-value Encoded-string-value */
		    length = get_value_length(tvb, offset, &count);
		    if (tree) {
			guint32 fwd_count, count1, count2;			
			proto_tree *subtree = NULL;
			proto_item *ti = NULL;
			/* 1. Forwarded-count-value := Integer-value */
			fwd_count = get_integer_value(tvb, offset + count,
			    &count1);
			/* 2. Encoded-string-value */
			count2 = get_encoded_strval(tvb,
				offset + count + count1, &strval);
			/* Now render the fields */
			ti = proto_tree_add_string_format(tree,
				hf_mmse_prev_sent_by,
				tvb, offset - 1, 1 + count + length,
				"%s (Forwarded-count=%u)",
				strval, fwd_count);
			subtree = proto_item_add_subtree(ti,
				ett_mmse_hdr_details);
			proto_tree_add_uint(subtree,
				hf_mmse_prev_sent_by_fwd_count,
				tvb, offset + count, count1, fwd_count);
			proto_tree_add_string(subtree,
				hf_mmse_prev_sent_by_address,
				tvb, offset + count + count1, count2, strval);
			g_free(strval);
		    }
		    offset += length + count;
		    break;
		case MM_PREV_SENT_DATE_HDR:
		    /* Value-Length Forwarded-count-value Date-value */
		    length = get_value_length(tvb, offset, &count);
		    if (tree) {
			guint32 fwd_count, count1, count2;			
			guint		 tval;
			nstime_t	 tmptime;
			proto_tree *subtree = NULL;
			proto_item *ti = NULL;
			/* 1. Forwarded-count-value := Integer-value */
			fwd_count = get_integer_value(tvb, offset + count,
			    &count1);
			/* 2. Date-value := Long-integer */
			tval = get_long_integer(tvb, offset + count + count1,
				&count2);
			tmptime.secs = tval;
			tmptime.nsecs = 0;
			strval = abs_time_to_str(&tmptime);
			/* Now render the fields */
			ti = proto_tree_add_string_format(tree,
				hf_mmse_prev_sent_date,
				tvb, offset - 1, 1 + count + length,
				"%s (Forwarded-count=%u)",
				strval, fwd_count);
			subtree = proto_item_add_subtree(ti,
				ett_mmse_hdr_details);
			proto_tree_add_uint(subtree,
				hf_mmse_prev_sent_date_fwd_count,
				tvb, offset + count, count1, fwd_count);
			proto_tree_add_string(subtree,
				hf_mmse_prev_sent_date_date,
				tvb, offset + count + count1, count2, strval);
			g_free(strval);
		    }
		    offset += length + count;
		    break;

		/* MMS Encapsulation 1.2 */

		default:
		    if (field & 0x80) { /* Well-known WSP header encoding */
			guint8 peek = tvb_get_guint8(tvb, offset);
			char *hdr_name = val_to_str(field, vals_mm_header_names,
				"Unknown field (0x%02x)");
			DebugLog(("\t\tUndecoded well-known header: %s\n",
				    hdr_name));

			if (peek & 0x80) { /* Well-known value */
			    length = 1;
			    if (tree) {
				proto_tree_add_text(mmse_tree, tvb, offset - 1,
					length + 1,
					"%s: <Well-known value 0x%02x>"
					" (not decoded)",
					hdr_name, peek);
			    }
			} else if ((peek == 0) || (peek >= 0x20)) { /* Text */
			    length = get_text_string(tvb, offset, &strval);
			    if (tree) {
				proto_tree_add_text(mmse_tree, tvb, offset - 1,
					length + 1, "%s: %s (Not decoded)",
					hdr_name, strval);
				g_free(strval);
			    }
			} else { /* General form with length */
			    if (peek == 0x1F) { /* Value length in guintvar */
				guint length_len = 0;
				length = 1 + tvb_get_guintvar(tvb, offset + 1,
					&length_len);
				length += length_len;
			    } else { /* Value length in octet */
				length = 1 + tvb_get_guint8(tvb, offset);
			    }
			    if (tree) {
				proto_tree_add_text(mmse_tree, tvb, offset - 1,
					length + 1, "%s: "
					"<Value in general form> (not decoded)",
					hdr_name);
			    }
			}
			offset += length;
		    } else { /* Literal WSP header encoding */
			guint	 length2;
			char	 *strval2;

			--offset;
			length = get_text_string(tvb, offset, &strval);
			DebugLog(("\t\tUndecoded literal header: %s\n",
				    strval));
			CLEANUP_PUSH(g_free, strval);
			length2= get_text_string(tvb, offset+length, &strval2);

			if (tree) {
			    proto_tree_add_string_format(mmse_tree,
				    hf_mmse_ffheader, tvb, offset,
				    length + length2,
				    (const char *) tvb_get_ptr(
					    tvb, offset, length + length2),
				    "%s: %s", strval, strval2);
			}
			g_free(strval2);
			offset += length + length2;
			CLEANUP_CALL_AND_POP;
		    }
		    break;
	    }
	    DebugLog(("\tEnd(case)\n"));
	}
	DebugLog(("\tEnd(switch)\n"));
	if (field == MM_CTYPE_HDR) {
	    /*
	     * Eeehh, we're now actually back to good old WSP content-type
	     * encoding. Let's steal that from the WSP-dissector.
	     */
	    tvbuff_t	*tmp_tvb;
	    guint	 type;
	    const char	*type_str;

	    DebugLog(("Content-Type: [from WSP dissector]\n"));
	    DebugLog(("Calling add_content_type() in WSP dissector\n"));
	    offset = add_content_type(mmse_tree, tvb, offset, &type, &type_str);
	    DebugLog(("Generating new TVB subset (offset = %u)\n", offset));
	    tmp_tvb = tvb_new_subset(tvb, offset, -1, -1);
	    DebugLog(("Add POST data\n"));
	    add_post_data(mmse_tree, tmp_tvb, type, type_str, pinfo);
	    DebugLog(("Done!\n"));
	}
    } else {
	DebugLog(("tree == NULL and PDU has no potential content\n"));
    }

    /* If this protocol has a sub-dissector call it here, see section 1.8 */
    DebugLog(("dissect_mmse() - END\n"));
}


/* Register the protocol with Ethereal */

/* this format is required because a script is used to build the C function
 * that calls all the protocol registration.
 */
void
proto_register_mmse(void)
{
    /* Setup list of header fields  See Section 1.6.1 for details	*/
    static hf_register_info hf[] = {
	{   &hf_mmse_message_type,
	    {   "X-Mms-Message-Type", "mmse.message_type",
		FT_UINT8, BASE_HEX, VALS(vals_message_type), 0x00,
		"Specifies the transaction type. Effectively defines PDU.",
		HFILL
	    }
	},
	{   &hf_mmse_transaction_id,
	    {   "X-Mms-Transaction-ID", "mmse.transaction_id",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"A unique identifier for this transaction. "
		"Identifies request and corresponding response only.",
		HFILL
	    }
	},
	{   &hf_mmse_mms_version,
	    {   "X-Mms-MMS-Version", "mmse.mms_version",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Version of the protocol used.",
		HFILL
	    }
	},
	{   &hf_mmse_bcc,
	    {   "Bcc", "mmse.bcc",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Blind carbon copy.",
		HFILL
	    }
	},
	{   &hf_mmse_cc,
	    {   "Cc", "mmse.cc",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Carbon copy.",
		HFILL
	    }
	},
	{   &hf_mmse_content_location,
	    {   "X-Mms-Content-Location", "mmse.content_location",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Defines the location of the message.",
		HFILL
	    }
	},
	{   &hf_mmse_date,
	    {   "Date", "mmse.date",
		FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0x00,
		"Arrival timestamp of the message or sending timestamp.",
		HFILL
	    }
	},
	{   &hf_mmse_delivery_report,
	    {   "X-Mms-Delivery-Report", "mmse.delivery_report",
		FT_UINT8, BASE_HEX, VALS(vals_yes_no), 0x00,
		"Whether a report of message delivery is wanted or not.",
		HFILL
	    }
	},
	{   &hf_mmse_delivery_time_abs,
	    {   "X-Mms-Delivery-Time", "mmse.delivery_time.abs",
		FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0x00,
		"The time at which message delivery is desired.",
		HFILL
	    }
	},
	{   &hf_mmse_delivery_time_rel,
	    {   "X-Mms-Delivery-Time", "mmse.delivery_time.rel",
		FT_RELATIVE_TIME, BASE_NONE, NULL, 0x00,
		"The desired message delivery delay.",
		HFILL
	    }
	},
	{   &hf_mmse_expiry_abs,
	    {   "X-Mms-Expiry", "mmse.expiry.abs",
		FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0x00,
		"Time when message expires and need not be delivered anymore.",
		HFILL
	    }
	},
	{   &hf_mmse_expiry_rel,
	    {   "X-Mms-Expiry", "mmse.expiry.rel",
		FT_RELATIVE_TIME, BASE_NONE, NULL, 0x00,
		"Delay before message expires and need not be delivered anymore.",
		HFILL
	    }
	},
	{   &hf_mmse_from,
	    {   "From", "mmse.from",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Address of the message sender.",
		HFILL
	    }
	},
	{   &hf_mmse_message_class_id,
	    {   "X-Mms-Message-Class", "mmse.message_class.id",
		FT_UINT8, BASE_HEX, VALS(vals_message_class), 0x00,
		"Of what category is the message.",
		HFILL
	    }
	},
	{   &hf_mmse_message_class_str,
	    {   "X-Mms-Message-Class", "mmse.message_class.str",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Of what category is the message.",
		HFILL
	    }
	},
	{   &hf_mmse_message_id,
	    {   "Message-Id", "mmse.message_id",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Unique identification of the message.",
		HFILL
	    }
	},
	{   &hf_mmse_message_size,
	    {   "X-Mms-Message-Size", "mmse.message_size",
		FT_UINT32, BASE_DEC, NULL, 0x00,
		"The size of the message in octets.",
		HFILL
	    }
	},
	{   &hf_mmse_priority,
	    {   "X-Mms-Priority", "mmse.priority",
		FT_UINT8, BASE_HEX, VALS(vals_priority), 0x00,
		"Priority of the message.",
		HFILL
	    }
	},
	{   &hf_mmse_read_reply,
	    {   "X-Mms-Read-Reply", "mmse.read_reply",
		FT_UINT8, BASE_HEX, VALS(vals_yes_no), 0x00,
		"Whether a read report from every recipient is wanted.",
		HFILL
	    }
	},
	{   &hf_mmse_read_report,
	    {   "X-Mms-Read-Report", "mmse.read_report",
		FT_UINT8, BASE_HEX, VALS(vals_yes_no), 0x00,
		"Whether a read report from every recipient is wanted.",
		HFILL
	    }
	},
	{   &hf_mmse_report_allowed,
	    {   "X-Mms-Report-Allowed", "mmse.report_allowed",
		FT_UINT8, BASE_HEX, VALS(vals_yes_no), 0x00,
		"Sending of delivery report allowed or not.",
		HFILL
	    }
	},
	{   &hf_mmse_response_status,
	    {   "Response-Status", "mmse.response_status",
		FT_UINT8, BASE_HEX, VALS(vals_response_status), 0x00,
		"MMS-specific result of a message submission or retrieval.",
		HFILL
	    }
	},
	{   &hf_mmse_response_text,
	    {   "Response-Text", "mmse.response_text",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Additional information on MMS-specific result.",
		HFILL
	    }
	},
	{   &hf_mmse_sender_visibility,
	    {   "Sender-Visibility", "mmse.sender_visibility",
		FT_UINT8, BASE_HEX, VALS(vals_sender_visibility), 0x00,
		"Disclose sender identity to receiver or not.",
		HFILL
	    }
	},
	{   &hf_mmse_status,
	    {   "Status", "mmse.status",
		FT_UINT8, BASE_HEX, VALS(vals_message_status), 0x00,
		"Current status of the message.",
		HFILL
	    }
	},
	{   &hf_mmse_subject,
	    {   "Subject", "mmse.subject",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Subject of the message.",
		HFILL
	    }
	},
	{   &hf_mmse_to,
	    {   "To", "mmse.to",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Recipient(s) of the message.",
		HFILL
	    }
	},
	{   &hf_mmse_content_type,
	    {   "Data", "mmse.content_type",
		FT_NONE, BASE_NONE, NULL, 0x00,
		"Media content of the message.",
		HFILL
	    }
	},
	{   &hf_mmse_ffheader,
	    {   "Free format (not encoded) header", "mmse.ffheader",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Application header without corresponding encoding.",
		HFILL
	    }
	},
	/* MMSE 1.1 */
	{   &hf_mmse_retrieve_status,
	    {   "X-Mms-Retrieve-Status", "mmse.retrieve_status",
		FT_UINT8, BASE_HEX, VALS(vals_retrieve_status), 0x00,
		"MMS-specific result of a message retrieval.",
		HFILL
	    }
	},
	{   &hf_mmse_retrieve_text,
	    {   "X-Mms-Retrieve-Text", "mmse.retrieve_text",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Status text of a MMS message retrieval.",
		HFILL
	    }
	},
	{   &hf_mmse_read_status,
	    {   "X-Mms-Read-Status", "mmse.read_status",
		FT_UINT8, BASE_HEX, VALS(vals_read_status), 0x00,
		"MMS-specific message read status.",
		HFILL
	    }
	},
	{   &hf_mmse_reply_charging,
	    {   "X-Mms-Reply-Charging", "mmse.reply_charging",
		FT_UINT8, BASE_HEX, VALS(vals_reply_charging), 0x00,
		"MMS-specific message reply charging method.",
		HFILL
	    }
	},
	{   &hf_mmse_reply_charging_deadline,
	    {   "X-Mms-Reply-Charging-Deadline", "mmse.reply_charging_deadline",
		FT_UINT8, BASE_HEX, VALS(vals_reply_charging_deadline), 0x00,
		"MMS-specific message reply charging deadline type.",
		HFILL
	    }
	},
	{   &hf_mmse_reply_charging_id,
	    {   "X-Mms-Reply-Charging-Id", "mmse.reply_charging_id",
		FT_STRING, BASE_NONE, NULL, 0x00,
		"Unique reply charging identification of the message.",
		HFILL
	    }
	},
	{   &hf_mmse_reply_charging_size,
	    {   "X-Mms-Reply-Charging-Size", "mmse.reply_charging_size",
		FT_UINT32, BASE_DEC, NULL, 0x00,
		"The size of the reply charging in octets.",
		HFILL
	    }
	},
	{   &hf_mmse_prev_sent_by,
	    {   "X-Mms-Previously-Sent-By", "mmse.previously_sent_by",
    		FT_STRING, BASE_NONE, NULL, 0x00,
    		"Indicates that the MM has been previously sent by this user.",
    		HFILL
	    }
	},
	{   &hf_mmse_prev_sent_by_fwd_count,
	    {   "Forward Count", "mmse.previously_sent_by.forward_count",
		FT_UINT32, BASE_DEC, NULL, 0x00,
		"Forward count of the previously sent MM.",
		HFILL
	    }
	},
	{   &hf_mmse_prev_sent_by_address,
	    {   "Address", "mmse.previously_sent_by.address",
    		FT_STRING, BASE_NONE, NULL, 0x00,
    		"Indicates from whom the MM has been previously sent.",
    		HFILL
	    }
	},
	{   &hf_mmse_prev_sent_date,
	    {   "X-Mms-Previously-Sent-Date", "mmse.previously_sent_date",
    		FT_STRING, BASE_NONE, NULL, 0x00,
    		"Indicates the date that the MM has been previously sent.",
    		HFILL
	    }
	},
	{   &hf_mmse_prev_sent_date_fwd_count,
	    {   "Forward Count", "mmse.previously_sent_date.forward_count",
		FT_UINT32, BASE_DEC, NULL, 0x00,
		"Forward count of the previously sent MM.",
		HFILL
	    }
	},
	{   &hf_mmse_prev_sent_date_date,
	    {   "Date", "mmse.previously_sent_date.date",
		FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0x00,
		"Time when the MM has been previously sent.",
    		HFILL
	    }
	},



    };
    /* Setup protocol subtree array */
    static gint *ett[] = {
	&ett_mmse,
	&ett_mmse_hdr_details,
    };

    /* Register the protocol name and description */
    proto_mmse = proto_register_protocol("MMS Message Encapsulation",
					 "MMSE", "mmse");

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

/* If this dissector uses sub-dissector registration add registration routine.
 * This format is required because a script is used to find these routines and
 * create the code that calls these routines.
 */
void
proto_reg_handoff_mmse(void)
{
    dissector_handle_t mmse_standalone_handle;
    dissector_handle_t mmse_encapsulated_handle;

    heur_dissector_add("wsp", dissect_mmse_heur, proto_mmse);
    mmse_standalone_handle = create_dissector_handle(
	    dissect_mmse_standalone, proto_mmse);
    mmse_encapsulated_handle = create_dissector_handle(
	    dissect_mmse_encapsulated, proto_mmse);
	/* As the media types for WSP and HTTP are the same, the WSP dissector
	 * uses the same string dissector table as the HTTP protocol. */
    dissector_add_string("media_type",
	    "application/vnd.wap.mms-message", mmse_standalone_handle);
    dissector_add_string("multipart_media_type",
	    "application/vnd.wap.mms-message", mmse_encapsulated_handle);
}