xref: /illumos-gate/usr/src/lib/pyzfs/common/allow.py (revision 681d9761e8516a7dc5ab6589e2dfe717777e1123)
1#! /usr/bin/python2.4
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25
26"""This module implements the "zfs allow" and "zfs unallow" subcommands.
27The only public interface is the zfs.allow.do_allow() function."""
28
29import zfs.util
30import zfs.dataset
31import optparse
32import sys
33import pwd
34import grp
35import errno
36
37_ = zfs.util._
38
39class FSPerms(object):
40	"""This class represents all the permissions that are set on a
41	particular filesystem (not including those inherited)."""
42
43	__slots__ = "create", "sets", "local", "descend", "ld"
44	__repr__ = zfs.util.default_repr
45
46	def __init__(self, raw):
47		"""Create a FSPerms based on the dict of raw permissions
48		from zfs.ioctl.get_fsacl()."""
49		# set of perms
50		self.create = set()
51
52		# below are { "Ntype name": set(perms) }
53		# where N is a number that we just use for sorting,
54		# type is "user", "group", "everyone", or "" (for sets)
55		# name is a user, group, or set name, or "" (for everyone)
56		self.sets = dict()
57		self.local = dict()
58		self.descend = dict()
59		self.ld = dict()
60
61		# see the comment in dsl_deleg.c for the definition of whokey
62		for whokey in raw.keys():
63			perms = raw[whokey].keys()
64			whotypechr = whokey[0].lower()
65			ws = whokey[3:]
66			if whotypechr == "c":
67				self.create.update(perms)
68			elif whotypechr == "s":
69				nwho = "1" + ws
70				self.sets.setdefault(nwho, set()).update(perms)
71			else:
72				if whotypechr == "u":
73					try:
74						name = pwd.getpwuid(int(ws)).pw_name
75					except KeyError:
76						name = ws
77					nwho = "1user " + name
78				elif whotypechr == "g":
79					try:
80						name = grp.getgrgid(int(ws)).gr_name
81					except KeyError:
82						name = ws
83					nwho = "2group " + name
84				elif whotypechr == "e":
85					nwho = "3everyone"
86				else:
87					raise ValueError(whotypechr)
88
89				if whokey[1] == "l":
90					d = self.local
91				elif whokey[1] == "d":
92					d = self.descend
93				else:
94					raise ValueError(whokey[1])
95
96				d.setdefault(nwho, set()).update(perms)
97
98		# Find perms that are in both local and descend, and
99		# move them to ld.
100		for nwho in self.local:
101			if nwho not in self.descend:
102				continue
103			# note: these are set operations
104			self.ld[nwho] = self.local[nwho] & self.descend[nwho]
105			self.local[nwho] -= self.ld[nwho]
106			self.descend[nwho] -= self.ld[nwho]
107
108	@staticmethod
109	def __ldstr(d, header):
110		s = ""
111		for (nwho, perms) in sorted(d.items()):
112			# local and descend may have entries where perms
113			# is an empty set, due to consolidating all
114			# permissions into ld
115			if perms:
116				s += "\t%s %s\n" % \
117				    (nwho[1:], ",".join(sorted(perms)))
118		if s:
119			s = header + s
120		return s
121
122	def __str__(self):
123		s = self.__ldstr(self.sets, _("Permission sets:\n"))
124
125		if self.create:
126			s += _("Create time permissions:\n")
127			s += "\t%s\n" % ",".join(sorted(self.create))
128
129		s += self.__ldstr(self.local, _("Local permissions:\n"))
130		s += self.__ldstr(self.descend, _("Descendent permissions:\n"))
131		s += self.__ldstr(self.ld, _("Local+Descendent permissions:\n"))
132		return s.rstrip()
133
134def args_to_perms(parser, options, who, perms):
135	"""Return a dict of raw perms {"whostr" -> {"perm" -> None}}
136	based on the command-line input."""
137
138	# perms is not set if we are doing a "zfs unallow <who> <fs>" to
139	# remove all of someone's permissions
140	if perms:
141		setperms = dict(((p, None) for p in perms if p[0] == "@"))
142		baseperms = dict(((canonicalized_perm(p), None)
143		    for p in perms if p[0] != "@"))
144	else:
145		setperms = None
146		baseperms = None
147
148	d = dict()
149
150	def storeperm(typechr, inheritchr, arg):
151		assert typechr in "ugecs"
152		assert inheritchr in "ld-"
153
154		def mkwhokey(t):
155			return "%c%c$%s" % (t, inheritchr, arg)
156
157		if baseperms or not perms:
158			d[mkwhokey(typechr)] = baseperms
159		if setperms or not perms:
160			d[mkwhokey(typechr.upper())] = setperms
161
162	def decodeid(w, toidfunc, fmt):
163		try:
164			return int(w)
165		except ValueError:
166			try:
167				return toidfunc(w)[2]
168			except KeyError:
169				parser.error(fmt % w)
170
171	if options.set:
172		storeperm("s", "-", who)
173	elif options.create:
174		storeperm("c", "-", "")
175	else:
176		for w in who:
177			if options.user:
178				id = decodeid(w, pwd.getpwnam,
179				    _("invalid user %s"))
180				typechr = "u"
181			elif options.group:
182				id = decodeid(w, grp.getgrnam,
183				    _("invalid group %s"))
184				typechr = "g"
185			elif w == "everyone":
186				id = ""
187				typechr = "e"
188			else:
189				try:
190					id = pwd.getpwnam(w)[2]
191					typechr = "u"
192				except KeyError:
193					try:
194						id = grp.getgrnam(w)[2]
195						typechr = "g"
196					except KeyError:
197						parser.error(_("invalid user/group %s") % w)
198			if options.local:
199				storeperm(typechr, "l", id)
200			if options.descend:
201				storeperm(typechr, "d", id)
202	return d
203
204perms_subcmd = dict(
205    create=_("Must also have the 'mount' ability"),
206    destroy=_("Must also have the 'mount' ability"),
207    snapshot="",
208    rollback="",
209    clone=_("""Must also have the 'create' ability and 'mount'
210\t\t\t\tability in the origin file system"""),
211    promote=_("""Must also have the 'mount'
212\t\t\t\tand 'promote' ability in the origin file system"""),
213    rename=_("""Must also have the 'mount' and 'create'
214\t\t\t\tability in the new parent"""),
215    receive=_("Must also have the 'mount' and 'create' ability"),
216    allow=_("Must also have the permission that is being\n\t\t\t\tallowed"),
217    mount=_("Allows mount/umount of ZFS datasets"),
218    share=_("Allows sharing file systems over NFS or SMB\n\t\t\t\tprotocols"),
219    send="",
220    hold=_("Allows adding a user hold to a snapshot"),
221    release=_("Allows releasing a user hold which\n\t\t\t\tmight destroy the snapshot"),
222)
223
224perms_other = dict(
225    userprop=_("Allows changing any user property"),
226    userquota=_("Allows accessing any userquota@... property"),
227    groupquota=_("Allows accessing any groupquota@... property"),
228    userused=_("Allows reading any userused@... property"),
229    groupused=_("Allows reading any groupused@... property"),
230)
231
232def hasset(ds, setname):
233	"""Return True if the given setname (string) is defined for this
234	ds (Dataset)."""
235	# It would be nice to cache the result of get_fsacl().
236	for raw in ds.get_fsacl().values():
237		for whokey in raw.keys():
238			if whokey[0].lower() == "s" and whokey[3:] == setname:
239				return True
240	return False
241
242def canonicalized_perm(permname):
243	"""Return the canonical name (string) for this permission (string).
244	Raises ZFSError if it is not a valid permission."""
245	if permname in perms_subcmd.keys() or permname in perms_other.keys():
246		return permname
247	try:
248		return zfs.dataset.getpropobj(permname).name
249	except KeyError:
250		raise zfs.util.ZFSError(errno.EINVAL, permname,
251		    _("invalid permission"))
252
253def print_perms():
254	"""Print the set of supported permissions."""
255	print(_("\nThe following permissions are supported:\n"))
256	fmt = "%-16s %-14s\t%s"
257	print(fmt % (_("NAME"), _("TYPE"), _("NOTES")))
258
259	for (name, note) in sorted(perms_subcmd.iteritems()):
260		print(fmt % (name, _("subcommand"), note))
261
262	for (name, note) in sorted(perms_other.iteritems()):
263		print(fmt % (name, _("other"), note))
264
265	for (name, prop) in sorted(zfs.dataset.proptable.iteritems()):
266		if prop.visible and prop.delegatable():
267			print(fmt % (name, _("property"), ""))
268
269def do_allow():
270	"""Implements the "zfs allow" and "zfs unallow" subcommands."""
271	un = (sys.argv[1] == "unallow")
272
273	def usage(msg=None):
274		parser.print_help()
275		print_perms()
276		if msg:
277			print
278			parser.exit("zfs: error: " + msg)
279		else:
280			parser.exit()
281
282	if un:
283		u = _("""unallow [-rldug] <"everyone"|user|group>[,...]
284	    [<perm|@setname>[,...]] <filesystem|volume>
285	unallow [-rld] -e [<perm|@setname>[,...]] <filesystem|volume>
286	unallow [-r] -c [<perm|@setname>[,...]] <filesystem|volume>
287	unallow [-r] -s @setname [<perm|@setname>[,...]] <filesystem|volume>""")
288		verb = _("remove")
289		sstr = _("undefine permission set")
290	else:
291		u = _("""allow <filesystem|volume>
292	allow [-ldug] <"everyone"|user|group>[,...] <perm|@setname>[,...]
293	    <filesystem|volume>
294	allow [-ld] -e <perm|@setname>[,...] <filesystem|volume>
295	allow -c <perm|@setname>[,...] <filesystem|volume>
296	allow -s @setname <perm|@setname>[,...] <filesystem|volume>""")
297		verb = _("set")
298		sstr = _("define permission set")
299
300	parser = optparse.OptionParser(usage=u, prog="zfs")
301
302	parser.add_option("-l", action="store_true", dest="local",
303	    help=_("%s permission locally") % verb)
304	parser.add_option("-d", action="store_true", dest="descend",
305	    help=_("%s permission for descendents") % verb)
306	parser.add_option("-u", action="store_true", dest="user",
307	    help=_("%s permission for user") % verb)
308	parser.add_option("-g", action="store_true", dest="group",
309	    help=_("%s permission for group") % verb)
310	parser.add_option("-e", action="store_true", dest="everyone",
311	    help=_("%s permission for everyone") % verb)
312	parser.add_option("-c", action="store_true", dest="create",
313	    help=_("%s create time permissions") % verb)
314	parser.add_option("-s", action="store_true", dest="set", help=sstr)
315	if un:
316		parser.add_option("-r", action="store_true", dest="recursive",
317		    help=_("remove permissions recursively"))
318
319	if len(sys.argv) == 3 and not un:
320		# just print the permissions on this fs
321
322		if sys.argv[2] == "-h":
323			# hack to make "zfs allow -h" work
324			usage()
325		ds = zfs.dataset.Dataset(sys.argv[2], snaps=False)
326
327		p = dict()
328		for (fs, raw) in ds.get_fsacl().items():
329			p[fs] = FSPerms(raw)
330
331		for fs in sorted(p.keys(), reverse=True):
332			s = _("---- Permissions on %s ") % fs
333			print(s + "-" * (70-len(s)))
334			print(p[fs])
335		return
336
337
338	(options, args) = parser.parse_args(sys.argv[2:])
339
340	if sum((bool(options.everyone), bool(options.user),
341	    bool(options.group))) > 1:
342		parser.error(_("-u, -g, and -e are mutually exclusive"))
343
344	def mungeargs(expected_len):
345		if un and len(args) == expected_len-1:
346			return (None, args[expected_len-2])
347		elif len(args) == expected_len:
348			return (args[expected_len-2].split(","),
349			    args[expected_len-1])
350		else:
351			usage(_("wrong number of parameters"))
352
353	if options.set:
354		if options.local or options.descend or options.user or \
355		    options.group or options.everyone or options.create:
356			parser.error(_("invalid option combined with -s"))
357		if args[0][0] != "@":
358			parser.error(_("invalid set name: missing '@' prefix"))
359
360		(perms, fsname) = mungeargs(3)
361		who = args[0]
362	elif options.create:
363		if options.local or options.descend or options.user or \
364		    options.group or options.everyone or options.set:
365			parser.error(_("invalid option combined with -c"))
366
367		(perms, fsname) = mungeargs(2)
368		who = None
369	elif options.everyone:
370		if options.user or options.group or \
371		    options.create or options.set:
372			parser.error(_("invalid option combined with -e"))
373
374		(perms, fsname) = mungeargs(2)
375		who = ["everyone"]
376	else:
377		(perms, fsname) = mungeargs(3)
378		who = args[0].split(",")
379
380	if not options.local and not options.descend:
381		options.local = True
382		options.descend = True
383
384	d = args_to_perms(parser, options, who, perms)
385
386	ds = zfs.dataset.Dataset(fsname, snaps=False)
387
388	if not un and perms:
389		for p in perms:
390			if p[0] == "@" and not hasset(ds, p):
391				parser.error(_("set %s is not defined") % p)
392
393	ds.set_fsacl(un, d)
394	if un and options.recursive:
395		for child in ds.descendents():
396			child.set_fsacl(un, d)
397