|
NAMESamba::SIDhelper - Create SIDs based on G/UIDs.VERSIONVersion 0.0.0SYNOPSISuse Samba::SIDhelper; my $sidhelper = Samba::SIDhelper->new({sid=>'S-1-5-21-1234-56789-10111213'}); my $sid=$sidhelper->uid2sid('1002'); if ($sidhelper){ print "Error!\n"; } $sid=$sidhelper->gid2sid('1002'); if ($sidhelper){ print "Error!\n"; } METHODSnewargs hashsid If this is specified, this base SID will be used instead of trying to automatically figure out what to use. domain If this is set to 1, it will try to use get the domain SID instead of the local SID. my $sidhelper->new({sid=>'S-1-5-21-1234-56789-10111213'}); if($sidhelper->{error}){ print "Error!\n"; } uid2sidConvert a UID to SID.my $sid=$sidhelper->uid2sid('1002'); if ($sidhelper){ print "Error!\n"; } gid2sidConvert a GID to SID.my $sid=$sidhelper->gid2sid('1002'); if ($sidhelper){ print "Error!\n"; } errorblankThis is a internal function and should not be called.ERROR CODES1"net getdomainsid" exited with a non-zero.2"net getlocalsid" exited with a non-zero.3No UID specified.4No UID specified.5Non-numeric value for UID or GID.SID DISCOVERYThis requires Samba to be installed. The command net is used, which requires this being ran as root.CONVERSION METHODThis uses the method from smbldap-tools.$sid=$uid*2+1000 $sid=$gid*2+1001 This method means both both user and group info is can be stored in the same space. Groups are always odd, while users are always even. AUTHORZane C. Bowers, "<vvelox at vvelox.net>"BUGSPlease report any bugs or feature requests to "bug-samba-sidhelper at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Samba-SIDhelper>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SUPPORTYou can find documentation for this module with the perldoc command.perldoc Samba::SIDhelper You can also look for information at:
ACKNOWLEDGEMENTSCOPYRIGHT & LICENSECopyright 2009 Zane C. Bowers, all rights reserved.This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |