PN: tpm2-abrmd
PV: 2.4.0
PR: r0
PKGV: 2.4.0
PKGR: r0.0
LICENSE: BSD-2-Clause
DESCRIPTION: This is a system daemon implementing the TPM2 access broker (TAB) & Resource Manager (RM) spec from the TCG. The daemon (tpm2-abrmd) is implemented using Glib and the GObject system. In this documentation and in the code we use `tpm2-abrmd` and `tabrmd` interchangeably. 
SUMMARY: TPM2 Access Broker & Resource Manager
RDEPENDS:tpm2-abrmd: base-files base-passwd shadow tpm2-tss glib-2.0 (>= 2.68.4) glibc (>= 2.34) libtss2 (>= 3.0.3) libtss2-mu (>= 3.0.3)
RRECOMMENDS:tpm2-abrmd:  update-rc.d
SECTION: security/tpm
PKG:tpm2-abrmd: tpm2-abrmd
FILES:tpm2-abrmd: /usr/bin/* /usr/sbin/* /usr/libexec/* /usr/lib/lib*.so.*             /etc /com /var             /bin/* /sbin/*             /lib/*.so.*             /lib/udev /usr/lib/udev             /lib/udev /usr/lib/udev             /usr/share/tpm2-abrmd /usr/lib/tpm2-abrmd/*             /usr/share/pixmaps /usr/share/applications             /usr/share/idl /usr/share/omf /usr/share/sounds             /usr/lib/bonobo/servers /usr/lib/systemd/system-preset \t\t/usr/share/dbus-1 /lib/systemd/system-preset/98-tpm2-abrmd.preset /lib/systemd/system-preset/98-tpm2-abrmd.preset /lib/systemd/system/tpm2-abrmd.service
FILES_INFO:tpm2-abrmd: {"/etc/dbus-1/system.d/tpm2-abrmd.conf": 546, "/etc/default/tpm2-abrmd": 97, "/etc/init.d/tpm2-abrmd": 1464, "/lib/systemd/system-preset/98-tpm2-abrmd.preset": 54, "/lib/systemd/system/tpm2-abrmd.service": 371, "/usr/lib/libtss2-tcti-tabrmd.so.0": 28, "/usr/lib/libtss2-tcti-tabrmd.so.0.0.0": 186280, "/usr/lib/systemd/system-preset/tpm2-abrmd.preset": 26, "/usr/sbin/tpm2-abrmd": 165928, "/usr/share/dbus-1/system-services/com.intel.tss2.Tabrmd.service": 93}
pkg_postinst:tpm2-abrmd: #!/bin/sh\nset -e\nif [ -n "$D" -o ! -d /run/systemd/system ] && type update-rc.d >/dev/null 2>/dev/null; then\n\tif [ -n "$D" ]; then\n\t\tOPT="-r $D"\n\telse\n\t\tOPT="-s"\n\tfi\n\tupdate-rc.d $OPT tpm2-abrmd start 99 2 3 4 5 . stop 19 0 1 6 .\nfi\nif systemctl >/dev/null 2>/dev/null; then\n\tOPTS=""\n\n\tif [ -n "$D" ]; then\n\t\tOPTS="--root=$D"\n\tfi\n\n\tif [ "disable" = "enable" ]; then\n\t\tfor service in tpm2-abrmd.service; do\n\t\t\tsystemctl ${OPTS} enable "$service"\n\t\tdone\n\tfi\n\n\tif [ -z "$D" ]; then\n\t\tsystemctl daemon-reload\n\t\tsystemctl preset tpm2-abrmd.service\n\n\t\tif [ "disable" = "enable" ]; then\n\t\t\tsystemctl --no-block restart tpm2-abrmd.service\n\t\tfi\n\tfi\nfi\nif systemctl >/dev/null 2>/dev/null; then\n\tOPTS=""\n\n\tif [ -n "$D" ]; then\n\t\tOPTS="--root=$D"\n\tfi\n\n\tif [ "disable" = "enable" ]; then\n\t\tfor service in tpm2-abrmd.service; do\n\t\t\tsystemctl ${OPTS} enable "$service"\n\t\tdone\n\tfi\n\n\tif [ -z "$D" ]; then\n\t\tsystemctl daemon-reload\n\t\tsystemctl preset tpm2-abrmd.service\n\n\t\tif [ "disable" = "enable" ]; then\n\t\t\tsystemctl --no-block restart tpm2-abrmd.service\n\t\tfi\n\tfi\nfi\nif [ x"$D" = "x" ]; then\n\tif [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi\nfi\n
pkg_postrm:tpm2-abrmd: #!/bin/sh\nset -e\nif [ -n "$D" -o ! -d /run/systemd/system ] && type update-rc.d >/dev/null 2>/dev/null; then\n\tif [ -n "$D" ]; then\n\t\tOPT="-f -r $D"\n\telse\n\t\tOPT="-f"\n\tfi\n\tupdate-rc.d $OPT tpm2-abrmd remove\nfi\n
pkg_preinst:tpm2-abrmd: #!/bin/sh\nset -e\nbbnote () {\n\techo "NOTE: $*"\n}\nbbwarn () {\n\techo "WARNING: $*"\n}\nbbfatal () {\n\techo "ERROR: $*"\n\texit 1\n}\nperform_groupadd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "tpm2-abrmd: Performing groupadd with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ print $NF }'`\n\tlocal group_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\tif test "x$group_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupadd \\$opts\\" || true\n\t\tgroup_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\t\tif test "x$group_exists" = "x"; then\n\t\t\tbbfatal "tpm2-abrmd: groupadd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "tpm2-abrmd: group $groupname already exists, not re-creating it"\n\tfi\n}\nperform_useradd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "tpm2-abrmd: Performing useradd with [$opts]"\n\tlocal username=`echo "$opts" | awk '{ print $NF }'`\n\tlocal user_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\tif test "x$user_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c  \\"$PSEUDO useradd \\$opts\\" || true\n\t\tuser_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\t\tif test "x$user_exists" = "x"; then\n\t\t\tbbfatal "tpm2-abrmd: useradd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "tpm2-abrmd: user $username already exists, not re-creating it"\n\tfi\n}\nperform_groupmems () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "tpm2-abrmd: Performing groupmems with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-g" || $i == "--group") print $(i+1) }'`\n\tlocal username=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-a" || $i == "--add") print $(i+1) }'`\n\tbbnote "tpm2-abrmd: Running groupmems command with group $groupname and user $username"\n\tlocal mem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*$" $rootdir/etc/group || true`"\n\tif test "x$mem_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupmems \\$opts\\" || true\n\t\tmem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*$" $rootdir/etc/group || true`"\n\t\tif test "x$mem_exists" = "x"; then\n\t\t\tbbfatal "tpm2-abrmd: groupmems command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "tpm2-abrmd: group $groupname already contains $username, not re-adding it"\n\tfi\n}\nOPT=""\nSYSROOT=""\n\nif test "x$D" != "x"; then\n\t# Installing into a sysroot\n\tSYSROOT="$D"\n\tOPT="--root $D"\n\n\t# Make sure login.defs is there, this is to make debian package backend work\n\t# correctly while doing rootfs.\n\t# The problem here is that if /etc/login.defs is treated as a config file for\n\t# shadow package, then while performing preinsts for packages that depend on\n\t# shadow, there might only be /etc/login.def.dpkg-new there in root filesystem.\n\tif [ ! -e $D/etc/login.defs -a -e $D/etc/login.defs.dpkg-new ]; then\n\t    cp $D/etc/login.defs.dpkg-new $D/etc/login.defs\n\tfi\n\n\t# user/group lookups should match useradd/groupadd --root\n\texport PSEUDO_PASSWD="$SYSROOT"\nfi\n\n# If we're not doing a special SSTATE/SYSROOT install\n# then set the values, otherwise use the environment\nif test "x$UA_SYSROOT" = "x"; then\n\t# Installing onto a target\n\t# Add groups and users defined only for this package\n\tGROUPADD_PARAM="tss"\n\tUSERADD_PARAM="--system -M -d /var/lib/tpm -s /bin/false -g tss tss"\n\tGROUPMEMS_PARAM=""\nfi\n\n# Perform group additions first, since user additions may depend\n# on these groups existing\nif test "x`echo $GROUPADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupadd commands..."\n\t# Invoke multiple instances of groupadd for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupadd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $USERADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running useradd commands..."\n\t# Invoke multiple instances of useradd for parameter lists\n\t# separated by ';'\n\topts=`echo "$USERADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$USERADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_useradd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $GROUPMEMS_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupmems commands..."\n\t# Invoke multiple instances of groupmems for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupmems "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n
pkg_prerm:tpm2-abrmd: #!/bin/sh\nset -e\nif [ -n "$D" -o ! -d /run/systemd/system ] && [ -z "$D" -a -x "/etc/init.d/tpm2-abrmd" ]; then\n\t/etc/init.d/tpm2-abrmd stop || :\nfi\nif systemctl >/dev/null 2>/dev/null; then\n\tif [ -z "$D" ]; then\n\t\tsystemctl stop tpm2-abrmd.service\n\n\t\tsystemctl disable tpm2-abrmd.service\n\tfi\nfi\nif systemctl >/dev/null 2>/dev/null; then\n\tif [ -z "$D" ]; then\n\t\tsystemctl stop tpm2-abrmd.service\n\n\t\tsystemctl disable tpm2-abrmd.service\n\tfi\nfi\n
FILERPROVIDESFLIST:tpm2-abrmd: /usr/lib/libtss2-tcti-tabrmd.so.0.0.0
FILERPROVIDES:/usr/lib/libtss2-tcti-tabrmd.so.0.0.0:tpm2-abrmd:  libtss2-tcti-tabrmd.so.0()(64bit)
FILERDEPENDSFLIST:tpm2-abrmd: /etc/init.d/tpm2-abrmd /usr/lib/libtss2-tcti-tabrmd.so.0.0.0 /usr/sbin/tpm2-abrmd
FILERDEPENDS:/etc/init.d/tpm2-abrmd:tpm2-abrmd:  /bin/sh
FILERDEPENDS:/usr/lib/libtss2-tcti-tabrmd.so.0.0.0:tpm2-abrmd:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) libgio-2.0.so.0()(64bit) libgobject-2.0.so.0()(64bit) libglib-2.0.so.0()(64bit) libpthread.so.0()(64bit) libtss2-sys.so.1()(64bit) libtss2-mu.so.0()(64bit) libtss2-rc.so.0()(64bit) libtss2-tctildr.so.0()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/sbin/tpm2-abrmd:tpm2-abrmd:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) libgio-2.0.so.0()(64bit) libgobject-2.0.so.0()(64bit) libglib-2.0.so.0()(64bit) libtss2-sys.so.1()(64bit) libtss2-mu.so.0()(64bit) libtss2-tctildr.so.0()(64bit) libtss2-rc.so.0()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
PKGSIZE:tpm2-abrmd: 354887
