summaryrefslogtreecommitdiffstats
path: root/gatchat/ppp_cp.c
blob: 16c0603872e1634edb0e9520dbf2c46177db7eb5 (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
/*
 *
 *  PPP library with GLib integration
 *
 *  Copyright (C) 2009-2010  Intel Corporation. All rights reserved.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <termios.h>
#include <glib.h>
#include <arpa/inet.h>

#include "gatppp.h"
#include "ppp.h"

static const char *pppcp_state_strings[] =
	{"INITIAL", "STARTING", "CLOSED", "STOPPED", "CLOSING", "STOPPING",
	"REQSENT", "ACKRCVD", "ACKSENT", "OPENED" };

static void pppcp_debug(struct pppcp_data *p, const char *func)
{
	GAtPPP *ppp = p->ppp;
	char *str;

	if (!ppp || !ppp->debugf)
		return;

	str = g_strdup_printf("%s: %s: current state %d:%s",
		p->prefix, func, p->state, pppcp_state_strings[p->state]);
	ppp->debugf(str, ppp->debug_data);
	g_free(str);
}

#define pppcp_trace(p) pppcp_debug(p, __FUNCTION__)

#define pppcp_to_ppp_packet(p) \
	(((guint8 *) p) - PPP_HEADROOM)

#define INITIAL_RESTART_TIMEOUT	3	/* restart interval in seconds */
#define MAX_TERMINATE		2
#define MAX_CONFIGURE		10
#define MAX_FAILURE		5
#define CP_HEADER_SZ		4

static void pppcp_packet_free(struct pppcp_packet *packet)
{
	g_free(pppcp_to_ppp_packet(packet));
}

static struct pppcp_packet *pppcp_packet_new(struct pppcp_data *data,
						guint type, guint bufferlen)
{
	struct pppcp_packet *packet;
	struct ppp_header *ppp_packet;
	guint16 packet_length = bufferlen + sizeof(*packet);

	ppp_packet = g_try_malloc0(packet_length + 2);
	if (!ppp_packet)
		return NULL;

	/* add our protocol information */
	ppp_packet->proto = htons(data->proto);

	/* advance past protocol to add CP header information */
	packet = (struct pppcp_packet *) (ppp_packet->info);

	packet->length = htons(packet_length);
	packet->code = type;
	return packet;
}

static gboolean pppcp_timeout(gpointer user_data)
{
	struct pppcp_timer_data *timer_data = user_data;

	pppcp_trace(timer_data->data);

	timer_data->restart_timer = 0;

	if (timer_data->restart_counter)
		pppcp_generate_event(timer_data->data, TO_PLUS, NULL, 0);
	else
		pppcp_generate_event(timer_data->data, TO_MINUS, NULL, 0);

	return FALSE;
}

static void pppcp_start_timer(struct pppcp_timer_data *timer_data)
{
	if (timer_data->restart_timer)
		return;

	timer_data->restart_timer =
		g_timeout_add_seconds(timer_data->restart_interval,
				pppcp_timeout, timer_data);
}

static void pppcp_stop_timer(struct pppcp_timer_data *timer_data)
{
	if (timer_data->restart_timer) {
		g_source_remove(timer_data->restart_timer);
		timer_data->restart_timer = 0;
	}
}

static gboolean is_first_request(struct pppcp_timer_data *timer_data)
{
	return (timer_data->restart_counter == timer_data->max_counter);
}

/* actions */
/* log an illegal event, but otherwise do nothing */
static void pppcp_illegal_event(guint8 state, guint8 type)
{
	g_printerr("Illegal event %d while in state %d\n", type, state);
}

static void pppcp_this_layer_up(struct pppcp_data *data)
{
	struct pppcp_action *action = data->action;

	if (action->this_layer_up)
		action->this_layer_up(data);
}

static void pppcp_this_layer_down(struct pppcp_data *data)
{
	struct pppcp_action *action = data->action;

	if (action->this_layer_down)
		action->this_layer_down(data);
}

static void pppcp_this_layer_started(struct pppcp_data *data)
{
	struct pppcp_action *action = data->action;

	if (action->this_layer_started)
		action->this_layer_started(data);
}

static void pppcp_this_layer_finished(struct pppcp_data *data)
{
	struct pppcp_action *action = data->action;

	pppcp_trace(data);
	if (action->this_layer_finished)
		action->this_layer_finished(data);
}

static void pppcp_clear_options(struct pppcp_data *data)
{
	g_list_foreach(data->acceptable_options, (GFunc) g_free, NULL);
	g_list_foreach(data->unacceptable_options, (GFunc) g_free, NULL);
	g_list_foreach(data->rejected_options, (GFunc) g_free, NULL);
	g_list_free(data->acceptable_options);
	g_list_free(data->unacceptable_options);
	g_list_free(data->rejected_options);
	data->acceptable_options = NULL;
	data->unacceptable_options = NULL;
	data->rejected_options = NULL;
}

static void pppcp_free_options(struct pppcp_data *data)
{
	/* remove all config options */
	pppcp_clear_options(data);

	/* remove default option list */
	g_list_foreach(data->config_options, (GFunc) g_free, NULL);
	g_list_free(data->config_options);
}

/*
 * set the restart counter to either max-terminate
 * or max-configure.  The counter is decremented for
 * each transmission, including the first.
 */
static void pppcp_initialize_restart_count(struct pppcp_timer_data *timer_data)
{
	struct pppcp_data *data = timer_data->data;

	pppcp_trace(data);
	pppcp_clear_options(data);
	timer_data->restart_counter = timer_data->max_counter;
}

/*
 * set restart counter to zero
 */
static void pppcp_zero_restart_count(struct pppcp_timer_data *timer_data)
{
	timer_data->restart_counter = 0;
}

/*
 * TBD - generate new identifier for packet
 */
static guint8 new_identity(struct pppcp_data *data, guint prev_identifier)
{
	return prev_identifier + 1;
}

static void get_option_length(gpointer data, gpointer user_data)
{
	struct ppp_option *option = data;
	guint8 *length = user_data;

	*length += option->length;
}

static void copy_option(gpointer data, gpointer user_data)
{
	struct ppp_option *option = data;
	guint8 **location = user_data;
	memcpy(*location, (guint8 *) option, option->length);
	*location += option->length;
}

static void print_option(gpointer data, gpointer user_data)
{
	struct ppp_option *option = data;
	struct pppcp_data *pppcp = user_data;

	g_print("%s: option %d len %d (%s)", pppcp->prefix, option->type,
			option->length, pppcp->option_strings[option->type]);
	if (option->length > 2) {
		int i;
		for (i = 0; i < option->length - 2; i++)
			g_print(" %02x", option->data[i]);
	}
	g_print("\n");
}

void pppcp_add_config_option(struct pppcp_data *data, struct ppp_option *option)
{
	data->config_options = g_list_append(data->config_options, option);
}

/*
 * transmit a Configure-Request packet
 * start the restart timer
 * decrement the restart counter
 */
static void pppcp_send_configure_request(struct pppcp_data *data)
{
	struct pppcp_packet *packet;
	guint8 olength = 0;
	guint8 *odata;
	struct pppcp_timer_data *timer_data = &data->config_timer_data;

	pppcp_trace(data);

	g_list_foreach(data->config_options, print_option, data);

	/* figure out how much space to allocate for options */
	g_list_foreach(data->config_options, get_option_length, &olength);

	packet = pppcp_packet_new(data, CONFIGURE_REQUEST, olength);

	/* copy config options into packet data */
	odata = packet->data;
	g_list_foreach(data->config_options, copy_option, &odata);

	/*
	 * if this is the first request, we need a new identifier.
	 * if this is a retransmission, leave the identifier alone.
	 */
	if (is_first_request(timer_data))
		data->config_identifier =
			new_identity(data, data->config_identifier);
	packet->identifier = data->config_identifier;

	ppp_transmit(data->ppp, pppcp_to_ppp_packet(packet),
			ntohs(packet->length));

	pppcp_packet_free(packet);

	/* start timer for retransmission */
	timer_data->restart_counter--;
	pppcp_start_timer(timer_data);
}

/*
 * transmit a Configure-Ack packet
 */
static void pppcp_send_configure_ack(struct pppcp_data *data,
					guint8 *request)
{
	struct pppcp_packet *packet;
	struct pppcp_packet *pppcp_header = (struct pppcp_packet *) request;
	guint len;
	guint8 *odata;

	pppcp_trace(data);

	g_list_foreach(data->acceptable_options, print_option, data);

	/* subtract for header. */
	len = ntohs(pppcp_header->length) - sizeof(*packet);

	packet = pppcp_packet_new(data, CONFIGURE_ACK, len);

	/* copy the applied options in. */
	odata = packet->data;

	g_list_foreach(data->acceptable_options, copy_option, &odata);

	/* match identifier of the request */
	packet->identifier = pppcp_header->identifier;

	ppp_transmit(data->ppp, pppcp_to_ppp_packet(packet),
			ntohs(packet->length));
	pppcp_packet_free(packet);
}

/*
 * transmit a Configure-Nak or Configure-Reject packet
 */
static void pppcp_send_configure_nak(struct pppcp_data *data,
					guint8 *configure_packet)
{
	struct pppcp_packet *packet;
	struct pppcp_packet *pppcp_header =
			(struct pppcp_packet *) configure_packet;
	guint8 olength;
	guint8 *odata;

	/* if we have any rejected options, send a config-reject */
	if (g_list_length(data->rejected_options)) {
		pppcp_trace(data);

		g_list_foreach(data->rejected_options, print_option, data);

		/* figure out how much space to allocate for options */
		olength = 0;
		g_list_foreach(data->rejected_options, get_option_length,
				&olength);

		packet = pppcp_packet_new(data, CONFIGURE_REJECT, olength);

		/* copy the rejected options in. */
		odata = packet->data;
		g_list_foreach(data->rejected_options, copy_option,
				&odata);

		packet->identifier = pppcp_header->identifier;
		ppp_transmit(data->ppp, pppcp_to_ppp_packet(packet),
			ntohs(packet->length));

		pppcp_packet_free(packet);
	}

	/* if we have any unacceptable options, send a config-nak */
	if (g_list_length(data->unacceptable_options)) {
		pppcp_trace(data);

		g_list_foreach(data->unacceptable_options, print_option, data);

		/* figure out how much space to allocate for options */
		olength = 0;
		g_list_foreach(data->unacceptable_options, get_option_length,
				&olength);

		packet = pppcp_packet_new(data, CONFIGURE_NAK, olength);

		/* copy the unacceptable options in. */
		odata = packet->data;
		g_list_foreach(data->unacceptable_options, copy_option,
				&odata);

		packet->identifier = pppcp_header->identifier;
		ppp_transmit(data->ppp, pppcp_to_ppp_packet(packet),
				ntohs(packet->length));

		pppcp_packet_free(packet);
	}
}

/*
 * transmit a Terminate-Request packet.
 * start the restart timer.
 * decrement the restart counter
 */
static void pppcp_send_terminate_request(struct pppcp_data *data)
{
	struct pppcp_packet *packet;
	struct pppcp_timer_data *timer_data = &data->terminate_timer_data;

	pppcp_trace(data);

	/*
	 * the data field can be used by the sender (us).
	 * leave this empty for now.
	 */
	packet = pppcp_packet_new(data, TERMINATE_REQUEST, 0);

	/*
	 * Is this a retransmission?  If so, do not change
	 * the identifier.  If not, we need a fresh identity.
	 */
	if (is_first_request(timer_data))
		data->terminate_identifier =
			new_identity(data, data->terminate_identifier);
	packet->identifier = data->terminate_identifier;
	ppp_transmit(data->ppp, pppcp_to_ppp_packet(packet),
			ntohs(packet->length));

	pppcp_packet_free(packet);
	timer_data->restart_counter--;
	pppcp_start_timer(timer_data);
}

/*
 * transmit a Terminate-Ack packet
 */
static void pppcp_send_terminate_ack(struct pppcp_data *data,
					guint8 *request)
{
	struct pppcp_packet *packet;
	struct pppcp_packet *pppcp_header = (struct pppcp_packet *) request;

	pppcp_trace(data);

	packet = pppcp_packet_new(data, TERMINATE_ACK, 0);

	/* match identifier of the request */
	packet->identifier = pppcp_header->identifier;

	ppp_transmit(data->ppp, pppcp_to_ppp_packet(packet),
			ntohs(pppcp_header->length));

	pppcp_packet_free(packet);
}

/*
 * transmit a Code-Reject packet
 *
 * XXX this seg faults.
 */
static void pppcp_send_code_reject(struct pppcp_data *data,
					guint8 *rejected_packet)
{
	struct pppcp_packet *packet;
	struct pppcp_packet *old_packet =
				(struct pppcp_packet *) rejected_packet;

	pppcp_trace(data);

	packet = pppcp_packet_new(data, CODE_REJECT, ntohs(old_packet->length));

	/*
	 * Identifier must be changed for each Code-Reject sent
	 */
	packet->identifier = new_identity(data, data->reject_identifier);

	/*
	 * rejected packet should be copied in, but it should be
	 * truncated if it needs to be to comply with mtu requirement
	 */
	memcpy(packet->data, rejected_packet,
			ntohs(packet->length) - CP_HEADER_SZ);

	ppp_transmit(data->ppp, pppcp_to_ppp_packet(packet),
			ntohs(packet->length));

	pppcp_packet_free(packet);
}

/*
 * transmit an Echo-Reply packet
 */
static void pppcp_send_echo_reply(struct pppcp_data *data,
				guint8 *request)
{
	struct pppcp_packet *packet;
	struct pppcp_packet *header = (struct pppcp_packet *) request;

	/*
	 * 0 bytes for data, 4 bytes for magic number
	 */
	packet = pppcp_packet_new(data, ECHO_REPLY, 4);

	/*
	 * match identifier of request
	 */
	packet->identifier = header->identifier;

	/* magic number? */
	ppp_transmit(data->ppp, pppcp_to_ppp_packet(packet),
			ntohs(packet->length));

	pppcp_packet_free(packet);
}

static void pppcp_transition_state(enum pppcp_state new_state,
					struct pppcp_data *data)
{
	/*
	 * if switching from a state where
	 * TO events occur, to one where they
	 * may not, shut off the timer
	 */
	switch (new_state) {
	case INITIAL:
	case STARTING:
	case CLOSED:
	case STOPPED:
	case OPENED:
		pppcp_stop_timer(&data->config_timer_data);
		pppcp_stop_timer(&data->terminate_timer_data);
		break;
	case CLOSING:
	case STOPPING:
	case REQSENT:
	case ACKRCVD:
	case ACKSENT:
		break;
	}
	data->state = new_state;
}

static void pppcp_up_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);
	switch (data->state) {
	case INITIAL:
		/* switch state to CLOSED */
		pppcp_transition_state(CLOSED, data);
		break;
	case STARTING:
		/* irc, scr/6 */
		pppcp_initialize_restart_count(&data->config_timer_data);
		pppcp_send_configure_request(data);
		pppcp_transition_state(REQSENT, data);
		break;
	case CLOSED:
	case STOPPED:
	case OPENED:
	case CLOSING:
	case STOPPING:
	case REQSENT:
	case ACKRCVD:
	case ACKSENT:
		pppcp_illegal_event(data->state, UP);
	}
}

static void pppcp_down_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	switch (data->state) {
	case CLOSED:
		pppcp_transition_state(INITIAL, data);
		break;
	case STOPPED:
		/* tls/1 */
		pppcp_transition_state(STARTING, data);
		pppcp_this_layer_started(data);
		break;
	case CLOSING:
		pppcp_transition_state(INITIAL, data);
		break;
	case STOPPING:
	case REQSENT:
	case ACKRCVD:
	case ACKSENT:
		pppcp_transition_state(STARTING, data);
		break;
	case OPENED:
		pppcp_transition_state(STARTING, data);
		pppcp_this_layer_down(data);
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, DOWN);
		/* illegal */
	}
}

static void pppcp_open_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);
	switch (data->state) {
	case INITIAL:
		/* tls/1 */
		pppcp_transition_state(STARTING, data);
		pppcp_this_layer_started(data);
		break;
	case STARTING:
		pppcp_transition_state(STARTING, data);
		break;
	case CLOSED:
		pppcp_initialize_restart_count(&data->config_timer_data);
		pppcp_send_configure_request(data);
		pppcp_transition_state(REQSENT, data);
		break;
	case STOPPED:
		/* 3r */
		pppcp_transition_state(STOPPED, data);
		break;
	case CLOSING:
	case STOPPING:
		/* 5r */
		pppcp_transition_state(STOPPING, data);
		break;
	case REQSENT:
	case ACKRCVD:
	case ACKSENT:
		pppcp_transition_state(data->state, data);
		break;
	case OPENED:
		/* 9r */
		pppcp_transition_state(data->state, data);
		break;
	}
}

static void pppcp_close_event(struct pppcp_data *data, guint8* packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case INITIAL:
		pppcp_transition_state(INITIAL, data);
		break;
	case STARTING:
		pppcp_this_layer_finished(data);
		pppcp_transition_state(INITIAL, data);
		break;
	case CLOSED:
	case STOPPED:
		pppcp_transition_state(CLOSED, data);
		break;
	case CLOSING:
	case STOPPING:
		pppcp_transition_state(CLOSING, data);
		break;
	case OPENED:
		pppcp_this_layer_down(data);
	case REQSENT:
	case ACKRCVD:
	case ACKSENT:
		pppcp_initialize_restart_count(&data->terminate_timer_data);
		pppcp_send_terminate_request(data);
		pppcp_transition_state(CLOSING, data);
		break;
	}
}

static void pppcp_to_plus_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case CLOSING:
		pppcp_send_terminate_request(data);
		pppcp_transition_state(CLOSING, data);
		break;
	case STOPPING:
		pppcp_send_terminate_request(data);
		pppcp_transition_state(STOPPING, data);
		break;
	case REQSENT:
	case ACKRCVD:
		pppcp_send_configure_request(data);
		pppcp_transition_state(REQSENT, data);
		break;
	case ACKSENT:
		pppcp_send_configure_request(data);
		pppcp_transition_state(ACKSENT, data);
		break;
	case INITIAL:
	case STARTING:
	case CLOSED:
	case STOPPED:
	case OPENED:
		pppcp_illegal_event(data->state, TO_PLUS);
	}
}

static void pppcp_to_minus_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);
	switch (data->state) {
	case CLOSING:
		pppcp_transition_state(CLOSED, data);
		pppcp_this_layer_finished(data);
		break;
	case STOPPING:
		pppcp_transition_state(STOPPED, data);
		pppcp_this_layer_finished(data);
		break;
	case REQSENT:
	case ACKRCVD:
	case ACKSENT:
		/* tlf/3p */
		pppcp_transition_state(STOPPED, data);
		pppcp_this_layer_finished(data);
		break;
	case INITIAL:
	case STARTING:
	case CLOSED:
	case STOPPED:
	case OPENED:
		pppcp_illegal_event(data->state, TO_MINUS);
	}
}

static void pppcp_rcr_plus_event(struct pppcp_data *data,
				guint8 *packet, guint len)
{
	pppcp_trace(data);
	switch (data->state) {
	case CLOSED:
		pppcp_send_terminate_ack(data, packet);
		pppcp_transition_state(CLOSED, data);
		break;
	case STOPPED:
		pppcp_initialize_restart_count(&data->config_timer_data);
		pppcp_send_configure_request(data);
		pppcp_send_configure_ack(data, packet);
		pppcp_transition_state(ACKSENT, data);
		break;
	case CLOSING:
	case STOPPING:
		pppcp_transition_state(data->state, data);
		break;
	case REQSENT:
		pppcp_send_configure_ack(data, packet);
		pppcp_transition_state(ACKSENT, data);
		break;
	case ACKRCVD:
		pppcp_send_configure_ack(data, packet);
		pppcp_this_layer_up(data);
		pppcp_transition_state(OPENED, data);
		break;
	case ACKSENT:
		pppcp_send_configure_ack(data, packet);
		pppcp_transition_state(ACKSENT, data);
		break;
	case OPENED:
		pppcp_this_layer_down(data);
		pppcp_send_configure_request(data);
		pppcp_send_configure_ack(data, packet);
		pppcp_transition_state(ACKSENT, data);
		break;
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, RCR_PLUS);
	}
}

static void pppcp_rcr_minus_event(struct pppcp_data *data,
				guint8 *packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case CLOSED:
		pppcp_send_terminate_ack(data, packet);
		pppcp_transition_state(CLOSED, data);
		break;
	case STOPPED:
		pppcp_initialize_restart_count(&data->config_timer_data);
		pppcp_send_configure_request(data);
		pppcp_send_configure_nak(data, packet);
		pppcp_transition_state(REQSENT, data);
		break;
	case CLOSING:
	case STOPPING:
		pppcp_transition_state(data->state, data);
		break;
	case REQSENT:
	case ACKRCVD:
		pppcp_send_configure_nak(data, packet);
		pppcp_transition_state(data->state, data);
		break;
	case ACKSENT:
		pppcp_send_configure_nak(data, packet);
		pppcp_transition_state(REQSENT, data);
		break;
	case OPENED:
		pppcp_this_layer_down(data);
		pppcp_send_configure_request(data);
		pppcp_send_configure_nak(data, packet);
		pppcp_transition_state(REQSENT, data);
		break;
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, RCR_MINUS);
	}
}

static void pppcp_rca_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case CLOSED:
	case STOPPED:
		pppcp_send_terminate_ack(data, packet);
	case CLOSING:
	case STOPPING:
		pppcp_transition_state(data->state, data);
		break;
	case REQSENT:
		pppcp_initialize_restart_count(&data->config_timer_data);
		pppcp_transition_state(ACKRCVD, data);
		break;
	case ACKRCVD:
		/* scr/6x */
		pppcp_send_configure_request(data);
		pppcp_transition_state(REQSENT, data);
	case ACKSENT:
		pppcp_initialize_restart_count(&data->config_timer_data);
		pppcp_this_layer_up(data);
		pppcp_transition_state(OPENED, data);
		break;
	case OPENED:
		pppcp_this_layer_down(data);
		pppcp_send_configure_request(data);
		pppcp_transition_state(REQSENT, data);
		break;
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, RCA);
	}
}

static void pppcp_rcn_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case CLOSED:
	case STOPPED:
		pppcp_send_terminate_ack(data, packet);
	case CLOSING:
	case STOPPING:
		pppcp_transition_state(data->state, data);
	case REQSENT:
		pppcp_initialize_restart_count(&data->config_timer_data);
		pppcp_send_configure_request(data);
		pppcp_transition_state(REQSENT, data);
		break;
	case ACKRCVD:
		/* scr/6x */
		pppcp_send_configure_request(data);
		pppcp_transition_state(REQSENT, data);
		break;
	case ACKSENT:
		pppcp_initialize_restart_count(&data->config_timer_data);
		pppcp_send_configure_request(data);
		pppcp_transition_state(ACKSENT, data);
		break;
	case OPENED:
		pppcp_this_layer_down(data);
		pppcp_send_configure_request(data);
		pppcp_transition_state(REQSENT, data);
		break;
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, RCN);
	}
}

static void pppcp_rtr_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case CLOSED:
	case STOPPED:
		pppcp_send_terminate_ack(data, packet);
	case CLOSING:
	case STOPPING:
		break;
	case REQSENT:
	case ACKRCVD:
	case ACKSENT:
		pppcp_send_terminate_ack(data, packet);
		pppcp_transition_state(REQSENT, data);
		break;
	case OPENED:
		pppcp_this_layer_down(data);
		pppcp_zero_restart_count(&data->terminate_timer_data);
		pppcp_send_terminate_ack(data, packet);
		pppcp_transition_state(STOPPING, data);
		break;
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, RTR);
	}
}

static void pppcp_rta_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case CLOSED:
	case STOPPED:
		pppcp_transition_state(data->state, data);
		break;
	case CLOSING:
		pppcp_this_layer_finished(data);
		pppcp_transition_state(CLOSED, data);
		break;
	case STOPPING:
		pppcp_this_layer_finished(data);
		pppcp_transition_state(STOPPED, data);
		break;
	case REQSENT:
	case ACKRCVD:
		pppcp_transition_state(REQSENT, data);
		break;
	case ACKSENT:
		pppcp_transition_state(ACKSENT, data);
		break;
	case OPENED:
		pppcp_this_layer_down(data);
		pppcp_send_configure_request(data);
		pppcp_transition_state(REQSENT, data);
		break;
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, RTA);
	}
}

static void pppcp_ruc_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case CLOSED:
	case STOPPED:
	case CLOSING:
	case STOPPING:
	case REQSENT:
	case ACKRCVD:
	case ACKSENT:
	case OPENED:
		pppcp_send_code_reject(data, packet);
		pppcp_transition_state(data->state, data);
		break;
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, RUC);
	}
}

static void pppcp_rxj_plus_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case CLOSED:
	case STOPPED:
	case CLOSING:
	case STOPPING:
		pppcp_transition_state(data->state, data);
		break;
	case REQSENT:
	case ACKRCVD:
		pppcp_transition_state(REQSENT, data);
		break;
	case ACKSENT:
	case OPENED:
		pppcp_transition_state(data->state, data);
		break;
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, RXJ_PLUS);
	}
}

static void pppcp_rxj_minus_event(struct pppcp_data *data,
				guint8 *packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case CLOSED:
	case STOPPED:
		pppcp_this_layer_finished(data);
		pppcp_transition_state(data->state, data);
		break;
	case CLOSING:
		pppcp_this_layer_finished(data);
		pppcp_transition_state(CLOSED, data);
		break;
	case STOPPING:
		pppcp_this_layer_finished(data);
		pppcp_transition_state(STOPPED, data);
		break;
	case REQSENT:
	case ACKRCVD:
	case ACKSENT:
		pppcp_this_layer_finished(data);
		pppcp_transition_state(STOPPED, data);
		break;
	case OPENED:
		pppcp_this_layer_down(data);
		pppcp_initialize_restart_count(&data->terminate_timer_data);
		pppcp_send_terminate_request(data);
		pppcp_transition_state(STOPPING, data);
		break;
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, RXJ_MINUS);
	}
}

static void pppcp_rxr_event(struct pppcp_data *data, guint8 *packet, guint len)
{
	pppcp_trace(data);

	switch (data->state) {
	case CLOSED:
	case STOPPED:
	case CLOSING:
	case STOPPING:
	case REQSENT:
	case ACKRCVD:
	case ACKSENT:
		pppcp_transition_state(data->state, data);
		break;
	case OPENED:
		pppcp_send_echo_reply(data, packet);
		pppcp_transition_state(OPENED, data);
		break;
	case INITIAL:
	case STARTING:
		pppcp_illegal_event(data->state, RXR);
	}
}

/*
 * send the event handler a new event to process
 */
void pppcp_generate_event(struct pppcp_data *data,
				enum pppcp_event_type event_type,
				gpointer event_data, guint data_len)
{
	if (event_type > RXR)
		pppcp_illegal_event(data->state, event_type);
	else
		data->event_ops[event_type](data, event_data, data_len);
}

static gint is_option(gconstpointer a, gconstpointer b)
{
	const struct ppp_option *o = a;
	guint8 otype = (guint8) GPOINTER_TO_UINT(b);

	if (o->type == otype)
		return 0;
	else
		return -1;
}

static void verify_config_option(gpointer elem, gpointer user_data)
{
	struct ppp_option *config = elem;
	struct pppcp_data *data = user_data;
	guint type = config->type;
	struct ppp_option *option;
	GList *list;

	/*
	 * determine whether this config option is in the
	 * acceptable options list
	 */
	list = g_list_find_custom(data->acceptable_options,
					GUINT_TO_POINTER(type), is_option);
	if (list)
		return;

	/*
	 * if the option did not exist, we need to store a copy
	 * of the option in the unacceptable_options list so it
	 * can be nak'ed.
	 */
	option = g_try_malloc0(config->length);
	if (option == NULL)
		return;

	option->type = config->type;
	option->length = config->length;
	data->unacceptable_options =
			g_list_append(data->unacceptable_options, option);
}

static void remove_config_option(gpointer elem, gpointer user_data)
{
	struct ppp_option *config = elem;
	struct pppcp_data *data = user_data;
	guint type = config->type;
	GList *list;

	/*
	 * determine whether this config option is in the
	 * applied options list
	 */
	list = g_list_find_custom(data->config_options,
					GUINT_TO_POINTER(type), is_option);
	if (!list)
		return;

	g_free(list->data);
	data->config_options = g_list_delete_link(data->config_options, list);
}

static struct ppp_option *extract_ppp_option(struct pppcp_data *data,
						guint8 *packet_data)
{
	struct ppp_option *option;
	guint8 otype = packet_data[0];
	guint8 olen = packet_data[1];

	option = g_try_malloc0(olen);
	if (option == NULL)
		return NULL;

	option->type = otype;
	option->length = olen;
	memcpy(option->data, &packet_data[2], olen-2);

	print_option(option, data);

	return option;
}

static guint8 pppcp_process_configure_request(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	gint len;
	int i = 0;
	struct ppp_option *option;
	enum option_rval rval = OPTION_ERR;
	struct pppcp_action *action = data->action;

	pppcp_trace(data);

	len = ntohs(packet->length) - CP_HEADER_SZ;

	/*
	 * check the options.
	 */
	while (i < len) {
		option = extract_ppp_option(data, &packet->data[i]);
		if (option == NULL)
			break;

		/* skip ahead to the next option */
		i += option->length;

		if (action->option_scan)
			rval = action->option_scan(option, data);
		switch (rval) {
		case OPTION_ACCEPT:
			data->acceptable_options =
				g_list_append(data->acceptable_options, option);
			break;
		case OPTION_REJECT:
			data->rejected_options =
				g_list_append(data->rejected_options, option);
			break;
		case OPTION_NAK:
			data->unacceptable_options =
				g_list_append(data->unacceptable_options,
						option);
			break;
		case OPTION_ERR:
			g_printerr("unhandled option type %d\n", option->type);
			g_free(option);
		}
	}

	/* make sure all required config options were included */
	g_list_foreach(data->config_options, verify_config_option, data);

	if (g_list_length(data->unacceptable_options) ||
			g_list_length(data->rejected_options))
		return RCR_MINUS;

	/*
	 * all options were acceptable, so we should apply them before
	 * sending a configure-ack
	 *
	 * Remove all applied options from the config_option list.  The
	 * protocol will have to re-add them if they want them renegotiated
	 * when the ppp goes down.
	 */
	if (action->option_process) {
		g_list_foreach(data->acceptable_options,
				action->option_process, data->priv);
		g_list_foreach(data->acceptable_options, remove_config_option,
				data);
	}

	return RCR_PLUS;
}

static guint8 pppcp_process_configure_ack(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	guint len;
	GList *list;
	struct ppp_option *acked_option;
	guint i = 0;
	struct pppcp_action *action = data->action;

	pppcp_trace(data);

	len = ntohs(packet->length) - CP_HEADER_SZ;

	/* if identifiers don't match, we should silently discard */
	if (packet->identifier != data->config_identifier) {
		g_printerr("received an ack id %d, but config id is %d\n",
			packet->identifier, data->config_identifier);
		return 0;
	}

	/*
	 * check each acked option.  If it is what we requested,
	 * then we can apply these option values.
	 *
	 * XXX what if it isn't?  Do this correctly -- for now
	 * we are just going to assume that all options matched
	 * and apply them.
	 */
	while (i < len) {
		acked_option = extract_ppp_option(data, &packet->data[i]);
		if (acked_option == NULL)
			break;

		list = g_list_find_custom(data->config_options,
				GUINT_TO_POINTER((guint) acked_option->type),
				is_option);
		if (list) {
			/*
			 * once we've applied the option, delete it from
			 * the config_options list.
			 */
			if (action->option_process)
				action->option_process(acked_option,
							data->priv);

			g_free(list->data);
			data->config_options =
				g_list_delete_link(data->config_options, list);
		} else
			g_printerr("oops -- found acked option %d we didn't request\n", acked_option->type);

		/* skip ahead to the next option */
		i += acked_option->length;

		g_free(acked_option);
	}
	return RCA;
}

static guint8 pppcp_process_configure_nak(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	guint len;
	GList *list;
	struct ppp_option *naked_option;
	struct ppp_option *config_option;
	guint i = 0;
	enum option_rval rval = OPTION_ERR;
	struct pppcp_action *action = data->action;

	pppcp_trace(data);

	len = ntohs(packet->length) - CP_HEADER_SZ;

	/* if identifiers don't match, we should silently discard */
	if (packet->identifier != data->config_identifier)
		return 0;

	/*
	 * check each unacceptable option.  If it is acceptable, then
	 * we can resend the configure request with this value. we need
	 * to check the current config options to see if we need to
	 * modify a value there, or add a new option.
	 */
	while (i < len) {
		naked_option = extract_ppp_option(data, &packet->data[i]);
		if (naked_option == NULL)
			break;

		/* skip ahead to the next option */
		i += naked_option->length;

		if (action->option_scan)
			rval = action->option_scan(naked_option, data);
		if (rval == OPTION_ACCEPT) {
			/*
			 * check the current config options to see if they
			 * match.
			 */
			list = g_list_find_custom(data->config_options,
				GUINT_TO_POINTER((guint) naked_option->type),
				is_option);
			if (list) {
				/* modify current option value to match */
				config_option = list->data;

				/*
				 * option values should match, otherwise
				 * we need to reallocate
				 */
				if ((config_option->length ==
					naked_option->length) &&
							(naked_option - 2)) {
						memcpy(config_option->data,
						   naked_option->data,
						   naked_option->length - 2);
				} else {
					/* XXX implement this */
					g_printerr("uh oh, option value doesn't match\n");
				}
				g_free(naked_option);
			} else {
				/* add to list of config options */
				pppcp_add_config_option(data, naked_option);
			}
		} else {
			/* XXX handle this correctly */
			g_printerr("oops, option wasn't acceptable\n");
			g_free(naked_option);
		}
	}
	return RCN;
}

static guint8 pppcp_process_configure_reject(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	guint len;
	GList *list;
	struct ppp_option *rejected_option;
	guint i = 0;

	len = ntohs(packet->length) - CP_HEADER_SZ;

	/*
	 * make sure identifier matches that of last sent configure
	 * request
	 */
	if (packet->identifier != data->config_identifier)
		return 0;

	/*
	 * check to see which options were rejected
	 * Rejected options must be a subset of requested
	 * options.
	 *
	 * when a new configure-request is sent, we may
	 * not request any of these options be negotiated
	 */
	while (i < len) {
		rejected_option = extract_ppp_option(data, &packet->data[i]);
		if (rejected_option == NULL)
			break;

		/* skip ahead to the next option */
		i += rejected_option->length;

		/* find this option in our config options list */
		list = g_list_find_custom(data->config_options,
			GUINT_TO_POINTER((guint) rejected_option->type),
			is_option);
		if (list) {
			/* delete this config option */
			g_free(list->data);
			data->config_options =
				g_list_delete_link(data->config_options, list);
		}
		g_free(rejected_option);
	}
	return RCN;
}

static guint8 pppcp_process_terminate_request(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	pppcp_trace(data);

	return RTR;
}

static guint8 pppcp_process_terminate_ack(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	/*
	 * if we wind up using the data field for anything, then
	 * we'd want to check the identifier.
	 * even if the identifiers don't match, we still handle
	 * a terminate ack, as it is allowed to be unelicited
	 */
	pppcp_trace(data);

	return RTA;
}

static guint8 pppcp_process_code_reject(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	/*
	 * determine if the code reject is catastrophic or not.
	 * return RXJ_PLUS if this reject is acceptable, RXJ_MINUS if
	 * it is catastrophic.
	 *
	 * for now we always return RXJ_MINUS.  Any code
	 * reject will be catastrophic, since we only support the
	 * bare minimum number of codes necessary to function.
	 */
	return RXJ_MINUS;
}

static guint8 pppcp_process_protocol_reject(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	/*
	 * determine if the protocol reject is catastrophic or not.
	 * return RXJ_PLUS if this reject is acceptable, RXJ_MINUS if
	 * it is catastrophic.
	 *
	 * for now we always return RXJ_MINUS.  Any protocol
	 * reject will be catastrophic, since we only support the
	 * bare minimum number of protocols necessary to function.
	 */
	return RXJ_MINUS;
}

static guint8 pppcp_process_echo_request(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	return RXR;
}

static guint8 pppcp_process_echo_reply(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	return 0;
}

static guint8 pppcp_process_discard_request(struct pppcp_data *data,
					struct pppcp_packet *packet)
{
	return 0;
}

void pppcp_send_protocol_reject(struct pppcp_data *data,
				guint8 *rejected_packet, gsize len)
{
	struct pppcp_packet *packet;
	struct ppp_header *ppp_packet = (struct ppp_header *) rejected_packet;

	pppcp_trace(data);

	/*
	 * Protocol-Reject can only be sent when we are in
	 * the OPENED state.  If in any other state, silently discard.
	 */
	if (data->state != OPENED) {
		g_free(ppp_packet);
		return;
	}

	/*
	 * info should contain the old packet info, plus the 16bit
	 * protocol number we are rejecting.
	 */
	packet = pppcp_packet_new(data, PROTOCOL_REJECT, len);

	/*
	 * Identifier must be changed for each Protocol-Reject sent
	 */
	packet->identifier = new_identity(data, data->reject_identifier);

	/*
	 * rejected packet should be copied in, but it should be
	 * truncated if it needs to be to comply with mtu requirement
	 */
	memcpy(packet->data, rejected_packet,
			(ntohs(packet->length) - CP_HEADER_SZ));

	ppp_transmit(data->ppp, pppcp_to_ppp_packet(packet),
			ntohs(packet->length));

	pppcp_packet_free(packet);
}

/*
 * parse the packet and determine which event this packet caused
 */
void pppcp_process_packet(gpointer priv, guint8 *new_packet)
{
	struct pppcp_data *data = priv;
	struct pppcp_packet *packet = (struct pppcp_packet *) new_packet;
	guint8 event_type;
	gpointer event_data = NULL;
	guint data_len = 0;

	if (data == NULL)
		return;

	/* check flags to see if we support this code */
	if (!(data->valid_codes & (1 << packet->code)))
		event_type = RUC;
	else
		event_type = data->packet_ops[packet->code-1](data, packet);

	if (event_type) {
		data_len = ntohs(packet->length);
		event_data = packet;
		pppcp_generate_event(data, event_type, event_data, data_len);
	}
}

void pppcp_set_valid_codes(struct pppcp_data *data, guint16 codes)
{
	if (data == NULL)
		return;

	data->valid_codes = codes;
}

void pppcp_free(struct pppcp_data *data)
{
	if (data == NULL)
		return;

	/* remove all config options */
	pppcp_free_options(data);

	/* free self */
	g_free(data);
}

struct pppcp_data *pppcp_new(GAtPPP *ppp, guint16 proto)
{
	struct pppcp_data *data;

	data = g_try_malloc0(sizeof(struct pppcp_data));
	if (!data)
		return NULL;

	data->state = INITIAL;
	data->config_timer_data.restart_interval = INITIAL_RESTART_TIMEOUT;
	data->terminate_timer_data.restart_interval = INITIAL_RESTART_TIMEOUT;
	data->config_timer_data.max_counter = MAX_CONFIGURE;
	data->terminate_timer_data.max_counter = MAX_TERMINATE;
	data->config_timer_data.data = data;
	data->terminate_timer_data.data = data;
	data->max_failure = MAX_FAILURE;
	data->identifier = 0;

	data->ppp = ppp;
	data->proto = proto;

	/* setup func ptrs for processing packet by pppcp code */
	data->packet_ops[CONFIGURE_REQUEST - 1] =
					pppcp_process_configure_request;
	data->packet_ops[CONFIGURE_ACK - 1] = pppcp_process_configure_ack;
	data->packet_ops[CONFIGURE_NAK - 1] = pppcp_process_configure_nak;
	data->packet_ops[CONFIGURE_REJECT - 1] = pppcp_process_configure_reject;
	data->packet_ops[TERMINATE_REQUEST - 1] =
					pppcp_process_terminate_request;
	data->packet_ops[TERMINATE_ACK - 1] = pppcp_process_terminate_ack;
	data->packet_ops[CODE_REJECT - 1] = pppcp_process_code_reject;
	data->packet_ops[PROTOCOL_REJECT - 1] = pppcp_process_protocol_reject;
	data->packet_ops[ECHO_REQUEST - 1] = pppcp_process_echo_request;
	data->packet_ops[ECHO_REPLY - 1] = pppcp_process_echo_reply;
	data->packet_ops[DISCARD_REQUEST - 1] = pppcp_process_discard_request;

	/* setup func ptrs for handling events by event type */
	data->event_ops[UP] = pppcp_up_event;
	data->event_ops[DOWN] = pppcp_down_event;
	data->event_ops[OPEN] = pppcp_open_event;
	data->event_ops[CLOSE] = pppcp_close_event;
	data->event_ops[TO_PLUS] = pppcp_to_plus_event;
	data->event_ops[TO_MINUS] = pppcp_to_minus_event;
	data->event_ops[RCR_PLUS] = pppcp_rcr_plus_event;
	data->event_ops[RCR_MINUS] = pppcp_rcr_minus_event;
	data->event_ops[RCA] = pppcp_rca_event;
	data->event_ops[RCN] = pppcp_rcn_event;
	data->event_ops[RTR] = pppcp_rtr_event;
	data->event_ops[RTA] = pppcp_rta_event;
	data->event_ops[RUC] = pppcp_ruc_event;
	data->event_ops[RXJ_PLUS] = pppcp_rxj_plus_event;
	data->event_ops[RXJ_MINUS] = pppcp_rxj_minus_event;
	data->event_ops[RXR] = pppcp_rxr_event;

	return data;
}