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
|
// Copyright 2018 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package p9
import (
"errors"
"fmt"
"io"
"path"
"strings"
"sync"
"sync/atomic"
"github.com/hugelgupf/p9/linux"
)
// newErr returns a new error message from an error.
func newErr(err error) *rlerror {
return &rlerror{Error: uint32(linux.ExtractErrno(err))}
}
// handler is implemented for server-handled messages.
//
// See server.go for call information.
type handler interface {
// Handle handles the given message.
//
// This may modify the server state. The handle function must return a
// message which will be sent back to the client. It may be useful to
// use newErr to automatically extract an error message.
handle(cs *connState) message
}
// handle implements handler.handle.
func (t *tversion) handle(cs *connState) message {
// "If the server does not understand the client's version string, it
// should respond with an Rversion message (not Rerror) with the
// version string the 7 characters "unknown"".
//
// - 9P2000 spec.
//
// Makes sense, since there are two different kinds of errors depending on the version.
unknown := &rversion{
MSize: 0,
Version: "unknown",
}
if t.MSize == 0 {
return unknown
}
msize := t.MSize
if t.MSize > maximumLength {
msize = maximumLength
}
reqBaseVersion, reqVersion, ok := parseVersion(t.Version)
if !ok {
return unknown
}
var baseVersion baseVersion
var version uint32
switch reqBaseVersion {
case version9P2000, version9P2000U:
return unknown
case version9P2000L:
baseVersion = reqBaseVersion
// The server cannot support newer versions that it doesn't know about. In this
// case we return EAGAIN to tell the client to try again with a lower version.
if reqVersion > highestSupportedVersion {
version = highestSupportedVersion
} else {
version = reqVersion
}
}
// From Tversion(9P): "The server may respond with the client’s version
// string, or a version string identifying an earlier defined protocol version".
atomic.StoreUint32(&cs.messageSize, msize)
atomic.StoreUint32(&cs.version, version)
// This is not thread-safe. We're changing this into sessions anyway,
// so who cares.
cs.baseVersion = baseVersion
// Initial a pool with msize-shaped buffers.
cs.readBufPool = sync.Pool{
New: func() interface{} {
// These buffers are used for decoding without a payload.
// We need to return a pointer to avoid unnecessary allocations
// (see https://staticcheck.io/docs/checks#SA6002).
b := make([]byte, msize)
return &b
},
}
// Buffer of zeros.
cs.pristineZeros = make([]byte, msize)
return &rversion{
MSize: msize,
Version: versionString(baseVersion, version),
}
}
// handle implements handler.handle.
func (t *tflush) handle(cs *connState) message {
cs.WaitTag(t.OldTag)
return &rflush{}
}
// checkSafeName validates the name and returns nil or returns an error.
func checkSafeName(name string) error {
if name != "" && !strings.Contains(name, "/") && name != "." && name != ".." {
return nil
}
return linux.EINVAL
}
func clunkHandleXattr(cs *connState, t *tclunk) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
if err := ref.safelyRead(func() error {
if ref.pendingXattr.op == xattrCreate {
if len(ref.pendingXattr.buf) != int(ref.pendingXattr.size) {
return linux.EINVAL
}
if ref.pendingXattr.flags == XattrReplace && ref.pendingXattr.size == 0 {
return ref.file.RemoveXattr(ref.pendingXattr.name)
}
return ref.file.SetXattr(ref.pendingXattr.name, ref.pendingXattr.buf, ref.pendingXattr.flags)
}
return nil
}); err != nil {
return newErr(err)
}
return nil
}
// handle implements handler.handle.
func (t *tclunk) handle(cs *connState) message {
cerr := clunkHandleXattr(cs, t)
if err := cs.DeleteFID(t.fid); err != nil {
return newErr(err)
}
if cerr != nil {
return cerr
}
return &rclunk{}
}
// handle implements handler.handle.
func (t *tremove) handle(cs *connState) message {
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
// Frustratingly, because we can't be guaranteed that a rename is not
// occurring simultaneously with this removal, we need to acquire the
// global rename lock for this kind of remove operation to ensure that
// ref.parent does not change out from underneath us.
//
// This is why Tremove is a bad idea, and clients should generally use
// Tunlinkat. All p9 clients will use Tunlinkat.
err := ref.safelyGlobal(func() error {
// Is this a root? Can't remove that.
if ref.isRoot() {
return linux.EINVAL
}
// N.B. this remove operation is permitted, even if the file is open.
// See also rename below for reasoning.
// Is this file already deleted?
if ref.isDeleted() {
return linux.EINVAL
}
// Retrieve the file's proper name.
name := ref.parent.pathNode.nameFor(ref)
// Attempt the removal.
if err := ref.parent.file.UnlinkAt(name, 0); err != nil {
return err
}
// Mark all relevant fids as deleted. We don't need to lock any
// individual nodes because we already hold the global lock.
ref.parent.markChildDeleted(name)
return nil
})
// "The remove request asks the file server both to remove the file
// represented by fid and to clunk the fid, even if the remove fails."
//
// "It is correct to consider remove to be a clunk with the side effect
// of removing the file if permissions allow."
// https://swtch.com/plan9port/man/man9/remove.html
if fidErr := cs.DeleteFID(t.fid); fidErr != nil {
return newErr(fidErr)
}
if err != nil {
return newErr(err)
}
return &rremove{}
}
// handle implements handler.handle.
//
// We don't support authentication, so this just returns ENOSYS.
func (t *tauth) handle(cs *connState) message {
return newErr(linux.ENOSYS)
}
// handle implements handler.handle.
func (t *tattach) handle(cs *connState) message {
// Ensure no authentication fid is provided.
if t.Auth.Authenticationfid != noFID {
return newErr(linux.EINVAL)
}
// Must provide an absolute path.
if path.IsAbs(t.Auth.AttachName) {
// Trim off the leading / if the path is absolute. We always
// treat attach paths as absolute and call attach with the root
// argument on the server file for clarity.
t.Auth.AttachName = t.Auth.AttachName[1:]
}
// Do the attach on the root.
sf, err := cs.server.attacher.Attach()
if err != nil {
return newErr(err)
}
qid, valid, attr, err := sf.GetAttr(AttrMaskAll)
if err != nil {
sf.Close() // Drop file.
return newErr(err)
}
if !valid.Mode {
sf.Close() // Drop file.
return newErr(linux.EINVAL)
}
// Build a transient reference.
root := &fidRef{
server: cs.server,
parent: nil,
file: sf,
refs: 1,
mode: attr.Mode.FileType(),
pathNode: cs.server.pathTree,
}
defer root.DecRef()
// Attach the root?
if len(t.Auth.AttachName) == 0 {
cs.InsertFID(t.fid, root)
return &rattach{QID: qid}
}
// We want the same traversal checks to apply on attach, so always
// attach at the root and use the regular walk paths.
names := strings.Split(t.Auth.AttachName, "/")
_, newRef, _, _, err := doWalk(cs, root, names, false)
if err != nil {
return newErr(err)
}
defer newRef.DecRef()
// Insert the fid.
cs.InsertFID(t.fid, newRef)
return &rattach{QID: qid}
}
// CanOpen returns whether this file open can be opened, read and written to.
//
// This includes everything except symlinks and sockets.
func CanOpen(mode FileMode) bool {
return mode.IsRegular() || mode.IsDir() || mode.IsNamedPipe() || mode.IsBlockDevice() || mode.IsCharacterDevice()
}
// handle implements handler.handle.
func (t *tlopen) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
var (
qid QID
ioUnit uint32
)
if err := ref.safelyRead(func() (err error) {
// Has it been deleted already?
if ref.isDeleted() {
return linux.EINVAL
}
// Has it been opened already?
if ref.opened || !CanOpen(ref.mode) {
return linux.EINVAL
}
// Is this an attempt to open a directory as writable? Don't accept.
if ref.mode.IsDir() && t.Flags.Mode() != ReadOnly {
return linux.EISDIR
}
// Do the open.
qid, ioUnit, err = ref.file.Open(t.Flags)
return err
}); err != nil {
return newErr(err)
}
// Mark file as opened and set open mode.
ref.opened = true
ref.openFlags = t.Flags
return &rlopen{QID: qid, IoUnit: ioUnit}
}
func (t *tlcreate) do(cs *connState, uid UID) (*rlcreate, error) {
// Don't allow complex names.
if err := checkSafeName(t.Name); err != nil {
return nil, err
}
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return nil, linux.EBADF
}
defer ref.DecRef()
var (
nsf File
qid QID
ioUnit uint32
newRef *fidRef
)
if err := ref.safelyWrite(func() (err error) {
// Don't allow creation from non-directories or deleted directories.
if ref.isDeleted() || !ref.mode.IsDir() {
return linux.EINVAL
}
// Not allowed on open directories.
if ref.opened {
return linux.EINVAL
}
// Do the create.
nsf, qid, ioUnit, err = ref.file.Create(t.Name, t.OpenFlags, t.Permissions, uid, t.GID)
if err != nil {
return err
}
newRef = &fidRef{
server: cs.server,
parent: ref,
file: nsf,
opened: true,
openFlags: t.OpenFlags,
mode: ModeRegular,
pathNode: ref.pathNode.pathNodeFor(t.Name),
}
ref.pathNode.addChild(newRef, t.Name)
ref.IncRef() // Acquire parent reference.
return nil
}); err != nil {
return nil, err
}
// Replace the fid reference.
cs.InsertFID(t.fid, newRef)
return &rlcreate{rlopen: rlopen{QID: qid, IoUnit: ioUnit}}, nil
}
// handle implements handler.handle.
func (t *tlcreate) handle(cs *connState) message {
rlcreate, err := t.do(cs, NoUID)
if err != nil {
return newErr(err)
}
return rlcreate
}
// handle implements handler.handle.
func (t *tsymlink) handle(cs *connState) message {
rsymlink, err := t.do(cs, NoUID)
if err != nil {
return newErr(err)
}
return rsymlink
}
func (t *tsymlink) do(cs *connState, uid UID) (*rsymlink, error) {
// Don't allow complex names.
if err := checkSafeName(t.Name); err != nil {
return nil, err
}
// Lookup the fid.
ref, ok := cs.LookupFID(t.Directory)
if !ok {
return nil, linux.EBADF
}
defer ref.DecRef()
var qid QID
if err := ref.safelyWrite(func() (err error) {
// Don't allow symlinks from non-directories or deleted directories.
if ref.isDeleted() || !ref.mode.IsDir() {
return linux.EINVAL
}
// Not allowed on open directories.
if ref.opened {
return linux.EINVAL
}
// Do the symlink.
qid, err = ref.file.Symlink(t.Target, t.Name, uid, t.GID)
return err
}); err != nil {
return nil, err
}
return &rsymlink{QID: qid}, nil
}
// handle implements handler.handle.
func (t *tlink) handle(cs *connState) message {
// Don't allow complex names.
if err := checkSafeName(t.Name); err != nil {
return newErr(err)
}
// Lookup the fid.
ref, ok := cs.LookupFID(t.Directory)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
// Lookup the other fid.
refTarget, ok := cs.LookupFID(t.Target)
if !ok {
return newErr(linux.EBADF)
}
defer refTarget.DecRef()
if err := ref.safelyWrite(func() (err error) {
// Don't allow create links from non-directories or deleted directories.
if ref.isDeleted() || !ref.mode.IsDir() {
return linux.EINVAL
}
// Not allowed on open directories.
if ref.opened {
return linux.EINVAL
}
// Do the link.
return ref.file.Link(refTarget.file, t.Name)
}); err != nil {
return newErr(err)
}
return &rlink{}
}
// handle implements handler.handle.
func (t *trenameat) handle(cs *connState) message {
// Don't allow complex names.
if err := checkSafeName(t.OldName); err != nil {
return newErr(err)
}
if err := checkSafeName(t.NewName); err != nil {
return newErr(err)
}
// Lookup the fid.
ref, ok := cs.LookupFID(t.OldDirectory)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
// Lookup the other fid.
refTarget, ok := cs.LookupFID(t.NewDirectory)
if !ok {
return newErr(linux.EBADF)
}
defer refTarget.DecRef()
// Perform the rename holding the global lock.
if err := ref.safelyGlobal(func() (err error) {
// Don't allow renaming across deleted directories.
if ref.isDeleted() || !ref.mode.IsDir() || refTarget.isDeleted() || !refTarget.mode.IsDir() {
return linux.EINVAL
}
// Not allowed on open directories.
if ref.opened {
return linux.EINVAL
}
// Is this the same file? If yes, short-circuit and return success.
if ref.pathNode == refTarget.pathNode && t.OldName == t.NewName {
return nil
}
// Attempt the actual rename.
if err := ref.file.RenameAt(t.OldName, refTarget.file, t.NewName); err != nil {
return err
}
// Update the path tree.
ref.renameChildTo(t.OldName, refTarget, t.NewName)
return nil
}); err != nil {
return newErr(err)
}
return &rrenameat{}
}
// handle implements handler.handle.
func (t *tunlinkat) handle(cs *connState) message {
// Don't allow complex names.
if err := checkSafeName(t.Name); err != nil {
return newErr(err)
}
// Lookup the fid.
ref, ok := cs.LookupFID(t.Directory)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
if err := ref.safelyWrite(func() (err error) {
// Don't allow deletion from non-directories or deleted directories.
if ref.isDeleted() || !ref.mode.IsDir() {
return linux.EINVAL
}
// Not allowed on open directories.
if ref.opened {
return linux.EINVAL
}
// Before we do the unlink itself, we need to ensure that there
// are no operations in flight on associated path node. The
// child's path node lock must be held to ensure that the
// unlinkat marking the child deleted below is atomic with
// respect to any other read or write operations.
//
// This is one case where we have a lock ordering issue, but
// since we always acquire deeper in the hierarchy, we know
// that we are free of lock cycles.
childPathNode := ref.pathNode.pathNodeFor(t.Name)
childPathNode.opMu.Lock()
defer childPathNode.opMu.Unlock()
// Do the unlink.
err = ref.file.UnlinkAt(t.Name, t.Flags)
if err != nil {
return err
}
// Mark the path as deleted.
ref.markChildDeleted(t.Name)
return nil
}); err != nil {
return newErr(err)
}
return &runlinkat{}
}
// handle implements handler.handle.
func (t *trename) handle(cs *connState) message {
// Don't allow complex names.
if err := checkSafeName(t.Name); err != nil {
return newErr(err)
}
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
// Lookup the target.
refTarget, ok := cs.LookupFID(t.Directory)
if !ok {
return newErr(linux.EBADF)
}
defer refTarget.DecRef()
if err := ref.safelyGlobal(func() (err error) {
// Don't allow a root rename.
if ref.isRoot() {
return linux.EINVAL
}
// Don't allow renaming deleting entries, or target non-directories.
if ref.isDeleted() || refTarget.isDeleted() || !refTarget.mode.IsDir() {
return linux.EINVAL
}
// If the parent is deleted, but we not, something is seriously wrong.
// It's fail to die at this point with an assertion failure.
if ref.parent.isDeleted() {
panic(fmt.Sprintf("parent %+v deleted, child %+v is not", ref.parent, ref))
}
// N.B. The rename operation is allowed to proceed on open files. It
// does impact the state of its parent, but this is merely a sanity
// check in any case, and the operation is safe. There may be other
// files corresponding to the same path that are renamed anyways.
// Check for the exact same file and short-circuit.
oldName := ref.parent.pathNode.nameFor(ref)
if ref.parent.pathNode == refTarget.pathNode && oldName == t.Name {
return nil
}
// Call the rename method on the parent.
if err := ref.parent.file.RenameAt(oldName, refTarget.file, t.Name); err != nil {
return err
}
// Update the path tree.
ref.parent.renameChildTo(oldName, refTarget, t.Name)
return nil
}); err != nil {
return newErr(err)
}
return &rrename{}
}
// handle implements handler.handle.
func (t *treadlink) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
var target string
if err := ref.safelyRead(func() (err error) {
// Don't allow readlink on deleted files. There is no need to
// check if this file is opened because symlinks cannot be
// opened.
if ref.isDeleted() || !ref.mode.IsSymlink() {
return linux.EINVAL
}
// Do the read.
target, err = ref.file.Readlink()
return err
}); err != nil {
return newErr(err)
}
return &rreadlink{target}
}
// handle implements handler.handle.
func (t *tread) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
// Constrain the size of the read buffer.
if int(t.Count) > int(maximumLength) {
return newErr(linux.ENOBUFS)
}
var n int
data := cs.readBufPool.Get().(*[]byte)
// Retain a reference to the full length of the buffer.
dataBuf := (*data)
if err := ref.safelyRead(func() (err error) {
switch ref.pendingXattr.op {
case xattrNone:
// Has it been opened already?
if !ref.opened {
return linux.EINVAL
}
// Can it be read? Check permissions.
if ref.openFlags&OpenFlagsModeMask == WriteOnly {
return linux.EPERM
}
n, err = ref.file.ReadAt(dataBuf[:t.Count], int64(t.Offset))
return err
case xattrWalk:
// Make sure we do not pass an empty buffer to GetXattr or ListXattrs.
// Both of them will return the required buffer length if
// the input buffer has length 0.
// tread means the caller already knows the required buffer length
// and wants to get the attribute value.
if t.Count == 0 {
if ref.pendingXattr.size == 0 {
// the provided buffer has length 0 and
// the attribute value is also empty.
return nil
}
// buffer too small.
return linux.EINVAL
}
if t.Offset+uint64(t.Count) > uint64(len(ref.pendingXattr.buf)) {
return linux.EINVAL
}
n = copy(dataBuf[:t.Count], ref.pendingXattr.buf[t.Offset:])
return nil
default:
return linux.EINVAL
}
}); err != nil && !errors.Is(err, io.EOF) {
return newErr(err)
}
return &rreadServerPayloader{
rread: rread{
Data: dataBuf[:n],
},
cs: cs,
fullBuffer: dataBuf,
}
}
// handle implements handler.handle.
func (t *twrite) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
var n int
if err := ref.safelyRead(func() (err error) {
switch ref.pendingXattr.op {
case xattrNone:
// Has it been opened already?
if !ref.opened {
return linux.EINVAL
}
// Can it be written? Check permissions.
if ref.openFlags&OpenFlagsModeMask == ReadOnly {
return linux.EPERM
}
n, err = ref.file.WriteAt(t.Data, int64(t.Offset))
case xattrCreate:
if uint64(len(ref.pendingXattr.buf)) != t.Offset {
return linux.EINVAL
}
if t.Offset+uint64(len(t.Data)) > ref.pendingXattr.size {
return linux.EINVAL
}
ref.pendingXattr.buf = append(ref.pendingXattr.buf, t.Data...)
n = len(t.Data)
default:
return linux.EINVAL
}
return err
}); err != nil {
return newErr(err)
}
return &rwrite{Count: uint32(n)}
}
// handle implements handler.handle.
func (t *tmknod) handle(cs *connState) message {
rmknod, err := t.do(cs, NoUID)
if err != nil {
return newErr(err)
}
return rmknod
}
func (t *tmknod) do(cs *connState, uid UID) (*rmknod, error) {
// Don't allow complex names.
if err := checkSafeName(t.Name); err != nil {
return nil, err
}
// Lookup the fid.
ref, ok := cs.LookupFID(t.Directory)
if !ok {
return nil, linux.EBADF
}
defer ref.DecRef()
var qid QID
if err := ref.safelyWrite(func() (err error) {
// Don't allow mknod on deleted files.
if ref.isDeleted() || !ref.mode.IsDir() {
return linux.EINVAL
}
// Not allowed on open directories.
if ref.opened {
return linux.EINVAL
}
// Do the mknod.
qid, err = ref.file.Mknod(t.Name, t.Mode, t.Major, t.Minor, uid, t.GID)
return err
}); err != nil {
return nil, err
}
return &rmknod{QID: qid}, nil
}
// handle implements handler.handle.
func (t *tmkdir) handle(cs *connState) message {
rmkdir, err := t.do(cs, NoUID)
if err != nil {
return newErr(err)
}
return rmkdir
}
func (t *tmkdir) do(cs *connState, uid UID) (*rmkdir, error) {
// Don't allow complex names.
if err := checkSafeName(t.Name); err != nil {
return nil, err
}
// Lookup the fid.
ref, ok := cs.LookupFID(t.Directory)
if !ok {
return nil, linux.EBADF
}
defer ref.DecRef()
var qid QID
if err := ref.safelyWrite(func() (err error) {
// Don't allow mkdir on deleted files.
if ref.isDeleted() || !ref.mode.IsDir() {
return linux.EINVAL
}
// Not allowed on open directories.
if ref.opened {
return linux.EINVAL
}
// Do the mkdir.
qid, err = ref.file.Mkdir(t.Name, t.Permissions, uid, t.GID)
return err
}); err != nil {
return nil, err
}
return &rmkdir{QID: qid}, nil
}
// handle implements handler.handle.
func (t *tgetattr) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
// We allow getattr on deleted files. Depending on the backing
// implementation, it's possible that races exist that might allow
// fetching attributes of other files. But we need to generally allow
// refreshing attributes and this is a minor leak, if at all.
var (
qid QID
valid AttrMask
attr Attr
)
if err := ref.safelyRead(func() (err error) {
qid, valid, attr, err = ref.file.GetAttr(t.AttrMask)
return err
}); err != nil {
return newErr(err)
}
return &rgetattr{QID: qid, Valid: valid, Attr: attr}
}
// handle implements handler.handle.
func (t *tsetattr) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
if err := ref.safelyWrite(func() error {
// We don't allow setattr on files that have been deleted.
// This might be technically incorrect, as it's possible that
// there were multiple links and you can still change the
// corresponding inode information.
if ref.isDeleted() {
return linux.EINVAL
}
// Set the attributes.
return ref.file.SetAttr(t.Valid, t.SetAttr)
}); err != nil {
return newErr(err)
}
return &rsetattr{}
}
// handle implements handler.handle.
func (t *txattrwalk) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
size := 0
if err := ref.safelyRead(func() error {
if ref.isDeleted() {
return linux.EINVAL
}
var buf []byte
var err error
if len(t.Name) > 0 {
buf, err = ref.file.GetXattr(t.Name)
} else {
var xattrs []string
xattrs, err = ref.file.ListXattrs()
if err == nil {
buf = []byte(strings.Join(xattrs, "\000") + "\000")
}
}
if err != nil || uint32(len(buf)) > maximumLength {
return linux.EINVAL
}
size = len(buf)
newRef := &fidRef{
server: cs.server,
file: ref.file,
pendingXattr: pendingXattr{
op: xattrWalk,
name: t.Name,
size: uint64(size),
buf: buf,
},
pathNode: ref.pathNode,
parent: ref.parent,
}
cs.InsertFID(t.newFID, newRef)
return nil
}); err != nil {
return newErr(err)
}
return &rxattrwalk{Size: uint64(size)}
}
// handle implements handler.handle.
func (t *txattrcreate) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
if err := ref.safelyWrite(func() error {
if ref.isDeleted() {
return linux.EINVAL
}
ref.pendingXattr = pendingXattr{
op: xattrCreate,
name: t.Name,
size: t.AttrSize,
flags: XattrFlags(t.Flags),
}
return nil
}); err != nil {
return newErr(err)
}
return &rxattrcreate{}
}
// handle implements handler.handle.
func (t *treaddir) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.Directory)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
var entries []Dirent
if err := ref.safelyRead(func() (err error) {
// Don't allow reading deleted directories.
if ref.isDeleted() || !ref.mode.IsDir() {
return linux.EINVAL
}
// Has it been opened already?
if !ref.opened {
return linux.EINVAL
}
// Read the entries.
entries, err = ref.file.Readdir(t.Offset, t.Count)
if err != nil && !errors.Is(err, io.EOF) {
return err
}
return nil
}); err != nil {
return newErr(err)
}
return &rreaddir{Count: t.Count, Entries: entries}
}
// handle implements handler.handle.
func (t *tfsync) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
if err := ref.safelyRead(func() (err error) {
// Has it been opened already?
if !ref.opened {
return linux.EINVAL
}
// Perform the sync.
return ref.file.FSync()
}); err != nil {
return newErr(err)
}
return &rfsync{}
}
// handle implements handler.handle.
func (t *tstatfs) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
st, err := ref.file.StatFS()
if err != nil {
return newErr(err)
}
return &rstatfs{st}
}
// handle implements handler.handle.
func (t *tlock) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
status, err := ref.file.Lock(int(t.PID), t.Type, t.Flags, t.Start, t.Length, t.Client)
if err != nil {
return newErr(err)
}
return &rlock{Status: status}
}
// walkOne walks zero or one path elements.
//
// The slice passed as qids is append and returned.
func walkOne(qids []QID, from File, names []string, getattr bool) ([]QID, File, AttrMask, Attr, error) {
nwname := len(names)
if nwname > 1 {
// We require exactly zero or one elements.
return nil, nil, AttrMask{}, Attr{}, linux.EINVAL
}
var (
localQIDs []QID
sf File
valid AttrMask
attr Attr
err error
)
switch {
case getattr:
localQIDs, sf, valid, attr, err = from.WalkGetAttr(names)
// Can't put fallthrough in the if because Go.
if !errors.Is(err, linux.ENOSYS) {
break
}
fallthrough
default:
localQIDs, sf, err = from.Walk(names)
if err != nil {
// No way to walk this element.
break
}
if getattr {
_, valid, attr, err = sf.GetAttr(AttrMaskAll)
if err != nil {
// Don't leak the file.
sf.Close()
}
}
}
if err != nil {
// Error walking, don't return anything.
return nil, nil, AttrMask{}, Attr{}, err
}
if nwname == 1 && len(localQIDs) != 1 {
// Expected a single QID.
sf.Close()
return nil, nil, AttrMask{}, Attr{}, linux.EINVAL
}
return append(qids, localQIDs...), sf, valid, attr, nil
}
// doWalk walks from a given fidRef.
//
// This enforces that all intermediate nodes are walkable (directories). The
// fidRef returned (newRef) has a reference associated with it that is now
// owned by the caller and must be handled appropriately.
func doWalk(cs *connState, ref *fidRef, names []string, getattr bool) (qids []QID, newRef *fidRef, valid AttrMask, attr Attr, err error) {
// Check the names.
for _, name := range names {
err = checkSafeName(name)
if err != nil {
return
}
}
// validate anything since this is always permitted.
if len(names) == 0 {
var sf File // Temporary.
if err := ref.maybeParent().safelyRead(func() (err error) {
// Clone the single element.
qids, sf, valid, attr, err = walkOne(nil, ref.file, nil, getattr)
if err != nil {
return err
}
newRef = &fidRef{
server: cs.server,
parent: ref.parent,
file: sf,
mode: ref.mode,
pathNode: ref.pathNode,
}
if !ref.isRoot() {
if !newRef.isDeleted() {
// Add only if a non-root node; the same node.
ref.parent.pathNode.addChild(newRef, ref.parent.pathNode.nameFor(ref))
}
ref.parent.IncRef() // Acquire parent reference.
}
// doWalk returns a reference.
newRef.IncRef()
return nil
}); err != nil {
return nil, nil, AttrMask{}, Attr{}, err
}
// Do not return the new QID.
// walk(5) "nwqid will always be less than or equal to nwname"
return nil, newRef, valid, attr, nil
}
// Do the walk, one element at a time.
walkRef := ref
walkRef.IncRef()
for i := 0; i < len(names); i++ {
// We won't allow beyond past symlinks; stop here if this isn't
// a proper directory and we have additional paths to walk.
if !walkRef.mode.IsDir() {
walkRef.DecRef() // Drop walk reference; no lock required.
return nil, nil, AttrMask{}, Attr{}, linux.EINVAL
}
var sf File // Temporary.
if err := walkRef.safelyRead(func() (err error) {
// It is not safe to walk on a deleted directory. It
// could have been replaced with a malicious symlink.
if walkRef.isDeleted() {
// Fail this operation as the result will not
// be meaningful if walkRef is deleted.
return linux.ENOENT
}
// Pass getattr = true to walkOne since we need the file type for
// newRef.
qids, sf, valid, attr, err = walkOne(qids, walkRef.file, names[i:i+1], true)
if err != nil {
return err
}
// Note that we don't need to acquire a lock on any of
// these individual instances. That's because they are
// not actually addressable via a fid. They are
// anonymous. They exist in the tree for tracking
// purposes.
newRef := &fidRef{
server: cs.server,
parent: walkRef,
file: sf,
mode: attr.Mode.FileType(),
pathNode: walkRef.pathNode.pathNodeFor(names[i]),
}
walkRef.pathNode.addChild(newRef, names[i])
// We allow our walk reference to become the new parent
// reference here and so we don't IncRef. Instead, just
// set walkRef to the newRef above and acquire a new
// walk reference.
walkRef = newRef
walkRef.IncRef()
return nil
}); err != nil {
walkRef.DecRef() // Drop the old walkRef.
return nil, nil, AttrMask{}, Attr{}, err
}
}
// Success.
return qids, walkRef, valid, attr, nil
}
// handle implements handler.handle.
func (t *twalk) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
if err := ref.safelyRead(func() error {
// Has it been opened already?
//
// That as OK as long as newFID is different. Note this
// violates the spec, but the Linux client does too, so we have
// little choice.
if ref.opened && t.fid == t.newFID {
return linux.EBUSY
}
return nil
}); err != nil {
return newErr(err)
}
// Is this an empty list? Handle specially. We don't actually need to
// Do the walk.
qids, newRef, _, _, err := doWalk(cs, ref, t.Names, false)
if err != nil {
return newErr(err)
}
defer newRef.DecRef()
// Install the new fid.
cs.InsertFID(t.newFID, newRef)
return &rwalk{QIDs: qids}
}
// handle implements handler.handle.
func (t *twalkgetattr) handle(cs *connState) message {
// Lookup the fid.
ref, ok := cs.LookupFID(t.fid)
if !ok {
return newErr(linux.EBADF)
}
defer ref.DecRef()
if err := ref.safelyRead(func() error {
// Has it been opened already?
//
// That as OK as long as newFID is different. Note this
// violates the spec, but the Linux client does too, so we have
// little choice.
if ref.opened && t.fid == t.newFID {
return linux.EBUSY
}
return nil
}); err != nil {
return newErr(err)
}
// Is this an empty list? Handle specially. We don't actually need to
// Do the walk.
qids, newRef, valid, attr, err := doWalk(cs, ref, t.Names, true)
if err != nil {
return newErr(err)
}
defer newRef.DecRef()
// Install the new fid.
cs.InsertFID(t.newFID, newRef)
return &rwalkgetattr{QIDs: qids, Valid: valid, Attr: attr}
}
// handle implements handler.handle.
func (t *tucreate) handle(cs *connState) message {
rlcreate, err := t.tlcreate.do(cs, t.UID)
if err != nil {
return newErr(err)
}
return &rucreate{*rlcreate}
}
// handle implements handler.handle.
func (t *tumkdir) handle(cs *connState) message {
rmkdir, err := t.tmkdir.do(cs, t.UID)
if err != nil {
return newErr(err)
}
return &rumkdir{*rmkdir}
}
// handle implements handler.handle.
func (t *tusymlink) handle(cs *connState) message {
rsymlink, err := t.tsymlink.do(cs, t.UID)
if err != nil {
return newErr(err)
}
return &rusymlink{*rsymlink}
}
// handle implements handler.handle.
func (t *tumknod) handle(cs *connState) message {
rmknod, err := t.tmknod.do(cs, t.UID)
if err != nil {
return newErr(err)
}
return &rumknod{*rmknod}
}
|