mirror of
https://github.com/munki/munki.git
synced 2026-01-25 08:29:22 -06:00
************************************************************************************************************************************************************************************ https://github.com/munki/munki/pull/689#pullrequestreview-17297080 Commit based on comments by Greg Neagle on what to fix: munki#689 (master...ryanyu91:master) FileRepo: Move FileRepo to munkilib/plugins/ Repo: Change plugins location for FileRepo munkiimport: Change plugins location for FileRepo in configure. ************************************************************************************************************************************************************************************ https://github.com/munki/munki/pull/689#pullrequestreview-17297080 Commit based on comments by Greg Neagle on what to fix: munki#689 (master...ryanyu91:master) FileRepo: Changed FileRepo class definition to not be old-style class iconutils: Deleted pkg_path join since passing in file anyways munkiimport: for --configure option, changed for relative paths support from same directory Repo: Changed for relative paths support from same directory ************************************************************************************************************************************************************************************ https://github.com/munki/munki/pull/689#pullrequestreview-16492427 Commit based on comments by Greg Neagle on what to fix: munki#689 (master...ryanyu91:master) makecatalogs: removed debugging print statements manifestutil: check if repo is initialized before checking if it is mounted munkiimport: check if repo is initialized before checking if it is mounted for def add_icon_hash_to_pkginfo(pkginfo):, not opening file (icon_path) anymore WE_MOUNTED_THE_REPO is a repo attribute now, instead of a global variable FileRepo: removed duplicate/unused imports changed class to not be old-style updated glob method since pkgs was uninitialized made WE_MOUNTED_THE_REPO from global variable to FileRepo attribute variable initialized to False iconimporter: updated Repo call to include 3 parameters now.. changed old find_items_to_check calls to new call: findItemsToCheck Repo.py Added support for relative paths for importing plugins ************************************************************************************************************************************************************************************ Commit based on comments by Greg Neagle on what to fix: munki#685 (master...ryanyu91:master) IconImporter: Not opening DMG and then mounting it anymore, directly mounting like how it was before ManifestUtil: Checking if the repo is mounted as well as if we (munki) mounted it. Only this will display prompt whether we want to unmount or not FileRepo.py, Repo.py: not hardcoding import path anymore FileRepo - added 10.12 mounting fileshares code ************************************************************************************************************************************************************************************ Changed Files: code/client/munkiimport code/client/iconimporter code/client/makecatalogs code/client/manifestutil code/client/munkilib/iconutils.py Added Files: code/client/munkilib/FileRepo.py code/client/munkilib/Repo.py Reason For Changes: The purpose for this change is to enable plugins to munki that will allow writes to the munki repo to be customized. Changes: The methods used to write to the munki repo are the target of this modification. A plugin can create new methods for overwriting the default behavior of writing to the munki repo. The default behavior is retained in the absence of a plugin. This is accomplished via the introduction of FileRepo.py which continues to simply write changes to the munki repo. A plugin can be introduced to change this default behavior and allow munki repo writes to be redirected as desired by the plugin author. In order to accomplish this we have refactored all of the os.path.* methods, as well as the mount, unmount and available methods from the following tools: (iconimporter, makecatalogs, munkiimport, manifestutil, iconutils), and put them into a different python script to be used as a library or common code module. By default, these are now in the FileRepo.py module. The plugin can be used to overwrite this common code module. In addition to the above described changes, we also made the following changes to support this plugin concept: • Added the ability to add a plugin either via the command line or via munkiimport –configure • The code will look for custom plugins in the /usr/local/munki/munkilib/plugins/ directory • If plugin is found in the plugins directory, munkiimport --configure will give the option to type in the plugin name. For example, if you plugin is Foo.py, you could specify a plugin name of Foo in munkiimport --configure • If no plugin is found the FileRepo.py module will be used as the default common code module for writing to the munki repo • Add the ability to set the plugin via the --plugin option for the following tools (makecatalogs, munkiimport, manifestutil) Testing Tested with munkiimport on local filesystem/network shares/our own custom plugins Tested manifestutil on local filesystem/network Verified through regression testing, all features of munkiimport, makecatalogs, iconimporter, manifestutil from before all still work (local filesystem/network shares)
281 lines
10 KiB
Python
281 lines
10 KiB
Python
#!/usr/bin/python
|
|
# encoding: utf-8
|
|
#
|
|
# Copyright 2016 Centrify Corporation.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the 'License');
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an 'AS IS' BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""
|
|
FileRepo
|
|
Created by Centrify Corporation 2016-06-02.
|
|
Implementation for accessing a repo via direct file access, including
|
|
a remote repo mounted via AFP, SMB, or NFS.
|
|
"""
|
|
|
|
from munkilib.munkicommon import listdir
|
|
import os
|
|
import sys
|
|
import subprocess
|
|
import objc
|
|
import glob
|
|
|
|
# NetFS share mounting code borrowed and liberally adapted from Michael Lynn's
|
|
# work here: https://gist.github.com/pudquick/1362a8908be01e23041d
|
|
try:
|
|
import errno
|
|
import getpass
|
|
from CoreFoundation import CFURLCreateWithString
|
|
|
|
class Attrdict(dict):
|
|
'''Custom dict class'''
|
|
__getattr__ = dict.__getitem__
|
|
__setattr__ = dict.__setitem__
|
|
|
|
NetFS = Attrdict()
|
|
# Can cheat and provide 'None' for the identifier, it'll just use
|
|
# frameworkPath instead
|
|
# scan_classes=False means only add the contents of this Framework
|
|
NetFS_bundle = objc.initFrameworkWrapper(
|
|
'NetFS', frameworkIdentifier=None,
|
|
frameworkPath=objc.pathForFramework('NetFS.framework'),
|
|
globals=NetFS, scan_classes=False)
|
|
|
|
# https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/
|
|
# ObjCRuntimeGuide/Articles/ocrtTypeEncodings.html
|
|
# Fix NetFSMountURLSync signature
|
|
del NetFS['NetFSMountURLSync']
|
|
objc.loadBundleFunctions(
|
|
NetFS_bundle, NetFS, [('NetFSMountURLSync', 'i@@@@@@o^@')])
|
|
NETFSMOUNTURLSYNC_AVAILABLE = True
|
|
except (ImportError, KeyError):
|
|
NETFSMOUNTURLSYNC_AVAILABLE = False
|
|
|
|
if NETFSMOUNTURLSYNC_AVAILABLE:
|
|
class ShareMountException(Exception):
|
|
'''An exception raised if share mounting failed'''
|
|
pass
|
|
|
|
|
|
class ShareAuthenticationNeededException(ShareMountException):
|
|
'''An exception raised if authentication is needed'''
|
|
pass
|
|
|
|
|
|
def mount_share(share_url):
|
|
'''Mounts a share at /Volumes, returns the mount point or raises an
|
|
error'''
|
|
sh_url = CFURLCreateWithString(None, share_url, None)
|
|
# Set UI to reduced interaction
|
|
open_options = {NetFS.kNAUIOptionKey: NetFS.kNAUIOptionNoUI}
|
|
# Allow mounting sub-directories of root shares
|
|
mount_options = {NetFS.kNetFSAllowSubMountsKey: True}
|
|
# Mount!
|
|
result, output = NetFS.NetFSMountURLSync(
|
|
sh_url, None, None, None, open_options, mount_options, None)
|
|
# Check if it worked
|
|
if result != 0:
|
|
if result in (errno.ENOTSUP, errno.EAUTH):
|
|
# errno.ENOTSUP is returned if an afp share needs a login
|
|
# errno.EAUTH is returned if authentication fails (SMB for sure)
|
|
raise ShareAuthenticationNeededException()
|
|
raise ShareMountException(
|
|
'Error mounting url "%s": %s, error %s'
|
|
% (share_url, os.strerror(result), result))
|
|
# Return the mountpath
|
|
return str(output[0])
|
|
|
|
|
|
def mount_share_with_credentials(share_url, username, password):
|
|
'''Mounts a share at /Volumes, returns the mount point or raises an
|
|
error. Include username and password as parameters, not in the
|
|
share_path URL'''
|
|
sh_url = CFURLCreateWithString(None, share_url, None)
|
|
# Set UI to reduced interaction
|
|
open_options = {NetFS.kNAUIOptionKey: NetFS.kNAUIOptionNoUI}
|
|
# Allow mounting sub-directories of root shares
|
|
mount_options = {NetFS.kNetFSAllowSubMountsKey: True}
|
|
# Mount!
|
|
result, output = NetFS.NetFSMountURLSync(
|
|
sh_url, None, username, password, open_options, mount_options, None)
|
|
# Check if it worked
|
|
if result != 0:
|
|
raise ShareMountException(
|
|
'Error mounting url "%s": %s, error %s'
|
|
% (share_url, os.strerror(result), result))
|
|
# Return the mountpath
|
|
return str(output[0])
|
|
|
|
|
|
def mount_share_url(share_url):
|
|
'''Mount a share url under /Volumes, prompting for password if needed
|
|
Raises ShareMountException if there's an error'''
|
|
try:
|
|
mount_share(share_url)
|
|
except ShareAuthenticationNeededException:
|
|
username = raw_input('Username: ')
|
|
password = getpass.getpass()
|
|
mount_share_with_credentials(share_url, username, password)
|
|
|
|
class FileRepo(object):
|
|
WE_MOUNTED_THE_REPO = False
|
|
'''Repo implementation that access a local or locally-mounted repo.'''
|
|
def __init__(self, path, url):
|
|
self.path = path
|
|
self.url = url
|
|
|
|
def exists(self, subdir = None):
|
|
'''Returns true if the specified path exists in the repo'''
|
|
full_path = self.path
|
|
if subdir:
|
|
full_path = os.path.join(full_path, subdir)
|
|
return os.path.exists(full_path)
|
|
|
|
def isdir(self, path):
|
|
'''Returns true if the specified path exists in the repo
|
|
and is a directory.'''
|
|
return os.path.isdir(os.path.join(self.path, path))
|
|
|
|
def isfile(self, path):
|
|
'''Returns true if the specified path exists in the repo
|
|
and is a regular file.'''
|
|
return os.path.isfile(os.path.join(self.path, path))
|
|
|
|
def join(self, *args):
|
|
'''Combines path elements within the repo.'''
|
|
return os.path.join(*args)
|
|
|
|
def dirname(self, path):
|
|
'''Returns the directory portion of a path.'''
|
|
return os.path.dirname(path)
|
|
|
|
def basename(self, path):
|
|
'''Returns the filename portion of a path.'''
|
|
return os.path.basename(path)
|
|
|
|
def splitext(self, path):
|
|
'''Splits the base and extention parts of a path.'''
|
|
return os.path.splitext(path)
|
|
|
|
def mkdir(self, path, mode=0777):
|
|
'''Creates a directory within the repo.'''
|
|
return os.mkdir(os.path.join(self.path, path), mode)
|
|
|
|
def makedirs(self, path, mode=0777):
|
|
'''Creates a directory within the repo, including parent directories.'''
|
|
return os.makedirs(os.path.join(self.path, path), mode)
|
|
|
|
def listdir(self, path):
|
|
'''Lists the contents of a repo directory.'''
|
|
return listdir(os.path.join(self.path, path))
|
|
|
|
def remove(self, path):
|
|
'''Removes a file from the repo.'''
|
|
return os.remove(os.path.join(self.path, path))
|
|
|
|
def unlink(self, path):
|
|
'''Removes a file from the repo.'''
|
|
return os.unlink(os.path.join(self.path, path))
|
|
|
|
def get(self, src, dest):
|
|
'''Copies a file from the repo to a local file.'''
|
|
cmd = ['/bin/cp', os.path.join(self.path, src), dest]
|
|
return subprocess.call(cmd)
|
|
|
|
def put(self, src, dest):
|
|
'''Copies a local file to the repo.'''
|
|
cmd = ['/bin/cp', src, os.path.join(self.path, dest)]
|
|
return subprocess.call(cmd)
|
|
|
|
#
|
|
# Some callers open a file, but then use the local_path field
|
|
# to access it rather than reading or writing through the returned
|
|
# handle. For local repos those callers could just use the
|
|
# file name directly rather than opening it through this method,
|
|
# but for the CommandRepo implementation the local_path field
|
|
# will be a local temporary file that was copied from the remote
|
|
# repo and/or will be copied to the remote repo on close.
|
|
#
|
|
def open(self, path, mode='r'):
|
|
'''Opens a file in the repo.'''
|
|
class RepoFile(object):
|
|
def __init__(self, repo, repo_path, mode):
|
|
self.repo = repo
|
|
self.repo_path = repo_path
|
|
self.repo_mode = mode
|
|
self.file = open(self.repo_path, mode)
|
|
self.local_path = self.repo_path
|
|
|
|
def read(self):
|
|
return self.file.read()
|
|
|
|
return RepoFile(self, os.path.join(self.path, path), mode)
|
|
|
|
def mount(self):
|
|
'''Mounts the repo locally.'''
|
|
if os.path.exists(self.path):
|
|
return
|
|
if NETFSMOUNTURLSYNC_AVAILABLE:
|
|
try:
|
|
mount_share_url(self.url)
|
|
except ShareMountException, err:
|
|
print sys.stderr, err
|
|
return
|
|
else:
|
|
self.WE_MOUNTED_THE_REPO = True
|
|
return 0
|
|
else:
|
|
os.mkdir(self.path)
|
|
print self.url
|
|
print 'Attempting to mount fileshare %s:' % self.url
|
|
if self.url.startswith('afp:'):
|
|
cmd = ['/sbin/mount_afp', '-i', self.url, self.path]
|
|
elif self.url.startswith('smb:'):
|
|
cmd = ['/sbin/mount_smbfs', self.url[4:], self.path]
|
|
elif self.url.startswith('nfs://'):
|
|
cmd = ['/sbin/mount_nfs', self.url[6:], self.path]
|
|
else:
|
|
print >> sys.stderr, 'Unsupported filesystem URL!'
|
|
return
|
|
retcode = subprocess.call(cmd)
|
|
if retcode:
|
|
os.rmdir(self.path)
|
|
else:
|
|
self.WE_MOUNTED_THE_REPO = True
|
|
return retcode
|
|
|
|
def unmount(self):
|
|
'''Unmounts the repo.'''
|
|
retcode = 0
|
|
if os.path.exists(self.path):
|
|
cmd = ['/sbin/umount', self.path]
|
|
retcode = subprocess.call(cmd)
|
|
os.rmdir(self.path)
|
|
return retcode
|
|
|
|
def walk(self, path, **kwargs):
|
|
'''Walks a path in the repo, returning all files and subdirectories.
|
|
Only a subset of the features of os.walk() are supported.'''
|
|
for (dirpath, dirnames, filenames) in os.walk(os.path.join(self.path, path), **kwargs):
|
|
dirpath = dirpath[len(self.path) + 1:]
|
|
yield (dirpath, dirnames, filenames)
|
|
|
|
def glob(self, path, *args):
|
|
'''Expands a set of glob patterns within a repo path.'''
|
|
matches = []
|
|
original_dir = os.getcwd()
|
|
os.chdir(path)
|
|
for arg in args:
|
|
matches += glob.glob(arg)
|
|
os.chdir(original_dir)
|
|
return matches
|