@sharelist/node-smb-server
Version:
Sharelist SMB Server Implementation Base On node-smb-server
107 lines (96 loc) • 4.23 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 put = require('put');
var logger = require('winston').loggers.get('smb');
var ntstatus = require('../../ntstatus');
var SMB = require('../constants');
var utils = require('../../utils');
/**
* SMB_COM_RENAME (0x07): This command changes the name of one or more files or directories.
* It supports the use of wildcards in file names, allowing the renaming of multiple files in a single request.
*
* @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) {
// decode params
var searchAttributes = commandParams.readUInt16LE(0);
// decode data
var off = 0;
var bufferFormat1 = commandData.readUInt8(off); // 0x04
off += 1;
off += utils.calculatePadLength(commandDataOffset + off, 2); // pad to align subsequent unicode strings (utf16le) on word boundary
var bytes = utils.extractUnicodeBytes(commandData, off);
msg.oldFileName = bytes.toString('utf16le');
off += bytes.length + 2;
var bufferFormat2 = commandData.readUInt8(off); // 0x04
off += 1;
off += utils.calculatePadLength(commandDataOffset + off, 2); // pad to align subsequent unicode strings (utf16le) on word boundary
bytes = utils.extractUnicodeBytes(commandData, off);
off += bytes.length + 2;
msg.newFileName = bytes.toString('utf16le');
var matchLongNames = msg.header.flags.pathnames.long.supported;
var inclHidden = !!(searchAttributes & SMB.ATTR_HIDDEN);
var inclSystem = !!(searchAttributes & SMB.ATTR_SYSTEM);
logger.debug('[%s] searchAttributes: %s, oldFileName: %s, newFileName: %s', SMB.COMMAND_TO_STRING[commandId].toUpperCase(), searchAttributes.toString(2), msg.oldFileName, msg.newFileName);
var result;
var tree = server.getTree(msg.header.tid);
if (!tree) {
result = {
status: ntstatus.STATUS_SMB_BAD_TID,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
};
process.nextTick(function () { cb(result); });
return;
}
tree.exists(msg.oldFileName, function (err, exists) {
if (err) {
cb({
status: err.status || ntstatus.STATUS_UNSUCCESSFUL,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
});
return;
}
if (!exists) {
cb({
status: ntstatus.STATUS_NO_SUCH_FILE,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
});
return;
}
tree.rename(msg.oldFileName, msg.newFileName, function (err) {
cb({
status: err ? err.status || ntstatus.STATUS_UNSUCCESSFUL : ntstatus.STATUS_SUCCESS,
params: utils.EMPTY_BUFFER,
data: utils.EMPTY_BUFFER
});
});
});
}
module.exports = handle;