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
|
/*
* Mach Operating System
* Copyright (c) 1992,1991,1990 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
#include <assert.h>
#include "write.h"
#include "error.h"
#include "utils.h"
#include "global.h"
#include "mig_string.h"
#include "cpu.h"
/*************************************************************
* Writes the standard includes. The subsystem specific
* includes are in <SubsystemName>.h and writen by
* header:WriteHeader. Called by WriteProlog.
*************************************************************/
static void
WriteIncludes(FILE *file)
{
fprintf(file, "#ifndef _GNU_SOURCE\n");
fprintf(file, "#define _GNU_SOURCE 1\n");
fprintf(file, "#endif\n\n");
if (IsKernelServer)
{
/*
* We want to get the user-side definitions of types
* like task_t, ipc_space_t, etc. in mach/mach_types.h.
*/
fprintf(file, "#undef\tKERNEL\n");
if (InternalHeaderFileName != strNULL)
{
char *cp;
/* Strip any leading path from InternalHeaderFileName. */
cp = strrchr(InternalHeaderFileName, '/');
if (cp == 0)
cp = InternalHeaderFileName;
else
cp++; /* skip '/' */
fprintf(file, "#include \"%s\"\n", cp);
}
}
if (UserHeaderFileName != strNULL)
{
char *cp;
/* Strip any leading path from UserHeaderFileName. */
cp = strrchr(UserHeaderFileName, '/');
if (cp == 0)
cp = UserHeaderFileName;
else
cp++; /* skip '/' */
fprintf(file, "#include \"%s\"\n", cp);
}
fprintf(file, "#define EXPORT_BOOLEAN\n");
fprintf(file, "#include <mach/boolean.h>\n");
fprintf(file, "#include <mach/kern_return.h>\n");
fprintf(file, "#include <mach/message.h>\n");
fprintf(file, "#include <mach/notify.h>\n");
fprintf(file, "#include <mach/mach_types.h>\n");
fprintf(file, "#include <mach/mig_errors.h>\n");
fprintf(file, "#include <mach/mig_support.h>\n");
if (IsKernelUser)
fprintf(file, "#include <kern/ipc_mig.h>\n");
fprintf(file, "#include <stdint.h>\n");
fprintf(file, "\n");
}
static void
WriteGlobalDecls(FILE *file)
{
if (RCSId != strNULL)
WriteRCSDecl(file, strconcat(SubsystemName, "_user"), RCSId);
fprintf(file, "#define msgh_request_port\tmsgh_remote_port\n");
fprintf(file, "#define msgh_reply_port\t\tmsgh_local_port\n");
fprintf(file, "\n");
}
/*************************************************************
* Writes the standard #includes, #defines, and
* RCS declaration. Called by WriteUser.
*************************************************************/
static void
WriteProlog(FILE *file)
{
WriteIncludes(file);
WriteBogusDefines(file);
WriteGlobalDecls(file);
}
/*ARGSUSED*/
static void
WriteEpilog(FILE *file)
{
}
static const_string_t
WriteHeaderPortType(const argument_t *arg)
{
if (arg->argType->itInName == MACH_MSG_TYPE_POLYMORPHIC)
return arg->argPoly->argVarName;
else
return arg->argType->itInNameStr;
}
static void
WriteRequestHead(FILE *file, const routine_t *rt)
{
if (rt->rtMaxRequestPos > 0)
fprintf(file, "\tInP = &Mess.In;\n");
if (rt->rtSimpleFixedRequest) {
fprintf(file, "\tInP->Head.msgh_bits =");
if (!rt->rtSimpleSendRequest)
fprintf(file, " MACH_MSGH_BITS_COMPLEX|");
fprintf(file, "\n");
fprintf(file, "\t\tMACH_MSGH_BITS(%s, %s);\n",
WriteHeaderPortType(rt->rtRequestPort),
WriteHeaderPortType(rt->rtUReplyPort));
} else {
fprintf(file, "\tInP->Head.msgh_bits = msgh_simple ?\n");
fprintf(file, "\t\tMACH_MSGH_BITS(%s, %s) :\n",
WriteHeaderPortType(rt->rtRequestPort),
WriteHeaderPortType(rt->rtUReplyPort));
fprintf(file, "\t\t(MACH_MSGH_BITS_COMPLEX|\n");
fprintf(file, "\t\t MACH_MSGH_BITS(%s, %s));\n",
WriteHeaderPortType(rt->rtRequestPort),
WriteHeaderPortType(rt->rtUReplyPort));
}
fprintf(file, "\t/* msgh_size filled below */\n");
/*
* KernelUser stubs need to cast the request and reply ports
* from ipc_port_t to mach_port_t.
*/
if (IsKernelUser)
fprintf(file, "\tInP->%s = (mach_port_t) %s;\n",
rt->rtRequestPort->argMsgField,
rt->rtRequestPort->argVarName);
else
fprintf(file, "\tInP->%s = %s;\n",
rt->rtRequestPort->argMsgField,
rt->rtRequestPort->argVarName);
if (akCheck(rt->rtUReplyPort->argKind, akbUserArg)) {
if (IsKernelUser)
fprintf(file, "\tInP->%s = (mach_port_t) %s;\n",
rt->rtUReplyPort->argMsgField,
rt->rtUReplyPort->argVarName);
else
fprintf(file, "\tInP->%s = %s;\n",
rt->rtUReplyPort->argMsgField,
rt->rtUReplyPort->argVarName);
} else if (rt->rtOneWay || IsKernelUser)
fprintf(file, "\tInP->%s = MACH_PORT_NULL;\n",
rt->rtUReplyPort->argMsgField);
else
fprintf(file, "\tInP->%s = %smig_get_reply_port();\n",
rt->rtUReplyPort->argMsgField, SubrPrefix);
fprintf(file, "\tInP->Head.msgh_seqno = 0;\n");
fprintf(file, "\tInP->Head.msgh_id = %d;\n", rt->rtNumber + SubsystemBase);
}
/*************************************************************
* Writes declarations for the message types, variables
* and return variable if needed. Called by WriteRoutine.
*************************************************************/
static void
WriteVarDecls(FILE *file, const routine_t *rt)
{
fprintf(file, "\tunion {\n");
fprintf(file, "\t\tRequest In;\n");
if (!rt->rtOneWay)
fprintf(file, "\t\tReply Out;\n");
fprintf(file, "\t} Mess;\n");
fprintf(file, "\n");
fprintf(file, "\tRequest *InP = &Mess.In;\n");
if (!rt->rtOneWay)
fprintf(file, "\tReply *OutP = &Mess.Out;\n");
fprintf(file, "\n");
if (!rt->rtOneWay)
fprintf(file, "\tmach_msg_return_t msg_result;\n");
if (!rt->rtSimpleFixedRequest)
fprintf(file, "\tboolean_t msgh_simple = %s;\n",
strbool(rt->rtSimpleSendRequest));
else if (!rt->rtOneWay &&
!(rt->rtSimpleCheckReply && rt->rtSimpleReceiveReply)) {
fprintf(file, "#if\tTypeCheck\n");
fprintf(file, "\tboolean_t msgh_simple;\n");
fprintf(file, "#endif\t/* TypeCheck */\n");
}
if (rt->rtNumRequestVar > 0)
fprintf(file, "\tunsigned int msgh_size;\n");
else if (!rt->rtOneWay && !rt->rtNoReplyArgs)
{
fprintf(file, "#if\tTypeCheck\n");
fprintf(file, "\tunsigned int msgh_size;\n");
fprintf(file, "#endif\t/* TypeCheck */\n");
}
/* if either request or reply is variable, we need msgh_size_delta */
if ((rt->rtMaxRequestPos > 0) ||
(rt->rtMaxReplyPos > 0))
fprintf(file, "\tunsigned int msgh_size_delta;\n");
fprintf(file, "\n");
}
/*************************************************************
* Writes code to call the user provided error procedure
* when a MIG error occurs. Called by WriteMsgSend,
* WriteMsgCheckReceive, WriteCheckIdentity,
* WriteRetCodeCheck, WriteTypeCheck, WritePackArgValue.
*************************************************************/
static void
WriteMsgError(FILE *file, const routine_t *rt, const char *error_msg)
{
if (rt->rtReturn != rt->rtRetCode)
{
fprintf(file, "\t\t{ (%s); ", error_msg);
if (rt->rtNumReplyVar > 0)
fprintf(file, "OutP = &Mess.Out; ");
fprintf(file, "return OutP->%s; }\n", rt->rtReturn->argMsgField);
}
else
fprintf(file, "\t\treturn %s;\n", error_msg);
}
/*************************************************************
* Writes the send call when there is to be no subsequent
* receive. Called by WriteRoutine for SimpleRoutines.
*************************************************************/
static void
WriteMsgSend(FILE *file, const routine_t *rt)
{
const char *MsgResult = "return";
char SendSize[24];
if (rt->rtNumRequestVar == 0)
{
sprintf(SendSize, "%d", rt->rtRequestSize);
fprintf(file, "\t_Static_assert(sizeof(Request) == %s, \"Request expected to be %s bytes\");\n", SendSize, SendSize);
}
else
strcpy(SendSize, "msgh_size");
fprintf(file, "\tInP->Head.msgh_size = %s;\n\n", SendSize);
if (IsKernelUser)
{
fprintf(file, "\t%s %smach_msg_send_from_kernel(",
MsgResult, SubrPrefix);
fprintf(file, "&InP->Head, %s);\n", SendSize);
}
else
{
fprintf(file, "\t%s %smach_msg(&InP->Head, MACH_SEND_MSG|%s, %s, 0,",
MsgResult,
SubrPrefix,
rt->rtMsgOption->argVarName,
SendSize);
fprintf(file,
" MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);\n"
);
}
}
/*************************************************************
* Writes to code to check for error returns from receive.
* Called by WriteMsgSendReceive and WriteMsgRPC
*************************************************************/
static void
WriteMsgCheckReceive(FILE *file, const routine_t *rt, const char *success)
{
fprintf(file, "\tif (msg_result != %s) {\n", success);
if (!akCheck(rt->rtUReplyPort->argKind, akbUserArg) && !IsKernelUser)
{
/* If we aren't using a user-supplied reply port,
then deallocate the reply port on any message transmission
errors. */
fprintf(file, "\t\t%smig_dealloc_reply_port(%s);\n",
SubrPrefix, "InP->Head.msgh_reply_port");
}
WriteMsgError(file, rt, "msg_result");
fprintf(file, "\t}\n");
/*
* If not using a user supplied reply port, tell the port
* allocator we're done with the port.
*/
if (!akCheck(rt->rtUReplyPort->argKind, akbUserArg) && !IsKernelUser)
{
fprintf(file, "\t%smig_put_reply_port(InP->Head.msgh_reply_port);\n",
SubrPrefix);
}
}
/*************************************************************
* Writes the rpc call and the code to check for errors.
* This is the default code to be generated. Called by WriteRoutine
* for all routine types except SimpleRoutine.
*************************************************************/
static void
WriteMsgRPC(FILE *file, const routine_t *rt)
{
char SendSize[24];
if (rt->rtNumRequestVar == 0)
{
sprintf(SendSize, "%d", rt->rtRequestSize);
fprintf(file, "\t_Static_assert(sizeof(Request) == %s, \"Request expected to be %s bytes\");\n", SendSize, SendSize);
} else
strcpy(SendSize, "msgh_size");
fprintf(file, "\tInP->Head.msgh_size = %s;\n\n", SendSize);
if (IsKernelUser)
fprintf(file, "\tmsg_result = %smach_msg_rpc_from_kernel(&InP->Head, %s, sizeof(Reply));\n",
SubrPrefix,
SendSize);
else
fprintf(file, "\tmsg_result = %smach_msg(&InP->Head, MACH_SEND_MSG|MACH_RCV_MSG|%s%s, %s, sizeof(Reply), InP->Head.msgh_reply_port, %s, MACH_PORT_NULL);\n",
SubrPrefix,
rt->rtMsgOption->argVarName,
rt->rtWaitTime != argNULL ? "|MACH_RCV_TIMEOUT" : "",
SendSize,
rt->rtWaitTime != argNULL? rt->rtWaitTime->argVarName : "MACH_MSG_TIMEOUT_NONE");
WriteMsgCheckReceive(file, rt, "MACH_MSG_SUCCESS");
fprintf(file, "\n");
}
/*************************************************************
* Sets the correct value of the dealloc flag and calls
* Utils:WritePackMsgType to fill in the ipc msg type word(s)
* in the request message. Called by WriteRoutine for each
* argument that is to be sent in the request message.
*************************************************************/
static void
WritePackArgType(FILE *file, const argument_t *arg)
{
WritePackMsgType(file, arg->argType,
arg->argType->itIndefinite ? d_NO : arg->argDeallocate,
arg->argLongForm, true,
"InP->%s", "%s", arg->argTTName);
fprintf(file, "\n");
}
/*************************************************************
* Writes code to copy an argument into the request message.
* Called by WriteRoutine for each argument that is to placed
* in the request message.
*************************************************************/
static void
WritePackArgValue(FILE *file, const argument_t *arg)
{
const ipc_type_t *it = arg->argType;
const char *ref = arg->argByReferenceUser ? "*" : "";
if (it->itInLine && it->itVarArray) {
if (it->itString) {
/*
* Copy variable-size C string with mig_strncpy.
* Save the string length (+ 1 for trailing 0)
* in the argument`s count field.
*/
fprintf(file,
"\tInP->%s = %smig_strncpy(InP->%s, %s, %d);\n",
arg->argCount->argMsgField,
SubrPrefix,
arg->argMsgField,
arg->argVarName,
it->itNumber);
fprintf(file,
"\tif (InP->%s < %d) InP->%s += 1;\n",
arg->argCount->argMsgField,
it->itNumber,
arg->argCount->argMsgField);
}
else {
/*
* Copy in variable-size inline array with memcpy,
* after checking that number of elements doesn`t
* exceed declared maximum.
*/
const argument_t *count = arg->argCount;
const char *countRef = count->argByReferenceUser ? "*" :"";
const ipc_type_t *btype = it->itElement;
/* Note btype->itNumber == count->argMultiplier */
fprintf(file, "\tif (%s%s > %d) {\n",
countRef, count->argVarName,
it->itNumber/btype->itNumber);
if (it->itIndefinite) {
fprintf(file, "\t\tInP->%s%s.msgt_inline = FALSE;\n",
arg->argTTName,
arg->argLongForm ? ".msgtl_header" : "");
if (arg->argDeallocate == d_YES)
fprintf(file, "\t\tInP->%s%s.msgt_deallocate = TRUE;\n",
arg->argTTName,
arg->argLongForm ? ".msgtl_header" : "");
else if (arg->argDeallocate == d_MAYBE)
fprintf(file, "\t\tInP->%s%s.msgt_deallocate = %s%s;\n",
arg->argTTName,
arg->argLongForm ? ".msgtl_header" : "",
arg->argDealloc->argByReferenceUser ? "*" : "",
arg->argDealloc->argVarName);
fprintf(file, "\t\tInP->%s%s = %s%s;\n",
arg->argMsgField,
OOLPostfix,
ref, arg->argVarName);
if (!arg->argRoutine->rtSimpleFixedRequest)
fprintf(file, "\t\tmsgh_simple = FALSE;\n");
}
else
WriteMsgError(file, arg->argRoutine, "MIG_ARRAY_TOO_LARGE");
fprintf(file, "\t}\n\telse if (%s%s) {\n", countRef, count->argVarName);
fprintf(file, "\t\tmemcpy(InP->%s, %s%s, ", arg->argMsgField,
ref, arg->argVarName);
if (btype->itTypeSize > 1)
fprintf(file, "%d * ", btype->itTypeSize);
fprintf(file, "%s%s);\n",
countRef, count->argVarName);
fprintf(file, "\t}\n");
}
}
else if (arg->argMultiplier > 1)
WriteCopyType(file, it, "InP->%s", "/* %s */ %d * %s%s",
arg->argMsgField, arg->argMultiplier,
ref, arg->argVarName);
else
WriteCopyType(file, it, "InP->%s", "/* %s */ %s%s",
arg->argMsgField, ref, arg->argVarName);
fprintf(file, "\n");
}
static void
WriteAdjustMsgSimple(FILE *file, const argument_t *arg)
{
if (!arg->argRoutine->rtSimpleFixedRequest)
{
const char *ref = arg->argByReferenceUser ? "*" : "";
fprintf(file, "\tif (MACH_MSG_TYPE_PORT_ANY(%s%s))\n",
ref, arg->argVarName);
fprintf(file, "\t\tmsgh_simple = FALSE;\n");
fprintf(file, "\n");
}
}
/*
* Calculate the size of a variable-length message field.
*/
static void
WriteArgSize(FILE *file, const argument_t *arg)
{
const ipc_type_t *ptype = arg->argType;
int bsize = ptype->itElement->itTypeSize;
const argument_t *count = arg->argCount;
if (ptype->itIndefinite) {
/*
* Check descriptor. If out-of-line, use standard size.
*/
fprintf(file, "(InP->%s%s.msgt_inline) ? ",
arg->argTTName, arg->argLongForm ? ".msgtl_header" : "");
}
if (bsize % word_size != 0)
fprintf(file, "(");
if (bsize > 1)
fprintf(file, "%d * ", bsize);
if (ptype->itString)
/* get count from descriptor in message */
fprintf(file, "InP->%s", count->argMsgField);
else
/* get count from argument */
fprintf(file, "%s%s",
count->argByReferenceUser ? "*" : "",
count->argVarName);
/*
* If the base type size is not a multiple of word_size,
* we have to round up.
*/
if (bsize % word_size != 0)
fprintf(file, " + %d) & ~%d", word_size - 1, word_size - 1);
if (ptype->itIndefinite) {
fprintf(file, " : sizeof(%s *)",
FetchUserType(ptype->itElement));
}
}
/*
* Adjust message size and advance request pointer.
* Called after packing a variable-length argument that
* has more arguments following.
*/
static void
WriteAdjustMsgSize(FILE *file, const argument_t *arg)
{
const ipc_type_t *ptype = arg->argType;
/* There are more In arguments. We need to adjust msgh_size
and advance InP, so we save the size of the current field
in msgh_size_delta. */
fprintf(file, "\tmsgh_size_delta = ");
WriteArgSize(file, arg);
fprintf(file, ";\n");
if (arg->argRequestPos == 0)
/* First variable-length argument. The previous msgh_size value
is the minimum request size. */
fprintf(file, "\tmsgh_size = %d + msgh_size_delta;\n",
arg->argRoutine->rtRequestSize);
else
fprintf(file, "\tmsgh_size += msgh_size_delta;\n");
fprintf(file,
"\tInP = (Request *) ((char *) InP + msgh_size_delta - %d);\n",
ptype->itTypeSize + ptype->itPadSize);
}
/*
* Calculate the size of the message. Called after the
* last argument has been packed.
*/
static void
WriteFinishMsgSize(FILE *file, const argument_t *arg)
{
/* No more In arguments. If this is the only variable In
argument, the previous msgh_size value is the minimum
request size. */
if (arg->argRequestPos == 0) {
fprintf(file, "\tmsgh_size = %d + (",
arg->argRoutine->rtRequestSize);
WriteArgSize(file, arg);
fprintf(file, ");\n");
}
else {
fprintf(file, "\tmsgh_size += ");
WriteArgSize(file, arg);
fprintf(file, ";\n");
}
}
static void
WriteInitializeCount(FILE *file, const argument_t *arg)
{
const ipc_type_t *ptype = arg->argCInOut->argParent->argType;
const ipc_type_t *btype = ptype->itElement;
fprintf(file, "\tif (%s%s < %d)\n",
arg->argByReferenceUser ? "*" : "",
arg->argVarName,
ptype->itNumber/btype->itNumber);
fprintf(file, "\t\tInP->%s = %s%s;\n",
arg->argMsgField,
arg->argByReferenceUser ? "*" : "",
arg->argVarName);
fprintf(file, "\telse\n");
fprintf(file, "\t\tInP->%s = %d;\n",
arg->argMsgField, ptype->itNumber/btype->itNumber);
fprintf(file, "\n");
}
/*
* Called for every argument. Responsible for packing that
* argument into the request message.
*/
static void
WritePackArg(FILE *file, const argument_t *arg)
{
if (akCheck(arg->argKind, akbRequest))
WritePackArgType(file, arg);
if ((akIdent(arg->argKind) == akePoly) &&
akCheckAll(arg->argKind, akbSendSnd|akbUserArg))
WriteAdjustMsgSimple(file, arg);
if ((akIdent(arg->argKind) == akeCountInOut) &&
akCheck(arg->argKind, akbSendSnd))
WriteInitializeCount(file, arg);
else if (akCheckAll(arg->argKind, akbSendSnd|akbSendBody))
WritePackArgValue(file, arg);
}
/*
* Generate code to fill in all of the request arguments and their
* message types.
*/
static void
WriteRequestArgs(FILE *file, const routine_t *rt)
{
const argument_t *arg;
const argument_t *lastVarArg;
lastVarArg = argNULL;
for (arg = rt->rtArgs; arg != argNULL; arg = arg->argNext)
{
/*
* Adjust message size and advance message pointer if
* the last request argument was variable-length and the
* request position will change.
*/
if (lastVarArg != argNULL &&
lastVarArg->argRequestPos < arg->argRequestPos)
{
WriteAdjustMsgSize(file, lastVarArg);
lastVarArg = argNULL;
}
/*
* Copy the argument
*/
WritePackArg(file, arg);
/*
* Remember whether this was variable-length.
*/
if (akCheckAll(arg->argKind, akbSendSnd|akbSendBody|akbVariable))
lastVarArg = arg;
}
/*
* Finish the message size.
*/
if (lastVarArg != argNULL)
WriteFinishMsgSize(file, lastVarArg);
}
/*************************************************************
* Writes code to check that the return msgh_id is correct and that
* the size of the return message is correct. Called by
* WriteRoutine.
*************************************************************/
static void
WriteCheckIdentity(FILE *file, const routine_t *rt)
{
fprintf(file, "\tif (mig_unlikely (OutP->Head.msgh_id != %d)) {\n",
rt->rtNumber + SubsystemBase + 100);
fprintf(file, "\t\tif (OutP->Head.msgh_id == MACH_NOTIFY_SEND_ONCE)\n\t");
WriteMsgError(file, rt, "MIG_SERVER_DIED");
fprintf(file, "\t\telse {\n");
fprintf(file, "\t\t\t%smig_dealloc_reply_port(%s);\n\t",
SubrPrefix,"InP->Head.msgh_reply_port");
WriteMsgError(file, rt, "MIG_REPLY_MISMATCH");
fprintf(file, "\t\t}\n\t}\n");
fprintf(file, "\n");
fprintf(file, "#if\tTypeCheck\n");
if (rt->rtSimpleCheckReply && rt->rtSimpleReceiveReply)
{
/* Expecting a simple message. We can factor out the check for
a simple message, since the error reply message is also simple.
*/
if (!rt->rtNoReplyArgs)
fprintf(file, "\tmsgh_size = OutP->Head.msgh_size;\n\n");
fprintf(file,
"\tif (mig_unlikely ("
"(OutP->Head.msgh_bits & MACH_MSGH_BITS_COMPLEX) ||\n");
if (rt->rtNoReplyArgs)
fprintf(file, "\t (OutP->Head.msgh_size != %d)))\n",
rt->rtReplySize);
else {
fprintf(file, "\t ((msgh_size %s %d) &&\n",
(rt->rtNumReplyVar > 0) ? "<" : "!=",
rt->rtReplySize);
fprintf(file, "\t ((msgh_size != sizeof(mig_reply_header_t)) ||\n");
fprintf(file, "\t (OutP->RetCode == KERN_SUCCESS)))))\n");
}
}
else {
/* Expecting a complex message, or may vary at run time. */
fprintf(file, "\tmsgh_size = OutP->Head.msgh_size;\n");
fprintf(file, "\tmsgh_simple = !(OutP->Head.msgh_bits & MACH_MSGH_BITS_COMPLEX);\n");
fprintf(file, "\n");
fprintf(file, "\tif (mig_unlikely (((msgh_size %s %d)",
(rt->rtNumReplyVar > 0) ? "<" : "!=",
rt->rtReplySize);
if (rt->rtSimpleCheckReply)
/* if rtSimpleReceiveReply was true, then we would have
executed the code above. So we know that the message
is complex. */
fprintf(file, " || msgh_simple");
fprintf(file, ") &&\n");
fprintf(file, "\t ((msgh_size != sizeof(mig_reply_header_t)) ||\n");
fprintf(file, "\t !msgh_simple ||\n");
fprintf(file, "\t (OutP->RetCode == KERN_SUCCESS))))\n");
}
WriteMsgError(file, rt, "MIG_TYPE_ERROR");
fprintf(file, "#endif\t/* TypeCheck */\n");
fprintf(file, "\n");
}
/*************************************************************
* Write code to generate error handling code if the RetCode
* argument of a Routine is not KERN_SUCCESS.
*************************************************************/
static void
WriteRetCodeCheck(FILE *file, const routine_t *rt)
{
fprintf(file, "\tif (OutP->RetCode != KERN_SUCCESS)\n");
WriteMsgError(file, rt, "OutP->RetCode");
fprintf(file, "\n");
}
/*************************************************************
* Writes code to check that the type of each of the arguments
* in the reply message is what is expected. Called by
* WriteRoutine for each argument in the reply message.
*************************************************************/
static void
WriteTypeCheck(FILE *file, const argument_t *arg)
{
const ipc_type_t *it = arg->argType;
const routine_t *rt = arg->argRoutine;
fprintf(file, "#if\tTypeCheck\n");
if (akCheck(arg->argKind, akbReplyQC))
{
fprintf(file, "\tif (BAD_TYPECHECK (&OutP->%s, &%sCheck))\n",
arg->argTTName, arg->argVarName);
}
else
{
fprintf(file, "\tif (mig_unlikely (");
if (!it->itIndefinite) {
fprintf(file, "(OutP->%s%s.msgt_inline != %s) ||\n\t ",
arg->argTTName,
arg->argLongForm ? ".msgtl_header" : "",
strbool(it->itInLine));
}
fprintf(file, "(OutP->%s%s.msgt_longform != %s) ||\n",
arg->argTTName,
arg->argLongForm ? ".msgtl_header" : "",
strbool(arg->argLongForm));
if (it->itOutName == MACH_MSG_TYPE_POLYMORPHIC)
{
if (!rt->rtSimpleCheckReply)
fprintf(file, "\t (MACH_MSG_TYPE_PORT_ANY(OutP->%s.msgt%s_name) && msgh_simple) ||\n",
arg->argTTName,
arg->argLongForm ? "l" : "");
}
else
fprintf(file, "\t (OutP->%s.msgt%s_name != %s) ||\n",
arg->argTTName,
arg->argLongForm ? "l" : "",
it->itOutNameStr);
if (!it->itVarArray)
fprintf(file, "\t (OutP->%s.msgt%s_number != %d) ||\n",
arg->argTTName,
arg->argLongForm ? "l" : "",
it->itNumber);
fprintf(file, "\t (OutP->%s.msgt%s_size != %d)))\n",
arg->argTTName,
arg->argLongForm ? "l" : "",
it->itSize);
}
WriteMsgError(file, rt, "MIG_TYPE_ERROR");
fprintf(file, "#endif\t/* TypeCheck */\n");
fprintf(file, "\n");
}
static void
WriteCheckArgSize(FILE *file, const argument_t *arg)
{
const ipc_type_t *ptype = arg->argType;
const ipc_type_t *btype = ptype->itElement;
const argument_t *count = arg->argCount;
int multiplier = btype->itTypeSize / btype->itNumber;
if (ptype->itIndefinite) {
/*
* Check descriptor. If out-of-line, use standard size.
*/
fprintf(file, "(OutP->%s%s.msgt_inline) ? ",
arg->argTTName, arg->argLongForm ? ".msgtl_header" : "");
}
if (btype->itTypeSize % word_size != 0)
fprintf(file, "(");
if (multiplier > 1)
fprintf(file, "%d * ", multiplier);
fprintf(file, "OutP->%s", count->argMsgField);
/* If the base type size of the data field isn`t a multiple of word_size,
we have to round up. */
if (btype->itTypeSize % word_size != 0)
fprintf(file, " + %d) & ~%d", word_size - 1, word_size - 1);
if (ptype->itIndefinite)
fprintf(file, " : sizeof(%s *)", FetchUserType(btype));
}
static void
WriteCheckMsgSize(FILE *file, const argument_t *arg)
{
const routine_t *rt = arg->argRoutine;
/* If there aren't any more Out args after this, then
we can use the msgh_size_delta value directly in
the TypeCheck conditional. */
if (arg->argReplyPos == rt->rtMaxReplyPos)
{
fprintf(file, "#if\tTypeCheck\n");
fprintf(file, "\tif (mig_unlikely (msgh_size != %d + (",
rt->rtReplySize);
WriteCheckArgSize(file, arg);
fprintf(file, ")))\n");
WriteMsgError(file, rt, "MIG_TYPE_ERROR");
fprintf(file, "#endif\t/* TypeCheck */\n");
}
else
{
/* If there aren't any more variable-sized arguments after this,
then we must check for exact msg-size and we don't need
to update msgh_size. */
bool LastVarArg = arg->argReplyPos+1 == rt->rtNumReplyVar;
/* calculate the actual size in bytes of the data field. note
that this quantity must be a multiple of word_size. hence, if
the base type size isn't a multiple of word_size, we have to
round up. note also that btype->itNumber must
divide btype->itTypeSize (see itCalculateSizeInfo). */
fprintf(file, "\tmsgh_size_delta = ");
WriteCheckArgSize(file, arg);
fprintf(file, ";\n");
fprintf(file, "#if\tTypeCheck\n");
/* Don't decrement msgh_size until we've checked that
it won't underflow. */
if (LastVarArg)
fprintf(file,
"\tif (mig_unlikely (msgh_size != %d + msgh_size_delta))\n",
rt->rtReplySize);
else
fprintf(file,
"\tif (mig_unlikely (msgh_size < %d + msgh_size_delta))\n",
rt->rtReplySize);
WriteMsgError(file, rt, "MIG_TYPE_ERROR");
if (!LastVarArg)
fprintf(file, "\tmsgh_size -= msgh_size_delta;\n");
fprintf(file, "#endif\t/* TypeCheck */\n");
}
fprintf(file, "\n");
}
/*************************************************************
* Write code to copy an argument from the reply message
* to the parameter. Called by WriteRoutine for each argument
* in the reply message.
*************************************************************/
static void
WriteExtractArgValue(FILE *file, const argument_t *arg)
{
const ipc_type_t *argType = arg->argType;
const char *ref = arg->argByReferenceUser ? "*" : "";
if (argType->itInLine && argType->itVarArray) {
if (argType->itString) {
/*
* Copy out variable-size C string with mig_strncpy.
*/
fprintf(file, "\t(void) %smig_strncpy(%s%s, OutP->%s, %d);\n",
SubrPrefix,
ref,
arg->argVarName,
arg->argMsgField,
argType->itNumber);
}
else if (argType->itIndefinite) {
/*
* If data was returned out-of-line,
* change user`s pointer to point to it.
* If data was returned in-line but doesn`t fit,
* allocate a new buffer, copy the data to it,
* and change user`s pointer to point to it.
* If data was returned in-line and fits,
* copy to buffer.
*/
const argument_t *count = arg->argCount;
const char *countRef = count->argByReferenceUser ? "*" : "";
const ipc_type_t *btype = argType->itElement;
fprintf(file, "\tif (!OutP->%s%s.msgt_inline)\n",
arg->argTTName,
arg->argLongForm ? ".msgtl_header" : "");
fprintf(file, "\t %s%s = OutP->%s%s;\n",
ref, arg->argVarName,
arg->argMsgField,
OOLPostfix);
fprintf(file, "\telse if (OutP->%s", count->argMsgField);
if (btype->itNumber > 1)
fprintf(file, " / %d", btype->itNumber);
fprintf(file, " > %s%s) {\n", countRef, count->argVarName);
fprintf(file, "\t %smig_allocate((vm_offset_t *)%s,\n\t\t",
SubrPrefix, arg->argVarName); /* no ref! */
if (btype->itTypeSize != btype->itNumber)
fprintf(file, "%d * ", btype->itTypeSize/btype->itNumber);
fprintf(file, "OutP->%s);\n", count->argMsgField);
fprintf(file, "\t memcpy(%s%s, OutP->%s, ", ref, arg->argVarName,
arg->argMsgField);
if (btype->itTypeSize != btype->itNumber)
fprintf(file, "%d * ", btype->itTypeSize/btype->itNumber);
fprintf(file, "OutP->%s);\n", count->argMsgField);
fprintf(file, "\t}\n");
fprintf(file, "\telse if (OutP->%s) {\n", count->argMsgField);
fprintf(file, "\t memcpy(%s%s, OutP->%s, ", ref, arg->argVarName,
arg->argMsgField);
if (btype->itTypeSize != btype->itNumber)
fprintf(file, "%d * ", btype->itTypeSize/btype->itNumber);
fprintf(file, "OutP->%s);\n", count->argMsgField);
fprintf(file, "\t}\n");
}
else {
/*
* Copy out variable-size inline array with memcpy,
* after checking that number of elements doesn`t
* exceed user`s maximum.
*/
const argument_t *count = arg->argCount;
const char *countRef = count->argByReferenceUser ? "*" :"";
const ipc_type_t *btype = argType->itElement;
/* Note count->argMultiplier == btype->itNumber */
fprintf(file, "\tif (OutP->%s", count->argMsgField);
if (btype->itNumber > 1)
fprintf(file, " / %d", btype->itNumber);
fprintf(file, " > %s%s) {\n",
countRef, count->argVarName);
/*
* If number of elements is too many for user receiving area,
* fill user`s area as much as possible. Return the correct
* number of elements.
*/
fprintf(file, "\t\tif (%s%s)\n", countRef, count->argVarName);
fprintf(file, "\t\t\tmemcpy(%s%s, OutP->%s, ", ref, arg->argVarName,
arg->argMsgField);
if (btype->itTypeSize > 1)
fprintf(file, "%d * ", btype->itTypeSize);
fprintf(file, "%s%s);\n",
countRef, count->argVarName);
fprintf(file, "\t\t%s%s = OutP->%s",
countRef, count->argVarName, count->argMsgField);
if (btype->itNumber > 1)
fprintf(file, " / %d", btype->itNumber);
fprintf(file, ";\n");
WriteMsgError(file,arg->argRoutine, "MIG_ARRAY_TOO_LARGE");
fprintf(file, "\t}\n\telse if (OutP->%s) {\n", count->argMsgField);
fprintf(file, "\t\tmemcpy(%s%s, OutP->%s, ", ref, arg->argVarName,
arg->argMsgField);
if (btype->itTypeSize != btype->itNumber)
fprintf(file, "%d * ", btype->itTypeSize/btype->itNumber);
fprintf(file, "OutP->%s);\n", count->argMsgField);
fprintf(file, "\t}\n");
}
}
else if (arg->argMultiplier > 1)
WriteCopyType(file, argType,
"%s%s", "/* %s%s */ OutP->%s / %d",
ref, arg->argVarName, arg->argMsgField,
arg->argMultiplier);
else
WriteCopyType(file, argType,
"%s%s", "/* %s%s */ OutP->%s",
ref, arg->argVarName, arg->argMsgField);
fprintf(file, "\n");
}
static void
WriteExtractArg(FILE *file, const argument_t *arg)
{
const routine_t *rt = arg->argRoutine;
if (akCheck(arg->argKind, akbReply))
WriteTypeCheck(file, arg);
if (akCheckAll(arg->argKind, akbVariable|akbReply))
WriteCheckMsgSize(file, arg);
/* Now that the RetCode is type-checked, check its value.
Must abort immediately if it isn't KERN_SUCCESS, because
in that case the reply message is truncated. */
if (arg == rt->rtRetCode)
WriteRetCodeCheck(file, rt);
if (akCheckAll(arg->argKind, akbReturnRcv))
WriteExtractArgValue(file, arg);
}
static void
WriteAdjustReplyMsgPtr(FILE *file, const argument_t *arg)
{
const ipc_type_t *ptype = arg->argType;
fprintf(file,
"\tOutP = (Reply *) ((char *) OutP + msgh_size_delta - %d);\n\n",
ptype->itTypeSize + ptype->itPadSize);
}
static void
WriteReplyArgs(FILE *file, const routine_t *rt)
{
const argument_t *arg;
const argument_t *lastVarArg;
lastVarArg = argNULL;
for (arg = rt->rtArgs; arg != argNULL; arg = arg->argNext) {
/*
* Advance message pointer if the last reply argument was
* variable-length and the reply position will change.
*/
if (lastVarArg != argNULL &&
lastVarArg->argReplyPos < arg->argReplyPos)
{
WriteAdjustReplyMsgPtr(file, lastVarArg);
lastVarArg = argNULL;
}
/*
* Copy the argument
*/
WriteExtractArg(file, arg);
/*
* Remember whether this was variable-length.
*/
if (akCheckAll(arg->argKind, akbReturnRcv|akbVariable))
lastVarArg = arg;
}
}
/*************************************************************
* Writes code to return the return value. Called by WriteRoutine
* for routines and functions.
*************************************************************/
static void
WriteReturnValue(FILE *file, const routine_t *rt)
{
if (rt->rtReturn == rt->rtRetCode)
/* If returning RetCode, we have already checked that it is
KERN_SUCCESS */
fprintf(file, "\treturn KERN_SUCCESS;\n");
else
{
if (rt->rtNumReplyVar > 0)
fprintf(file, "\tOutP = &Mess.Out;\n");
fprintf(file, "\treturn OutP->%s;\n", rt->rtReturn->argMsgField);
}
}
/*************************************************************
* Writes the elements of the message type declaration: the
* msg_type structure, the argument itself and any padding
* that is required to make the argument a multiple of word_size bytes.
* Called by WriteRoutine for all the arguments in the request
* message first and then the reply message.
*************************************************************/
static void
WriteFieldDecl(FILE *file, const argument_t *arg)
{
WriteFieldDeclPrim(file, arg, FetchUserType);
}
static void
WriteStubDecl(FILE *file, const routine_t *rt)
{
fprintf(file, "\n");
fprintf(file, "/* %s %s */\n", rtRoutineKindToStr(rt->rtKind), rt->rtName);
fprintf(file, "mig_external %s %s\n", ReturnTypeStr(rt), rt->rtUserName);
fprintf(file, "(\n");
WriteList(file, rt->rtArgs, WriteUserVarDecl, akbUserArg, ",\n", "\n");
fprintf(file, ")\n");
fprintf(file, "{\n");
}
/*************************************************************
* Writes all the code comprising a routine body. Called by
* WriteUser for each routine.
*************************************************************/
static void
WriteRoutine(FILE *file, const routine_t *rt)
{
/* write the stub's declaration */
WriteStubDecl(file, rt);
/* typedef of structure for Request and Reply messages */
WriteStructDecl(file, rt->rtArgs, WriteFieldDecl, akbRequest, "Request");
if (!rt->rtOneWay)
WriteStructDecl(file, rt->rtArgs, WriteFieldDecl, akbReply, "Reply");
/* declarations for local vars: Union of Request and Reply messages,
InP, OutP and return value */
WriteVarDecls(file, rt);
/* declarations and initializations of the mach_msg_type_t variables
for each argument */
WriteList(file, rt->rtArgs, WriteTypeDeclInUser, akbRequest, "\n", "\n");
if (!rt->rtOneWay)
WriteList(file, rt->rtArgs, WriteCheckDecl, akbReplyQC, "\n", "\n");
/* fill in all the request message types and then arguments */
WriteRequestArgs(file, rt);
/* fill in request message head */
WriteRequestHead(file, rt);
fprintf(file, "\n");
/* Write the send/receive or rpc call */
if (rt->rtOneWay)
WriteMsgSend(file, rt);
else
{
WriteMsgRPC(file, rt);
/* Check the values that are returned in the reply message */
WriteCheckIdentity(file, rt);
/* If the reply message has no Out parameters or return values
other than the return code, we can type-check it and
return it directly. */
if (rt->rtNoReplyArgs)
{
WriteTypeCheck(file, rt->rtRetCode);
fprintf(file, "\treturn OutP->RetCode;\n");
}
else {
WriteReplyArgs(file, rt);
/* return the return value */
WriteReturnValue(file, rt);
}
}
fprintf(file, "}\n");
}
/*************************************************************
* Writes out the xxxUser.c file. Called by mig.c
*************************************************************/
void
WriteUser(FILE *file, const statement_t *stats)
{
const statement_t *stat;
WriteProlog(file);
for (stat = stats; stat != stNULL; stat = stat->stNext)
switch (stat->stKind)
{
case skRoutine:
WriteRoutine(file, stat->stRoutine);
break;
case skImport:
case skUImport:
WriteImport(file, stat->stFileName);
break;
case skSImport:
break;
default:
fatal("WriteUser(): bad statement_kind_t (%d)",
(int) stat->stKind);
}
WriteEpilog(file);
}
/*************************************************************
* Writes out individual .c user files for each routine. Called by mig.c
*************************************************************/
void
WriteUserIndividual(const statement_t *stats)
{
const statement_t *stat;
for (stat = stats; stat != stNULL; stat = stat->stNext)
switch (stat->stKind)
{
case skRoutine:
{
FILE *file;
char *filename;
filename = strconcat(UserFilePrefix,
strconcat(stat->stRoutine->rtName, ".c"));
file = fopen(filename, "w");
if (file == NULL)
fatal("fopen(%s): %s", filename,
unix_error_string(errno));
WriteProlog(file);
{
/* Write all the imports. */
const statement_t *s;
for (s = stats; s != stNULL; s = s->stNext)
switch (s->stKind)
{
case skImport:
case skUImport:
WriteImport(file, s->stFileName);
break;
default:
break;
}
}
WriteRoutine(file, stat->stRoutine);
WriteEpilog(file);
if (ferror(file) || fclose(file))
fatal("fclose(%s): %s", filename,
unix_error_string(errno));
strfree(filename);
}
break;
case skImport:
case skUImport:
break;
case skSImport:
break;
default:
fatal("WriteUserIndividual(): bad statement_kind_t (%d)",
(int) stat->stKind);
}
}
|