@sharelist/node-smb-server
Version:
Sharelist SMB Server Implementation Base On node-smb-server
283 lines (258 loc) • 11.1 kB
JavaScript
/*
* Copyright 2015 Adobe Systems Incorporated. All rights reserved.
* This file is licensed to you 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 REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
;
var Path = require('path');
var logger = require('winston').loggers.get('smb');
var Long = require('long');
var ntstatus = require('../../../ntstatus');
var SMB = require('../../constants');
var utils = require('../../../utils');
/**
* TRANS2_SET_FILE_INFORMATION (0x0008): This transaction is an alternative to TRANS2_SET_PATH_INFORMATION.
*
* @param {Object} msg - an SMB message object
* @param {Number} commandId - the command id
* @param {Buffer} commandParams - the command parameters
* @param {Buffer} commandData - the command data
* @param {Number} commandParamsOffset - the command parameters offset within the SMB
* @param {Number} commandDataOffset - the command data offset within the SMB
* @param {Object} connection - an SMBConnection instance
* @param {Object} server - an SMBServer instance
* @param {Function} cb callback called with the command's result
* @param {Object} cb.result - an object with the command's result params and data
* or null if the handler already sent the response and
* no further processing is required by the caller
* @param {Number} cb.result.status
* @param {Buffer} cb.result.params
* @param {Buffer} cb.result.data
*/
function handle(msg, commandId, commandParams, commandData, commandParamsOffset, commandDataOffset, connection, server, cb) {
var fid = commandParams.readUInt16LE(0);
var informationLevel = commandParams.readUInt16LE(2);
var tree = server.getTree(msg.header.tid);
var fileName = tree && tree.getFile(fid) && tree.getFile(fid).getName() || null;
logger.debug('[%s] informationLevel: %s, fid: %d [fileName: %s]', SMB.TRANS2_SUBCOMMAND_TO_STRING[commandId].toUpperCase(), SMB.SET_INFORMATION_LEVEL_TO_STRING[informationLevel], fid, fileName || '');
var result;
if (informationLevel !== SMB.SET_INFO_STANDARD && !msg.header.flags.pathnames.long.supported) {
result = {
status: ntstatus.STATUS_INVALID_PARAMETER,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
};
process.nextTick(function () { cb(result); });
return;
}
if (!tree) {
result = {
status: ntstatus.STATUS_SMB_BAD_TID,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
};
process.nextTick(function () { cb(result); });
return;
}
var off;
var file = tree.getFile(fid);
if (!file) {
result = {
status: ntstatus.STATUS_SMB_BAD_FID,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
};
process.nextTick(function () { cb(result); });
return;
}
var eaErrorOffset = new Buffer([ 0x00, 0x00 ]);
var msLastAccess, msCreation, msLastWrite, msChange;
switch (informationLevel) {
case SMB.SET_INFO_STANDARD:
off = 0;
var smbDate = commandData.readUInt16LE(off);
off += 2;
var smbTime = commandData.readUInt16LE(off);
off += 2;
msCreation = utils.legacySMBToSystemDateTime(smbDate, smbTime);
smbDate = commandData.readUInt16LE(off);
off += 2;
smbTime = commandData.readUInt16LE(off);
off += 2;
msLastAccess = utils.legacySMBToSystemDateTime(smbDate, smbTime);
smbDate = commandData.readUInt16LE(off);
off += 2;
smbTime = commandData.readUInt16LE(off);
off += 2;
msLastWrite = utils.legacySMBToSystemDateTime(smbDate, smbTime);
// set lastModified
file.setLastModifiedTime(msLastWrite);
// todo implement according to https://msdn.microsoft.com/en-us/library/ff469956.aspx
// set created
// set lastAccessed
logger.debug('[%s] informationLevel: %s, fileName: %s, creationTime: %d, lastAccessTime: %d, lastWriteTime: %d', SMB.TRANS2_SUBCOMMAND_TO_STRING[commandId].toUpperCase(), SMB.SET_INFORMATION_LEVEL_TO_STRING[informationLevel] || '0x' + informationLevel.toString(16), fileName, msCreation, msLastAccess, msLastWrite);
result = {
status: ntstatus.STATUS_SUCCESS,
params: eaErrorOffset, // EaErrorOffset
data: utils.EMPTY_BUFFER
};
callback(null, file, result);
return;
case SMB.SET_INFO_EAS:
var eaList = utils.parseFEAList(commandData, 0);
if (eaList && eaList.length) {
// we're currently not supporting EAs
eaErrorOffset.writeUInt16LE(eaList[0].offset, 0);
}
result = {
status: ntstatus.STATUS_SUCCESS,
params: eaErrorOffset, // EaErrorOffset
data: utils.EMPTY_BUFFER
};
process.nextTick(function () { cb(result); });
return;
case SMB.SET_FILE_BASIC_INFO:
case SMB.FILE_BASIC_INFORMATION:
// on OS-X the timestamp value is sometimes -2082844800000 (1904-01-01T00:00:00.000Z) which is the epoch used by GetDateTime() ... ?!
off = 0;
msCreation = utils.readTimestamp(commandData, off);
off += 8;
msLastAccess = utils.readTimestamp(commandData, off);
off += 8;
msLastWrite = utils.readTimestamp(commandData, off);
off += 8;
msChange = utils.readTimestamp(commandData, off);
off += 8;
var extFileAttributes = commandData.readUInt32LE(off);
off += 4;
// todo implement according to https://msdn.microsoft.com/en-us/library/ff469851.aspx
if (msCreation && msCreation !== -1) {
// set created
}
if (msLastAccess && msLastAccess !== -1) {
// set lastAccessed
}
if (msLastWrite && msLastWrite !== -1) {
// set lastModified
file.setLastModifiedTime(msLastWrite);
}
if (msChange && msChange !== -1) {
// set changed
}
logger.debug('[%s] informationLevel: %s, fileName: %s, creationTime: %d, lastAccessTime: %d, lastWriteTime: %d, changeTime: %d, extFileAttributes: %s', SMB.TRANS2_SUBCOMMAND_TO_STRING[commandId].toUpperCase(), SMB.SET_INFORMATION_LEVEL_TO_STRING[informationLevel] || '0x' + informationLevel.toString(16), fileName, msCreation, msLastAccess, msLastWrite, msChange, extFileAttributes.toString(2));
result = {
status: ntstatus.STATUS_SUCCESS,
params: eaErrorOffset, // EaErrorOffset
data: utils.EMPTY_BUFFER
};
process.nextTick(function () { cb(result); });
return;
case SMB.SET_FILE_DISPOSITION_INFO:
case SMB.FILE_DISPOSITION_INFORMATION:
var deletePending = !!commandData.readUInt8(0);
if (deletePending) {
logger.debug('%s, fid: %d [fileName: %s], deletePending: %d', SMB.SET_INFORMATION_LEVEL_TO_STRING[informationLevel], fid, fileName, deletePending);
file.setDeleteOnClose();
}
result = {
status: ntstatus.STATUS_SUCCESS,
params: eaErrorOffset, // EaErrorOffset
data: utils.EMPTY_BUFFER
};
process.nextTick(function () { cb(result); });
return;
case SMB.SET_FILE_END_OF_FILE_INFO:
case SMB.FILE_END_OF_FILE_INFORMATION:
var endOfFile = Long.fromBits(commandData.readUInt32LE(0), commandData.readUInt32LE(4), true).toNumber();
file.setLength(endOfFile, function (err) {
if (err) {
logger.error(err);
result = {
status: err.status || ntstatus.STATUS_UNSUCCESSFUL,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
};
} else {
result = {
status: ntstatus.STATUS_SUCCESS,
params: eaErrorOffset, // EaErrorOffset
data: utils.EMPTY_BUFFER
};
}
cb(result);
});
return;
case SMB.SET_FILE_ALLOCATION_INFO:
case SMB.FILE_ALLOCATION_INFORMATION:
var allocationSize = Long.fromBits(commandData.readUInt32LE(0), commandData.readUInt32LE(4), true).toNumber();
if (!allocationSize && file.size()) {
file.setLength(0, function (err) {
if (err) {
logger.error(err);
result = {
status: err.status || ntstatus.STATUS_UNSUCCESSFUL,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
};
} else {
result = {
status: ntstatus.STATUS_SUCCESS,
params: eaErrorOffset, // EaErrorOffset
data: utils.EMPTY_BUFFER
};
}
cb(result);
});
} else {
// todo support setting allocationSize > 0
// for now silently ignore
result = {
status: ntstatus.STATUS_SUCCESS,
params: eaErrorOffset, // EaErrorOffset
data: utils.EMPTY_BUFFER
};
process.nextTick(function () { cb(result); });
}
return;
case SMB.FILE_RENAME_INFORMATION:
off = 0;
var replaceIfExists = commandData.readUInt8(off);
off += 1;
off += 3; // Reserved (padding)
var rootDirectory = commandData.readUInt32LE(off);
off += 4;
var fileNameLength = commandData.readUInt32LE(off);
off += 4;
off += utils.calculatePadLength(commandDataOffset + off, 2); // pad to align subsequent unicode strings (utf16le) on word boundary
//var bytes = commandData.slice(off, fileNameLength);
//var targetName = bytes.toString('utf16le');
var targetName = utils.extractUnicodeBytes(commandData, off).toString('utf16le');
var targetPath = Path.join(utils.getParentPath(file.getPath()), targetName);
logger.debug('%s, fid: %d [fileName: %s], replaceIfExists: %d, rootDirectoryHandle: %d, fileNameLength: %d, targetName: %s', SMB.SET_INFORMATION_LEVEL_TO_STRING[informationLevel], fid, fileName, replaceIfExists, rootDirectory, fileNameLength, targetName);
tree.rename(file, targetPath, function (err) {
cb({
status: err ? err.status || ntstatus.STATUS_UNSUCCESSFUL : ntstatus.STATUS_SUCCESS,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
});
});
return;
default:
logger.error('[%s] encountered unsupported or unknown informationLevel %s, fid: %d [fileName: %s]', SMB.TRANS2_SUBCOMMAND_TO_STRING[commandId].toUpperCase(), SMB.SET_INFORMATION_LEVEL_TO_STRING[informationLevel] || '0x' + informationLevel.toString(16), fid, fileName);
result = {
//status: ntstatus.STATUS_OS2_INVALID_LEVEL,
status: ntstatus.STATUS_NOT_IMPLEMENTED,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
};
process.nextTick(function () { cb(result); });
return;
}
}
module.exports = handle;