# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2021 Mikhail Morfikov
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
# SPDX-License-Identifier: GPL-2.0-only

abi <abi/4.0>,

include <tunables/global>

@{exec_path} = @{bin}/last{,b}
@{att} = ""
profile last /{,usr/}bin/last{,b} flags=(complain) {
  include <abstractions/base-strict>
  include <abstractions/consoles>
  include <abstractions/nameservice-strict>
  include <abstractions/wutmp>

  # For the --dns flag
  network inet dgram,
  network inet6 dgram,
  network netlink raw,

  @{exec_path} mr,

  @{PROC}/@{pids}/loginuid r,

  /var/log/wtmp r,
  /var/log/btmp{,.@{int}} r,

  include if exists <local/last>
}

# vim:syntax=apparmor
