# $NetBSD: check-perms.mk,v 1.13 2010/08/24 19:08:29 bad Exp $ # # This file checks that after installation of a package, all files and # directories of that package have sensible permissions set. # # To use this check in bulk builds, add # BULK_PREREQ+= sysutils/checkperms # to your mk.conf file. # # User-settable variables: # # CHECK_PERMS # Specifies whether the permissions check should be run at all. # # Possible values: yes, no. # # Default value: yes for PKG_DEVELOPER, no otherwise. # # Package-settable variables: # # CHECK_PERMS_SKIP # A list of shell patterns (like man/*) that should be excluded # from the check. Note that a * in a pattern also matches a slash # in a pathname. # # Default value: empty. # # CHECK_PERMS_AUTOFIX # If set to yes, any unusual permissions are fixed automatically. # # Possible values: yes, no. # _VARGROUPS+= check-perms _USER_VARS.check-perms= CHECK_PERMS _PKG_VARS.check-perms= CHECK_PERMS_SKIP CHECK_PERMS_AUTOSKIP .if defined(PKG_DEVELOPER) && ${PKG_DEVELOPER} != "no" CHECK_PERMS?= yes .else CHECK_PERMS?= no .endif CHECK_PERMS_SKIP?= # none CHECK_PERMS_AUTOFIX?= no # The checkperms command does not yet support Interix with the -c flag. # See PR 34968. .if !empty(MACHINE_PLATFORM:MInterix-*-*) _CHECK_PERMS_FLAGS= .elif !empty(CHECK_PERMS_AUTOFIX:M[Yy][Ee][Ss]) _CHECK_PERMS_FLAGS= -cff .else _CHECK_PERMS_FLAGS= -c .endif .if !empty(CHECK_PERMS:M[Yy][Ee][Ss]) BUILD_DEPENDS+= checkperms>=1.1:../../sysutils/checkperms privileged-install-hook: _check-perms .endif _CHECK_PERMS_CMD= ${LOCALBASE}/bin/checkperms _CHECK_PERMS_GETDIRS_AWK= \ /.*/ { \ print $$0; \ dir = $$0; \ while (sub("/[^/]*$$", "", dir) && dir != "") { \ if (!(dir in dirs)) { \ dirs[dir] = "done"; \ print dir; \ } \ } \ } _check-perms: .PHONY @${STEP_MSG} "Checking file permissions in ${PKGNAME}" ${RUN} ${PKG_INFO} -qe "checkperms>=1.1" \ || { \ ${WARNING_MSG} "[check-perms.mk] Skipping file permissions check."; \ ${WARNING_MSG} "[check-perms.mk] Install sysutils/checkperms to enable this check."; \ exit 0; \ }; \ ${PKG_FILELIST_CMD} \ | sort \ | sed -e 's,\\,\\\\,g' \ | while read file; do \ case "$$file" in \ ${CHECK_PERMS_SKIP:@p@${PREFIX}/${p}|${p}) continue ;;@}\ *) ;; \ esac; \ printf "%s\\n" "${DESTDIR}$$file"; \ done \ | awk ${_CHECK_PERMS_GETDIRS_AWK:Q} \ | ${_CHECK_PERMS_CMD} ${_CHECK_PERMS_FLAGS}