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
|
# Setting up the environment
```ocaml
# #require "eio_main";;
# ignore @@ Unix.umask 0o022;;
- : unit = ()
```
```ocaml
module Int63 = Optint.Int63
module Path = Eio.Path
let () = Eio.Exn.Backend.show := false
open Eio.Std
let ( / ) = Path.( / )
let run ?clear:(paths = []) fn =
Eio_main.run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
List.iter (fun p -> Eio.Path.rmtree ~missing_ok:true (cwd / p)) paths;
fn env
let try_read_file path =
match Path.load path with
| s -> traceln "read %a -> %S" Path.pp path s
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
let try_write_file ~create ?append path content =
match Path.save ~create ?append path content with
| () -> traceln "write %a -> ok" Path.pp path
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
let try_mkdir path =
match Path.mkdir path ~perm:0o700 with
| () -> traceln "mkdir %a -> ok" Path.pp path
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
let try_mkdirs ?exists_ok path =
match Path.mkdirs ?exists_ok path ~perm:0o700 with
| () -> traceln "mkdirs %a -> ok" Path.pp path
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
let try_rename p1 p2 =
match Path.rename p1 p2 with
| () -> traceln "rename %a to %a -> ok" Path.pp p1 Path.pp p2
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
let try_read_dir path =
match Path.read_dir path with
| names -> traceln "read_dir %a -> %a" Path.pp path Fmt.Dump.(list string) names
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
let try_read_link path =
match Path.read_link path with
| target -> traceln "read_link %a -> %S" Path.pp path target
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
let try_unlink path =
match Path.unlink path with
| () -> traceln "unlink %a -> ok" Path.pp path
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
let try_rmdir path =
match Path.rmdir path with
| () -> traceln "rmdir %a -> ok" Path.pp path
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
let try_rmtree ?missing_ok path =
match Path.rmtree ?missing_ok path with
| () -> traceln "rmtree %a -> ok" Path.pp path
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
let chdir path =
traceln "chdir %S" path;
Unix.chdir path
let try_stat path =
let stat ~follow =
match Eio.Path.stat ~follow path with
| info -> Fmt.str "@[<h>%a@]" Eio.File.Stat.pp_kind info.kind
| exception Eio.Io (e, _) -> Fmt.str "@[<h>%a@]" Eio.Exn.pp_err e
in
let a = stat ~follow:false in
let b = stat ~follow:true in
if a = b then
traceln "%a -> %s" Eio.Path.pp path a
else
traceln "%a -> %s / %s" Eio.Path.pp path a b
let try_symlink ~link_to path =
match Path.symlink ~link_to path with
| s -> traceln "symlink %a -> %S" Path.pp path link_to
| exception ex -> traceln "@[<h>%a@]" Eio.Exn.pp ex
```
# Basic test cases
Creating a file and reading it back:
```ocaml
# run ~clear:["test-file"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
Path.save ~create:(`Exclusive 0o666) (cwd / "test-file") "my-data";
traceln "Got %S" @@ Path.load (cwd / "test-file");;
+Got "my-data"
- : unit = ()
```
Check the file got the correct permissions (subject to the umask set above):
```ocaml
# Printf.printf "Perm = %o\n" ((Unix.stat "test-file").st_perm);;
Perm = 644
- : unit = ()
```
# Sandboxing
Trying to use cwd to access a file outside of that subtree fails:
```ocaml
# run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
Path.save ~create:(`Exclusive 0o666) (cwd / "../test-file") "my-data";
failwith "Should have failed";;
Exception: Eio.Io Fs Permission_denied _,
opening <cwd:../test-file>
```
Trying to use cwd to access an absolute path fails:
```ocaml
# run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
Path.save ~create:(`Exclusive 0o666) (cwd / "/tmp/test-file") "my-data";
failwith "Should have failed";;
Exception: Eio.Io Fs Permission_denied _,
opening <cwd:/tmp/test-file>
```
# Creation modes
Exclusive create fails if already exists:
```ocaml
# run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
Path.save ~create:(`Exclusive 0o666) (cwd / "test-file") "first-write";
Path.save ~create:(`Exclusive 0o666) (cwd / "test-file") "first-write";
failwith "Should have failed";;
Exception: Eio.Io Fs Already_exists _,
opening <cwd:test-file>
```
If-missing create succeeds if already exists:
```ocaml
# run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
let test_file = (cwd / "test-file") in
Path.save ~create:(`If_missing 0o666) test_file "1st-write-original";
Path.save ~create:(`If_missing 0o666) test_file "2nd-write";
traceln "Got %S" @@ Path.load test_file;;
+Got "2nd-write-original"
- : unit = ()
```
Truncate create succeeds if already exists, and truncates:
```ocaml
# run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
let test_file = (cwd / "test-file") in
Path.save ~create:(`Or_truncate 0o666) test_file "1st-write-original";
Path.save ~create:(`Or_truncate 0o666) test_file "2nd-write";
traceln "Got %S" @@ Path.load test_file;;
+Got "2nd-write"
- : unit = ()
# Unix.unlink "test-file";;
- : unit = ()
```
Error if no create and doesn't exist:
```ocaml
# run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
let test_file = (cwd / "test-file") in
Path.save ~create:`Never test_file "1st-write-original";
traceln "Got %S" @@ Path.load test_file;;
Exception: Eio.Io Fs Not_found _,
opening <cwd:test-file>
```
Appending to an existing file:
```ocaml
# run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
let test_file = (cwd / "test-file") in
Path.save ~create:(`Or_truncate 0o666) test_file "1st-write-original";
Path.save ~create:`Never ~append:true test_file "2nd-write";
traceln "Got %S" @@ Path.load test_file;;
+Got "1st-write-original2nd-write"
- : unit = ()
# Unix.unlink "test-file";;
- : unit = ()
```
# Mkdir
```ocaml
# run ~clear:["subdir"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
try_mkdir (cwd / "subdir");
try_mkdir (cwd / "subdir/nested");
Path.save ~create:(`Exclusive 0o600) (cwd / "subdir/nested/test-file") "data";
();;
+mkdir <cwd:subdir> -> ok
+mkdir <cwd:subdir/nested> -> ok
- : unit = ()
# Unix.unlink "subdir/nested/test-file";
Unix.rmdir "subdir/nested";
Unix.rmdir "subdir";;
- : unit = ()
```
Creating directories with nesting, symlinks, etc:
```ocaml
# run ~clear:["to-subdir"; "to-root"; "dangle"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
Path.symlink ~link_to:"/" (cwd / "to-root");
Path.symlink ~link_to:"subdir" (cwd / "to-subdir");
Path.symlink ~link_to:"foo" (cwd / "dangle");
try_mkdir (cwd / "subdir");
try_mkdir (cwd / "to-subdir/nested");
try_mkdir (cwd / "to-root/tmp/foo");
try_mkdir (cwd / "../foo");
try_mkdir (cwd / "to-subdir");
try_mkdir (cwd / "dangle/foo");
();;
+mkdir <cwd:subdir> -> ok
+mkdir <cwd:to-subdir/nested> -> ok
+Eio.Io Fs Permission_denied _, creating directory <cwd:to-root/tmp/foo>
+Eio.Io Fs Permission_denied _, creating directory <cwd:../foo>
+Eio.Io Fs Already_exists _, creating directory <cwd:to-subdir>
+Eio.Io Fs Not_found _, creating directory <cwd:dangle/foo>
- : unit = ()
```
# Split
```ocaml
let fake_dir : Eio.Fs.dir_ty r = Eio.Resource.T ((), Eio.Resource.handler [])
let split path = Eio.Path.split (fake_dir, path) |> Option.map (fun ((_, dirname), basename) -> dirname, basename)
```
```ocaml
# split "foo/bar";
- : (string * string) option = Some ("foo", "bar")
# split "/foo/bar";
- : (string * string) option = Some ("/foo", "bar")
# split "/foo/bar/baz";
- : (string * string) option = Some ("/foo/bar", "baz")
# split "/foo/bar//baz/";
- : (string * string) option = Some ("/foo/bar", "baz")
# split "bar";
- : (string * string) option = Some ("", "bar")
# split "/bar";
- : (string * string) option = Some ("/", "bar")
# split ".";
- : (string * string) option = Some ("", ".")
# split "./";
- : (string * string) option = Some ("", ".")
# split "";
- : (string * string) option = None
# split "/";
- : (string * string) option = None
# split "///";
- : (string * string) option = None
```
# Mkdirs
Recursively creating directories with `mkdirs`.
```ocaml
# run ~clear:["subdir1"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
let nested = cwd / "subdir1" / "subdir2" / "subdir3" in
try_mkdirs nested;
assert (Eio.Path.is_directory nested);
let one_more = Path.(nested / "subdir4") in
try_mkdirs one_more;
try_mkdirs ~exists_ok:true one_more;
try_mkdirs one_more;
assert (Eio.Path.is_directory one_more);
try_mkdirs (cwd / ".." / "outside");
+mkdirs <cwd:subdir1/subdir2/subdir3> -> ok
+mkdirs <cwd:subdir1/subdir2/subdir3/subdir4> -> ok
+mkdirs <cwd:subdir1/subdir2/subdir3/subdir4> -> ok
+Eio.Io Fs Already_exists _, creating directory <cwd:subdir1/subdir2/subdir3/subdir4>
+Eio.Io Fs Permission_denied _, examining <cwd:..>, creating directory <cwd:../outside>
- : unit = ()
```
Some edge cases for `mkdirs`.
```ocaml
# run ~clear:["test"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
try_mkdirs (cwd / ".");
try_mkdirs (cwd / "././");
let lots_of_slashes = "./test//////////////test" in
try_mkdirs (cwd / lots_of_slashes);
assert (Eio.Path.is_directory (cwd / lots_of_slashes));
try_mkdirs (cwd / "..");;
+Eio.Io Fs Already_exists _, creating directory <cwd:.>
+Eio.Io Fs Already_exists _, creating directory <cwd:././>
+mkdirs <cwd:./test//////////////test> -> ok
+Eio.Io Fs Permission_denied _, creating directory <cwd:..>
- : unit = ()
```
# Unlink
You can remove a file using unlink:
```ocaml
# run ~clear:["file"; "subdir/file2"] @@ fun env ->
Switch.run @@ fun sw ->
let cwd = Eio.Stdenv.cwd env in
Path.save ~create:(`Exclusive 0o600) (cwd / "file") "data";
Path.save ~create:(`Exclusive 0o600) (cwd / "subdir/file2") "data2";
try_read_file (cwd / "file");
try_read_file (cwd / "subdir/file2");
assert (Eio.Path.kind ~follow:true (cwd / "file") = `Regular_file);
try_unlink (cwd / "file");
assert (Eio.Path.kind ~follow:true (cwd / "file") = `Not_found);
try_unlink (cwd / "subdir/file2");
try_read_file (cwd / "file");
try_read_file (cwd / "subdir/file2");
try_write_file ~create:(`Exclusive 0o600) (cwd / "subdir/file2") "data2";
try_unlink (cwd / "to-subdir/file2");
try_read_file (cwd / "subdir/file2");;
+read <cwd:file> -> "data"
+read <cwd:subdir/file2> -> "data2"
+unlink <cwd:file> -> ok
+unlink <cwd:subdir/file2> -> ok
+Eio.Io Fs Not_found _, opening <cwd:file>
+Eio.Io Fs Not_found _, opening <cwd:subdir/file2>
+write <cwd:subdir/file2> -> ok
+unlink <cwd:to-subdir/file2> -> ok
+Eio.Io Fs Not_found _, opening <cwd:subdir/file2>
- : unit = ()
```
Removing something that doesn't exist or is out of scope:
```ocaml
# run @@ fun env ->
Switch.run @@ fun sw ->
let cwd = Eio.Stdenv.cwd env in
try_unlink (cwd / "missing");
try_unlink (cwd / "../foo");
try_unlink (cwd / "to-subdir/foo");
try_unlink (cwd / "to-root/foo");;
+Eio.Io Fs Not_found _, removing file <cwd:missing>
+Eio.Io Fs Permission_denied _, removing file <cwd:../foo>
+Eio.Io Fs Not_found _, removing file <cwd:to-subdir/foo>
+Eio.Io Fs Permission_denied _, removing file <cwd:to-root/foo>
- : unit = ()
```
Reads and writes follow symlinks, but unlink operates on the symlink itself:
```ocaml
# run ~clear:["link1"; "linkdir"; "linkroot"; "dir1"; "file2"] @@ fun env ->
Switch.run @@ fun sw ->
let cwd = Eio.Stdenv.cwd env in
let fs = Eio.Stdenv.fs env in
try_mkdir (cwd / "dir1");
let file1 = cwd / "dir1" / "file1" in
let file2 = cwd / "file2" in
try_write_file ~create:(`Exclusive 0o600) file1 "data1";
try_write_file ~create:(`Exclusive 0o400) file2 "data2";
Path.symlink ~link_to:"dir1/file1" (cwd / "link1");
Path.symlink ~link_to:"../file2" (cwd / "dir1/link2");
Path.symlink ~link_to:"dir1" (cwd / "linkdir");
Path.symlink ~link_to:"/" (cwd / "linkroot");
try_read_file file1;
try_read_file (cwd / "link1");
try_read_file (cwd / "linkdir" / "file1");
try_stat file1;
try_stat (cwd / "link1");
try_stat (cwd / "linkdir");
try_stat (cwd / "linkroot");
try_stat (fs / "linkroot");
Fun.protect ~finally:(fun () -> chdir "..") (fun () ->
chdir "dir1";
try_read_file (cwd / "file1");
(* Should remove link itself even though it's poiting outside of cwd *)
Path.unlink (cwd / "link2")
);
try_read_file file2;
Path.unlink (cwd / "link1");
Path.unlink (cwd / "linkdir");
Path.unlink (cwd / "linkroot")
+mkdir <cwd:dir1> -> ok
+write <cwd:dir1/file1> -> ok
+write <cwd:file2> -> ok
+read <cwd:dir1/file1> -> "data1"
+read <cwd:link1> -> "data1"
+read <cwd:linkdir/file1> -> "data1"
+<cwd:dir1/file1> -> regular file
+<cwd:link1> -> symbolic link / regular file
+<cwd:linkdir> -> symbolic link / directory
+<cwd:linkroot> -> symbolic link / Fs Permission_denied _
+<fs:linkroot> -> symbolic link / directory
+chdir "dir1"
+read <cwd:file1> -> "data1"
+chdir ".."
+read <cwd:file2> -> "data2"
- : unit = ()
```
# Rmdir
Similar to `unlink`, but works on directories:
```ocaml
# run ~clear:["d1"; "subdir/d2"; "subdir/d3"] @@ fun env ->
Switch.run @@ fun sw ->
let cwd = Eio.Stdenv.cwd env in
try_mkdir (cwd / "d1");
try_mkdir (cwd / "subdir/d2");
try_read_dir (cwd / "d1");
try_read_dir (cwd / "subdir/d2");
try_rmdir (cwd / "d1");
try_rmdir (cwd / "subdir/d2");
try_read_dir (cwd / "d1");
try_read_dir (cwd / "subdir/d2");
try_mkdir (cwd / "subdir/d3");
try_rmdir (cwd / "to-subdir/d3");
try_read_dir (cwd / "subdir/d3");;
+mkdir <cwd:d1> -> ok
+mkdir <cwd:subdir/d2> -> ok
+read_dir <cwd:d1> -> []
+read_dir <cwd:subdir/d2> -> []
+rmdir <cwd:d1> -> ok
+rmdir <cwd:subdir/d2> -> ok
+Eio.Io Fs Not_found _, reading directory <cwd:d1>
+Eio.Io Fs Not_found _, reading directory <cwd:subdir/d2>
+mkdir <cwd:subdir/d3> -> ok
+rmdir <cwd:to-subdir/d3> -> ok
+Eio.Io Fs Not_found _, reading directory <cwd:subdir/d3>
- : unit = ()
```
Removing something that doesn't exist or is out of scope:
```ocaml
# run @@ fun env ->
Switch.run @@ fun sw ->
let cwd = Eio.Stdenv.cwd env in
try_rmdir (cwd / "missing");
try_rmdir (cwd / "../foo");
try_rmdir (cwd / "to-subdir/foo");
try_rmdir (cwd / "to-root/foo");;
+Eio.Io Fs Not_found _, removing directory <cwd:missing>
+Eio.Io Fs Permission_denied _, removing directory <cwd:../foo>
+Eio.Io Fs Not_found _, removing directory <cwd:to-subdir/foo>
+Eio.Io Fs Permission_denied _, removing directory <cwd:to-root/foo>
- : unit = ()
```
# Recursive removal
```ocaml
# run ~clear:["foo"] @@ fun env ->
Switch.run @@ fun sw ->
let cwd = Eio.Stdenv.cwd env in
let foo = cwd / "foo" in
try_mkdirs (foo / "bar"/ "baz");
try_write_file ~create:(`Exclusive 0o600) (foo / "bar/file1") "data";
try_rmtree foo;
assert (Path.kind ~follow:false foo = `Not_found);
traceln "A second rmtree is OK with missing_ok:";
try_rmtree ~missing_ok:true foo;
traceln "But not without:";
try_rmtree ~missing_ok:false foo;
+mkdirs <cwd:foo/bar/baz> -> ok
+write <cwd:foo/bar/file1> -> ok
+rmtree <cwd:foo> -> ok
+A second rmtree is OK with missing_ok:
+rmtree <cwd:foo> -> ok
+But not without:
+Eio.Io Fs Not_found _, removing file <cwd:foo>
- : unit = ()
```
# Limiting to a subdirectory
Create a sandbox, write a file with it, then read it from outside:
```ocaml
# run ~clear:["sandbox"] @@ fun env ->
Switch.run @@ fun sw ->
let cwd = Eio.Stdenv.cwd env in
try_mkdir (cwd / "sandbox");
let subdir = Path.open_dir ~sw (cwd / "sandbox") in
Path.save ~create:(`Exclusive 0o600) (subdir / "test-file") "data";
try_mkdir (subdir / "../new-sandbox");
traceln "Got %S" @@ Path.load (cwd / "sandbox/test-file");;
+mkdir <cwd:sandbox> -> ok
+Eio.Io Fs Permission_denied _, creating directory <sandbox:../new-sandbox>
+Got "data"
- : unit = ()
```
```ocaml
# run ~clear:["foo"] @@ fun env ->
let fs = env#fs in
let cwd = env#cwd in
Path.mkdirs (cwd / "foo/bar") ~perm:0o700;
let test ?(succeeds=true) path =
Eio.Exn.Backend.show := succeeds;
try
Switch.run @@ fun sw ->
let _ : _ Path.t = Path.open_dir ~sw path in
traceln "open_dir %a -> OK" Path.pp path
with ex ->
traceln "@[<h>%a@]" Eio.Exn.pp ex
in
let reject = test ~succeeds:false in
test (cwd / "foo/bar");
reject (cwd / "..");
test (cwd / ".");
reject (cwd / "/");
test (cwd / "foo/bar/..");
test (fs / "foo/bar");
Path.symlink ~link_to:".." (cwd / "foo/up");
test (cwd / "foo/up/foo/bar");
reject (cwd / "foo/up/../bar");
Path.symlink ~link_to:"/" (cwd / "foo/root");
reject (cwd / "foo/root/..");
reject (cwd / "missing");
+open_dir <cwd:foo/bar> -> OK
+Eio.Io Fs Permission_denied _, opening directory <cwd:..>
+open_dir <cwd:.> -> OK
+Eio.Io Fs Permission_denied _, opening directory <cwd:/>
+open_dir <cwd:foo/bar/..> -> OK
+open_dir <fs:foo/bar> -> OK
+open_dir <cwd:foo/up/foo/bar> -> OK
+Eio.Io Fs Permission_denied _, opening directory <cwd:foo/up/../bar>
+Eio.Io Fs Permission_denied _, opening directory <cwd:foo/root/..>
+Eio.Io Fs Not_found _, opening directory <cwd:missing>
- : unit = ()
# Eio.Exn.Backend.show := false
- : unit = ()
```
# Unconfined FS access
We create a directory and chdir into it.
Using `cwd` we can't access the parent, but using `fs` we can:
```ocaml
# run ~clear:["fs-test"; "outside-cwd"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
let fs = Eio.Stdenv.fs env in
try_mkdir (cwd / "fs-test");
chdir "fs-test";
Fun.protect ~finally:(fun () -> chdir "..") (fun () ->
try_mkdir (cwd / "../outside-cwd");
try_write_file ~create:(`Exclusive 0o600) (cwd / "../test-file") "data";
try_mkdir (fs / "../outside-cwd");
try_write_file ~create:(`Exclusive 0o600) (fs / "../test-file") "data";
);
Unix.unlink "test-file";
Unix.rmdir "outside-cwd";;
+mkdir <cwd:fs-test> -> ok
+chdir "fs-test"
+Eio.Io Fs Permission_denied _, creating directory <cwd:../outside-cwd>
+Eio.Io Fs Permission_denied _, opening <cwd:../test-file>
+mkdir <fs:../outside-cwd> -> ok
+write <fs:../test-file> -> ok
+chdir ".."
- : unit = ()
```
Reading directory entries under `cwd` and outside of `cwd`.
```ocaml
# run ~clear:["readdir"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
try_mkdir (cwd / "readdir");
Path.with_open_dir (cwd / "readdir") @@ fun tmpdir ->
try_mkdir (tmpdir / "test-1");
try_mkdir (tmpdir / "test-2");
try_write_file ~create:(`Exclusive 0o600) (tmpdir / "test-1/file") "data";
try_read_dir tmpdir;
try_read_dir (tmpdir / ".");
try_read_dir (tmpdir / "..");
try_read_dir (tmpdir / "test-3");
Path.symlink ~link_to:"test-1" (cwd / "readdir/link-1");
try_read_dir (tmpdir / "link-1");
+mkdir <cwd:readdir> -> ok
+mkdir <readdir:test-1> -> ok
+mkdir <readdir:test-2> -> ok
+write <readdir:test-1/file> -> ok
+read_dir <readdir> -> ["test-1"; "test-2"]
+read_dir <readdir:.> -> ["test-1"; "test-2"]
+Eio.Io Fs Permission_denied _, reading directory <readdir:..>
+Eio.Io Fs Not_found _, reading directory <readdir:test-3>
+read_dir <readdir:link-1> -> ["file"]
- : unit = ()
```
An error from the underlying directory, not the sandbox:
```ocaml
# run ~clear:["test-no-access"] @@ fun env ->
Unix.mkdir "test-no-access" 0;;
- : unit = ()
# run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
try_read_dir (cwd / "test-no-access");;
+Eio.Io Fs Permission_denied _, reading directory <cwd:test-no-access>
- : unit = ()
# Unix.chmod "test-no-access" 0o700;;
- : unit = ()
```
Can use `fs` to access absolute paths:
```ocaml
# run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
let fs = Eio.Stdenv.fs env in
let b = Buffer.create 10 in
Path.with_open_in (fs / Filename.null) (fun flow -> Eio.Flow.copy flow (Eio.Flow.buffer_sink b));
traceln "Read %S and got %S" Filename.null (Buffer.contents b);
traceln "Trying with cwd instead fails:";
Path.with_open_in (cwd / Filename.null) (fun flow -> Eio.Flow.copy flow (Eio.Flow.buffer_sink b));;;
+Read "/dev/null" and got ""
+Trying with cwd instead fails:
Exception: Eio.Io Fs Permission_denied _,
opening <cwd:/dev/null>
```
Symlinking and sandboxing:
```ocaml
# run ~clear:["hello.txt"; "world.txt"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
Path.save ~create:(`Exclusive 0o600) (cwd / "hello.txt") "Hello World!";
try_symlink ~link_to:"hello.txt" (cwd / "../world.txt");
try_symlink ~link_to:"hello.txt" (cwd / "/world.txt");
try_symlink ~link_to:"hello.txt" (cwd / "world.txt");
traceln "world.txt -> hello.txt: %s" (Path.load (cwd / "world.txt"));
try_symlink ~link_to:"hello.txt" (cwd / "world.txt");
try_symlink ~link_to:"/" (cwd / "root");
try_read_dir (cwd / "root");;
+Eio.Io Fs Permission_denied _, creating symlink <cwd:../world.txt> -> hello.txt
+Eio.Io Fs Permission_denied _, creating symlink <cwd:/world.txt> -> hello.txt
+symlink <cwd:world.txt> -> "hello.txt"
+world.txt -> hello.txt: Hello World!
+Eio.Io Fs Already_exists _, creating symlink <cwd:world.txt> -> hello.txt
+symlink <cwd:root> -> "/"
+Eio.Io Fs Permission_denied _, reading directory <cwd:root>
- : unit = ()
```
## Streamling lines
```ocaml
# run ~clear:["test-data"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
Path.save ~create:(`Exclusive 0o600) (cwd / "test-data") "one\ntwo\nthree";
Path.with_lines (cwd / "test-data") (fun lines ->
Seq.iter (traceln "Line: %s") lines
);;
+Line: one
+Line: two
+Line: three
- : unit = ()
```
# Unix interop
We can get the Unix FD from the flow and use it directly:
```ocaml
# run @@ fun env ->
let fs = Eio.Stdenv.fs env in
Path.with_open_in (fs / Filename.null) (fun flow ->
match Eio_unix.Resource.fd_opt flow with
| None -> failwith "No Unix file descriptor!"
| Some fd ->
Eio_unix.Fd.use_exn "read" fd @@ fun fd ->
let got = Unix.read fd (Bytes.create 10) 0 10 in
traceln "Read %d bytes from null device" got
);;
+Read 0 bytes from null device
- : unit = ()
```
We can also remove it from the flow completely and take ownership of it.
In that case, `with_open_in` will no longer close it on exit:
```ocaml
# run @@ fun env ->
let fs = Eio.Stdenv.fs env in
let fd = Path.with_open_in (fs / Filename.null) (fun flow ->
Option.get (Eio_unix.Fd.remove (Option.get (Eio_unix.Resource.fd_opt flow)))
) in
let got = Unix.read fd (Bytes.create 10) 0 10 in
traceln "Read %d bytes from null device" got;
Unix.close fd;;
+Read 0 bytes from null device
- : unit = ()
```
# Use after close
```ocaml
# run @@ fun env ->
let closed = Switch.run (fun sw -> Path.open_dir ~sw env#cwd) in
try
failwith (Path.read_dir closed |> String.concat ",")
with Invalid_argument _ -> traceln "Got Invalid_argument for closed FD";;
+Got Invalid_argument for closed FD
- : unit = ()
```
# Rename
```ocaml
let try_rename t =
try_mkdir (t / "tmp");
try_rename (t / "tmp") (t / "dir");
try_write_file (t / "foo") "FOO" ~create:(`Exclusive 0o600);
try_rename (t / "foo") (t / "dir/bar");
try_read_file (t / "dir/bar");
Path.with_open_dir (t / "dir") @@ fun dir ->
try_rename (dir / "bar") (t / "foo");
try_read_file (t / "foo");
Unix.chdir "dir";
try_rename (t / "../foo") (t / "foo");
Unix.chdir ".."
```
Confined:
```ocaml
# run ~clear:["tmp"; "dir"; "foo"] @@ fun env -> try_rename env#cwd;;
+mkdir <cwd:tmp> -> ok
+rename <cwd:tmp> to <cwd:dir> -> ok
+write <cwd:foo> -> ok
+rename <cwd:foo> to <cwd:dir/bar> -> ok
+read <cwd:dir/bar> -> "FOO"
+rename <dir:bar> to <cwd:foo> -> ok
+read <cwd:foo> -> "FOO"
+Eio.Io Fs Permission_denied _, renaming <cwd:../foo> to <cwd:foo>
- : unit = ()
```
Unconfined:
```ocaml
# run @@ fun env -> try_rename env#fs;;
+mkdir <fs:tmp> -> ok
+rename <fs:tmp> to <fs:dir> -> ok
+Eio.Io Fs Already_exists _, opening <fs:foo>
+rename <fs:foo> to <fs:dir/bar> -> ok
+read <fs:dir/bar> -> "FOO"
+rename <dir:bar> to <fs:foo> -> ok
+read <fs:foo> -> "FOO"
+rename <fs:../foo> to <fs:foo> -> ok
- : unit = ()
```
# Stat
```ocaml
# run ~clear:["stat_subdir"; "stat_reg"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
Switch.run @@ fun sw ->
try_mkdir (cwd / "stat_subdir");
assert (Eio.Path.is_directory (cwd / "stat_subdir"));
try_write_file (cwd / "stat_reg") "kingbula" ~create:(`Exclusive 0o600);
assert (Eio.Path.is_file (cwd / "stat_reg"));
+mkdir <cwd:stat_subdir> -> ok
+write <cwd:stat_reg> -> ok
- : unit = ()
```
# Fstatat:
```ocaml
# run ~clear:["stat_subdir2"; "symlink"; "broken-symlink"; "parent-symlink"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
Switch.run @@ fun sw ->
try_mkdir (cwd / "stat_subdir2");
Path.symlink ~link_to:"stat_subdir2" (cwd / "symlink");
Path.symlink ~link_to:"missing" (cwd / "broken-symlink");
try_stat (cwd / "stat_subdir2");
try_stat (cwd / "symlink");
try_stat (cwd / "broken-symlink");
try_stat cwd;
try_stat (cwd / "..");
try_stat (cwd / "stat_subdir2/..");
Path.symlink ~link_to:".." (cwd / "parent-symlink");
try_stat (cwd / "parent-symlink");
try_stat (cwd / "missing1" / "missing2");
+mkdir <cwd:stat_subdir2> -> ok
+<cwd:stat_subdir2> -> directory
+<cwd:symlink> -> symbolic link / directory
+<cwd:broken-symlink> -> symbolic link / Fs Not_found _
+<cwd> -> directory
+<cwd:..> -> Fs Permission_denied _
+<cwd:stat_subdir2/..> -> directory
+<cwd:parent-symlink> -> symbolic link / Fs Permission_denied _
+<cwd:missing1/missing2> -> Fs Not_found _
- : unit = ()
```
# read_link
```ocaml
# run ~clear:["file"; "symlink"] @@ fun env ->
let fs = Eio.Stdenv.fs env in
let cwd = Eio.Stdenv.cwd env in
Switch.run @@ fun sw ->
Path.symlink ~link_to:"file" (cwd / "symlink");
try_read_link (cwd / "symlink");
try_read_link (fs / "symlink");
try_write_file (cwd / "file") "data" ~create:(`Exclusive 0o600);
try_read_link (cwd / "file");
try_read_link (cwd / "../unknown");
+read_link <cwd:symlink> -> "file"
+read_link <fs:symlink> -> "file"
+write <cwd:file> -> ok
+Eio.Io _, reading target of symlink <cwd:file>
+Eio.Io Fs Permission_denied _, reading target of symlink <cwd:../unknown>
- : unit = ()
```
# pread/pwrite
Check reading and writing vectors at arbitrary offsets:
```ocaml
# run ~clear:["test.txt"] @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
let path = cwd / "test.txt" in
Path.with_open_out path ~create:(`Exclusive 0o600) @@ fun file ->
Eio.Flow.copy_string "+-!" file;
Eio.File.pwrite_all file ~file_offset:(Int63.of_int 2) Cstruct.[of_string "abc"; of_string "123"];
let buf1 = Cstruct.create 3 in
let buf2 = Cstruct.create 4 in
Eio.File.pread_exact file ~file_offset:(Int63.of_int 1) [buf1; buf2];
traceln" %S/%S" (Cstruct.to_string buf1) (Cstruct.to_string buf2);;
+ "-ab"/"c123"
- : unit = ()
```
Reading at the end of a file:
```ocaml
# run @@ fun env ->
let cwd = Eio.Stdenv.cwd env in
let path = cwd / "test.txt" in
Path.with_open_out path ~create:(`Or_truncate 0o600) @@ fun file ->
Eio.Flow.copy_string "abc" file;
let buf = Cstruct.create 10 in
let got = Eio.File.pread file [buf] ~file_offset:(Int63.of_int 0) in
traceln "Read %S" (Cstruct.to_string buf ~len:got);
try
ignore (Eio.File.pread file [buf] ~file_offset:(Int63.of_int 3) : int);
assert false
with End_of_file ->
traceln "End-of-file";;
+Read "abc"
+End-of-file
- : unit = ()
```
# Cancelling while readable
Ensure reads can be cancelled promptly, even if there is no need to wait:
```ocaml
# run @@ fun env ->
Eio.Path.with_open_out (env#fs / "/dev/zero") ~create:`Never @@ fun null ->
Fiber.both
(fun () ->
let buf = Cstruct.create 4 in
for _ = 1 to 10 do Eio.Flow.read_exact null buf done;
assert false)
(fun () -> failwith "Simulated error");;
Exception: Failure "Simulated error".
```
# Native paths
```ocaml
# run ~clear:["native-sub"] @@ fun env ->
let cwd = Sys.getcwd () ^ "/" in
let test x =
let native = Eio.Path.native x in
let result =
native |> Option.map @@ fun native ->
if String.starts_with ~prefix:cwd native then
"./" ^ String.sub native (String.length cwd) (String.length native - String.length cwd)
else native
in
traceln "%a -> %a" Eio.Path.pp x Fmt.(Dump.option string) result
in
test env#fs;
test (env#fs / "/");
test (env#fs / "/etc/hosts");
test (env#fs / ".");
test (env#fs / "foo/bar");
test env#cwd;
test (env#cwd / "..");
let sub = env#cwd / "native-sub" in
Eio.Path.mkdir sub ~perm:0o700;
Eio.Path.with_open_dir sub @@ fun sub ->
test sub;
test (sub / "foo.txt");
test (sub / ".");
test (sub / "..");
test (sub / "/etc/passwd");
+<fs> -> Some .
+<fs:/> -> Some /
+<fs:/etc/hosts> -> Some /etc/hosts
+<fs:.> -> Some .
+<fs:foo/bar> -> Some ./foo/bar
+<cwd> -> Some .
+<cwd:..> -> Some ./..
+<native-sub> -> Some ./native-sub/
+<native-sub:foo.txt> -> Some ./native-sub/foo.txt
+<native-sub:.> -> Some ./native-sub/.
+<native-sub:..> -> Some ./native-sub/..
+<native-sub:/etc/passwd> -> Some /etc/passwd
- : unit = ()
```
# Seek, truncate and sync
```ocaml
# run @@ fun env ->
Eio.Path.with_open_out (env#cwd / "seek-test") ~create:(`If_missing 0o700) @@ fun file ->
Eio.File.truncate file (Int63.of_int 10);
assert ((Eio.File.stat file).size = (Int63.of_int 10));
let pos = Eio.File.seek file (Int63.of_int 3) `Set in
traceln "seek from start: %a" Int63.pp pos;
let pos = Eio.File.seek file (Int63.of_int 2) `Cur in
traceln "relative seek: %a" Int63.pp pos;
let pos = Eio.File.seek file (Int63.of_int (-1)) `End in
traceln "seek from end: %a" Int63.pp pos;
Eio.File.sync file; (* (no way to check if this actually worked, but ensure it runs) *)
+seek from start: 3
+relative seek: 5
+seek from end: 9
- : unit = ()
```
# Extending paths
```ocaml
# run @@ fun env ->
let base = fst env#cwd in
List.iter (fun (a, b) -> traceln "%S / %S = %S" a b (snd ((base, a) / b))) [
"foo", "bar";
"foo/", "bar";
"foo", "/bar";
"foo", "";
"foo/", "";
"", "";
"", "bar";
"/", "";
]
+"foo" / "bar" = "foo/bar"
+"foo/" / "bar" = "foo/bar"
+"foo" / "/bar" = "/bar"
+"foo" / "" = "foo/"
+"foo/" / "" = "foo/"
+"" / "" = ""
+"" / "bar" = "bar"
+"/" / "" = "/"
- : unit = ()
```
|