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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2017-2019 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package main
//#cgo CFLAGS: -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
//#cgo pkg-config: libseccomp
//#cgo LDFLAGS:
//
//#include <asm/ioctls.h>
//#include <ctype.h>
//#include <errno.h>
//#include <fcntl.h>
//#include <linux/can.h>
//#include <linux/netlink.h>
//#include <sched.h>
//#include <search.h>
//#include <stdbool.h>
//#include <stdio.h>
//#include <stdlib.h>
//#include <string.h>
//#include <sys/ioctl.h>
//#include <sys/prctl.h>
//#include <sys/quota.h>
//#include <sys/resource.h>
//#include <sys/socket.h>
//#include <sys/stat.h>
//#include <sys/types.h>
//#include <sys/utsname.h>
//#include <sys/ptrace.h>
//#include <termios.h>
//#include <unistd.h>
// //The XFS interface requires a 64 bit file system interface
// //but we don't want to leak this anywhere else if not globally
// //defined.
//#ifndef _FILE_OFFSET_BITS
//#define _FILE_OFFSET_BITS 64
//#include <xfs/xqm.h>
//#undef _FILE_OFFSET_BITS
//#else
//#include <xfs/xqm.h>
//#endif
//#include <seccomp.h>
//#include <linux/sched.h>
//#include <linux/seccomp.h>
//#include <arpa/inet.h>
//
//#ifndef AF_IB
//#define AF_IB 27
//#define PF_IB AF_IB
//#endif // AF_IB
//
//#ifndef AF_MPLS
//#define AF_MPLS 28
//#define PF_MPLS AF_MPLS
//#endif // AF_MPLS
//
//#ifndef AF_QIPCRTR
//#define AF_QIPCRTR 42
//#define PF_QIPCRTR AF_QIPCRTR
//#endif // AF_QIPCRTR
//
//#ifndef AF_XDP
//#define AF_XDP 44
//#define PF_XDP AF_XDP
//#endif // AF_XDP
//
// // https://github.com/sctplab/usrsctp/blob/master/usrsctplib/usrsctp.h
//#ifndef AF_CONN
//#define AF_CONN 123
//#define PF_CONN AF_CONN
//#endif // AF_CONN
//
//#ifndef PR_CAP_AMBIENT
//#define PR_CAP_AMBIENT 47
//#define PR_CAP_AMBIENT_IS_SET 1
//#define PR_CAP_AMBIENT_RAISE 2
//#define PR_CAP_AMBIENT_LOWER 3
//#define PR_CAP_AMBIENT_CLEAR_ALL 4
//#endif // PR_CAP_AMBIENT
//
//#ifndef PR_SET_THP_DISABLE
//#define PR_SET_THP_DISABLE 41
//#endif // PR_SET_THP_DISABLE
//#ifndef PR_GET_THP_DISABLE
//#define PR_GET_THP_DISABLE 42
//#endif // PR_GET_THP_DISABLE
//
//#ifndef PR_MPX_ENABLE_MANAGEMENT
//#define PR_MPX_ENABLE_MANAGEMENT 43
//#endif
//
//#ifndef PR_MPX_DISABLE_MANAGEMENT
//#define PR_MPX_DISABLE_MANAGEMENT 44
//#endif
//
// //FIXME: ARCH_BAD is defined as ~0 in libseccomp internally, however
// // this leads to a build failure on 14.04. the important part
// // is that its an invalid id for libseccomp.
//
//#define ARCH_BAD 0x7FFFFFFF
//#ifndef SCMP_ARCH_AARCH64
//#define SCMP_ARCH_AARCH64 ARCH_BAD
//#endif
//
//#ifndef SCMP_ARCH_PPC
//#define SCMP_ARCH_PPC ARCH_BAD
//#endif
//
//#ifndef SCMP_ARCH_PPC64LE
//#define SCMP_ARCH_PPC64LE ARCH_BAD
//#endif
//
//#ifndef SCMP_ARCH_PPC64
//#define SCMP_ARCH_PPC64 ARCH_BAD
//#endif
//
//#ifndef SCMP_ARCH_S390X
//#define SCMP_ARCH_S390X ARCH_BAD
//#endif
//
//#ifndef SCMP_ARCH_RISCV64
//#define SCMP_ARCH_RISCV64 ARCH_BAD
//#endif
//
//#ifndef SECCOMP_RET_LOG
//#define SECCOMP_RET_LOG 0x7ffc0000U
//#endif
//
//typedef struct seccomp_data kernel_seccomp_data;
//
//__u32 htot32(__u32 arch, __u32 val)
//{
// if (arch & __AUDIT_ARCH_LE)
// return htole32(val);
// else
// return htobe32(val);
//}
//
//__u64 htot64(__u32 arch, __u64 val)
//{
// if (arch & __AUDIT_ARCH_LE)
// return htole64(val);
// else
// return htobe64(val);
//}
//
// /* Define missing ptrace constants. They are available on some architectures
// only but the missing values are not reused on architectures that lack them.
// As such we can simply define the missing pair and have a simpler cross-arch
// code to support. */
//
// #ifndef PTRACE_GETREGS
// #define PTRACE_GETREGS 12
// #endif
// #ifndef PTRACE_SETREGS
// #define PTRACE_SETREGS 13
// #endif
// #ifndef PTRACE_GETFPREGS
// #define PTRACE_GETFPREGS 14
// #endif
// #ifndef PTRACE_SETFPREGS
// #define PTRACE_SETFPREGS 15
// #endif
// #ifndef PTRACE_GETFPXREGS
// #define PTRACE_GETFPXREGS 18
// #endif
// #ifndef PTRACE_SETFPXREGS
// #define PTRACE_SETFPXREGS 19
// #endif
//
// /* Define TIOCLINUX if needed */
// #ifndef TIOCLINUX
// #define TIOCLINUX 0x541C
// #endif
//
//#include <linux/version.h>
//#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0)
// #include <linux/kcmp.h>
//#else // LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0)
// /* Define missing kcmp constants */
// #define KCMP_FILE 0
// #define KCMP_VM 1
// #define KCMP_FILES 2
// #define KCMP_FS 3
// #define KCMP_SIGHAND 4
// #define KCMP_IO 5
// #define KCMP_SYSVSEM 6
//#endif // LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0)
//#if LINUX_VERSION_CODE < KERNEL_VERSION(4,13,0)
// #define KCMP_EPOLL_TFD 7
//#endif // LINUX_VERSION_CODE < KERNEL_VERSION(4,13,0)
import "C"
import (
"bufio"
"bytes"
"encoding/binary"
"fmt"
"io"
"os"
"strconv"
"strings"
"syscall"
seccomp "github.com/seccomp/libseccomp-golang"
"github.com/snapcore/snapd/arch"
"github.com/snapcore/snapd/osutil"
)
// libseccomp maximum per ARG_COUNT_MAX in src/arch.h
const ScArgsMaxlength = 6
var seccompResolver = map[string]uint64{
// man 2 socket - domain and man 5 apparmor.d. AF_ and PF_ are
// synonymous in the kernel and can be used interchangeably in
// policy (ie, if use AF_UNIX, don't need a corresponding PF_UNIX
// rule). See include/linux/socket.h
"AF_UNIX": syscall.AF_UNIX,
"PF_UNIX": C.PF_UNIX,
"AF_LOCAL": syscall.AF_LOCAL,
"PF_LOCAL": C.PF_LOCAL,
"AF_INET": syscall.AF_INET,
"PF_INET": C.PF_INET,
"AF_INET6": syscall.AF_INET6,
"PF_INET6": C.PF_INET6,
"AF_IPX": syscall.AF_IPX,
"PF_IPX": C.PF_IPX,
"AF_NETLINK": syscall.AF_NETLINK,
"PF_NETLINK": C.PF_NETLINK,
"AF_X25": syscall.AF_X25,
"PF_X25": C.PF_X25,
"AF_AX25": syscall.AF_AX25,
"PF_AX25": C.PF_AX25,
"AF_ATMPVC": syscall.AF_ATMPVC,
"PF_ATMPVC": C.PF_ATMPVC,
"AF_APPLETALK": syscall.AF_APPLETALK,
"PF_APPLETALK": C.PF_APPLETALK,
"AF_PACKET": syscall.AF_PACKET,
"PF_PACKET": C.PF_PACKET,
"AF_ALG": syscall.AF_ALG,
"PF_ALG": C.PF_ALG,
"AF_BRIDGE": syscall.AF_BRIDGE,
"PF_BRIDGE": C.PF_BRIDGE,
"AF_NETROM": syscall.AF_NETROM,
"PF_NETROM": C.PF_NETROM,
"AF_ROSE": syscall.AF_ROSE,
"PF_ROSE": C.PF_ROSE,
"AF_NETBEUI": syscall.AF_NETBEUI,
"PF_NETBEUI": C.PF_NETBEUI,
"AF_SECURITY": syscall.AF_SECURITY,
"PF_SECURITY": C.PF_SECURITY,
"AF_KEY": syscall.AF_KEY,
"PF_KEY": C.PF_KEY,
"AF_ASH": syscall.AF_ASH,
"PF_ASH": C.PF_ASH,
"AF_ECONET": syscall.AF_ECONET,
"PF_ECONET": C.PF_ECONET,
"AF_SNA": syscall.AF_SNA,
"PF_SNA": C.PF_SNA,
"AF_IRDA": syscall.AF_IRDA,
"PF_IRDA": C.PF_IRDA,
"AF_PPPOX": syscall.AF_PPPOX,
"PF_PPPOX": C.PF_PPPOX,
"AF_WANPIPE": syscall.AF_WANPIPE,
"PF_WANPIPE": C.PF_WANPIPE,
"AF_BLUETOOTH": syscall.AF_BLUETOOTH,
"PF_BLUETOOTH": C.PF_BLUETOOTH,
"AF_RDS": syscall.AF_RDS,
"PF_RDS": C.PF_RDS,
"AF_LLC": syscall.AF_LLC,
"PF_LLC": C.PF_LLC,
"AF_TIPC": syscall.AF_TIPC,
"PF_TIPC": C.PF_TIPC,
"AF_IUCV": syscall.AF_IUCV,
"PF_IUCV": C.PF_IUCV,
"AF_RXRPC": syscall.AF_RXRPC,
"PF_RXRPC": C.PF_RXRPC,
"AF_ISDN": syscall.AF_ISDN,
"PF_ISDN": C.PF_ISDN,
"AF_PHONET": syscall.AF_PHONET,
"PF_PHONET": C.PF_PHONET,
"AF_IEEE802154": syscall.AF_IEEE802154,
"PF_IEEE802154": C.PF_IEEE802154,
"AF_CAIF": syscall.AF_CAIF,
"PF_CAIF": C.AF_CAIF,
"AF_NFC": C.AF_NFC,
"PF_NFC": C.PF_NFC,
"AF_VSOCK": C.AF_VSOCK,
"PF_VSOCK": C.PF_VSOCK,
// may not be defined in socket.h yet
"AF_IB": C.AF_IB, // 27
"PF_IB": C.PF_IB,
"AF_MPLS": C.AF_MPLS, // 28
"PF_MPLS": C.PF_MPLS,
"AF_CAN": syscall.AF_CAN,
"PF_CAN": C.PF_CAN,
"AF_CONN": C.AF_CONN, // 123
"PF_CONN": C.PF_CONN,
"AF_QIPCRTR": C.AF_QIPCRTR, // 42
"PF_QIPCRTR": C.PF_QIPCRTR,
"AF_XDP": C.AF_XDP, // 44
"PF_XDP": C.PF_XDP,
// man 2 socket - type
"SOCK_STREAM": syscall.SOCK_STREAM,
"SOCK_DGRAM": syscall.SOCK_DGRAM,
"SOCK_SEQPACKET": syscall.SOCK_SEQPACKET,
"SOCK_RAW": syscall.SOCK_RAW,
"SOCK_RDM": syscall.SOCK_RDM,
"SOCK_PACKET": syscall.SOCK_PACKET,
// man 2 prctl
"PR_CAP_AMBIENT": C.PR_CAP_AMBIENT,
"PR_CAP_AMBIENT_RAISE": C.PR_CAP_AMBIENT_RAISE,
"PR_CAP_AMBIENT_LOWER": C.PR_CAP_AMBIENT_LOWER,
"PR_CAP_AMBIENT_IS_SET": C.PR_CAP_AMBIENT_IS_SET,
"PR_CAP_AMBIENT_CLEAR_ALL": C.PR_CAP_AMBIENT_CLEAR_ALL,
"PR_CAPBSET_READ": C.PR_CAPBSET_READ,
"PR_CAPBSET_DROP": C.PR_CAPBSET_DROP,
"PR_SET_CHILD_SUBREAPER": C.PR_SET_CHILD_SUBREAPER,
"PR_GET_CHILD_SUBREAPER": C.PR_GET_CHILD_SUBREAPER,
"PR_SET_DUMPABLE": C.PR_SET_DUMPABLE,
"PR_GET_DUMPABLE": C.PR_GET_DUMPABLE,
"PR_SET_ENDIAN": C.PR_SET_ENDIAN,
"PR_GET_ENDIAN": C.PR_GET_ENDIAN,
"PR_SET_FPEMU": C.PR_SET_FPEMU,
"PR_GET_FPEMU": C.PR_GET_FPEMU,
"PR_SET_FPEXC": C.PR_SET_FPEXC,
"PR_GET_FPEXC": C.PR_GET_FPEXC,
"PR_SET_KEEPCAPS": C.PR_SET_KEEPCAPS,
"PR_GET_KEEPCAPS": C.PR_GET_KEEPCAPS,
"PR_MCE_KILL": C.PR_MCE_KILL,
"PR_MCE_KILL_GET": C.PR_MCE_KILL_GET,
"PR_SET_MM": C.PR_SET_MM,
"PR_SET_MM_START_CODE": C.PR_SET_MM_START_CODE,
"PR_SET_MM_END_CODE": C.PR_SET_MM_END_CODE,
"PR_SET_MM_START_DATA": C.PR_SET_MM_START_DATA,
"PR_SET_MM_END_DATA": C.PR_SET_MM_END_DATA,
"PR_SET_MM_START_STACK": C.PR_SET_MM_START_STACK,
"PR_SET_MM_START_BRK": C.PR_SET_MM_START_BRK,
"PR_SET_MM_BRK": C.PR_SET_MM_BRK,
"PR_SET_MM_ARG_START": C.PR_SET_MM_ARG_START,
"PR_SET_MM_ARG_END": C.PR_SET_MM_ARG_END,
"PR_SET_MM_ENV_START": C.PR_SET_MM_ENV_START,
"PR_SET_MM_ENV_END": C.PR_SET_MM_ENV_END,
"PR_SET_MM_AUXV": C.PR_SET_MM_AUXV,
"PR_SET_MM_EXE_FILE": C.PR_SET_MM_EXE_FILE,
"PR_MPX_ENABLE_MANAGEMENT": C.PR_MPX_ENABLE_MANAGEMENT,
"PR_MPX_DISABLE_MANAGEMENT": C.PR_MPX_DISABLE_MANAGEMENT,
"PR_SET_NAME": C.PR_SET_NAME,
"PR_GET_NAME": C.PR_GET_NAME,
"PR_SET_NO_NEW_PRIVS": C.PR_SET_NO_NEW_PRIVS,
"PR_GET_NO_NEW_PRIVS": C.PR_GET_NO_NEW_PRIVS,
"PR_SET_PDEATHSIG": C.PR_SET_PDEATHSIG,
"PR_GET_PDEATHSIG": C.PR_GET_PDEATHSIG,
"PR_SET_PTRACER": C.PR_SET_PTRACER,
"PR_SET_SECCOMP": C.PR_SET_SECCOMP,
"PR_GET_SECCOMP": C.PR_GET_SECCOMP,
"PR_SET_SECUREBITS": C.PR_SET_SECUREBITS,
"PR_GET_SECUREBITS": C.PR_GET_SECUREBITS,
"PR_SET_THP_DISABLE": C.PR_SET_THP_DISABLE,
"PR_TASK_PERF_EVENTS_DISABLE": C.PR_TASK_PERF_EVENTS_DISABLE,
"PR_TASK_PERF_EVENTS_ENABLE": C.PR_TASK_PERF_EVENTS_ENABLE,
"PR_GET_THP_DISABLE": C.PR_GET_THP_DISABLE,
"PR_GET_TID_ADDRESS": C.PR_GET_TID_ADDRESS,
"PR_SET_TIMERSLACK": C.PR_SET_TIMERSLACK,
"PR_GET_TIMERSLACK": C.PR_GET_TIMERSLACK,
"PR_SET_TIMING": C.PR_SET_TIMING,
"PR_GET_TIMING": C.PR_GET_TIMING,
"PR_SET_TSC": C.PR_SET_TSC,
"PR_GET_TSC": C.PR_GET_TSC,
"PR_SET_UNALIGN": C.PR_SET_UNALIGN,
"PR_GET_UNALIGN": C.PR_GET_UNALIGN,
// man 2 getpriority
"PRIO_PROCESS": syscall.PRIO_PROCESS,
"PRIO_PGRP": syscall.PRIO_PGRP,
"PRIO_USER": syscall.PRIO_USER,
// man 2 setns
"CLONE_NEWIPC": syscall.CLONE_NEWIPC,
"CLONE_NEWNET": syscall.CLONE_NEWNET,
"CLONE_NEWNS": syscall.CLONE_NEWNS,
"CLONE_NEWPID": syscall.CLONE_NEWPID,
"CLONE_NEWUSER": syscall.CLONE_NEWUSER,
"CLONE_NEWUTS": syscall.CLONE_NEWUTS,
// man 4 tty_ioctl
"TIOCSTI": syscall.TIOCSTI,
// man 2 ioctl_console
"TIOCLINUX": C.TIOCLINUX,
// man 2 quotactl (with what Linux supports)
"Q_SYNC": C.Q_SYNC,
"Q_QUOTAON": C.Q_QUOTAON,
"Q_QUOTAOFF": C.Q_QUOTAOFF,
"Q_GETFMT": C.Q_GETFMT,
"Q_GETINFO": C.Q_GETINFO,
"Q_SETINFO": C.Q_SETINFO,
"Q_GETQUOTA": C.Q_GETQUOTA,
"Q_SETQUOTA": C.Q_SETQUOTA,
"Q_XQUOTAON": C.Q_XQUOTAON,
"Q_XQUOTAOFF": C.Q_XQUOTAOFF,
"Q_XGETQUOTA": C.Q_XGETQUOTA,
"Q_XSETQLIM": C.Q_XSETQLIM,
"Q_XGETQSTAT": C.Q_XGETQSTAT,
"Q_XQUOTARM": C.Q_XQUOTARM,
// man 2 mknod
"S_IFREG": syscall.S_IFREG,
"S_IFCHR": syscall.S_IFCHR,
"S_IFBLK": syscall.S_IFBLK,
"S_IFIFO": syscall.S_IFIFO,
"S_IFSOCK": syscall.S_IFSOCK,
// man 7 netlink (uapi/linux/netlink.h)
"NETLINK_ROUTE": syscall.NETLINK_ROUTE,
"NETLINK_USERSOCK": syscall.NETLINK_USERSOCK,
"NETLINK_FIREWALL": syscall.NETLINK_FIREWALL,
"NETLINK_SOCK_DIAG": C.NETLINK_SOCK_DIAG,
"NETLINK_NFLOG": syscall.NETLINK_NFLOG,
"NETLINK_XFRM": syscall.NETLINK_XFRM,
"NETLINK_SELINUX": syscall.NETLINK_SELINUX,
"NETLINK_ISCSI": syscall.NETLINK_ISCSI,
"NETLINK_AUDIT": syscall.NETLINK_AUDIT,
"NETLINK_FIB_LOOKUP": syscall.NETLINK_FIB_LOOKUP,
"NETLINK_CONNECTOR": syscall.NETLINK_CONNECTOR,
"NETLINK_NETFILTER": syscall.NETLINK_NETFILTER,
"NETLINK_IP6_FW": syscall.NETLINK_IP6_FW,
"NETLINK_DNRTMSG": syscall.NETLINK_DNRTMSG,
"NETLINK_KOBJECT_UEVENT": syscall.NETLINK_KOBJECT_UEVENT,
"NETLINK_GENERIC": syscall.NETLINK_GENERIC,
"NETLINK_SCSITRANSPORT": syscall.NETLINK_SCSITRANSPORT,
"NETLINK_ECRYPTFS": syscall.NETLINK_ECRYPTFS,
"NETLINK_RDMA": C.NETLINK_RDMA,
"NETLINK_CRYPTO": C.NETLINK_CRYPTO,
"NETLINK_INET_DIAG": C.NETLINK_INET_DIAG, // synonymous with NETLINK_SOCK_DIAG
// man 2 ptrace
"PTRACE_ATTACH": C.PTRACE_ATTACH,
"PTRACE_DETACH": C.PTRACE_DETACH,
"PTRACE_GETREGS": C.PTRACE_GETREGS,
"PTRACE_GETFPREGS": C.PTRACE_GETFPREGS,
"PTRACE_GETFPXREGS": C.PTRACE_GETFPXREGS,
"PTRACE_GETREGSET": C.PTRACE_GETREGSET,
"PTRACE_PEEKDATA": C.PTRACE_PEEKDATA,
// <linux/ptrace.h> and <sys/ptrace.h> have different spellings for PEEKUS{,E}R
"PTRACE_PEEKUSR": C.PTRACE_PEEKUSER,
"PTRACE_PEEKUSER": C.PTRACE_PEEKUSER,
"PTRACE_CONT": C.PTRACE_CONT,
// man 2 kcmp
"KCMP_FILE": C.KCMP_FILE,
"KCMP_VM": C.KCMP_VM,
"KCMP_FILES": C.KCMP_FILES,
"KCMP_FS": C.KCMP_FS,
"KCMP_SIGHAND": C.KCMP_SIGHAND,
"KCMP_IO": C.KCMP_IO,
"KCMP_SYSVSEM": C.KCMP_SYSVSEM,
"KCMP_EPOLL_TFD": C.KCMP_EPOLL_TFD,
// man 2 pipe
// This is not using O_NOTIFICATION_PIPE becauses Go 1.18 has issues with Cgo
// resolving a define-to-define that is fixed in more recent versions.
// The macro O_NOTIFICATION_PIPE is just O_EXCL and is fixed for ABI compatibility.
// see: https://elixir.bootlin.com/linux/v6.5.13/source/include/uapi/linux/watch_queue.h#L9
"O_NOTIFICATION_PIPE": C.O_EXCL,
}
// DpkgArchToScmpArch takes a dpkg architecture and converts it to
// the seccomp.ScmpArch as used in the libseccomp-golang library
func DpkgArchToScmpArch(dpkgArch string) seccomp.ScmpArch {
switch dpkgArch {
case "amd64":
return seccomp.ArchAMD64
case "arm64":
return seccomp.ArchARM64
case "armhf":
return seccomp.ArchARM
case "i386":
return seccomp.ArchX86
case "powerpc":
return seccomp.ArchPPC
case "ppc64":
return seccomp.ArchPPC64
case "ppc64el":
return seccomp.ArchPPC64LE
case "s390x":
return seccomp.ArchS390X
}
return extraDpkgArchToScmpArch(dpkgArch)
}
// important for unit testing
type SeccompData C.kernel_seccomp_data
func (sc *SeccompData) SetNr(nr seccomp.ScmpSyscall) {
sc.nr = C.int(C.htot32(C.__u32(sc.arch), C.__u32(nr)))
}
func (sc *SeccompData) SetArch(arch uint32) {
sc.arch = C.htot32(C.__u32(arch), C.__u32(arch))
}
func (sc *SeccompData) SetArgs(args [6]uint64) {
for i := range args {
sc.args[i] = C.htot64(sc.arch, C.__u64(args[i]))
}
}
// Only support negative args for syscalls where we understand the glibc/kernel
// prototypes and behavior. This lists all the syscalls that support negative
// arguments where we want to ignore the high 32 bits (ie, we'll mask it since
// the arg is known to be 32 bit (uid_t/gid_t) and the kernel accepts one
// or both of uint32(-1) and uint64(-1) and does its own masking).
var syscallsWithNegArgsMaskHi32 = map[string]bool{
"chown": true,
"chown32": true,
"fchown": true,
"fchown32": true,
"fchownat": true,
"lchown": true,
"lchown32": true,
"setgid": true,
"setgid32": true,
"setregid": true,
"setregid32": true,
"setresgid": true,
"setresgid32": true,
"setreuid": true,
"setreuid32": true,
"setresuid": true,
"setresuid32": true,
"setuid": true,
"setuid32": true,
"copy_file_range": true,
}
// The kernel uses uint32 for all syscall arguments, but seccomp takes a
// uint64. For unsigned ints in our policy, just read straight into uint32
// since we don't need to worry about sign extending.
//
// For negative signed ints in our policy, we first read in as int32, convert
// to uint32 and then again uint64 to avoid sign extension woes (see
// https://github.com/seccomp/libseccomp/issues/69). For syscalls that take
// a 64bit arg that we want to express in our policy, we can add an exception
// for reading into a uint64. For now there are no exceptions, so don't need to
// do anything extra.
func readNumber(token string, syscallName string) (uint64, error) {
if value, ok := seccompResolver[token]; ok {
return value, nil
}
if value, err := strconv.ParseUint(token, 10, 32); err == nil {
return value, nil
}
// Not a positive integer, see if negative is allowed for this syscall
if !syscallsWithNegArgsMaskHi32[syscallName] {
return 0, fmt.Errorf(`negative argument not supported with "%s"`, syscallName)
}
// It is, so try to parse as an int32
value, err := strconv.ParseInt(token, 10, 32)
if err != nil {
return 0, err
}
// convert the int32 to uint32 then to uint64 (see above)
return uint64(uint32(value)), nil
}
func readMaskedEqual(token string, syscallName string) (uint64, uint64, error) {
l := strings.Split(token, "|")
if len(l) != 2 {
return 0, 0, fmt.Errorf("cannot parse masked equal: unexpected number of tokens %v", len(l))
}
value, err := readNumber(l[0], syscallName)
if err != nil {
return 0, 0, err
}
value2, err := readNumber(l[1], syscallName)
if err != nil {
return 0, 0, err
}
return value, value2, nil
}
var (
errnoOnExplicitDenial int16 = C.EACCES
errnoOnImplicitDenial int16 = C.EPERM
)
func parseLine(line string, secFilterAllow, secFilterDeny *seccomp.ScmpFilter) error {
// ignore comments and empty lines
if strings.HasPrefix(line, "#") || line == "" {
return nil
}
secFilter := secFilterAllow
// regular line
tokens := strings.Fields(line)
if len(tokens[1:]) > ScArgsMaxlength {
return fmt.Errorf("too many arguments specified for syscall '%s' in line %q", tokens[0], line)
}
// allow the listed syscall but also support explicit denials as well by
// prefixing the line with a ~
action := seccomp.ActAllow
// fish out syscall
syscallName := tokens[0]
if strings.HasPrefix(syscallName, "~") {
action = seccomp.ActErrno.SetReturnCode(errnoOnExplicitDenial)
syscallName = syscallName[1:]
secFilter = secFilterDeny
}
secSyscall, err := seccomp.GetSyscallFromName(syscallName)
if err != nil {
// FIXME: use structed error in libseccomp-golang when
// https://github.com/seccomp/libseccomp-golang/pull/26
// gets merged. For now, ignore
// unknown syscalls
return nil
}
var conds []seccomp.ScmpCondition
for pos, arg := range tokens[1:] {
var cmpOp seccomp.ScmpCompareOp
var value, value2 uint64
var err error
if arg == "-" { // skip arg
continue
}
if strings.HasPrefix(arg, ">=") {
cmpOp = seccomp.CompareGreaterEqual
value, err = readNumber(arg[2:], syscallName)
} else if strings.HasPrefix(arg, "<=") {
cmpOp = seccomp.CompareLessOrEqual
value, err = readNumber(arg[2:], syscallName)
} else if strings.HasPrefix(arg, "!") {
cmpOp = seccomp.CompareNotEqual
value, err = readNumber(arg[1:], syscallName)
} else if strings.HasPrefix(arg, "<") {
cmpOp = seccomp.CompareLess
value, err = readNumber(arg[1:], syscallName)
} else if strings.HasPrefix(arg, ">") {
cmpOp = seccomp.CompareGreater
value, err = readNumber(arg[1:], syscallName)
} else if strings.HasPrefix(arg, "|") {
cmpOp = seccomp.CompareMaskedEqual
value, err = readNumber(arg[1:], syscallName)
value2 = value
} else if strings.Contains(arg, "|") {
cmpOp = seccomp.CompareMaskedEqual
value, value2, err = readMaskedEqual(arg, syscallName)
} else if strings.HasPrefix(arg, "u:") {
cmpOp = seccomp.CompareEqual
value, err = findUid(arg[2:])
if err != nil {
return fmt.Errorf("cannot parse token %q (line %q): %v", arg, line, err)
}
} else if strings.HasPrefix(arg, "g:") {
cmpOp = seccomp.CompareEqual
value, err = findGid(arg[2:])
if err != nil {
return fmt.Errorf("cannot parse token %q (line %q): %v", arg, line, err)
}
} else {
cmpOp = seccomp.CompareEqual
value, err = readNumber(arg, syscallName)
}
if err != nil {
return fmt.Errorf("cannot parse token %q (line %q)", arg, line)
}
// For now only support EQ with negative args. If changing
// this, be sure to adjust readNumber accordingly and use
// libseccomp carefully.
if syscallsWithNegArgsMaskHi32[syscallName] {
if cmpOp != seccomp.CompareEqual {
return fmt.Errorf("cannot parse token %q (line %q): unsupported comparison", arg, line)
}
}
var scmpCond seccomp.ScmpCondition
if cmpOp == seccomp.CompareMaskedEqual {
scmpCond, err = seccomp.MakeCondition(uint(pos), cmpOp, value, value2)
} else if syscallsWithNegArgsMaskHi32[syscallName] {
scmpCond, err = seccomp.MakeCondition(uint(pos), seccomp.CompareMaskedEqual, 0xFFFFFFFF, value)
} else {
scmpCond, err = seccomp.MakeCondition(uint(pos), cmpOp, value)
}
if err != nil {
return fmt.Errorf("cannot parse line %q: %s", line, err)
}
conds = append(conds, scmpCond)
}
// Default to adding a precise match if possible. Otherwise
// let seccomp figure out the architecture specifics.
if err = secFilter.AddRuleConditionalExact(secSyscall, action, conds); err != nil {
err = secFilter.AddRuleConditional(secSyscall, action, conds)
}
if err != nil {
return fmt.Errorf("cannot add rule for line %q: %v", line, err)
}
return nil
}
// used to mock in tests
var (
archDpkgArchitecture = arch.DpkgArchitecture
archDpkgKernelArchitecture = arch.DpkgKernelArchitecture
)
var (
dpkgArchitecture = archDpkgArchitecture()
dpkgKernelArchitecture = archDpkgKernelArchitecture()
)
// For architectures that support a compat architecture, when the
// kernel and userspace match, add the compat arch, otherwise add
// the kernel arch to support the kernel's arch (eg, 64bit kernels with
// 32bit userspace).
func addSecondaryArches(secFilter *seccomp.ScmpFilter) error {
// note that all architecture strings are in the dpkg
// architecture notation
var compatArch seccomp.ScmpArch
// common case: kernel and userspace have the same arch. We
// add a compat architecture for some architectures that
// support it, e.g. on amd64 kernel and userland, we add
// compat i386 syscalls.
if dpkgArchitecture == dpkgKernelArchitecture {
switch archDpkgArchitecture() {
case "amd64":
compatArch = seccomp.ArchX86
case "arm64":
compatArch = seccomp.ArchARM
case "ppc64":
compatArch = seccomp.ArchPPC
}
} else {
// less common case: kernel and userspace have different archs
// so add a compat architecture that matches the kernel. E.g.
// an amd64 kernel with i386 userland needs the amd64 secondary
// arch added to support specialized snaps that might
// conditionally call 64bit code when the kernel supports it.
// Note that in this case snapd requests i386 (or arch 'all')
// snaps. While unusual from a traditional Linux distribution
// perspective, certain classes of embedded devices are known
// to use this configuration.
compatArch = DpkgArchToScmpArch(archDpkgKernelArchitecture())
}
if compatArch != seccomp.ArchInvalid {
return secFilter.AddArch(compatArch)
}
return nil
}
func preprocess(content []byte) (unrestricted, complain bool) {
scanner := bufio.NewScanner(bytes.NewBuffer(content))
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
switch line {
case "@unrestricted":
unrestricted = true
case "@complain":
complain = true
}
}
return unrestricted, complain
}
// With golang-seccomp <= 0.9.0, seccomp.ActLog is not available so guess
// at the ActLog value by adding one to ActAllow and then verify that the
// string representation is what we expect for ActLog. The value and string is
// defined in https://github.com/seccomp/libseccomp-golang/pull/29.
//
// Ultimately, the fix for this workaround is to be able to use the GetApi()
// function created in the PR above. It'll tell us if the kernel, libseccomp,
// and libseccomp-golang all support ActLog, but GetApi() is also not available
// in golang-seccomp <= 0.9.0.
const actLog seccomp.ScmpAction = seccomp.ActAllow + 1
func actLogSupported() bool {
return actLog.String() == "Action: Log system call"
}
func complainAction() seccomp.ScmpAction {
// XXX: Work around some distributions not having a new enough
// libseccomp-golang that declares ActLog.
if actLogSupported() {
return actLog
}
// Because ActLog is functionally ActAllow with logging, if we don't
// support ActLog, fallback to ActAllow.
return seccomp.ActAllow
}
var osCreateTemp = os.CreateTemp
func exportBPF(fout *os.File, filter *seccomp.ScmpFilter) (bpfLen int64, err error) {
// TODO: use a common way to handle prefixed errors across snapd
errPrefixFmt := "cannot export bpf filter: %w"
oldPos, err := fout.Seek(0, io.SeekCurrent)
if err != nil {
return 0, fmt.Errorf(errPrefixFmt, err)
}
if err := filter.ExportBPF(fout); err != nil {
return 0, fmt.Errorf(errPrefixFmt, err)
}
nowPos, err := fout.Seek(0, io.SeekCurrent)
if err != nil {
return 0, fmt.Errorf(errPrefixFmt, err)
}
return nowPos - oldPos, nil
}
// New .bin2 seccomp files are composed by the following header, and potentially one
// allow filter and/or one deny filter (if lenAllowFilter and lenDenyFilter are greater
// than 0 respectively). When more than one filter is loaded, the kernel applies
// the most restrictive action, thus any explicit deny will take precedence.
// This struct needs to be in sync with seccomp-support.c
type scSeccompFileHeader struct {
Header [2]byte
Version byte
// flags
Unrestricted byte
// unused
Padding [4]byte
// location of allow/deny, all offsets/len in bytes
LenAllowFilter uint32
LenDenyFilter uint32
// reserved for future use
Reserved2 [112]byte
}
func writeUnrestrictedFilter(outFile string) error {
hdr := scSeccompFileHeader{
Header: [2]byte{'S', 'C'},
Version: 0x1,
// tell snap-confine
Unrestricted: 0x1,
}
fout, err := osutil.NewAtomicFile(outFile, 0644, 0, osutil.NoChown, osutil.NoChown)
if err != nil {
return err
}
defer fout.Cancel()
if err := binary.Write(fout, arch.Endian(), hdr); err != nil {
return err
}
return fout.Commit()
}
func writeSeccompFilter(outFile string, filterAllow, filterDeny *seccomp.ScmpFilter) error {
fout, err := osutil.NewAtomicFile(outFile, 0644, 0, osutil.NoChown, osutil.NoChown)
if err != nil {
return err
}
defer fout.Cancel()
// Write preliminary header because we don't know the sizes of the
// seccomp filters yet and the only way to know is to export to
// a file (until seccomp_export_bpf_mem() becomes available)
hdr := scSeccompFileHeader{
Header: [2]byte{'S', 'C'},
Version: 0x1,
}
if err := binary.Write(fout, arch.Endian(), hdr); err != nil {
return err
}
allowSize, err := exportBPF(fout.File, filterAllow)
if err != nil {
return err
}
denySize, err := exportBPF(fout.File, filterDeny)
if err != nil {
return err
}
// now write final header
hdr.LenAllowFilter = uint32(allowSize)
hdr.LenDenyFilter = uint32(denySize)
if _, err := fout.Seek(0, io.SeekStart); err != nil {
return err
}
if err := binary.Write(fout, arch.Endian(), hdr); err != nil {
return err
}
return fout.Commit()
}
func compile(content []byte, out string) error {
var err error
var secFilterAllow, secFilterDeny *seccomp.ScmpFilter
unrestricted, complain := preprocess(content)
switch {
case unrestricted:
return writeUnrestrictedFilter(out)
case complain:
var complainAct seccomp.ScmpAction = complainAction()
secFilterAllow, err = seccomp.NewFilter(complainAct)
if err != nil {
if complainAct != seccomp.ActAllow {
// ActLog is only supported in newer versions
// of the kernel, libseccomp, and
// libseccomp-golang. Attempt to fall back to
// ActAllow before erroring out.
complainAct = seccomp.ActAllow
secFilterAllow, err = seccomp.NewFilter(complainAct)
}
}
if err != nil {
return fmt.Errorf("cannot create allow seccomp filter: %s", err)
}
// Deny filter uses "act allow" as a default action, as it is only
// populated with deny rules. Any matching it does results in an
// explicit denial. When seccomp profiles are loaded the most
// restrictive action is used, so without any matching allow rules in
// the same filter, all system calls would be forever denied.
secFilterDeny, err = seccomp.NewFilter(seccomp.ActAllow)
if err != nil {
return fmt.Errorf("cannot create deny seccomp filter: %s", err)
}
// Set unrestricted to 'true' to fallback to the pre-ActLog
// behavior of simply setting the allow filter without adding
// any rules.
if complainAct == seccomp.ActAllow {
unrestricted = true
}
default:
secFilterAllow, err = seccomp.NewFilter(seccomp.ActErrno.SetReturnCode(errnoOnImplicitDenial))
if err != nil {
return fmt.Errorf("cannot create seccomp filter: %s", err)
}
// Deny filter uses "act allow" as a default action, as it is only
// populated with deny rules. Any matching it does results in an
// explicit denial. When seccomp profiles are loaded the most
// restrictive action is used, so without any matching allow rules in
// the same filter, all system calls would be forever denied.
secFilterDeny, err = seccomp.NewFilter(seccomp.ActAllow)
if err != nil {
return fmt.Errorf("cannot create seccomp filter: %s", err)
}
}
if err := addSecondaryArches(secFilterAllow); err != nil {
return err
}
if err := addSecondaryArches(secFilterDeny); err != nil {
return err
}
if !unrestricted {
scanner := bufio.NewScanner(bytes.NewBuffer(content))
for scanner.Scan() {
if err := parseLine(scanner.Text(), secFilterAllow, secFilterDeny); err != nil {
return fmt.Errorf("cannot parse line: %s", err)
}
}
if scanner.Err(); err != nil {
return err
}
}
if osutil.GetenvBool("SNAP_SECCOMP_DEBUG") {
secFilterAllow.ExportPFC(os.Stdout)
secFilterDeny.ExportPFC(os.Stdout)
}
if err := writeSeccompFilter(out, secFilterAllow, secFilterDeny); err != nil {
return err
}
return nil
}
// caches for uid and gid lookups
var uidCache = make(map[string]uint64)
var gidCache = make(map[string]uint64)
// findUid returns the identifier of the given UNIX user name.
func findUid(username string) (uint64, error) {
if uid, ok := uidCache[username]; ok {
return uid, nil
}
if !osutil.IsValidSnapSystemUsername(username) {
return 0, fmt.Errorf("%q must be a valid username", username)
}
uid, err := osutil.FindUid(username)
if err == nil {
uidCache[username] = uid
}
return uid, err
}
// findGid returns the identifier of the given UNIX group name.
func findGid(group string) (uint64, error) {
if gid, ok := gidCache[group]; ok {
return gid, nil
}
if !osutil.IsValidSnapSystemUsername(group) {
return 0, fmt.Errorf("%q must be a valid group name", group)
}
gid, err := osutil.FindGid(group)
if err == nil {
gidCache[group] = gid
}
return gid, err
}
func showSeccompLibraryVersion() error {
major, minor, micro := seccomp.GetLibraryVersion()
fmt.Fprintf(os.Stdout, "%d.%d.%d\n", major, minor, micro)
return nil
}
func dump(what, prefix string) error {
f, err := os.Open(what)
if err != nil {
return err
}
defer f.Close()
var hdr scSeccompFileHeader
if err := binary.Read(f, arch.Endian(), &hdr); err != nil {
return fmt.Errorf("cannot read header: %w", err)
}
if !bytes.Equal(hdr.Header[:], []byte{'S', 'C'}) || hdr.Version != 0x01 {
return fmt.Errorf("unsupported header: %x version %v", hdr.Header, hdr.Version)
}
var allowRules bytes.Buffer
var denyRules bytes.Buffer
if _, err := io.CopyN(&allowRules, f, int64(hdr.LenAllowFilter)); err != nil {
return fmt.Errorf("cannot copy allow rules: %w", err)
}
if _, err := io.CopyN(&denyRules, f, int64(hdr.LenDenyFilter)); err != nil {
return fmt.Errorf("cannot copy deny rules: %w", err)
}
if err := os.WriteFile(prefix+".allow", allowRules.Bytes(), 0644); err != nil {
return fmt.Errorf("cannot write allow rules to file: %w", err)
}
if err := os.WriteFile(prefix+".deny", denyRules.Bytes(), 0644); err != nil {
// TODO remove allow file?
return fmt.Errorf("cannot write deny rules to file: %w", err)
}
return nil
}
func main() {
var err error
var content []byte
if len(os.Args) < 2 {
fmt.Printf("%s: need a command\n", os.Args[0])
os.Exit(1)
}
cmd := os.Args[1]
switch cmd {
case "compile":
if len(os.Args) < 4 {
fmt.Println("compile needs an input and output file")
os.Exit(1)
}
content, err = os.ReadFile(os.Args[2])
if err != nil {
break
}
err = compile(content, os.Args[3])
case "library-version":
err = showSeccompLibraryVersion()
case "version-info":
err = showVersionInfo()
case "dump":
if len(os.Args) < 4 {
fmt.Println("dump needs <file> and <prefix>")
os.Exit(1)
}
what := os.Args[2]
prefix := os.Args[3]
err = dump(what, prefix)
default:
err = fmt.Errorf("unsupported argument %q", cmd)
}
if err != nil {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
os.Exit(1)
}
}
|