package sun.nio.fs;
import java.nio.file.attribute.*;
import java.io.IOException;
import static sun.nio.fs.WindowsConstants.*;
import static sun.nio.fs.WindowsNativeDispatcher.*;
class WindowsUserPrincipals {
private WindowsUserPrincipals() { }
static class User implements UserPrincipal {
private final String sidString;
private final int sidType;
private final String accountName;
User(String sidString, int sidType, String accountName) {
this.sidString = sidString;
this.sidType = sidType;
this.accountName = accountName;
}
String sidString() {
return sidString;
}
@Override
public String getName() {
return accountName;
}
@Override
public String toString() {
String type;
switch (sidType) {
case SidTypeUser : type = "User"; break;
case SidTypeGroup : type = "Group"; break;
case SidTypeDomain : type = "Domain"; break;
case SidTypeAlias : type = "Alias"; break;
case SidTypeWellKnownGroup : type = "Well-known group"; break;
case SidTypeDeletedAccount : type = "Deleted"; break;
case SidTypeInvalid : type = "Invalid"; break;
case SidTypeComputer : type = "Computer"; break;
default: type = "Unknown";
}
return accountName + " (" + type + ")";
}
@Override
public boolean equals(Object obj) {
if (obj == this)
return true;
if (!(obj instanceof WindowsUserPrincipals.User))
return false;
WindowsUserPrincipals.User other = (WindowsUserPrincipals.User)obj;
return this.sidString.equals(other.sidString);
}
@Override
public int hashCode() {
return sidString.hashCode();
}
}
static class Group extends User implements GroupPrincipal {
Group(String sidString, int sidType, String accountName) {
super(sidString, sidType, accountName);
}
}
static UserPrincipal fromSid(long sidAddress) throws IOException {
String sidString;
try {
sidString = ConvertSidToStringSid(sidAddress);
if (sidString == null) {
throw new AssertionError();
}
} catch (WindowsException x) {
throw new IOException("Unable to convert SID to String: " +
x.errorString());
}
Account account = null;
String name;
try {
account = LookupAccountSid(sidAddress);
name = account.domain() + "\\" + account.name();
} catch (WindowsException x) {
name = sidString;
}
int sidType = (account == null) ? SidTypeUnknown : account.use();
if ((sidType == SidTypeGroup) ||
(sidType == SidTypeWellKnownGroup) ||
(sidType == SidTypeAlias))
{
return new Group(sidString, sidType, name);
} else {
return new User(sidString, sidType, name);
}
}
static UserPrincipal lookup(String name) throws IOException {
SecurityManager sm = System.getSecurityManager();
if (sm != null) {
sm.checkPermission(new RuntimePermission("lookupUserInformation"));
}
int size = 0;
try {
size = LookupAccountName(name, 0L, 0);
} catch (WindowsException x) {
if (x.lastError() == ERROR_NONE_MAPPED)
throw new UserPrincipalNotFoundException(name);
throw new IOException(name + ": " + x.errorString());
}
assert size > 0;
NativeBuffer sidBuffer = NativeBuffers.getNativeBuffer(size);
try {
int newSize = LookupAccountName(name, sidBuffer.address(), size);
if (newSize != size) {
throw new AssertionError("SID change during lookup");
}
return fromSid(sidBuffer.address());
} catch (WindowsException x) {
throw new IOException(name + ": " + x.errorString());
} finally {
sidBuffer.release();
}
}
}