com.hierynomus.msdtyp.SID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smbj Show documentation
Show all versions of smbj Show documentation
SMB2 protocol library for communication with Windows servers
/*
* Copyright (C)2016 - SMBJ Contributors
*
* 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
*
* http://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.
*/
package com.hierynomus.msdtyp;
import com.hierynomus.protocol.commons.ByteArrayUtils;
import com.hierynomus.protocol.commons.EnumWithValue;
import com.hierynomus.protocol.commons.buffer.Buffer;
import com.hierynomus.smbj.common.SMBBuffer;
/**
* [MS-DTYP].pdf 2.4.2 SecurityIdentifier SID
*/
public class SID {
public enum SidType implements EnumWithValue {
SID_TYPE_NONE(0, "0"),
SID_TYPE_USER(1, "User"),
SID_TYPE_DOM_GRP(2, "Domain group"),
SID_TYPE_DOMAIN(3, "Domain"),
SID_TYPE_ALIAS(4, "Local group"),
SID_TYPE_WKN_GRP(5, "Builtin group"),
SID_TYPE_DELETED(6, "Deleted"),
SID_TYPE_INVALID(7, "Invalid"),
SID_TYPE_UNKNOWN(8, "Unknown"),
SID_TYPE_COMPUTER(9, "Computer"),
SID_TYPE_LABEL(10, "Label");
private long value;
private String name;
SidType(long value, String name) {
this.value = value;
this.name = name;
}
public long getValue() {
return value;
}
public String getName() {
return name;
}
}
public static final SID EVERYONE = new SID((byte) 1, new byte[]{0, 0, 0, 0, 0, 1}, new long[]{0});
private byte revision;
private byte[] sidIdentifierAuthority;
private long[] subAuthorities;
public SID() {
}
public SID(byte revision, byte[] sidIdentifierAuthority, long[] subAuthorities) {
this.revision = revision;
this.sidIdentifierAuthority = sidIdentifierAuthority;
this.subAuthorities = subAuthorities;
}
public void write(SMBBuffer buffer) {
buffer.putByte(revision); // Revision (1 byte)
buffer.putByte((byte) subAuthorities.length); // SubAuthorityCount (1 byte)
if (sidIdentifierAuthority.length > 6) {
throw new IllegalArgumentException("The IdentifierAuthority can not be larger than 6 bytes");
}
buffer.putRawBytes(sidIdentifierAuthority); // IdentifierAuthority (6 bytes)
for (int i = 0; i < subAuthorities.length; i++) {
buffer.putUInt32(subAuthorities[i]); // SubAuthority (variable * 4 bytes)
}
}
public void read(SMBBuffer buffer) throws Buffer.BufferException {
revision = buffer.readByte(); // Revision (1 byte)
int subAuthorityCount = buffer.readByte(); // SubAuthorityCount (1 byte)
sidIdentifierAuthority = buffer.readRawBytes(6); // IdentifierAuthority (6 bytes)
subAuthorities = new long[subAuthorityCount];
for (int i = 0; i < subAuthorityCount; i++) {
subAuthorities[i] = buffer.readUInt32(); // SubAuthority (variable * 4 bytes)
}
}
public int byteCount() {
return 1 + 1 + 6 + subAuthorities.length * 4;
}
/**
* Return the numeric representation of this sid such as
* S-1-5-21-1496946806-2192648263-3843101252-1029.
*/
public String toString() {
StringBuilder b = new StringBuilder("S-");
b.append(revision & 0xFF).append("-");
if (sidIdentifierAuthority[0] != (byte) 0 || sidIdentifierAuthority[1] != (byte) 0) {
b.append("0x");
b.append(ByteArrayUtils.printHex(sidIdentifierAuthority, 0, 6));
} else {
long shift = 0;
long id = 0;
for (int i = 5; i > 1; i--) {
id += (sidIdentifierAuthority[i] & 0xFFL) << shift;
shift += 8;
}
b.append(id);
}
for (int i = 0; i < subAuthorities.length; i++)
b.append("-").append(subAuthorities[i] & 0xFFFFFFFFL);
return b.toString();
}
public byte getRevision() {
return revision;
}
public byte[] getSidIdentifierAuthority() {
return sidIdentifierAuthority;
}
public long[] getSubAuthorities() {
return subAuthorities;
}
}