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
|
/*
* POSIX library for Lua 5.1, 5.2, 5.3 & 5.4.
* Copyright (C) 2013-2025 Gary V. Vaughan
* Copyright (C) 2010-2013 Reuben Thomas <rrt@sc3d.org>
* Copyright (C) 2008-2010 Natanael Copa <natanael.copa@gmail.com>
* Clean up and bug fixes by Leo Razoumov <slonik.az@gmail.com> 2006-10-11
* Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> 07 Apr 2006 23:17:49
* Based on original by Claudio Terra for Lua 3.x.
* With contributions by Roberto Ierusalimschy.
* With documentation from Steve Donovan 2012
*/
/***
Unix Standard APIs.
Where the underlying system does not support one of these functions, it
will have a `nil` value in the module table.
@module posix.unistd
*/
#if HAVE_CRYPT_H
# include <crypt.h>
#endif
#include <sys/stat.h>
#include <sys/types.h>
#include <grp.h>
#include <pwd.h>
#include <unistd.h>
#include "_helpers.c"
static uid_t
mygetuid(lua_State *L, int i)
{
if (lua_isnoneornil(L, i))
return (uid_t)-1;
else if (lua_isinteger(L, i))
return (uid_t) lua_tointeger(L, i);
else if (lua_isstring(L, i))
{
struct passwd *p = getpwnam(lua_tostring(L, i));
return (p == NULL) ? (uid_t) -1 : p->pw_uid;
}
else
return argtypeerror(L, i, "integer, nil or string");
}
static gid_t
mygetgid(lua_State *L, int i)
{
if (lua_isnoneornil(L, i))
return (gid_t)-1;
else if (lua_isinteger(L, i))
return (gid_t) lua_tointeger(L, i);
else if (lua_isstring(L, i))
{
struct group *g = getgrnam(lua_tostring(L, i));
return (g == NULL) ? (uid_t) -1 : g->gr_gid;
}
else
return argtypeerror(L, i, "integer, nil or string");
}
/***
Terminate the calling process.
@function _exit
@int status process exit status
@see _exit(2)
*/
static int
P_exit(lua_State *L)
{
pid_t ret = (pid_t)checkinteger(L, 1);
checknargs(L, 1);
_exit(ret);
return 0; /* Avoid a compiler warning (or possibly cause one
if the compiler's too clever, sigh). */
}
/***
Check real user's permissions for a file.
@function access
@string path file to act on
@string[opt="f"] mode can contain 'r','w','x' and 'f'
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see access(2)
@usage
local unistd = require "posix.unistd"
status, errstr, errno = unistd.access("/etc/passwd", "rw")
*/
static int
Paccess(lua_State *L)
{
int mode=F_OK;
const char *path=luaL_checkstring(L, 1);
const char *s;
checknargs(L, 2);
for (s=optstring(L, 2, "f"); *s!=0 ; s++)
switch (*s)
{
case ' ': break;
case 'r': mode |= R_OK; break;
case 'w': mode |= W_OK; break;
case 'x': mode |= X_OK; break;
case 'f': mode |= F_OK; break;
default: badoption(L, 2, "mode", *s); break;
}
return pushresult(L, access(path, mode), path);
}
/***
Schedule an alarm signal.
@function alarm
@int seconds number of seconds to send SIGALRM in
@return int number of seconds remaining in previous alarm or `0`
@see alarm(2)
@usage
local unistd = require "posix.unistd"
seconds = unistd.alarm(10)
*/
static int
Palarm(lua_State *L)
{
int seconds = checkint(L, 1);
checknargs(L, 1);
return pushintegerresult(alarm(seconds));
}
/***
Set the working directory.
@function chdir
@string path file to act on
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see chdir(2)
@usage
local unistd = require "posix.unistd"
status, errstr, errno = unistd.chdir ("/var/tmp")
*/
static int
Pchdir(lua_State *L)
{
const char *path = luaL_checkstring(L, 1);
checknargs(L, 1);
return pushresult(L, chdir(path), path);
}
/***
Change ownership of a file.
@function chown
@string path existing file path
@tparam string|int uid new owner user id
@tparam string|int gid new owner group id
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error messoge
@treturn[2] int errnum
@see chown(2)
@usage
local unistd = require "posix.unistd"
-- will fail for a normal user, and print an error
print(unistd.chown ("/etc/passwd", 100, 200))
*/
static int
Pchown(lua_State *L)
{
const char *path = luaL_checkstring(L, 1);
uid_t uid = mygetuid(L, 2);
gid_t gid = mygetgid(L, 3);
checknargs(L, 3);
return pushresult(L, chown(path, uid, gid), path);
}
/***
Close an open file descriptor.
@function close
@int fd file descriptor to act on
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see close(2)
@usage
local unistd = require "posix.unistd"
local ok, errmsg = unistd.close (log)
if not ok then error (errmsg) end
*/
static int
Pclose(lua_State *L)
{
int fd = checkint(L, 1);
checknargs(L, 1);
return pushresult(L, close(fd), NULL);
}
#if defined HAVE_CRYPT
/***
Encrypt a password.
Not recommended for general encryption purposes.
@function crypt
@string trypass string to hash
@string salt two-character string from [a-zA-Z0-9./]
@return encrypted string
@see crypt(3)
@usage
local pwd = require "posix.pwd"
local unistd = require "posix.unistd"
local salt, hash = pwd.pwent:match ":$6$(.-)$([^:]+)"
if unistd.crypt (trypass, salt) ~= hash then
error "wrong password"
end
*/
static int
Pcrypt(lua_State *L)
{
const char *str, *salt;
char *r;
str = luaL_checkstring(L, 1);
salt = luaL_checkstring(L, 2);
if (strlen(salt) < 2)
luaL_error(L, "not enough salt");
checknargs(L, 2);
r = crypt(str, salt);
return pushstringresult(r);
}
#endif
/***
Duplicate an open file descriptor.
@function dup
@int fd file descriptor to act on
@treturn[1] int new file descriptor duplicating *fd*, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see dup(2)
@usage
local stdio = require "posix.stdio"
local unistd = require "posix.unistd"
outfd = unistd.dup (stdio.fileno (io.stdout))
*/
static int
Pdup(lua_State *L)
{
int fd = checkint(L, 1);
checknargs(L, 1);
return pushresult(L, dup(fd), NULL);
}
/***
Duplicate one open file descriptor to another.
If *newfd* references an open file already, it is closed before being
reallocated to *fd*.
@function dup2
@int fd an open file descriptor to act on
@int newfd new descriptor to duplicate *fd*
@treturn[1] int new file descriptor, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see dup2(2)
*/
static int
Pdup2(lua_State *L)
{
int fd = checkint(L, 1);
int newfd = checkint(L, 2);
checknargs(L, 2);
return pushresult(L, dup2(fd, newfd), NULL);
}
static int
runexec(lua_State *L, int use_shell)
{
char **argv;
const char *path = luaL_checkstring(L, 1);
int i, n;
checknargs(L, 2);
if (lua_type(L, 2) != LUA_TTABLE)
argtypeerror(L, 2, "table");
n = lua_objlen(L, 2);
argv = lua_newuserdata(L, (n + 2) * sizeof(char*));
/* Set argv[0], defaulting to command */
argv[0] = (char*) path;
lua_pushinteger(L, 0);
lua_gettable(L, 2);
if (lua_type(L, -1) == LUA_TSTRING)
argv[0] = (char*)lua_tostring(L, -1);
else
lua_pop(L, 1);
/* Read argv[1..n] from table. */
for (i=1; i<=n; i++)
{
lua_pushinteger(L, i);
lua_gettable(L, 2);
argv[i] = (char*)lua_tostring(L, -1);
}
argv[n+1] = NULL;
(use_shell ? execvp : execv) (path, argv);
return pusherror(L, path);
}
/***
Execute a program at exactly *path*.
@function exec
@string path
@tparam table argt arguments (table can include index 0)
@return nil
@treturn string error message
@treturn int errnum
@see execve(2)
@usage exec ("/bin/bash", {[0] = "-sh", "--norc"})
*/
static int
Pexec(lua_State *L)
{
return runexec(L, 0);
}
/***
Execute a program found using command PATH search, like the shell.
@function execp
@string path
@tparam table argt arguments (table can include index 0)
@return nil
@treturn string error message
@treturn int errnum
@see execve(2)
*/
static int
Pexecp(lua_State *L)
{
return runexec(L, 1);
}
#if HAVE_FDATASYNC
#if !HAVE_DECL_FDATASYNC
extern int fdatasync ();
#endif
/***
Synchronize a file's in-core state with storage device without metadata.
@function fdatasync
@int fd
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see fdatasync(2)
*/
static int
Pfdatasync(lua_State *L)
{
int fd = checkint(L, 1);
checknargs(L, 1);
return pushresult(L, fdatasync(fd), NULL);
}
#endif
/***
Fork this program.
@function fork
@treturn[1] int `0` in the resulting child process
@treturn[2] int process id of child, in the calling process
@return[3] nil
@treturn[3] string error message
@treturn[3] int errnum
@see fork(2)
@see fork.lua
@see fork2.lua
@usage
local unistd = require "posix.unistd"
local pid, errmsg = unistd.fork ()
if pid == nil then
error (errmsg)
elseif pid == 0 then
print ("in child:", unistd.getpid "pid")
else
print (require "posix.sys.wait".wait (pid))
end
os.exit ()
*/
static int
Pfork(lua_State *L)
{
checknargs(L, 0);
return pushresult(L, fork(), NULL);
}
/***
Synchronize a file's in-core state with storage device.
@function fsync
@int fd
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see fsync(2)
@see sync
*/
static int
Pfsync(lua_State *L)
{
int fd = checkint(L, 1);
checknargs(L, 1);
return pushresult(L, fsync(fd), NULL);
}
/***
Current working directory for this process.
@function getcwd
@treturn[1] string path of current working directory, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see getcwd(3)
*/
static int
Pgetcwd(lua_State *L)
{
#ifdef __GNU__
char *r = get_current_dir_name();
checknargs(L, 0);
if (r != NULL)
lua_pushstring(L, r);
free(r);
#else
long size = pathconf(".", _PC_PATH_MAX);
if (size == -1)
return pusherror(L, "pathconf");
void *ud;
lua_Alloc lalloc;
char *b, *r;
checknargs(L, 0);
lalloc = lua_getallocf(L, &ud);
if (size == -1)
size = _POSIX_PATH_MAX; /* FIXME: Retry if this is not long enough */
if ((b = lalloc(ud, NULL, 0, (size_t)size + 1)) == NULL)
return pusherror(L, "lalloc");
r = getcwd(b, (size_t)size);
if (r != NULL)
lua_pushstring(L, b);
lalloc(ud, b, (size_t)size + 1, 0);
#endif
return (r == NULL) ? pusherror(L, ".") : 1;
}
/***
Return effective group id of calling process.
@function getegid
@treturn int effective group id of calling process
@see getgid
*/
static int
Pgetegid(lua_State *L)
{
checknargs(L, 0);
return pushintegerresult(getegid());
}
/***
Return effective user id of calling process.
@function geteuid
@treturn int effective user id of calling process
@see getuid
*/
static int
Pgeteuid(lua_State *L)
{
checknargs(L, 0);
return pushintegerresult(geteuid());
}
/***
Return group id of calling process.
@function getgid
@treturn int group id of calling process
@see getegid
*/
static int
Pgetgid(lua_State *L)
{
checknargs(L, 0);
return pushintegerresult(getgid());
}
#if LPOSIX_2001_COMPLIANT
/***
Get list of supplementary group ids.
@function getgroups
@treturn[1] table group id, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see getgroups(2)
*/
static int
Pgetgroups(lua_State *L)
{
int n_group_slots = getgroups(0, NULL);
checknargs(L, 0);
if (n_group_slots < 0)
return pusherror(L, NULL);
else if (n_group_slots == 0)
lua_newtable(L);
else
{
gid_t *group;
int n_groups;
int i;
group = lua_newuserdata(L, sizeof(*group) * n_group_slots);
n_groups = getgroups(n_group_slots, group);
if (n_groups < 0)
return pusherror(L, NULL);
lua_createtable(L, n_groups, 0);
for (i = 0; i < n_groups; i++)
{
lua_pushinteger(L, group[i]);
lua_rawseti(L, -2, i + 1);
}
}
return 1;
}
#endif
/***
Current logged-in user.
@treturn[1] string username, if successful
@return[2] nil
@see getlogin(3)
*/
static int
Pgetlogin(lua_State *L)
{
checknargs(L, 0);
return pushstringresult(getlogin());
}
static int
iter_getopt(lua_State *L)
{
int r, argc = lua_tointeger(L, lua_upvalueindex(1));
char **argv = (char **)lua_touserdata(L, lua_upvalueindex(3));
char c;
if (argv == NULL) /* If we have already completed, return now. */
return 0;
/* Fetch upvalues to pass to getopt. */
r = getopt(argc, argv, lua_tostring(L, lua_upvalueindex(2)));
if (r == -1)
return 0;
c = (char) r;
lua_pushlstring(L, &c, 1);
lua_pushstring(L, optarg);
lua_pushinteger(L, optind);
return 3;
}
/***
Parse command-line options.
@function getopt
@param arg command line arguments
@string opts short option specifier
@int[opt=0] opterr index of the option with an error
@int[opt=1] optind index of the next unprocessed option
@treturn option iterator, returning 3 values
@see getopt(3)
@see getopt.lua
@usage
local getopt = require "posix.getopt".getopt
for opt, opterr, i in getopt (arg, "ho:v", opterr, i) do
process (arg, opterr, i)
end
*/
static int
Pgetopt(lua_State *L)
{
int argc, i;
const char *optstring;
char **argv;
checknargs(L, 4);
checktype(L, 1, LUA_TTABLE, "list");
optstring = luaL_checkstring(L, 2);
opterr = optinteger(L, 3, 0);
optind = optinteger(L, 4, 1);
argc = (int)lua_objlen(L, 1) + 1;
lua_pushinteger(L, argc);
lua_pushstring(L, optstring);
argv = lua_newuserdata(L, (argc + 1) * sizeof(char *));
argv[argc] = NULL;
for (i = 0; i < argc; i++)
{
lua_pushinteger(L, i);
lua_gettable(L, 1);
argv[i] = (char *)luaL_checkstring(L, -1);
}
/* Push remaining upvalues, and make and push closure. */
lua_pushcclosure(L, iter_getopt, 3 + argc);
return 1;
}
/***
Return process group id of calling process.
@function getpgrp
@treturn int process group id of calling process
@see getpid
*/
static int
Pgetpgrp(lua_State *L)
{
checknargs(L, 0);
return pushintegerresult(getpgrp());
}
/***
Return process id of calling process.
@function getpid
@treturn int process id of calling process
*/
static int
Pgetpid(lua_State *L)
{
checknargs(L, 0);
return pushintegerresult(getpid());
}
/***
Return parent process id of calling process.
@function getppid
@treturn int parent process id of calling process
@see getpid
*/
static int
Pgetppid(lua_State *L)
{
checknargs(L, 0);
return pushintegerresult(getppid());
}
/***
Return user id of calling process.
@function getuid
@treturn int user id of calling process
@see geteuid
*/
static int
Pgetuid(lua_State *L)
{
checknargs(L, 0);
return pushintegerresult(getuid());
}
/***
Get host id.
@function gethostid
@treturn[1] int host id, if successful
@return[2] nil
@treturn[2] string error message
@see gethostid(3)
*/
static int
Pgethostid(lua_State *L)
{
checknargs(L, 0);
#if HAVE_GETHOSTID
return pushintegerresult(gethostid());
#else
lua_pushnil(L);
lua_pushliteral(L, "unsupported by this host");
return 2;
#endif
}
/***
Test whether a file descriptor refers to a terminal.
@function isatty
@int fd file descriptor to act on
@treturn[1] int `1` if *fd* is open and refers to a terminal, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see isatty(3)
*/
static int
Pisatty(lua_State *L)
{
int fd = checkint(L, 1);
checknargs(L, 1);
return pushresult(L, isatty(fd) == 0 ? -1 : 1, "isatty");
}
#if LPOSIX_2001_COMPLIANT
/***
This is like `chown`, but does not dereference symbolic links.
In other words, if a file is a symlink, then it changes ownership of the
symlink itself.
@function lchown
@string path existing file path
@tparam string|int uid new owner user id
@tparam string|int gid new owner group id
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error messoge
@treturn[2] int errnum
@see lchown(2)
@usage
local unistd = require "posix.unistd"
-- will fail for a normal user, and print an error
print(unistd.lchown ("/etc/passwd", 100, 200))
*/
static int
Plchown(lua_State *L)
{
const char *path = luaL_checkstring(L, 1);
uid_t uid = mygetuid(L, 2);
gid_t gid = mygetgid(L, 3);
checknargs(L, 3);
return pushresult(L, lchown(path, uid, gid), path);
}
#endif
/***
Create a link.
@function link
@string target name
@string link name
@bool[opt=false] soft link
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see link(2)
@see symlink(2)
*/
static int
Plink(lua_State *L)
{
const char *oldpath = luaL_checkstring(L, 1);
const char *newpath = luaL_checkstring(L, 2);
int symbolicp = optboolean(L, 3, 0);
checknargs(L, 3);
return pushresult(L, (symbolicp ? symlink : link)(oldpath, newpath), NULL);
}
/***
Create a link at specified directory.
@function linkat
@int targetdir fd
@string target name
@int linkdir fd
@string link name
@int flags
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see linkat(2)
*/
static int
Plinkat(lua_State *L)
{
int olddirfd = checkint(L, 1);
const char *oldpath = luaL_checkstring(L, 2);
int newdirfd = checkint(L, 3);
const char *newpath = luaL_checkstring(L, 4);
int flags = checkint(L, 5);
checknargs(L, 5);
return pushresult(L, linkat(olddirfd, oldpath, newdirfd, newpath, flags), NULL);
}
/***
reposition read/write file offset
@function lseek
@int fd open file descriptor to act on
@int offset bytes to seek
@int whence one of `SEEK_SET`, `SEEK_CUR` or `SEEK_END`
@treturn[1] int new offset, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see lseek(2)
*/
static int
Plseek(lua_State *L)
{
int fd = checkint(L, 1);
off_t offset = (off_t)checkinteger(L, 2);
int whence = checkint(L, 3);
checknargs(L, 3);
return pushresult(L, lseek(fd, offset, whence), NULL);
}
/***
change process priority
@function nice
@int inc adds inc to the nice value for the calling process
@treturn[1] int new nice value, if successful
@return[2] nil
@return[2] string error message
@treturn[2] int errnum
@see nice(2)
*/
static int
Pnice(lua_State *L)
{
int inc = checkint(L, 1);
checknargs(L, 1);
return pushresult(L, nice(inc), "nice");
}
/***
Get a value for a configuration option for a filename.
@function pathconf
@string path optional
@int key one of `_PC_LINK_MAX`, `_PC_MAX_CANON`, `_PC_NAME_MAX`,
`_PC_PIPE_BUF`, `_PC_CHOWN_RESTRICTED`, `_PC_NO_TRUNC` or
`_PC_VDISABLE`
@treturn int associated path configuration value
@see pathconf(3)
@usage
local unistd = require "posix.unistd"
for a, b in pairs (unistd.pathconf "/dev/tty") do print(a, b) end
*/
static int
Ppathconf(lua_State *L)
{
const char *path = luaL_checkstring(L, 1);
checknargs(L, 2);
return pushintegerresult(pathconf(path, checkint(L, 2)));
}
/***
Creates a pipe.
@function pipe
@treturn[1] int read end file descriptor
@treturn[1] int write end file descriptor, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see pipe(2)
@see fork.lua
*/
static int
Ppipe(lua_State *L)
{
int pipefd[2];
int rc;
checknargs(L, 0);
rc = pipe(pipefd);
if (rc < 0)
return pusherror(L, "pipe");
lua_pushinteger(L, pipefd[0]);
lua_pushinteger(L, pipefd[1]);
return 2;
}
/***
Read bytes from a file.
@function read
@int fd the file descriptor to act on
@int count maximum number of bytes to read
@treturn[1] string string from *fd* with at most *count* bytes, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see read(2)
*/
static int
Pread(lua_State *L)
{
int fd = checkint(L, 1);
size_t count = (size_t)checkinteger(L, 2);
ssize_t ret;
void *ud, *buf;
lua_Alloc lalloc;
checknargs(L, 2);
lalloc = lua_getallocf(L, &ud);
/* Reset errno in case lalloc doesn't set it */
errno = 0;
if ((buf = lalloc(ud, NULL, 0, count)) == NULL && count > 0)
return pusherror(L, "lalloc");
ret = read(fd, buf, count);
if (ret >= 0)
lua_pushlstring(L, buf, ret);
lalloc(ud, buf, count, 0);
return (ret < 0) ? pusherror(L, NULL) : 1;
}
/***
Read value of a symbolic link.
@function readlink
@string path file to act on
@treturn[1] string link target, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see readlink(2)
*/
static int
Preadlink(lua_State *L)
{
char b[PATH_MAX];
struct stat s;
const char *path = luaL_checkstring(L, 1);
void *ud;
lua_Alloc lalloc;
ssize_t n;
checknargs(L, 1);
errno = 0; /* ignore outstanding unreported errors */
/* s.st_size is length of linkname, with no trailing \0 */
if (lstat(path, &s) < 0)
return pusherror(L, path);
if (!S_ISLNK(s.st_mode))
{
lua_pushnil(L);
lua_pushfstring(L, "%s: not a symbolic link", path);
lua_pushinteger(L, EINVAL);
return 3;
}
n = readlink(path, b, PATH_MAX);
if (n < 0)
/* report new errors from this function */
return pusherror(L, "readlink");
lua_pushlstring(L, b, n);
return 1;
}
/***
Remove a directory.
@function rmdir
@string path file to act on
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see rmdir(2)
*/
static int
Prmdir(lua_State *L)
{
const char *path = luaL_checkstring(L, 1);
checknargs(L, 1);
return pushresult(L, rmdir(path), path);
}
/***
Set the uid, euid, gid, egid, sid or pid & gid.
@function setpid
@string what one of 'u', 'U', 'g', 'G', 's', 'p' (upper-case means "effective")
@int id (uid, gid or pid for every value of `what` except 's')
@int[opt] gid (only for `what` value 'p')
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see setuid(2)
@see seteuid(2)
@see setgid(2)
@see setegid(2)
@see setsid(2)
@see setpgid(2)
*/
static int
Psetpid(lua_State *L)
{
const char *what=luaL_checkstring(L, 1);
checknargs(L, *what == 'p' ? 3 : 2);
switch (*what)
{
case 'U':
return pushresult(L, seteuid(mygetuid(L, 2)), NULL);
case 'u':
return pushresult(L, setuid(mygetuid(L, 2)), NULL);
case 'G':
return pushresult(L, setegid(mygetgid(L, 2)), NULL);
case 'g':
return pushresult(L, setgid(mygetgid(L, 2)), NULL);
case 's':
return pushresult(L, setsid(), NULL);
case 'p':
{
pid_t pid = (pid_t)checkinteger(L, 2);
pid_t pgid = (pid_t)checkinteger(L, 3);
return pushresult(L, setpgid(pid,pgid), NULL);
}
default:
badoption(L, 1, "id", *what);
return 0;
}
}
/***
Sleep for a number of seconds.
@function sleep
@int seconds minimum numebr of seconds to sleep
@treturn[1] int `0` if the requested time has elapsed
@treturn[2] int unslept seconds remaining, if interrupted
@see sleep(3)
@see posix.time.nanosleep
*/
static int
Psleep(lua_State *L)
{
unsigned int seconds = checkint(L, 1);
checknargs(L, 1);
return pushintegerresult(sleep(seconds));
}
/***
Commit buffer cache to disk.
@function sync
@see fsync
@see sync(2)
*/
static int
Psync(lua_State *L)
{
checknargs(L, 0);
sync();
return 0;
}
/***
Get configuration information at runtime.
@function sysconf
@int key one of `_SC_ARG_MAX`, `_SC_CHILD_MAX`, `_SC_CLK_TCK`, `_SC_JOB_CONTROL`,
`_SC_OPEN_MAX`, `_SC_NGROUPS_MAX`, `_SC_SAVED_IDS`, `_SC_STREAM_MAX`,
`_SC_PAGESIZE`, `_SC_TZNAME_MAX` or `_SC_VERSION`,
@treturn int associated system configuration value
@see sysconf(3)
*/
static int
Psysconf(lua_State *L)
{
checknargs(L, 1);
return pushintegerresult(sysconf(checkint(L, 1)));
}
/***
Name of a terminal device.
@function ttyname
@int[opt=0] fd file descriptor to process
@treturn[1] string name, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see ttyname(3)
*/
static int
Pttyname(lua_State *L)
{
int fd = optint(L, 1, 0);
char *name;
checknargs(L, 1);
name = ttyname(fd);
if (name != NULL)
return pushstringresult(name);
if (errno != 0)
return pusherror(L, "ttyname");
lua_pushnil(L);
lua_pushliteral(L, "not a tty");
return 2;
}
#if LPOSIX_2001_COMPLIANT
/***
Get id of foreground process group of terminal *fd*.
@function tcgetpgrp
@int fd the file descriptor of the controlling terminal of the current process
@treturn[1] int id of foreground process group, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see tcgetpgrp(2)
*/
static int
Ptcgetpgrp(lua_State *L)
{
int fd = checkint(L, 1);
return pushresult(L, tcgetpgrp(fd), NULL);
}
/***
Make process group *pgid* the foreground process group of terminal *fd*.
@function tcsetpgrp
@int fd the file descriptor of the controlling terminal of the current process
@int pgid id of the process group to make foreground process group
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see tcsetpgrp(2)
*/
static int
Ptcsetpgrp(lua_State *L)
{
int fd = checkint(L, 1);
pid_t pgid = (pid_t)checkinteger(L, 2);
return pushresult(L, tcsetpgrp(fd, pgid), NULL);
}
#endif
/***
Unlink a file.
@function unlink
@string path
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see unlink(2)
*/
static int
Punlink(lua_State *L)
{
const char *path = luaL_checkstring(L, 1);
checknargs(L, 1);
return pushresult(L, unlink(path), path);
}
/***
Write bytes to a file.
If *nbytes* is `nil` or omitted, write all bytes from *offset*
through to the end of *buf*. If *offset* is `nil` or omitted,
start writing bytes from the beginning of *buf*.
Bounds checks are enforced, returning `posix.errno.EINVAL`
before attempting to write any bytes, if the requested
parameters would access bytes outside *buf*.
@function write
@int fd the file descriptor to act on
@string buf containing bytes to write
@int[opt=#buf] nbytes number of bytes to write
@int[opt=0] offset skip the first offset bytes of buf
@treturn[1] int number of bytes written, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see write(2)
*/
static int
Pwrite(lua_State *L)
{
const int fd = checkint(L, 1);
const char *buf = luaL_checkstring(L, 2);
const int buflen = lua_objlen(L, 2);
ssize_t nbytes = (ssize_t)optinteger(L, 3, buflen);
const off_t offset = (off_t)optinteger(L, 4, 0);
off_t invalid_offset = offset;
checknargs(L, 4);
/* `write(fd, buf, nil, #buf - 3)` -> write the last 3 bytes in buf */
if (offset && lua_type(L, 3) == LUA_TNIL)
nbytes = buflen - offset;
/* calling write with nbytes `0` may cause unspecified behaviour */
if (nbytes == 0)
return pushintegerresult(0);
if (offset >= 0 && nbytes > 0 && offset + nbytes <= buflen)
return pushresult(L, write(fd, buf + offset, nbytes), NULL);
if (offset + nbytes < 0 || offset + nbytes > buflen)
invalid_offset += nbytes;
errno = EINVAL;
lua_pushnil(L);
lua_pushfstring(L, "write: invalid attempt to access offset %d in a buffer of length %d", invalid_offset, buflen);
lua_pushinteger(L, errno);
return 3;
}
/***
Truncate a file to a specified length.
@function ftruncate
@int fd the file descriptor to act on
@int length the length to truncate to
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see ftruncate(2)
*/
static int
Pftruncate(lua_State *L)
{
int fd = checkint(L, 1);
off_t length = (off_t)checkinteger(L, 2);
checknargs(L, 2);
return pushresult(L, ftruncate(fd, length), NULL);
}
/***
Truncate a file to a specified length.
@function truncate
@string path file to act on
@int length the length to truncate to
@treturn[1] int `0`, if successful
@return[2] nil
@treturn[2] string error message
@treturn[2] int errnum
@see ftruncate(2)
*/
static int
Ptruncate(lua_State *L)
{
const char *path = luaL_checkstring(L, 1);
off_t length = (off_t)checkinteger(L, 2);
checknargs(L, 2);
return pushresult(L, truncate(path, length), NULL);
}
static const luaL_Reg posix_unistd_fns[] =
{
LPOSIX_FUNC( P_exit ),
LPOSIX_FUNC( Paccess ),
LPOSIX_FUNC( Palarm ),
LPOSIX_FUNC( Pchdir ),
LPOSIX_FUNC( Pchown ),
LPOSIX_FUNC( Pclose ),
#if defined HAVE_CRYPT
LPOSIX_FUNC( Pcrypt ),
#endif
LPOSIX_FUNC( Pdup ),
LPOSIX_FUNC( Pdup2 ),
LPOSIX_FUNC( Pexec ),
LPOSIX_FUNC( Pexecp ),
#if HAVE_FDATASYNC
LPOSIX_FUNC( Pfdatasync ),
#endif
LPOSIX_FUNC( Pfork ),
LPOSIX_FUNC( Pfsync ),
LPOSIX_FUNC( Pgetcwd ),
#if LPOSIX_2001_COMPLIANT
LPOSIX_FUNC( Pgetgroups ),
#endif
LPOSIX_FUNC( Pgetegid ),
LPOSIX_FUNC( Pgeteuid ),
LPOSIX_FUNC( Pgetgid ),
LPOSIX_FUNC( Pgetlogin ),
LPOSIX_FUNC( Pgetopt ),
LPOSIX_FUNC( Pgetpgrp ),
LPOSIX_FUNC( Pgetpid ),
LPOSIX_FUNC( Pgetppid ),
LPOSIX_FUNC( Pgetuid ),
LPOSIX_FUNC( Pgethostid ),
LPOSIX_FUNC( Pisatty ),
#if LPOSIX_2001_COMPLIANT
LPOSIX_FUNC( Plchown ),
#endif
LPOSIX_FUNC( Plink ),
LPOSIX_FUNC( Plinkat ),
LPOSIX_FUNC( Plseek ),
LPOSIX_FUNC( Pnice ),
LPOSIX_FUNC( Ppathconf ),
LPOSIX_FUNC( Ppipe ),
LPOSIX_FUNC( Pread ),
LPOSIX_FUNC( Preadlink ),
LPOSIX_FUNC( Prmdir ),
LPOSIX_FUNC( Psetpid ),
LPOSIX_FUNC( Psleep ),
LPOSIX_FUNC( Psync ),
LPOSIX_FUNC( Psysconf ),
LPOSIX_FUNC( Pttyname ),
#if LPOSIX_2001_COMPLIANT
LPOSIX_FUNC( Ptcgetpgrp ),
LPOSIX_FUNC( Ptcsetpgrp ),
#endif
LPOSIX_FUNC( Punlink ),
LPOSIX_FUNC( Pwrite ),
LPOSIX_FUNC( Pftruncate ),
LPOSIX_FUNC( Ptruncate ),
{NULL, NULL}
};
/***
Constants.
@section constants
*/
/***
Standard constants.
Any constants not available in the underlying system will be `nil` valued.
@table posix.unistd
@int _PC_CHOWN_RESTRICTED return 1 if chown requires appropriate privileges, 0 otherwise
@int _PC_LINK_MAX maximum file link count
@int _PC_MAX_CANON maximum bytes in terminal canonical input line
@int _PC_MAX_INPUT maximum number of bytes in a terminal input queue
@int _PC_NAME_MAX maximum number of bytes in a file name
@int _PC_NO_TRUNC return 1 if over-long file names are truncated
@int _PC_PATH_MAXmaximum number of bytes in a pathname
@int _PC_PIPE_BUF maximum number of bytes in an atomic pipe write
@int _PC_VDISABLE terminal character disabling value
@int _SC_ARG_MAX maximum bytes of argument to @{posix.unistd.execp}
@int _SC_CHILD_MAX maximum number of processes per user
@int _SC_CLK_TCK statistics clock frequency
@int _SC_JOB_CONTROL return 1 if system has job control, -1 otherwise
@int _SC_NGROUPS_MAX maximum number of supplemental groups
@int _SC_OPEN_MAX maximum number of open files per user
@int _SC_SAVED_IDS return 1 if system supports saved user and group ids, -1 otherwise
@int _SC_STREAM_MAX maximum number of streams per process
@int _SC_TZNAME_MAX maximum number of timezone types
@int _SC_VERSION POSIX.1 compliance version
@int SEEK_CUR relative file pointer position
@int SEEK_END set file pointer to the end of file
@int SEEK_SET absolute file pointer position
@int STDERR_FILENO standard error file descriptor
@int STDIN_FILENO standard input file descriptor
@int STDOUT_FILENO standard output file descriptor
@usage
-- Print unistd constants supported on this host.
for name, value in pairs (require "posix.unistd") do
if type (value) == "number" then
print (name, value)
end
end
*/
LUALIB_API int
luaopen_posix_unistd(lua_State *L)
{
luaL_newlib(L, posix_unistd_fns);
lua_pushstring(L, LPOSIX_VERSION_STRING("unistd"));
lua_setfield(L, -2, "version");
/* pathconf arguments */
LPOSIX_CONST( _PC_CHOWN_RESTRICTED );
LPOSIX_CONST( _PC_LINK_MAX );
LPOSIX_CONST( _PC_MAX_CANON );
LPOSIX_CONST( _PC_MAX_INPUT );
LPOSIX_CONST( _PC_NAME_MAX );
LPOSIX_CONST( _PC_NO_TRUNC );
LPOSIX_CONST( _PC_PATH_MAX );
LPOSIX_CONST( _PC_PIPE_BUF );
LPOSIX_CONST( _PC_VDISABLE );
/* sysconf arguments */
LPOSIX_CONST( _SC_ARG_MAX );
LPOSIX_CONST( _SC_CHILD_MAX );
LPOSIX_CONST( _SC_CLK_TCK );
LPOSIX_CONST( _SC_JOB_CONTROL );
LPOSIX_CONST( _SC_NGROUPS_MAX );
LPOSIX_CONST( _SC_OPEN_MAX );
LPOSIX_CONST( _SC_PAGESIZE );
LPOSIX_CONST( _SC_SAVED_IDS );
LPOSIX_CONST( _SC_STREAM_MAX );
LPOSIX_CONST( _SC_TZNAME_MAX );
LPOSIX_CONST( _SC_VERSION );
/* lseek arguments */
LPOSIX_CONST( SEEK_CUR );
LPOSIX_CONST( SEEK_END );
LPOSIX_CONST( SEEK_SET );
/* Miscellaneous */
LPOSIX_CONST( STDERR_FILENO );
LPOSIX_CONST( STDIN_FILENO );
LPOSIX_CONST( STDOUT_FILENO );
return 1;
}
|