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
|
/* Copyright 2001, 2002 b8_bavard, b8_fee_carabine, INRIA */
/*
This file is part of mldonkey.
mldonkey 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.
mldonkey 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 mldonkey; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "../../utils/lib/os_stubs.h"
#include <string.h>
#include <ctype.h>
#ifdef __MORPHOS__
#include <inttypes.h>
#endif /* __MORPHOS__ */
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif /* HAVE_SYS_RESOURCE_H */
#define lseek XXXXXXXXX
#define read XXXXXXXXX
#define ftruncate XXXXXXXXX
/*******************************************************************
ml_select
*******************************************************************/
#define FD_TASK_FD 0
#define FD_TASK_FLAGS 1
#define FD_TASK_WLEN 2
#define FD_TASK_RLEN 3
#define FD_TASK_CLOSED 4
#define FD_TASK_POS 5
#define FD_TASK_READ_ALLOWED 6
#define FD_TASK_WRITE_ALLOWED 7
/* Stubs that could be used by epoll */
value ml_change_fd_event_setting(value task_v)
{
int fd = Socket_val(Field(task_v,FD_TASK_FD));
int must_read = ((Field(task_v, FD_TASK_RLEN) != Val_int(0)) &&
(Field(Field(task_v, FD_TASK_READ_ALLOWED),0) == Val_true));
int must_write = ( (Field(task_v, FD_TASK_WLEN) != Val_int(0)) &&
(Field(Field(task_v, FD_TASK_WRITE_ALLOWED),0) == Val_true));
return Val_unit;
}
value ml_add_fd_to_event_set(value task_v)
{
int fd = Socket_val(Field(task_v,FD_TASK_FD));
int must_read = ((Field(task_v, FD_TASK_RLEN) != Val_int(0)) &&
(Field(Field(task_v, FD_TASK_READ_ALLOWED),0) == Val_true));
int must_write = ( (Field(task_v, FD_TASK_WLEN) != Val_int(0)) &&
(Field(Field(task_v, FD_TASK_WRITE_ALLOWED),0) == Val_true));
return Val_unit;
}
value ml_remove_fd_from_event_set(value task_v)
{
int fd = Socket_val(Field(task_v,FD_TASK_FD));
return Val_unit;
}
#if defined(HAVE_POLL) && defined(HAVE_SYS_POLL_H) && !defined(__MINGW32__)
#include <sys/poll.h>
static value* pfds = NULL;
static struct pollfd* ufds = NULL;
static int ufds_size = 0;
value try_poll(value fdlist, value timeout) /* ML */
{
int tm = (int)(1e3 * (double)Double_val(timeout));
int nfds = 0;
int retcode;
/* value res; */
/* int notimeout; */
value l;
int must_read;
int must_write;
int pos;
if(ufds == NULL){
ufds_size = os_getdtablesize();
ufds = (struct pollfd*) malloc (sizeof(struct pollfd) * ufds_size);
pfds = (value*) malloc (sizeof(value) * ufds_size);
}
for (l = fdlist; l != Val_int(0); l = Field(l, 1)) {
value v = Field(l,0);
if(Field(v, FD_TASK_CLOSED) == Val_false){
must_read = ((Field(v, FD_TASK_RLEN) != Val_int(0)) &&
(Field(Field(v, FD_TASK_READ_ALLOWED),0) == Val_true));
must_write = ( (Field(v, FD_TASK_WLEN) != Val_int(0)) &&
(Field(Field(v, FD_TASK_WRITE_ALLOWED),0) == Val_true));
Field(v,FD_TASK_FLAGS) = Val_int(0);
if(must_read || must_write){
int fd = Socket_val(Field(v,FD_TASK_FD));
/* fprintf(stderr, "FD in POLL added %d\n", fd); */
ufds[nfds].fd = fd;
ufds[nfds].events = (must_read? POLLIN : 0) | (must_write ? POLLOUT:0);
ufds[nfds].revents = 0;
/* printf("SETTING %d TO %d\n", fd, nfds); */
pfds[nfds] = v;
nfds++;
} // else ;
}
}
/* printf("POLL: %d/%d\n", nfds, ufds_size); */
enter_blocking_section();
retcode = poll(ufds, nfds, tm);
leave_blocking_section();
if (retcode < 0) {
uerror("poll", Nothing);
}
if(retcode > 0){
for(pos=0; pos<nfds && retcode > 0; pos++){
if (ufds[pos].revents){
value v = pfds[pos];
/* int fd = Socket_val(Field(v,FD_TASK_FD)); */
/* printf("TESTING %d AT %d\n", fd, pos); */
/* fprintf(stderr, "FOR FD in POLL %d[%d]\n", fd, ufds[pos].revents); */
value flags = Val_int(0);
retcode--;
if (ufds[pos].revents & (POLLIN|POLLERR|POLLHUP)) flags |= 2;
if (ufds[pos].revents & POLLOUT) flags |= 4;
/* if (ufds[pos].revents & POLLNVAL) */
/* Field(v, FD_TASK_CLOSED) = Val_true; */
Field(v,FD_TASK_FLAGS) = flags;
}
}
}
return Val_unit;
}
#endif /* defined(HAVE_POLL) && defined(HAVE_SYS_POLL_H) && !defined(__MINGW32__) */
value try_select(value fdlist, value timeout) /* ML */
{
fd_set read, write, except;
double tm;
struct timeval tv;
struct timeval * tvp;
int retcode;
/* value res; */
/* int notimeout; */
value l;
int maxfd = 0 ;
/* restart_select: */
FD_ZERO(&read);
FD_ZERO(&write);
FD_ZERO(&except);
for (l = fdlist; l != Val_int(0); l = Field(l, 1)) {
value v = Field(l,0);
if(Field(v, FD_TASK_CLOSED) == Val_false){
int fd = Socket_val(Field(v,FD_TASK_FD));
/* fprintf(stderr, "FD in SELECT %d\n", fd); */
if( (Field(v, FD_TASK_RLEN) != Val_int(0)) &&
(Field(Field(v, FD_TASK_READ_ALLOWED),0) == Val_true)
) {
maxfd = maxfd < fd ? fd : maxfd;
FD_SET(fd, &read);
}
if( (Field(v, FD_TASK_WLEN) != Val_int(0)) &&
(Field(Field(v, FD_TASK_WRITE_ALLOWED),0) == Val_true)
) {
maxfd = maxfd < fd ? fd : maxfd;
FD_SET(fd, &write);
}
}
}
tm = Double_val(timeout);
if (tm < 0.0)
tvp = (struct timeval *) NULL;
else {
tv.tv_sec = (int) tm;
tv.tv_usec = (int) (1e6 * (tm - (int) tm));
tvp = &tv;
}
enter_blocking_section();
retcode = select(maxfd+1, &read, &write, &except, tvp);
leave_blocking_section();
if (retcode < 0) {
/* if(errno == EINTR) goto restart_select; */
uerror("select", Nothing);
}
for (l = fdlist; l != Val_int(0); l = Field(l, 1)) {
value v = Field(l,0);
if(Field(v, FD_TASK_CLOSED) == Val_false){
int fd = Socket_val(Field(v,FD_TASK_FD));
value flags = Val_int(0);
if (FD_ISSET(fd, &read)) flags |= 2;
if (FD_ISSET(fd, &write)) flags |= 4;
Field(v,FD_TASK_FLAGS) = flags;
}
}
return Val_unit;
}
static int use_poll = 1;
static int must_use_poll = 0;
value ml_use_poll(value use)
{
use_poll = (use != Val_int(0)) || must_use_poll;
return Val_unit;
}
value ml_select(value fd_list, value timeout)
{
#if defined(HAVE_POLL) && defined(HAVE_SYS_POLL_H) && !defined(__MINGW32__)
if (use_poll)
return try_poll(fd_list, timeout);
else
return try_select(fd_list, timeout);
#else
return try_select(fd_list, timeout);
#endif
}
/*******************************************************************
ml_getdtablesize
********************************************************************/
value ml_getdtablesize(value unit)
{
int dtablesize = os_getdtablesize();
int maxselectfds = FD_SETSIZE;
int maxfd = dtablesize;
if (maxselectfds < maxfd) {
#if defined(HAVE_POLL) && defined(HAVE_SYS_POLL_H) && !defined(__MINGW32__)
must_use_poll = 1;
use_poll = 1;
#else
maxfd = maxselectfds;
/* printf("[Info] File descriptor limit: MIN(process: %d, select(): %d) = %d\n", dtablesize, maxselectfds, maxfd); */
#endif
}
return Val_int(maxfd);
}
/*******************************************************************
ml_get_fd_num
*******************************************************************/
value ml_get_fd_num(value fd)
{
#if defined(__MINGW32__)
return Int_val(Socket_val(fd));
#else
return fd;
#endif
}
value ml_set_nonblock(value fd_v)
{
OS_SOCKET fd = Socket_val(fd_v);
os_set_nonblock(fd);
return Val_unit;
}
/*******************************************************************
ml_setsock_iptos_thoughtput
*******************************************************************/
#if defined(HAVE_NETINET_IP_H) && !defined(__MINGW32__)
#include <sys/socket.h>
#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/ip.h>
value ml_setsock_iptos_throughput(value sock_v)
{
int sock = Socket_val(sock_v);
int tos = IPTOS_THROUGHPUT /* IPTOS_MINCOST obsoleted by ECN */;
return Val_int(setsockopt(sock,
IPPROTO_IP, IP_TOS,
&tos, sizeof(tos)));
}
#else
value ml_setsock_iptos_throughput(value sock_v)
{
return Val_unit;
}
#endif /* defined(HAVE_NETINET_IP_H) && !defined(__MINGW32__) */
/*******************************************************************
ml_sizeofoff_t
*******************************************************************/
value ml_sizeofoff_t(value unit)
{
return Val_int(sizeof(OFF_T));
}
/*******************************************************************
ml_getsize64
*******************************************************************/
value ml_getsize64(value path)
{
/* int ret; */
return copy_int64(os_getfilesize(String_val(path)));
}
/*******************************************************************
ml_getfdsize64
*******************************************************************/
value ml_getfdsize64(value fd_v)
{
/* int ret; */
OS_FD fd = Fd_val(fd_v);
return copy_int64(os_getfdsize(fd));
}
/*******************************************************************
mld_ftruncate_64
*******************************************************************/
#define ZEROS_LEN 1024
value mld_ftruncate_64(value fd_v, value len_v, value sparse)
{
OFF_T len = Int64_val(len_v);
OS_FD fd = Fd_val(fd_v);
int use_sparse = Bool_val(sparse);
os_ftruncate(fd, len, use_sparse);
return Val_unit;
}
/*******************************************************************
ml_strstr
*******************************************************************/
value ml_strstr(value s_v, value sub_v)
{
char *s = String_val(s_v);
char *sub = String_val(sub_v);
if(strstr(s, sub) == NULL) {
return Val_false;
}
return Val_true;
}
/*******************************************************************
ml_ints_of_string
*******************************************************************/
value ml_ints_of_string(value s_v)
{
char *s = String_val(s_v);
uint a1,a2,a3,a4;
value res;
char *curs = s;
char *first;
char c;
while(*curs == ' ') curs++;
first = curs;
while(isdigit(*curs)) curs++;
if(*curs != '.' || curs == first || curs - first > 3) goto error;
*curs = 0;
a1 = atoi(first);
*curs++ = '.';
first = curs;
while(isdigit(*curs)) curs++;
if(*curs != '.' || curs == first || curs - first > 3) goto error;
*curs = 0;
a2 = atoi(first);
*curs++ = '.';
first = curs;
while(isdigit(*curs)) curs++;
if(*curs != '.' || curs == first || curs - first > 3) goto error;
*curs = 0;
a3 = atoi(first);
*curs++ = '.';
first = curs;
while(isdigit(*curs)) curs++;
if(curs == first || curs - first > 3) goto error;
c = *curs; *curs = 0;
a4 = atoi(first);
*curs++ = c;
/* sscanf(s, "%d.%d.%d.%d", &a1, &a2, &a3, &a4); */
goto ok;
error:
/* printf("Error while parsing[%s]\n",s); */
raise_not_found();
/* a1 = a2 = a3 = a4 = 0; */
ok:
res = alloc(4,0);
Field(res, 0) = Val_int(a1);
Field(res, 1) = Val_int(a2);
Field(res, 2) = Val_int(a3);
Field(res, 3) = Val_int(a4);
return res;
}
/*******************************************************************
hashes
*******************************************************************/
unsigned char hash_buffer[HASH_BUFFER_LEN];
#define ML_HASH(HASH_NAME,HASH_CONTEXT,HASH_INIT,HASH_APPEND,HASH_FINISH) \
value HASH_NAME##_unsafe64_fd (value digest_v, value fd_v, value pos_v, value len_v) \
{ \
OS_FD fd = Fd_val(fd_v); \
OFF_T pos = Int64_val(pos_v); \
OFF_T len = Int64_val(len_v); \
unsigned char *digest = String_val(digest_v); \
HASH_CONTEXT context; \
ssize_t nread; \
\
HASH_INIT (&context); \
os_lseek(fd, pos, SEEK_SET); \
\
while (len!=0){ \
size_t max_nread = HASH_BUFFER_LEN > len ? len : HASH_BUFFER_LEN; \
\
nread = os_read (fd, hash_buffer, max_nread); \
\
if(nread < 0) { \
unix_error(errno, "md4_safe_fd: Read", Nothing); \
} \
\
if(nread == 0){ \
HASH_FINISH (&context, digest); \
\
return Val_unit; \
} \
\
HASH_APPEND (&context, hash_buffer, nread); \
len -= nread; \
} \
HASH_FINISH (&context, digest); \
\
return Val_unit; \
} \
\
value HASH_NAME##_unsafe_string(value digest_v, value string_v, value len_v) \
{ \
unsigned char *digest = String_val(digest_v); \
unsigned char *string = String_val(string_v); \
long len = Long_val(len_v); \
HASH_CONTEXT context; \
\
HASH_INIT (&context); \
HASH_APPEND (&context, string, len); \
HASH_FINISH (&context, digest); \
\
return Val_unit; \
} \
\
value HASH_NAME##_unsafe_file (value digest_v, value filename_v, value file_size) \
{ \
char *filename = String_val(filename_v); \
unsigned char *digest = String_val(digest_v); \
FILE *file; \
HASH_CONTEXT context; \
size_t len; \
\
if ((file = fopen (filename, "rb")) == NULL) \
raise_not_found(); \
\
else { \
HASH_INIT (&context); \
while ((len = fread (hash_buffer, 1, HASH_BUFFER_LEN, file)) >0) \
HASH_APPEND (&context, hash_buffer, len); \
HASH_FINISH (&context, digest); \
\
fclose (file); \
} \
return Val_unit; \
} \
#include "md4.h"
#include "md5.h"
#include "sha1_c.h"
ML_HASH(sha1,SHA1_CTX,sha1_begin,sha1_hash, sha1_end)
ML_HASH(md5,md5_state_t,md5_init,md5_append,md5_finish)
ML_HASH(md4,MD4_CTX,MD4Init,MD4Update,md4_finish)
/*******************************************************************
tiger
*******************************************************************/
#include "tiger.h"
static void tiger_tree_fd(OS_FD fd, OFF_T len, OFF_T pos, OFF_T block_size, char *digest)
{
static char tiger_buffer[BLOCK_SIZE+1];
if(block_size == BLOCK_SIZE){
OFF_T length = (len - pos > BLOCK_SIZE) ? BLOCK_SIZE : len - pos;
char *s = tiger_buffer+1;
size_t toread = length;
char *curs = s;
while (toread!=0){
int max_nread = toread;
/* HASH_BUFFER_LEN > toread ? toread : HASH_BUFFER_LEN; */
ssize_t nread = os_read (fd, curs, max_nread);
if(nread <= 0) {
unix_error(errno, "tiger_safe_fd: Read", Nothing);
}
curs += nread;
toread -= nread;
}
tiger_hash(0, s, length, digest);
} else {
if(pos+block_size/2 >=len){
tiger_tree_fd(fd, len, pos, block_size/2, digest);
} else {
char digests_prefixed[1+DIGEST_LEN * 2];
char *digests = digests_prefixed+1;
tiger_tree_fd(fd, len, pos, block_size/2, digests);
tiger_tree_fd(fd, len, pos+block_size/2, block_size/2, digests+DIGEST_LEN);
tiger_hash(1,digests, 2*DIGEST_LEN, digest);
}
}
}
value tigertree_unsafe64_fd (value digest_v, value fd_v, value pos_v, value len_v)
{
OS_FD fd = Fd_val(fd_v);
OFF_T pos = Int64_val(pos_v);
OFF_T len = Int64_val(len_v);
unsigned char *digest = String_val(digest_v);
/* int nread; */
os_lseek(fd, pos, SEEK_SET);
tiger_tree_fd(fd, len, 0, tiger_block_size(len), digest);
return Val_unit;
}
/*******************************************************************
setlcnumeric
*******************************************************************/
#include <locale.h>
value ml_setlcnumeric(value no)
{
setlocale(LC_NUMERIC, "C");
return Val_unit;
}
/*******************************************************************
Asynchronous resolution of DNS names in threads
*******************************************************************/
/*
#include <signals.h>
#include "unixsupport.h"
#include "socketaddr.h"
*/
#ifndef _WIN32
/* #include <sys/types.h> */
#include <netdb.h>
#endif /* ndef _WIN32 */
#define NETDB_BUFFER_SIZE 10000
#ifdef _WIN32
#define GETHOSTBYADDR_IS_REENTRANT 1
#define GETHOSTBYNAME_IS_REENTRANT 1
#endif /* _WIN32 */
static char volatile ip_job_result[256];
static int volatile job_naddresses = 0;
static int entry_h_length;
static void save_one_addr(char volatile *dest, char const *a)
{
memmove ((char*)dest, (char*) a, entry_h_length);
}
static void save_host_entry(struct hostent *entry)
{
char **ptrs = (char **)entry->h_addr_list;
entry_h_length = entry->h_length;
#ifdef h_addr
job_naddresses = 0;
while(*ptrs != NULL){
save_one_addr(ip_job_result + entry_h_length * job_naddresses++, *ptrs++);
}
#else
job_naddresses = 1;
save_one_addr(ip_job_result, entry->h_addr);
#endif
}
static int ml_gethostbyname(char *hostname)
{
struct hostent * hp;
#if HAS_GETHOSTBYNAME_R == 5
{
struct hostent h;
char buffer[NETDB_BUFFER_SIZE];
int h_errno;
enter_blocking_section();
hp = gethostbyname_r(hostname, &h, buffer, sizeof(buffer), &h_errno);
leave_blocking_section();
}
#elif HAS_GETHOSTBYNAME_R == 6
{
struct hostent h;
char buffer[NETDB_BUFFER_SIZE];
int h_errno, rc;
enter_blocking_section();
rc = gethostbyname_r(hostname, &h, buffer, sizeof(buffer), &hp, &h_errno);
leave_blocking_section();
if (rc != 0) hp = NULL;
}
#else
#ifdef GETHOSTBYNAME_IS_REENTRANT
enter_blocking_section();
#endif /* GETHOSTBYNAME_IS_REENTRANT */
hp = gethostbyname(hostname);
#ifdef GETHOSTBYNAME_IS_REENTRANT
leave_blocking_section();
#endif /* GETHOSTBYNAME_IS_REENTRANT */
#endif /* HAS_GETHOSTBYNAME_R == 5 */
if (hp == (struct hostent *) NULL) return 0;
/* printf("No error\n"); */
save_host_entry(hp);
return 1;
}
extern value alloc_inet_addr(struct in_addr * a);
static value alloc_one_addr(char volatile *a)
{
struct in_addr addr;
memmove (&addr, (char*)a, entry_h_length);
return alloc_inet_addr(&addr);
}
static void store_in_job(value job_v)
{
value adr = Val_unit;
value addr_list = Val_unit;
int i;
/* printf("store_in_job %d\n", job_naddresses); */
Begin_roots3 (job_v, addr_list, adr);
#ifdef h_addr
addr_list = alloc_small(job_naddresses, 0);
for(i=0; i<job_naddresses; i++){
adr = alloc_one_addr(ip_job_result + i * entry_h_length);
modify(&Field(addr_list,i), adr);
}
#else
adr = alloc_one_addr(ip_job_result);
addr_list = alloc_small(1, 0);
Field(addr_list, 0) = adr;
#endif /* h_addr */
modify(&Field(job_v,1), addr_list);
End_roots();
}
#if !defined(HAVE_PTHREAD) || (!(HAS_GETHOSTBYNAME_R || GETHOSTBYNAME_IS_REENTRANT) && !defined(HAS_SIGWAIT))
value ml_ip_job_start(value job_v)
{
char *hostname = String_val(Field(job_v,0));
if(ml_gethostbyname(hostname)){
Field(job_v, 2) = Val_false;
store_in_job(job_v);
} else {
Field(job_v, 2) = Val_true;
}
return Val_unit;
}
value ml_ip_job_done(value job_v)
{
return Val_true;
}
value ml_has_pthread(value unit)
{
return Val_false;
}
#else /* !defined(HAVE_PTHREAD) || (!(HAS_GETHOSTBYNAME_R || GETHOSTBYNAME_IS_REENTRANT) && !defined(HAS_SIGWAIT)) */
#include <string.h>
#include <pthread.h>
#include <signal.h>
#include <sys/time.h>
static int thread_started = 0;
static int volatile ip_job_done = 1;
static char volatile job_hostname[256];
static int volatile job_error = 0;
static pthread_t pthread;
static pthread_cond_t cond;
static pthread_mutex_t mutex;
value ml_ip_job_done(value job_v)
{
if(ip_job_done){
if(job_error){
Field(job_v, 2) = Val_false;
store_in_job(job_v);
} else {
/* printf("found error\n"); */
Field(job_v, 2) = Val_true;
}
return Val_true;
}
return Val_false;
}
static void * hasher_thread(void * arg)
{
struct timeval now;
struct timespec timeout;
#if !defined(PTW32_STATIC_LIB)
sigset_t mask;
/* Block all signals so that we don't try to execute a Caml signal handler */
sigfillset(&mask);
pthread_sigmask(SIG_BLOCK, &mask, NULL);
nice(19);
#endif /* !defined(PTW32_STATIC_LIB) */
pthread_mutex_lock(&mutex);
while(1){
gettimeofday(&now, NULL);
timeout.tv_sec = now.tv_sec + 10;
timeout.tv_nsec = now.tv_usec * 1000;
/* printf("waiting for next job\n"); */
pthread_cond_timedwait(&cond, &mutex, &timeout);
if(!ip_job_done){
job_error = ml_gethostbyname((char*) job_hostname);
ip_job_done = 1;
/* printf("job finished %d\n", job_error); */
}
}
return NULL;
}
value ml_ip_job_start(value job_v)
{
strcpy( (char*) job_hostname, String_val(Field(job_v,0)));
if(!thread_started){
int retcode;
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
pthread_cond_init(&cond, NULL);
pthread_mutex_init(&mutex, NULL);
thread_started = 1;
retcode = pthread_create(&pthread, &attr, hasher_thread, NULL);
if(retcode){
perror("Error while starting Hashing thread");
exit(2);
}
}
enter_blocking_section();
pthread_mutex_lock(&mutex);
/* printf("Starting job\n"); */
ip_job_done = 0; /* Thread can run ... */
pthread_cond_signal(&cond);
pthread_mutex_unlock(&mutex);
leave_blocking_section ();
return Val_unit;
}
value ml_has_pthread(value unit)
{
return Val_true;
}
#endif /* !defined(HAVE_PTHREAD) || (!(HAS_GETHOSTBYNAME_R || GETHOSTBYNAME_IS_REENTRANT) && !defined(HAS_SIGWAIT)) */
/*******************************************************************
statfs
*******************************************************************/
#if defined(__MINGW32__)
/* taken from www.greatchief.plus.com/gpc/os-hacks.h */
#define _fullpath(res,path,size) \
(GetFullPathNameW ((path), (size), (res), NULL) ? (res) : NULL)
#define realpath(path,resolved_path) _fullpath(resolved_path, path, MAX_PATH)
#define FAKED_BLOCK_SIZE 512 /* fake block size */
/* linux-compatible values for fs type */
#define MSDOS_SUPER_MAGIC 0x4d44
#define NTFS_SUPER_MAGIC 0x5346544E
struct statfs {
unsigned __int64 f_type; /* type of filesystem (see below) */
unsigned __int64 f_bsize; /* optimal transfer block size */
unsigned __int64 f_blocks; /* total data blocks in file system */
unsigned __int64 f_bfree; /* free blocks in fs */
unsigned __int64 f_bavail; /* free blocks avail to non-superuser */
unsigned __int64 f_files; /* total file nodes in file system */
unsigned __int64 f_ffree; /* free file nodes in fs */
unsigned __int64 f_fsid; /* file system id */
unsigned __int64 f_namelen; /* maximum length of filenames */
unsigned __int64 f_spare[6]; /* spare for later */
};
static int statfs (const unsigned char *path, struct statfs *buf)
{
HINSTANCE h;
FARPROC f;
int retval = 0;
WCHAR tmp [MAX_PATH], resolved_path [MAX_PATH];
WCHAR * wpath = (WCHAR *)utf8_to_utf16(path);
realpath(wpath, resolved_path);
free(wpath);
if (!resolved_path)
retval = - 1;
else
{
/* check whether GetDiskFreeSpaceExA is supported */
h = LoadLibraryA ("kernel32.dll");
if (h)
f = GetProcAddress (h, "GetDiskFreeSpaceExW");
else
f = NULL;
if (f)
{
ULARGE_INTEGER bytes_free, bytes_total, bytes_free2;
if (!f (resolved_path, &bytes_free2, &bytes_total, &bytes_free))
{
errno = ENOENT;
retval = - 1;
}
else
{
buf -> f_bsize = FAKED_BLOCK_SIZE;
buf -> f_bfree = (bytes_free.QuadPart) / FAKED_BLOCK_SIZE;
buf -> f_files = buf -> f_blocks = (bytes_total.QuadPart) / FAKED_BLOCK_SIZE;
buf -> f_ffree = buf -> f_bavail = (bytes_free2.QuadPart) / FAKED_BLOCK_SIZE;
}
}
else
{
DWORD sectors_per_cluster, bytes_per_sector;
if (h) FreeLibrary (h);
if (!GetDiskFreeSpaceW (resolved_path, §ors_per_cluster,
&bytes_per_sector, &buf -> f_bavail, &buf -> f_blocks))
{
errno = ENOENT;
retval = - 1;
}
else
{
buf -> f_bsize = sectors_per_cluster * bytes_per_sector;
buf -> f_files = buf -> f_blocks;
buf -> f_ffree = buf -> f_bavail;
buf -> f_bfree = buf -> f_bavail;
}
}
if (h) FreeLibrary (h);
}
/* get the FS volume information */
if (wcsspn (L":", resolved_path) > 0) resolved_path [3] = '\0'; /* we want only the root */
if (GetVolumeInformationW (resolved_path, NULL, 0, &buf -> f_fsid, &buf -> f_namelen, NULL, tmp, MAX_PATH))
/* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/getvolumeinformation.asp */
{
if (_wcsicmp (L"NTFS", tmp) == 0)
{
buf -> f_type = NTFS_SUPER_MAGIC;
}
else
{
buf -> f_type = MSDOS_SUPER_MAGIC;
}
}
else
{
errno = ENOENT;
retval = - 1;
}
return retval;
}
static value
copy_statfs (struct statfs *buf)
{
CAMLparam0 ();
CAMLlocal2 (bufv, v);
bufv = caml_alloc (11, 0);
v = copy_int64 (buf->f_type); caml_modify (&Field (bufv, 0), v);
v = copy_int64 (buf->f_bsize); caml_modify (&Field (bufv, 1), v);
v = copy_int64 (buf->f_blocks); caml_modify (&Field (bufv, 2), v);
v = copy_int64 (buf->f_bfree); caml_modify (&Field (bufv, 3), v);
v = copy_int64 (buf->f_bavail); caml_modify (&Field (bufv, 4), v);
v = copy_int64 (buf->f_files); caml_modify (&Field (bufv, 5), v);
v = copy_int64 (buf->f_ffree); caml_modify (&Field (bufv, 6), v);
v = copy_int64 (buf->f_namelen); caml_modify (&Field (bufv, 8), v);
v = copy_string ("-1"); caml_modify (&Field (bufv, 9), v);
v = copy_int64 (-1); caml_modify (&Field (bufv, 10), v);
CAMLreturn (bufv);
}
CAMLprim value
statfs_statfs (value pathv)
{
CAMLparam1 (pathv);
CAMLlocal1 (bufv);
const unsigned char *path = String_val (pathv);
struct statfs buf;
if (statfs (path, &buf) == -1)
raise_constant(*(value *)caml_named_value("error"));
bufv = copy_statfs (&buf);
CAMLreturn (bufv);
}
#else /* defined(__MINGW32__) */
#if (defined HAVE_SYS_PARAM_H && HAVE_SYS_MOUNT_H)
# include <sys/param.h>
# include <sys/mount.h>
# define HAVE_STATS 1
#endif /* (defined HAVE_SYS_PARAM_H && HAVE_SYS_MOUNT_H) */
#ifdef HAVE_SYS_VFS_H
# include <sys/vfs.h>
# define HAVE_STATS 1
#endif /* HAVE_SYS_VFS_H */
#ifdef HAVE_SYS_STATVFS_H
# include <sys/statvfs.h>
#endif
#ifdef HAVE_STATS
static value
#if ((defined (sun) || defined (__sun__))) || (defined(__NetBSD__) && (__NetBSD_Version__ > 299000000)) || defined (__hpux__) || defined(__alpha__)
copy_statfs (struct statvfs *buf)
#else
copy_statfs (struct statfs *buf)
#endif /* ((defined (sun) || defined (__sun__))) || (defined(__NetBSD__) && (__NetBSD_Version__ > 299000000)) || defined (__hpux__) */
{
CAMLparam0 ();
CAMLlocal2 (bufv, v);
bufv = caml_alloc (11, 0);
#if ((defined (sun) || defined (__sun__))) || (defined(__FreeBSD__) && __FreeBSD_version >= 503001) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__alpha__)
v = copy_int64 (-1); caml_modify (&Field (bufv, 0), v);
#else
v = copy_int64 (buf->f_type); caml_modify (&Field (bufv, 0), v);
#endif /* ((defined (sun) || defined (__sun__))) || (defined(__FreeBSD__) && __FreeBSD_version >= 503001) || defined(__OpenBSD__) || defined(__NetBSD__) */
v = copy_int64 (buf->f_bsize); caml_modify (&Field (bufv, 1), v);
v = copy_int64 (buf->f_blocks); caml_modify (&Field (bufv, 2), v);
v = copy_int64 (buf->f_bfree); caml_modify (&Field (bufv, 3), v);
v = copy_int64 (buf->f_bavail); caml_modify (&Field (bufv, 4), v);
v = copy_int64 (buf->f_files); caml_modify (&Field (bufv, 5), v);
v = copy_int64 (buf->f_ffree); caml_modify (&Field (bufv, 6), v);
#if ((defined (sun) || defined (__sun__))) || defined (__hpux__) || defined(__alpha__)
v = copy_int64 (-1); caml_modify (&Field (bufv, 7), v);
v = copy_int64 (buf->f_namemax); caml_modify (&Field (bufv, 8), v);
# if ! defined(__alpha__)
v = copy_string (buf->f_basetype); caml_modify (&Field (bufv, 9), v);
# else
v = copy_string ("-1"); caml_modify (&Field (bufv, 9), v);
# endif
v = copy_int64 (buf->f_frsize); caml_modify (&Field (bufv, 10), v);
#else
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
# if defined(__OpenBSD__) || defined(__NetBSD__) || (defined(__FreeBSD__) && __FreeBSD_version < 502000) || defined(__DragonFly__) || defined(__APPLE__)
# include <sys/syslimits.h>
v = copy_int64 (NAME_MAX); caml_modify (&Field (bufv, 8), v);
# else
v = copy_int64 (buf->f_namemax); caml_modify (&Field (bufv, 8), v);
# endif /* (__OpenBSD__) || defined(__NetBSD__) || (defined(__FreeBSD__) && __FreeBSD_version < 502000) */
v = copy_string (buf->f_fstypename); caml_modify (&Field (bufv, 9), v);
#else
v = copy_int64 (buf->f_namelen); caml_modify (&Field (bufv, 8), v);
v = copy_string ("-1"); caml_modify (&Field (bufv, 9), v);
#endif /* defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) */
caml_modify (&Field (bufv, 7), Val_unit);
v = copy_int64 (-1); caml_modify (&Field (bufv, 10), v);
#endif /* ((defined (sun) || defined (__sun__))) || defined (__hpux__) */
CAMLreturn (bufv);
}
#endif /* HAVE_STATS */
CAMLprim value
statfs_statfs (value pathv)
{
#ifdef HAVE_STATS
CAMLparam1 (pathv);
CAMLlocal1 (bufv);
const char *path = String_val (pathv);
#if ((defined (sun) || defined (__sun__))) || (defined(__NetBSD__) && (__NetBSD_Version__ > 299000000)) || defined (__hpux__) || defined(__alpha__)
struct statvfs buf;
if (statvfs (path, &buf) == -1)
#else
struct statfs buf;
if (statfs (path, &buf) == -1)
#endif /* ((defined (sun) || defined (__sun__))) || (defined(__NetBSD__) && (__NetBSD_Version__ > 299000000)) || defined (__hpux__) */
raise_constant(*(value *)caml_named_value("error"));
bufv = copy_statfs (&buf);
CAMLreturn (bufv);
#else
raise_constant(*(value *)caml_named_value("not supported"));
#endif /* HAVE_STATS */
}
#endif /* defined(__MINGW32__) */
/*******************************************************************
external_start
external_exit
*******************************************************************/
#if defined(__MINGW32__)
static HWND myHWND = NULL;
#endif
value
external_start (void)
{
/* Disable close button on console */
#if defined(__MINGW32__)
char *buf = "[MLDonkey TitleSearch]\0"; /* if multiple instances */
SetConsoleTitle((LPCTSTR)buf);
myHWND = FindWindowEx(NULL, NULL, NULL, (LPCTSTR)buf);
if (myHWND != NULL) {
HMENU hmenu = GetSystemMenu(myHWND, FALSE);
MENUITEMINFO CloseItem;
CloseItem.cbSize = sizeof(MENUITEMINFO);
CloseItem.fMask = MIIM_ID;
CloseItem.wID = SC_MINIMIZE+1;
EnableMenuItem(hmenu, SC_CLOSE, MF_BYCOMMAND | MF_GRAYED);
SetMenuItemInfo(hmenu, SC_CLOSE, FALSE, &CloseItem);
DrawMenuBar(myHWND);
}
#endif /* defined(__MINGW32__) */
#if defined(HAVE_PTHREAD) && defined(PTW32_STATIC_LIB)
pthread_win32_process_attach_np();
#endif
return Val_unit;
}
value
external_exit (void)
{
/* Revert console system menu */
#if defined(__MINGW32__)
if (myHWND != NULL) {
HMENU hmenu = GetSystemMenu(myHWND, FALSE);
MENUITEMINFO CloseItem;
CloseItem.cbSize = sizeof(MENUITEMINFO);
CloseItem.fMask = MIIM_ID;
CloseItem.wID = SC_CLOSE;
SetMenuItemInfo(hmenu, SC_MINIMIZE+1, FALSE, &CloseItem);
EnableMenuItem(hmenu, SC_CLOSE, MF_BYCOMMAND | MF_ENABLED);
DrawMenuBar(myHWND);
}
#endif /* defined(__MINGW32__) */
#if defined(HAVE_PTHREAD) && defined(PTW32_STATIC_LIB)
pthread_win32_process_detach_np();
#endif
#if defined(HAVE_CRYPTOPP)
/* crypto_exit(); */
#endif
return Val_unit;
}
/*******************************************************************
ml_uname
*******************************************************************/
value
ml_uname(void)
{
char buf[4096];
buf[0] = '\0';
os_uname(buf);
return caml_copy_string(buf);
}
/*******************************************************************
ml_check_endianness
*******************************************************************/
value
ml_check_endianness(void)
{
CAMLparam0 ();
CAMLlocal1 (v);
#ifdef ARCH_BIG_ENDIAN
v = copy_string ("big endian");
#else
v = copy_string ("little endian");
#endif
CAMLreturn (v);
}
/*******************************************************************
rlimit
*******************************************************************/
value
ml_getrlimit(value resource)
{
#ifdef HAVE_GETRLIMIT
CAMLparam1(resource);
CAMLlocal1(retval);
int r;
struct rlimit lim;
switch (Int_val(resource)) {
case 0:
#ifdef RLIMIT_CPU
r = RLIMIT_CPU;
#else
r = -1;
#endif
break;
case 1:
#ifdef RLIMIT_FSIZE
r = RLIMIT_FSIZE;
#else
r = -1;
#endif
break;
case 2:
#ifdef RLIMIT_DATA
r = RLIMIT_DATA;
#else
r = -1;
#endif
break;
case 3:
#ifdef RLIMIT_STACK
r = RLIMIT_STACK;
#else
r = -1;
#endif
break;
case 4:
#ifdef RLIMIT_CORE
r = RLIMIT_CORE;
#else
r = -1;
#endif
break;
case 5:
#ifdef RLIMIT_RSS
r = RLIMIT_RSS;
#else
r = -1;
#endif
break;
case 6:
#ifdef RLIMIT_NPROC
r = RLIMIT_NPROC;
#else
r = -1;
#endif
break;
case 7:
#ifdef RLIMIT_NOFILE
r = RLIMIT_NOFILE;
#elif RLIMIT_OFILE
r = RLIMIT_OFILE:
#else
r = -1;
#endif
break;
case 8:
#ifdef RLIMIT_MEMLOCK
r = RLIMIT_MEMLOCK;
#else
r = -1;
#endif
break;
case 9:
#ifdef RLIMIT_AS
r = RLIMIT_AS;
#else
r = -1;
#endif
break;
default:
errno = EINVAL;
uerror("getrlimit", Nothing);
}
if (getrlimit(r, &lim) < 0)
uerror("getrlimit", Nothing);
retval = alloc_tuple(2);
Field(retval, 0) = Val_int(lim.rlim_cur);
Field(retval, 1) = Val_int(lim.rlim_max);
CAMLreturn(retval);
#else
failwith("getrlimit unimplemented");
#endif
}
value
ml_setrlimit(value resource, value rlimit)
{
#ifdef HAVE_SETRLIMIT
int r;
struct rlimit lim;
switch (Int_val(resource)) {
case 0:
#ifdef RLIMIT_CPU
r = RLIMIT_CPU;
#else
r = -1;
#endif
break;
case 1:
#ifdef RLIMIT_FSIZE
r = RLIMIT_FSIZE;
#else
r = -1;
#endif
break;
case 2:
#ifdef RLIMIT_DATA
r = RLIMIT_DATA;
#else
r = -1;
#endif
break;
case 3:
#ifdef RLIMIT_STACK
r = RLIMIT_STACK;
#else
r = -1;
#endif
break;
case 4:
#ifdef RLIMIT_CORE
r = RLIMIT_CORE;
#else
r = -1;
#endif
break;
case 5:
#ifdef RLIMIT_RSS
r = RLIMIT_RSS;
#else
r = -1;
#endif
break;
case 6:
#ifdef RLIMIT_NPROC
r = RLIMIT_NPROC;
#else
r = -1;
#endif
break;
case 7:
#ifdef RLIMIT_NOFILE
r = RLIMIT_NOFILE;
#elif RLIMIT_OFILE
r = RLIMIT_OFILE:
#else
r = -1;
#endif
break;
case 8:
#ifdef RLIMIT_MEMLOCK
r = RLIMIT_MEMLOCK;
#else
r = -1;
#endif
break;
case 9:
#ifdef RLIMIT_AS
r = RLIMIT_AS;
#else
r = -1;
#endif
break;
default:
errno = EINVAL;
uerror("getrlimit", Nothing);
}
lim.rlim_cur = Int_val(Field(rlimit, 0));
lim.rlim_max = Int_val(Field(rlimit, 1));
if (setrlimit(r, &lim) < 0)
uerror("setrlimit", Nothing);
return Val_unit;
#else
failwith("getrlimit unimplemented");
#endif
}
/*******************************************************************
ml_os_supported
*******************************************************************/
value ml_os_supported(value unit)
{
int buf = os_os_supported();
if ( buf == 1 )
return Val_true;
else
return Val_false;
}
/*
* fsync
*/
CAMLprim value ml_fsync(value v_fd)
{
CAMLparam1(v_fd);
int r = 0;
OS_FD fd;
if (OS_IS_FD(v_fd))
fd = Fd_val(v_fd);
else
caml_invalid_argument("fsync");
caml_enter_blocking_section();
r = os_fsync(fd);
caml_leave_blocking_section();
if (0 != r)
uerror("fsync",Nothing);
CAMLreturn(Val_unit);
}
|