1#!/bin/bash -p 2 3# Copyright (c) 2009 The Chromium Authors. All rights reserved. 4# Use of this source code is governed by a BSD-style license that can be 5# found in the LICENSE file. 6 7# Called as root after Keystone ticket promotion to change the owner, group, 8# and permissions on the application. The application bundle and its contents 9# are set to owner root, group wheel, and to be writable only by root, but 10# readable and executable (when appropriate) by everyone. 11# 12# Note that this script will be invoked with the real user ID set to the 13# user's ID, but the effective user ID set to 0 (root). bash -p is used on 14# the first line to prevent bash from setting the effective user ID to the 15# real user ID (dropping root privileges). 16# 17# WARNING: This script is NOT currently run when the Keystone ticket is 18# promoted during application installation directly from the disk image, 19# because the installation process itself handles the same permission fix-ups 20# that this script normally would. 21 22set -e 23 24# This script runs as root, so be paranoid about things like ${PATH}. 25export PATH="/usr/bin:/usr/sbin:/bin:/sbin" 26 27# Output the pid to stdout before doing anything else. See 28# chrome/browser/ui/cocoa/authorization_util.h. 29echo "${$}" 30 31if [ ${#} -ne 1 ] ; then 32 echo "usage: ${0} APP" >& 2 33 exit 2 34fi 35 36APP="${1}" 37 38# Make sure that APP is an absolute path and that it exists. 39if [ -z "${APP}" ] || [ "${APP:0:1}" != "/" ] || [ ! -d "${APP}" ] ; then 40 echo "${0}: must provide an absolute path naming an extant directory" >& 2 41 exit 3 42fi 43 44OWNER_GROUP="root:wheel" 45chown -Rh "${OWNER_GROUP}" "${APP}" >& /dev/null 46 47CHMOD_MODE="a+rX,u+w,go-w" 48chmod -R "${CHMOD_MODE}" "${APP}" >& /dev/null 49 50# On the Mac, or at least on HFS+, symbolic link permissions are significant, 51# but chmod -R and -h can't be used together. Do another pass to fix the 52# permissions on any symbolic links. 53find "${APP}" -type l -exec chmod -h "${CHMOD_MODE}" {} + >& /dev/null 54 55exit 0 56