Allow leading digits in userquota/groupquota names
authorSuman Chakravartula <schakrava@gmail.com>
Sat, 19 Nov 2011 19:53:12 +0000 (11:53 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 22 Nov 2011 00:29:18 +0000 (16:29 -0800)
commitada8ec1ec5b0bfdab74bafda49e2f7a67dc7101d
treedfa6cb111d280f4bd94f73004366b12917867911
parentca5fd24984624146ebd1460d7554f42b0572e45f
Allow leading digits in userquota/groupquota names

While setting/getting userquota and groupquota properties, the input
was not treated as a possible username or groupname if it had a
leading digit. While useradd in linux recommends the regexp
[a-z_][a-z0-9_-]*[$]? , it is not enforced. This causes problem for
usernames with leading digits in them. We need to be able to support
getting and setting properties for this unconventional but possible
input category

I've updated the code to validate the username or groupname directly
via the API. Also, note that I moved this validation to the beginning
before the check for SID names with @. This also supports usernames
with @ character in them which are valid. Only when input with @ is
not a valid username, it is interpreted as a potential SID name.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #428
lib/libzfs/libzfs_dataset.c