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

abi <abi/4.0>,

include <tunables/global>

@{exec_path} = @{bin}/gnome-weather /usr/share/org.gnome.Weather/org.gnome.Weather
@{att} = ""
profile gnome-weather /{{,usr/}bin/gnome-weather,usr/share/org.gnome.Weather/org.gnome.Weather} flags=(complain) {
  include <abstractions/base-strict>
  include <abstractions/common/gnome>
  include <abstractions/nameservice-strict>
  include <abstractions/p11-kit>
  include <abstractions/ssl_certs>

  network inet dgram,
  network inet stream,
  network inet6 dgram,
  network inet6 stream,
  network netlink raw,

  @{exec_path} mr,

  @{bin}/gjs-console rix,
  @{open_path}  rpx -> child-open-help,

  /usr/share/org.gnome.Weather/{,**} r,

  owner @{user_cache_dirs}/libgweather/{,**} rw,

        @{PROC}/sys/net/ipv6/conf/all/disable_ipv6 r,
  owner @{PROC}/@{pid}/mounts r,
  owner @{PROC}/@{pid}/task/@{tid}/stat r,

  deny owner @{user_share_dirs}/gvfs-metadata/* r,

  include if exists <local/gnome-weather>
}

# vim:syntax=apparmor
