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
|
package bypass4netns
// This code is copied from 'runc(https://github.com/opencontainers/runc/blob/v1.1.0/contrib/cmd/seccompagent/seccompagent.go)'
// The code is licensed under Apache-2.0 License
import (
"bytes"
gocontext "context"
"encoding/json"
"errors"
"fmt"
"net"
"os"
"os/exec"
"strconv"
"strings"
"syscall"
"time"
"github.com/opencontainers/runtime-spec/specs-go"
"github.com/rootless-containers/bypass4netns/pkg/api/com"
"github.com/rootless-containers/bypass4netns/pkg/bypass4netns/iproute2"
"github.com/rootless-containers/bypass4netns/pkg/bypass4netns/nonbypassable"
"github.com/rootless-containers/bypass4netns/pkg/bypass4netns/tracer"
"github.com/rootless-containers/bypass4netns/pkg/util"
libseccomp "github.com/seccomp/libseccomp-golang"
"github.com/sirupsen/logrus"
clientv3 "go.etcd.io/etcd/client/v3"
"golang.org/x/sys/unix"
)
const ETCD_MULTINODE_PREFIX = "bypass4netns/multinode/"
func closeStateFds(recvFds []int) {
for i := range recvFds {
unix.Close(i)
}
}
// parseStateFds returns the seccomp-fd and closes the rest of the fds in recvFds.
// In case of error, no fd is closed.
// StateFds is assumed to be formatted as specs.ContainerProcessState.Fds and
// recvFds the corresponding list of received fds in the same SCM_RIGHT message.
func parseStateFds(stateFds []string, recvFds []int) (uintptr, error) {
// Let's find the index in stateFds of the seccomp-fd.
idx := -1
err := false
for i, name := range stateFds {
if name == specs.SeccompFdName && idx == -1 {
idx = i
continue
}
// We found the seccompFdName twice. Error out!
if name == specs.SeccompFdName && idx != -1 {
err = true
}
}
if idx == -1 || err {
return 0, errors.New("seccomp fd not found or malformed containerProcessState.Fds")
}
if idx >= len(recvFds) || idx < 0 {
return 0, errors.New("seccomp fd index out of range")
}
fd := uintptr(recvFds[idx])
for i := range recvFds {
if i == idx {
continue
}
unix.Close(recvFds[i])
}
return fd, nil
}
// readProcMem read data from memory of specified pid process at the spcified offset.
func (h *notifHandler) readProcMem(pid int, offset uint64, len uint64) ([]byte, error) {
buffer := make([]byte, len) // PATH_MAX
memfd, err := h.openMem(pid)
if err != nil {
return nil, err
}
size, err := unix.Pread(memfd, buffer, int64(offset))
if err != nil {
return nil, err
}
return buffer[:size], nil
}
// writeProcMem writes data to memory of specified pid process at the specified offset.
func (h *notifHandler) writeProcMem(pid int, offset uint64, buf []byte) error {
memfd, err := h.openMem(pid)
if err != nil {
return err
}
size, err := unix.Pwrite(memfd, buf, int64(offset))
if err != nil {
return err
}
if len(buf) != size {
return fmt.Errorf("data is not written successfully. expected size=%d actual size=%d", len(buf), size)
}
return nil
}
func (h *notifHandler) openMem(pid int) (int, error) {
if memfd, ok := h.memfds[pid]; ok {
return memfd, nil
}
memfd, err := unix.Open(fmt.Sprintf("/proc/%d/mem", pid), unix.O_RDWR, 0o777)
if err != nil {
logrus.WithField("pid", pid).Warn("failed to open mem due to permission error. retrying with agent.")
newMemfd, err := openMemWithNSEnter(pid)
if err != nil {
return 0, fmt.Errorf("failed to open mem with agent (pid=%d)", pid)
}
logrus.WithField("pid", pid).Info("succeeded to open mem with agent. continue to process")
memfd = newMemfd
}
h.memfds[pid] = memfd
return memfd, nil
}
func openMemWithNSEnter(pid int) (int, error) {
fds, err := syscall.Socketpair(syscall.AF_UNIX, syscall.SOCK_DGRAM, 0)
if err != nil {
return 0, err
}
// configure timeout
timeout := &syscall.Timeval{
Sec: 0,
Usec: 500 * 1000,
}
err = syscall.SetsockoptTimeval(fds[0], syscall.SOL_SOCKET, syscall.SO_RCVTIMEO, timeout)
if err != nil {
return 0, fmt.Errorf("failed to set receive timeout")
}
err = syscall.SetsockoptTimeval(fds[1], syscall.SOL_SOCKET, syscall.SO_SNDTIMEO, timeout)
if err != nil {
return 0, fmt.Errorf("failed to set send timeout")
}
fd1File := os.NewFile(uintptr(fds[0]), "")
defer fd1File.Close()
fd1Conn, err := net.FileConn(fd1File)
if err != nil {
return 0, err
}
_ = fd1Conn
selfExe, err := os.Executable()
if err != nil {
return 0, err
}
nsenter, err := exec.LookPath("nsenter")
if err != nil {
return 0, err
}
nsenterFlags := []string{
"-t", strconv.Itoa(int(pid)),
"-F",
}
selfPid := os.Getpid()
ok, err := util.SameUserNS(int(pid), selfPid)
if err != nil {
return 0, fmt.Errorf("failed to check sameUserNS(%d, %d)", pid, selfPid)
}
if !ok {
nsenterFlags = append(nsenterFlags, "-U", "--preserve-credentials")
}
nsenterFlags = append(nsenterFlags, "--", selfExe, fmt.Sprintf("--mem-nsenter-pid=%d", pid))
cmd := exec.CommandContext(gocontext.TODO(), nsenter, nsenterFlags...)
cmd.ExtraFiles = []*os.File{os.NewFile(uintptr(fds[1]), "")}
stdout := bytes.Buffer{}
cmd.Stdout = &stdout
err = cmd.Start()
if err != nil {
return 0, fmt.Errorf("failed to exec mem open agent %q", err)
}
memfd, recvMsgs, err := util.RecvMsg(fd1Conn)
if err != nil {
logrus.Infof("stdout=%q", stdout.String())
return 0, fmt.Errorf("failed to receive message")
}
logrus.Debugf("recvMsgs=%s", string(recvMsgs))
err = cmd.Wait()
if err != nil {
return 0, err
}
return memfd, nil
}
func OpenMemWithNSEnterAgent(pid uint32) error {
// fd 3 should be passed socket pair
fdFile := os.NewFile(uintptr(3), "")
defer fdFile.Close()
fdConn, err := net.FileConn(fdFile)
if err != nil {
logrus.WithError(err).Fatal("failed to open conn")
}
memPath := fmt.Sprintf("/proc/%d/mem", pid)
memfd, err := unix.Open(memPath, unix.O_RDWR, 0o777)
if err != nil {
logrus.WithError(err).Fatalf("failed to open %s", memPath)
}
err = util.SendMsg(fdConn, memfd, []byte(fmt.Sprintf("opened %s", memPath)))
if err != nil {
logrus.WithError(err).Fatal("failed to send message")
}
return nil
}
func handleNewMessage(sockfd int) (uintptr, *specs.ContainerProcessState, error) {
const maxNameLen = 4096
stateBuf := make([]byte, maxNameLen)
oobSpace := unix.CmsgSpace(4)
oob := make([]byte, oobSpace)
n, oobn, _, _, err := unix.Recvmsg(sockfd, stateBuf, oob, 0)
if err != nil {
return 0, nil, err
}
if n >= maxNameLen || oobn != oobSpace {
return 0, nil, fmt.Errorf("recvfd: incorrect number of bytes read (n=%d oobn=%d)", n, oobn)
}
// Truncate.
stateBuf = stateBuf[:n]
oob = oob[:oobn]
scms, err := unix.ParseSocketControlMessage(oob)
if err != nil {
return 0, nil, err
}
if len(scms) != 1 {
return 0, nil, fmt.Errorf("recvfd: number of SCMs is not 1: %d", len(scms))
}
scm := scms[0]
fds, err := unix.ParseUnixRights(&scm)
if err != nil {
return 0, nil, err
}
containerProcessState := &specs.ContainerProcessState{}
err = json.Unmarshal(stateBuf, containerProcessState)
if err != nil {
closeStateFds(fds)
return 0, nil, fmt.Errorf("cannot parse OCI state: %w", err)
}
fd, err := parseStateFds(containerProcessState.Fds, fds)
if err != nil {
closeStateFds(fds)
return 0, nil, err
}
return fd, containerProcessState, nil
}
type context struct {
notifFd libseccomp.ScmpFd
req *libseccomp.ScmpNotifReq
resp *libseccomp.ScmpNotifResp
}
func (h *notifHandler) getPidFdInfo(pid int) (*pidInfo, error) {
// retrieve pidfd from cache
if pidfd, ok := h.pidInfos[pid]; ok {
return &pidfd, nil
}
targetPidfd, err := unix.PidfdOpen(int(pid), 0)
if err == nil {
info := pidInfo{
pidType: PROCESS,
pidfd: targetPidfd,
tgid: pid, // process's pid is equal to its tgid
}
h.pidInfos[pid] = info
return &info, nil
}
// pid can be thread and pidfd_open fails with thread's pid.
// retrieve process's pid (tgid) from /proc/<pid>/status and retry to get pidfd with the tgid.
logrus.Warnf("pidfd Open failed: pid=%d err=%q, this pid maybe thread and retrying with tgid", pid, err)
st, err := os.ReadFile(fmt.Sprintf("/proc/%d/status", pid))
if err != nil {
return nil, fmt.Errorf("failed to read %d's status err=%q", pid, err)
}
nextTgid := -1
for _, s := range strings.Split(string(st), "\n") {
if strings.Contains(s, "Tgid") {
tgids := strings.Split(s, "\t")
if len(tgids) < 2 {
return nil, fmt.Errorf("unexpected /proc/%d/status len=%q status=%q", pid, len(tgids), string(st))
}
tgid, err := strconv.Atoi(tgids[1])
if err != nil {
return nil, fmt.Errorf("unexpected /proc/%d/status err=%q status=%q", pid, err, string(st))
}
nextTgid = tgid
}
if nextTgid > 0 {
break
}
}
if nextTgid < 0 {
logrus.Errorf("cannot get Tgid from /proc/%d/status status=%q", pid, string(st))
}
targetPidfd, err = unix.PidfdOpen(nextTgid, 0)
if err != nil {
return nil, fmt.Errorf("pidfd Open failed with Tgid: pid=%d %s", nextTgid, err)
}
logrus.Infof("successfully got pidfd for pid=%d tgid=%d", pid, nextTgid)
info := pidInfo{
pidType: THREAD,
pidfd: targetPidfd,
tgid: nextTgid,
}
h.pidInfos[pid] = info
return &info, nil
}
// getFdInProcess get the file descriptor in other process
func (h *notifHandler) getFdInProcess(pid, targetFd int) (int, error) {
targetPidfd, err := h.getPidFdInfo(pid)
if err != nil {
return 0, fmt.Errorf("pidfd Open failed: %s", err)
}
fd, err := unix.PidfdGetfd(targetPidfd.pidfd, targetFd, 0)
if err != nil {
return 0, fmt.Errorf("pidfd GetFd failed: %s", err)
}
return fd, nil
}
// getSocketArgs retrieves socket(2) arguemnts from fd.
// return values are (sock_domain, sock_type, sock_protocol including flags(e.g. O_NONBLOCK), error)
func getSocketArgs(sockfd int) (int, int, int, error) {
logrus.Debugf("got sockfd=%v", sockfd)
sock_domain, err := syscall.GetsockoptInt(sockfd, syscall.SOL_SOCKET, syscall.SO_DOMAIN)
if err != nil {
return 0, 0, 0, fmt.Errorf("getsockopt(SO_DOMAIN) failed: %s", err)
}
sock_type, err := syscall.GetsockoptInt(sockfd, syscall.SOL_SOCKET, syscall.SO_TYPE)
if err != nil {
return 0, 0, 0, fmt.Errorf("getsockopt(SO_TYPE) failed: %s", err)
}
sock_protocol, err := syscall.GetsockoptInt(sockfd, syscall.SOL_SOCKET, syscall.SO_PROTOCOL)
if err != nil {
return 0, 0, 0, fmt.Errorf("getsockopt(SO_PROTOCOL) failed: %s", err)
}
flags, _, errno := syscall.Syscall(syscall.SYS_FCNTL, uintptr(sockfd), syscall.F_GETFD, 0)
if errno != 0 {
return 0, 0, 0, fmt.Errorf("failed to get fcntl F_GETFD: %d", errno)
}
if flags&syscall.O_CLOEXEC != 0 {
sock_type |= syscall.SOCK_CLOEXEC
}
flags, _, errno = syscall.Syscall(syscall.SYS_FCNTL, uintptr(sockfd), syscall.F_GETFL, 0)
if errno != 0 {
return 0, 0, 0, fmt.Errorf("failed to get fcntl F_GETFD: %d", errno)
}
if flags&syscall.O_NONBLOCK != 0 {
sock_type |= syscall.SOCK_NONBLOCK
}
return sock_domain, sock_type, sock_protocol, nil
}
func (h *notifHandler) readSockaddrFromProcess(pid int, offset uint64, addrlen uint64) (*sockaddr, error) {
buf, err := h.readProcMem(pid, offset, addrlen)
if err != nil {
return nil, fmt.Errorf("failed readProcMem pid %v offset 0x%x: %s", pid, offset, err)
}
return newSockaddr(buf)
}
func (h *notifHandler) registerSocket(pid int, sockfd int, syscallName string) (*socketStatus, error) {
logger := logrus.WithFields(logrus.Fields{"pid": pid, "sockfd": sockfd, "syscall": syscallName})
proc, ok := h.processes[pid]
if !ok {
proc = newProcessStatus()
h.processes[pid] = proc
logger.Debug("process is registered")
}
sock, ok := proc.sockets[sockfd]
if ok {
logger.Warn("socket is already registered")
return sock, nil
}
// If the pid is thread, its process can have corresponding socket
procInfo, ok := h.pidInfos[int(pid)]
if ok && procInfo.pidType == THREAD {
return nil, fmt.Errorf("unexpected procInfo")
}
sockFdHost, err := h.getFdInProcess(int(pid), sockfd)
if err != nil {
return nil, err
}
defer syscall.Close(sockFdHost)
sockDomain, sockType, sockProtocol, err := getSocketArgs(sockFdHost)
sock = newSocketStatus(pid, sockfd, sockDomain, sockType, sockProtocol, h.ignoreBind)
if err != nil {
// non-socket fd is not bypassable
sock.state = NotBypassable
logger.Debugf("failed to get socket args err=%q", err)
} else {
if sockDomain != syscall.AF_INET && sockDomain != syscall.AF_INET6 {
// non IP sockets are not handled.
sock.state = NotBypassable
logger.Debugf("socket domain=0x%x", sockDomain)
} else if sockType&syscall.SOCK_STREAM == 0 {
// only accepting TCP socket
sock.state = NotBypassable
logger.Debugf("socket type=0x%x", sockType)
} else {
// only newly created socket is allowed.
_, err := syscall.Getpeername(sockFdHost)
if err == nil {
logger.Infof("socket is already connected. socket is created via accept or forked")
sock.state = NotBypassable
}
}
}
proc.sockets[sockfd] = sock
if sock.state == NotBypassable {
logger.Debugf("socket is registered (state=%s)", sock.state)
} else {
logger.Infof("socket is registered (state=%s)", sock.state)
}
return sock, nil
}
func (h *notifHandler) getSocket(pid int, sockfd int) *socketStatus {
proc, ok := h.processes[pid]
if !ok {
return nil
}
sock := proc.sockets[sockfd]
return sock
}
func (h *notifHandler) removeSocket(pid int, sockfd int) {
defer logrus.WithFields(logrus.Fields{"pid": pid, "sockfd": sockfd}).Debugf("socket is removed")
proc, ok := h.processes[pid]
if !ok {
return
}
delete(proc.sockets, sockfd)
}
// handleReq handles seccomp notif requests and configures responses.
func (h *notifHandler) handleReq(ctx *context) {
syscallName, err := ctx.req.Data.Syscall.GetName()
if err != nil {
logrus.Errorf("Error decoding syscall %v(): %s", ctx.req.Data.Syscall, err)
// TODO: error handle
return
}
logrus.Tracef("Received syscall %q, pid %v, arch %q, args %+v", syscallName, ctx.req.Pid, ctx.req.Data.Arch, ctx.req.Data.Args)
ctx.resp.Flags |= SeccompUserNotifFlagContinue
// ensure pid is registered in notifHandler.pidInfos
pidInfo, err := h.getPidFdInfo(int(ctx.req.Pid))
if err != nil {
logrus.Errorf("failed to get pidfd err=%q", err)
return
}
// threads shares file descriptors in the same process space.
// so use tgid as pid to process socket file descriptors
pid := pidInfo.tgid
if pidInfo.pidType == THREAD {
logrus.Debugf("pid %d is thread. use process's tgid %d as pid", ctx.req.Pid, pid)
}
// cleanup sockets when the process exit.
if syscallName == "_exit" || syscallName == "exit_group" {
if pidInfo, ok := h.pidInfos[int(ctx.req.Pid)]; ok {
syscall.Close(int(pidInfo.pidfd))
delete(h.pidInfos, int(ctx.req.Pid))
}
if pidInfo.pidType == THREAD {
logrus.WithFields(logrus.Fields{"pid": ctx.req.Pid, "tgid": pid}).Infof("thread is removed")
}
if pidInfo.pidType == PROCESS {
delete(h.processes, pid)
if memfd, ok := h.memfds[pid]; ok {
syscall.Close(memfd)
delete(h.memfds, pid)
}
logrus.WithFields(logrus.Fields{"pid": pid}).Infof("process is removed")
}
return
}
sockfd := int(ctx.req.Data.Args[0])
// remove socket when closed
if syscallName == "close" {
h.removeSocket(pid, sockfd)
return
}
sock := h.getSocket(pid, sockfd)
if sock == nil {
sock, err = h.registerSocket(pid, sockfd, syscallName)
if err != nil {
logrus.Errorf("failed to register socket pid %d sockfd %d: %s", pid, sockfd, err)
return
}
}
switch sock.state {
case NotBypassable:
// sometimes close(2) is not called for the fd.
// To handle such condition, re-register fd when connect is called for not bypassable fd.
if syscallName == "connect" {
h.removeSocket(pid, sockfd)
sock, err = h.registerSocket(pid, sockfd, syscallName)
if err != nil {
logrus.Errorf("failed to re-register socket pid %d sockfd %d: %s", pid, sockfd, err)
return
}
}
if sock.state != NotBypassed {
return
}
// when sock.state == NotBypassed, continue
case Bypassed:
if syscallName == "getpeername" {
sock.handleSysGetpeername(h, ctx)
}
return
default:
}
switch syscallName {
case "bind":
sock.handleSysBind(pid, h, ctx)
case "connect":
sock.handleSysConnect(h, ctx)
case "setsockopt":
sock.handleSysSetsockopt(pid, h, ctx)
case "fcntl":
sock.handleSysFcntl(ctx)
case "getpeername":
// already handled
default:
logrus.Errorf("Unknown syscall %q", syscallName)
// TODO: error handle
return
}
}
// notifHandler handles seccomp notifications and response to them.
func (h *notifHandler) handle() {
defer unix.Close(int(h.fd))
if h.nonBypassableAutoUpdate {
go func() {
if nbErr := h.nonBypassable.WatchNS(gocontext.TODO(), h.state.Pid); nbErr != nil {
logrus.WithError(nbErr).Fatalf("failed to watch NS (PID=%d)", h.state.Pid)
}
}()
}
for {
req, err := libseccomp.NotifReceive(h.fd)
if err != nil {
logrus.Errorf("Error in NotifReceive(): %s", err)
continue
}
ctx := context{
notifFd: h.fd,
req: req,
resp: &libseccomp.ScmpNotifResp{
ID: req.ID,
Error: 0,
Val: 0,
Flags: libseccomp.NotifRespFlagContinue,
},
}
// TOCTOU check
if err := libseccomp.NotifIDValid(h.fd, req.ID); err != nil {
logrus.Errorf("TOCTOU check failed: req.ID is no longer valid: %s", err)
continue
}
h.handleReq(&ctx)
if err = libseccomp.NotifRespond(h.fd, ctx.resp); err != nil {
logrus.Errorf("Error in notification response: %s", err)
continue
}
}
}
type ForwardPortMapping struct {
HostPort int
ChildPort int
}
type Handler struct {
socketPath string
comSocketPath string
tracerAgentLogPath string
ignoredSubnets []net.IPNet
ignoredSubnetsAutoUpdate bool
readyFd int
// key is child port
forwardingPorts map[int]ForwardPortMapping
ignoreBind bool
}
// NewHandler creates new seccomp notif handler
func NewHandler(socketPath, comSocketPath, tracerAgentLogPath string, ignoreBind bool) *Handler {
handler := Handler{
socketPath: socketPath,
comSocketPath: comSocketPath,
tracerAgentLogPath: tracerAgentLogPath,
ignoredSubnets: []net.IPNet{},
forwardingPorts: map[int]ForwardPortMapping{},
readyFd: -1,
ignoreBind: ignoreBind,
}
return &handler
}
// SetIgnoreSubnets configures subnets to ignore in bypass4netns.
func (h *Handler) SetIgnoredSubnets(subnets []net.IPNet, autoUpdate bool) {
h.ignoredSubnets = subnets
h.ignoredSubnetsAutoUpdate = autoUpdate
}
// SetForwardingPort checks and configures port forwarding
func (h *Handler) SetForwardingPort(mapping ForwardPortMapping) error {
for _, fwd := range h.forwardingPorts {
if fwd.HostPort == mapping.HostPort {
return fmt.Errorf("host port %d is already forwarded", fwd.HostPort)
}
if fwd.ChildPort == mapping.ChildPort {
return fmt.Errorf("container port %d is already forwarded", fwd.ChildPort)
}
}
h.forwardingPorts[mapping.ChildPort] = mapping
return nil
}
// SetReadyFd configure ready notification file descriptor
func (h *Handler) SetReadyFd(fd int) error {
if fd < 0 {
return fmt.Errorf("ready-fd must be a non-negative integer")
}
h.readyFd = fd
return nil
}
type MultinodeConfig struct {
Enable bool
EtcdAddress string
HostAddress string
etcdClientConfig clientv3.Config
etcdClient *clientv3.Client
}
type C2CConnectionHandleConfig struct {
Enable bool
TracerEnable bool
}
type notifHandler struct {
fd libseccomp.ScmpFd
state *specs.ContainerProcessState
nonBypassable *nonbypassable.NonBypassable
nonBypassableAutoUpdate bool
// key is child port
forwardingPorts map[int]ForwardPortMapping
// key is pid
processes map[int]*processStatus
// key is destination address e.g. "192.168.1.1:1000"
containerInterfaces map[string]containerInterface
c2cConnections *C2CConnectionHandleConfig
multinode *MultinodeConfig
// cache /proc/<pid>/mem's fd to reduce latency. key is pid, value is fd
memfds map[int]int
// cache pidfd to reduce latency. key is pid.
pidInfos map[int]pidInfo
ignoreBind bool
}
type containerInterface struct {
containerID string
hostPort int
lastCheckedUnix int64
}
type pidInfoPidType int
const (
PROCESS pidInfoPidType = iota
THREAD
)
type pidInfo struct {
pidType pidInfoPidType
pidfd int
tgid int
}
func (h *Handler) newNotifHandler(fd uintptr, state *specs.ContainerProcessState) *notifHandler {
notifHandler := notifHandler{
fd: libseccomp.ScmpFd(fd),
state: state,
forwardingPorts: map[int]ForwardPortMapping{},
processes: map[int]*processStatus{},
memfds: map[int]int{},
pidInfos: map[int]pidInfo{},
ignoreBind: h.ignoreBind,
}
notifHandler.nonBypassable = nonbypassable.New(h.ignoredSubnets)
notifHandler.nonBypassableAutoUpdate = h.ignoredSubnetsAutoUpdate
// Deep copy of map
for key, value := range h.forwardingPorts {
notifHandler.forwardingPorts[key] = value
}
return ¬ifHandler
}
// StartHandle starts seccomp notif handler
func (h *Handler) StartHandle(c2cConfig *C2CConnectionHandleConfig, multinodeConfig *MultinodeConfig) {
logrus.Info("Waiting for seccomp file descriptors")
l, err := net.Listen("unix", h.socketPath)
if err != nil {
logrus.Fatalf("Cannot listen: %v", err)
}
defer l.Close()
if h.readyFd >= 0 {
logrus.Infof("notify ready fd=%d", h.readyFd)
_, err = syscall.Write(h.readyFd, []byte{1})
if err != nil {
logrus.Fatalf("failed to notify fd=%d", h.readyFd)
}
syscall.Close(h.readyFd)
}
// prepare tracer agent
var tracerAgent *tracer.Tracer = nil
for {
conn, err := l.Accept()
logrus.Info("accept connection")
if err != nil {
logrus.Errorf("Cannot accept connection: %s", err)
continue
}
socket, err := conn.(*net.UnixConn).File()
conn.Close()
if err != nil {
logrus.Errorf("Cannot get socket: %v", err)
continue
}
newFd, state, err := handleNewMessage(int(socket.Fd()))
socket.Close()
if err != nil {
logrus.Errorf("Error receiving seccomp file descriptor: %v", err)
continue
}
logrus.Infof("Received new seccomp fd: %v", newFd)
notifHandler := h.newNotifHandler(newFd, state)
notifHandler.c2cConnections = c2cConfig
notifHandler.multinode = multinodeConfig
if notifHandler.multinode.Enable {
notifHandler.multinode.etcdClientConfig = clientv3.Config{
Endpoints: []string{notifHandler.multinode.EtcdAddress},
}
notifHandler.multinode.etcdClient, err = clientv3.New(notifHandler.multinode.etcdClientConfig)
if err != nil {
logrus.WithError(err).Fatal("failed to create etcd client")
}
}
// not to run multiple tracerAgent.
// TODO: prepare only one tracerAgent in Handler
if c2cConfig.TracerEnable && !multinodeConfig.Enable && tracerAgent == nil {
tracerAgent = tracer.NewTracer(h.tracerAgentLogPath)
err = tracerAgent.StartTracer(gocontext.TODO(), state.Pid)
if err != nil {
logrus.WithError(err).Fatalf("failed to start tracer")
}
fwdPorts := []int{}
for _, v := range notifHandler.forwardingPorts {
fwdPorts = append(fwdPorts, v.ChildPort)
}
err = tracerAgent.RegisterForwardPorts(fwdPorts)
if err != nil {
logrus.WithError(err).Fatalf("failed to register port")
}
logrus.WithField("fwdPorts", fwdPorts).Info("registered ports to tracer agent")
// check tracer agent is ready
for _, v := range fwdPorts {
dst := fmt.Sprintf("127.0.0.1:%d", v)
addr, err := tracerAgent.ConnectToAddress([]string{dst})
if err != nil {
logrus.WithError(err).Warnf("failed to connect to %s", dst)
continue
}
if len(addr) != 1 || addr[0] != dst {
logrus.Fatalf("failed to connect to %s", dst)
continue
}
logrus.Debugf("successfully connected to %s", dst)
}
logrus.Infof("tracer is ready")
} else {
logrus.Infof("tracer is disabled")
}
// TODO: these goroutines shoud be launched only once.
ready := make(chan bool, 10)
if notifHandler.multinode.Enable {
go notifHandler.startBackgroundMultinodeTask(ready)
} else if notifHandler.c2cConnections.Enable {
go notifHandler.startBackgroundC2CConnectionHandleTask(ready, h.comSocketPath, tracerAgent)
} else {
ready <- true
}
// wait for background tasks becoming ready
<-ready
logrus.Info("background task is ready. start to handle")
go notifHandler.handle()
}
}
func (h *notifHandler) startBackgroundC2CConnectionHandleTask(ready chan bool, comSocketPath string, tracerAgent *tracer.Tracer) {
initDone := false
logrus.Info("Started bypass4netns background task")
comClient, err := com.NewComClient(comSocketPath)
if err != nil {
logrus.Fatalf("failed to create ComClient: %q", err)
}
err = comClient.Ping(gocontext.TODO())
if err != nil {
logrus.Fatalf("failed to connect to bypass4netnsd: %q", err)
}
logrus.Infof("Successfully connected to bypass4netnsd")
ifLastUpdateUnix := int64(0)
for {
if ifLastUpdateUnix+10 < time.Now().Unix() {
addrs, err := iproute2.GetAddressesInNetNS(gocontext.TODO(), h.state.Pid)
if err != nil {
logrus.WithError(err).Errorf("failed to get addresses")
return
}
ifs, err := iproute2AddressesToComInterfaces(addrs)
if err != nil {
logrus.WithError(err).Errorf("failed to convert addresses")
return
}
containerIfs := &com.ContainerInterfaces{
ContainerID: h.state.State.ID,
Interfaces: ifs,
ForwardingPorts: map[int]int{},
}
for _, v := range h.forwardingPorts {
containerIfs.ForwardingPorts[v.ChildPort] = v.HostPort
}
logrus.Debugf("Interfaces = %v", containerIfs)
_, err = comClient.PostInterface(gocontext.TODO(), containerIfs)
if err != nil {
logrus.WithError(err).Errorf("failed to post interfaces")
} else {
logrus.Infof("successfully posted updated interfaces")
ifLastUpdateUnix = time.Now().Unix()
}
}
containerInterfaces, err := comClient.ListInterfaces(gocontext.TODO())
if err != nil {
logrus.WithError(err).Warn("failed to list container interfaces")
}
containerIf := map[string]containerInterface{}
for _, cont := range containerInterfaces {
for contPort, hostPort := range cont.ForwardingPorts {
for _, intf := range cont.Interfaces {
if intf.IsLoopback {
continue
}
for _, addr := range intf.Addresses {
// ignore ipv6 address
if addr.IP.To4() == nil {
continue
}
dstAddr := fmt.Sprintf("%s:%d", addr.IP, contPort)
contIf, ok := h.containerInterfaces[dstAddr]
if ok && contIf.lastCheckedUnix+10 > time.Now().Unix() {
containerIf[dstAddr] = contIf
continue
}
if h.c2cConnections.TracerEnable {
addrRes, err := tracerAgent.ConnectToAddress([]string{dstAddr})
if err != nil {
logrus.WithError(err).Debugf("failed to connect to %s", dstAddr)
continue
}
if len(addrRes) != 1 || addrRes[0] != dstAddr {
logrus.Debugf("failed to connect to %s", dstAddr)
continue
}
logrus.Debugf("successfully connected to %s", dstAddr)
}
containerIf[dstAddr] = containerInterface{
containerID: cont.ContainerID,
hostPort: hostPort,
lastCheckedUnix: time.Now().Unix(),
}
logrus.Infof("%s -> 127.0.0.1:%d is registered", dstAddr, hostPort)
}
}
}
}
h.containerInterfaces = containerIf
// once the interfaces are registered, it is ready to handle connections
if !initDone {
initDone = true
ready <- true
}
time.Sleep(1 * time.Second)
}
}
func iproute2AddressesToComInterfaces(addrs iproute2.Addresses) ([]com.Interface, error) {
comIntfs := []com.Interface{}
for _, intf := range addrs {
comIntf := com.Interface{
Name: intf.IfName,
Addresses: []net.IPNet{},
IsLoopback: intf.LinkType == "loopback",
}
hwAddr, err := net.ParseMAC(intf.Address)
if err != nil {
return nil, fmt.Errorf("failed to parse HWAddress: %w", err)
}
comIntf.HWAddr = hwAddr
for _, addr := range intf.AddrInfos {
ip, ipNet, err := net.ParseCIDR(fmt.Sprintf("%s/%d", addr.Local, addr.PrefixLen))
if err != nil {
return nil, fmt.Errorf("failed to parse addr_info: %w", err)
}
ipNet.IP = ip
comIntf.Addresses = append(comIntf.Addresses, *ipNet)
}
comIntfs = append(comIntfs, comIntf)
}
return comIntfs, nil
}
func (h *notifHandler) startBackgroundMultinodeTask(ready chan bool) {
initDone := false
ifLastUpdateUnix := int64(0)
for {
if ifLastUpdateUnix+10 < time.Now().Unix() {
ifs, err := iproute2.GetAddressesInNetNS(gocontext.TODO(), h.state.Pid)
if err != nil {
logrus.WithError(err).Errorf("failed to get addresses")
return
}
for _, intf := range ifs {
// ignore non-ethernet interface
if intf.LinkType != "ether" {
continue
}
for _, addr := range intf.AddrInfos {
// ignore non-IPv4 address
if addr.Family != "inet" {
continue
}
for _, v := range h.forwardingPorts {
containerAddr := fmt.Sprintf("%s:%d", addr.Local, v.ChildPort)
hostAddr := fmt.Sprintf("%s:%d", h.multinode.HostAddress, v.HostPort)
// Remove entries with timeout
// TODO: Remove related entries when exiting.
ctx, cancel := gocontext.WithTimeout(gocontext.Background(), 2*time.Second)
lease, err := h.multinode.etcdClient.Grant(ctx, 15)
cancel()
if err != nil {
logrus.WithError(err).Errorf("failed to grant lease to register %s -> %s", containerAddr, hostAddr)
continue
}
ctx, cancel = gocontext.WithTimeout(gocontext.Background(), 2*time.Second)
_, err = h.multinode.etcdClient.Put(ctx, ETCD_MULTINODE_PREFIX+containerAddr, hostAddr,
clientv3.WithLease(lease.ID))
cancel()
if err != nil {
logrus.WithError(err).Errorf("failed to register %s -> %s", containerAddr, hostAddr)
} else {
logrus.Infof("Registered %s -> %s", containerAddr, hostAddr)
}
}
}
}
ifLastUpdateUnix = time.Now().Unix()
// once the interfaces are registered, it is ready to handle connections
if !initDone {
initDone = true
ready <- true
}
}
time.Sleep(1 * time.Second)
}
}
|