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
|
/*
* RFC2367 PF_KEYv2 Key management API message parser
* Copyright (C) 1999, 2000, 2001 Richard Guy Briggs.
*
* 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. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* 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.
*
* RCSID $Id: pfkey_v2_build.c,v 1.51.8.1 2006/05/01 14:36:39 mcr Exp $
*/
/*
* Template from klips/net/ipsec/ipsec/ipsec_parser.c.
*/
char pfkey_v2_build_c_version[] = "$Id: pfkey_v2_build.c,v 1.51.8.1 2006/05/01 14:36:39 mcr Exp $";
/*
* Some ugly stuff to allow consistent debugging code for use in the
* kernel and in user space
*/
#ifdef __KERNEL__
# include <linux/kernel.h> /* for printk */
# include "openswan/ipsec_kversion.h" /* for malloc switch */
# ifdef MALLOC_SLAB
# include <linux/slab.h> /* kmalloc() */
# else /* MALLOC_SLAB */
# include <linux/malloc.h> /* kmalloc() */
# endif /* MALLOC_SLAB */
# include <linux/errno.h> /* error codes */
# include <linux/types.h> /* size_t */
# include <linux/interrupt.h> /* mark_bh */
# include <linux/netdevice.h> /* struct device, and other headers */
# include <linux/etherdevice.h> /* eth_type_trans */
# include <linux/ip.h> /* struct iphdr */
# if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
# include <linux/ipv6.h> /* struct ipv6hdr */
# endif /* if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) */
# define MALLOC(size) kmalloc(size, GFP_ATOMIC)
# define FREE(obj) kfree(obj)
# include <openswan.h>
#else /* __KERNEL__ */
# include <sys/types.h>
# include <linux/types.h>
# include <linux/errno.h>
# include <malloc.h>
# include <string.h> /* memset */
# include <openswan.h>
#endif /* __KERNEL__ */
#include <pfkeyv2.h>
#include <pfkey.h>
#ifdef __KERNEL__
#include "openswan/radij.h" /* rd_nodes */
#include "openswan/ipsec_encap.h" /* sockaddr_encap */
#endif /* __KERNEL__ */
#include "openswan/ipsec_sa.h" /* IPSEC_SAREF_NULL, IPSEC_SA_REF_TABLE_IDX_WIDTH */
#include "openswan/pfkey_debug.h"
#define SENDERR(_x) do { error = -(_x); goto errlab; } while (0)
void
pfkey_extensions_init(struct sadb_ext *extensions[SADB_EXT_MAX + 1])
{
int i;
for (i = 0; i != SADB_EXT_MAX + 1; i++) {
extensions[i] = NULL;
}
}
void
pfkey_extensions_free(struct sadb_ext *extensions[SADB_EXT_MAX + 1])
{
int i;
if(!extensions) {
return;
}
if(extensions[0]) {
memset(extensions[0], 0, sizeof(struct sadb_msg));
FREE(extensions[0]);
extensions[0] = NULL;
}
for (i = 1; i != SADB_EXT_MAX + 1; i++) {
if(extensions[i]) {
memset(extensions[i], 0, extensions[i]->sadb_ext_len * IPSEC_PFKEYv2_ALIGN);
FREE(extensions[i]);
extensions[i] = NULL;
}
}
}
void
pfkey_msg_free(struct sadb_msg **pfkey_msg)
{
if(*pfkey_msg) {
memset(*pfkey_msg, 0, (*pfkey_msg)->sadb_msg_len * IPSEC_PFKEYv2_ALIGN);
FREE(*pfkey_msg);
*pfkey_msg = NULL;
}
}
/* Default extension builders taken from the KLIPS code */
int
pfkey_msg_hdr_build(struct sadb_ext** pfkey_ext,
uint8_t msg_type,
uint8_t satype,
uint8_t msg_errno,
uint32_t seq,
uint32_t pid)
{
int error = 0;
struct sadb_msg *pfkey_msg = (struct sadb_msg *)*pfkey_ext;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_hdr_build:\n");
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_hdr_build: "
"on_entry &pfkey_ext=0p%p pfkey_ext=0p%p *pfkey_ext=0p%p.\n",
&pfkey_ext,
pfkey_ext,
*pfkey_ext);
/* sanity checks... */
if(pfkey_msg) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_hdr_build: "
"why is pfkey_msg already pointing to something?\n");
SENDERR(EINVAL);
}
if(!msg_type) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_hdr_build: "
"msg type not set, must be non-zero..\n");
SENDERR(EINVAL);
}
if(msg_type > SADB_MAX) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_hdr_build: "
"msg type too large:%d.\n",
msg_type);
SENDERR(EINVAL);
}
if(satype > SADB_SATYPE_MAX) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_hdr_build: "
"satype %d > max %d\n",
satype, SADB_SATYPE_MAX);
SENDERR(EINVAL);
}
pfkey_msg = (struct sadb_msg*)MALLOC(sizeof(struct sadb_msg));
*pfkey_ext = (struct sadb_ext*)pfkey_msg;
if(pfkey_msg == NULL) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_hdr_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_msg, 0, sizeof(struct sadb_msg));
pfkey_msg->sadb_msg_len = sizeof(struct sadb_msg) / IPSEC_PFKEYv2_ALIGN;
pfkey_msg->sadb_msg_type = msg_type;
pfkey_msg->sadb_msg_satype = satype;
pfkey_msg->sadb_msg_version = PF_KEY_V2;
pfkey_msg->sadb_msg_errno = msg_errno;
pfkey_msg->sadb_msg_reserved = 0;
pfkey_msg->sadb_msg_seq = seq;
pfkey_msg->sadb_msg_pid = pid;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_hdr_build: "
"on_exit &pfkey_ext=0p%p pfkey_ext=0p%p *pfkey_ext=0p%p.\n",
&pfkey_ext,
pfkey_ext,
*pfkey_ext);
errlab:
return error;
}
int
pfkey_sa_ref_build(struct sadb_ext ** pfkey_ext,
uint16_t exttype,
uint32_t spi,
uint8_t replay_window,
uint8_t sa_state,
uint8_t auth,
uint8_t encrypt,
uint32_t flags,
uint32_t/*IPsecSAref_t*/ ref)
{
int error = 0;
struct sadb_sa *pfkey_sa = (struct sadb_sa *)*pfkey_ext;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sa_build: "
"spi=%08x replay=%d sa_state=%d auth=%d encrypt=%d flags=%d\n",
ntohl(spi), /* in network order */
replay_window,
sa_state,
auth,
encrypt,
flags);
/* sanity checks... */
if(pfkey_sa) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sa_build: "
"why is pfkey_sa already pointing to something?\n");
SENDERR(EINVAL);
}
if(exttype != SADB_EXT_SA &&
exttype != SADB_X_EXT_SA2) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sa_build: "
"invalid exttype=%d.\n",
exttype);
SENDERR(EINVAL);
}
if(replay_window > 64) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sa_build: "
"replay window size: %d -- must be 0 <= size <= 64\n",
replay_window);
SENDERR(EINVAL);
}
if(auth > SADB_AALG_MAX) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sa_build: "
"auth=%d > SADB_AALG_MAX=%d.\n",
auth,
SADB_AALG_MAX);
SENDERR(EINVAL);
}
#if SADB_EALG_MAX < 255
if(encrypt > SADB_EALG_MAX) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sa_build: "
"encrypt=%d > SADB_EALG_MAX=%d.\n",
encrypt,
SADB_EALG_MAX);
SENDERR(EINVAL);
}
#endif
if(sa_state > SADB_SASTATE_MAX) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sa_build: "
"sa_state=%d exceeds MAX=%d.\n",
sa_state,
SADB_SASTATE_MAX);
SENDERR(EINVAL);
}
if(sa_state == SADB_SASTATE_DEAD) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sa_build: "
"sa_state=%d is DEAD=%d is not allowed.\n",
sa_state,
SADB_SASTATE_DEAD);
SENDERR(EINVAL);
}
if((IPSEC_SAREF_NULL != ref) && (ref >= (1 << IPSEC_SA_REF_TABLE_IDX_WIDTH))) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sa_build: "
"SAref=%d must be (SAref == IPSEC_SAREF_NULL(%d) || SAref < IPSEC_SA_REF_TABLE_NUM_ENTRIES(%d)).\n",
ref,
IPSEC_SAREF_NULL,
IPSEC_SA_REF_TABLE_NUM_ENTRIES);
SENDERR(EINVAL);
}
pfkey_sa = (struct sadb_sa*)MALLOC(sizeof(struct sadb_sa));
*pfkey_ext = (struct sadb_ext*)pfkey_sa;
if(pfkey_sa == NULL) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sa_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_sa, 0, sizeof(struct sadb_sa));
pfkey_sa->sadb_sa_len = sizeof(*pfkey_sa) / IPSEC_PFKEYv2_ALIGN;
pfkey_sa->sadb_sa_exttype = exttype;
pfkey_sa->sadb_sa_spi = spi;
pfkey_sa->sadb_sa_replay = replay_window;
pfkey_sa->sadb_sa_state = sa_state;
pfkey_sa->sadb_sa_auth = auth;
pfkey_sa->sadb_sa_encrypt = encrypt;
pfkey_sa->sadb_sa_flags = flags;
pfkey_sa->sadb_x_sa_ref = ref;
errlab:
return error;
}
int
pfkey_sa_build(struct sadb_ext ** pfkey_ext,
uint16_t exttype,
uint32_t spi,
uint8_t replay_window,
uint8_t sa_state,
uint8_t auth,
uint8_t encrypt,
uint32_t flags)
{
return pfkey_sa_ref_build(pfkey_ext,
exttype,
spi,
replay_window,
sa_state,
auth,
encrypt,
flags,
IPSEC_SAREF_NULL);
}
int
pfkey_lifetime_build(struct sadb_ext ** pfkey_ext,
uint16_t exttype,
uint32_t allocations,
uint64_t bytes,
uint64_t addtime,
uint64_t usetime,
uint32_t packets)
{
int error = 0;
struct sadb_lifetime *pfkey_lifetime = (struct sadb_lifetime *)*pfkey_ext;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_lifetime_build:\n");
/* sanity checks... */
if(pfkey_lifetime) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_lifetime_build: "
"why is pfkey_lifetime already pointing to something?\n");
SENDERR(EINVAL);
}
if(exttype != SADB_EXT_LIFETIME_CURRENT &&
exttype != SADB_EXT_LIFETIME_HARD &&
exttype != SADB_EXT_LIFETIME_SOFT) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_lifetime_build: "
"invalid exttype=%d.\n",
exttype);
SENDERR(EINVAL);
}
pfkey_lifetime = (struct sadb_lifetime*)MALLOC(sizeof(struct sadb_lifetime));
*pfkey_ext = (struct sadb_ext*) pfkey_lifetime;
if(pfkey_lifetime == NULL) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_lifetime_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_lifetime, 0, sizeof(struct sadb_lifetime));
pfkey_lifetime->sadb_lifetime_len = sizeof(struct sadb_lifetime) / IPSEC_PFKEYv2_ALIGN;
pfkey_lifetime->sadb_lifetime_exttype = exttype;
pfkey_lifetime->sadb_lifetime_allocations = allocations;
pfkey_lifetime->sadb_lifetime_bytes = bytes;
pfkey_lifetime->sadb_lifetime_addtime = addtime;
pfkey_lifetime->sadb_lifetime_usetime = usetime;
pfkey_lifetime->sadb_x_lifetime_packets = packets;
errlab:
return error;
}
int
pfkey_address_build(struct sadb_ext** pfkey_ext,
uint16_t exttype,
uint8_t proto,
uint8_t prefixlen,
struct sockaddr* address)
{
int error = 0;
int saddr_len = 0;
char ipaddr_txt[ADDRTOT_BUF + 6/*extra for port number*/];
struct sadb_address *pfkey_address = (struct sadb_address *)*pfkey_ext;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_address_build: "
"exttype=%d proto=%d prefixlen=%d\n",
exttype,
proto,
prefixlen);
/* sanity checks... */
if(pfkey_address) {
ERROR("pfkey_address_build: "
"why is pfkey_address already pointing to something?\n");
SENDERR(EINVAL);
}
if (!address) {
ERROR("pfkey_address_build: " "address is NULL\n");
SENDERR(EINVAL);
}
switch(exttype) {
case SADB_EXT_ADDRESS_SRC:
case SADB_EXT_ADDRESS_DST:
case SADB_EXT_ADDRESS_PROXY:
case SADB_X_EXT_ADDRESS_DST2:
case SADB_X_EXT_ADDRESS_SRC_FLOW:
case SADB_X_EXT_ADDRESS_DST_FLOW:
case SADB_X_EXT_ADDRESS_SRC_MASK:
case SADB_X_EXT_ADDRESS_DST_MASK:
#ifdef NAT_TRAVERSAL
case SADB_X_EXT_NAT_T_OA:
#endif
break;
default:
ERROR("pfkey_address_build: "
"unrecognised ext_type=%d.\n",
exttype);
SENDERR(EINVAL);
}
switch(address->sa_family) {
case AF_INET:
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_address_build: "
"found address family AF_INET.\n");
saddr_len = sizeof(struct sockaddr_in);
sprintf(ipaddr_txt, "%d.%d.%d.%d:%d"
, (((struct sockaddr_in*)address)->sin_addr.s_addr >> 0) & 0xFF
, (((struct sockaddr_in*)address)->sin_addr.s_addr >> 8) & 0xFF
, (((struct sockaddr_in*)address)->sin_addr.s_addr >> 16) & 0xFF
, (((struct sockaddr_in*)address)->sin_addr.s_addr >> 24) & 0xFF
, ntohs(((struct sockaddr_in*)address)->sin_port));
break;
case AF_INET6:
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_address_build: "
"found address family AF_INET6.\n");
saddr_len = sizeof(struct sockaddr_in6);
sprintf(ipaddr_txt, "%x:%x:%x:%x:%x:%x:%x:%x-%x"
, ntohs(((struct sockaddr_in6*)address)->sin6_addr.s6_addr16[0])
, ntohs(((struct sockaddr_in6*)address)->sin6_addr.s6_addr16[1])
, ntohs(((struct sockaddr_in6*)address)->sin6_addr.s6_addr16[2])
, ntohs(((struct sockaddr_in6*)address)->sin6_addr.s6_addr16[3])
, ntohs(((struct sockaddr_in6*)address)->sin6_addr.s6_addr16[4])
, ntohs(((struct sockaddr_in6*)address)->sin6_addr.s6_addr16[5])
, ntohs(((struct sockaddr_in6*)address)->sin6_addr.s6_addr16[6])
, ntohs(((struct sockaddr_in6*)address)->sin6_addr.s6_addr16[7])
, ntohs(((struct sockaddr_in6*)address)->sin6_port));
break;
default:
ERROR("pfkey_address_build: "
"address->sa_family=%d not supported.\n",
address->sa_family);
SENDERR(EPFNOSUPPORT);
}
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_address_build: "
"found address=%s.\n",
ipaddr_txt);
if(prefixlen != 0) {
ERROR("pfkey_address_build: "
"address prefixes not supported yet.\n");
SENDERR(EAFNOSUPPORT); /* not supported yet */
}
/* allocate some memory for the extension */
pfkey_address = (struct sadb_address*)
MALLOC(ALIGN_N(sizeof(struct sadb_address) + saddr_len, IPSEC_PFKEYv2_ALIGN));
*pfkey_ext = (struct sadb_ext*)pfkey_address;
if(pfkey_address == NULL ) {
ERROR("pfkey_lifetime_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_address,
0,
ALIGN_N(sizeof(struct sadb_address) + saddr_len,
IPSEC_PFKEYv2_ALIGN));
pfkey_address->sadb_address_len = DIVUP(sizeof(struct sadb_address) + saddr_len,
IPSEC_PFKEYv2_ALIGN);
pfkey_address->sadb_address_exttype = exttype;
pfkey_address->sadb_address_proto = proto;
pfkey_address->sadb_address_prefixlen = prefixlen;
pfkey_address->sadb_address_reserved = 0;
memcpy((char*)pfkey_address + sizeof(struct sadb_address),
address,
saddr_len);
#if 0
for(i = 0; i < sizeof(struct sockaddr_in) - offsetof(struct sockaddr_in, sin_zero); i++) {
pfkey_address_s_ska.sin_zero[i] = 0;
}
#endif
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_address_build: "
"successful created len: %d.\n", pfkey_address->sadb_address_len);
errlab:
return error;
}
int
pfkey_key_build(struct sadb_ext** pfkey_ext,
uint16_t exttype,
uint16_t key_bits,
char* key)
{
int error = 0;
struct sadb_key *pfkey_key = (struct sadb_key *)*pfkey_ext;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_key_build:\n");
/* sanity checks... */
if(pfkey_key) {
ERROR("pfkey_key_build: "
"why is pfkey_key already pointing to something?\n");
SENDERR(EINVAL);
}
if(!key_bits) {
ERROR("pfkey_key_build: "
"key_bits is zero, it must be non-zero.\n");
SENDERR(EINVAL);
}
if( !((exttype == SADB_EXT_KEY_AUTH) || (exttype == SADB_EXT_KEY_ENCRYPT))) {
ERROR("pfkey_key_build: "
"unsupported extension type=%d.\n",
exttype);
SENDERR(EINVAL);
}
pfkey_key = (struct sadb_key*)
MALLOC(sizeof(struct sadb_key) +
DIVUP(key_bits, 64) * IPSEC_PFKEYv2_ALIGN);
*pfkey_ext = (struct sadb_ext*)pfkey_key;
if(pfkey_key == NULL) {
ERROR("pfkey_key_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_key,
0,
sizeof(struct sadb_key) +
DIVUP(key_bits, 64) * IPSEC_PFKEYv2_ALIGN);
pfkey_key->sadb_key_len = DIVUP(sizeof(struct sadb_key) * IPSEC_PFKEYv2_ALIGN + key_bits,
64);
pfkey_key->sadb_key_exttype = exttype;
pfkey_key->sadb_key_bits = key_bits;
pfkey_key->sadb_key_reserved = 0;
memcpy((char*)pfkey_key + sizeof(struct sadb_key),
key,
DIVUP(key_bits, 8));
errlab:
return error;
}
int
pfkey_ident_build(struct sadb_ext** pfkey_ext,
uint16_t exttype,
uint16_t ident_type,
uint64_t ident_id,
uint8_t ident_len,
char* ident_string)
{
int error = 0;
struct sadb_ident *pfkey_ident = (struct sadb_ident *)*pfkey_ext;
int data_len = ident_len * IPSEC_PFKEYv2_ALIGN - sizeof(struct sadb_ident);
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_ident_build:\n");
/* sanity checks... */
if(pfkey_ident) {
ERROR("pfkey_ident_build: "
"why is pfkey_ident already pointing to something?\n");
SENDERR(EINVAL);
}
if( ! ((exttype == SADB_EXT_IDENTITY_SRC) ||
(exttype == SADB_EXT_IDENTITY_DST))) {
ERROR("pfkey_ident_build: "
"unsupported extension type=%d.\n",
exttype);
SENDERR(EINVAL);
}
if((ident_type == SADB_IDENTTYPE_RESERVED)) {
ERROR("pfkey_ident_build: "
"ident_type must be non-zero.\n");
SENDERR(EINVAL);
}
if(ident_type > SADB_IDENTTYPE_MAX) {
ERROR("pfkey_ident_build: "
"identtype=%d out of range.\n",
ident_type);
SENDERR(EINVAL);
}
if(((ident_type == SADB_IDENTTYPE_PREFIX) ||
(ident_type == SADB_IDENTTYPE_FQDN)) &&
!ident_string) {
ERROR("pfkey_ident_build: "
"string required to allocate size of extension.\n");
SENDERR(EINVAL);
}
#if 0
if((ident_type == SADB_IDENTTYPE_USERFQDN) ) {
}
#endif
pfkey_ident = (struct sadb_ident*)
MALLOC(ident_len * IPSEC_PFKEYv2_ALIGN);
*pfkey_ext = (struct sadb_ext*)pfkey_ident;
if(pfkey_ident == NULL) {
ERROR("pfkey_ident_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_ident, 0, ident_len * IPSEC_PFKEYv2_ALIGN);
pfkey_ident->sadb_ident_len = ident_len;
pfkey_ident->sadb_ident_exttype = exttype;
pfkey_ident->sadb_ident_type = ident_type;
pfkey_ident->sadb_ident_reserved = 0;
pfkey_ident->sadb_ident_id = ident_id;
memcpy((char*)pfkey_ident + sizeof(struct sadb_ident),
ident_string,
data_len);
errlab:
return error;
}
int
pfkey_sens_build(struct sadb_ext** pfkey_ext,
uint32_t dpd,
uint8_t sens_level,
uint8_t sens_len,
uint64_t* sens_bitmap,
uint8_t integ_level,
uint8_t integ_len,
uint64_t* integ_bitmap)
{
int error = 0;
struct sadb_sens *pfkey_sens = (struct sadb_sens *)*pfkey_ext;
int i;
uint64_t* bitmap;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sens_build:\n");
/* sanity checks... */
if(pfkey_sens) {
ERROR("pfkey_sens_build: "
"why is pfkey_sens already pointing to something?\n");
SENDERR(EINVAL);
}
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_sens_build: "
"Sorry, I can't build exttype=%d yet.\n",
(*pfkey_ext)->sadb_ext_type);
SENDERR(EINVAL); /* don't process these yet */
pfkey_sens = (struct sadb_sens*)
MALLOC(sizeof(struct sadb_sens) +
(sens_len + integ_len) * sizeof(uint64_t));
*pfkey_ext = (struct sadb_ext*)pfkey_sens;
if(pfkey_sens == NULL) {
ERROR("pfkey_sens_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_sens,
0,
sizeof(struct sadb_sens) +
(sens_len + integ_len) * sizeof(uint64_t));
pfkey_sens->sadb_sens_len = (sizeof(struct sadb_sens) +
(sens_len + integ_len) * sizeof(uint64_t)) / IPSEC_PFKEYv2_ALIGN;
pfkey_sens->sadb_sens_exttype = SADB_EXT_SENSITIVITY;
pfkey_sens->sadb_sens_dpd = dpd;
pfkey_sens->sadb_sens_sens_level = sens_level;
pfkey_sens->sadb_sens_sens_len = sens_len;
pfkey_sens->sadb_sens_integ_level = integ_level;
pfkey_sens->sadb_sens_integ_len = integ_len;
pfkey_sens->sadb_sens_reserved = 0;
bitmap = (uint64_t*)((char*)pfkey_ext + sizeof(struct sadb_sens));
for(i = 0; i < sens_len; i++) {
*bitmap = sens_bitmap[i];
bitmap++;
}
for(i = 0; i < integ_len; i++) {
*bitmap = integ_bitmap[i];
bitmap++;
}
errlab:
return error;
}
int
pfkey_prop_build(struct sadb_ext** pfkey_ext,
uint8_t replay,
unsigned int comb_num,
struct sadb_comb* comb)
{
int error = 0;
int i;
struct sadb_prop *pfkey_prop = (struct sadb_prop *)*pfkey_ext;
struct sadb_comb *combp;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_prop_build:\n");
/* sanity checks... */
if(pfkey_prop) {
ERROR("pfkey_prop_build: "
"why is pfkey_prop already pointing to something?\n");
SENDERR(EINVAL);
}
pfkey_prop = (struct sadb_prop*)
MALLOC(sizeof(struct sadb_prop) +
comb_num * sizeof(struct sadb_comb));
*pfkey_ext = (struct sadb_ext*)pfkey_prop;
if(pfkey_prop == NULL) {
ERROR("pfkey_prop_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_prop,
0,
sizeof(struct sadb_prop) +
comb_num * sizeof(struct sadb_comb));
pfkey_prop->sadb_prop_len = (sizeof(struct sadb_prop) +
comb_num * sizeof(struct sadb_comb)) / IPSEC_PFKEYv2_ALIGN;
pfkey_prop->sadb_prop_exttype = SADB_EXT_PROPOSAL;
pfkey_prop->sadb_prop_replay = replay;
for(i=0; i<3; i++) {
pfkey_prop->sadb_prop_reserved[i] = 0;
}
combp = (struct sadb_comb*)((char*)*pfkey_ext + sizeof(struct sadb_prop));
for(i = 0; i < comb_num; i++) {
memcpy (combp, &(comb[i]), sizeof(struct sadb_comb));
combp++;
}
#if 0
uint8_t sadb_comb_auth;
uint8_t sadb_comb_encrypt;
uint16_t sadb_comb_flags;
uint16_t sadb_comb_auth_minbits;
uint16_t sadb_comb_auth_maxbits;
uint16_t sadb_comb_encrypt_minbits;
uint16_t sadb_comb_encrypt_maxbits;
uint32_t sadb_comb_reserved;
uint32_t sadb_comb_soft_allocations;
uint32_t sadb_comb_hard_allocations;
uint64_t sadb_comb_soft_bytes;
uint64_t sadb_comb_hard_bytes;
uint64_t sadb_comb_soft_addtime;
uint64_t sadb_comb_hard_addtime;
uint64_t sadb_comb_soft_usetime;
uint64_t sadb_comb_hard_usetime;
uint32_t sadb_comb_soft_packets;
uint32_t sadb_comb_hard_packets;
#endif
errlab:
return error;
}
int
pfkey_supported_build(struct sadb_ext** pfkey_ext,
uint16_t exttype,
unsigned int alg_num,
struct sadb_alg* alg)
{
int error = 0;
unsigned int i;
struct sadb_supported *pfkey_supported = (struct sadb_supported *)*pfkey_ext;
struct sadb_alg *pfkey_alg;
/* sanity checks... */
if(pfkey_supported) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_supported_build: "
"why is pfkey_supported already pointing to something?\n");
SENDERR(EINVAL);
}
if( !((exttype == SADB_EXT_SUPPORTED_AUTH) || (exttype == SADB_EXT_SUPPORTED_ENCRYPT))) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_supported_build: "
"unsupported extension type=%d.\n",
exttype);
SENDERR(EINVAL);
}
pfkey_supported = (struct sadb_supported*)
MALLOC(sizeof(struct sadb_supported) +
alg_num *
sizeof(struct sadb_alg));
*pfkey_ext = (struct sadb_ext*)pfkey_supported;
if(pfkey_supported == NULL) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_supported_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_supported,
0,
sizeof(struct sadb_supported) +
alg_num *
sizeof(struct sadb_alg));
pfkey_supported->sadb_supported_len = (sizeof(struct sadb_supported) +
alg_num *
sizeof(struct sadb_alg)) /
IPSEC_PFKEYv2_ALIGN;
pfkey_supported->sadb_supported_exttype = exttype;
pfkey_supported->sadb_supported_reserved = 0;
pfkey_alg = (struct sadb_alg*)((char*)pfkey_supported + sizeof(struct sadb_supported));
for(i = 0; i < alg_num; i++) {
memcpy (pfkey_alg, &(alg[i]), sizeof(struct sadb_alg));
pfkey_alg->sadb_alg_reserved = 0;
pfkey_alg++;
}
#if 0
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_supported_build: "
"Sorry, I can't build exttype=%d yet.\n",
(*pfkey_ext)->sadb_ext_type);
SENDERR(EINVAL); /* don't process these yet */
uint8_t sadb_alg_id;
uint8_t sadb_alg_ivlen;
uint16_t sadb_alg_minbits;
uint16_t sadb_alg_maxbits;
uint16_t sadb_alg_reserved;
#endif
errlab:
return error;
}
int
pfkey_spirange_build(struct sadb_ext** pfkey_ext,
uint16_t exttype,
uint32_t min, /* in network order */
uint32_t max) /* in network order */
{
int error = 0;
struct sadb_spirange *pfkey_spirange = (struct sadb_spirange *)*pfkey_ext;
/* sanity checks... */
if(pfkey_spirange) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_spirange_build: "
"why is pfkey_spirange already pointing to something?\n");
SENDERR(EINVAL);
}
if(ntohl(max) < ntohl(min)) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_spirange_build: "
"minspi=%08x must be < maxspi=%08x.\n",
ntohl(min),
ntohl(max));
SENDERR(EINVAL);
}
if(ntohl(min) <= 255) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_spirange_build: "
"minspi=%08x must be > 255.\n",
ntohl(min));
SENDERR(EEXIST);
}
pfkey_spirange = (struct sadb_spirange*)
MALLOC(sizeof(struct sadb_spirange));
*pfkey_ext = (struct sadb_ext*)pfkey_spirange;
if(pfkey_spirange == NULL) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_spirange_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_spirange,
0,
sizeof(struct sadb_spirange));
pfkey_spirange->sadb_spirange_len = sizeof(struct sadb_spirange) / IPSEC_PFKEYv2_ALIGN;
pfkey_spirange->sadb_spirange_exttype = SADB_EXT_SPIRANGE;
pfkey_spirange->sadb_spirange_min = min;
pfkey_spirange->sadb_spirange_max = max;
pfkey_spirange->sadb_spirange_reserved = 0;
errlab:
return error;
}
int
pfkey_x_kmprivate_build(struct sadb_ext** pfkey_ext)
{
int error = 0;
struct sadb_x_kmprivate *pfkey_x_kmprivate = (struct sadb_x_kmprivate *)*pfkey_ext;
/* sanity checks... */
if(pfkey_x_kmprivate) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_kmprivate_build: "
"why is pfkey_x_kmprivate already pointing to something?\n");
SENDERR(EINVAL);
}
pfkey_x_kmprivate->sadb_x_kmprivate_reserved = 0;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_kmprivate_build: "
"Sorry, I can't build exttype=%d yet.\n",
(*pfkey_ext)->sadb_ext_type);
SENDERR(EINVAL); /* don't process these yet */
pfkey_x_kmprivate = (struct sadb_x_kmprivate*)
MALLOC(sizeof(struct sadb_x_kmprivate));
*pfkey_ext = (struct sadb_ext*)pfkey_x_kmprivate;
if(pfkey_x_kmprivate == NULL) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_kmprivate_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_x_kmprivate,
0,
sizeof(struct sadb_x_kmprivate));
pfkey_x_kmprivate->sadb_x_kmprivate_len =
sizeof(struct sadb_x_kmprivate) / IPSEC_PFKEYv2_ALIGN;
pfkey_x_kmprivate->sadb_x_kmprivate_exttype = SADB_X_EXT_KMPRIVATE;
pfkey_x_kmprivate->sadb_x_kmprivate_reserved = 0;
errlab:
return error;
}
int
pfkey_x_satype_build(struct sadb_ext** pfkey_ext,
uint8_t satype)
{
int error = 0;
int i;
struct sadb_x_satype *pfkey_x_satype = (struct sadb_x_satype *)*pfkey_ext;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_satype_build:\n");
/* sanity checks... */
if(pfkey_x_satype) {
ERROR("pfkey_x_satype_build: "
"why is pfkey_x_satype already pointing to something?\n");
SENDERR(EINVAL);
}
if(!satype) {
ERROR("pfkey_x_satype_build: "
"SA type not set, must be non-zero.\n");
SENDERR(EINVAL);
}
if(satype > SADB_SATYPE_MAX) {
ERROR("pfkey_x_satype_build: "
"satype %d > max %d\n",
satype, SADB_SATYPE_MAX);
SENDERR(EINVAL);
}
pfkey_x_satype = (struct sadb_x_satype*)
MALLOC(sizeof(struct sadb_x_satype));
*pfkey_ext = (struct sadb_ext*)pfkey_x_satype;
if(pfkey_x_satype == NULL) {
ERROR("pfkey_x_satype_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
memset(pfkey_x_satype,
0,
sizeof(struct sadb_x_satype));
pfkey_x_satype->sadb_x_satype_len = sizeof(struct sadb_x_satype) / IPSEC_PFKEYv2_ALIGN;
pfkey_x_satype->sadb_x_satype_exttype = SADB_X_EXT_SATYPE2;
pfkey_x_satype->sadb_x_satype_satype = satype;
for(i=0; i<3; i++) {
pfkey_x_satype->sadb_x_satype_reserved[i] = 0;
}
errlab:
return error;
}
int
pfkey_x_debug_build(struct sadb_ext** pfkey_ext,
uint32_t tunnel,
uint32_t netlink,
uint32_t xform,
uint32_t eroute,
uint32_t spi,
uint32_t radij,
uint32_t esp,
uint32_t ah,
uint32_t rcv,
uint32_t pfkey,
uint32_t ipcomp,
uint32_t verbose)
{
int error = 0;
int i;
struct sadb_x_debug *pfkey_x_debug = (struct sadb_x_debug *)*pfkey_ext;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_debug_build:\n");
/* sanity checks... */
if(pfkey_x_debug) {
ERROR("pfkey_x_debug_build: "
"why is pfkey_x_debug already pointing to something?\n");
SENDERR(EINVAL);
}
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_debug_build: "
"tunnel=%x netlink=%x xform=%x eroute=%x spi=%x radij=%x esp=%x ah=%x rcv=%x pfkey=%x ipcomp=%x verbose=%x?\n",
tunnel, netlink, xform, eroute, spi, radij, esp, ah, rcv, pfkey, ipcomp, verbose);
pfkey_x_debug = (struct sadb_x_debug*)
MALLOC(sizeof(struct sadb_x_debug));
*pfkey_ext = (struct sadb_ext*)pfkey_x_debug;
if(pfkey_x_debug == NULL) {
ERROR("pfkey_x_debug_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
#if 0
memset(pfkey_x_debug,
0,
sizeof(struct sadb_x_debug));
#endif
pfkey_x_debug->sadb_x_debug_len = sizeof(struct sadb_x_debug) / IPSEC_PFKEYv2_ALIGN;
pfkey_x_debug->sadb_x_debug_exttype = SADB_X_EXT_DEBUG;
pfkey_x_debug->sadb_x_debug_tunnel = tunnel;
pfkey_x_debug->sadb_x_debug_netlink = netlink;
pfkey_x_debug->sadb_x_debug_xform = xform;
pfkey_x_debug->sadb_x_debug_eroute = eroute;
pfkey_x_debug->sadb_x_debug_spi = spi;
pfkey_x_debug->sadb_x_debug_radij = radij;
pfkey_x_debug->sadb_x_debug_esp = esp;
pfkey_x_debug->sadb_x_debug_ah = ah;
pfkey_x_debug->sadb_x_debug_rcv = rcv;
pfkey_x_debug->sadb_x_debug_pfkey = pfkey;
pfkey_x_debug->sadb_x_debug_ipcomp = ipcomp;
pfkey_x_debug->sadb_x_debug_verbose = verbose;
for(i=0; i<4; i++) {
pfkey_x_debug->sadb_x_debug_reserved[i] = 0;
}
errlab:
return error;
}
int
pfkey_x_nat_t_type_build(struct sadb_ext** pfkey_ext,
uint8_t type)
{
int error = 0;
int i;
struct sadb_x_nat_t_type *pfkey_x_nat_t_type = (struct sadb_x_nat_t_type *)*pfkey_ext;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_nat_t_type_build:\n");
/* sanity checks... */
if(pfkey_x_nat_t_type) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_nat_t_type_build: "
"why is pfkey_x_nat_t_type already pointing to something?\n");
SENDERR(EINVAL);
}
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_nat_t_type_build: "
"type=%d\n", type);
pfkey_x_nat_t_type = (struct sadb_x_nat_t_type*)
MALLOC(sizeof(struct sadb_x_nat_t_type));
*pfkey_ext = (struct sadb_ext*)pfkey_x_nat_t_type;
if(pfkey_x_nat_t_type == NULL) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_nat_t_type_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
pfkey_x_nat_t_type->sadb_x_nat_t_type_len = sizeof(struct sadb_x_nat_t_type) / IPSEC_PFKEYv2_ALIGN;
pfkey_x_nat_t_type->sadb_x_nat_t_type_exttype = SADB_X_EXT_NAT_T_TYPE;
pfkey_x_nat_t_type->sadb_x_nat_t_type_type = type;
for(i=0; i<3; i++) {
pfkey_x_nat_t_type->sadb_x_nat_t_type_reserved[i] = 0;
}
errlab:
return error;
}
int
pfkey_x_nat_t_port_build(struct sadb_ext** pfkey_ext,
uint16_t exttype,
uint16_t port)
{
int error = 0;
struct sadb_x_nat_t_port *pfkey_x_nat_t_port = (struct sadb_x_nat_t_port *)*pfkey_ext;
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_nat_t_port_build:\n");
/* sanity checks... */
if(pfkey_x_nat_t_port) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_nat_t_port_build: "
"why is pfkey_x_nat_t_port already pointing to something?\n");
SENDERR(EINVAL);
}
switch(exttype) {
case SADB_X_EXT_NAT_T_SPORT:
case SADB_X_EXT_NAT_T_DPORT:
break;
default:
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_nat_t_port_build: "
"unrecognised ext_type=%d.\n",
exttype);
SENDERR(EINVAL);
}
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_nat_t_port_build: "
"ext=%d, port=%d\n", exttype, port);
pfkey_x_nat_t_port = (struct sadb_x_nat_t_port*)
MALLOC(sizeof(struct sadb_x_nat_t_port));
*pfkey_ext = (struct sadb_ext*)pfkey_x_nat_t_port;
if(pfkey_x_nat_t_port == NULL) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_x_nat_t_port_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
pfkey_x_nat_t_port->sadb_x_nat_t_port_len = sizeof(struct sadb_x_nat_t_port) / IPSEC_PFKEYv2_ALIGN;
pfkey_x_nat_t_port->sadb_x_nat_t_port_exttype = exttype;
pfkey_x_nat_t_port->sadb_x_nat_t_port_port = port;
pfkey_x_nat_t_port->sadb_x_nat_t_port_reserved = 0;
errlab:
return error;
}
int pfkey_x_protocol_build(struct sadb_ext **pfkey_ext,
uint8_t protocol)
{
int error = 0;
struct sadb_protocol * p = (struct sadb_protocol *)*pfkey_ext;
DEBUGGING(PF_KEY_DEBUG_BUILD,"pfkey_x_protocol_build: protocol=%u\n", protocol);
/* sanity checks... */
if (p != 0) {
ERROR("pfkey_x_protocol_build: bogus protocol pointer\n");
SENDERR(EINVAL);
}
if ((p = (struct sadb_protocol*)MALLOC(sizeof(*p))) == 0) {
ERROR("pfkey_build: memory allocation failed\n");
SENDERR(ENOMEM);
}
*pfkey_ext = (struct sadb_ext *)p;
p->sadb_protocol_len = sizeof(*p) / sizeof(uint64_t);
p->sadb_protocol_exttype = SADB_X_EXT_PROTOCOL;
p->sadb_protocol_proto = protocol;
p->sadb_protocol_flags = 0;
p->sadb_protocol_reserved2 = 0;
errlab:
return error;
}
int
pfkey_msg_build(struct sadb_msg **pfkey_msg, struct sadb_ext *extensions[], int dir)
{
int error = 0;
unsigned ext;
unsigned total_size;
struct sadb_ext *pfkey_ext;
int extensions_seen = 0;
#ifndef __KERNEL__
struct sadb_ext *extensions_check[SADB_EXT_MAX + 1];
#endif
if(!extensions[0]) {
ERROR("pfkey_msg_build: "
"extensions[0] must be specified (struct sadb_msg).\n");
SENDERR(EINVAL);
}
/* figure out the total size for all the requested extensions */
total_size = IPSEC_PFKEYv2_WORDS(sizeof(struct sadb_msg));
for(ext = 1; ext <= SADB_EXT_MAX; ext++) {
if(extensions[ext]) {
total_size += (extensions[ext])->sadb_ext_len;
}
}
/* allocate that much space */
*pfkey_msg = (struct sadb_msg*)MALLOC(total_size * IPSEC_PFKEYv2_ALIGN);
if(*pfkey_msg == NULL) {
ERROR("pfkey_msg_build: "
"memory allocation failed\n");
SENDERR(ENOMEM);
}
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_build: "
"pfkey_msg=0p%p allocated %lu bytes, &(extensions[0])=0p%p\n",
*pfkey_msg,
(unsigned long)(total_size * IPSEC_PFKEYv2_ALIGN),
&(extensions[0]));
memcpy(*pfkey_msg,
extensions[0],
sizeof(struct sadb_msg));
(*pfkey_msg)->sadb_msg_len = total_size;
(*pfkey_msg)->sadb_msg_reserved = 0;
extensions_seen = 1 ;
/*
* point pfkey_ext to immediately after the space for the header,
* i.e. at the first extension location.
*/
pfkey_ext = (struct sadb_ext*)(((char*)(*pfkey_msg)) + sizeof(struct sadb_msg));
for(ext = 1; ext <= SADB_EXT_MAX; ext++) {
/* copy from extension[ext] to buffer */
if(extensions[ext]) {
/* Is this type of extension permitted for this type of message? */
if(!(extensions_bitmaps[dir][EXT_BITS_PERM][(*pfkey_msg)->sadb_msg_type] &
1<<ext)) {
ERROR("pfkey_msg_build: "
"ext type %d not permitted, exts_perm=%08x, 1<<type=%08x\n",
ext,
extensions_bitmaps[dir][EXT_BITS_PERM][(*pfkey_msg)->sadb_msg_type],
1<<ext);
SENDERR(EINVAL);
}
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_build: "
"copying %lu bytes from extensions[%u] (type=%d)\n",
(unsigned long)(extensions[ext]->sadb_ext_len * IPSEC_PFKEYv2_ALIGN),
ext,
extensions[ext]->sadb_ext_type);
memcpy(pfkey_ext,
extensions[ext],
(extensions[ext])->sadb_ext_len * IPSEC_PFKEYv2_ALIGN);
{
char *pfkey_ext_c = (char *)pfkey_ext;
pfkey_ext_c += (extensions[ext])->sadb_ext_len * IPSEC_PFKEYv2_ALIGN;
pfkey_ext = (struct sadb_ext *)pfkey_ext_c;
}
/* Mark that we have seen this extension and remember the header location */
extensions_seen |= ( 1 << ext );
}
}
/* check required extensions */
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_build: "
"extensions permitted=%08x, seen=%08x, required=%08x.\n",
extensions_bitmaps[dir][EXT_BITS_PERM][(*pfkey_msg)->sadb_msg_type],
extensions_seen,
extensions_bitmaps[dir][EXT_BITS_REQ][(*pfkey_msg)->sadb_msg_type]);
if((extensions_seen &
extensions_bitmaps[dir][EXT_BITS_REQ][(*pfkey_msg)->sadb_msg_type]) !=
extensions_bitmaps[dir][EXT_BITS_REQ][(*pfkey_msg)->sadb_msg_type]) {
DEBUGGING(PF_KEY_DEBUG_BUILD,
"pfkey_msg_build: "
"required extensions missing:%08x.\n",
extensions_bitmaps[dir][EXT_BITS_REQ][(*pfkey_msg)->sadb_msg_type] -
(extensions_seen &
extensions_bitmaps[dir][EXT_BITS_REQ][(*pfkey_msg)->sadb_msg_type]) );
SENDERR(EINVAL);
}
#ifndef __KERNEL__
/*
* this is silly, there is no need to reparse the message that we just built.
*
*/
if((error = pfkey_msg_parse(*pfkey_msg, NULL, extensions_check, dir))) {
ERROR(
"pfkey_msg_build: "
"Trouble parsing newly built pfkey message, error=%d.\n",
error);
SENDERR(-error);
}
#endif
errlab:
return error;
}
/*
* $Log: pfkey_v2_build.c,v $
* Revision 1.51.8.1 2006/05/01 14:36:39 mcr
* get rid of dead code.
*
* Revision 1.51 2004/10/03 01:26:36 mcr
* fixes for gcc 3.4 compilation.
*
* Revision 1.50 2004/07/10 07:48:35 mcr
* Moved from linux/lib/libfreeswan/pfkey_v2_build.c,v
*
* Revision 1.49 2004/04/12 02:59:06 mcr
* erroneously moved pfkey_v2_build.c
*
* Revision 1.48 2004/04/09 18:00:40 mcr
* Moved from linux/lib/libfreeswan/pfkey_v2_build.c,v
*
* Revision 1.47 2004/03/08 01:59:08 ken
* freeswan.h -> openswan.h
*
* Revision 1.46 2003/12/10 01:20:19 mcr
* NAT-traversal patches to KLIPS.
*
* Revision 1.45 2003/12/04 23:01:12 mcr
* removed ipsec_netlink.h
*
* Revision 1.44 2003/10/31 02:27:12 mcr
* pulled up port-selector patches and sa_id elimination.
*
* Revision 1.43.4.2 2003/10/29 01:11:32 mcr
* added debugging for pfkey library.
*
* Revision 1.43.4.1 2003/09/21 13:59:44 mcr
* pre-liminary X.509 patch - does not yet pass tests.
*
* Revision 1.43 2003/05/07 17:29:17 mcr
* new function pfkey_debug_func added for us in debugging from
* pfkey library.
*
* Revision 1.42 2003/01/30 02:32:09 rgb
*
* Rename SAref table macro names for clarity.
* Convert IPsecSAref_t from signed to unsigned to fix apparent SAref exhaustion bug.
*
* Revision 1.41 2002/12/13 18:16:02 mcr
* restored sa_ref code
*
* Revision 1.40 2002/12/13 18:06:52 mcr
* temporarily removed sadb_x_sa_ref reference for 2.xx
*
* Revision 1.39 2002/12/13 17:43:28 mcr
* commented out access to sadb_x_sa_ref for 2.xx branch
*
* Revision 1.38 2002/10/09 03:12:05 dhr
*
* [kenb+dhr] 64-bit fixes
*
* Revision 1.37 2002/09/20 15:40:39 rgb
* Added new function pfkey_sa_ref_build() to accomodate saref parameter.
*
* Revision 1.36 2002/09/20 05:01:22 rgb
* Generalise for platform independance: fix (ia64) using unsigned for sizes.
*
* Revision 1.35 2002/07/24 18:44:54 rgb
* Type fiddling to tame ia64 compiler.
*
* Revision 1.34 2002/05/23 07:14:11 rgb
* Cleaned up %p variants to 0p%p for test suite cleanup.
*
* Revision 1.33 2002/04/24 07:55:32 mcr
* #include patches and Makefiles for post-reorg compilation.
*
* Revision 1.32 2002/04/24 07:36:40 mcr
* Moved from ./lib/pfkey_v2_build.c,v
*
* Revision 1.31 2002/01/29 22:25:35 rgb
* Re-add ipsec_kversion.h to keep MALLOC happy.
*
* Revision 1.30 2002/01/29 01:59:09 mcr
* removal of kversions.h - sources that needed it now use ipsec_param.h.
* updating of IPv6 structures to match latest in6.h version.
* removed dead code from openswan.h that also duplicated kversions.h
* code.
*
* Revision 1.29 2001/12/19 21:06:09 rgb
* Added port numbers to pfkey_address_build() debugging.
*
* Revision 1.28 2001/11/06 19:47:47 rgb
* Added packet parameter to lifetime and comb structures.
*
* Revision 1.27 2001/10/18 04:45:24 rgb
* 2.4.9 kernel deprecates linux/malloc.h in favour of linux/slab.h,
* lib/openswan.h version macros moved to lib/kversions.h.
* Other compiler directive cleanups.
*
* Revision 1.26 2001/09/08 21:13:34 rgb
* Added pfkey ident extension support for ISAKMPd. (NetCelo)
*
* Revision 1.25 2001/06/14 19:35:16 rgb
* Update copyright date.
*
* Revision 1.24 2001/03/20 03:49:45 rgb
* Ditch superfluous debug_pfkey declaration.
* Move misplaced openswan.h inclusion for kernel case.
*
* Revision 1.23 2001/03/16 07:41:50 rgb
* Put openswan.h include before pluto includes.
*
* Revision 1.22 2001/02/27 22:24:56 rgb
* Re-formatting debug output (line-splitting, joining, 1arg/line).
* Check for satoa() return codes.
*
* Revision 1.21 2000/11/17 18:10:30 rgb
* Fixed bugs mostly relating to spirange, to treat all spi variables as
* network byte order since this is the way PF_KEYv2 stored spis.
*
* Revision 1.20 2000/10/12 00:02:39 rgb
* Removed 'format, ##' nonsense from debug macros for RH7.0.
*
* Revision 1.19 2000/10/10 20:10:20 rgb
* Added support for debug_ipcomp and debug_verbose to klipsdebug.
*
* Revision 1.18 2000/09/12 18:59:54 rgb
* Added Gerhard's IPv6 support to pfkey parts of libopenswan.
*
* Revision 1.17 2000/09/12 03:27:00 rgb
* Moved DEBUGGING definition to compile kernel with debug off.
*
* Revision 1.16 2000/09/08 19:22:12 rgb
* Fixed pfkey_prop_build() parameter to be only single indirection.
* Fixed struct alg copy.
*
* Revision 1.15 2000/08/20 21:40:01 rgb
* Added an address parameter sanity check to pfkey_address_build().
*
* Revision 1.14 2000/08/15 17:29:23 rgb
* Fixes from SZI to untested pfkey_prop_build().
*
* Revision 1.13 2000/06/02 22:54:14 rgb
* Added Gerhard Gessler's struct sockaddr_storage mods for IPv6 support.
*
* Revision 1.12 2000/05/10 19:24:01 rgb
* Fleshed out sensitivity, proposal and supported extensions.
*
* Revision 1.11 2000/03/16 14:07:23 rgb
* Renamed ALIGN macro to avoid fighting with others in kernel.
*
* Revision 1.10 2000/01/24 21:14:35 rgb
* Added disabled pluto pfkey lib debug flag.
*
* Revision 1.9 2000/01/21 06:27:32 rgb
* Added address cases for eroute flows.
* Removed unused code.
* Dropped unused argument to pfkey_x_satype_build().
* Indented compiler directives for readability.
* Added klipsdebug switching capability.
* Fixed SADB_EXT_MAX bug not permitting last extension access.
*
* Revision 1.8 1999/12/29 21:17:41 rgb
* Changed pfkey_msg_build() I/F to include a struct sadb_msg**
* parameter for cleaner manipulation of extensions[] and to guard
* against potential memory leaks.
* Changed the I/F to pfkey_msg_free() for the same reason.
*
* Revision 1.7 1999/12/09 23:12:20 rgb
* Removed unused cruft.
* Added argument to pfkey_sa_build() to do eroutes.
* Fixed exttype check in as yet unused pfkey_lifetime_build().
*
* Revision 1.6 1999/12/07 19:54:29 rgb
* Removed static pluto debug flag.
* Added functions for pfkey message and extensions initialisation
* and cleanup.
*
* Revision 1.5 1999/12/01 22:20:06 rgb
* Changed pfkey_sa_build to accept an SPI in network byte order.
* Added <string.h> to quiet userspace compiler.
* Moved pfkey_lib_debug variable into the library.
* Removed SATYPE check from pfkey_msg_hdr_build so FLUSH will work.
* Added extension assembly debugging.
* Isolated assignment with brackets to be sure of scope.
*
* Revision 1.4 1999/11/27 11:57:35 rgb
* Added ipv6 headers.
* Remove over-zealous algorithm sanity checkers from pfkey_sa_build.
* Debugging error messages added.
* Fixed missing auth and encrypt assignment bug.
* Add argument to pfkey_msg_parse() for direction.
* Move parse-after-build check inside pfkey_msg_build().
* Consolidated the 4 1-d extension bitmap arrays into one 4-d array.
* Add CVS log entry to bottom of file.
*
*/
|